@charset "UTF-8";
/**
* Foundation
* ========================== */
:root {
  --serif: "Zen Kaku Gothic New", serif;
  --en-serif: "Jost", serif;
  --roboto: "Roboto", serif;
  --base-color: #fff;
  --main: #000;
  --color-blue: #1A2537;
  --color-brown: #7D705A;
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 100%;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
  background: #84a2b2;
}

body {
  margin-inline: auto;
  width: 100%;
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  color: var(--main);
}

@media (min-width: 751px) {
  body {
    width: 750px;
    max-width: 750px;
  }
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

header,
footer,
main {
  width: 100%;
}

summary {
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

summary::marker {
  content: "";
}

summary::-webkit-details-marker {
  display: none;
}

/**
* modules
* ========================== */
.inner {
  padding-inline: 5.3333333333vw;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .inner {
    padding-inline: 40px;
  }
}

.ttl {
  display: grid;
  justify-content: center;
}
.ttl__en {
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-family: var(--en-serif);
  font-size: 13.3333333333vw;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .ttl__en {
    font-size: 100px;
  }
}
.ttl__ja {
  display: inline-grid;
  gap: 1.3333333333vw;
  width: -moz-max-content;
  width: max-content;
  margin-top: -4.2666666667vw;
  margin-inline: auto;
  text-align: center;
  font-size: 5.0666666667vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .ttl__ja {
    gap: 10px;
    margin-top: -32px;
    font-size: 38px;
  }
}
.ttl__ja-sm {
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .ttl__ja-sm {
    font-size: 24px;
  }
}

.text-line-brown {
  background-image: linear-gradient(to bottom, transparent 72%, #E2D7C9 72%, #E2D7C9 95%, transparent 95%);
}

.text-line-tangerine-yellow {
  background-image: linear-gradient(to bottom, transparent 72%, rgba(248, 181, 0, 0.3) 72%, rgba(248, 181, 0, 0.3) 95%, transparent 95%);
}

.bg-beige {
  background: #EEEAE4 url(../image/hifu/bg.webp) repeat;
}

.header {
  padding: 2.6666666667vw 2.6666666667vw 1.3333333333vw;
  display: flex;
  justify-content: space-around;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 20px 20px 10px;
    background: #fff;
  }
}
.header__logo {
  width: 24vw;
  display: block;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 180px;
  }
}

.headerNav {
  width: 60.4vw;
}
@media screen and (min-width: 769px) {
  .headerNav {
    width: 453px;
  }
}
.headerNav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.headerNav .btn_clinic {
  display: block;
  width: 27.46vw;
}
@media screen and (min-width: 769px) {
  .headerNav .btn_clinic {
    width: 206px;
  }
}
@media (any-hover: hover) {
  .headerNav .btn_clinic {
    transition: opacity 0.3s ease;
  }
  .headerNav .btn_clinic:hover {
    opacity: 0.7;
  }
}
.headerNav .btn_cv {
  display: block;
  width: 29.46vw;
}
@media screen and (min-width: 769px) {
  .headerNav .btn_cv {
    width: 221px;
  }
}
@media (any-hover: hover) {
  .headerNav .btn_cv {
    transition: opacity 0.3s ease;
  }
  .headerNav .btn_cv:hover {
    opacity: 0.7;
  }
}

.footer {
  padding: 1.3333333333vw;
  text-align: center;
  background-color: #fff;
  margin-bottom: 5.8rem;
}
.footer__copyright {
  font-size: 2.1333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    font-size: 16px;
  }
}

