@charset "UTF-8";
/**
* Foundation
* ========================== */
:root {
  --serif: "Zen Kaku Gothic New", serif;
  --en-serif: "Jost", serif;
  --roboto: "Roboto", serif;
  --base-color: #fff;
  --main: #172B33;
  --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: #e8f8ff;
}

body {
  background: #fff;
  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;
  line-height: 1;
  vertical-align: bottom;
}

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

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

.text-line-yellow-02 {
  background-image: linear-gradient(to bottom, transparent 12%, #FFFBB1 12%, #FFFBB1 95%, transparent 95%);
}

.header {
  background: #fff;
}
.header__inner {
  padding: 3.4666666667vw 5.3333333333vw 1.8666666667vw;
  display: flex;
  justify-content: space-between;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .header__inner {
    gap: 40px;
    padding: 20px 40px 14px;
  }
}
.header__logo {
  width: 24vw;
  display: block;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 180px;
  }
}

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

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

.worries {
  line-height: 1;
}

.solution {
  background: url(../img/solution_bg.webp) top center/cover no-repeat;
}
.solution__inner {
  padding-block: 11.7333333333vw 8.2666666667vw;
}
@media screen and (min-width: 769px) {
  .solution__inner {
    padding-block: 88px 62px;
  }
}
.solution__ttl {
  position: relative;
  text-align: center;
  padding-bottom: 5.3333333333vw;
  background: url(../img/solution_arrow.webp) left 50% bottom/9.6vw 3.2vw no-repeat;
}
.solution__ttl img {
  width: 66.6666666667vw;
}
@media screen and (min-width: 769px) {
  .solution__ttl img {
    width: 500px;
  }
}
.solution__ttl-sm {
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  .solution__ttl-sm {
    font-size: 24px;
  }
}
.solution__row-cols2 {
  display: grid;
  grid-template-columns: 33.2vw 1fr;
  gap: 1.6vw;
  margin-top: 3.2vw;
  margin-inline: -1.6vw;
}
@media screen and (min-width: 769px) {
  .solution__row-cols2 {
    grid-template-columns: 249px 1fr;
    gap: 12px;
    margin-top: 24px;
    margin-inline: -12px;
  }
}
.solution__row-cols2 {
  padding-right: 3.4666666667vw;
}
@media screen and (min-width: 769px) {
  .solution__row-cols2 {
    padding-right: 26px;
  }
}
.solution__img {
  margin-top: -2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .solution__img {
    margin-top: -20px;
  }
}
.solution__sttl {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 769px) {
  .solution__sttl {
    font-size: 28px;
  }
}
.solution__txt {
  margin-top: 0.8vw;
  text-align: justify;
  font-size: 2.4vw;
  line-height: 1.8;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 769px) {
  .solution__txt {
    font-size: 18px;
  }
}

.about {
  background: url(../img/about_bg_01.webp) top center/100% no-repeat, linear-gradient(to bottom, #D3F2FF, #E2EFF5 100%);
}
.about__inner {
  padding-block: 7.7333333333vw 0;
}
@media screen and (min-width: 769px) {
  .about__inner {
    padding-block: 58px 0;
  }
}
.about__img {
  margin-top: -4vw;
  margin-inline: -4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .about__img {
    margin-top: -30px;
    margin-inline: -32px;
  }
}
.about__detail-wrap {
  margin-top: -2.1333333333vw;
  padding-inline: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .about__detail-wrap {
    margin-top: -16px;
    padding-inline: 40px;
  }
}
.about__detail {
  background: #fff url(../img/about_bg_02.webp) top center/100% repeat;
  padding: 8vw 12vw 4.8vw 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .about__detail {
    padding: 60px 90px 36px 100px;
  }
}
.about__list {
  display: grid;
  gap: 3.2vw;
}
@media screen and (min-width: 769px) {
  .about__list {
    gap: 24px;
  }
}
.about__list li {
  font-size: 3.2vw;
  padding-left: 4.8vw;
  background: url(../img/icon_check.webp) left center/2.4vw 2.5333333333vw no-repeat;
}
@media screen and (min-width: 769px) {
  .about__list li {
    font-size: 24px;
    padding-left: 36px;
    background-size: 18px 19px;
  }
}
.about__catch {
  margin-top: 3.2vw;
  margin-inline: -6.6666666667vw;
  padding-bottom: 1.3333333333vw;
  font-size: 3.7333333333vw;
  text-align: center;
  color: #124A5E;
  background: url(../img/about_line.webp) bottom 0.6666666667vw center/65.6vw 3.2vw no-repeat;
}
@media screen and (min-width: 769px) {
  .about__catch {
    margin-top: 24px;
    margin-inline: -50px;
    padding-bottom: 10px;
    font-size: 28px;
    background-size: 492px 24px;
    background-position: bottom 5px center;
  }
}
.about__bubble-img {
  margin-top: 0.5333333333vw;
}
@media screen and (min-width: 769px) {
  .about__bubble-img {
    margin-top: 4px;
  }
}
.about__bubble-img img {
  position: relative;
  right: -5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .about__bubble-img img {
    right: -40px;
  }
}

.reservation {
  background-color: #fff;
}
.reservation__inner {
  padding-block: 7.4666666667vw 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .reservation__inner {
    padding-block: 56px 50px;
  }
}
.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) {
  .reservation__ttl {
    font-size: 24px;
  }
}
.reservation__ttl span {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.reservation__ttl span::before, .reservation__ttl span::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 1px;
  height: 1em;
  background-color: var(--color-blue);
  content: "";
}
.reservation__ttl span::before {
  left: -1.6em;
  transform: rotate(-24deg) translateY(-50%);
}
.reservation__ttl span::after {
  right: -1.55em;
  transform: rotate(24deg) translateY(-50%);
}
.reservation__btn-wrap {
  text-align: center;
  margin-top: 1.8666666667vw;
}
@media screen and (min-width: 769px) {
  .reservation__btn-wrap {
    margin-top: 14px;
  }
}
.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, #FFB92D 0%, #FBD80E 100%);
  border-radius: 100vmax;
}
@media screen and (min-width: 769px) {
  .reservation__btn {
    font-size: 30px;
    width: 590px;
    height: 85px;
  }
}
.reservation__btn::after {
  position: absolute;
  inset-block: auto;
  right: 4vw;
  aspect-ratio: 1;
  height: 1.7333333333vw;
  background-color: #fff;
  -webkit-clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
          clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
  content: "";
}
@media screen and (min-width: 769px) {
  .reservation__btn::after {
    right: 30px;
    height: 13px;
  }
}
@media (any-hover: hover) {
  .reservation__btn {
    transition: opacity 0.3s ease;
  }
  .reservation__btn:hover {
    opacity: 0.7;
  }
}

.reason {
  position: relative;
  background: #71D6F9;
}
.reason::before, .reason::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  mix-blend-mode: overlay;
}
.reason::before {
  top: 0;
  background: url(../img/reason_bg_01.webp) 0/contain no-repeat;
  width: 100%;
  height: 69.6vw;
}
@media screen and (min-width: 769px) {
  .reason::before {
    height: 522px;
  }
}
.reason::after {
  bottom: 0;
  background: url(../img/reason_bg_02.webp) 0/contain no-repeat;
  width: 100%;
  height: 73.2vw;
}
@media screen and (min-width: 769px) {
  .reason::after {
    height: 549px;
  }
}
.reason__inner {
  position: relative;
  z-index: 2;
  padding-block: 6.4vw 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .reason__inner {
    padding-block: 48px 80px;
  }
}
.reason__ttl {
  position: relative;
  z-index: 2;
}
.reason__items {
  display: grid;
  gap: 4.2666666667vw;
  margin-top: 0.5333333333vw;
}
@media screen and (min-width: 769px) {
  .reason__items {
    gap: 32px;
    margin-top: 4px;
  }
}
.reason__item {
  background-color: #fff;
  max-width: 87.2vw;
  padding: 6.6666666667vw 5.3333333333vw 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  .reason__item {
    max-width: 654px;
    padding: 50px 40px 34px;
  }
}
.reason__item:nth-of-type(odd) {
  margin-left: auto;
}
.reason__sttl {
  display: grid;
  grid-template-columns: 14.8vw 1fr;
  gap: 2.4vw;
  line-height: 1;
  color: #095894;
}
@media screen and (min-width: 769px) {
  .reason__sttl {
    grid-template-columns: 111px 1fr;
    gap: 18px;
  }
}
.reason__num img[src$="reason_num_01.webp"] {
  width: 13.0666666667vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .reason__num img[src$="reason_num_01.webp"] {
    width: 98px;
  }
}
.reason__sttl-wrap {
  display: grid;
}
.reason__sttl-sub {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .reason__sttl-sub {
    font-size: 20px;
  }
}
.reason__sttl-main {
  font-size: 4.9333333333vw;
}
@media screen and (min-width: 769px) {
  .reason__sttl-main {
    font-size: 37px;
  }
}
.reason__sttl-note {
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 769px) {
  .reason__sttl-note {
    font-size: 16px;
  }
}
.reason__txt {
  margin-top: 2.6666666667vw;
  text-align: justify;
  font-size: 2.4vw;
  line-height: 1.8;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .reason__txt {
    margin-top: 20px;
    font-size: 18px;
  }
}
.reason__note {
  margin-top: 2.6666666667vw;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.8666666667vw;
}
@media screen and (min-width: 769px) {
  .reason__note {
    margin-top: 20px;
    font-size: 14px;
  }
}
.reason__note::before {
  content: "※";
}

