@charset "UTF-8";
/*各種変数*/
:root{
  --coler-main: #2660AC;
  --color-sub: #66C6F1;
  --color-point: #FF5783;
  --color-text: #4A5565;
  --color-grey: #E5E7EB;
  --color-d-grey:#92969C;
  --color-back-grey: #F8F8FA;
  /*font-family*/
  --font-en: "Castoro Titling";
  --font-ja: "Zen Kaku Gothic New", "Meiryo", sans-serif;
  --font-base: var(--font-en), var(--font-ja);
  /*font-size*/
  --f-size-10: 2.67vw;
  --f-size-14: 3.73vw;
  --f-size-16: 4.27vw;
  --f-size-20: min(5.33vw,20px);
  --f-size-24: 6.4vw;
  --f-size-26: 6.93vw;
  --f-size-28: 7.47vw;
  --f-size-30: 8vw;
  --f-size-32: 8.53vw;
  --f-size-36: 9.6vw;
  --f-size-48: 12.8vw;
}
@media screen and (min-width: 768px) {
  :root{
    --f-size-10: 10px;
    --f-size-14: 14px;
    --f-size-16: 16px;
    --f-size-20: min(1.4vw,20px);
    --f-size-24: min(1.67vw,24px);
    --f-size-26: min(1.8vw,26px);
    --f-size-28: min(1.94vw,28px);
    --f-size-30: min(2vw,30px);
    --f-size-32: min(2.22vw,32px);
    --f-size-36: min(2.5vw,36px);
    --f-size-48: min(3.33vw,48px);
  }
}
/*基本設定*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-base);
  font-weight: 500;
  font-style: normal;
  font-size: var(--f-size-20);
  color: var(--color-text);
}
main{
  overflow: hidden;
}
ul{
  padding: 0;
}
li{
  list-style: none;
  position: relative;
}
a{
  color: var(--coler-main);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
table{
  border-collapse:collapse
}

.arimo{
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.under-line{
  text-decoration: underline solid var(--color-point) 5px;
}
.l-blue{
  color: var(--color-sub);
}

.br-pc{
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc{
    display: inline-block;
  }
  .br-mb{
    display: none;
  }
}
section {
  scroll-margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  section {
    scroll-margin-top: 93px;
  }
}
.container-360{
  width: 96vw;
  margin: 0 auto;
}
.container{
  width: 90.6vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container-360,
  .container{
    width: min(80.5vw,1160px);
  }
}

a.contact-btn{
  position: relative;
  display: block;
  background-color: var(--coler-main);
  width: 64vw;
  height: 12vw;
  font-size: var(--f-size-16);
  line-height: 6vw;
  color: #fff;
  text-align: left;
  text-decoration: none;
  border-radius: 6.5vw;
  border: 1px solid var(--coler-main);
  padding: 3.2vw var(--f-size-16);
  margin: 0 auto;
}
a.contact-btn::after{
  position: absolute;
  display: block;
  content: "";
  width: var(--f-size-20);
  height: var(--f-size-20);
  -webkit-mask-image: url('img/contact_btn_ico.svg');
  mask-image: url('img/contact_btn_ico.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  top: 3.2vw;
  right: var(--f-size-16);
}
a.contact-btn:hover{
  background-color: var(--color-grey);
  color: var(--coler-main);
}
@media screen and (min-width: 768px) {
  a.contact-btn{
    width: 240px;
    height: 45px;
    font-size: 16px;
    line-height: 1.3em;
    border-radius: 30px;
    padding: 12.5px 16px;
    margin: 0;
  }
  a.contact-btn::after{
    top: 12.5px;
  }
}

.sec-title{
  color: var(--coler-main);
  text-align: center;
  margin-bottom: var(--f-size-30);
}
.sec-title h2{
  font-size: var(--f-size-48);
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.sec-title img{
  width: 31.8vw;
  margin: 4vw auto var(--f-size-20);
}
.sec-title h3{
  font-size: var(--f-size-32);
  line-height: 1.3em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sec-title{
    margin-bottom: 0;
  }
  .sec-title img{
    width: 136px;
    margin: 40px auto;
  }
}

.return{
  position: fixed;
  width: var(--f-size-36);
  right: 2vw;
  bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .return{
    height: 36px;
    right: 10px;
    bottom: 10px;
  }
}
/*ページコンテンツ*/
header{
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
}
header .nav-header{
  position: relative;
  z-index: 10;
  width: 100vw;
  height: 16vw;
  max-height: 93px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header .nav-header{
    padding: 40px;
  }
}
header h1{
  width: 28.5vw;
  height: 7vw;
  align-self: center;
  margin-left: 3vw;
  margin-right: 10vw;
}
@media screen and (min-width: 768px) {
  header h1{
    width: 217px;
    height: 53px;
    margin-left: 0;
    margin-right: 0;
  }
}
header .nav-body{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
header .menu-pc,
header .btn-pc{
  display: none;
}

@media screen and (min-width: 768px) {
  header .menu-pc{
    display: flex;
    font-family: var(--font-ja);
    gap: 1.4vw;
  }
  header .btn-pc{
    display: block;
  }
}
header .phone-num{
  font-size: var(--f-size-16);
  color: var(--coler-main);
  margin: 6.5vw 0;
}
header .phone-num img{
  display: inline-block;
  width: 3vw;
  margin-right: 1vw;
}
@media screen and (min-width: 768px) {
  header .phone-num{
    font-size: max(1.52vw,20px);
    margin: 35px 0;
  }
  header .phone-num img{
    width: 17px;
    margin-right: 5px;
  }
}

header .nav-btn{
  position: relative;
  width: 16vw;
  height: 16vw;
  background-color: var(--coler-main);
  font-size: 3.2vw;
  text-align: center;
  border-bottom-left-radius: var(--f-size-20);
  padding-top: 2%;
  color: #fff;
}
header .nav-btn .btn-lines{
  position: relative;
  width: 6vw;
  height: 4vw;
  margin: 1.5vw 5vw;
}
header .nav-btn .btn-lines span{
  position: absolute;
  display: block;
  width: 6vw;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
header .nav-btn .line1{
  top: 0;
}
header .nav-btn .line2{
  top: 45%;
}
header .nav-btn .line3{
  bottom: 0;
}
header .nav-btn.is-active .line1{
  transform:translateY(1.8vw) rotate(-45deg);
}
header .nav-btn.is-active .line2{
  opacity: 0;
}
header .nav-btn.is-active .line3{
  transform:translateY(-1.8vw) rotate(45deg);
}
@media screen and (min-width: 768px) {
  header .nav-btn{
    display: none;
  }
}
header .nav-menu{
  position: absolute;
  z-index: 1;
  top: -100vh;
  width: 100vw;
  height: 100vh;
  transition: 0.5s;
  padding-top: 30vw;
  background: var(--color-sub) url(img/menu_back.webp) no-repeat center 35vw;
  font-weight: 400;
}
header .nav-menu.is-active{
  top: 0vw;
}
header .nav-menu ul{
  width: 60vw;
  margin: 0 auto 14vw;
}
header .nav-menu li{
  padding-left: 7vw;
  font-size: var(--f-size-14);
  margin-bottom: 10vw;
}
header .nav-menu li::before{
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  width: 3.2vw;
  height: 2px;
  left: 0;
  top: 45%;
}
header .nav-menu li a{
  color: #fff;
  text-decoration: none;
}
header .nav-menu .menu-tit{
  display: inline-block;
  width: 35vw;
  font-size: var(--f-size-20);
}
@media screen and (min-width:768px) {
  header .nav-menu{
    display: none;
  }
}

main .contact-area{
  background-color: var(--color-sub);
  color: #fff;
  padding: var(--f-size-20) 7vw;
}
@media screen and (min-width: 768px) {
  main .contact-area{
    padding: 40px 0;
    border-radius: 200px;
  }
}
main .contact-area h2{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  font-size: var(--f-size-48);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-align: center;
  border-bottom: 4px dotted rgba(256,256,256,0.6);
  margin: 0 auto 6vw;
}
main .contact-area h2::before{
  display: block;
  content: "";
  width: 11.2vw;
  height: 12vw;
  -webkit-mask-image: url('img/contact_tit_ico.svg');
  mask-image: url('img/contact_tit_ico.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  main .contact-area h2{
    justify-content: center;
    width: 800px;
    margin: 30px auto;
    padding-bottom: 30px;
  }
  main .contact-area h2::before{
    width: 42px;
    height: 45px;
  }
}
main .contact-area h3{
  font-size: var(--f-size-32);
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: var(--f-size-20);
}
main .contact-area h3 .sub{
  font-size: var(--f-size-36);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  main .contact-area h3{
    margin-bottom: 10px;
  }
  main .contact-area h3 .sub{
    font-size: var(--f-size-48);
    margin-left: 20px;
  }
}
main .contact-area .con-comment{
  letter-spacing: 0.05em;
  border-bottom: 4px dotted rgba(256,256,256,0.6);
  padding-bottom: var(--f-size-20);
  margin-bottom: var(--f-size-20);
}
@media screen and (min-width: 768px) {
  main .contact-area .con-comment{
    width: 800px;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .contact-area .con-bnr{
  background-color: #fff;
  color: var(--coler-main);
  text-align: center;
  border: 3px solid var(--coler-main);
  border-radius: var(--f-size-30);
  padding: var(--f-size-20);
}
@media screen and (min-width: 768px) {
  main .contact-area .con-bnr{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 850px;
    border-radius: 100px;
    padding: 0;
    margin: 0 auto;
  }
}
main .con-bnr .line{
  display: block;
  background-color: var(--coler-main);
  width: 16vw;
  height: 2px;
  margin: 4vw auto;
}
main .con-bnr .phone-comm{
  font-size: var(--f-size-16);
  margin-bottom: 3vw;
}
main .con-bnr .phone-num{
  display: flex;
  justify-content: space-between;
  font-size: var(--f-size-36);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1em;
}
main .con-bnr .phone-num::before{
  display: block;
  content: '';
  width: 7.3vw;
  height: 7.3vw;
  -webkit-mask-image: url('img/phone_ico.svg');
  mask-image: url('img/phone_ico.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  main .con-bnr .line{
    width: 2px;
    height: 70px;
    margin: 35px 35px 35px 50px;
  }
  main .con-bnr .phone-comm{
    margin-bottom: 10px;
  }
  main .con-bnr .phone-num::before{
    width: 28px;
    height: 28px;
  }
}
#top{
  position: relative;
  letter-spacing: 0.15em;
  margin-top: 16vw;
  margin-bottom: 20vw;
}
@media screen and (min-width: 768px) {
  #top{
    margin-top: 93px;
    margin-bottom: 0;
  }
}
#top .top-massage{
  position: absolute;
  width: 71vw;
  background: url(img/sol_back.webp) no-repeat top left/58vw;
  color: var(--coler-main);
  font-size: var(--f-size-36);
  font-weight: 700;
  line-height: 13.3vw;
  padding-top: 5vw;
  top: 7vw;
  left: 3vw;
}
#top .top-massage .big{
  font-size: var(--f-size-48);
}
@media screen and (min-width: 768px) {
  #top .top-massage{
    width: inherit;
    height: 31.1vw;
    background: url(img/sol_back.webp) no-repeat top left/contain;
    font-size: 3.33vw;
    line-height: 5.6vw;
    padding-top: 6vw;
    padding-left: 4.9vw;
    top: 6.25vw;
    left: 9.7vw;
  }
  #top .top-massage .big{
    font-size: 4vw;
  }
}
#top .top-comment{
  position: absolute;
  left: 3vw;
  bottom: 20vw;
}
@media screen and (min-width: 768px) {
  #top .top-comment{
    line-height: 2.8vw;
    left: 14.6vw;
    bottom: inherit;
    top: 25.7vw;
  }
}
#top .contact-btn{
  display: none;
}
@media screen and (min-width: 768px) {
  #top .contact-btn{
    display: block;
    position: absolute;
    letter-spacing: 0.01em;
    left: 14.6vw;
    bottom: 6.25vw;
  }
}
#top .sclool-allow{
  position: absolute;
  right: 3vw;
  bottom: 15vw;
}
@media screen and (min-width: 768px) {
  #top .sclool-allow{
    right: inherit;
    left: 7vw;
    bottom: 4vw;
  }
}
#solution .sol-title{
  color: var(--coler-main);
  text-align: center;
  margin-bottom: 15vw;
}
#solution .sol-title h2{
  font-size: var(--f-size-48);
  font-weight: 400;
  letter-spacing: 0.1em;
}
#solution .sol-title img{
  display: none;
}
#solution .sol-title p{
  font-size: var(--f-size-26);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #solution{
    background-color: #F0FAFE;
    border-top-left-radius: 600px;
    border-top-right-radius: 600px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  #solution .sol-title{
    margin-bottom: 40px;
  }
  #solution .sol-title img{
    display: block;
    margin: 40px auto;
  }
}
#solution .concern{
  background: #F0FAFE;
  padding-top: var(--f-size-30);
  padding-bottom: 4.8vw;
}
@media screen and (min-width: 768px) {
  #solution .concern{
    background: none;
    padding-bottom: 0;
    margin-bottom: 90px;
  }
  #solution .concern .container-360{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#solution .img1{
  margin-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  #solution .img1{
    order: 1;
    width: min(34.7vw,500px);
    margin-bottom: 0;
  }
  #solution .img2{
    order: 2;
    width: min(34.7vw,500px);
  }
}
#solution .concern ul{
  color: var(--coler-main);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #solution .concern ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(2.7vw,40px);
    order: 3;
    width: 100%;
    margin-top: 40px;
  }
}
#solution .concern li{
  display: flex;
  align-items: center;
  background-color: #fff;
  line-height: 1.3em;
  border: 1px solid var(--coler-main);
  border-radius: 2.7vw;
  padding: var(--f-size-20);
  margin-bottom: 10vw;
}
#solution .concern .list-ico{
  width: var(--f-size-48);
  height: var(--f-size-48);
  margin-right: 3vw;
}
@media screen and (min-width: 768px) {
  #solution .concern li{
    width: 31%;
    border-radius: 10px;
    margin-bottom: 0;
  }
  #solution .concern .list-ico{
    margin-right: 10px;
  }
}

