@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #506d84;
  line-height: 2;
  letter-spacing: 0.05rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2 {
  font-family: "Noto Serif JP", serif;
}

::-webkit-input-placeholder {
  color: #a7bbc7;
}

::-moz-placeholder {
  color: #a7bbc7;
}

:-ms-input-placeholder {
  color: #a7bbc7;
}

::-ms-input-placeholder {
  color: #a7bbc7;
}

::placeholder {
  color: #a7bbc7;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #a7bbc7;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #a7bbc7;
}

.wrapper {
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container {
  max-width: 920px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

.is-pc-tab {
  display: none;
}

.is-pc-none {
  display: none;
}

.for_sp {
  display: none;
}

.ly_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/*レスポンシブ*/
@media (max-width: 428px) {
  .for_pc {
    display: none;
  }
  .for_sp {
    display: block;
  }
}
/* エラーメッセージのスタイル */
.error {
  font-family: "Noto Sans JP", sans-serif;
  /*width : 100%;*/
  padding: 10px;
  /*display: inline-block;*/
  font-size: 90%;
  color: red;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.consultation-list {
  position: relative;
}
.consultation-list .error {
  position: absolute;
  top: 150px;
  left: 0;
}

.agree .error {
  display: block;
}

/*レスポンシブ*/
@media (max-width: 836px) {
  .error {
    padding: 0;
  }
  .consultation-list {
    position: relative;
  }
  .consultation-list .error {
    position: absolute;
    top: 230px;
    left: 0;
  }
}
@media (max-width: 568px) {
  .consultation-list {
    position: relative;
  }
  .consultation-list .error {
    position: absolute;
    top: 420px;
    left: 0;
  }
}
.page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.logo {
  width: 200px;
  margin: 16.2px 3%;
}

/*ボタン外側*/
.open-btn {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 88px;
  height: 88px;
}

/*ボタン内側*/
.open-btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 26px;
  height: 2px;
  background-color: #506d84;
  width: 32px;
}

.open-btn span:nth-of-type(1) {
  top: 24px;
}

.open-btn span:nth-of-type(2) {
  top: 35px;
}

.open-btn span:nth-of-type(3) {
  top: 46px;
}

.open-btn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -2px;
  color: #506d84;
  font-size: 11px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.open-btn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.open-btn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.open-btn.active span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにClose表示を指定*/
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 9px;
}

.gnav {
  position: fixed;
  z-index: 9;
  right: -100%;
  width: 38%;
  height: 100vh;
  margin-left: auto;
  padding: 88px 7%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gnav ul {
  margin-bottom: 38px;
}

.gnav.active {
  right: 0;
}

.gnav {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #A7BBC7;
  padding: 24px 8px;
  position: relative;
}
.menu img {
  position: absolute;
  right: 16px;
  width: 12px;
}

.menu_last {
  border-bottom: 1px solid #A7BBC7;
}

.menu-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1rem;
}

.menu-title-en {
  font-family: "Scheherazade New", serif;
  padding-left: 25px;
}

.small-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #faefef;
  border-radius: 40px;
  max-width: 320px;
  width: 100%;
  height: 48px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.small-btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 48px;
}
.small-btn img {
  width: 12px;
  position: absolute;
  right: 16px;
  bottom: 21.5px;
}

.time {
  font-size: 14px;
}

.pick-up {
  font-family: "Scheherazade New", serif;
  font-size: 20px;
  margin-top: 61px;
}

.ly_center {
  text-align: center;
}

/*-----タブレットレスポンシブ---------------------*/
@media (max-width: 900px) {
  .logo {
    width: 186px;
  }
  .gnav {
    width: 100%;
  }
  .page-header {
    height: 76px;
    background-color: #fff;
  }
  .open-btn {
    width: 76px;
    height: 76px;
  }
  .open-btn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 26px;
    height: 2px;
    background-color: #506d84;
    width: 28px;
  }
  .open-btn span:nth-of-type(1) {
    top: 24px;
  }
  .open-btn span:nth-of-type(2) {
    top: 34px;
  }
  .open-btn span:nth-of-type(3) {
    top: 44px;
  }
  .open-btn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    color: #506d84;
    font-size: 9px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
  }
}
/*-----スマホレスポンシブ-------------------------*/
@media (max-width: 600px) {
  .gnav {
    padding: 13%;
  }
}
footer {
  background-color: #3b3b3b;
  color: #9f9f9f;
  font-size: 16px;
  padding-bottom: 40px;
}
footer .link-wrapper {
  border-bottom: 1px solid #555555;
}
footer .link-top:before, footer li:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0.5em 0 0;
  border: 5px solid transparent;
  border-right: 0 solid transparent;
  border-left: 8px solid;
}
footer .link-top {
  height: 64px;
  line-height: 64px;
}
footer .f-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 12px;
}
footer .f-nav li {
  width: 240px;
  margin-right: 18px;
  font-size: 15px;
  padding-top: 20px;
}
footer .copyright {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-top: 120px;
}

