@charset "UTF-8";

html{
	width:100%;
}
body{
	*font-size:small;
	*font:x-small;
	font-size:13px;
	color:#333333;
	line-height:1.2;
  font-family:"Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align:left;
	width:100%;
	margin:0px;
	padding:0px;
	-webkit-text-size-adjust:100%;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:100;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:200;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:300;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:400;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Bold");
  font-weight:bold;
}
#wrap{
	text-align:left;
	overflow:hidden;
	background-color: #fff;
}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd,figure{
	margin:0px;
	padding:0px;
	font-size:14px;
}
li{
	list-style-type:none;
}
table{
	border-collapse:collapse;
}
a{
	cursor:pointer;
	color:#333;
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}
a{
	-webkit-tap-highlight-color:transparent;
}
img{
	vertical-align:top;
	max-width:100%;
	height:auto;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
a img{
	vertical-align:bottom;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
input, 
textarea, 
select,
button,
label{
  outline:none;
	-webkit-tap-highlight-color:transparent;
}
:focus {
	outline: 0;
  border-color: orange;
}
:root {
  --main-color: #00AFDE;
}


/* footstepBox
-----------------------------------------------*/
.footstepBox {
  font-size: 10px;
  padding-top: 15px;
  width: 100%;
  box-sizing: border-box;
}
.footstepBox a:link {
  color: #333;
}


/* main
-----------------------------------------------*/
#main {
  position: relative;
  background: #DAF2FF;
  height: 400px;
  padding: 0 40px;
}
#main,
#main *,
#main ::before,
#main ::after {
  box-sizing: border-box;
}
#main .inner {
  position: relative;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
}
#main .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 284px;
}
#main .bg::before {
  content: "";
  display: block;
  max-width: 1000px;
  height: 100%;
  background: url("../images/bgi_main_01.png") no-repeat left top / 657px auto;
  margin: 0 auto;
}
#main h1 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
  line-height: 1.3;
}
#main .box {
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 3;
  background: #fff;
  width: 480px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#main .box .txt h2 {
  font-size: 22px;
  line-height: 1.5;
}
#main .box .txt p {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}
#main .box .btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 412px;
  margin: 16px auto 0;
}
#main .box .btn li {
  flex: 1;
}
#main .box .btn li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 48px;
  background: var(--main-color);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
#main .box .btn li a.navy {
  background: #003557;
}
#main .box .btn li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
#main .box .btn li a:hover::after {
  opacity: .2;
}
@media screen and (max-width: 750px) {
  #main {
    background: #DAF2FF;
    height: auto;
    padding: 0 20px;
  }
  #main::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #fff;
  }
  #main h1 {
    position: absolute;
    top: 40px;
    left: 0;
    font-size: 28px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  #main h1 span {
    display: inline-block;
    text-align: left;
    padding-left: 70px;
  }
  #main .bg {
    position: relative;
    width: 100%;
    height: 140px;
    margin-top: 40px;
  }
  #main .bg::before {
    background: url("../images/bgi_main_01.png") no-repeat center top / auto 100%;
  }
  #main .box {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    padding: 20px;
    gap: 14px;
    margin: -20px auto 0;
  }
  #main .box .btn {
    gap: 5px;
    margin: 12px auto 0;
  }
  #main .box .btn li {
    width: 100%;
    flex: auto;
  }
}


/* section
-----------------------------------------------*/
section {
  padding: 0 40px;
}
section,
section *,
section ::before,
section ::after {
  box-sizing: border-box;
}
section .inner {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto;
}
section .ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section .ttl p {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: var(--main-color);
}
section .ttl h2 {
  font-size: 32px;
  line-height: 1.4;
}
section p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
.spOnly {
  display: none;
}
figcaption {
  text-align: left;
  margin-top: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  section {
    padding: 0 20px;
  }
  section .ttl p {
    font-size: 16px;
  }
  section .ttl h2 {
    font-size: 24px;
  }
  .spOnly {
    display: block;
  }
  .pcOnly {
    display: none;
  }
}