.price {
  position: relative;
  overflow: hidden;
  background-color: #E2EFF5;
}
.price::before {
  position: absolute;
  top: 5.0666666667vw;
  right: 0;
  display: block;
  content: "";
  background: url(../img/price_img.webp) 0/contain no-repeat;
  width: 48vw;
  height: 55.2vw;
}
@media screen and (min-width: 769px) {
  .price::before {
    top: 38px;
    width: 360px;
    height: 414px;
  }
}
.price__inner {
  padding-block: 9.6vw 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .price__inner {
    padding-block: 72px 80px;
  }
}
.price__head {
  max-width: 61%;
  text-align: center;
}
.price__ttl img {
  width: 41.7333333333vw;
}
@media screen and (min-width: 769px) {
  .price__ttl img {
    width: 313px;
  }
}
.price__lead {
  margin-top: 3.2vw;
  padding-bottom: 0.6666666667vw;
  font-size: 3.7333333333vw;
  background: url(../img/price_line.webp) bottom center/26vw 3.0666666667vw no-repeat;
}
@media screen and (min-width: 769px) {
  .price__lead {
    margin-top: 24px;
    padding-bottom: 5px;
    font-size: 28px;
    background-size: 195px 23px;
  }
}
.price__txt {
  margin-top: 1.8666666667vw;
  font-size: 2.4vw;
}
@media screen and (min-width: 769px) {
  .price__txt {
    margin-top: 14px;
    font-size: 18px;
  }
}
.price__items {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.2vw;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .price__items {
    gap: 24px;
    margin-top: 40px;
  }
}
.price__item {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}
.price__sttl {
  display: grid;
  place-content: center;
  padding-block: 1.8666666667vw;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #46C4F3, #51E0F7);
}
@media screen and (min-width: 769px) {
  .price__sttl {
    padding-block: 14px;
  }
}
.price__sttl.price__sttl--bg-bule {
  background: linear-gradient(to right, #155E95, #5DA7DE);
}
.price__sttl-main {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .price__sttl-main {
    font-size: 32px;
  }
}
.price__sttl-sub {
  font-size: 2.4vw;
}
@media screen and (min-width: 769px) {
  .price__sttl-sub {
    font-size: 18px;
  }
}
.price__item-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.3333333333vw;
  padding: 3.2vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .price__item-content {
    gap: 40px;
    padding: 24px;
  }
}
.price__item-content::before {
  position: absolute;
  inset: 0 3.2vw 0 0;
  display: block;
  width: 1px;
  height: 5.8666666667vw;
  margin: auto;
  content: "";
  background-color: #707070;
}
@media screen and (min-width: 769px) {
  .price__item-content::before {
    inset: 0 24px 0 0;
    height: 44px;
  }
}
.price__item-txt {
  text-align: center;
}
.price__item-txt img {
  width: auto;
  height: 7.4666666667vw;
}
@media screen and (min-width: 769px) {
  .price__item-txt img {
    height: 56px;
  }
}

.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: "※";
}