@media (max-width: 900px) {
  .link-top {
    margin-left: 32px;
  }
  .f-nav {
    padding-left: 32px;
  }
}
@media (max-width: 600px) {
  .copyright {
    padding-bottom: 64px;
    line-height: 1.6;
    letter-spacing: 0.15rem;
  }
}
/*---------FV----------------------------------------------*/
#home {
  background-image: url(../images/fv.jpg);
  background-size: cover;
  background-position: center top;
  width: 100%;
  /*min-height: 100vh;*/
  position: relative;
}

.fv {
  min-height: 100vh;
}

.catch-copy {
  font-size: 44px;
  font-weight: 500;
  color: #3b3b3b;
  line-height: 1.8;
  position: absolute;
  bottom: 50%;
  left: 120px;
}

.title {
  font-family: "Scheherazade New", serif;
  font-size: 80px;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  bottom: 16%;
  left: 79px;
}

.sub-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  color: #3b3b3b;
  position: absolute;
  bottom: 15%;
  left: 120px;
}

/*--------バナーエリア--------------------------------------------*/
.banner-area {
  background-color: #EFF0F7;
  text-align: center;
  padding-top: 43px;
}
.banner-area p {
  font-family: "Scheherazade New", serif;
  font-size: 30px;
  line-height: 1;
}

/*--------支持されている理由---------------------------------------*/
.content-title_en {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  font-weight: 400;
  color: #eaf8ff;
  text-align: center;
}

.content-title_ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: -140px;
  margin-bottom: 69px;
}

.reasons {
  padding-bottom: 120px;
}

.reason__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reason__inner .woman {
  padding-top: 130px;
  padding-bottom: 130px;
}

.number {
  color: #eaf8ff;
  font-family: "Scheherazade New", serif;
  font-size: 176px;
  font-weight: 400;
  margin-top: -120px;
}

.reason__header {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.75;
  margin-top: -180px;
  margin-bottom: 37px;
  padding-left: 20px;
}

.reason__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding: 0 20px;
  width: 470px;
}

.first {
  padding-bottom: 72px;
  width: 456px;
}

.second {
  width: 456px;
  margin-bottom: 60px;
}

.reasons {
  background-image: url(../images/dot_pc.png);
  background-position: -100px 600px;
}

/*-------医療機器について--------------------------------------*/
.equipment {
  background-color: #eaf8ff;
}

.el_title_white {
  color: #ffffff;
}

.ly_text {
  text-align: center;
  padding-bottom: 65px;
}

.ly_content {
  background-color: #ffffff;
  padding: 16px 88px;
}

.ly_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.equipment__inner {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #A7BBC7;
}

.item__header {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.69;
  padding-bottom: 32px;
  padding-right: 88px;
}

.item__text {
  font-size: 15px;
  padding-right: 88px;
}

.to-movie-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #faefef;
  border-radius: 24px;
  width: 224px;
  height: 48px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  text-align: start;
  margin-top: 40px;
}
.to-movie-page img {
  width: 12px;
  position: absolute;
  right: 16px;
}

.machine {
  width: 240px;
  height: 320px;
}

video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 600px;
  width: 100%;
}

/*-------施術の流れ-------------------------------------*/
.step {
  padding-left: 88px;
  padding-right: 88px;
  padding-top: 10px;
  font-family: "Scheherazade New", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1rem;
}

.flow__header {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26px;
}

.flow__item {
  font-size: 15px;
  width: 528px;
  padding-top: 32px;
  padding-bottom: 40px;
}

.ly_flow-content {
  padding-top: 69px;
  border-bottom: 1px solid #A7BBC7;
  position: relative;
}
.ly_flow-content ::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #A7BBC7 transparent transparent transparent;
  border-width: 12px 12px 0 12px;
}