/* solution 
-----------------------------------------------*/
#solution {
  margin-top: 60px;
}
#solution .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#solution .col2 {
  display: flex;
  gap: 40px;
}
#solution .col2 .col {
  width: 50%;
}
#solution .col2 .col a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333;
}
#solution .col2 .col a .img {
  overflow: hidden;
}
#solution .col2 .col a .img img {
  transition: transform .3s;
  width: 100%;
}
#solution .col2 .col a:hover .img img {
  transform: scale(1.02);
}
#solution .col2 .col a .txt h3 {
  font-size: 14px;
  color: var(--main-color);
  line-height: 1.5;
}
#solution .col2 .col a .txt h4 {
  font-size: 16px;
  margin-top: 2px;
  line-height: 1.5;
}
#solution .col2 .col a .txt h4 span {
  position: relative;
  padding-right: 16px;
  display: inline-block;
}
#solution .col2 .col a .txt h4 span::after {
  content: "";
  display: inline-block;
  position: relative;
  right: 0;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  margin-left: 6px;
}
#solution .gray {
  background: #EDF2F7;
  padding: 16px 32px;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}
#solution .gray .txt h3 {
  font-size: 22px;
}
#solution .gray .txt p {
  font-size: 13px;
  margin-top: 4px;
}
#solution .gray .txt .btn {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#solution .gray .txt .btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 48px;
  background: var(--main-color);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
#solution .gray .txt .btn a.navy {
  background: #003557;
}
#solution .gray .txt .btn a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
#solution .gray .txt .btn a:hover::after {
  opacity: .2;
}
#solution .gray .img {
  width: 240px;
  min-width: 240px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 880px) {
  #solution .col2 {
    flex-direction: column;
    gap: 20px;
  }
  #solution .col2 .col {
    width: 100%;
  }
  #solution .gray {
    flex-direction: column-reverse;
  }
  #solution .gray .txt .btn {
    gap: 8px;
  }
  #solution .gray .txt .btn a {
    width: 100%;
    height: 48px;
  }
}
@media screen and (max-width: 750px) {
  #solution {
    margin-top: 30px;
  }
  #solution .inner {
    gap: 20px;
  }
  #solution .gray {
    padding: 20px 20px;
    margin-top: 20px;
  }
  #solution .gray h3 {
    font-size: 18px;
  }
  #solution .gray p {
    font-size: 16px;
  }
  #solution .gray img {
    width: 100%;
  }
  #solution .col .btn a {
    margin: 0 auto;
    width: fit-content;
    padding: 16px 40px;
  }
}


/* voices 
-----------------------------------------------*/
#voices {
  margin-top: 80px;
  margin-bottom: 80px;
}
#voices .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#voices .col2 {
  display: flex;
  gap: 40px;
}
#voices .col2 .col {
  width: 50%;
}
#voices .col2 .col a {
  display: flex;
  gap: 16px;
  color: #333;
}
#voices .col2 .col a .img {
  overflow: hidden;
  min-width: 210px;
  width: 210px;
}
#voices .col2 .col a .img img {
  transition: transform .3s;
  width: 100%;
}
#voices .col2 .col a:hover .img img {
  transform: scale(1.03);
}
#voices .col2 .col a .txt h3 {
  font-size: 14px;
  color: var(--main-color);
}
#voices .col2 .col a .txt h4 {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.5;
}
#voices .col2 .col a .txt h4 span {
  position: relative;
  padding-right: 16px;
  display: inline-block;
}
#voices .col2 .col a .txt h4 span::after {
  content: "";
  display: inline-block;
  position: relative;
  right: 0;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  margin-left: 6px;
}
#voices .col2 .col a .txt p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
}
#voices .btn {
  display: flex;
  justify-content: center;
}
#voices .btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 48px;
  font-size: 14px;
  background: var(--main-color);
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
#voices .btn a::after {
  content: "";
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
#voices .btn a:hover::after {
  opacity: .2;
}
@media screen and (max-width: 1023px) {
  #voices .col2 {
    flex-direction: column;
    gap: 40px;
  }
  #voices .col2 .col {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #voices {
    margin-top: 60px;
    margin-bottom: 0;
  }
  #voices .inner {
    gap: 20px;
  }
  #voices .col2 {
    flex-direction: column;
    gap: 20px;
  }
  #voices .col2 .col {
    width: 100%;
  }
  #voices .col2 .col a {
    flex-direction: column;
    gap: 20px;
  }
  #voices .col2 .col a .img {
    width: 100%;
  }
}