@import url("reset.css");


html{
  background: #FFF;
  font-family: "noto-sans-cjk-jp", sans-serif;
  color: #37344A;
}
body{
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 188px;
}
@media screen and (max-width: 750px) {
  body{
    /*max-width: 375px;*/
    padding-bottom: 94px;
  }
}


/*------------------------------
ヘッダー
------------------------------*/
header{
  height: 114px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
header img{
  display: block;
}
@media screen and (max-width: 750px) {
  header{
    height: 57px;
  }
  header img{
    width: 86px;
  }
}


/*------------------------------
フッター
------------------------------*/
footer{
  background: rgba(236, 238, 245, 0.8);
  height: 188px;
  padding: 40px 60px;

  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 750px;

  display: none;
}
footer #cta_footer{
  display: flex;
  
  justify-content: center;
  align-items: center;
}
footer #cta_footer a{
  width: 100%;
  height: 105.67px;
  border-radius: 159.86px;
  border: 4px solid #FFF;
  background: linear-gradient(0deg, #B28C3E 0%, #FFD276 100%);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.15);

  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.96px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  transition : all 0.5s ease 0s;
}

footer #cta_footer a:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 70px;
    bottom: 0;
    margin: auto;
}

footer #cta_footer a:hover{
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.80);
  position: relative;
  box-shadow: 0px 0px 20px 0px #FFF;
}

@media screen and (max-width: 750px) {
  footer{
    height: 94px;
    padding: 20px 30px;
    /*max-width: 375px;*/
  }
  footer #cta_footer{
    max-width: 315px;
    margin: 0 auto;
  }
  footer #cta_footer a{
    height: 52.835px;
    border-radius: 79.93px;
    border: 2px solid #FFF;
    font-size: 16px;
    letter-spacing: 0.48px;
  }

  footer #cta_footer a:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;
    margin: auto;
  }

  footer #cta_footer a:hover{
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.80);
    box-shadow: 0px 0px 10px 0px #FFF;
  }
}

/*------------------------------
共通パーツ
------------------------------*/
.annotation{
  font-size: 20px;
  color: #787878;
}
.inner{
  padding-right: 60px;
  padding-left: 60px;
}
.pagetop {
  height: 92px;
  width: 92px;
  position: fixed;
  right: calc(50% - 46px - 270px);
  bottom: 225px;
  background: #fff;
  border: solid 2px #37344A;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 18px;
  width: 18px;
  border-top: 3px solid #37344A;
  border-right: 3px solid #37344A;
  transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width: 750px) {
  .annotation{
    font-size: 10px;
  }
  .inner{
    padding-right: 30px;
    padding-left: 30px;
  }
  .pagetop {
    height: 46px;
    width: 46px;
    right: calc(50% - 23px - 135px);
    bottom: 112.5px;
    border: solid 1px #37344A;
  }
  .pagetop__arrow {
    height: 9px;
    width: 9px;
    border-top: 1.5px solid #37344A;
    border-right: 1.5px solid #37344A;
  }
}


/*------------------------------
MV
------------------------------*/
#mv{
  position: relative;
}
#mv .annotation{
  position: absolute;
  bottom: 14px;
  right: 60px;
}
@media screen and (max-width: 750px) {
  #mv .annotation{
    bottom: 6.5px;
    right: 30px;
  }
}


/*------------------------------
CTA
------------------------------*/
#cta{
  background: #42506E;
  padding-top: 40px;
  padding-bottom: 40px;
}
#cta a{
  width: 100%;
  height: 145px;
  border-radius: 159.86px;
  border: 4px solid #FFF;
  background: linear-gradient(0deg, #B28C3E 0%, #FFD276 100%);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.15);

  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.96px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  transition : all 0.5s ease 0s;

  margin-bottom: 5px;
}

#cta a:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 70px;
    bottom: 0;
    margin: auto;
}

#cta a:hover{
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.80);
  position: relative;
  box-shadow: 0px 0px 20px 0px #FFF;
}

#cta a span{
  
}
#cta a span em{
  font-style:normal;
  font-size: 44px;
}
.annotation_2{
  font-size: 20px;
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 750px) {
  #cta{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #cta a{
    height: 72.5px;
    border-radius: 79.93px;
    border: 2px solid #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    letter-spacing: 0.48px;
    max-width: 315px;
    margin: 0 auto 11px;
  }
  #cta a:before {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;
    margin: auto;
  }
  #cta a span em{
    font-size: 22px;
  }

  #cta a:hover{
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.80);
    box-shadow: 0px 0px 10px 0px #FFF;
  }

  .annotation_2{
    font-size: 10px;
  }
}

