@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;
  vertical-align: bottom;
}

h1, h2, h3 {
  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: 856px;*/
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

.ly_flex {
  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;
}

.is-pc {
  visibility: hidden;
}

.for_sp {
  display: none;
}

.mr20 {
  margin-right: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

/* レスポンシブ */
@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;
  overflow: auto;
  margin-left: auto;
  padding: 88px 5%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gnav ul {
  margin-bottom: 116px;
}
.gnav .tel {
  padding-bottom: 18px;
}

.gnav.active {
  right: 0;
}

.nav-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;
}
.nav-menu img {
  position: absolute;
  right: 16px;
  width: 12px;
}

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

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

.nav-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;
  width: 320px;
  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) {
  .page-header {
    background-color: #fff;
    opacity: 0.75;
    height: 76px;
  }
  .gnav {
    width: 100%;
  }
  .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) {
  .logo {
    width: 186px;
  }
  .gnav {
    padding: 0;
  }
}
footer {
  background-color: #3b3b3b;
  color: #9f9f9f;
  font-size: 16px;
}
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_pc02.png);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.fv {
  height: 100vh;
}

.catch-copy {
  font-size: 32px;
  font-weight: 500;
  color: #3b3b3b;
  line-height: 2.5;
  position: absolute;
  bottom: 35%;
  right: 5%;
}

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

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

/*--------ランキング----------------------------------------------*/
.ranking {
  padding-bottom: 112px;
  background-color: #eaf8ff;
}
.ranking .content-title_en {
  color: #fff;
}
.ranking h3 {
  font-size: 30px;
  font-weight: 400;
}
.ranking li {
  border-bottom: 3px solid #fff;
  padding-bottom: 21px;
}
.ranking .ly_flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

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

.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;
}

.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;
  padding-bottom: 32px;
}

.number {
  color: #eaf8ff;
  font-family: "Scheherazade New", serif;
  font-size: 176px;
  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;
}

.third {
  padding-bottom: 47px;
}

.reason__body {
  padding-top: 40px;
}

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

/*-------施術メニュー--------------------------------------*/
.menu {
  background-color: #eaf8ff;
}

.el_title_white {
  color: #ffffff;
}

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

.ly_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu__inner {
  background-color: #ffffff;
  padding: 0 88px 63px 88px;
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding-top: 64px;
  padding-bottom: 64px;
}

.menu__item {
  border-bottom: 1px solid #A7BBC7;
  border-left: 1px solid #A7BBC7;
  padding-top: 47px;
  padding-bottom: 80px;
  padding-left: 76px;
}

.odd {
  border-left: none;
  padding-right: 76px;
  padding-left: 0;
}

.item__header-no {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  color: #eaf8ff;
  letter-spacing: 0;
  text-align: center;
  margin-top: -80px;
}

.item__header {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  padding-bottom: 28px;
  margin-top: -100px;
}

.item__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-top: 47px;
}

.menu_last, .menu_last-sp {
  border-bottom: none;
}

.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;
  margin-left: auto;
  margin-right: auto;
}
.to-movie-page img {
  width: 12px;
  position: absolute;
  right: 16px;
}

.btn-wrapper {
  margin-top: 34px;
}

/*---------医師紹介------------------------------------------------*/
.introduction-title {
  margin-top: 213px;
}

.doctor-introduction {
  background-color: #eaf8ff;
  padding-top: 112px;
  padding-bottom: 100px;
  margin-top: -110px;
}
.doctor-introduction img {
  margin-top: 65px;
}

.ly_introduction {
  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;
}

.doctor-introduction__item {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.doctor-introduction__item h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 53px;
}

.doctor {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: end;
}

.director {
  font-size: 16px;
  margin-right: 16px;
}

.doctor-name {
  font-size: 26px;
}

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

/*-----------医師経歴------------------------------------------*/
.accordion-area {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  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;
  /*.red {
      text-decoration: underline;
  }*/
}

.belong {
  margin-top: 40px;
}

.to-career {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 100px;
  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%;
}

/*.to-career.open {
    margin-left: auto;
    margin-right: auto;
}*/
/*-----------アクセス--------------------------------------------------*/
.in-clinic {
  background-image: url(../images/clinic_pc.png);
  background-size: cover;
  background-position: center;
  height: 480px;
}

.clinic-name {
  text-align: center;
  padding: 80px 0;
}

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

.to-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;
  margin-left: auto;
  margin-right: auto;
}
.to-page img {
  width: 12px;
  position: absolute;
  right: 16px;
}

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

.tel {
  font-family: "Scheherazade New", serif;
  font-size: 40px;
  display: block;
  padding-bottom: 43px;
}

.access__item {
  width: 405px;
  margin-left: 112px;
}
.access__item p {
  font-size: 15px;
}

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

.access__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  margin-bottom: 38px;
}

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

/*------タブレットレスポンシブ---------------------------------------------*/
@media (max-width: 900px) {
  #home {
    background-image: url(../images/fv-mens-sp.jpg);
    background-size: cover;
    background-position: top;
    margin-top: 76px;
  }
  p {
    font-size: 15px;
  }
  .fv {
    min-height: 95vh;
  }
  .catch-copy {
    font-size: 26px;
    line-height: 1.8;
    bottom: 30%;
    left: 3%;
  }
  .title {
    font-size: 64px;
    line-height: 1;
    bottom: 10%;
    left: 3%;
  }
  .sub-title {
    bottom: 6%;
    left: 3%;
  }
  .content-title_en {
    font-size: 100px;
    letter-spacing: 0;
  }
  .content-title_ja {
    font-size: 32px;
    margin-top: -92px;
    margin-bottom: 0;
    padding-top: -70px;
  }
  .ranking .ly_flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reasons {
    background-image: url(../images/dot_sp.png);
    background-position: 35% 80%;
  }
  .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;
    padding: 40px 12px;
  }
  .reason__inner img {
    padding-left: 20px;
    padding-right: 20px;
  }
  .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;
  }
  .reason__body {
    margin-bottom: 80px;
  }
  .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: 16px;
  }
  .item__header, .item__text {
    padding-right: 0;
  }
  .to-movie-page {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .ly_introduction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 32px;
    padding-right: 32px;
  }
  .introduction-title {
    margin-top: 92px;
  }
  .doctor-introduction {
    margin-top: -40px;
  }
  .doctor-introduction__item {
    padding-right: 0;
    padding-top: 63px;
  }
  .doctor-introduction__item p {
    font-size: 15px;
  }
  .doctor {
    margin-top: 0;
    padding-right: 0;
    text-align: start;
    padding-left: 32px;
  }
  .doctor-name {
    font-size: 24px;
  }
  .to-career {
    margin-left: auto;
    margin-right: auto;
  }
  .access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access__item {
    padding-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .access__item p {
    font-size: 14px;
  }
}
/*-----スマホレスポンシブ--------------------------------------*/
@media (max-width: 600px) {
  .fv {
    min-height: 95vh;
  }
  .catch-copy {
    bottom: 42%;
    left: 7%;
  }
  .title {
    bottom: 21%;
    left: 7%;
  }
  .sub-title {
    bottom: 16%;
    left: 7%;
  }
  .reason__text {
    width: 100%;
  }
  .ly_inner {
    grid-template-columns: 1fr;
  }
  .menu__inner {
    margin-left: 16px;
    margin-right: 16px;
    padding: 0;
  }
  .menu__item {
    border-left: none;
    padding-left: 0;
    margin-left: 16px;
    margin-right: 16px;
  }
  .odd {
    padding-right: 0;
  }
  .menu_last-sp {
    border-bottom: 1px solid #A7BBC7;
  }
  .ly_introduction {
    padding-left: 0;
    padding-right: 0;
  }
  .accordion-area {
    padding-left: 32px;
    padding-right: 32px;
  }
  .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;
  }
  .access__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .access__item {
    padding-left: 0;
    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-link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 17px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: 130px;
  padding-left: 74px;
  padding-right: 74px;
}

.faq-link-title {
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 290px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: relative;
}
.faq-link-title ::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.power-up_header {
  letter-spacing: 0;
}

.full-screen {
  height: 100vh;
}

.faq-header {
  font-size: 18px;
  font-weight: 600;
  background-color: #a7bbc7;
  color: #ffffff;
  text-align: center;
  height: 48px;
  line-height: 48px;
  margin-top: 90px;
}

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

.last-wrapper {
  margin-bottom: 54px;
}

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

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

.long-title {
  padding-bottom: 20px;
}

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;
  }
  .faq-link {
    grid-template-columns: 1fr 1fr;
  }
  .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: #506d84;
    background-color: #faefef;
    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-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;
  }
  .last-sp-tab {
    border: none;
  }
}
@media (max-width: 600px) {
  .faq-link {
    grid-template-columns: 1fr;
    padding-left: 3%;
    padding-right: 3%;
  }
  .faq-link-title {
    margin-left: auto;
    margin-right: auto;
  }
  dd {
    font-size: 14px;
  }
}
#charge-title {
  position: relative;
  background-color: #eaf8ff;
  height: 403px;
  text-align: center;
}

.page-title_en {
  font-family: "Scheherazade New", serif;
  font-size: 140px;
  color: #ffffff;
  font-weight: 400;
  /*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-link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 17px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: 130px;
  padding-left: 74px;
  padding-right: 74px;
}

.charge-link-title {
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 290px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: relative;
}
.charge-link-title ::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.fair-price {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-top: 72px;
}

.charge-link-wrapper {
  height: 60vh;
}

.charge_header {
  border: 1px solid #506d84;
  border-radius: 50px;
  width: 502px;
  height: 83px;
  line-height: 83px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.charge_header p {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

#charge-wakiga {
  margin-bottom: 125px;
}

#charge-laser {
  margin-top: 150px;
  margin-bottom: 164px;
}

#charge-tattoo {
  margin-top: 164px;
  margin-bottom: 101px;
}

.charge-tattoo_body {
  margin-bottom: 101px;
}
.charge-tattoo_body .part_header {
  width: 70%;
}

.charge-toning .part_header, .charge-therapy .part_header, .charge-power-up .part_header, .charge-vitaminc .part_header {
  width: 50%;
}

#charge-beauty {
  margin-top: 164px;
  margin-bottom: 116px;
}

.charge-futae {
  margin-bottom: 100px;
}

#charge-usuge {
  margin-top: 164px;
  margin-bottom: 117px;
}

.charge-usuge .part_header {
  width: 40%;
}

#charge-danseiki {
  margin-top: 200px;
  margin-bottom: 117px;
}

.charge-houkei {
  margin-bottom: 117px;
}
.charge-houkei .part_header {
  width: 37%;
}
.charge-houkei .price {
  width: 45%;
}

.charge-kitou .part_header {
  width: 37%;
}
.charge-kitou .part_item {
  padding-left: 45px;
}
.charge-kitou .price {
  width: 45%;
}

.charge-choukei .part_header, .charge-inkei .part_header, .charge-silicon-ball .part_header {
  width: 37%;
}
.charge-choukei .part_item, .charge-inkei .part_item, .charge-silicon-ball .part_item {
  padding-left: 30px;
}
.charge-choukei .price, .charge-inkei .price, .charge-silicon-ball .price {
  width: 45%;
}

.charge-choukei {
  margin: 117px 0;
}

.charge-silicon-ball {
  margin-top: 117px;
}

.charge-ed {
  margin-top: 117px;
}

.charge-std {
  margin-top: 117px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

.charge-list {
  margin-top: 52px;
}

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

td {
  border: 1px solid #a7bbc7;
  padding-top: 11px;
  padding-bottom: 12px;
}

tr {
  border-left: solid #ffffff;
  border-right: solid #ffffff;
}
tr .time {
  text-align: center;
}

.part_header {
  width: 65%;
}

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

.price {
  text-align: center;
}
.price span {
  display: block;
  line-height: 1.25;
}

.part_item {
  padding-left: 8%;
}

.discount {
  list-style: none;
}

.payment {
  margin-top: 270px;
  padding-top: 83px;
  padding-bottom: 35px;
  border: 1px solid #a7bbc7;
  text-align: center;
}
.payment h3 {
  margin-bottom: 48px;
}
.payment ul {
  list-style: none;
}
.payment li, .payment p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 53px;
}
.payment .caution {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: start;
  padding-left: 10%;
}

.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) {
  #charge-title {
    height: 380px;
  }
  .page-title ::after {
    bottom: -115px;
  }
  .page-title_en {
    font-size: 100px;
    padding-top: 21px;
  }
  .page-title_ja {
    font-size: 32px;
    margin-top: -100px;
  }
  .page-sub-title {
    padding-top: 47px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 15px;
  }
  .charge-link {
    grid-template-columns: 1fr 1fr;
  }
  caption {
    font-size: 16px;
  }
  td {
    font-size: 15px;
  }
  li {
    font-size: 14px;
  }
  .part_item {
    padding-left: 0;
  }
  .charge {
    padding: 0 18px;
  }
  .payment .caution {
    padding-left: 5%;
  }
}
/*-----スマホレスポンシブ-----------------------*/
@media (max-width: 600px) {
  .page-title ::after {
    bottom: -78px;
  }
  .charge-link {
    grid-template-columns: 1fr;
    margin-top: 37px;
    padding-left: 3%;
    padding-right: 3%;
  }
  .charge-link-title {
    margin-left: auto;
    margin-right: auto;
  }
  .fair-price {
    width: 290px;
    margin-top: 29px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
  .charge {
    padding-left: 14px;
    padding-right: 14px;
  }
  .charge_header {
    width: 76%;
    height: 60px;
    line-height: 60px;
  }
  .charge_header p {
    font-size: 19px;
  }
  .charge-kitou .part_item {
    padding-left: 0;
  }
}
#consultation-title {
  position: relative;
  background-color: #ffffff;
  height: 367px;
  text-align: center;
}

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

.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: -20px;
  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], textarea {
  background-color: #ffffff;
  padding: 14px;
  width: 100%;
  max-width: 856px;
}

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

.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: 210px;
}
.consultation-list .list-title {
  font-weight: 500;
}
.consultation-list .short-label {
  width: 80px;
}

.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;
}

/*-----レスポンシブ-----------------------------*/
@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-sub-title {
    font-size: 16px;
  }
  .for-free-title {
    height: 272px;
  }
  .for-free-title ::after {
    bottom: -20px;
  }
  .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;
  }
  .consultation-list label, .consultation-list .short-label {
    max-width: 330px;
    width: 100%;
  }
  .consultation-list .mr20 {
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .consultation-list label, .consultation-list .short-label {
    max-width: 360px;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .consultation-list label, .consultation-list .short-label {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 320px) {
  .consultation-list label, .consultation-list .short-label {
    max-width: 240px;
    width: 100%;
  }
}
#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;
  }
}
#wakiga-title {
  position: relative;
  background-color: #eaf8ff;
  height: 367px;
  text-align: center;
}

.bg-color {
  background-color: #eaf8ff;
}

.ly_about-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 111px 12px 0 12px;
  margin-top: -110px;
}

.text-box01 h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
}
.text-box01 p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-right: 176px;
  margin-top: 41px;
}

.wakiga-check {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  position: relative;
  padding-bottom: 135px;
  border-bottom: 1px solid #a7bbc7;
}
.wakiga-check h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-top: 134px;
  margin-bottom: 80px;
}
.wakiga-check li, .wakiga-check p {
  font-size: 20px;
  line-height: 2.5;
}
.wakiga-check p {
  margin-top: 75px;
}

.wakiga-img01 {
  position: absolute;
  top: 140px;
  right: -30px;
}

.wakiga-img02 {
  position: absolute;
  top: 337px;
  right: -10px;
}

.about-wakiga {
  padding-top: 110px;
}
.about-wakiga h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 45px;
}

.text-box02 {
  margin-bottom: 60px;
}
.text-box02 p {
  font-size: 15px;
  padding-bottom: 36px;
}

.treatment {
  margin-top: 77px;
  padding: 75px 82px 110px 80px;
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
}
.treatment h3 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 49px;
}

.treatment-sub-title {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.treatment-container {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  padding: 0 4px;
}
.treatment-container tr {
  height: 90px;
}

.tb_header {
  font-size: 26px;
}

.technique {
  text-align: start;
  max-width: 218px;
}

.treatment-detail {
  max-width: 904px;
  margin-top: 86px;
  margin-left: auto;
  margin-right: auto;
}
.treatment-detail li {
  padding: 0 12px;
  border-top: 1px solid #a7bbc7;
  padding-top: 63px;
  padding-bottom: 57px;
}

.treatment-title {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 47px;
}

.text-box03 {
  font-size: 15px;
}

.mt-40 {
  margin-top: 40px;
}

.last-detail {
  border-bottom: 1px solid #a7bbc7;
}

.original-title-wrapper {
  position: relative;
}
.original-title-wrapper span {
  font-size: 26px;
  position: absolute;
  top: 220px;
  left: 370px;
}

.original {
  background-color: #eaf8ff;
  margin-top: -110px;
  padding-top: 180px;
  padding-bottom: 95px;
}
.original h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.original li {
  font-size: 15px;
  padding-top: 45px;
}

.img-wrapper {
  border: 1px solid #a7bbc7;
  padding: 99px 43px 131px 85px;
  margin-top: 50px;
  margin-bottom: 111px;
}

.ml-42 {
  margin-left: 42px;
}

.w904-wrapper {
  max-width: 904px;
  padding-bottom: 127px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #a7bbc7;
}

.viewhot-title {
  position: relative;
}
.viewhot-title span {
  font-size: 26px;
  position: absolute;
  top: 220px;
  left: 370px;
}

.viewhot {
  background-color: #eaf8ff;
  margin-top: -110px;
  margin-bottom: 120px;
  padding-top: 180px;
  padding-bottom: 270px;
}
.viewhot h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.viewhot p {
  font-size: 15px;
  padding-top: 45px;
  margin-bottom: 40px;
}

.botox .botox-title {
  position: relative;
}
.botox .botox-title span {
  font-size: 26px;
  position: absolute;
  top: 220px;
  left: 320px;
}
.botox p {
  font-size: 15px;
}
.botox .bg-color {
  padding-top: 170px;
  padding-bottom: 173px;
  margin-top: -110px;
}
.botox h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 42px;
}
.botox .w904-wrapper {
  margin-bottom: 54px;
}

.p-12 {
  padding: 0 12px;
}

.merit01 {
  margin-top: 94px;
}

.merit02, .merit03 {
  margin-top: 43px;
}

.merit02 {
  border: 1px solid #a7bbc7;
  padding: 56px 0;
}

.merit03 {
  margin-bottom: 127px;
}

.pt-27 {
  padding-top: 27px;
}

/*------タブレットレスポンシブ---------------------------*/
@media (max-width: 900px) {
  #wakiga-title {
    margin-top: 88px;
    height: 272px;
  }
  #wakiga-title .page-title ::after {
    position: absolute;
    bottom: -50px;
  }
  #wakiga-title .page-title_en {
    padding-top: 0;
  }
  #wakiga-title .page-sub-title {
    padding-top: 40px;
  }
  .ly_about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .ly_about-inner img {
    margin-left: auto;
    margin-right: auto;
  }
  .ly_about-inner h3 {
    font-size: 30px;
  }
  .text-box01 {
    padding: 65px 32px 60px 32px;
  }
  .text-box01 p {
    padding-right: 0;
  }
  .wakiga-check {
    padding: 76px 16px 56px 16px;
    margin-left: 32px;
    margin-right: 32px;
  }
  .wakiga-check h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 67px;
  }
  .wakiga-check li, .wakiga-check p {
    font-size: 14px;
  }
  .wakiga-img01, .wakiga-img02 {
    position: initial;
    text-align: center;
  }
  .about-wakiga {
    padding-top: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .about-wakiga h3 {
    font-size: 22px;
  }
  .about-wakiga p {
    font-size: 14px;
  }
  .ly_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ly_flex .ml-42 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
  }
  .treatment {
    margin: 96px 32px 0 32px;
  }
  .treatment img {
    padding-top: 75px;
  }
  .treatment-detail {
    margin: 74px 32px 91px 32px;
  }
  .treatment-title {
    font-size: 22px;
  }
  .text-box03 {
    font-size: 14px;
  }
  .original-title-wrapper span {
    font-size: 22px;
    position: static;
  }
  .original {
    margin-top: -126px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .original h3 {
    font-size: 22px;
  }
  .original li {
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .original p {
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .original-title-wrapper .content-title_ja {
    line-height: 1.56;
  }
  .img-wrapper {
    margin-left: 28px;
    margin-right: 28px;
  }
  .border-none {
    border: none;
  }
  .bg-color {
    padding-left: 20px;
    padding-right: 20px;
  }
  .botox .bg-color {
    margin-top: -40px;
  }
  .merit01 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .merit01 h3 {
    font-size: 22px;
  }
  .merit01 p {
    font-size: 14px;
  }
  .merit02 {
    margin-left: 28px;
    margin-right: 28px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .merit02 h3 {
    font-size: 22px;
  }
  .merit02 p {
    font-size: 14px;
  }
  .merit03 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .merit03 h3 {
    font-size: 22px;
  }
  .merit03 p {
    font-size: 14px;
  }
  .mg-32 {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 600px) {
  .wakiga-img01, .wakiga-img02 {
    margin-left: 50px;
  }
  .treatment-sub-title {
    font-size: 14px;
    text-align: start;
  }
  .treatment {
    max-width: 396px;
    padding: 52px 32px 64px 32px;
  }
  .treatment h3 {
    font-size: 30px;
  }
  .img-wrapper {
    padding: 50px 4px 44px 20px;
  }
}
#laser-title {
  position: relative;
  background-color: #eaf8ff;
  height: 367px;
  text-align: center;
}

.safe-and-secure-title {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-align: center;
  margin-top: 191px;
  margin-bottom: 69px;
}

.safe-and-secure {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 80px 88px 71px 88px;
  margin-bottom: 110px;
}

.safe-and-secure_body {
  border-bottom: 1px solid #a7bbc7;
}
.safe-and-secure_body h4 {
  margin-bottom: 40px;
}
.safe-and-secure_body p {
  font-size: 15px;
}

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

.secure {
  padding-bottom: 74px;
}
.secure img {
  margin-left: 12px;
}

.safe {
  padding-top: 64px;
  padding-bottom: 66px;
}
.safe img {
  margin-left: 101px;
  margin-right: 47px;
}

.certainty {
  padding-top: 64px;
  padding-bottom: 90px;
}
.certainty img {
  margin-top: 60px;
}

.speedy {
  padding-top: 51px;
  padding-bottom: 208px;
  border: none;
}
.speedy img {
  margin-left: 88px;
}

.feature01 {
  padding-bottom: 73px;
  padding-left: 24px;
}
.feature01 h3 {
  margin-bottom: 46px;
}
.feature01 p {
  font-size: 15px;
}

.feature02 {
  padding-top: 70px;
  padding-bottom: 93px;
}
.feature02 h3 {
  margin-bottom: 40px;
}
.feature02 p {
  font-size: 15px;
}

.feature03 {
  padding-top: 85px;
  padding-bottom: 137px;
}
.feature03 h3 {
  margin-bottom: 99px;
}

.difference {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 89px 87px 108px 88px;
  margin-top: 141px;
  margin-bottom: 156px;
}
.difference h3 {
  text-align: center;
}

.difference-container {
  margin-top: 100px;
}
.difference-container td {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  height: 144px;
}
.difference-container .tb_header {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}
.difference-container .h109 {
  height: 109px;
  border-top: none;
}
.difference-container .p-37 {
  padding-left: 37px;
  padding-right: 37px;
}
.difference-container .pl-37 {
  padding-left: 37px;
}

.beard {
  border-bottom: 1px solid #a7bbc7;
  padding-bottom: 153px;
  margin-bottom: 153px;
}
.beard h3 {
  margin-bottom: 45px;
}

.beard01 {
  margin-bottom: 240px;
}

.beard02 ul {
  padding-top: 43px;
  padding-bottom: 166px;
}

.tattoo {
  margin-top: -110px;
  height: 636px;
}
.tattoo h3 {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-top: 195px;
  margin-bottom: 69px;
  line-height: 1.75;
}
.tattoo p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.tattoo img {
  margin-left: 56px;
  margin-top: 118px;
}
.tattoo .bg-color {
  height: 636px;
}

.medlite {
  border-top: 1px solid #a7bbc7;
  padding-top: 102px;
  padding-left: 24px;
  padding-right: 96px;
  margin-top: 153px;
  margin-bottom: 173px;
}
.medlite h3 {
  margin-bottom: 40px;
}
.medlite p {
  padding-top: 43px;
  font-size: 15px;
}

.medlite-merit {
  padding-left: 24px;
}
.medlite-merit h3 {
  margin-bottom: 100px;
}
.medlite-merit ul {
  margin-bottom: 70px;
}

.medlite-wrapper {
  border-bottom: none;
  padding-bottom: 110px;
}

.step {
  font-family: "Scheherazade New", serif;
  font-size: 20px;
  letter-spacing: 0.1rem;
}

.price-label {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  background-color: #a7bbc7;
  color: #fff;
  display: inline-block;
  width: 60px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  margin-left: 12px;
}

.flow__item {
  font-size: 15px;
}

.ly_flow-content {
  height: 292px;
  padding-left: 88px;
  padding-right: 88px;
  padding-top: 40px;
  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;
}
.ly_flow-content .text_header {
  font-size: 26px;
  margin-bottom: 32px;
}

.step03 {
  padding-bottom: 58px;
  height: 362px;
}
.step03 ul {
  padding-top: 40px;
}

.flow {
  padding-bottom: 80px;
}

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

#spot .yag-laser {
  padding-top: 126px;
  padding-bottom: 158px;
  margin-top: -110px;
  margin-bottom: 58px;
}
#spot h3 {
  margin-bottom: 40px;
}
#spot .w904-wrapper {
  margin-top: 132px;
}
#spot .pb-89 {
  padding-bottom: 89px;
}
#spot .tone {
  margin-bottom: 126px;
}
#spot .tone p {
  font-size: 15px;
  margin-bottom: 40px;
}
#spot .tone img {
  margin-left: 82px;
}
#spot .zo {
  padding-top: 77px;
  padding-bottom: 140px;
}

/*-------タブレットレスポンシブ---------------------------*/
@media (max-width: 900px) {
  #laser-title {
    margin-top: 88px;
    height: 360px;
  }
  #laser-title .page-title_ja {
    line-height: 1.56;
    letter-spacing: 0.1rem;
  }
  #laser-title .page-sub-title {
    font-size: 16px;
  }
  #laser-title .page-title ::after {
    bottom: -30px;
  }
  .laser .content-title_ja {
    line-height: 1.56;
    letter-spacing: 0.1rem;
  }
  .laser .ly_about-inner {
    margin-top: -75px;
  }
  .laser .text-box01 {
    padding-left: 0;
    padding-right: 0;
  }
  .laser p {
    font-size: 15px;
  }
  .safe-and-secure-title {
    font-size: 22px;
    line-height: 1.73;
    padding: 0 48px;
    margin-top: 55px;
    text-align: start;
  }
  .safe-and-secure {
    padding-left: 32px;
    padding-right: 32px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .safe-and-secure p {
    font-size: 14px;
  }
  .safe-and-secure img {
    margin-left: auto;
    margin-right: auto;
  }
  .text_header {
    font-size: 22px;
  }
  .secure img {
    margin-top: 43px;
  }
  .safe {
    padding-top: 32px;
  }
  .safe img {
    margin-top: 56px;
  }
  .certainty {
    padding: 45px 0;
  }
  .speedy {
    padding-bottom: 99px;
  }
  .feature01 {
    margin: 0 48px;
    padding-left: 0;
  }
  .feature01 p {
    font-size: 14px;
  }
  .feature02 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .feature02 p {
    font-size: 14px;
  }
  .feature03 {
    padding-bottom: 92px;
  }
  .feature03 .text_header {
    margin-bottom: 30px;
  }
  .feature03 li {
    font-size: 14px;
  }
  .difference {
    padding: 56px 11px 77px 10px;
    margin: 30px 16px 80px 16px;
  }
  .difference img {
    margin-top: 45px;
  }
  .beard {
    border-bottom: none;
    padding: 0 48px;
  }
  .beard p, .beard li {
    font-size: 14px;
  }
  .beard01 {
    margin-bottom: 86px;
  }
  .beard02 ul {
    padding-top: 0;
    padding-bottom: 123px;
  }
  .tattoo {
    height: 803px;
    margin-top: -103px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .tattoo h3 {
    font-size: 22px;
    /*margin-right: 32px;*/
    margin-bottom: 50px;
  }
  .tattoo img {
    /*width: 240px;
    height: 357px;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    width: 68%;
    height: auto;
  }
  .medlite {
    margin: 360px 0 137px 0;
    padding: 40px 16px 0 16px;
  }
  .medlite p {
    font-size: 14px;
  }
  .medlite-merit {
    padding-left: 16px;
    padding-right: 16px;
  }
  .medlite-merit h3 {
    margin-bottom: 42px;
  }
  .medlite-merit li {
    font-size: 14px;
  }
  .ly_flow-content {
    margin-left: 34px;
    margin-right: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .step03, .step01 {
    height: 391px;
  }
  .step03 li, .step01 li {
    font-size: 15px;
  }
  .w904-wrapper {
    margin-left: 32px;
    margin-right: 32px;
  }
  #spot .content-title_ja {
    line-height: 1.56;
    letter-spacing: 0.1rem;
  }
  #spot .bg-color {
    margin-top: -76px;
  }
  #spot .tone img {
    margin-left: auto;
    margin-right: auto;
  }
  .yag-laser p {
    font-size: 16px;
    margin-left: 28px;
    margin-right: 12px;
  }
  .yag-laser .text_header {
    margin: 0 28px;
  }
  .tone .text_header {
    margin: 0 48px;
  }
  .tone p {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 16px;
    margin: 37px 32px 0 32px;
    padding-bottom: 68px;
  }
}
/*------スマホレスポンシブ-----------------------------*/
@media (max-width: 600px) {
  .page-title_en {
    overflow: hidden;
    margin-left: -10px;
  }
  /*.tattoo {
      img {
      }
  }*/
}
#knowledge-title {
  position: relative;
  margin-top: 124px;
}
#knowledge-title .bg-color {
  padding-top: 140px;
  margin-top: -110px;
  height: 70vh;
}
#knowledge-title .bg-color img {
  position: absolute;
  top: 45%;
  left: 75%;
}
#knowledge-title .text_header {
  margin-bottom: 60px;
}
#knowledge-title p {
  padding-bottom: 40px;
}