.info {
  background-color: #B5EAFF;
}
.info__inner {
  padding-block: 8.8vw 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .info__inner {
    padding-block: 66px 80px;
  }
}
.info__ttl {
  text-align: center;
}
.info__ttl img {
  width: 88.4vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .info__ttl img {
    width: 663px;
  }
}
.info__table {
  width: 100%;
  margin-top: 6.1333333333vw;
}
@media screen and (min-width: 769px) {
  .info__table {
    margin-top: 46px;
  }
}
.info__table thead th {
  padding: 1.3333333333vw;
  text-align: center;
  font-size: 4.2666666667vw;
  color: #fff;
  background-color: #287DBE;
}
@media screen and (min-width: 769px) {
  .info__table thead th {
    padding: 10px;
    font-size: 32px;
  }
}
.info__table tbody {
  border: 1px solid #172B33;
  border-top: none;
}
.info__table tbody tr + tr {
  border-top: 1px solid #172B33;
}
.info__table tbody tr th,
.info__table tbody tr td {
  line-height: 1.8;
}
.info__table tbody tr th {
  width: 37.8%;
  vertical-align: middle;
  text-align: center;
  font-size: 2.9333333333vw;
  background-color: #EBEEF5;
}
@media screen and (min-width: 769px) {
  .info__table tbody tr th {
    font-size: 22px;
  }
}
.info__table tbody tr td {
  padding: 2.6666666667vw 2vw 2.6666666667vw 2.9333333333vw;
  font-size: 2.4vw;
  letter-spacing: -0.08em;
  border-left: 1px solid #172B33;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .info__table tbody tr td {
    padding: 20px 15px 20px 22px;
    font-size: 18px;
  }
}

.flow {
  background: url(../img/flow_img.webp) top 1.0666666667vw left/48.2666666667vw 67.8666666667vw no-repeat;
  background-color: #E2EFF5;
}
@media screen and (min-width: 769px) {
  .flow {
    background-position: top 8px left;
    background-size: 362px 509px;
  }
}
.flow__inner {
  padding-block: 18.6666666667vw 0;
}
@media screen and (min-width: 769px) {
  .flow__inner {
    padding-block: 140px 0;
  }
}
.flow__ttl {
  width: 39.0666666667vw;
  margin-inline: auto 8vw;
}
@media screen and (min-width: 769px) {
  .flow__ttl {
    width: 293px;
    margin-inline: auto 60px;
  }
}
.flow__content {
  position: relative;
  z-index: 2;
  margin-top: 14.6666666667vw;
  background: url(../img/flow_bg.webp) 0/cover no-repeat;
}
@media screen and (min-width: 769px) {
  .flow__content {
    margin-top: 110px;
  }
}
.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-num {
  position: absolute;
  top: -5.6vw;
  left: 0;
}
@media screen and (min-width: 769px) {
  .flow__item-num {
    top: -42px;
    left: 0;
  }
}
.flow__item-num img {
  width: auto;
  height: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .flow__item-num img {
    height: 80px;
  }
}
.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: 2.9333333333vw 2.9333333333vw 4vw;
}
@media screen and (min-width: 769px) {
  .flow__item-body {
    padding: 22px 22px 30px;
  }
}
.flow__item-ttl {
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: #125387;
}
@media screen and (min-width: 769px) {
  .flow__item-ttl {
    font-size: 32px;
  }
}
.flow__item-text {
  margin-top: 1.3333333333vw;
  font-size: 2.6666666667vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .flow__item-text {
    margin-top: 10px;
    font-size: 20px;
  }
}

.splide {
  padding: 0 15.2vw 10.9333333333vw;
}
@media screen and (min-width: 769px) {
  .splide {
    padding: 0 114px 82px;
  }
}
.splide .splide__slide {
  padding-top: 12vw;
  width: 69.8vw !important;
}
@media screen and (min-width: 769px) {
  .splide .splide__slide {
    padding-top: 90px;
    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: 53%;
  transform: translateY(-53%);
  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: #155E95;
  transform: scale(1);
  z-index: 1;
}
.splide .splide__pagination {
  display: flex !important;
  bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .splide .splide__pagination {
    bottom: 40px;
  }
}

.faq {
  background-color: #E2EFF5;
}
.faq__inner {
  padding-block: 8.8vw 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .faq__inner {
    padding-block: 66px 80px;
  }
}
.faq__ttl {
  text-align: center;
}
.faq__ttl img {
  width: 31.2vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .faq__ttl img {
    width: 234px;
  }
}
.faq__items {
  display: grid;
  gap: 4vw;
  margin-top: 6.4vw;
}
@media screen and (min-width: 769px) {
  .faq__items {
    gap: 30px;
    margin-top: 48px;
  }
}
.faq__q {
  position: relative;
  padding: 2.9333333333vw 2.6666666667vw 2.9333333333vw 11.4666666667vw;
  font-size: 3.2vw;
  color: #fff;
  background-color: #1BB8EF;
}
@media screen and (min-width: 769px) {
  .faq__q {
    padding: 22px 20px 22px 86px;
    font-size: 24px;
  }
}
.faq__q::before {
  position: absolute;
  inset-block: 0;
  left: 2.6666666667vw;
  display: block;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  margin-block: auto;
  content: "";
  background: url(../img/icon_q.webp) 0/contain no-repeat;
}
@media screen and (min-width: 769px) {
  .faq__q::before {
    left: 20px;
    width: 50px;
    height: 50px;
  }
}
.faq__a {
  position: relative;
  padding: 4.5333333333vw 2.6666666667vw 4.5333333333vw 11.2vw;
  font-size: 2.6666666667vw;
  line-height: 1.8;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .faq__a {
    padding: 34px 20px 34px 84px;
    font-size: 18px;
  }
}
.faq__a::before {
  position: absolute;
  left: 2.6666666667vw;
  display: block;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  content: "";
  background: url(../img/icon_a.webp) 0/contain no-repeat;
}
@media screen and (min-width: 769px) {
  .faq__a::before {
    left: 20px;
    width: 50px;
    height: 50px;
  }
}
.faq__dl {
  display: grid;
  gap: 1.0666666667vw;
  margin-left: -1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .faq__dl {
    gap: 8px;
    margin-left: -10px;
  }
}
.faq__dl div {
  position: relative;
  display: grid;
  grid-template-columns: 13.0666666667vw 1fr;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .faq__dl div {
    grid-template-columns: 98px 1fr;
    gap: 10px;
  }
}
.faq__dl div dt {
  position: relative;
  text-align: center;
}
.faq__dl div dt::after {
  position: absolute;
  inset-block: 0;
  right: -1.3333333333vw;
  margin-block: auto;
  content: "：";
}
@media screen and (min-width: 769px) {
  .faq__dl div dt::after {
    right: -10px;
  }
}

/* - クリニック一覧- */
.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__head {
  text-align: center;
  padding-block: 9.6vw 8vw;
}
@media screen and (min-width: 769px) {
  .clinicAcd__head {
    padding-block: 72px 60px;
  }
}
.clinicAcd__head img {
  width: 45.7333333333vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .clinicAcd__head img {
    width: 343px;
  }
}

.clinicAcd__stateName {
  position: relative;
  text-align: left;
  font-size: 4.2666666667vw;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: #287DBE;
  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: #172B33;
  background: transparent;
  border: 2px solid #287DBE;
  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: #E5F0F4;
  color: #124A5E;
}
@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, #FFB92D, #FBD80E);
  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;
}

/*.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: #E2EFF5;
}

.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: #287DBE;
  border-color: #287DBE;
}

.clinicAcd__clinicInfo {
  width: 100vw;
  margin-left: -5.33vw;
  border: none;
  background-color: #287DBE;
  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);
  }
}

.privacy-policy {
  padding-block: 5.3333333333vw 4vw;
  text-align: center;
  background-color: #E2EFF5;
}
@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;
  }
}

/**
* 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;
}

/**
* 2025.07.28
* フローティングボタンの追加
* ========================== */


.floating {
  background: rgb(from #fff r g b / 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  display: none;
}

.floating_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 0 0.8em;
  height: min(168px, 22.4vw);
  gap: min(8px, 1.06vw);
}

.floating_item__ctawrap {
  width: min(600px, 80vw);
}

.floating_item__fukidashi {
  font-size: min(24px, 3.2vw);
  color: var(--color-blue);
}

.floating_item__fukidashi span {
  padding: 0 1.2em;
}

.floating_item__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(28px, 3.7vw);
  background: linear-gradient(90deg, #FFB92D 0%, #FBD80E 100%);
  border-radius: 3rem;
  color: #fff;
}

.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_item__cta__arrow {
  flex: 0;
  width: 0.6em;
}