/*------------------------------
悩み
------------------------------*/
#nayami{
  padding-top: 62px;
  padding-bottom: 90px;
  background: linear-gradient(173deg, #F4F6FB -0.2%, #C7D1E3 91.41%);
}
#nayami .nayami{
  width: 625px;
  padding-bottom: 70px;
  display: block;
  margin: 0 auto;
}
#nayami .nayami_box{
  background: #FFF;
  border-radius: 12px;
  margin-bottom: 40px;
}
#nayami .nayami_box:last-child{
  margin-bottom: 0;
}
#nayami .nayami_box img{
  display: block;
  margin: 0 auto 24px;
}
#nayami .nayami_box p{
  padding: 0 40px 48px;
  font-size: 24px;
  letter-spacing: 3.7px;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  #nayami{
    padding-top: 31px;
    padding-bottom: 45px;
  }
  #nayami .nayami{
    width: 312.5px;
    padding-bottom: 35px;
  }
  #nayami .nayami_box{
    border-radius: 6px;
    margin-bottom: 20px;
  }
  #nayami .nayami_box img{
    margin: 0 auto 12px;
  }
  #nayami .nayami_box p {
    padding: 0 20px 24px;
    font-size: 12px;
    letter-spacing: 1.85px;
    line-height: 1.5;
  }
}

/*------------------------------
オススメする理由
------------------------------*/
#reason{
  background: #F6F6F6;
  padding-bottom: 100px;
}
#reason .reason_txt{
  margin-bottom: 48px;
}
#reason .reason_txt p{
  font-size: 28px;
  margin-bottom: 18px;
  letter-spacing: 3px;
  line-height: 1.5;
}
.kerning{
  letter-spacing: -0.4em;
}
#reason p strong{
  font-size: 44px;
  font-weight: 500;
}
#reason .reason_box{
  background: linear-gradient(150deg, #2D56E0, #0FB2B6, #9DCB88, #FFF383, #FF62B7, #FF6033, #FF3333 100%);
  border-radius: 12px;
  padding: 2px;
  width: auto;
  margin-bottom: 40px;
}
#reason .reason_box:last-of-type{
  margin-bottom: 0;
}
#reason .reason_box .reason_box_content{
  background: #FFF;
  border-radius: 12px;
  padding-top: 9.6px;
  padding-bottom: 70px;
}
#reason .reason_box .reason_box_content .reason_box_img1{
  display: block;
  margin: 0 auto 22px;
}
#reason .reason_box .reason_box_content p{
  padding: 0 50px;
  font-size: 28px;
  margin-bottom: 35px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-align: ;
}
#reason .reason_box .reason_box_content .reason_box_img2{
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  #reason {
    padding-bottom: 50px;
  }
  #reason .reason_txt {
    margin-bottom: 24px;
  }
  #reason .reason_txt p {
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
  }
  #reason p strong {
    font-size: 22px;
  }
  #reason .reason_box {
    border-radius: 6px;
    padding: 1px;
    margin-bottom: 20px;
  }
  #reason .reason_box .reason_box_content {
    border-radius: 6px;
    padding-top: 4.8px;
    padding-bottom: 35px;
  }
  #reason .reason_box .reason_box_content .reason_box_img1 {
    /*margin: 0 auto 11px 15px;*/
    margin: 0 auto 11px;
    width: 285px;
  }
  #reason .reason_box .reason_box_content p {
    padding: 0 25px;
    font-size: 14px;
    /*margin-bottom: 17.5px;*/
    margin: 0 auto 17.5px;
    letter-spacing: 0.6px;
    max-width: 322.5px;
  }
  #reason .reason_box .reason_box_content .reason_box_img2 {
    width: 218.5px;
    margin: 0 auto;
  }
}

/*------------------------------
Q&A
------------------------------*/
#qa{
  background: #F6F6F6;
}
#qa .qa_content{
  position: relative;
  padding-top: 68px;
  padding-bottom: 142px;
  border-radius: 100px 100px 0px 0px;
  background: #ECEEF5;
  /*box-shadow: 0px -2px 72px 0px rgba(100, 95, 135, 0.20);*/
  box-shadow: 0px -72px 22px -72px rgba(100, 95, 135, 0.20);
}
#qa .qa{
  display: block;
  margin: 0 auto 50px;
}
#qa dl{
  margin-bottom: 56px;
}
#qa dl:last-of-type{
  margin-bottom: 0;
}
#qa dl dt{
  padding: 20px 24px 20px 109px;
  border-top: 2px solid #37344A;
  border-bottom: 2px solid #37344A;
  font-size: 28px;
  font-weight: 700;
  height: 128px;
  display: flex;
  align-items: center;
  background: #FFF url('../img/qa_icon.png') no-repeat left 24px center;
  margin-bottom: 20px;
  line-height: 1.3;
}
#qa dl dd{
  font-size: 28px;
  color: #37344A;
  letter-spacing: 2px;
}

@media screen and (max-width: 750px) {
  #qa .qa_content{
    padding-top: 34px;
    padding-bottom: 71px;
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0px -36px 11px -36px rgba(100, 95, 135, 0.20);
  }
  #qa .qa{
    width: 93.5px;
    margin: 0 auto 25px;
  }
  #qa dl{
    margin-bottom: 28px;
  }
  #qa dl dt{
    padding: 10px 12px 10px 54.5px;
    border-top: 1px solid #37344A;
    border-bottom: 1px solid #37344A;
    font-size: 14px;
    height: 64px;
    background: #FFF url(../img/qa_icon.png) no-repeat left 12px center;
    background-size: 30px auto;
    margin-bottom: 10px;
  }
  #qa dl dd{
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/*------------------------------
診察の流れ
------------------------------*/
#step{
  background: #ECEEF5;
}
#step .step_content{
  position: relative;
  padding-top: 68px;
  padding-bottom: 126px;
  border-radius: 100px 100px 0px 0px;
  background: #F6F6F6;
  box-shadow: 0px -72px 22px -72px rgba(223, 226, 240, 0.80);
}
#step .step{
  display: block;
  margin: 0 auto 76px;
}
#step .step_list{
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
#step .step_list li{
  background: #FFF;
  border-radius: 12px;
  padding: 44px 56px 55px;
  position: relative;
  margin-bottom: 60px;
}
#step .step_list li:last-child{
  margin-bottom: 0;
}
#step .step_list li .step_no{
  width: 191px;
  height: 53px;
  background: url('../img/step_icon.png') no-repeat center center;
  font-size: 28px;
  color: #FFF;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -15.8px;
  left: 0;
  right: 0;
  margin: auto;
}
#step .step_list li .step_no span{
  font-weight: 700;
  margin-left: 8px;
}
#step .step_list li .step_ttl{
  font-size: 36px;
  font-weight: 700;
  /*padding-bottom: 15.6px;*/
  border-bottom: 2px solid #EDEDED;
  margin-bottom: 22.4px;
  padding: 20px 0 20px 97px;
  line-height: 1.3;
}
#step .step_list li .step_01{
  background: url('../img/step_01.png') no-repeat left center;
}
#step .step_list li .step_02{
  background: url('../img/step_02.png') no-repeat left center;
}
#step .step_list li .step_03{
  background: url('../img/step_03.png') no-repeat left center;
}
#step .step_list li .step_04{
  background: url('../img/step_04.png') no-repeat left center;
}
#step .step_list li .step_05{
  background: url('../img/step_05.png') no-repeat left center;
}
#step .step_list li .step_06{
  background: url('../img/step_06.png') no-repeat left center;
}
#step .step_list li .step_07{
  background: url('../img/step_07.png') no-repeat left center;
}
#step .step_list li .step_08{
  background: url('../img/step_08.png') no-repeat left center;
}
#step .step_list li p{
  font-size: 28px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 750px) {
  #step .step_content{
    padding-top: 34px;
    padding-bottom: 63px;
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0px -36px 11px -36px rgba(223, 226, 240, 0.80);
  }
  #step .step{
    margin: 0 auto 38px;
    width: 223px;
  }
  #step .step_list li {
    border-radius: 6px;
    padding: 22px 28px 27.5px;
    margin-bottom: 30px;
  }
  #step .step_list li .step_no {
    width: 95.5px;
    height: 26.5px;
    background-size: 95.5px auto;
    font-size: 14px;
    top: -7.9px;
  }
  #step .step_list li .step_no span {
    margin-left: 4px;
  }
  #step .step_list li .step_ttl {
    font-size: 18px;
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 11.2px;
    padding: 10px 0 10px 48.5px;
  }
  #step .step_list li .step_01,
  #step .step_list li .step_02,
  #step .step_list li .step_03,
  #step .step_list li .step_04,
  #step .step_list li .step_05,
  #step .step_list li .step_06,
  #step .step_list li .step_07,
  #step .step_list li .step_08{
    background-size: 37.5px auto;
  }
  #step .step_list li p {
    font-size: 14px;
    letter-spacing: 0.25px;
  }
}


/*------------------------------
医院長プロフィール
------------------------------*/
#profile{
  background: #F6F6F6;
}


/*------------------------------
医院情報
------------------------------*/
#information{
  background: #51688F;
  padding-top: 74px;
  padding-bottom: 43px;
}
#information .information{
  margin: 0 auto 66px;
}

.accordion {
  margin: 0 auto;
}
.toggle {
  display: none;
}
.option {
  position: relative;
  margin-bottom: 24px;
  border: solid 2px #FFF;
  border-radius: 12px;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title {
  padding: 30px;
  display: block;
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}
.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 20px;
  background-color: #FFF;
  transition: all 0.5s;
}
.title::after {
  transform: rotate(90deg);
}
.content {
  max-height: 0;
  overflow: hidden;
}
.content .content_inner{
  padding-top: 35px;
  padding-bottom: 40px;
  margin: 0 36px;
  border-top: 2px solid #A2B0C7;
}
.content .content_inner address{
  font-style: normal;
  color: #FFF;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
}
.content .content_inner .information_list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.content .content_inner .information_list li{
  font-size: 28px;
  font-weight: 200;
  color: #FFF;
  padding-left: 40px;
  margin-bottom: 10px;
}
.content .content_inner .information_list li.tel{
  background: url(../img/tel_icon.png) no-repeat left top 6px;
}
.content .content_inner .information_list li.time{
  background: url(../img/time_icon.png) no-repeat left top 6px;
}
.content .content_inner .information_list li.access{
  background: url(../img/access_icon.png) no-repeat left top 7px;
  margin-bottom: 0;
}
.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 0.5s;
}
.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 750px) {
  #information{
    padding-top: 37px;
    padding-bottom: 21.5px;
  }
  #information .information{
    margin: 0 auto 33px;
    width: 127.5px;
  }
  .option {
    margin-bottom: 12px;
    border: solid 1px #FFF;
    border-radius: 6px;
  }
  .title {
    padding: 15px;
    font-size: 16px;
  }
  .title::after,
  .title::before{
    right: 22.5px;
    width: 2px;
    height: 10px;
  }
  .content .content_inner {
    padding-top: 17.5px;
    padding-bottom: 20px;
    margin: 0 18px;
    border-top: 1px solid #A2B0C7;
  }
  .content .content_inner address {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .content .content_inner .information_list li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 5px;
  }
  .content .content_inner .information_list li.tel {
    background: url(../img/tel_icon.png) no-repeat left top 3px;
    background-size: 12.5px auto;
  }
  .content .content_inner .information_list li.time {
    background: url(../img/time_icon.png) no-repeat left top 3px;
    background-size: 12.5px auto;
  }
  .content .content_inner .information_list li.access {
    background: url(../img/access_icon.png) no-repeat left top 3.5px;
    background-size: 12.5px auto;
  }
}

/*------------------------------
リスク
------------------------------*/
.risk{
  background: #D9D9D9;
  padding: 40px 60px;
  font-size: 24px;
}

.risk_title{
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  border-right: solid 2px;
  border-left: solid 2px;
  width: fit-content;
  padding: 0 30px;
  margin: 0 auto 30px;
  line-height: 1.2;
}

.risk_text{
  padding-bottom: 25px;
}

@media screen and (max-width: 750px) {
  .risk{
    padding: 30px 25px 20px;
    font-size: 12px;
  }
  .risk_title{
    font-size: 14px;
    border-right: solid 1px;
    border-left: solid 1px;
    padding: 0 18px;
    margin: 0 auto 22px;
  }
  .risk_text{
    padding-bottom: 15px;
  }
}




/*------------------------------
footer_menu
------------------------------*/
#footer_menu{
  background: #373544;
}
#footer_menu ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 112px;
}
#footer_menu ul li{
  color: #FFF;
  font-size: 24px;
}
#footer_menu ul li::after{
  content: '｜';
  color: #A2B0C7;
}
#footer_menu ul li:last-child::after{
  content: none;
}
@media screen and (max-width: 750px) {
  #footer_menu ul{
    height: 56px;
  }
  #footer_menu ul li{
    font-size: 12px;
  }
}