.last ::after {
  display: none;
}

.hair-cycle {
  border: 1px solid #A7BBC7;
  padding: 32px 88px 48px 88px;
  margin-top: 126px;
}
.hair-cycle img {
  padding-bottom: 32px;
}
.hair-cycle p {
  font-size: 15px;
}

.pb-130 {
  padding-bottom: 130px;
}

/*---------医師紹介------------------------------------------------*/
.doctor-introduction {
  background-color: #eaf8ff;
  padding-bottom: 100px;
}

.doctor-introduction__item {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 80px;
}

.freely {
  padding-top: 42px;
  padding-bottom: 84px;
}

.doctor-name {
  text-align: end;
}
.doctor-name span {
  font-size: 26px;
  padding-left: 28px;
}

.mb-40 {
  margin-bottom: 40px;
}

/*-----------医師経歴------------------------------------------*/
.accordion-area {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.career {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #A7BBC7;
  padding: 20px 0;
}

.first-child {
  border-top: 1px solid #A7BBC7;
}

.year {
  width: 88px;
  font-size: 15px;
  font-weight: 500;
}

.career-detail {
  /*width: 592px;*/
  width: 100%;
  font-size: 15px;
}
.career-detail .red {
  text-decoration: underline;
}

.belong {
  margin-top: 40px;
}

.to-career {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.to-career ::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.to-career.open ::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 60%;
}

/*-----------アクセス--------------------------------------------------*/
.clinic-name {
  text-align: center;
  padding-top: 80px;
}

.address {
  text-align: center;
  padding-top: 67px;
  padding-bottom: 74px;
  font-size: 15px;
}

.consultation-time p {
  font-size: 15px;
}

.tel {
  font-family: "Scheherazade New", serif;
  font-size: 40px;
  font-weight: 400;
}

.access__item {
  width: 520px;
  padding-left: 112px;
}
.access__item p {
  font-size: 15px;
}

.access__item_header {
  background-color: #506d84;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 24px;
  width: 328px;
  height: 32px;
  line-height: 32px;
}

.access__inner {
  margin-bottom: 32px;
}

.page-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  position: fixed;
  bottom: 16px;
  right: 16px;
  text-align: center;
  padding-top: 7px;
}