.fv__main {
  display: grid;
  line-height: 1;
}
.fv__main img {
  width: 100%;
}
.fv__reservation {
  padding-block: 7.4666666667vw 6.6666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .fv__reservation {
    padding-block: 56px 50px;
  }
}
.fv__reservation-ttl {
  text-align: center;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1;
  color: var(--color-blue);
}
@media screen and (min-width: 769px) {
  .fv__reservation-ttl {
    font-size: 24px;
  }
}
.fv__reservation-ttl span {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.fv__reservation-ttl span::before, .fv__reservation-ttl span::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 1px;
  height: 1em;
  background-color: var(--color-blue);
  content: "";
}
.fv__reservation-ttl span::before {
  left: -1.6em;
  transform: rotate(-24deg) translateY(-50%);
}
.fv__reservation-ttl span::after {
  right: -1.55em;
  transform: rotate(24deg) translateY(-50%);
}
.fv__reservation-btn-wrap {
  text-align: center;
  margin-top: 1.8666666667vw;
}
@media screen and (min-width: 769px) {
  .fv__reservation-btn-wrap {
    margin-top: 14px;
  }
}
.fv__reservation-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  font-size: 4vw;
  font-weight: 500;
  width: 78.6666666667vw;
  height: 11.3333333333vw;
  color: #fff;
  background-image: linear-gradient(to right, #2D3C5C 0%, #51638A 100%);
  border-radius: 100vmax;
}
@media screen and (min-width: 769px) {
  .fv__reservation-btn {
    font-size: 30px;
    width: 590px;
    height: 85px;
  }
}
.fv__reservation-btn::after {
  position: absolute;
  inset-block: auto;
  right: 4vw;
  aspect-ratio: 1;
  height: 1.7333333333vw;
  background-color: #fff;
  clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
  content: "";
}
@media screen and (min-width: 769px) {
  .fv__reservation-btn::after {
    right: 30px;
    height: 13px;
  }
}
@media (any-hover: hover) {
  .fv__reservation-btn {
    transition: opacity 0.3s ease;
  }
  .fv__reservation-btn:hover {
    opacity: 0.7;
  }
}

.about {
  background: url(../image/hifu/bg.webp) repeat, url(../image/hifu/about_deco.webp) left top/100% 37.3333333333vw no-repeat;
  background-color: #F5EDE4;
}
@media screen and (min-width: 769px) {
  .about {
    background-size: 100% 280px;
  }
}
.about__inner {
  padding-block: 5.3333333333vw 10.1333333333vw;
}
@media screen and (min-width: 769px) {
  .about__inner {
    padding-block: 40px 76px;
  }
}
.about__ttl-ja {
  text-shadow: 0 0 2.6666666667vw #938574;
}
@media screen and (min-width: 769px) {
  .about__ttl-ja {
    text-shadow: 0 0 20px #938574;
  }
}
.about__desc1-wrap {
  position: relative;
  z-index: 2;
}
.about__desc1-wrap::before {
  position: absolute;
  z-index: -1;
  top: -41.3333333333vw;
  inset-inline: 2.6666666667vw 0;
  display: block;
  margin-inline: auto;
  width: 70.8vw;
  height: 57.2vw;
  background: url(../image/hifu/about_img_01.webp) 0/contain no-repeat;
  content: "";
}
@media screen and (min-width: 769px) {
  .about__desc1-wrap::before {
    top: -310px;
    inset-inline: 20px 0;
    width: 531px;
    height: 429px;
  }
}
.about__desc1 {
  padding: 5.3333333333vw;
  margin-top: 46.6666666667vw;
  text-align: justify;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1.8;
  background-color: #fff;
  outline: 1px solid #D0C7BB;
  outline-offset: -1.6vw;
}
@media screen and (min-width: 769px) {
  .about__desc1 {
    padding: 40px;
    margin-top: 350px;
    font-size: 24px;
    outline-offset: -12px;
  }
}
.about__desc2 {
  padding: 5.3333333333vw 4vw;
  margin-top: 9.3333333333vw;
  background: url(../image/hifu/about_bg_deco.webp) center/35.0666666667vw 30.9333333333vw no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  outline: 1px solid #fff;
  outline-offset: -1.6vw;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .about__desc2 {
    padding: 40px 30px;
    margin-top: 70px;
    background-size: 263px 232px;
    outline-offset: -12px;
  }
}
.about__desc2-ttl {
  text-align: center;
  font-size: 3.2vw;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about__desc2-ttl {
    font-size: 24px;
  }
}
.about__desc2-ttl span {
  background: url(../image/hifu/icon_caution.svg) left center/2.6666666667vw no-repeat;
  padding-left: 3.2vw;
}
@media screen and (min-width: 769px) {
  .about__desc2-ttl span {
    background-size: 20px;
    padding-left: 24px;
  }
}
.about__desc2-text {
  margin-top: 1.3333333333vw;
  font-size: 2.4vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 769px) {
  .about__desc2-text {
    margin-top: 10px;
    font-size: 18px;
  }
}
.about__text-img {
  width: 78.6666666667vw;
  margin-top: 6.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .about__text-img {
    width: 590px;
    margin-top: 50px;
  }
}
.about__catch {
  position: relative;
  text-align: center;
  width: 71.7333333333vw;
  height: 27.6vw;
  margin-top: 5.8666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .about__catch {
    width: 538px;
    height: 207px;
    margin-top: 44px;
  }
}
.about__catch img {
  position: relative;
  left: -1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .about__catch img {
    left: -10px;
  }
}

.recommend {
  background: url(../image/hifu/recommend_bg.webp) 0/cover no-repeat;
}
.recommend__inner {
  padding-block: 8vw 9.3333333333vw;
}
@media screen and (min-width: 769px) {
  .recommend__inner {
    padding-block: 60px 70px;
  }
}
.recommend__ttl-ja {
  width: 71.4666666667vw;
  height: 16.1333333333vw;
  margin-top: -6.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .recommend__ttl-ja {
    width: 536px;
    height: 121px;
    margin-top: -50px;
  }
}
.recommend__content {
  margin-top: 5.3333333333vw;
  background-color: #353639;
  border: 1px solid #7D7870;
}
@media screen and (min-width: 769px) {
  .recommend__content {
    margin-top: 40px;
    border-width: 2px;
  }
}
.recommend__img {
  position: relative;
}
.recommend__img::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent 64%, #353639 100%);
  content: "";
}
.recommend__list {
  display: grid;
  gap: 2.4vw;
  padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 8vw;
}
@media screen and (min-width: 769px) {
  .recommend__list {
    gap: 18px;
    padding: 40px 40px 40px 60px;
  }
}
.recommend__list li {
  position: relative;
  font-size: 3.6vw;
  color: #fff;
  padding-left: 7.2vw;
}
@media screen and (min-width: 769px) {
  .recommend__list li {
    font-size: 27px;
    padding-left: 54px;
  }
}
.recommend__list li::before {
  position: absolute;
  left: 0;
  display: block;
  background: url(../image/hifu/icon_check.svg) 0/contain no-repeat;
  width: 5.3333333333vw;
  height: 5.2vw;
  content: "";
}
@media screen and (min-width: 769px) {
  .recommend__list li::before {
    width: 40px;
    height: 39px;
  }
}
.recommend__catch {
  margin-top: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .recommend__catch {
    margin-top: 50px;
  }
}
.recommend__catch img {
  width: 79.7333333333vw;
}
@media screen and (min-width: 769px) {
  .recommend__catch img {
    width: 598px;
  }
}

.feature {
  background-image: linear-gradient(to bottom, #2D3C5C, #51638A);
}
.feature__inner {
  padding-block: 8vw 44vw;
}
@media screen and (min-width: 769px) {
  .feature__inner {
    padding-block: 60px 330px;
  }
}
.feature__contents {
  display: grid;
  gap: 42.6666666667vw;
  padding-bottom: 44.8vw 0;
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 769px) {
  .feature__contents {
    gap: 320px;
    padding-bottom: 336px 0;
    margin-top: 70px;
  }
}
.feature__content {
  position: relative;
  padding-block: 3.2vw 16.5333333333vw;
  padding-inline: 4.8vw 2.6666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .feature__content {
    padding-block: 24px 124px;
    padding-inline: 36px 20px;
  }
}
.feature__content:nth-of-type(even) .feature__img {
  right: initial;
  left: -5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .feature__content:nth-of-type(even) .feature__img {
    left: -40px;
  }
}
.feature__sttl {
  display: grid;
  gap: 0.8vw;
}
@media screen and (min-width: 769px) {
  .feature__sttl {
    gap: 6px;
  }
}
.feature__sttl-en {
  font-family: var(--roboto);
  font-size: 3.2vw;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-brown);
}
@media screen and (min-width: 769px) {
  .feature__sttl-en {
    font-size: 24px;
  }
}
.feature__sttl-en-num {
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .feature__sttl-en-num {
    font-size: 40px;
  }
}
.feature__sttl-ja {
  display: grid;
  gap: 1.3333333333vw;
  font-size: 4.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .feature__sttl-ja {
    gap: 10px;
    font-size: 36px;
  }
}
.feature__sttl-ja > span {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.2666666667vw 2.1333333333vw;
  background-image: linear-gradient(to right, #938163, #A59985);
}
@media screen and (min-width: 769px) {
  .feature__sttl-ja > span {
    padding: 2px 16px;
  }
}
.feature__sttl-sm {
  font-size: 4vw;
}
@media screen and (min-width: 769px) {
  .feature__sttl-sm {
    font-size: 30px;
  }
}
.feature__text {
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .feature__text {
    margin-top: 20px;
    font-size: 24px;
  }
}
.feature__img {
  position: absolute;
  bottom: -34.6666666667vw;
  right: -5.3333333333vw;
  width: 90vw;
  box-shadow: 0 1.3333333333vw 2.6666666667vw rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) {
  .feature__img {
    bottom: -260px;
    right: -40px;
    width: 675px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
}

.plan__inner {
  padding-block: 13.3333333333vw 11.4666666667vw;
}
@media screen and (min-width: 769px) {
  .plan__inner {
    padding-block: 100px 86px;
  }
}
.plan__ttl {
  width: 56%;
}
.plan__content {
  position: relative;
}
.plan__content::before {
  content: "";
  position: absolute;
  top: -40vw;
  right: -5.3333333333vw;
  width: 44vw;
  height: 56.8vw;
  background: url(../image/hifu/plan_img_bg.webp) 0/contain no-repeat;
}
@media screen and (min-width: 769px) {
  .plan__content::before {
    top: -300px;
    right: -40px;
    width: 330px;
    height: 426px;
  }
}
.plan__courses {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4.2666666667vw;
  margin-top: 14.1333333333vw;
}
@media screen and (min-width: 769px) {
  .plan__courses {
    gap: 32px;
    margin-top: 106px;
  }
}
.plan__course-ttl {
  display: grid;
  gap: 0.5333333333vw;
  padding: 2.4vw;
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-image: linear-gradient(to right, #2D3C5C, #51638A);
}
@media screen and (min-width: 769px) {
  .plan__course-ttl {
    gap: 4px;
    padding: 18px;
    font-size: 32px;
  }
}
.plan__course-ttl.plan__course-ttl--bg-beige {
  background-image: linear-gradient(to right, #7D705A, #BCAF98);
}
.plan__course-ttl-sm {
  font-size: 2.4vw;
}
@media screen and (min-width: 769px) {
  .plan__course-ttl-sm {
    font-size: 18px;
  }
}
.plan__course-body {
  display: grid;
  grid-template-columns: 21.4666666667vw 1fr;
  gap: 4.5333333333vw;
  padding: 2.9333333333vw 5.0666666667vw 4.5333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .plan__course-body {
    grid-template-columns: 161px 1fr;
    gap: 34px;
    padding: 22px 38px 34px;
  }
}
.plan__course-price {
  padding-left: 1.3333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .plan__course-price {
    padding-left: 10px;
  }
}
.plan__course-price-num {
  font-family: var(--roboto);
  font-size: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .plan__course-price-num {
    font-size: 80px;
  }
}
.plan__course-price-yen {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 769px) {
  .plan__course-price-yen {
    font-size: 52px;
  }
}
.plan__course-price-tax {
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .plan__course-price-tax {
    font-size: 24px;
  }
}
.plan__course-desc {
  position: relative;
  background: #EEEAE4 url(../image/hifu/icon_plus.svg) 2.6666666667vw 50%/3.6vw 3.6vw no-repeat;
  padding: 1.8666666667vw 2.6666666667vw 1.8666666667vw 9.3333333333vw;
  margin-top: 1.3333333333vw;
  font-size: 2.4vw;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .plan__course-desc {
    background-position: 20px 50%;
    background-size: 27px 27px;
    padding: 14px 20px 14px 70px;
    margin-top: 10px;
    font-size: 18px;
  }
}
.plan__shot {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5.3333333333vw;
  margin-top: 5.3333333333vw;
  color: #1C1C1C;
}
@media screen and (min-width: 769px) {
  .plan__shot {
    padding: 40px;
    margin-top: 40px;
  }
}
.plan__shot-ttl {
  font-size: 3.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .plan__shot-ttl {
    font-size: 28px;
  }
}
.plan__shot-text {
  margin-top: 1.3333333333vw;
  font-size: 2.6666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .plan__shot-text {
    margin-top: 10px;
    font-size: 20px;
  }
}
.plan__note {
  margin-top: 1.3333333333vw;
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 769px) {
  .plan__note {
    margin-top: 10px;
    font-size: 16px;
  }
}
.plan__note::before {
  content: "※";
}

.js-accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq {
  background-image: linear-gradient(to bottom, #2D3C5C, #51638A 100%);
}
.faq__inner {
  padding-block: 8vw 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .faq__inner {
    padding-block: 60px 50px;
  }
}
.faq__contents {
  margin-top: 8vw;
}
@media screen and (min-width: 769px) {
  .faq__contents {
    margin-top: 60px;
  }
}

/* detailsタグの基本スタイル */
.faq-container {
  margin-bottom: 4vw;
  overflow: hidden;
  padding: 0 2.66vw;
  background-color: white;
}
@media screen and (min-width: 769px) {
  .faq-container {
    margin-bottom: 30px;
    padding: 0 20px;
  }
}
.faq-container[open] summary {
  background-color: white;
}
.faq-container[open] summary::before {
  transform: rotate(0deg);
}

/* summaryタグの基本スタイル */
.faq-container-ttl {
  list-style: none;
  cursor: pointer;
  padding: 4.2666666667vw 0;
  position: relative;
  font-size: 3.2vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  color: #2D3D5D;
}
@media screen and (min-width: 769px) {
  .faq-container-ttl {
    padding: 32px 0;
    font-size: 24px;
  }
}
.faq-container-ttl::before, .faq-container-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.26vw;
  height: 0.26vw;
  margin-top: -1px;
  background-color: #125387;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 769px) {
  .faq-container-ttl::before, .faq-container-ttl::after {
    right: 15px;
    width: 20px;
    height: 2px;
  }
}
.faq-container-ttl::before {
  transform: rotate(90deg);
}

.faq-container-ttl-q {
  content: url(../image/hifu/pic_question.svg);
  width: 6.6666666667vw;
  margin-right: 2.66vw;
}
@media screen and (min-width: 769px) {
  .faq-container-ttl-q {
    width: 50px;
    margin-right: 20px;
  }
}

.faq-container-content-txt-a {
  content: url(../image/hifu/pic_answer.svg);
  width: 6.6666666667vw;
  margin-right: 2.66vw;
  margin-top: -1.6vw;
}
@media screen and (min-width: 769px) {
  .faq-container-content-txt-a {
    width: 50px;
    margin-right: 20px;
    margin-top: -12px;
  }
}

/* コンテンツ部分のスタイル */
.faq-container-content {
  padding: 2.1333333333vw 0;
  background-color: white;
  border-top: 1px solid #c3ceda;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .faq-container-content {
    padding: 16px 0;
  }
}

.faq-container-content-txt {
  display: flex;
  align-items: flex-start;
  padding-top: 1.6vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .faq-container-content-txt {
    padding-top: 12px;
    font-size: 20px;
  }
}

.flow__inner {
  padding-block: 14.6666666667vw 0;
}
@media screen and (min-width: 769px) {
  .flow__inner {
    padding-block: 110px 0;
  }
}
.flow__ttl {
  width: 56%;
  margin-left: auto;
}
.flow__ttl-ja {
  margin-top: -6.1333333333vw;
}
@media screen and (min-width: 769px) {
  .flow__ttl-ja {
    margin-top: -46px;
  }
}
.flow__content {
  position: relative;
  z-index: 2;
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 769px) {
  .flow__content {
    margin-top: 110px;
  }
}
.flow__content::before {
  content: "";
  position: absolute;
  top: -40.8vw;
  left: 0;
  display: block;
  background: url(../image/hifu/flow_bg_img.webp) 0/contain no-repeat;
  width: 48.5333333333vw;
  height: 40.8vw;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .flow__content::before {
    top: -306px;
    width: 364px;
    height: 306px;
  }
}
.flow__item {
  position: relative;
  height: 100%;
  min-height: 70.9333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .flow__item {
    min-height: 532px;
  }
}
.flow__item-en {
  position: absolute;
  top: -8vw;
  left: 0.5333333333vw;
  font-family: var(--roboto);
  font-size: 6.9333333333vw;
  font-weight: 400;
  color: #EEEAE4;
  text-shadow: 0 0.5333333333vw 1.3333333333vw rgba(72, 67, 57, 0.5);
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .flow__item-en {
    top: -60px;
    left: 4px;
    font-size: 52px;
    text-shadow: 0 4px 10px rgba(72, 67, 57, 0.5);
  }
}
.flow__item-num {
  font-size: 10.6666666667vw;
  margin-left: 1.0666666667vw;
}
@media screen and (min-width: 769px) {
  .flow__item-num {
    font-size: 80px;
    margin-left: 8px;
  }
}
.flow__item-img {
  height: 49.3333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .flow__item-img {
    height: 370px;
  }
}
.flow__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__item-body {
  padding: 1.8666666667vw 3.2vw 3.2vw;
}
@media screen and (min-width: 769px) {
  .flow__item-body {
    padding: 14px 24px 24px;
  }
}
.flow__item-ttl {
  font-size: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .flow__item-ttl {
    font-size: 32px;
  }
}
.flow__item-text {
  margin-top: 0.5333333333vw;
  font-size: 2.6666666667vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .flow__item-text {
    margin-top: 4px;
    font-size: 20px;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-size: 2.9333333333vw;
  font-weight: 500;
  transition: all 0.2s ease;
  background: #ffffff;
  border-width: 2px 2px 0px 2px;
  border-style: solid;
  border-color: #766E67;
  border-radius: 0 2.13vw 0 0;
  padding: 2.4vw 0;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .tab_item {
    border-radius: 0 16px 0 0;
    border-width: 3px 3px 0px 3px;
    padding: 18px 0;
    font-size: 22px;
  }
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  background-color: #B5AC9C;
}

/*選択されているタブのコンテンツのみを表示*/
#flow01:checked ~ #flow01_content,
#flow02:checked ~ #flow02_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #B5AC9C;
  color: #fff;
  border-color: #B5AC9C;
}

.splide {
  padding: 0 15.2vw 12vw;
}
@media screen and (min-width: 769px) {
  .splide {
    padding: 0 114px 90px;
  }
}
.splide .splide__slide {
  padding-top: 13.3333333333vw;
  width: 69.8vw !important;
}
@media screen and (min-width: 769px) {
  .splide .splide__slide {
    padding-top: 100px;
    width: 524px !important;
  }
}
.splide .splide__track {
  width: 69.8vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__track {
    width: 524px;
  }
}
.splide .splide__arrow {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__arrow {
    width: 80px;
    height: 80px;
  }
}
.splide .splide__arrow--next {
  right: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__arrow--next {
    right: 40px;
  }
}
.splide .splide__arrow--prev {
  left: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__arrow--prev {
    left: 40px;
  }
}
.splide .splide__arrow {
  top: 52%;
  transform: translateY(-52%);
  opacity: 1;
  transition: opacity 0.3s;
}
.splide .splide__arrow:disabled {
  opacity: 0;
}
.splide .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.splide .splide__track {
  width: 69.8vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__track {
    width: 524px;
  }
}
.splide .splide__pagination__page {
  background: white;
  margin: 0.53vw;
  opacity: 1;
  width: 2.4vw;
  height: 2.4vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__pagination__page {
    margin: 4px;
    opacity: 1;
    width: 18px;
    height: 18px;
  }
}
.splide .splide__pagination__page.is-active {
  background: #4D463F;
  transform: scale(1);
  z-index: 1;
}
.splide .splide__pagination {
  display: flex !important;
  bottom: 4.6666666667vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__pagination {
    bottom: 35px;
  }
}

/* - クリニック一覧- */
.clinic {
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}
.clinic__head {
  background-color: #fff;
  padding-block: 9.3333333333vw 7.2vw;
}
@media screen and (min-width: 769px) {
  .clinic__head {
    padding-block: 70px 54px;
  }
}
.clinic__head .box2 {
  text-align: center;
}
.clinic__head img {
  width: 41.2vw;
}
@media screen and (min-width: 769px) {
  .clinic__head img {
    width: 309px;
  }
}

.clinicAcd__stateName {
  position: relative;
  text-align: left;
  font-size: 4.2666666667vw;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: #2E3D5E;
  cursor: pointer;
  padding-block: 2.6666666667vw;
  padding-inline: 10.6666666667vw 18.6666666667vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__stateName {
    font-size: 32px;
    padding-block: 20px;
    padding-inline: 80px 140px;
  }
}

.clinicAcd__stateName::before,
.clinicAcd__stateName::after {
  position: absolute;
  top: 50%;
  right: 8vw;
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.085em;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .clinicAcd__stateName::before,
  .clinicAcd__stateName::after {
    right: 60px;
  }
}

.clinicAcd__stateName::before {
  transform: rotate(90deg) translate(-5%, 240%);
  transition: 0.3s;
}

.clinicAcd__stateName::after {
  transform: translate(-0.23em, -50%);
}

.clinicAcd__stateName.active::before {
  transform: rotate(0) translate(-28%, 0);
  opacity: 0;
}

.clinicAcd__clinicContainer {
  height: 0;
  overflow: hidden;
  transition: 0.25s;
}

.clinicAcd__clinicList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
  padding: 6.6666666667vw 5.3333333333vw;
  background: white;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicList {
    padding: 70px 54px 40px;
  }
}

.clinicAcd__clinicListItem {
  flex-shrink: 0;
  width: 49%;
}

.clinicAcd__clinicListName {
  margin-bottom: 5.5%;
  padding-block: 5%;
  width: 100%;
  text-align: center;
  color: #363636;
  background: transparent;
  border: 2px solid #125387;
  transition: 0.2s;
  cursor: pointer;
  font-size: 3.2vw;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicListName {
    font-size: 24px;
  }
}

.clinicAcd__clinicListName.active {
  color: #fff;
  background: #286792;
  border: 2px solid #286792;
}

.clinicAcd__clinicListName small {
  display: block;
  font-size: 2.6666666667vw;
  font-weight: 500;
  color: #01071b;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicListName small {
    font-size: 20px;
  }
}

.clinicAcd__clinicListName.active small {
  color: #fff;
}

.clinicAcd__clinicInfoLabel {
  display: grid;
  grid-template-columns: 18vw 1fr;
  gap: 2.4vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoLabel {
    grid-template-columns: 135px 1fr;
    gap: 18px;
  }
}
.clinicAcd__clinicInfoLabel + .clinicAcd__clinicInfoLabel {
  margin-top: 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoLabel + .clinicAcd__clinicInfoLabel {
    margin-top: 34px;
  }
}

.clinicAcd__clinicInfoSummay {
  align-self: start;
  padding: 0.2666666667vw;
  text-align: center;
  font-size: 3.2vw;
  font-weight: 500;
  background-color: #A8AAAF;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoSummay {
    padding: 2px;
    font-size: 24px;
  }
}

.clinicAcd__clinicInfoDetail {
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoDetail {
    font-size: 24px;
  }
}

.clinicAcd__clinicInfoCv {
  position: relative;
  display: block;
  padding: 2.1333333333vw;
  margin-block: 4.8vw;
  width: 100%;
  text-align: center;
  font-size: 2.9333333333vw;
  line-height: 2.35em;
  border-radius: 2em;
  color: #fff;
  background: linear-gradient(to right, #2D3C5C, #51638A);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoCv {
    padding: 16px;
    margin-block: 36px;
    font-size: 22px;
  }
}

.clinicAcd__clinicInfoMap {
  margin-bottom: 5.3333333333vw;
  aspect-ratio: 2/1;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoMap {
    margin-bottom: 40px;
  }
}

.clinicAcd__doctorName {
  display: flex;
  align-items: end;
  margin-bottom: 2.4vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__doctorName {
    margin-bottom: 18px;
  }
}

.clinicAcd__doctorName span {
  flex-shrink: 0;
  margin-right: 0.8vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__doctorName span {
    margin-right: 6px;
    font-size: 24px;
  }
}

.clinicAcd__doctorName img {
  flex-shrink: 0;
  width: 50%;
  pointer-events: none;
}

.clinicAcd__doctorHistory dl {
  display: flex;
  gap: 0.5em;
  font-size: 3.2vw;
  margin-bottom: 1.0666666667vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__doctorHistory dl {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

.clinicAcd__doctorHistory dt {
  white-space: nowrap;
}

.clinic__president {
  padding-block: 7% 0;
  background: #222a37;
}

/*.clinic__presidentSubttl {
  display: block;
  text-align: center;
  font-family: "jp_light";
  font-size: clamp(0px, 3.2vw, 2.4rem);
  line-height: 2.6em;
  background: #d9d9d9;
}
@media (min-width: 751px) {
    .clinic__presidentSubttl {
        font-size: clamp(0px, 3.2vw, 2.4rem);
      }
  }*/
.clinic__presidentInner {
  margin-inline: auto;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 751px) {
  .clinic__presidentSubttl {
    font-size: 24px;
  }
}
.clinic__presidentInfo {
  margin: 8.5% auto 5%;
  width: 88%;
  color: #333;
}

.clinic__presidentName {
  display: flex;
  align-items: end;
  gap: 3.4666666667vw;
  font-size: 4.2666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .clinic__presidentName {
    gap: 26px;
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.clinic__presidentName span {
  white-space: nowrap;
  line-height: 1;
}

.clinic__presidentName img {
  width: 27.7333333333vw;
}
@media screen and (min-width: 769px) {
  .clinic__presidentName img {
    width: 208px;
  }
}

.clinic__presidentCareer {
  display: flex;
  gap: 0.5em;
  font-size: 3.2vw;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .clinic__presidentCareer {
    font-size: 24px;
  }
}

.clinic__presidentCareer dt {
  white-space: nowrap;
}

/**/
.clinic__president {
  background: #EEEAE4 url(../image/hifu/bg.webp) repeat;
}

.clinic__presidentInner {
  width: 89.3vw;
}
@media screen and (min-width: 769px) {
  .clinic__presidentInner {
    width: 670px;
  }
}

.clinic .line__bnr {
  display: none;
}

.clinicAcd__clinicListName.active {
  background-color: #2E3D5E;
  border-color: #2E3D5E;
}

.clinicAcd__clinicInfo {
  width: 100vw;
  margin-left: -5.33vw;
  border: none;
  background-color: #2E3D5E;
  position: relative;
  top: -3vw;
  height: 0;
  overflow-y: hidden;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfo {
    width: 750px;
    margin-left: -54px;
    top: -23px;
  }
}

.clinicAcd__clinicInfoInner {
  width: 89.33vw;
  background-color: #fff;
  border: none;
  padding: 5.3333333333vw 5.3333333333vw 4.5333333333vw;
  margin: 6.6666666667vw auto;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicInfoInner {
    width: 670px;
    padding: 40px 40px 7%;
    margin: 50px auto;
  }
}

.clinicAcd__clinicNotice {
  margin-bottom: 5.3333333333vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicNotice {
    margin-bottom: 40px;
    font-size: 24px;
  }
}

.clinicAcd__clinicList .clinicAcd__clinicListItem:nth-child(2n) .clinicAcd__clinicInfo {
  width: calc(100vw + 1px);
  transform: translateX(-45.6vw);
}
@media screen and (min-width: 769px) {
  .clinicAcd__clinicList .clinicAcd__clinicListItem:nth-child(2n) .clinicAcd__clinicInfo {
    width: 751px;
    transform: translateX(-328px);
  }
}

.info__inner {
  padding-block: 7.4666666667vw 0;
}
@media screen and (min-width: 769px) {
  .info__inner {
    padding-block: 56px 0;
  }
}
.info__ttl {
  padding: 1.3333333333vw;
  font-size: 4.2666666667vw;
  color: #fff;
  text-align: center;
  background-color: #2E3D5E;
}
@media screen and (min-width: 769px) {
  .info__ttl {
    padding: 10px;
    font-size: 32px;
  }
}
.info__dl {
  border: 1px solid #333;
  border-top: none;
}
.info__dl div {
  display: grid;
  grid-template-columns: 33.8666666667vw 1fr;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .info__dl div {
    grid-template-columns: 254px 1fr;
  }
}
.info__dl div + div {
  border-top: 1px solid #333;
}
.info__dl div dt, .info__dl div dd {
  display: grid;
  align-items: center;
  padding: 2vw 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .info__dl div dt, .info__dl div dd {
    padding: 15px 20px;
  }
}
.info__dl div dt {
  font-size: 2.9333333333vw;
  text-align: center;
  background-color: #D5D6D7;
}
@media screen and (min-width: 769px) {
  .info__dl div dt {
    font-size: 22px;
  }
}
.info__dl div dd {
  font-size: 2.4vw;
  background-color: #fff;
  border-left: 1px solid #333;
}
@media screen and (min-width: 769px) {
  .info__dl div dd {
    font-size: 18px;
  }
}

.privacy-policy {
  padding-block: 5.3333333333vw 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .privacy-policy {
    padding-block: 40px 30px;
  }
}
.privacy-policy a {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .privacy-policy a {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .privacy-policy a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
}

.floating.hifu {
  background: rgb(from #fff r g b/0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  display: none;
}
.floating.hifu .floating_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 750px;
  gap: min(8px, 1.06vw);
  height: min(168px, 22.4vw);
}
.floating.hifu .floating_item__ctawrap {
  width: min(600px, 80vw);
}
.floating.hifu .floating_item__fukidashi {
  font-size: min(24px, 3.2vw);
  color: #1A2537;
}
.floating.hifu .floating_item__fukidashi span {
  padding: 0 1.2em;
}
.floating.hifu .floating_item__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(28px, 3.7vw);
  background: linear-gradient(90deg, #2D3C5C 0%, #51638A 100%);
  border-radius: 3rem;
  color: #fff;
}
.floating.hifu .floating_item__cta__text {
  flex: 1;
  font-size: min(30px, 4vw);
  color: #fff;
  padding: 0 min(2em, 4vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating.hifu .floating_item__cta__arrow {
  flex: 0;
  width: 0.6em;
}

/**
* utility
* ========================== */
.color-brown {
  color: #BDB1A5;
}

.color-beige {
  color: #E0D8CA;
}

.color-dark-gray {
  color: #4D463F;
}

.color-white {
  color: #fff;
}

.color-white-opacity-0-1 {
  color: rgba(255, 255, 255, 0.1);
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
}/*# sourceMappingURL=hifu.css.map */