#solution .sol-ans{
  position: relative;
  background: #F0FAFE;
  border-bottom-left-radius: 53vw;
  border-bottom-right-radius: 53vw;
  margin-bottom: 2vw;
}
#solution .sol-ans img{
  width: 100vw;
}
#solution .sol-ans p{
  position: absolute;
  color: var(--color-point);
  font-size: 6.9vw;
  font-weight: 700;
  text-align: center;
  width: 100vw;
  top: 5vw;
}
@media screen and (min-width: 768px) {
  #solution .sol-ans{
    background: none;
    border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
    margin-bottom: 40px;
  }
  #solution .sol-ans img{
    display: none;
  }
  #solution .sol-ans p{
    position: relative;
    font-size: max(2.37vw,32px);
    top: inherit;
  }
}

#solution .message-area{
  position: relative;
  width: 85.3vw;
  margin: 0 auto var(--f-size-30);
  letter-spacing: 0.02em;
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: var(--f-size-30);
  padding: 6vw 2.7vw var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #solution .message-area{
    width: min(80.5vw,1160px);
    margin: 0 auto 90px;
    padding: 30px;
  }
}
#solution .message-area p{
  margin: 0 auto;
}
#solution .message-area img{
  margin-bottom: var(--f-size-20);
}
#solution .message-area .sol-img4{
  position: absolute;
  width: 45.8vw;
  top: -38vw;
  left: 19.75vw;
}
@media screen and (min-width: 768px) {
  #solution .message-area img{
    display: none;
  }
}
#solution .message-area .sol-message{
  width: 74.1vw;
  color: var(--coler-main);
  font-size: var(--f-size-24);
  font-weight: 700;
  margin: 0 auto var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #solution .message-area p{
    width: min(62.5vw,900px);
    margin: 0 auto;
  }
  #solution .message-area .sol-message{
    width: min(62.5vw,900px);
  }
}
#solution .message-area ul{
  width: 74.1vw;
  color: var(--color-point);
  line-height: 9.3vw;
  margin: 0 auto;
  padding-left: 5vw;
}
#solution .message-area li{
  list-style: disc;
  margin-bottom: var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #solution .message-area ul{
    width: min(62.5vw,900px);
    line-height: 40px;
    padding-left: 20px;
  }
  #solution .card-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#solution .sol-card{
  background-color: #fff;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-point);
  border-radius: var(--f-size-30);
  padding: 0 var(--f-size-20) var(--f-size-20) var(--f-size-20);
  margin-bottom: var(--f-size-20);
}
#solution .sol-card h3{
  background-color: #EdEEF0;
  text-align: center;
  font-size: 13.9vw;
  font-weight: 400;
  padding-top: 3vw;
  padding-bottom: var(--f-size-30);
  border-radius: 0 0 50% 50% /0 0 100% 100%;
  margin-bottom: var(--f-size-20);
}
#solution .sol-card picture{
  margin-bottom: 7vw;
}
@media screen and (min-width: 768px) {
  #solution .sol-card{
    width: min(34.72vw,500px);
    text-align: center;
    margin-bottom: 60px;
  }
  #solution .sol-card h3{
    width: min(20.1vw,290px);
    font-size: max(3.61vw,48px);
    padding-top: min(1.4vw,16px);
    padding-bottom: min(4.16vw,60px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  #solution .sol-card picture{
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

#service{
  padding: var(--f-size-30) 0 0;
}
@media screen and (min-width: 768px) {
  #service{
    background-color: var(--color-back-grey);
    border-radius: 200px;
    padding: 60px 0 90px;
  }
  #service .sec-title{
    margin-bottom: 40px;
  }
}
#service .service-comm1{
  font-size: var(--f-size-24);
  text-align: center;
}
#service .service-comm1 .com-num{
  font-size: 15vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #service .service-comm1{
    line-height: 2em;
  }
  #service .service-comm1 .com-num{
    font-size: max(3.89vw,48px);
  }
}
#service .service-comm2{
  text-align: center;
  margin-bottom: var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #service .service-comm2{
    margin-bottom: 50px;
  }
}
#service .service-balloon{
  width: 93.3vw;
  margin: 0 auto var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #service .balloons{
    display: flex;
    justify-content: space-between;
    width: min(72.5vw,1044px);
    margin: 0 auto;
  }
  #service .service-balloon{
    width: 45%;
    margin: 0 auto 40px;
  }
}

#service .service-card-area{
  width: 90.6vw;
  margin: 0 auto 10.7vw;
}
@media screen and (min-width: 768px) {
  #service .service-card-area{
    width: min(80.5vw,1160px);
    margin: 0 auto;
  }
}
#service .service-card-area picture{
  margin-bottom: var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #service .service-card-area picture{
    width: 37.5%;
    height: auto;
    margin-bottom: 0;
    margin-right: 0;
  }
}
#service .service-card1 h4,
#service .service-card1 ul{
  color: var(--coler-main);
}
#service .service-card2 h4,
#service .service-card2 ul{
  color: var(--color-sub);
}
@media screen and (min-width: 768px) {
  #service .service-card1{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid var(--coler-main);
    border-radius: 30px;
    margin-bottom: 40px;
  }
  #service .service-card2{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid var(--color-sub);
    border-radius: 30px;
  }
}
#service .card-frame{
  width: 90.6vw;
  border: 1px solid var(--coler-main);
  padding: 5vw 5vw 0;
  border-radius: var(--f-size-30);
  margin-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  #service .card-frame{
    width: 51%;
    border: none;
    padding: 0;
    margin-bottom: 0;
    margin-right: 3%;
  }
}
#service .card-frame h4{
  font-size: var(--f-size-28);
  font-weight: 700;
  margin-bottom: 3vw;
}
#service .card-frame p{
  margin-bottom: var(--f-size-30);
}
#service .card-frame li{
  display: flex;
  font-size: var(--f-size-24);
  margin-bottom: 6vw;
}
#service .card-frame li::before{
  display: block;
  content: '';
  width: 6vw;
  height: 6vw;
  -webkit-mask-image: url('img/check.svg');
  mask-image: url('img/check.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 1vw;
}
@media screen and (min-width: 768px) {
  #service .card-frame h4{
    margin-bottom: 15px;
  }
  #service .card-frame li{
    margin-bottom: 15px;
  }
  #service .card-frame li::before{
    width: max(1.74vw,25px);
    height: max(1.74vw,25px);
    margin-top: 0;
  }
}

#faq{
  padding-top: var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #faq{
    padding-bottom: 90px;
  }
  #faq .sec-title{
    margin-bottom: 60px;
  }
  #faq .faq-container{
    display: flex;
    justify-content: space-between;
    width: min(91.6vw,1320px);
    margin: 0 auto;
  }
}
#faq .faq-comment{
  margin-bottom: var(--f-size-30);
}
#faq .faq-comment p{
  width: 75vw;
  color: #92969C;
  font-size: var(--f-size-36);
  margin: 0 auto var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #faq .faq-comment{
    width: 28.5%;
  }
  #faq .faq-comment p{
    letter-spacing: 0.1em;
    font-size: min(3.33vw,48px);
    margin: 0 auto 60px;
  }
}
#faq .faq-area{
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #faq .faq-area{
    width: 67.8%;
    margin: 0;
  }
}
#faq .faq-table{
  font-family: var(--font-ja);
  font-size: var(--f-size-16);
  font-weight: 400;
  border: 1px solid var(--color-text);
  border-radius: var(--f-size-10);
  margin-bottom: var(--f-size-30);
  padding: var(--f-size-10) var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #faq .faq-table{
    padding: 30px 24px;
  }
}
#faq .faq-table .question{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--coler-main);
}
#faq .faq-table .question img{
  width: 2.1vw;
  margin-top: 3vw;
  transition: 0.3s;
}
#faq .faq-table .question.is-active img{
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  #faq .faq-table .question{
    align-items: center;
  }
  #faq .faq-table .question img{
    width: 8px;
    margin-top: 0;
  }
}
#faq .faq-table .answer{
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#about{
  background-color: var(--coler-main);
  padding-top: var(--f-size-30);
  padding-bottom: var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #about{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#about .sec-title{
  color: #fff;
}
#about .about-comment{
  width: 80vw;
  color: #fff;
  text-align: center;
  margin: 0 auto var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #about .about-comment{
    margin: 0 auto 50px;
  }
}
#about .company-data{
  position: relative;
  overflow: hidden;
  width: 90vw;
  background-color: #fff;
  border-radius: var(--f-size-30);
  margin: 0 auto;
  padding-top: var(--f-size-20);
}
@media screen and (min-width: 768px) {
  #about .company-data{
    width: min(91vw,1310px);
  }
}
#about .company-data picture{
  width: 80vw;
  margin: 0 auto var(--f-size-10);
}
#about .company-data picture img{
  width: 100%;
}
@media screen and (min-width: 768px) {
  #about .company-data .data-container{
    position: relative;
  }
  #about .company-data picture{
    position: absolute;
    width: 56%;
    margin: 0;
    left: 21%;
    bottom: -325px;
  }
}
#about .company-data table{
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #about .company-data table{
    width: 86%;
  }
  #about .company-data tr{
    border-bottom: 1px solid var(--color-text);
  }
}
#about .company-data th{
  display: flex;
  align-items: center;
  font-size: var(--f-size-16);
  font-weight: 500;
  padding-top: var(--f-size-20);
}
#about .company-data th img{
  margin-right: var(--f-size-10);
}
#about .company-data td{
  display: block;
  font-size: var(--f-size-16);
  border-bottom: 1px solid var(--color-text);
  padding: var(--f-size-10) 0;
}
#about .company-data tr:last-of-type td{
  border: none;
}
@media screen and (min-width: 768px) {
  #about .company-data td{
    display: table-cell;
    border: none;
  }
}
#about .company-data span{
  display: none;
}
@media screen and (min-width: 768px) {
  #about .company-data span{
    display: inline;
  }
}

#about .card-area{
  width: 90vw;
  background-color: var(--color-back-grey);
  margin: 0 auto;
  padding: 10vw 0 4.67vw;
}
@media screen and (min-width: 768px) {
  #about .card-area{
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 30px;
    padding: 190px 11% 70px;
    margin: 185px auto 0;
  }
}
#about .card-area .about-card{
  width: 72vw;
  background-color: #fff;
  text-align: center;
  border: 1px solid var(--color-text);
  border-radius: var(--f-size-10);
  padding: var(--f-size-10);
  margin: 0 auto var(--f-size-20);
}
#about .about-card img{
  width: 17vw;
  margin: 0 auto;
}
#about .about-card h4{
  font-size: var(--f-size-16);
  font-weight: 700;
  margin: var(--f-size-10) 0;
}
#about .about-card p{
  font-size: var(--f-size-16);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #about .card-area .about-card{
    width: 350px;
    margin: 0;
  }
  #about .about-card img{
    width: 64px;
  }
}
#news {
  background-color: var(--color-back-grey);
  padding: var(--f-size-30) 0 16vw;
}
@media screen and (min-width: 768px) {
  #news{
    padding: 60px 0;
  }
  #news .sec-title{
    margin-bottom: 40px;
  }
}
#news ul{
  background-color: #fff;
  width: 80vw;
  border-radius: var(--f-size-30);
  margin: 0 auto;
  padding: var(--f-size-30) 0 1.6vw;
}
@media screen and (min-width: 768px) {
  #news ul{
    width: min(62.5vw,900px);
    padding: var(--f-size-30) 0 6px ;
  }
}
#news li{
  margin-bottom: var(--f-size-24);
  padding: 0 var(--f-size-24);
}
#news .date{
  background: url(img/news_ico.svg) no-repeat left center/var(--f-size-16);
  font-size: var(--f-size-14);
  padding-left: var(--f-size-30);
  margin-bottom: var(--f-size-16);
}
#news .headline{
  font-size: var(--f-size-16);
  color: #0A0A0A;
}
#news .tags{
  display: inline-block;
  width: 19.5vw;
  font-size: 3.2vw;
  line-height: 3.2vw;
  color: #fff;
  text-align: center;
  border-radius: 1vw;
  margin-left: 4vw;
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  #news .tags{
    width: 75px;
    font-size: 12px;
    line-height: 12px;
    padding-top: 5px;
    padding-bottom: 4px;
    border-radius: 4px;
  }
}
#news .news{
  background-color: var(--color-sub);
}
#news .important{
  background-color: var(--coler-main);
}

#contact{
  padding: var(--f-size-30) 0 10.67vw;
}
@media screen and (min-width: 768px) {
  #contact{
    padding: 60px 0;
  }
  #contact .sec-title{
    margin-bottom: 10px;
  }
}
#contact .contact-message{
  color: var(--coler-main);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--f-size-30);
}
@media screen and (min-width: 768px) {
  #contact .card-area{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    width: min(78.8vw,1135px);
    height: min(250vw,950px);
    margin: 0 auto;
    gap: 24px;
  }
}
#contact .contact-card{
  width: 80vw;
  color: var(--coler-main);
  border: 1px solid var(--coler-main);
  border-radius: var(--f-size-14);
  margin: 0 auto var(--f-size-24);
  padding: var(--f-size-24);
}
@media screen and (min-width: 768px) {
  #contact .contact-card{
    width: 31.8%;
    margin: 0;
  }
  #contact .card-3{
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
#contact .contact-card .card-title{
  display: flex;
  font-size: var(--f-size-16);
  margin-bottom: var(--f-size-30);
}
#contact .contact-card .phone-num{
  font-size: var(--f-size-24);
}
#contact .contact-card .time,
#contact .contact-card .address{
  font-size: var(--f-size-14);
}
#contact .contact-card .mail{
  font-size: var(--f-size-16);
}
@media screen and (min-width: 768px) {
  #contact .contact-card .card-title{
    margin-bottom: 20px;
  }
}
#contact .contact-card .map{
  width: 65vw;
  border: 2px solid #E5E7EB;
  border-radius: var(--f-size-10);
  margin: 0 auto;
}
#contact .contact-card .map iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 244 / 188;
}
@media screen and (min-width: 768px) {
  #contact .contact-card .map{
    flex: 1;
    width: 100%;
    margin: 10px auto 0;
  }
  #contact .contact-card .map iframe{
    height: 100%;
    aspect-ratio: 309 / 188;
  }
}

#contact .form-card,
#contact .submit-card{
  width: 80vw;
  border: 1px solid var(--coler-main);
  border-radius: var(--f-size-14);
  margin: 0 auto var(--f-size-24);
  padding: var(--f-size-24) 5vw;
}

#contact .form-card .card-title,
#contact .submit-card .card-title{
  color: var(--coler-main);
  font-size: var(--f-size-16);
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  #contact .form-card{
    flex: 1;
    width: 64.7%;
    padding: 22px 24px;
    margin: 0;
  }
  #contact .submit-card{
    width: min(51vw,735px);
  }
  #contact .form-card .card-title,
  #contact .submit-card .card-title{
    margin-bottom: 5px;
  }
}

#contact form p,
#contact form ul{
  font-size: var(--f-size-16);
}
#contact form li{
  display: flex;
  align-items: start;
}
#contact form label{
  font-size: var(--f-size-14);
}
#contact form input{
  width: 100%;
  font-family: var(--font-ja);
  font-size: var(--f-size-14);
  color: #717182;
  background-color: #F3F3F5;
  border: none;
  border-radius: 2vw;
  padding: 1vw 3.2vw;
}
#contact form input:focus::-webkit-input-placeholder {
	color: transparent;
}
#contact form input:focus::-moz-placeholder {
	color: transparent;
}
#contact form input:focus::-ms-input-placeholder {
	color: transparent;
}
#contact form input:focus::placeholder {
	color: transparent;
}
#contact form textarea{
  width: 100%;
  font-family: var(--font-ja);
  font-size: var(--f-size-14);
  color: #717182;
  background-color: #F3F3F5;
  border: none;
  border-radius: 2vw;
  padding: 1vw 3.2vw;
}
#contact form input[type="radio"]{
  accent-color:var(--color-text);
  width: 4.8vw;
  padding: 0;
  margin-top: 1.2vw;
}
#contact form input[type="checkbox"]{
  width: 3.47vw;
  margin-right: 3.5vw;
}
#contact form .agree{
  font-size: 12px;
  color: var(--coler-main);
  margin-bottom: var(--f-size-16);
}
#contact form .agree-sub{
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  #contact form input{
    border-radius: 8px;
    padding: 4px 12px;
  }
  #contact form textarea{
    border-radius: 8px;
    padding: 8px 12px;
  }
  #contact form input[type="radio"]{
    width: 18px;
    margin-top: 3px;
  }
  #contact form input[type="checkbox"]{
  width: 14px;
  margin-right: 20px;
}
#contact form .agree{
  font-size: 14px;
}
#contact form .agree-sub{
  font-size: 14px;
}
}
#contact .policy{
  width: 69.3vw;
  height: 81.87vw;
  overflow: scroll;
  margin-bottom: var(--f-size-20);
}
#contact .policy p{
  font-size: 12px;
}
@media screen and (min-width: 768px){
  #contact .policy{
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
  }
  #contact .button-area{
    display: flex;
    gap: 15px;
  }
}
#contact .submit{
  position: relative;
  display: block;
  background-color: var(--coler-main);
  width: 64vw;
  height: 12vw;
  font-size: var(--f-size-16);
  line-height: 6vw;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6.5vw;
  border: 1px solid var(--coler-main);
  padding: 3.2vw var(--f-size-16);
  margin: var(--f-size-20) auto 0;
}
#contact .submit::after{
  position: absolute;
  display: block;
  content: "";
  width: var(--f-size-20);
  height: var(--f-size-20);
  -webkit-mask-image: url('img/contact_btn_ico.svg');
  mask-image: url('img/contact_btn_ico.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  top: 3.2vw;
  right: var(--f-size-16);
}
#contact .submit:hover{
  background-color: var(--color-grey);
  color: var(--coler-main);
}
@media screen and (min-width: 768px) {
  #contact .submit{
    width: 247px;
    height: 45px;
    line-height: 1em;
    padding: 14px 24px;
    margin: 20px auto 0;
  }
  #contact .submit::after{
    top: 12px;
    right: 13px;
  }
}
#contact .modify{
  position: relative;
  display: block;
  background-color: #fff;
  width: 64vw;
  height: 12vw;
  font-size: var(--f-size-16);
  line-height: 6vw;
  color: var(--coler-main);
  text-align: center;
  text-decoration: none;
  border-radius: 6.5vw;
  border: 1px solid var(--coler-main);
  padding: 3.2vw var(--f-size-16);
  margin: var(--f-size-20) auto 0;
}
#contact .modify::after{
  position: absolute;
  display: block;
  content: "";
  width: var(--f-size-20);
  height: var(--f-size-20);
  -webkit-mask-image: url('img/contact_btn_ico.svg');
  mask-image: url('img/contact_btn_ico.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  top: 3.2vw;
  left: var(--f-size-16);
}
#contact .modify:hover{
  background-color: var(--color-text);
  color: #fff;
}
@media screen and (min-width: 768px) {
  #contact .modify{
    width: 247px;
    height: 45px;
    line-height: 1em;
    padding: 14px 24px;
    margin: 20px auto 0;
  }
  #contact .modify::after{
    top: 12px;
    left: 13px;
  }
}
#contact .thank-message{
  font-size: var(--f-size-16);
  color: var(--coler-main);
}
@media screen and (min-width: 768px) {
  #contact .thank-message{
    text-align: center;
  }
}
#contact.confirm-page{
  padding-top: 22vw;
}
@media screen and (min-width: 768px) {
  #contact.confirm-page{
    padding-top: 110px;
  }
}
#contact.confirm-page label {
  color: var(--coler-main);
}
#contact.confirm-page label + p {
  margin-bottom: 1em;
}

footer{
  background-color: var(--coler-main);
  color: #fff;
  padding: var(--f-size-36) 8.8vw 4.5vw;
}
@media screen and (min-width: 768px) {
  footer{
    padding: 45px 0 12px;
  }
  footer .footer-container{
    display: flex;
    justify-content: space-between;
    width: min(78.8vw,1135px);
    margin: 0 auto;
  }
}
footer h3{
  margin-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  footer h3{
    width: 290px;
    margin-bottom: 25px;
  }
}
footer h4{
  font-size: var(--f-size-16);
  font-weight: 700;
  margin-bottom: var(--f-size-10);
}
@media screen and (min-width: 768px) {
  footer h4{
    margin-bottom: 15px;
  }
}
footer ul{
  margin-bottom: 9.3vw;
}
footer li{
  font-size: var(--f-size-14);
  margin-bottom: 1vw;
}
@media screen and (min-width: 768px) {
  footer ul{
    margin-bottom: 0;
  }
  footer li{
    margin-bottom: 8px;
  }
}
footer p{
  font-size: var(--f-size-14);
}
@media screen and (min-width: 768px) {
  footer p{
    line-height: 20px;
  }
}
footer .copy{
  color: var(--color-d-grey);
  text-align: center;
  margin-top: 10.7vw;
}
@media screen and (min-width: 768px) {
  footer .copy{
    margin-top: 60px;
  }
}

/*アニメーション設定*/
.slide-left{
  opacity: 0;
  transform: translateX(-50%);
  transition: 1s;
}
.slide-right{
  opacity: 0;
  transform: translateX(50%);
  transition: 1s;
}
.slide-bottom{
  opacity: 0;
  transform: translateY(50%);
  transition: 1s;
}
.balloon-bottom{
  opacity: 0;
  transform: translateY(50%) scale(0.5);
  transition: 1s;
}
.anime.is-active{
  opacity: 1;
  transform: translate(0) scale(1);
}