/*------タブレットレスポンシブ---------------------------------------------*/
@media (max-width: 900px) {
  p {
    font-size: 15px;
  }
  #home {
    background-image: url(../images/fv-sp01.jpg);
    background-size: cover;
    background-position: top;
    margin-top: 76px;
  }
  .catch-copy {
    font-size: 26px;
    bottom: 42%;
    left: 8%;
  }
  .title {
    font-size: 64px;
    line-height: 1;
    bottom: 20%;
    left: 8%;
  }
  .sub-title {
    bottom: 16%;
    left: 8%;
  }
  .content-title_en {
    font-size: 100px;
    letter-spacing: 0;
  }
  .content-title_ja {
    font-size: 32px;
    margin-top: -100px;
  }
  .reasons {
    background-image: url(../images/dot_sp.png);
    background-position: 45% 90%;
    padding-bottom: 48px;
  }
  .reason__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reason__inner .woman {
    padding-top: 0;
    padding-bottom: 79px;
  }
  .reason__header {
    font-size: 30px;
  }
  .third {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-area .ly_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .machine {
    margin-top: 32px;
  }
  .ly_content {
    margin-left: 16px;
    margin-right: 16px;
  }
  .ly_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ly_text {
    margin-left: 18px;
    margin-right: 18px;
  }
  .item__header {
    font-size: 22px;
  }
  .item__text {
    font-size: 14px;
  }
  .item__header, .item__text {
    padding-right: 0;
  }
  .to-movie-page {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .ly_flow-content {
    padding-top: 57px;
    margin-left: 32px;
    margin-right: 32px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .step {
    font-size: 18px;
    padding-left: 0;
  }
  .flow__header {
    font-size: 22px;
  }
  .flow__item {
    font-size: 14px;
  }
  .hair-cycle {
    margin-left: 16px;
    margin-right: 16px;
  }
  .hair-cycle p {
    font-size: 14px;
  }
  .doctor-introduction__item {
    padding-right: 0;
    padding-top: 32px;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 48px;
  }
  .access__item {
    padding-left: 0;
    padding-bottom: 32px;
  }
}
/*-----スマホレスポンシブ--------------------------------------*/
@media (max-width: 600px) {
  .fv {
    min-height: 95vh;
  }
  .reason__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .reason__inner img {
    padding-left: 0;
  }
  .reason__header {
    padding-left: 0;
  }
  .reason__text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .ly_content {
    padding-left: 32px;
    padding-right: 32px;
  }
  .flow__item {
    width: 100%;
  }
  .hair-cycle {
    padding: 32px;
  }
  .doctor-introduction {
    padding-bottom: 48px;
  }
  .doctor-name span {
    font-size: 24px;
  }
  .accordion-area {
    padding-left: 18px;
    padding-right: 18px;
  }
  .career {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .career-detail {
    font-size: 14px;
  }
  .clinic-name {
    margin-left: 64px;
    margin-right: 64px;
  }
  .address {
    padding: 32px 0;
    font-size: 14px;
  }
  .tel {
    font-size: 8.411vw;
  }
  .consultation-time p {
    font-size: 14px;
  }
  .access__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .access__item {
    padding-left: 0;
    width: 100%;
  }
  .access__item p {
    font-size: 14px;
  }
  .access__item_header {
    max-width: 364px;
    width: 100%;
  }
  .ly_access-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .call-btn, .access-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #ffffff;
    width: 50%;
    height: 64px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 600;
  }
  .call-btn div, .access-btn div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .call-btn {
    background-color: #da7f8f;
  }
  .call-btn img {
    width: 23px;
    height: 23px;
    margin-right: 7px;
  }
  .access-btn {
    background-color: #506d84;
  }
  .access-btn img {
    width: 16px;
    height: 23px;
    margin-right: 7px;
  }
  .page-top {
    position: fixed;
    right: 16px;
    bottom: 80px;
  }
}
#faq-title {
  position: relative;
  background-color: #eaf8ff;
  height: 367px;
  text-align: center;
}

.faq-page-title {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  font-weight: 400;
  color: #ffffff;
  /*padding-top: 80px;*/
}

.faq-page-title_ja {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: -140px;
}

.faq-sub-title {
  position: relative;
  padding-top: 60px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}

.faq-title {
  position: relative;
}
.faq-title ::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -67px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #eaf8ff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.faq-wrapper {
  max-width: 944px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}
.question img {
  width: 94px;
}

.detail {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  padding-top: 50px;
  margin-left: -65px;
}

dd {
  max-width: 890px;
  font-size: 15px;
  padding-left: 30px;
  line-height: 1.8;
}

dl {
  padding-bottom: 32px;
  border-bottom: 1px solid #a7bbc7;
}

.last {
  border: none;
}

.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 46px;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #faefef;
  border-radius: 40px;
  width: 416px;
  height: 80px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  margin-left: 24px;
  margin-bottom: 100px;
}
.btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 80px;
}
.btn img {
  width: 19.81px;
  position: absolute;
  right: 27.2px;
  bottom: 36px;
}
.btn :hover {
  background: rgb(255, 167, 183);
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 167, 183)), to(rgb(163, 188, 255)));
  background: -webkit-linear-gradient(left, rgb(255, 167, 183) 0%, rgb(163, 188, 255) 100%);
  background: linear-gradient(90deg, rgb(255, 167, 183) 0%, rgb(163, 188, 255) 100%);
  border-radius: 40px;
  color: #fff;
}
.btn :hover .is-pc {
  visibility: visible;
}
.btn :hover .is-sp {
  display: none;
}

.is-pc {
  visibility: hidden;
}

.is-pc-none {
  display: none;
}

@media (max-width: 900px) {
  .faq-page-title {
    font-size: 100px;
    padding-top: 21px;
  }
  .faq-page-title_ja {
    font-size: 32px;
    margin-top: -100px;
  }
  .detail {
    font-size: 22px;
    line-height: 1.7;
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    background: rgb(255, 167, 183);
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 167, 183)), to(rgb(163, 188, 255)));
    background: -webkit-linear-gradient(left, rgb(255, 167, 183) 0%, rgb(163, 188, 255) 100%);
    background: linear-gradient(90deg, rgb(255, 167, 183) 0%, rgb(163, 188, 255) 100%);
    border-radius: 40px;
    max-width: 364px;
    width: 100%;
    height: 64px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    position: relative;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 64px;
  }
  .btn img {
    width: 19.81px;
    position: absolute;
    right: 27.2px;
    bottom: 28px;
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    visibility: visible;
  }
  .is-pc-none {
    display: inline;
  }
  .btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    margin-bottom: 32px;
  }
}
#charge-title {
  position: relative;
  background-color: #eaf8ff;
  height: 403px;
  text-align: center;
}