.kinds {
  margin-top: 46px;
  margin-bottom: 66px;
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 80px 88px 93px 88px;
}

.kinds_body {
  border-bottom: 1px solid #a7bbc7;
}
.kinds_body .text_header {
  margin-bottom: 52px;
}
.kinds_body p {
  font-size: 15px;
}

.kasei {
  padding-bottom: 72px;
}
.kasei img {
  width: 121px;
  height: 124px;
  margin-top: 78px;
  margin-left: 144px;
  margin-right: 63px;
}
.kasei .demerit {
  padding-top: 44px;
}

.kanton {
  padding-top: 83px;
  padding-bottom: 102px;
}
.kanton img {
  width: 121px;
  height: 121px;
  margin-top: 40px;
  margin-left: 134px;
  margin-right: 73px;
}
.kanton .demerit {
  padding-top: 51px;
}

.sinsei {
  padding-top: 83px;
  border-bottom: none;
}
.sinsei img {
  width: 121px;
  height: 175px;
  margin-top: 50px;
  margin-left: 134px;
  margin-right: 73px;
}
.sinsei .severe {
  padding-top: 40px;
}
.sinsei .demerit {
  padding-top: 40px;
}

.reason-for-visit_body {
  padding-top: 128px;
  padding-bottom: 130px;
}
.reason-for-visit_body .text_header {
  margin-bottom: 84px;
}
.reason-for-visit_body p {
  font-size: 15px;
}
.reason-for-visit_body ul {
  margin-top: 84px;
  line-height: 2.5;
}
.reason-for-visit_body li {
  font-size: 20px;
}

.reason-for-visit .bg-color {
  padding-bottom: 124px;
}

.back-btn {
  border: 1px solid #506d84;
  border-radius: 24px;
  width: 290px;
  height: 48px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.back-btn ::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  left: 26px;
  margin-top: -3px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.back-btn-wrapper {
  padding-bottom: 0;
  border-bottom: none;
}

.btn-border {
  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;
  margin-top: 84px;
}

.btn-border:before,
.btn-border:after {
  border-top: 1px solid #a7bbc7;
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 900px) {
  #knowledge-title {
    margin-top: 53px;
  }
  #knowledge-title .bg-color {
    padding: 69px 29px 0 29px;
    height: 85vh;
  }
  #knowledge-title .container h3 {
    font-size: 26px;
  }
  #knowledge-title .container p {
    font-size: 15px;
  }
  #knowledge-title .container img {
    position: static;
    width: 223px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .kinds {
    margin-left: 16px;
    margin-right: 16px;
    padding: 57px 32px 87px 32px;
  }
  .kinds p {
    font-size: 14px;
  }
  .kinds img {
    margin-left: auto;
    margin-right: auto;
  }
  .kanton {
    padding-bottom: 50px;
  }
  .reason-for-visit .bg-color {
    padding: 80px 48px 78px 48px;
  }
  .reason-for-visit_body {
    padding-top: 0;
    padding-bottom: 89px;
  }
  .reason-for-visit_body p, .reason-for-visit_body li {
    font-size: 14px;
  }
  .reason-for-visit_body ul {
    line-height: 2;
  }
  .reason-for-visit_body li {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .back-btn-wrapper {
    margin: 0;
  }
}
#beauty-title {
  position: relative;
  background-color: #eaf8ff;
  height: 367px;
  text-align: center;
}

.futae .bg-color {
  height: 484px;
  margin-bottom: 167px;
}
.futae .ly_about-inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.futae-treatment {
  text-align: center;
}
.futae-treatment h3 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-top: 148px;
  margin-bottom: 69px;
}
.futae-treatment p {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.futae-treatment_body {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 80px 88px 97px 88px;
  margin-top: 64px;
}

.futae-treatment_item {
  border-bottom: 1px solid #a7bbc7;
  padding-bottom: 56px;
}
.futae-treatment_item h4 {
  margin-bottom: 48px;
}
.futae-treatment_item p {
  font-size: 15px;
  padding-bottom: 40px;
}

.sekkai {
  border: none;
  padding-top: 64px;
  margin-bottom: 104px;
}

.mezotherapy {
  padding-bottom: 86px;
  padding-left: 24px;
}
.mezotherapy .to-page-btn-group {
  margin-top: 37px;
}

.mezotherapy_item, .garlic_item {
  font-size: 15px;
  padding-bottom: 40px;
}

.garlic {
  padding-bottom: 103px;
  padding-left: 24px;
}
.garlic .to-page-btn-group {
  margin-top: 37px;
}

.vitaminc .content-title_ja {
  line-height: 1.38;
}
.vitaminc span {
  font-size: 26px;
}

.vitaminc__item {
  padding-left: 24px;
  padding-bottom: 310px;
}

.border-wrapper {
  background-color: #a7bbc7;
  height: 48px;
  margin-top: 174px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 48px;
}

#thin-hair .bg-color {
  margin-top: -140px;
  padding-top: 225px;
}
#thin-hair .bg-color h3 {
  line-height: 1.75;
}
#thin-hair .content-sub-title {
  text-align: center;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
#thin-hair .flow .font-color {
  color: #506d84;
  font-size: 18px;
  margin-left: 12px;
}
#thin-hair .flow__item {
  padding-bottom: 40px;
}

.aga {
  margin-top: 133px;
  margin-bottom: 162px;
}
.aga .text_header {
  margin-bottom: 64px;
}
.aga p {
  padding-bottom: 40px;
  font-size: 15px;
}

.order-made {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 89px 87px 80px 88px;
  margin-bottom: 104px;
}
.order-made h3 {
  text-align: center;
}

.order-made-container {
  margin-top: 130px;
}
.order-made-container td {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.order-made-container .tb_header {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: 34%;
}
.order-made-container .tb_item {
  padding-left: 39px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.order-made-container .border-top-none {
  border-top: none;
}
.order-made-container .border-bottom-none {
  border-bottom: none;
}

.caution-container p {
  font-size: 15px;
  padding-bottom: 35px;
}

.today {
  text-align: center;
  margin-top: 57px;
}

.harg {
  padding: 120px 0;
  margin-top: -110px;
}

.harg-detail {
  margin-top: 53px;
  margin-bottom: 180px;
  padding-right: 96px;
}
.harg-detail p {
  font-size: 15px;
  padding-bottom: 40px;
}

/*-------タブレットレスポンシブ-----------------------*/
@media (max-width: 900px) {
  #beauty-title {
    margin-top: 88px;
    height: 360px;
  }
  #beauty-title .page-sub-title {
    font-size: 16px;
  }
  #beauty-title .page-title ::after {
    bottom: -115px;
  }
  .futae .ly_about-inner {
    margin-top: -40px;
  }
  .futae .text-box01 {
    padding: 107px 0 60px 0;
  }
  .futae .bg-color {
    margin-bottom: 300px;
  }
  .futae-treatment h3 {
    font-size: 30px;
    margin-top: 76px;
  }
  .futae-treatment p {
    font-size: 15px;
    text-align: start;
    padding: 0 32px;
  }
  .futae-treatment_body {
    padding: 60px 16px 51px 16px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .sekkai {
    margin-bottom: 0;
  }
  .mezotherapy, .garlic {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mezotherapy_item, .garlic_item {
    font-size: 14px;
  }
  .garlic {
    border: none;
    padding-bottom: 90px;
  }
  .border-wrapper {
    margin-top: 0;
  }
  .h20 {
    height: 20px;
  }
  #thin-hair .bg-color {
    margin-top: -110px;
  }
  #thin-hair .ly_about-inner {
    padding-top: 20px;
  }
  #thin-hair h3 {
    font-size: 22px;
  }
  #thin-hair .text-box01 {
    padding-left: 0;
    padding-right: 0;
  }
  #thin-hair p {
    font-size: 16px;
  }
  #thin-hair .w904-wrapper {
    padding-bottom: 50px;
  }
  .aga {
    margin-top: 70px;
    margin-bottom: 40px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .aga p {
    font-size: 14px;
  }
  .order-made {
    padding: 52px 16px 55px 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 80px;
  }
  .order-made h3 {
    margin-bottom: 50px;
  }
  .caution-container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .caution-container p {
    font-size: 14px;
  }
  .flow .content-title_ja {
    line-height: 1.6;
    margin-bottom: 0;
  }
  .flow .flow__item {
    font-size: 15px;
  }
  .flow .ly_fow-content {
    margin-left: 34px;
    margin-right: 28px;
  }
  .flow .today {
    margin-left: 48px;
    margin-right: 28px;
    font-size: 20px;
  }
  .flow .step02 {
    height: 332px;
  }
  .flow .text_header {
    line-height: 1.6;
  }
  .after {
    margin-left: 34px;
    margin-right: 28px;
  }
  .harg-title-wrapper .content-title_ja {
    line-height: 1.6;
  }
  .harg {
    margin-top: -80px;
    padding: 132px 33px 106px 39px;
  }
  .harg-detail {
    padding-left: 48px;
    padding-right: 32px;
    margin-bottom: 58px;
  }
  .harg-detail p {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .content-title_ja {
    font-size: 30px;
  }
  .order-made h3 {
    font-size: 18px;
  }
  .flow .text_header {
    font-size: 22px;
  }
  .flow .flow__item {
    font-size: 14px;
  }
}
#treatment_male-genitalia-title {
  position: relative;
  background-color: #eaf8ff;
  height: 367px;
  text-align: center;
}

.expert {
  height: 472px;
  margin-bottom: 175px;
}

.maibotsuhou {
  margin-top: -110px;
}
.maibotsuhou h3 {
  text-align: center;
  padding-top: 51px;
  padding-bottom: 62px;
}
.maibotsuhou p {
  font-size: 15px;
}
.maibotsuhou .btn-border {
  margin-top: 93px;
  padding-bottom: 80px;
}

.to-detail-page-btn {
  border: 1px solid #506d84;
  border-radius: 24px;
  background-color: #fff;
  width: 290px;
  height: 48px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.to-detail-page-btn ::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.maibotsuhou-img {
  display: block;
  margin-top: 36px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
}

.latest-technology {
  padding-bottom: 83px;
}
.latest-technology h3 {
  margin-bottom: 60px;
}
.latest-technology p {
  font-size: 15px;
}

.multiply-img {
  display: block;
  margin-top: 110px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.optimal {
  padding-top: 25px;
  padding-bottom: 106px;
}

.pt-40 {
  padding-top: 40px;
}

.no-outpatient {
  padding-top: 26px;
  padding-bottom: 35px;
}

.dailylife-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.support h3 {
  margin-bottom: 56px;
}
.support p {
  font-size: 15px;
}

.method_houkei {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  background-color: #fff;
  padding: 74px 88px 39px 88px;
  position: relative;
}
.method_houkei h3 {
  margin-bottom: 40px;
}
.method_houkei li {
  font-size: 15px;
  line-height: 2;
  padding-bottom: 40px;
}

.after-care {
  padding-top: 145px;
  padding-bottom: 92px;
  margin-top: -67px;
}

.after-care_body {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  background-color: #fff;
  padding: 29px 64px 33px 88px;
  margin-top: 61px;
  margin-bottom: 64px;
}
.after-care_body li {
  font-size: 20px;
}
.after-care_body ul {
  padding-top: 8px;
  padding-bottom: 22px;
}

.after-care_item {
  border-bottom: 1px solid #a7bbc7;
  padding-bottom: 43px;
}
.after-care_item h3 {
  margin-top: 49px;
  margin-bottom: 50px;
}

.last-item {
  border: none;
}

.choukeijutsu .bg-color {
  margin-top: -110px;
  padding-top: 161px;
  padding-bottom: 245px;
}
.choukeijutsu .bg-color h3 {
  margin-bottom: 32px;
}
.choukeijutsu .border-box {
  padding: 85px 64px 150px 88px;
  margin-bottom: 60px;
}
.choukeijutsu .border-box h4 {
  margin-bottom: 80px;
}
.choukeijutsu .border-box p, .choukeijutsu .border-box li {
  font-size: 20px;
  line-height: 2.5;
}
.choukeijutsu .border-box ul {
  padding-top: 80px;
  padding-bottom: 77px;
}
.choukeijutsu .w904-wrapper {
  padding-bottom: 195px;
}

.choukeijutsu_body {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 80px 88px 71px 88px;
  margin-top: -200px;
  margin-bottom: 100px;
  background-color: #fff;
}
.choukeijutsu_body p, .choukeijutsu_body li {
  font-size: 15px;
  padding-bottom: 42px;
}
.choukeijutsu_body h4 {
  margin-bottom: 53px;
  line-height: 1.7;
}
.choukeijutsu_body img {
  width: 240px;
  height: 380px;
  border: 1px solid #707070;
  padding-right: 10px;
  margin-left: 88px;
}

.choukeijutsu_item01 {
  border-bottom: 1px solid #a7bbc7;
  padding-bottom: 56px;
  margin-bottom: 95px;
}

.choukeijutsu_item02 {
  padding-right: 328px;
}

.border-box {
  border: 1px solid #a7bbc7;
}

.section-title {
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  margin-top: 31px;
  margin-bottom: 165px;
}

.increase .bg-color {
  padding-top: 123px;
  padding-bottom: 20px;
  margin-top: -110px;
}
.increase .bg-color p {
  font-size: 15px;
  padding-bottom: 40px;
}
.increase .bg-color .container {
  padding-right: 96px;
}
.increase ul {
  margin-top: 37px;
}
.increase .border-box {
  padding: 105px 84px 74px 88px;
  margin-top: 48px;
  margin-bottom: 100px;
}
.increase .border-box ul {
  margin-top: 75px;
  margin-bottom: 136px;
}
.increase .border-box li {
  font-size: 15px;
  padding-bottom: 40px;
}

.sourou {
  padding-bottom: 41px;
}
.sourou h3 {
  margin-bottom: 84px;
}
.sourou p {
  font-size: 15px;
  padding-bottom: 44px;
  padding-right: 20px;
}

.strengthen h3 {
  margin-bottom: 64px;
}
.strengthen p {
  font-size: 15px;
}

.hyaluronic .bg-color {
  margin-top: -110px;
  padding-top: 80px;
  padding-bottom: 69px;
  margin-bottom: 24px;
}
.hyaluronic .bg-color p {
  font-size: 15px;
  padding-right: 90px;
  padding-bottom: 37px;
}
.hyaluronic .container h3 {
  margin-bottom: 50px;
}
.hyaluronic .container p {
  padding-bottom: 38px;
  font-size: 15px;
}
.hyaluronic .container img {
  width: 125px;
  height: 138px;
  margin-left: 227px;
  margin-top: 168px;
}
.hyaluronic .border-box {
  margin-top: 26px;
  margin-bottom: 45px;
  padding: 80px 76px 93px 76px;
}
.hyaluronic .border-box h3 {
  margin-bottom: 80px;
}
.hyaluronic .border-box p {
  padding-bottom: 76px;
  font-size: 20px;
}
.hyaluronic .border-box li {
  line-height: 2.5;
  font-size: 20px;
}
.hyaluronic .w904-wrapper {
  padding-bottom: 94px;
}

.silicon-ball .bg-color {
  padding-top: 147px;
  padding-bottom: 117px;
  margin-top: -110px;
  margin-bottom: 40px;
}
.silicon-ball .bg-color h3 {
  margin-bottom: 63px;
}
.silicon-ball .bg-color p {
  font-size: 15px;
}
.silicon-ball .kinds-of h3 {
  margin-bottom: 57px;
}
.silicon-ball .kinds-of p {
  font-size: 15px;
  padding-bottom: 40px;
}
.silicon-ball .border-box {
  padding: 55px 76px 83px 76px;
  margin-bottom: 107px;
}
.silicon-ball .border-box h3 {
  margin-bottom: 68px;
}
.silicon-ball .border-box li {
  margin-bottom: 26px;
  line-height: 1.25;
  font-size: 20px;
}
.silicon-ball .method h3 {
  margin-bottom: 50px;
}
.silicon-ball .method p {
  font-size: 15px;
  padding-bottom: 43px;
  margin-right: 352px;
}
.silicon-ball .care {
  padding: 64px 76px 77px 76px;
}
.silicon-ball .care p, .silicon-ball .care li {
  font-size: 20px;
  line-height: 2.5;
  margin-bottom: 0;
}
.silicon-ball .care ul {
  margin-bottom: 77px;
}
.silicon-ball .w904-wrapper {
  padding-bottom: 150px;
}

.treatment-ed .bg-color {
  padding-top: 102px;
  padding-bottom: 90px;
  margin-top: -110px;
}
.treatment-ed h3 {
  margin-bottom: 80px;
}
.treatment-ed p {
  padding-bottom: 40px;
  padding-right: 24px;
  font-size: 15px;
}
.treatment-ed .border-box {
  margin-top: 89px;
  margin-bottom: 93px;
  padding: 64px 64px 88px 86px;
}
.treatment-ed .border-box h3 {
  margin-bottom: 66px;
}
.treatment-ed .border-box p {
  font-size: 20px;
  letter-spacing: 0;
  padding: 0;
}
.treatment-ed .w904-wrapper {
  padding-top: 58px;
  padding-bottom: 109px;
}
.treatment-ed .w904-wrapper p {
  padding: 0;
}

.cause {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 83px 76px 145px 76px;
  margin-top: 77px;
  margin-bottom: 60px;
}
.cause h3 {
  margin-bottom: 73px;
}
.cause li {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 35px;
}

.baiagra {
  margin-bottom: 65px;
}
.baiagra h3 {
  margin-bottom: 40px;
}

.side-effects, .prescription {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
.side-effects h3, .prescription h3 {
  border-bottom: 1px solid #a7bbc7;
  padding: 0 24px 40px 24px;
  margin-bottom: 35px;
}

.seibyo .bg-color {
  padding-top: 121px;
  padding-bottom: 133px;
  margin-top: -110px;
  margin-bottom: 111px;
}
.seibyo .bg-color h3 {
  margin-bottom: 63px;
}
.seibyo .condyloma {
  margin-bottom: 108px;
}
.seibyo .condyloma h3 {
  margin-bottom: 63px;
}
.seibyo .condyloma p {
  padding-bottom: 32px;
  font-size: 15px;
  max-width: 528px;
}
.seibyo .img-container {
  width: 189px;
  margin-left: 163px;
}
.seibyo .sick {
  margin-left: 14px;
  margin-bottom: 53px;
}
.seibyo .recognize {
  -webkit-box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
          box-shadow: 0 8px 40px rgba(80, 109, 132, 0.1);
  padding: 87px 88px 91px 88px;
  margin-bottom: 114px;
}
.seibyo .recognize h3 {
  margin-bottom: 53px;
}
.seibyo .recognize p {
  padding-bottom: 42px;
  font-size: 15px;
}
.seibyo .recognize .recommend {
  margin-bottom: 11px;
}
.seibyo .treatment-condyloma {
  padding-right: 40px;
  margin-bottom: 122px;
}
.seibyo .treatment-condyloma h3 {
  margin-bottom: 53px;
}
.seibyo .treatment-condyloma p {
  font-size: 15px;
}
.seibyo .care {
  padding: 80px 76px 125px 76px;
  margin-bottom: 116px;
}
.seibyo .care h3 {
  margin-bottom: 83px;
}
.seibyo .care li, .seibyo .care p {
  font-size: 20px;
  line-height: 2.5;
}
.seibyo .care ul {
  margin-bottom: 78px;
}
.seibyo .w904-wrapper {
  margin-bottom: 145px;
}

/*-------タブレットレスポンシブ-----------------------*/
@media (max-width: 900px) {
  #treatment_male-genitalia-title {
    margin-top: 76px;
    height: 360px;
  }
  #treatment_male-genitalia-title .page-sub-title {
    font-size: 16px;
  }
  #treatment_male-genitalia-title .page-title ::after {
    bottom: -115px;
  }
  .treatment_houkei .expert {
    height: 907px;
    margin-bottom: 98px;
  }
  .treatment_houkei .expert .ly_about-inner {
    margin-top: -40px;
  }
  .treatment_houkei .expert .text-box01 {
    padding: 63px 0 0 0;
  }
  .treatment_houkei .expert h3 {
    font-size: 27px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .treatment_houkei .maibotsuhou {
    margin-top: -40px;
    padding: 0;
  }
  .treatment_houkei .maibotsuhou p {
    padding-left: 32px;
    padding-right: 26px;
  }
  .treatment_houkei .maibotsuhou-img {
    margin-left: auto;
    margin-right: auto;
  }
  .latest-technology {
    padding-left: 32px;
    padding-right: 26px;
  }
  .latest-technology h3 {
    font-size: 26px;
  }
  .latest-technology .optimal {
    padding-top: 10px;
  }
  .support {
    padding-left: 32px;
    padding-right: 32px;
  }
  .support p {
    font-size: 14px;
    padding: 0;
  }
  .after-care {
    padding: 80px 16px 65px 16px;
  }
  .after-care_body {
    padding: 0 16px 12px 16px;
    margin-bottom: 50px;
  }
  .after-care_body li, .after-care_body p {
    font-size: 14px;
  }
  .after-care_item {
    padding: 0 16px 25px 16px;
  }
  .after-care_item h3 {
    margin-top: 40px;
  }
  .after-care_item p {
    padding-bottom: 51px;
  }
  .choukeijutsu .bg-color {
    padding-top: 71px;
    margin-top: -40px;
  }
  .choukeijutsu .choukeijutsu_body {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 66px;
    padding: 57px 32px;
  }
  .choukeijutsu .border-box {
    margin-left: 16px;
    margin-right: 16px;
    padding: 43px 32px 71px 32px;
  }
  .choukeijutsu .border-box p, .choukeijutsu .border-box li {
    font-size: 14px;
    line-height: 2;
  }
  .choukeijutsu .border-box ul {
    padding: 40px 0;
  }
  .choukeijutsu .border-box h4 {
    margin-bottom: 53px;
  }
  .choukeijutsu .w904-wrapper {
    padding-bottom: 67px;
  }
  .choukeijutsu_item {
    padding-bottom: 19px;
    margin-bottom: 70px;
  }
  .choukeijutsu_item p, .choukeijutsu_item li {
    font-size: 14px;
  }
  .choukeijutsu_item h4 {
    margin-bottom: 35px;
  }
  .choukeijutsu_item img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 54px;
  }
  .choukeijutsu_item02 {
    padding-right: 0;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 39px;
  }
  .increase .content-title_ja {
    line-height: 1.6;
  }
  .increase .bg-color {
    margin-top: -80px;
  }
  .increase .bg-color p {
    font-size: 14px;
  }
  .increase .bg-color .container {
    padding-left: 16px;
    padding-right: 10px;
  }
  .increase .period {
    padding-left: 36px;
    padding-right: 30px;
  }
  .increase .border-box {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 36px;
    padding: 43px 32px 69px 32px;
  }
  .increase .border-box li {
    font-size: 14px;
  }
  .increase .border-box ul {
    margin-top: 51px;
    margin-bottom: 27px;
  }
  .increase .sourou {
    padding-left: 36px;
    padding-right: 30px;
  }
  .increase .sourou h3 {
    margin-bottom: 31px;
  }
  .increase .sourou p {
    font-size: 14px;
    padding-right: 0;
  }
  .increase .strengthen {
    padding-bottom: 71px;
    border-bottom: 1px solid #a7bbc7;
  }
  .hyaluronic .content-title_ja {
    line-height: 1.6;
  }
  .hyaluronic .bg-color {
    margin-top: -80px;
    padding: 124px 30px 26px 36px;
  }
  .hyaluronic .bg-color p {
    font-size: 14px;
    padding-right: 0;
  }
  .hyaluronic .method {
    padding: 74px 20px 39px 48px;
  }
  .hyaluronic .method img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  .hyaluronic .border-box {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 66px;
    padding: 43px 10px 60px 32px;
  }
  .hyaluronic .border-box h3 {
    margin-bottom: 53px;
  }
  .hyaluronic .border-box p, .hyaluronic .border-box li {
    font-size: 14px;
  }
  .hyaluronic .border-box p {
    padding-bottom: 37px;
  }
  .hyaluronic .w904-wrapper {
    padding-bottom: 66px;
  }
  .silicon-ball .bg-color {
    margin-top: -40px;
    padding: 77px 30px 128px 32px;
  }
  .silicon-ball .bg-color p {
    font-size: 14px;
  }
  .silicon-ball .kinds-of {
    padding-left: 48px;
    padding-right: 48px;
  }
  .silicon-ball .kinds-of p {
    font-size: 14px;
  }
  .silicon-ball .border-box {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 55px;
    padding: 43px 32px 56px 32px;
  }
  .silicon-ball .border-box h3 {
    margin-bottom: 53px;
  }
  .silicon-ball .border-box li {
    font-size: 14px;
  }
  .silicon-ball .method {
    padding: 0 40px 23px 48px;
  }
  .silicon-ball .method p {
    margin-right: 0;
    font-size: 14px;
  }
  .silicon-ball .care {
    padding-bottom: 82px;
  }
  .silicon-ball .care p {
    font-size: 14px;
  }
  .silicon-ball .care ul {
    margin-bottom: 37px;
  }
  .silicon-ball .w904-wrapper {
    padding-bottom: 54px;
  }
  .treatment-ed .bg-color {
    margin-top: -40px;
    padding: 77px 30px 48px 36px;
  }
  .treatment-ed .bg-color h3 {
    margin-bottom: 30px;
  }
  .treatment-ed .bg-color p {
    font-size: 14px;
    padding-right: 0;
  }
  .treatment-ed .cause {
    margin-left: 16px;
    margin-right: 16px;
    padding: 40px 10px 24px 20px;
  }
  .treatment-ed .cause h3 {
    text-align: center;
    margin-bottom: 45px;
  }
  .treatment-ed .cause li {
    font-size: 14px;
  }
  .treatment-ed .trend {
    padding-left: 16px;
    padding-right: 16px;
  }
  .treatment-ed .trend p {
    padding-right: 0;
    font-size: 14px;
  }
  .treatment-ed .border-box {
    margin: 14px 16px 54px 16px;
    padding: 43px 40px 83px 32px;
  }
  .treatment-ed .border-box h3 {
    margin-bottom: 52px;
  }
  .treatment-ed .border-box p {
    font-size: 14px;
  }
  .treatment-ed .baiagra {
    padding-left: 48px;
    padding-right: 40px;
  }
  .treatment-ed .baiagra p {
    font-size: 14px;
    padding-right: 0;
  }
  .treatment-ed .side-effects {
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 69px;
  }
  .treatment-ed .side-effects h3 {
    padding-bottom: 24px;
    margin-bottom: 20px;
  }
  .treatment-ed .side-effects p {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 10px;
  }
  .treatment-ed .prescription {
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 84px;
  }
  .treatment-ed .prescription h3 {
    line-height: 1.7;
    padding-bottom: 29px;
    margin-bottom: 20px;
  }
  .treatment-ed .prescription p {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .treatment-ed .w904-wrapper {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .seibyo .bg-color {
    padding: 77px 30px 129px 36px;
    margin-top: -40px;
    margin-bottom: 57px;
  }
  .seibyo .bg-color p {
    font-size: 14px;
  }
  .seibyo .condyloma {
    margin-bottom: 59px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .seibyo .condyloma h3 {
    margin-bottom: 43px;
  }
  .seibyo .condyloma p {
    font-size: 14px;
  }
  .seibyo .condyloma .img-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 68px;
  }
  .seibyo .condyloma .sick {
    margin-top: 10px;
    margin-bottom: 0;
    width: 131px;
    height: 143px;
  }
  .seibyo .condyloma .smell {
    margin-left: 15px;
    width: 126px;
    height: 164px;
  }
  .seibyo .recognize {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 93px;
    padding: 40px 10px 29px 20px;
  }
  .seibyo .recognize p {
    font-size: 14px;
  }
  .seibyo .treatment-condyloma {
    padding: 0 48px;
    margin-bottom: 58px;
  }
  .seibyo .treatment-condyloma h3 {
    margin-bottom: 40px;
  }
  .seibyo .treatment-condyloma p {
    font-size: 14px;
  }
  .seibyo .care {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 102px;
    padding: 43px 18px 20px 32px;
  }
  .seibyo .care h3 {
    margin-bottom: 53px;
  }
  .seibyo .care li, .seibyo .care p {
    font-size: 14px;
  }
  .seibyo .care ul {
    margin-bottom: 37px;
  }
  .seibyo .w904-wrapper {
    padding-bottom: 70px;
  }
}
/*------- スマホレスポンシブ -----------------------*/
@media (max-width: 600px) {
  .maibotsuhou-img, .multiply-img, .dailylife-img {
    width: 396px;
  }
  .condyloma .img-container {
    margin-left: 0;
  }
}
@media (max-width: 350px) {
  .img-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .smell {
    margin-top: 20px;
  }
}
#privacy-policy-page-title {
  position: relative;
  background-color: #ffffff;
  height: 367px;
  text-align: center;
}
#privacy-policy-page-title .for-free-title {
  white-space: nowrap;
  overflow: hidden;
}
#privacy-policy-page-title .for-free-title ::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
  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;
  }
}
#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;
  }
}/*# sourceMappingURL=style.css.map */