@charset "UTF-8";

html{
  font-size: 100%;
  scroll-behavior: smooth;
}

body{
  color: #000;
  font-family: "Noto Serif JP", serif;
}

a{
  text-decoration: none;
  color: #000;
}

img{
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

.wrapper{
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

li{
  list-style: none;
}

.sp{
  display: none;
}

/*-------------------------------------------
PAGE TOP
-------------------------------------------*/

/*リンクの形状*/
#page-top a{
  display: block;
	background-color: #B5B5B5;
  border: 1px solid #B5B5B5;
	border-radius: 50%;
	width: 57px;
	height: 57px;
	transition: all 0.3s;
  position: relative;
}

#page-top a::before{
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 29px;    
  height: 29px;   
  background-color: #fff; 
  clip-path: polygon(50% 0%, 0 100%, 100% 100%);
  transition: .3s;  
}

#page-top a:hover::before{
  background-color: #B5B5B5;  
}

#page-top a:hover{
	background: #FFF;
}

#page-top {
	position: fixed;
	right: 11px;
	bottom: 15px;
	z-index: 20;
	opacity: 0;
	transform: translateY(100px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	  transform: translateY(100px);
  }
  to {
    opacity: 1;
	  transform: translateY(0);
  }
}

#page-top.DownMove{
	/* animation: DownAnime 0.5s forwards; */
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	  transform: translateY(0);
  }
  to {
  	opacity: 1;
	  transform: translateY(100px);
  }
}

/*-------------------------------------------
HEADER
-------------------------------------------*/

.header{
  max-width: 1440px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}

.header__inner{
  display: flex;
  justify-content: space-between;
}

.site-title{
  width: 42.6%;
  max-width: 614px;
}

.header__box{
  display: flex;
  max-height: 91px;
}

.header__tel{
  background-color: #fff;
  padding: 10px 17px;
}

.header__tel__title{
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  text-align: center;
}

.header__tel__number{
  display: block;
  font-size: 2.0625rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__tel__number img{
  max-width: 24px;
}

.header__line a{
  display: block;
  clip-path: polygon(100% 0, 100% 80%, 80% 99%, 0 99%, 0 0);
  background-color: #00B900;
  padding: 13px 28px;
}

.header__line__img{
  margin: 0 auto;
  width: 42px;
}

.header__line__title{
  margin-top: 8px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.header__reserve a{
  display: block;
  clip-path: polygon(100% 0, 100% 80%, 80% 99%, 0 99%, 0 0);
  background-color: #425E76;
  padding: 14px 29px;
}

.header__reserve__img{
  margin: 0 auto;
  width: 39px;
}

.header__reserve__title{
  margin-top: 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------------------------------
MV
-------------------------------------------*/

.mv{
  margin: 0 auto;
  max-width: 1440px;
  background-image: url(../img/mv.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 272px;
  padding-left: 122px;
  padding-bottom: 150px;
  position: relative;
  overflow-x: hidden;
}

.mv__phrase{
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0px 0px 4px rgba(0,0,0,1));
  line-height: 1.6;
}

.mv__phrase span{
  font-size: 3rem;
}

.mv__description{
  margin-top: 40px;
  font-size: 2.25rem;
  color: #fff;
  filter: drop-shadow(0px 0px 4px rgba(0,0,0,1));
  line-height: 1.6;
}

.mv__list{
  display: flex;
  justify-content: flex-end;
  transform: translateX(15px);
}

.circle {
  position: relative;
  width: 212px;
  height: 212px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.circle1{
  background-color: #4a6b8c;
  z-index: 6;
}

.circle2{
  background-color: #448DCB;
  z-index: 5;
  transform: translateX(-30px);
}

.circle3{
  background-color: #E8E8E8;
  z-index: 4;
  transform: translateX(-60px);
}

.overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 110%, 140% 0%, 100% 100%);
}

.overlay1{
  background: #425E76;
}

.overlay2{
  background: #2971AE;
}

.overlay3{
  background-color: #DADADA;
}

.arc-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.arc {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
}

.arc3{
  stroke: #000;
}

.circle1__img{
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 35px;
}

.circle1__text{
  margin-top: 10px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}

.circle1__text span{
  font-size: 3.5rem;
}

.circle2__img{
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 46px;
}

.circle2__text{
  margin-top: 5px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.circle2__text span{
  font-size: 3.125rem;
}

.circle3__img{
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 45px;
}

.circle3__text{
  margin-top: 5px;
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.circle3__text span{
  font-size: 1.875rem;
  line-height: 1.1;
}

.mv__bar{
  background-color: #425E76;
  max-width: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 240px;
  padding-left: 14px;
  padding-right: 14px;
}

.mv__bar__img{
  width: 47px;
}

.mv__bar__text{
  font-size: 1.125rem;
  writing-mode: vertical-rl;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .1em;
}

.steam{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*-------------------------------------------
RECOMMENDATION
-------------------------------------------*/

.recommendation{
  margin: 0 auto;
  max-width: 1440px;
}

.recommendation__inner{
  padding-left: 3px;
  padding-right: 3px;
}

.recommendation__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.recommendation__list{
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 42px;
}

.recommendation__list li{
  width: 32%;
  border: 2px solid #425E76;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 3px;
  padding: 30px 20px;
  position: relative;
}

.recommendation__spell{
  font-size: 1.5rem;
  font-family: "Bad Script", cursive;
  color: #425E76;
  text-transform: capitalize;
  background-color: #fff;
  width: fit-content;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
}

.recommendation__text{
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.8;
}

.recommendation__text span.color{
  color: #2971AE;
}

.recommendation__text span.size{
  font-size: 1rem;
}

.recommendation__person{
  width: 45px;
}

/*-------------------------------------------
ABOUT
-------------------------------------------*/

.about{
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/about-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.about__text{
  margin-top: 12px;
  text-align: center;
  line-height: 1.8;
}

.about__list{
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

.about__list li{
  width: 49%;
  background-color: #425E76;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
}

.about__list__img{
  max-width: 173px;
}

.about__list__title{
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;

}

.about__list__description{
  line-height: 1.8;
  color: #fff;
}

/*-------------------------------------------
FEATURE
-------------------------------------------*/

.feature{
  margin: 0 auto;
  max-width: 1440px;
}

.feature__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.feature__title span{
  font-size: 1.5rem;
}

.feature__list{
  margin-top: 60px;
}

.feature__list li{
  margin-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
}

.feature__list li:first-of-type{
  margin-top: 0px;
}

.feature__list li:nth-of-type(even){
  flex-direction: row-reverse;
}

.feature__list__text{
  width: 36.4%;
  position: relative;
  padding-top: 24px;
  padding-right: 24px;
}

.feature__list li:nth-of-type(even) .feature__list__text{
  padding-left: 24px;
}

.feature__list__number{
  font-family: "Babylonica", cursive;
  font-size: 2.5rem;
  color: #425E76;
  line-height: 1;
  transform: rotate(-10deg) translateY(-20px);
}

.feature__list__number span{
  font-size: 6rem;
}

.feature__list__title{
  font-size: 2rem;
  line-height: 1.6;
}

.feature__list__description{
  margin-top: 20px;
  line-height: 1.8;
}

.feature__list__text__bg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature__list__img{
  width: 62.78%;
}

/*-------------------------------------------
COMPARISON
-------------------------------------------*/

.comparison{
  margin: 0 auto;
  margin-top: 100px;
  max-width: 1440px;
  background-image: url(../img/comparison-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 76px;
  padding-bottom: 90px;
}

.comparison__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.cross-table{
  margin-top: 34px;
  overflow-x: auto;
}

.scroll-hint-text {
  font-family: 'Noto Sans JP', sans-serif;
}

.cross-table__inner{
  margin: 0 auto;
  width: 1115px;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}

.cross-table__header{
  padding: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 1.25rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

.cross-table__header.red{
  background-color: #ffe6e6;
}

.cross-table__header.blue{
  background-color: #e6fcff;
}

.cross-table__header--md-sticky{
  background-color: #E9E9E9;
}

.cross-table__text{
  padding: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
  line-height: 1.2;
}

.cross-table__text span{
  font-size: 0.875rem;
}

.cross-table__text.red{
  background-color: #ffe6e6;
}

.cross-table__text.blue{
  background-color: #e6fcff;
}

.cross-table__header:last-child, .cross-table__text:last-child{
  border-right-width: 0;
}

.cross-table__body-row:last-child
.cross-table__header, 
.cross-table__body-row:last-child
.cross-table__text{
  border-bottom-width: 0;
}

/*-------------------------------------------
FLOW
-------------------------------------------*/

.flow{
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.flow__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.flow__list{
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
}

.flow__list li{
  width: 19.2%;
  position: relative;
}

.flow__list__number{
  color: #F08E84;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: right;
  line-height: 1;
  transform: translateY(-20px);
  margin-bottom: -20px;
}

.flow__list__number span{
  font-size: 3rem;
}

.flow__list__title{
  margin-top: 5px;
  font-size: 1.125rem;
  font-weight: normal;
}

.flow__list__text{
  margin-top: 6px;
  padding-left: 5px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.flow__list__circle{
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background-color: #e3e7ea;
  position: absolute;
  top: 165px;
  left: 0;
  z-index: -1;
}

/*-------------------------------------------
BEFORE-AFTER
-------------------------------------------*/

.before-after{
  margin: 0 auto;
  max-width: 1440px;
  background-color: #E2E6EA;
  padding-top: 100px;
  padding-bottom: 100px;
}

.before-after__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.swiper{
  margin: 0 auto;
  width: 100%;
  max-width: 1034px;
}

.swiper-slide{
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 3px !important;
}

.swiper-pagination-bullet{
  background-color: #fff !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background-color: #797979 !important;
}

.swiper-slide__inner{
  margin: 0 auto;
  width: 90%;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
  position: relative;
}

.swiper-slide__number{
  color: #F08E84;
  font-size: 4.4375rem;
  font-family: "Babylonica", cursive;
  transform: rotate(-10deg);
  line-height: 1;
  position: absolute;
  top: -80px;
  left: -30px;
  z-index: 2;
}

.swiper-slide__number span{
  font-size: 10.75rem;
}

.swiper-slide__before-after{
  display: flex;
  justify-content: space-between;
}

.swiper-slide__before-after__img{
  width: 48.2%;
}

.swiper-slide__before-after__spell{
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.swiper-slide__list{
  display: flex;
  flex-wrap: wrap;
}

.swiper-slide__list dt{
  width: 20%;
  background-color: #E2E6EA;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  border-top: 1px solid #D2D2D2;
  border-right: 1px solid #D2D2D2;
  border-left: 1px solid #D2D2D2;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.swiper-slide__list dt:last-of-type{
  border-bottom: 1px solid #D2D2D2;
}

.swiper-slide__list dd{
  width: 80%;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  border-top: 1px solid #D2D2D2;
  border-right: 1px solid #D2D2D2;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.swiper-slide__list dd:last-of-type{
  border-bottom: 1px solid #D2D2D2;
}

/*-------------------------------------------
PLAN
-------------------------------------------*/

.plan{
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.plan__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.plan__list{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.plan__list li{
  width: 49%;
  background-color: #425E76;
  border-radius: 15px;
  padding-top: 37px;
  padding-bottom: 37px;
  padding-left: 27px;
  padding-right: 27px;
}

.plan__list__top{
  display: flex;
  gap: 18px;
}

.plan__list__img{
  max-width: 200px;
}

.plan__list__for{
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  color: #fff;
}

.plan__list__title{
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.6;
}

.plan__list__price{
  text-align: center;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.1;
}

.plan__list__price span.big{
  font-size: 3rem;
}

.plan__list__price span.small{
  font-size: 1.5rem;
}

.plan__list__description{
  margin-top: 14px;
  color: #fff;
  line-height: 1.8;
}

.plan__message{
  margin-top: 20px;
  text-align: center;
}

/*-------------------------------------------
CONSULT
-------------------------------------------*/

.consult{
  margin: 0 auto;
  max-width: 1440px;
  background-image: url(../img/consult-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}

.consult__box{
  display: flex;
  justify-content: center;
  gap: 120px;
  padding-left: 30px;
  padding-right: 30px;
}

.consult__text{
  width: 50%;
}

.consult__img{
  width: 27.2%;
}

.consult__title{
  font-size: 3rem;
  font-weight: normal;
}

.consult__guidance{
  margin-top: 5px;
  line-height: 1.8;
}

.consult__description{
  margin-top: 5px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.consult__line{
  margin-top: 25px;
  background-color: #00B900;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 9px 21px;
  gap: 10px;
  width: fit-content;
}

.consult__line a{
  display: block;
}

.consult__line__img{
  max-width: 51px;
}

.consult__line__text{
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}

.consult__line__text span{
  font-size: 0.9375rem;
  font-weight: normal;
}

.consult__message{
  margin-top: 25px;
  line-height: 1.8;
}

/*-------------------------------------------
DIRECTOR
-------------------------------------------*/

.director{
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.director__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.director__phrase{
  margin-top: 8px;
  font-size: 1.25rem;
  text-align: center;
}

.director__box{
  margin-top: 30px;
  display: flex;
  align-items: end;
}

.director__text{
  width: 62.9%;
  line-height: 1.8;
}

.director__text span.bold{
  font-weight: bold;
}

.director__text span.right{
  display: inline-block;
  width: 100%;
  text-align: right;
}

.director__img{
  width: 40%;
}

.director__video{
  margin: 0 auto;
  margin-top: 65px;
  width: 100%;
  max-width: 635px;
  height: 406px;
}

.director__video iframe{
  width: 100%;
  height: 100%;
}

/*-------------------------------------------
FAQ
-------------------------------------------*/

.faq{
  margin: 0 auto;
  max-width: 1440px;
  background-image: url(../img/faq-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 76px;
}

.faq__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.faq__list{
  margin-top: 12px;
}

.faq__list li{
  border-bottom: 1px solid #AFAFAF;
  padding-top: 29px;
  padding-bottom: 29px;
}

.faq__list li:first-of-type{
  padding-top: 0;
}

.faq__list li:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}

.faq__list__question{
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
}

.faq__list__question span{
  flex-shrink: 0;
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #425E76;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 600;
  padding-top: 4px;
  padding-bottom: 10px;
}

.faq__list__answer{
  margin-top: 19px;
  display: flex;
  gap: 15px;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.8;
}

.faq__list__answer span{
  flex-shrink: 0;
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #F08E84;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 600;
  padding-top: 7px;
  padding-bottom: 10px;
}

/*-------------------------------------------
CONTACT
-------------------------------------------*/

.contact{
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #e2e6ea;
}

.contact__title{
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}

.contact__text{
  margin-top: 11px;
  line-height: 1.8;
  text-align: center;
}

.form{
  margin-top: 30px;
  background-color: #F9F9F9;
  border-radius: 20px;
  padding-top: 35px;
  padding-bottom: 55px;
  padding-left: 50px;
  padding-right: 50px;
}

.form__item{
  border-bottom: 1px dotted #D9D9D9;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.form__item label{
  width: 23%;
  color: #707070;
}

.form__item label strong{
  display: inline-block;
  font-size: 0.875rem;
  font-weight: normal;
  color: #fff;
  background-color: #C60000;
  padding: 5px 8px;
  border-radius: 5px;
  line-height: 1;
  margin-left: 9px;
}

.form__body{
  width: 77%;
  background-color: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  max-height: 41px;
}

.form__body.name__body{
  width: 44%;
}

.form__body.furigana__body{
  width: 44%;
}

.form__body.textarea__body{
  max-height: 192px;
  height: 192px;
}

.form__body input{
  padding: 10px;
  width: 100%;
}

.form__body textarea{
  padding: 10px;
  width: 100%;
  height: 100%;
}

.checkbox__body{
  width: 70%;
  display: flex;
  justify-content: flex-start;
  gap: 27px;
}

.checkbox__body label{
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
}

input[type="checkbox"] {
  position: relative;
  width: 19px !important;
  height: 19px !important;
  border: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"]:checked{
  background-color: #fff;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 7px;
  height: 15px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.submit-btn-box{
  margin-top: 35px;
  text-align: center;
}

.submit-btn{
  width: 141px;
  background-color: #898989;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #898989;
  transition: .3s;
}

.submit-btn:hover{
  background-color: #fff;
  color: #898989;
}

/*-------------------------------------------
METHOD
-------------------------------------------*/

.method{
  margin: 0 auto;
  max-width: 1440px;
  background-image: url(../img/method-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 65px;
  padding-bottom: 65px;
}

.method__phrase{
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1.6;
}

.method__description{
  margin-top: 11px;
  text-align: center;
  color: #fff;
  line-height: 1.8;
}

.method__title{
  margin-top: 11px;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6;
}

.method__list{
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
}

.method__list li{
  width: 31.7%;
}

.method__list__line a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #00B900;
  padding: 11px;
  height: 100%;
}

.method__list__line__img{
  max-width: 51px;
}

.method__list__line__text{
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}

.method__list__line__text span{
  font-size: 1rem;
}

.method__list__reserve a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background-color: #FCAEDC;
  padding: 11px;
  height: 100%;
}

.method__list__reserve__img{
  max-width: 44px;
}

.method__list__reserve__text{
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}

.method__list__reserve__text span{
  font-size: 1rem;
}

.method__list__tel a{
  display: block;
  background-color: #86B2FF;
  padding: 10px;
  text-align: center;
  height: 100%;
}

.method__list__tel__text{
  color: #fff;
  font-weight: bold;
}

.method__list__tel__number{
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
}

.method__list__tel__number img{
  margin-right: 5px;
  display: inline-block;
  max-width: 25px;
}

/*-------------------------------------------
FOOTER
-------------------------------------------*/

.footer{
  margin: 0 auto;
  max-width: 1440px;
}

.footer__box{
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
}

.footer__text{
  width: 31.7%;
}

.footer__access{
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
}

.footer__address{
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer__number{
  margin-top: 6px;
  color: #425E76;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__number img{
  max-width: 29px;
}

.footer__appeal{
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.footer__map{
  width: 65.5%;
  max-height: 329px;
}

.footer__map iframe{
  width: 100%;
  height: 100%;
}

.copyright{
  margin: 0 auto;
  max-width: 1440px;
  background-color: #425E76;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------------------------------
thanks.html
-------------------------------------------*/

.thanks-logo{
  width: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

.thanks-title{
  margin-top: 200px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 16px;
  padding-right: 16px;
}

.thanks-message{
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.thanks-btn-box{
  margin-top: 50px;
  text-align: center;
  margin-bottom: 200px;
}

.thanks-btn{
  width: 200px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid #333;
  text-transform: uppercase;
  padding: 5px;
  font-family: "Noto Sans JP", sans-serif;
  transition: .3s;
}

.thanks-btn:hover{
  color: #fff;
  background-color: #333;
}

/*-------------------------------------------
TB
-------------------------------------------*/
@media screen and (max-width: 768px) {

  .sp{
    display: block;
  }

  #page-top {
    right: 8px;
    bottom: 80px;
  }

  /*-------------------------------------------
  HEADER
  -------------------------------------------*/

  .site-title{
    width: 55%;
  }

  .header__box{
    display: none;
  }

  /*-------------------------------------------
  MV
  -------------------------------------------*/

  .mv{
    background-image: url(../img/mv-sp.png);
    padding-top: 73px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 16px;
  }

  .mv__phrase{
    font-size: 2.5rem;
  }

  .mv__phrase span{
    font-size: 1.875rem;
  }

  .mv__description{
    margin-top: 398px;
    font-size: 1.25rem;
  }

  .mv__list{
    margin-top: 17px;
    justify-content: flex-start;
    transform: translateX(0px);
    position: relative;
    z-index: 5;
  }

  .circle {
    width: 135px;
    height: 135px;
  }

  .circle2{
    transform: translateX(-15px);
  }

  .circle3{
    transform: translateX(-30px);
  }

  .circle1__img{
    width: 22px;
  }

  .circle1__text{
    margin-top: 5px;
    font-size: 0.9375rem;
  }

  .circle1__text span{
    font-size: 2.1875rem;
  }

  .circle2__img{
    width: 29px;
  }

  .circle2__text{
    margin-top: 3px;
    font-size: 0.9375rem;
  }

  .circle2__text span{
    font-size: 1.9375rem;
  }

  .circle3__img{
    width: 23px;
  }

  .circle3__text{
    margin-top: 3px;
    font-size: 0.75rem;
  }

  .circle3__text span{
    font-size: 1.1875rem;
  }

  .mv__bar{
    display: none;
  }

  /*-------------------------------------------
  RECOMMENDATION
  -------------------------------------------*/

  .recommendation{
    padding-top: 10px;
  }

  .recommendation__inner{
    padding-left: 10px;
    padding-right: 10px;
  }

  .recommendation__title{
    font-size: 2rem;
  }

  .recommendation__list{
    flex-direction: column;
    row-gap: 36px;
  }

  .recommendation__list li{
    width: 100%;
  }

  /*-------------------------------------------
  ABOUT
  -------------------------------------------*/

  .about{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/about-bg-sp.png);
  }

  .about__title{
    font-size: 2rem;
  }

  .about__text{
    text-align: left;
  }

  .about__list{
    flex-direction: column;
    row-gap: 23px;
  }

  .about__list li{
    justify-content: center;
    width: 100%;
    gap: 14px;
    padding: 15px 20px;
    max-width: 450px;
  }

  .about__list__img{
    max-width: 124px;
  }

  .about__list__title{
    font-size: 1.0625rem;
  }

  .about__list__description{
    font-size: 0.75rem;
  }

  /*-------------------------------------------
  FEATURE
  -------------------------------------------*/

  .feature__title{
    font-size: 2rem;
  }

  .feature__title span{
    font-size: 1.25rem;
  }

  .feature__list{
    margin-top: 30px;
  }

  .feature__list li{
    margin-top: 30px;
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
    gap: 10px;
  }

  .feature__list li:nth-of-type(even){
    flex-direction: column;
  }

  .feature__list__text{
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
  }

  .feature__list li:nth-of-type(even) .feature__list__text{
    padding-left: 0px;
  }

  .feature__list__number{
    transform: rotate(-10deg) translateY(-30px);
  }

  .feature__list__title{
    font-size: 1.5rem;
  }

  .feature__list li:first-of-type .feature__list__title br{
    display: none;
  }

  .feature__list__description{
    font-size: 0.875rem;
  }

  .feature__list__text__bg{
    max-width: 250px;
  }

  .feature__list__img{
    width: 100%;
  }

  /*-------------------------------------------
  COMPARISON
  -------------------------------------------*/

  .comparison{
    margin-top: 50px;
    background-image: url(../img/comparison-bg-sp.png);
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .comparison__inner{
    padding-right: 0;
  }

  .comparison__title{
    font-size: 2rem;
    padding-right: 10px;
  }

  .cross-table{
    margin-top: 38px;
  }

  .cross-table__inner{
    width: 100%;
  }

  .cross-table__header{
    font-size: 0.76rem;
  }

  .cross-table__text{
    font-size: 0.76rem;
  }

  .cross-table__text span{
    font-size: 0.6rem;
  }

  .cross-table{
    border-right-width: 0;
    overflow-x: auto;
  }
  .cross-table__inner{
    width: 682px;
  }

  .cross-table__header,.cross-table__text{
    white-space: nowrap;
  }

  /*-------------------------------------------
  FLOW
  -------------------------------------------*/

  .flow{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .flow__title{
    font-size: 2rem;
  }

  .flow__list{
    flex-direction: column;
    gap: 30px;
  }

  .flow__list li{
    width: 100%;
  }

  .flow__list__img img{
    width: 100%;
  }

  .flow__list__title{
    margin-top: 0;
  }

  .flow__list__text{
    padding-left: 8px;
  }

  .flow__list__circle{
    position: absolute;
    top: 285px;
    left: 0;
    z-index: -1;
  }

  /*-------------------------------------------
  BEFORE-AFTER
  -------------------------------------------*/

  .before-after{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .before-after__inner{
    padding-left: 5px;
    padding-right: 5px;
  }

  .before-after__title{
    font-size: 2rem;
  }

  .swiper-slide{
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .swiper-slide__inner{
    width: 85%;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .swiper-slide__number{
    font-size: 2.625rem;
    top: -30px;
    left: -12px;
  }

  .swiper-slide__number span{
    font-size: 6.3125rem;
  }

  .swiper-slide__list{
    margin-top: 21px;
  }

  .swiper-slide__list dt{
    padding-right: 10px;
    font-size: 0.875rem;
  }


  .swiper-slide__list dd{
    padding-right: 10px;
    font-size: 0.875rem;
  }

  /*-------------------------------------------
  PLAN
  -------------------------------------------*/

  .plan{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .plan__title{
    font-size: 2rem;
  }

  .plan__list{
    flex-direction: column;
    gap: 28px;
  }

  .plan__list li{
    width: 100%;
    padding-left: 26px;
    padding-right: 26px;
  }

  .plan__list__top{
    flex-direction: column;
    align-items: center;
  }

  .plan__message{
    text-align: left;
    line-height: 1.8;
  }

  /*-------------------------------------------
  CONSULT
  -------------------------------------------*/

  .consult{
    background-image: url(../img/consult-bg-sp.png);
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .consult__box{
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .consult__text{
    width: fit-content;
  }

  .consult__img{
    margin: 0 auto;
    width: 100%;
    max-width: 215px;
  }

  .consult__title{
    font-size: 2.25rem;
  }

  .consult__guidance{
    margin-top: 0px;
  }

  .consult__description{
    margin-top: 0px;
  }

  .consult__line{
    justify-content: center;
    width: 100%;
    gap: 9px;
  }

  .consult__line__img{
    max-width: 45px;
  }

  .consult__line__text{
    font-size: 1.11rem;
  }

  .consult__line__text span{
    font-size: 0.8125rem;
  }

  /*-------------------------------------------
  DIRECTOR
  -------------------------------------------*/

  .director{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .director__title{
    font-size: 2rem;
  }

  .director__phrase{
    line-height: 1.6;
  }

  .director__box{
    margin-top: 10px;
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }

  .director__text{
    width: 100%;
  }

  .director__img{
    margin: 0 auto;
    width: 100%;
    max-width: 284px;
  }

  .director__video{
    margin-top: 20px;
    height: 226px;
  }

  /*-------------------------------------------
  FAQ
  -------------------------------------------*/

  .faq{
    background-image: url(../img/faq-bg-sp.png);
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .faq__title{
    font-size: 2rem;
  }

  /*-------------------------------------------
  CONTACT
  -------------------------------------------*/

  .contact{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact__title{
    font-size: 2rem;
  }

  .form{
    margin-top: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .form__item{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .form__item label{
    width: 100%;
  }

  .form__item label strong{
    margin-left: 10px;
  }

  .form__body{
    width: 100%;
  }

  .form__body.name__body{
    width: 100%;
  }

  .form__body.furigana__body{
    width: 100%;
  }

  .checkbox__body{
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 23px;
  }

  .checkbox__body label{
    width: auto;
  }

  .submit-btn-box{
    margin-top: 16px;
  }

  .submit-btn{
    width: 154px;
  }

  /*-------------------------------------------
  METHOD
  -------------------------------------------*/

  .method{
    background-image: url(../img/method-bg-sp.png);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .method__inner{
    padding-left: 25px;
    padding-right: 25px;
  }

  .method__phrase{
    font-size: 1.5rem;
  }

  .method__description{
    text-align: left;
  }

  .method__title{
    font-size: 1.5rem;
  }

  .method__list{
    flex-direction: column;
    gap: 26px;
  }

  .method__list li{
    width: 100%;
  }

  /*-------------------------------------------
  FOOTER
  -------------------------------------------*/

  .footer{
    margin-bottom: 66px;
  }

  .footer__box{
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
    gap: 30px;
  }

  .footer__text{
    width: 100%;
  }

  .footer__address{
    text-align: center;
  }

  .footer__number{
    margin: 0 auto;
    margin-top: 6px;
    width: fit-content;
  }

  .footer__appeal{
    font-size: 1rem;
  }

  .footer__map{
    width: 100%;
    height: 329px;
  }

  .link-bottom{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    max-height: 66px;
    display: flex;
  }

  .link-bottom__tel{
    width: 55%;
    box-sizing: border-box;
    padding: 7px 12px;
    background-color: #fff;
    text-align: center;
  }

  .link-bottom__tel__text{
    font-size: 0.726875rem;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
  }

  .link-bottom__tel__number{
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
  }

  .link-bottom__tel__number img{
    max-width: 17px;
  }

  .link-bottom__line{
    width: 22.5%;
    box-sizing: border-box;
    background-color: #00B900;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .link-bottom__line__img{
    max-width: 30px;
  }

  .link-bottom__line__text{
    text-transform: uppercase;
    color: #fff;
    font-size: 0.625rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
  }

  .link-bottom__reserve{
    width: 22.5%;
    box-sizing: border-box;
    background-color: #425E76;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .link-bottom__reserve__img{
    max-width: 30px;
  }

  .link-bottom__reserve__text{
    text-transform: uppercase;
    color: #fff;
    font-size: 0.625rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
  }

  /*-------------------------------------------
  thanks.html
  -------------------------------------------*/

  .thanks-logo{
    width: 250px;
  }

  .thanks-message{
    text-align: left;
  }
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 400px) {

  /*-------------------------------------------
  HEADER
  -------------------------------------------*/

  .site-title{
    width: 206px;
    position: absolute;
    top: -3px;
    left: 0;
  }

  /*-------------------------------------------
  MV
  -------------------------------------------*/

  .mv{
    padding-left: 0px;
  }

  .mv__phrase{
    padding-left: 10px;
  }

  .mv__description{
    padding-left: 10px;
  }

  .mv__list{
    padding-left: 5px;
  }

  .circle {
    width: 130px;
    height: 130px;
  }

  .circle2{
    transform: translateX(-17px);
  }

  .circle3{
    transform: translateX(-34px);
  }

  .footer{
    margin-bottom: 59px;
  }

  .link-bottom{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    max-height: 66px;
    display: flex;
  }

  .link-bottom__tel{
    padding: 3px 12px;
  }

  .link-bottom__tel__text{
    font-size: 0.7rem;
  }


  .link-bottom__tel__number{
    padding-top: 3px;
    font-size: 1.125rem;
  }

  .link-bottom__tel__number img{
    max-width: 14px;
  }
}