.page-title_en {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  font-weight: 400;
  color: #ffffff;
  /*padding-top: 80px;*/
}

.page-title_ja {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: -140px;
}

.page-sub-title {
  position: relative;
  padding-top: 60px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.page-title {
  position: relative;
}
.page-title ::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -67px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #eaf8ff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.charge {
  margin-top: 32px;
}
.charge ul {
  list-style-type: square;
  list-style-position: inside;
  font-size: 15px;
  margin-top: 20px;
  line-height: 2;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 64px;
}

caption {
  background-color: #506d84;
  color: #ffffff;
  font-size: 18px;
  height: 48px;
  line-height: 48px;
  border-left: solid #ffffff;
  border-right: solid #ffffff;
}

.charge-list td {
  border: 1px solid #a7bbc7;
}
.charge-list tr {
  border-left: solid #ffffff;
  border-right: solid #ffffff;
  height: 48px;
}

.part_header {
  width: 65%;
}

.part {
  background-color: #e7edf5;
  font-weight: 500;
  height: 40px;
  text-align: center;
}

.price {
  text-align: center;
}

.part_item {
  padding-left: 13%;
}

.to-male-fee {
  margin-top: 16px;
  font-size: 15px;
  color: #da7f8f;
  text-decoration: underline;
}

.btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*----タブレットレスポンシブ------------------*/
@media (max-width: 900px) {
  .page-title_en {
    font-size: 100px;
    padding-top: 21px;
    overflow: hidden;
  }
  .page-title_ja {
    font-size: 32px;
    margin-top: -100px;
  }
  .page-sub-title {
    font-size: 16px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-title ::after {
    bottom: -110px;
  }
  .part_item {
    padding-left: 0;
  }
  .charge {
    padding: 0 18px;
  }
}
@media (max-width: 467px) {
  .page-title ::after {
    bottom: -80px;
  }
}
@media (max-width: 467px) {
  .page-title ::after {
    bottom: -50px;
  }
}
#consultation-title {
  position: relative;
  background-color: #ffffff;
  height: 367px;
  text-align: center;
}

.for-free-page-title {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  font-weight: 400;
  color: #eaf8ff;
}

.for-free-page-title_ja {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: -140px;
}

.for-free-sub-title {
  position: relative;
  padding-top: 60px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.for-free-title {
  position: relative;
}
.for-free-title ::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -67px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.for-free {
  background-color: #eaf8ff;
}

.consultation {
  padding-top: 77px;
}

form {
  margin-top: 55px;
  padding-bottom: 100px;
}
form div {
  margin-bottom: 37px;
}

label {
  font-weight: 500;
  margin-bottom: 9px;
  display: block;
}

.red {
  color: #da7f8f;
}

input[type=text], input[type=email], input[type=tel] {
  background-color: #ffffff;
  padding-left: 20px;
  width: 100%;
  max-width: 856px;
  height: 48px;
}

textarea {
  background-color: #ffffff;
  padding-left: 20px;
  width: 100%;
  max-width: 856px;
  height: 200px;
}

.name-form, .kana-name-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.family-name, .kana-family-name {
  width: 100%;
}

.given-name, .kana-given-name {
  margin-left: 24px;
  width: 100%;
}

.female {
  margin-left: 40px;
}

.consultation-list label {
  display: inline-block;
  font-weight: normal;
  width: 240px;
  margin-right: 12px;
}

.agree {
  text-align: center;
  font-weight: normal;
  padding-top: 19px;
  margin-bottom: 56px;
}

.to-privacy-policy {
  color: #da7f8f;
  text-decoration: underline;
  padding-left: 12px;
  text-align: center;
}

.to-confirm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.white-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 320px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
}
.white-btn img {
  width: 12px;
  position: absolute;
  right: 16px;
}

/* mail.php用css */
.white-btn_pre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 320px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-right: 24px;
  position: relative;
}
.white-btn_pre img {
  width: 12px;
  position: absolute;
  left: 16px;
}

/*----タブレットレスポンシブ-------------------------*/
@media (max-width: 900px) {
  .for-free-page-title {
    font-size: 100px;
    padding-top: 21px;
    overflow: hidden;
  }
  .for-free-page-title_ja {
    font-size: 32px;
    margin-top: -100px;
  }
  .for-free-title ::after {
    bottom: -125px;
  }
  .for-free-sub-title {
    font-size: 16px;
  }
  .name-form, .kana-name-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .given-name, .kana-given-name {
    margin-left: 0;
  }
  .consultation {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/*----スマホレスポンシブ---------------------------*/
@media (max-width: 384px) {
  .for-free-title ::after {
    bottom: -94px;
  }
}
#for-reserve-title {
  position: relative;
  background-color: #ffffff;
  height: 367px;
  text-align: center;
}

.reserve {
  padding-top: 73px;
}
.reserve ul {
  list-style-type: square;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 36px;
}

.styled-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%; /* 幅 */
  max-width: 328px; /* 最大幅 */
  height: 40px;
  /*margin: 1em 0; /* 前後の余白 */
  /*padding: 13px 125px;*/
  cursor: pointer; /* カーソルを指に */
  line-height: 40px; /* 行高 */
  font-size: 15px; /* フォントサイズ */
  color: #506d84; /* 文字色 */
  text-align: center;
  border-radius: 5px; /* 角丸 */
  background-color: #fff; /* 背景色 */
  border: solid 1px #a7bbc7; /* 枠線 */
  /*background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
  background-size: 5px 5px, 5px 5px;
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-repeat: no-repeat;*/
  margin-right: 24px;
  position: relative;
}
.styled-select ::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=date] {
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}

input[type=date]::after {
  content: "";
  background-image: url(../images/calendar-full.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.choice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.choice_item {
  max-width: 328px;
  width: 100%;
  margin-bottom: 0;
  margin-right: 24px;
}

input[type=checkbox] {
  margin-right: 12px;
}

.confirm-btn {
  color: #506d84;
}

/* mail.php用css */
.white-btn_pre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 320px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-right: 24px;
  position: relative;
}
.white-btn_pre img {
  width: 12px;
  position: absolute;
  left: 16px;
}

@media (max-width: 900px) {
  .for-free-page-title_ja {
    line-height: 1.5;
  }
  #for-reserve-title .for-free-title ::after {
    bottom: -78px;
  }
  .reserve {
    padding-left: 18px;
    padding-right: 18px;
  }
  .reserve ul, .reserve .caution {
    font-size: 14px;
  }
  form {
    font-size: 15px;
  }
  .styled-select {
    margin-bottom: 10px;
  }
  .choice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 351px) {
  #for-reserve-title .for-free-title ::after {
    bottom: -46px;
  }
}
#thanks-page .content-title_en {
  margin-top: 57px;
}

#thanks .text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
}
#thanks .clinic-name {
  font-family: "Scheherazade New", serif;
  font-size: 32px;
  font-weight: 400;
  padding-top: 58px;
}
#thanks .btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 71px;
  margin-bottom: 116px;
}

/*---レスポンシブ-----------------------*/
@media (max-width: 600px) {
  #thanks-page .content-title_en {
    line-height: 0.8;
    margin-top: 97px;
  }
  #thanks-page .content-title_ja {
    line-height: 1.6;
    margin-top: -30px;
  }
  #thanks .text {
    font-size: 16px;
  }
  #thanks .clinic-name {
    font-size: 25px;
    letter-spacing: 0.02rem;
  }
}
#privacy-policy-page-title {
  position: relative;
  background-color: #ffffff;
  height: 367px;
  text-align: center;
}
#privacy-policy-page-title .for-free-title {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
#privacy-policy-page-title .for-free-title ::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -170px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.title-arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy {
  background-color: #eaf8ff;
  padding-bottom: 138px;
}

.privacy-policy__inner {
  padding-top: 73px;
  line-height: 1.9;
}
.privacy-policy__inner h2 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 70px;
  margin-bottom: 10px;
}
.privacy-policy__inner .declaration {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
}

/*----レスポンシブ----------------------*/
@media (max-width: 900px) {
  #privacy-policy-page-title {
    height: 348px;
  }
  .title-arrow {
    width: 32px;
  }
  .privacy-policy__inner h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  .privacy-policy__inner .declaration {
    font-size: 16px;
  }
  .privacy-policy__inner p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */