/* devanagari */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fonts-000.woff2") format("woff2");
  unicode-range:
    U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC,
    U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fonts-001.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fonts-002.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/fonts-003.woff2") format("woff2");
  unicode-range:
    U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC,
    U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/fonts-004.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/fonts-005.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@charset "UTF-8";

/* =========================================================
   高見院長のヒアルロン酸注入 LP
   - Breakpoint : PC = 768px 以上 / SP = 767px 以下
   - PC は min(vw, px) 、SP は 390px 基準の vw で可変
   ========================================================= */

/* ---------------------------------------------------------
   1. Design tokens
--------------------------------------------------------- */
:root {
  --c-navy: #011388;
  --c-navy-dark: #010e6a;
  --c-gold: #998c2c;
  --c-red: #c34438;
  --c-text: #4d4d4d;
  --c-text-dark: #1a1a1a;
  --c-gray: #707070;
  --c-line: #d9d9d9;
  --c-bg-navy: #f5f6ff;
  --c-bg-gold: #f2f0e3;
  --c-bg-gray: #f8f8f8;
  --c-bg-gray2: #efefef;

  --ff-mincho:
    "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
    "Noto Serif JP", serif;
  --ff-serif:
    "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --ff-sans:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
    "Meiryo", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --header-h: 56px;
}

/* ---------------------------------------------------------
   2. Reset
--------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
}
html.is-locked {
  overflow: hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
table,
th,
td,
caption {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  vertical-align: bottom;
}
img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}
caption,
th {
  text-align: left;
  font-weight: inherit;
}

/* ---------------------------------------------------------
   3. Base
--------------------------------------------------------- */
body {
  font-family: var(--ff-mincho);
  font-size: 16px;
  color: var(--c-text);
  background-color: #fff;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.nowrap {
  white-space: nowrap;
}
.note {
  line-height: 1.7;
}

/* PC / SP 出し分け */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* セクション共通の内枠 */
.inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 100%;
    max-width: 1100px;
    padding: min(5.5vw, 60px) 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .inner {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 7.7vw 0;
  }
}

/* セクション見出し */
.heading {
  text-align: center;
  color: var(--c-navy);
}

.heading--sparkle {
  font-family: var(--ff-mincho);
  font-weight: 600;
  color: var(--c-gold);
}
.heading--sparkle > span {
  display: block;
  font-weight: 700;
  color: var(--c-navy);
}
.heading--sparkle::after {
  display: block;
  margin-inline: auto;
  content: "";
  background: url("assets/images/images-062.svg") no-repeat center / contain;
}
@media screen and (min-width: 768px) {
  .heading--sparkle {
    font-size: min(3.3vw, 36px);
    line-height: 1.3;
  }
  .heading--sparkle > span {
    font-size: min(2.5vw, 28px);
    line-height: 1.7;
  }
  .heading--sparkle::after {
    width: min(7.5vw, 82px);
    height: min(5.5vw, 60px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .heading--sparkle {
    font-size: 7.7vw;
    line-height: 1.3;
    white-space: nowrap;
  }
  .heading--sparkle > span {
    font-size: 6.2vw;
    line-height: 1.7;
  }
  .heading--sparkle::after {
    width: 15.4vw;
    height: 11.3vw;
    margin-bottom: 5.1vw;
  }
}



/* ---------------------------------------------------------
   5. Main visual
--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .mv {
    padding-top: var(--header-h);
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: var(--header-h);
  }
}

.mv__stage {
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__stage {
    width: 100%;
    min-height: calc(100vh - var(--header-h));
  }
}
@media (768px<=width<=1200px) {
  .mv__stage {
    min-height: auto;
  }
}
@media (max-aspect-ratio: 3/4), (max-width: 1024px) and (min-width: 750px) {
  .mv__stage {
    height: auto;
  }
}

/* --- コピー群 --- */
.mv__copy {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__copy {
    position: absolute;
    top: 4.625vw;
    left: 53vw;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .mv__copy-item {
    position: absolute;
  }
}

@media screen and (min-width: 768px) {
  .mv__copy-item--heading {
    order: 0;
  }
  .mv__copy-item--title {
    order: 1;
  }
  .mv__copy-item--details {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .mv__copy-item--heading {
    top: 2.8vw;
    left: 5.9vw;
  }
  .mv__copy-item--title {
    top: 87.2vw;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

.mv__heading {
  font-weight: 600;
  color: var(--c-text-dark);
}
.mv__heading::first-letter {
  font-size: 1.46em;
}
@media screen and (min-width: 768px) {
  .mv__heading {
    margin-bottom: 1.9vw;
    font-size: 2.4vw;
    line-height: 3.1vw;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .mv__heading {
    font-size: 6.2vw;
    line-height: 1.35em;
    letter-spacing: 0.03em;
  }
}

.mv__title {
  font-weight: 500;
}
.mv__title span:first-of-type {
  display: block;
  height: 1em;
}
.mv__title span:last-of-type {
  letter-spacing: -0.12em;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 4.6vw;
    color: var(--c-navy);
  }
  .mv__title span:first-of-type {
    font-size: 3.4vw;
  }
  .mv__title span:last-of-type {
    margin-left: -0.15em;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    display: inline-block;
    font-size: 12.1vw;
    color: #fff;
    text-align: left;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  .mv__title span:first-of-type {
    margin-left: 0.15em;
    font-size: 9.2vw;
    letter-spacing: 0;
  }
}

.mv__copy-item--details p {
  color: var(--c-text-dark);
}
.mv__copy-item--details p:first-of-type {
  font-weight: 600;
  font-size: 2vw;
}
.mv__copy-item--details p:nth-of-type(2) {
  font-size: 2.6vw;
}
.mv__note {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.667vw;
  line-height: 1.1vw;
}
.mv__note::first-line {
  color: var(--c-red);
}

/* --- 縦書きキャッチ --- */
.mv__vertical {
  position: absolute;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .mv__vertical {
    top: 3.5vw;
    left: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__vertical {
    top: 23.6vw;
    left: 71.8vw;
  }
}
.mv__vertical span {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .mv__vertical span {
    padding: 0.8vw;
    font-size: 1.75vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__vertical span {
    padding: 7px;
    font-size: 17px;
  }
}
.mv__vertical span:last-of-type {
  display: block;
  margin-right: 10px;
}

/* --- 写真 --- */
@media screen and (min-width: 768px) {
  .mv__image {
    width: 100%;
    height: 72.44%;
    overflow: hidden;
  }
  .mv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-aspect-ratio: 3/4), (max-width: 1024px) and (min-width: 750px) {
  .mv__image {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    height: 116vw;
    overflow: hidden;
  }
  .mv__image img {
    width: 100vw;
  }
}
.mv {
  .loan__banner {
    margin-top: min(3.4vw, 42px);
    @media (width>=768px) {
      margin-bottom: 0;
    }
    @media (width<=767px) {
      margin-top: 5.1vw;
    }
  }
}

/* --- 下部 CTA 帯 --- */
.mv__foot {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__foot {
    height: auto;
    padding-bottom: min(2.6vw, 34px);
    padding-top: 1.9vw;
    background: none no-repeat 50% 50% / cover;
  }
}
@media (max-aspect-ratio: 3/4), (max-width: 1024px) and (min-width: 750px) {
  .mv__foot {
    width: 100%;
    height: auto;
    padding-bottom: min(1.8vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .mv__foot {
    position: absolute;
    top: 117.9vw;
    z-index: 5;
  }
}

.mv__price p {
  color: var(--c-text-dark);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__price p:first-of-type {
    height: 1em;
    margin-bottom: 2.6vw;
    font-size: 6.2vw;
    font-weight: 600;
    line-height: 1;
  }
  .mv__price p:nth-of-type(2) {
    height: 1em;
    margin-bottom: 3.1vw;
    font-size: 7.7vw;
    line-height: 1;
  }
  .mv__price .mv__note {
    font-size: 2.6vw;
    line-height: 1.6;
  }
}

/* ---------------------------------------------------------
   6. ページ内アンカー
--------------------------------------------------------- */
.anchor {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .anchor {
    padding: min(1.9vw, 30px);
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .anchor {
    padding-top: 3.8vw;
    padding-bottom: 6.4vw;
    background-image: none;
  }
}

.anchor__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .anchor__inner {
    width: 100%;
    max-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  .anchor__inner {
    width: 89.7vw;
  }
}

.anchor__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.anchor__list li {
  background-color: #fff;
  border: 1.5px solid var(--c-gold);
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .anchor__list li {
    width: min(30.9vw, 340px);
    height: min(6.2vw, 68px);
    margin-bottom: min(1.3vw, 20px);
  }
  .anchor__list li:nth-last-of-type(-n + 3) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .anchor__list li {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .anchor__list li {
    height: 20vw;
  }
  .anchor__list li:nth-of-type(-n + 6) {
    width: 43.6vw;
    margin-bottom: 3.1vw;
  }
  .anchor__list li:nth-of-type(n + 7):nth-of-type(-n + 9) {
    width: 26.7vw;
  }
}

.anchor__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .anchor__list a {
    justify-content: center;
    font-size: min(1.6vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .anchor__list a {
    justify-content: flex-end;
    font-size: 3.6vw;
    line-height: 1.25;
  }
  .anchor__list a span {
    display: flex;
    align-items: center;
    height: 2.2em;
  }
}
.anchor__list a::after {
  display: inline-block;
  color: var(--c-gold);
  content: "▼";
}
@media screen and (min-width: 768px) {
  .anchor__list a::after {
    margin-top: 3px;
    transform: scaleY(0.78);
  }
}
@media screen and (max-width: 767px) {
  .anchor__list a::after {
    font-size: 5.1vw;
    transform: scaleY(0.5);
  }
}

/* ---------------------------------------------------------
   7. 高見院長のヒアルロン酸注入とは？
--------------------------------------------------------- */
.about .inner {
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .about .inner {
    width: min(72.7vw, 800px);
  }
}
@media screen and (max-width: 767px) {
  .about .inner {
    width: 84.6vw;
  }
}

.about__subheading {
  font-family: var(--ff-mincho);
  font-weight: 700;
  color: var(--c-text);
}
@media screen and (min-width: 768px) {
  .about__subheading {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(2.2vw, 24px);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about__subheading {
    margin-bottom: 3.1vw;
    font-size: 5.1vw;
    line-height: 1.4;
    white-space: nowrap;
  }
}

.about__text {
  margin-bottom: 1em;
  font-weight: 400;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.about__note {
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .about__note {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .about__note {
    font-size: 3.1vw;
  }
}

/* ---------------------------------------------------------
   8. このようなお悩みに
--------------------------------------------------------- */
.concerns {
  background-color: var(--c-bg-navy);
}
.concerns__heading {
  text-align: center;
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .concerns__heading {
    margin-bottom: min(4.5vw, 50px);
    font-size: min(2.2vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .concerns__heading {
    margin-bottom: 7.7vw;
    font-size: 5.6vw;
    white-space: nowrap;
  }
}
.concerns__heading span {
  display: inline-block;
  color: var(--c-gold);
  border-bottom: 2px solid currentColor;
}
@media screen and (min-width: 768px) {
  .concerns__heading span {
    font-size: min(3.3vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .concerns__heading span {
    font-size: 8.7vw;
  }
}

.concerns__figure {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .concerns__figure {
    width: min(38vw, 418px);
    margin-bottom: min(4.5vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .concerns__figure {
    width: 88.7vw;
    margin-bottom: 11.3vw;
  }
}

.concerns__columns {
  display: flex;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .concerns__columns {
    width: min(63.6vw, 700px);
    justify-content: space-between;
  }
  .concerns__columns .concerns__list {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .concerns__columns {
    flex-direction: column;
    width: 84.6vw;
  }
  .concerns__columns .concerns__list:first-child {
    margin-bottom: 1em;
  }
}

.concerns__list li {
  display: flex;
  align-items: flex-start;
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-navy);
}
.concerns__list li:not(:last-of-type) {
  margin-bottom: 1em;
}
.concerns__list strong {
  font-weight: 700;
}
.concerns__check {
  display: inline-block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .concerns__list li {
    font-size: min(1.5vw, 16px);
  }
  .concerns__check {
    width: min(1.7vw, 19px);
    margin-right: min(0.6vw, 7px);
  }
}
@media screen and (max-width: 767px) {
  .concerns__list li {
    font-size: 4.1vw;
  }
  .concerns__check {
    width: 4.9vw;
    margin-right: 1.8vw;
  }
}

/* ---------------------------------------------------------
   9. 特長
--------------------------------------------------------- */
.feature__inner {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    padding-bottom: 7.7vw;
  }
}

.feature__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .feature__lead {
    height: min(6.4vw, 70px);
    font-size: min(2.9vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .feature__lead {
    height: 21.5vw;
    font-size: 6.2vw;
    line-height: 1.3;
  }
}

.feature__hero {
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .feature__hero {
    width: 100%;
    max-width: 1600px;
  }
}

.feature__triangle {
  position: absolute;
  top: -3px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .feature__triangle {
    width: min(3.9vw, 43px);
  }
}
@media screen and (max-width: 767px) {
  .feature__triangle {
    top: -1px;
    width: 7.4vw;
  }
}
.feature__triangle img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

.feature__copy {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .feature__copy {
    top: min(4.5vw, 50px);
    left: min(12.5vw, 200px);
    width: min(51.8vw, 570px);
  }
}
@media screen and (max-width: 767px) {
  .feature__copy {
    top: 34.9vw;
    left: 5.1vw;
  }
}

.feature__label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-weight: 700;
  color: var(--c-text-dark);
}
@media screen and (min-width: 768px) {
  .feature__label {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .feature__label {
    margin-bottom: 7.7vw;
  }
}
.feature__label li:first-of-type {
  width: 100%;
}
.feature__label li:nth-of-type(2) {
  width: 100%;
}
.feature__label li:not(:first-of-type) {
  font-weight: 600;
  color: #fff;
}
.feature__label li:not(:first-of-type) p {
  display: inline-block;
  background-color: rgba(153, 140, 44, 0.7);
}
@media screen and (min-width: 768px) {
  .feature__label li:first-of-type {
    margin-bottom: min(1.1vw, 12px);
    font-size: min(2.7vw, 30px);
  }
  .feature__label li:nth-of-type(2) {
    margin-bottom: min(1.2vw, 13px);
    font-size: min(3.5vw, 38px);
  }
  .feature__label li:nth-of-type(2) small {
    font-size: min(2.9vw, 32px);
  }
  .feature__label li:nth-of-type(3) {
    font-size: min(4.5vw, 50px);
  }
  .feature__label li:last-of-type {
    font-size: min(4.5vw, 50px);
  }
  .feature__label li:last-of-type small {
    font-size: min(2.9vw, 32px);
  }
  .feature__label li:not(:first-of-type) p {
    padding: min(1.1vw, 12px) min(1.4vw, 15px);
  }
  .feature__label li:nth-of-type(3) p {
    padding-right: 0;
  }
  .feature__label li:last-of-type p {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .feature__label li:first-of-type {
    margin-bottom: 1.3vw;
    font-size: 5.1vw;
  }
  .feature__label li:nth-of-type(2) {
    margin-bottom: 2.1vw;
    font-size: 6.7vw;
  }
  .feature__label li:nth-of-type(2) small {
    font-size: 5.6vw;
  }
  .feature__label li:nth-of-type(3) {
    margin-bottom: 2.1vw;
    font-size: 8.2vw;
  }
  .feature__label li:last-of-type {
    width: 100%;
    font-size: 8.2vw;
  }
  .feature__label li:last-of-type small {
    font-size: 7.7vw;
  }
  .feature__label li:not(:first-of-type) p {
    padding: 0.3vw 2.6vw;
  }
}

.feature__catch {
  font-weight: 700;
  color: var(--c-text-dark);
}
@media screen and (min-width: 768px) {
  .feature__catch {
    margin-bottom: min(1.3vw, 14px);
    font-size: min(2.9vw, 32px);
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .feature__catch {
    margin-bottom: 3.2vw;
    font-size: 6.2vw;
    line-height: 1.3;
  }
}

.feature__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: var(--c-text-dark);
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .feature__text {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .feature__text {
    padding-right: 7.7vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

@media screen and (min-width: 768px) {
  .feature__photo {
    max-height: min(49.1vw, 580px);
    overflow: hidden;
  }
  .feature__photo img {
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .feature__photo {
    padding-bottom: 76.9vw;
  }
  .feature__photo img {
    width: 100%;
  }
}

.feature__columns {
  display: flex;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .feature__columns {
    width: min(81.8vw, 900px);
    justify-content: space-between;
    margin-top: min(4.5vw, 50px);
  }
  .feature__card {
    width: min(37.8vw, 416px);
  }
}
@media screen and (max-width: 767px) {
  .feature__columns {
    flex-direction: column;
    width: 89.7vw;
    margin-top: 10.3vw;
  }
  .feature__card:first-of-type {
    margin-bottom: 10.3vw;
  }
}

.feature__card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .feature__card-title {
    height: min(7.5vw, 82px);
    margin-bottom: min(2.7vw, 30px);
    font-size: min(2vw, 22px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .feature__card-title {
    padding: 3.1vw 0;
    margin-bottom: 7.7vw;
    font-size: 5.1vw;
    line-height: 1.4;
  }
}

.feature__card-body {
  font-family: var(--ff-sans);
}
@media screen and (max-width: 767px) {
  .feature__card-body {
    padding: 0 2.6vw;
  }
}
.feature__card-body figure {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__card-body figure {
    margin-bottom: min(1.9vw, 21px);
  }
}
@media screen and (max-width: 767px) {
  .feature__card-body figure {
    margin-bottom: 5.4vw;
  }
}
.feature__card-body figure img {
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .feature__card-body figure img {
    width: min(20vw, 220px);
    margin-bottom: min(1.5vw, 16px);
  }
  .feature__card-body figcaption {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .feature__card-body figure img {
    width: 56.4vw;
    margin-bottom: 4.1vw;
  }
  .feature__card-body figcaption {
    font-size: 3.1vw;
  }
}
.feature__card-body p {
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}
.feature__card-body p:not(:last-of-type) {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .feature__card-body p {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .feature__card-body p {
    font-size: 3.6vw;
  }
}

/* ---------------------------------------------------------
   10. スライダー（共通）
--------------------------------------------------------- */
.slider {
  position: relative;
}
.slider__viewport {
  overflow: hidden;
}
.slider__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slider__slide {
  flex: 0 0 100%;
  width: 100%;
}

.slider__nav {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #333;
  user-select: none;
  background-color: #ccc;
  border-radius: 50%;
}
.slider__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}
.slider__nav--prev {
  left: 10px;
}
.slider__nav--next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .cases__slider .slider__nav {
    top: min(22.7vw, 250px);
  }
  .cases__slider .slider__nav--prev {
    left: 0;
  }
  .cases__slider .slider__nav--next {
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cases__slider .slider__nav--prev {
    left: 10px;
  }
  .cases__slider .slider__nav--next {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cases__slider .slider__nav {
    top: 51.3vw;
  }
}

.slider__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider__pagination button {
  width: 8px;
  height: 8px;
  background-color: var(--c-gray);
  border-radius: 50%;
  opacity: 0.4;
}
.slider__pagination button.is-active {
  opacity: 1;
}

/* ---------------------------------------------------------
   11. アコーディオン（共通）
--------------------------------------------------------- */
.accordion__panel {
  overflow: hidden;
}

.accordion__trigger,
.accordion__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  width: 84.6vw;
  height: 8.7vw;
  margin-inline: auto;
  font-family: var(--ff-sans);
  font-size: 4.1vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gray);
  border-radius: 4.4vw;
}
.accordion__trigger {
  margin-bottom: 7.7vw;
}
.accordion__close {
  margin-top: 7.7vw;
}

.accordion__icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  border-radius: 50%;
}
.accordion__icon::before,
.accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-color: var(--c-gray);
  transform: translate(-50%, -50%);
}
.accordion__icon::before {
  width: 0.5em;
  height: 0.14em;
}
.accordion__icon::after {
  width: 0.14em;
  height: 0.5em;
}
.accordion__icon--minus::after,
.accordion.is-open > .accordion__trigger .accordion__icon::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .accordion__trigger,
  .accordion__close {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .accordion__panel {
    display: none;
  }
  .accordion.is-open > .accordion__panel {
    display: block;
  }
}

/* ご利用案内はPC/SPともにアコーディオン */
.accordion--guide > .accordion__panel {
  display: none;
}
.accordion--guide.is-open > .accordion__panel {
  display: block;
}

/* ---------------------------------------------------------
   12. 症例
--------------------------------------------------------- */
.cases .inner {
  font-family: var(--ff-sans);
}

.cases__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(81.8vw, 900px);
  margin-inline: auto;
  margin-bottom: min(3.2vw, 35px);
}
.cases__tabs li {
  width: min(15.8vw, 174px);
  color: var(--c-gold);
  text-align: center;
  border: 1px solid var(--c-gold);
  border-radius: min(1.5vw, 17px);
}
.cases__tabs li.is-active {
  color: #fff;
  pointer-events: none;
  background-color: var(--c-gold);
}
.cases__tabs button {
  display: block;
  width: 100%;
  padding: min(0.8vw, 9px) 0;
  font-family: inherit;
  font-size: min(1.5vw, 16px);
}

@media screen and (min-width: 768px) {
  .cases__slider {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
  }
}

.cases__head {
  position: relative;
}
.cases__title {
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .cases__title {
    height: min(4.5vw, 50px);
    margin-bottom: min(2.7vw, 30px);
    font-size: min(2.4vw, 26px);
    line-height: min(4.5vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .cases__title {
    height: 10.3vw;
    margin-bottom: 5.1vw;
    font-size: 5.1vw;
    line-height: 10.3vw;
  }
}
.cases__profile {
  text-align: center;
  border: 1px solid;
  border-radius: 1em;
}
@media screen and (min-width: 768px) {
  .cases__profile {
    position: absolute;
    top: min(2.25vw, 25px);
    right: min(20vw, 220px);
    width: min(13.6vw, 150px);
    height: min(2.7vw, 30px);
    font-size: min(1.6vw, 18px);
    line-height: min(2.7vw, 30px);
    color: #fff;
    border-color: #fff;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .cases__profile {
    width: 38.5vw;
    height: 7.7vw;
    margin-inline: auto;
    margin-bottom: 5.1vw;
    font-size: 4.6vw;
    line-height: 7.7vw;
    color: var(--c-gold);
    border-color: var(--c-gold);
  }
}

.cases__body {
  display: flex;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cases__body {
    width: min(74.5vw, 820px);
    justify-content: space-between;
    margin-bottom: min(2.7vw, 30px);
  }
  .cases__photo {
    flex-shrink: 0;
    width: min(36.4vw, 400px);
  }
  .cases__spec {
    flex-shrink: 0;
    width: min(36.4vw, 400px);
  }
}
@media screen and (max-width: 767px) {
  .cases__body {
    flex-direction: column;
    align-items: center;
    width: 89.7vw;
    margin-bottom: 7.7vw;
  }
  .cases__photo {
    width: 67.4vw;
    margin-bottom: 7.7vw;
  }
}

.cases__spec dt {
  padding-bottom: 5px;
  padding-left: 10px;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
}
.cases__spec dd {
  padding: 0 10px;
  font-weight: 400;
  text-align: justify;
}
.cases__spec dd:not(:last-of-type) {
  margin-bottom: min(1.8vw, 20px);
}
@media screen and (min-width: 768px) {
  .cases__spec dt {
    font-size: min(1.6vw, 18px);
  }
  .cases__spec dd {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .cases__spec dd:not(:last-of-type) {
    margin-bottom: 5.1vw;
  }
}

.cases__slider .accordion {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cases__slider .accordion {
    width: 89.7vw;
  }
}

.cases__detail > dt {
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .cases__detail > dt {
    height: min(3.2vw, 35px);
    margin-bottom: min(1.8vw, 20px);
    font-size: min(1.8vw, 20px);
    line-height: min(3.2vw, 35px);
  }
}
@media screen and (max-width: 767px) {
  .cases__detail > dt {
    height: 7.7vw;
    margin-bottom: 2.6vw;
    font-size: 3.8vw;
    line-height: 7.7vw;
  }
}
.cases__detail > dd {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cases__detail > dd {
    padding: 0 min(0.9vw, 10px);
    line-height: min(2.7vw, 30px);
  }
  .cases__detail > dd:not(:last-of-type) {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .cases__detail > dd:not(:last-of-type) {
    margin-bottom: 7.7vw;
  }
}
.cases__detail > dd > small {
  display: block;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .cases__detail > dd > small {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .cases__detail > dd > small {
    font-size: 3.1vw;
  }
}

.cases__detail table {
  width: 100%;
}
.cases__detail table:last-of-type {
  margin-top: min(1.8vw, 20px);
}
.cases__detail caption {
  color: var(--c-gold);
  background-color: var(--c-bg-gray2);
}
@media screen and (min-width: 768px) {
  .cases__detail caption {
    height: min(3.3vw, 36px);
    padding-left: min(1.1vw, 12px);
    margin-bottom: min(1.1vw, 12px);
    font-size: min(1.5vw, 16px);
    line-height: min(3.3vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .cases__detail caption {
    height: 7.7vw;
    padding-left: 1.6vw;
    margin-bottom: 3.1vw;
    font-size: 3.8vw;
    line-height: 7.7vw;
  }
}
.cases__detail thead th {
  font-weight: 700;
}
.cases__detail thead th:first-of-type {
  width: 35%;
}
.cases__detail thead th:nth-of-type(2) {
  width: 20%;
  text-align: center;
}
.cases__detail thead th:last-of-type {
  width: 45%;
}
@media screen and (min-width: 768px) {
  .cases__detail thead th {
    font-size: min(1.3vw, 14px);
  }
  .cases__detail thead th:last-of-type {
    padding-right: 5em;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .cases__detail thead th {
    font-size: 3.1vw;
  }
  .cases__detail thead th:last-of-type {
    text-align: center;
  }
}
.cases__detail tbody td:first-of-type {
  width: 35%;
}
.cases__detail tbody td:nth-of-type(2) {
  width: 20%;
  text-align: center;
}
.cases__detail tbody td:last-of-type {
  width: 45%;
  text-align: right;
}
.cases__detail tbody tr:not(:last-of-type) {
  border-bottom: 1px dotted var(--c-line);
}
.cases__detail tbody small {
  display: inline;
}
@media screen and (min-width: 768px) {
  .cases__detail tbody td {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .cases__detail tbody td {
    padding: 2.6vw 0;
    font-size: 3.6vw;
  }
  .cases__detail tbody small {
    font-size: 2.6vw;
  }
}

.cases__notice {
  width: 100%;
}
.cases__notice dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cases__notice dt {
    margin-bottom: min(1.4vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .cases__notice dt {
    margin-bottom: 3.3vw;
    font-size: 3.8vw;
  }
}
.cases__notice ul li {
  padding-right: 2em;
  margin-left: 1em;
  text-align: justify;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .cases__notice ul li {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .cases__notice ul li {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

/* ---------------------------------------------------------
   13. 人気の施術部位
--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .popular .inner {
    max-width: 1000px;
  }
}

.popular__columns {
  display: flex;
}
@media screen and (max-width: 767px) {
  .popular__columns {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .popular__col {
    width: 50%;
  }
}
.popular__col--gold {
  background-color: var(--c-bg-gold);
}
.popular__col--navy {
  background-color: var(--c-bg-navy);
}
.popular__col > img {
  width: 100%;
}

.popular__col dl {
  font-family: var(--ff-sans);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .popular__col dl {
    width: min(40.7vw, 448px);
    margin-top: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .popular__col dl {
    width: 89.7vw;
    margin-top: 7.7vw;
  }
}

.popular__col dt {
  font-weight: 700;
  color: var(--c-navy);
  background: linear-gradient(-90deg, var(--c-bg-navy) 0%, #fff 40%, #fff 100%);
}
.popular__col--gold dt {
  color: var(--c-gold);
  background: linear-gradient(-90deg, var(--c-bg-gold) 0%, #fff 40%, #fff 100%);
}
@media screen and (min-width: 768px) {
  .popular__col dt {
    height: min(4vw, 44px);
    padding-left: min(1.1vw, 12px);
    margin-bottom: min(0.9vw, 10px);
    font-size: min(1.8vw, 20px);
    line-height: min(4vw, 44px);
  }
}
@media screen and (max-width: 767px) {
  .popular__col dt {
    height: 8.7vw;
    padding-left: 1.3vw;
    margin-bottom: 2.6vw;
    font-size: 4.6vw;
    line-height: 8.7vw;
  }
}
.popular__col dd {
  font-weight: 400;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .popular__col dd {
    padding: 0 min(1.1vw, 12px);
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .popular__col dd {
    padding: 0 2.6vw;
    margin-bottom: 7.7vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

/* 4つの特長（帯） */
.popular__merit {
  position: relative;
}
@media screen and (min-width: 768px) {
  .popular__merit {
    margin-top: min(4.5vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .popular__merit {
    margin-top: 10.3vw;
  }
}

@media screen and (min-width: 768px) {
  .popular__merit-bg {
    height: min(55.5vw, 610px);
    overflow: hidden;
  }
  .popular__merit-bg picture,
  .popular__merit-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.popular__merit-bg img {
  width: 100%;
}

.popular__merit-body {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .popular__merit-body {
    left: min(6vw, 60px);
  }
}
@media screen and (max-width: 767px) {
  .popular__merit-body {
    left: 5.1vw;
  }
}

.popular__merit dt {
  padding-right: 0.5em;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.popular__merit dt:nth-of-type(odd) {
  background-image: none;
}
.popular__merit dt:nth-of-type(even) {
  background-image: none;
}
@media screen and (min-width: 768px) {
  .popular__merit dt {
    width: min(16vw, 176px);
    height: min(3.5vw, 38px);
    margin-bottom: min(0.7vw, 8px);
    font-size: min(1.8vw, 20px);
    line-height: min(3.5vw, 38px);
  }
}
@media screen and (max-width: 767px) {
  .popular__merit dt {
    width: 45.1vw;
    height: 9.7vw;
    margin-bottom: 2.1vw;
    font-size: 5.1vw;
    line-height: 9.7vw;
  }
}
.popular__merit dd {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: #fff;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .popular__merit dd {
    width: min(36.4vw, 400px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
  .popular__merit dd:not(:last-of-type) {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .popular__merit dd {
    width: 89.7vw;
    font-size: 4.1vw;
    line-height: 1.4;
  }
  .popular__merit dd:first-of-type,
  .popular__merit dd:nth-of-type(2) {
    width: 48.7vw;
  }
  .popular__merit dd:not(:last-of-type) {
    margin-bottom: 7.7vw;
  }
}

/* ---------------------------------------------------------
   14. 選ばれている理由
--------------------------------------------------------- */
.reason {
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .reason {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reason:not(:last-of-type) {
    margin-bottom: min(7.3vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .reason {
    width: 84.6vw;
    margin-top: 11.5vw;
  }
  .reason:not(:last-of-type) {
    margin-bottom: 16.4vw;
  }
}

.reason__badge--sp {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .reason__badge--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .reason__badge--sp {
    top: -11.5vw;
    right: 1.5vw;
    width: 20.5vw;
    height: 20.5vw;
  }
  .reason:nth-of-type(odd) .reason__badge--sp {
    right: auto;
    left: 1.5vw;
  }
}

@media screen and (min-width: 768px) {
  .reason__figure {
    flex-shrink: 0;
    width: min(47.6vw, 524px);
  }
}
@media screen and (max-width: 767px) {
  .reason__figure {
    margin-bottom: 3.6vw;
  }
}
.reason__figure img {
  width: 100%;
}

.reason__figure--twin {
  display: flex;
}
@media screen and (min-width: 768px) {
  .reason__figure--twin {
    flex-direction: column;
    justify-content: space-between;
    width: min(40.9vw, 450px);
  }
  .reason__figure--twin figure {
    width: 48%;
  }
  .reason__figure--twin figure:last-of-type {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .reason__figure--twin {
    align-items: center;
    justify-content: space-between;
  }
  .reason__figure--twin figure {
    width: 48%;
  }
}
.reason__figure--twin figcaption {
  padding-top: 0.3em;
  font-family: var(--ff-sans);
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason__figure--twin figcaption {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .reason__figure--twin figcaption {
    font-size: 3.1vw;
  }
}

.reason__body {
  color: var(--c-text-dark);
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .reason__body {
    position: relative;
    flex-shrink: 0;
    width: min(60vw, 660px);
    padding: min(1.8vw, 20px) min(3.6vw, 40px);
    margin-left: min(-13.6vw, -150px);
    border-radius: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .reason__body {
    padding: 3.1vw 3.8vw;
    border-radius: 4.1vw;
  }
}

.reason__title {
  font-weight: 700;
  color: var(--c-gold);
  text-align: left;
  border-bottom: 1px solid var(--c-gold);
}
.reason__title span {
  font-weight: 400;
  color: var(--c-text-dark);
}
.reason__title span:first-of-type {
  display: block;
}
.reason__title .reason__title-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .reason__title {
    padding-bottom: min(0.9vw, 10px);
    margin-bottom: min(0.9vw, 10px);
    font-size: min(2.9vw, 32px);
    line-height: 1.3;
  }
  .reason__title span {
    font-size: min(2.2vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .reason__title {
    padding-bottom: 1.3vw;
    margin-bottom: 1.3vw;
    font-size: 8.2vw;
  }
  .reason__title span {
    font-size: 6.2vw;
  }
}

.reason__text {
  font-family: var(--ff-sans);
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .reason__text {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .reason__text {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.reason__list {
  font-family: var(--ff-sans);
  margin-top: 1em;
}
.reason__list dt {
  padding-left: 4px;
  margin-bottom: 0.5em;
  color: var(--c-navy);
  border-left: 4px solid var(--c-navy);
}
.reason__list dd:first-of-type {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .reason__list dt,
  .reason__list dd {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .reason__list dt,
  .reason__list dd {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.reason__badge--pc {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .reason__badge--pc {
    top: min(-3.6vw, -40px);
    right: min(3.6vw, 40px);
    width: min(7.3vw, 80px);
    height: min(7.3vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .reason__badge--pc {
    display: none;
  }
}

/* ---------------------------------------------------------
   15. 料金・種類
--------------------------------------------------------- */
.pricing__figure {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pricing__figure {
    width: min(38.4vw, 422px);
    margin-bottom: min(4.1vw, 45px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__figure {
    width: 88.7vw;
    margin-bottom: 4.1vw;
  }
}
.pricing__figure figcaption {
  font-family: var(--ff-sans);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pricing__figure figcaption {
    margin-bottom: min(2.5vw, 27px);
    font-size: min(1.8vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__figure figcaption {
    margin-bottom: 3.1vw;
    font-size: 3.6vw;
  }
}

.pricing__name {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pricing__name {
    font-size: min(2.9vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__name {
    font-size: 6.2vw;
  }
}

.pricing__price {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pricing__price {
    font-size: min(4.1vw, 45px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__price {
    margin-bottom: 2.1vw;
    font-size: 7.7vw;
  }
}

.pricing__notice {
  font-family: var(--ff-sans);
  color: var(--c-text-dark);
  text-align: center;
}
.pricing__notice::first-line {
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .pricing__notice {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.1vw, 12px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .pricing__notice {
    margin-bottom: 3.3vw;
    font-size: 3.1vw;
    line-height: 1.5;
  }
}

.pricing__summary {
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .pricing__summary {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .pricing__summary {
    width: 84.6vw;
    margin-inline: auto;
    margin-bottom: 5.1vw;
    font-size: 3.6vw;
    line-height: 1.7;
    text-align: justify;
  }
}

.pricing .accordion__panel {
  font-family: var(--ff-sans);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pricing .accordion__panel {
    width: min(78.2vw, 860px);
  }
}
@media screen and (max-width: 767px) {
  .pricing .accordion__panel {
    width: 89.7vw;
  }
}

.pricing__table {
  width: 100%;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .pricing__table {
    margin-bottom: min(0.9vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__table {
    margin-bottom: 1.3vw;
  }
}
.pricing__table thead {
  color: #fff;
  background-color: var(--c-navy);
}
.pricing__table th,
.pricing__table td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #fff;
}
.pricing__table th {
  font-weight: 700;
  text-align: center;
}
.pricing__table th span {
  display: inline-block;
}
.pricing__table tbody tr:nth-of-type(odd) {
  background-color: var(--c-bg-gray);
}
.pricing__table tbody tr:nth-of-type(even) {
  background-color: var(--c-bg-gray2);
}
.pricing__table td:nth-child(1) {
  text-align: left;
}
.pricing__table th:nth-child(2),
.pricing__table td:nth-child(2),
.pricing__table th:nth-child(3),
.pricing__table td:nth-child(3) {
  text-align: center;
}
.pricing__table td strong {
  display: block;
  font-weight: 700;
}
.pricing__table td small {
  display: block;
}
@media screen and (min-width: 768px) {
  .pricing__table th:nth-child(1),
  .pricing__table td:nth-child(1) {
    width: 63%;
  }
  .pricing__table th:nth-child(2),
  .pricing__table td:nth-child(2) {
    width: 17%;
  }
  .pricing__table tbody td {
    font-size: min(1.5vw, 16px);
    line-height: 1.5;
  }
  .pricing__table td strong {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__table th {
    font-size: 3.6vw;
  }
  .pricing__table th:nth-child(1),
  .pricing__table td:nth-child(1) {
    width: 40%;
    text-align: left;
  }
  .pricing__table tbody td {
    font-size: 3.3vw;
    line-height: 1.3;
  }
  .pricing__table td strong {
    font-size: 3.6vw;
  }
  .pricing__table td small {
    font-size: 80%;
  }
  .pricing__table--narrow tbody td:nth-child(1) {
    width: 53%;
  }
}

.pricing__caption {
  padding-left: 4px;
  font-weight: 700;
  color: var(--c-navy);
  border-left: 4px solid var(--c-navy);
}
@media screen and (min-width: 768px) {
  .pricing__caption {
    margin-top: min(3.6vw, 40px);
    margin-bottom: min(1.9vw, 21px);
    font-size: min(2.2vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__caption {
    margin-top: 7.7vw;
    margin-bottom: 3.3vw;
    font-size: 4.6vw;
  }
}

.pricing .accordion__panel .note {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .pricing .accordion__panel .note {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .pricing .accordion__panel .note {
    font-size: 3.6vw;
  }
}

.pricing__notes {
  margin-top: 1.5em;
}
.pricing__notes li {
  margin-left: 1em;
  text-align: justify;
  text-indent: -1em;
}
.pricing__notes li:nth-of-type(2),
.pricing__notes li:nth-of-type(5),
.pricing__notes li:last-of-type {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .pricing__notes li {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .pricing__notes li {
    font-size: 3.6vw;
    line-height: 1.4;
  }
}

.pricing__agent-title {
  margin-inline: auto;
  font-family: var(--ff-sans);
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .pricing__agent-title {
    width: min(78.2vw, 860px);
    height: min(4.7vw, 52px);
    margin-top: min(3.6vw, 40px);
    margin-bottom: min(2.7vw, 30px);
    font-size: min(2.2vw, 24px);
    line-height: min(4.7vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .pricing__agent-title {
    width: 89.7vw;
    height: 11.8vw;
    margin-top: 7.7vw;
    margin-bottom: 5.1vw;
    font-size: 5.1vw;
    line-height: 11.8vw;
  }
}

.pricing__agent {
  display: flex;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pricing__agent {
    width: min(78.2vw, 860px);
    justify-content: space-between;
  }
  .pricing__agent-img {
    flex-shrink: 0;
    width: min(34.5vw, 380px);
  }
  .pricing__agent-text {
    flex-shrink: 0;
    width: min(39.1vw, 430px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .pricing__agent {
    flex-direction: column;
    align-items: center;
    width: 89.7vw;
  }
  .pricing__agent-img {
    width: 84.6vw;
    margin-bottom: 5.1vw;
  }
  .pricing__agent-text {
    width: 84.6vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}
.pricing__agent-text {
  font-family: var(--ff-sans);
  font-weight: 400;
  text-align: justify;
}

/* ---------------------------------------------------------
   16. FAQ
--------------------------------------------------------- */
.faq {
  background-color: var(--c-bg-gray);
}

/* ---------------------------------------------------------
   医療ローン（定額プラン）
--------------------------------------------------------- */
.loan {
  background-color: var(--c-bg-gray);
}
.loan__heading {
  font-family: var(--ff-mincho);
  font-weight: 600;
  color: var(--c-navy);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .loan__heading {
    margin-bottom: min(2.5vw, 34px);
    font-size: min(2.6vw, 29px);
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .loan__heading {
    margin-bottom: 6.1vw;
    font-size: 5.1vw;
    line-height: 1.7;
  }
}

.loan__banner {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline: auto;
  overflow: hidden;
  color: #fff;
  background-color: var(--c-navy);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(1, 19, 136, 0.15);
}
@media screen and (min-width: 768px) {
  .loan__banner {
    width: min(78.2vw, 860px);
    height: min(9.5vw, 105px);
    margin-bottom: min(3.6vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .loan__banner {
    width: 89.7vw;
    margin-bottom: 6.1vw;
    flex-direction: column;
    align-items: stretch;
  }
}
.loan__slant {
  position: absolute;
  inset: 4px 4px 4px auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .loan__slant {
    width: 50%;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 7px 7px 0;
  }
}
@media screen and (max-width: 767px) {
  .loan__slant {
    inset: auto 4px 4px 4px;
    width: auto;
    height: 12.8vw;
    border-radius: 0 0 7px 7px;
  }
}
.loan__banner-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .loan__banner-left {
    gap: min(2vw, 22px);
    padding-left: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .loan__banner-left {
    gap: 4.1vw;
    padding: 5.1vw 4.6vw;
  }
}
.loan__shield {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .loan__shield {
    width: min(3.6vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .loan__shield {
    width: 9.2vw;
  }
}
.loan__banner-sub {
  font-family: var(--ff-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .loan__banner-sub {
    margin-bottom: 0.35em;
    font-size: min(1.4vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .loan__banner-sub {
    margin-bottom: 0.4em;
    font-size: 3.3vw;
  }
}
.loan__banner-main {
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .loan__banner-main {
    font-size: min(2.5vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .loan__banner-main {
    font-size: 5.6vw;
  }
}
.loan__banner-right {
  position: relative;
  z-index: 1;
  font-family: var(--ff-sans);
  font-weight: 700;
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .loan__banner-right {
    flex: 1;
    padding-left: min(4.5vw, 50px);
    font-size: min(1.7vw, 19px);
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 767px) {
  .loan__banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12.8vw;
    font-size: 3.8vw;
    text-align: center;
    margin-bottom: 4px;
  }
}

.loan__banner--mv {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .loan__banner--mv {
    width: min(60vw, 860px);
    margin-top: min(3.4vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .mv__foot {
    display: flex;
    flex-direction: column;
  }
  .loan__banner--mv {
    order: 2;
    margin-top: 5.1vw;
  }
  .mv__price.sp {
    order: 1;
  }
}

.loan__grid {
  display: grid;
  margin-inline: auto;
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .loan__grid {
    grid-template-columns: 1fr 1fr;
    width: min(78.2vw, 860px);
    gap: min(3.6vw, 40px);
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .loan__grid {
    width: 89.7vw;
    gap: 6.1vw;
  }
}

.loan__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .loan__text {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .loan__text {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}
.loan__text em {
  font-style: normal;
  font-weight: 700;
  color: var(--c-navy);
}
.loan__hr {
  height: 1px;
  margin: min(1.8vw, 20px) 0;
  background-color: #d9d9d9;
  border: 0;
}

.loan__photo {
  margin-top: min(2.2vw, 24px);
}
@media screen and (max-width: 767px) {
  .loan__photo {
    margin-top: 5.1vw;
  }
}
.loan__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.loan__card {
  padding: min(2.7vw, 30px);
  background-color: #fff;
  border: 1px solid var(--c-gold);
}
@media screen and (max-width: 767px) {
  .loan__photo {
    margin-top: min(2.2vw, 24px);
  }
  @media screen and (max-width: 767px) {
    .loan__photo {
      margin-top: 5.1vw;
    }
  }
  .loan__photo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .loan__card {
    padding: 5.1vw 4.6vw;
  }
}
.loan__badge {
  display: block;
  padding: 0.5em;
  margin-bottom: 1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .loan__badge {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .loan__badge {
    font-size: 3.8vw;
  }
}
.loan__example {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .loan__example {
    font-size: min(1.3vw, 14px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .loan__example {
    font-size: 3.3vw;
    line-height: 1.7;
  }
}
.loan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .loan__price {
    margin: min(1.4vw, 15px) 0;
  }
}
@media screen and (max-width: 767px) {
  .loan__price {
    margin: 3.6vw 0;
  }
}
.loan__price-pre,
.loan__price-suf {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .loan__price-pre,
  .loan__price-suf {
    font-size: min(1.8vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .loan__price-pre,
  .loan__price-suf {
    font-size: 4.6vw;
  }
}
.loan__price-num {
  font-family: var(--ff-poppins);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .loan__price-num {
    font-size: min(5vw, 55px);
  }
}
@media screen and (max-width: 767px) {
  .loan__price-num {
    font-size: 12.3vw;
  }
}

.loan__list {
  display: flex;
  flex-direction: column;
}
.loan__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
  border-bottom: 1px dotted #cfcfcf;
}
.loan__list li:first-child {
  border-top: 1px dotted #cfcfcf;
}
@media screen and (min-width: 768px) {
  .loan__list li {
    font-size: min(1.4vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .loan__list li {
    font-size: 3.6vw;
  }
}
.loan__list b {
  font-weight: 500;
  color: var(--c-text-dark);
}
.loan__list span {
  font-weight: 700;
}

.loan__note {
  display: flex;
  gap: 0.6em;
  margin-top: 1.2em;
  color: var(--c-text-dark);
}
@media screen and (min-width: 768px) {
  .loan__note {
    font-size: min(1.1vw, 12px);
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .loan__note {
    font-size: 3.1vw;
    line-height: 1.6;
  }
}
.loan__note-mark {
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
  border-radius: 50%;
}

.faq__heading {
  font-weight: 700;
  color: var(--c-navy);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__heading {
    margin-bottom: min(2.5vw, 40px);
    font-size: min(3.1vw, 34px);
  }
}
@media screen and (max-width: 767px) {
  .faq__heading {
    margin-bottom: 5.1vw;
    font-size: 6.9vw;
  }
}

.faq__item {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .faq__item {
    width: min(78.2vw, 860px);
  }
  .faq__item:not(:last-of-type) {
    margin-bottom: min(3.6vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .faq__item {
    width: 89.7vw;
  }
  .faq__item:not(:last-of-type) {
    margin-bottom: 5.1vw;
  }
}

.faq__item dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px;
  font-weight: 400;
  color: #fff;
  background-color: var(--c-navy);
  transition: background-color 0.3s ease-in-out;
}
.faq__item dt.is-open {
  background-color: var(--c-navy-dark);
}
@media screen and (max-width: 767px) {
  .faq__item dt {
    padding-right: 14.1vw;
    font-size: 3.8vw;
    line-height: 1.3;
    cursor: pointer;
  }
}
.faq__icon {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq__icon {
    width: min(2.2vw, 24px);
    margin-right: min(2vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 6.2vw;
    margin-right: 4.1vw;
  }
}

.faq__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 24px;
  background: none;
  transition: transform 0.3s ease;
  transform: translateY(-50%);
}
.faq__item dt.is-open .faq__toggle {
  transform: translateY(-50%) rotate(180deg);
}

.faq__item dd {
  text-align: justify;
  border: 1px solid var(--c-gold);
}
@media screen and (min-width: 768px) {
  .faq__item dd {
    padding: min(1.8vw, 20px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .faq__item dd {
    display: none;
    padding: 3.8vw 5.1vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
  .faq__item dd.is-open {
    display: block;
  }
}
.faq__icon--a {
  display: block;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .faq__icon--a {
    width: min(1.7vw, 19px);
    margin-bottom: min(0.9vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .faq__icon--a {
    width: 4.9vw;
    margin-bottom: 2.6vw;
  }
}

/* ---------------------------------------------------------
   17. 施術の流れ
--------------------------------------------------------- */
.procedure {
  background-color: var(--c-bg-navy);
}
.procedure__step {
  margin-inline: auto;
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .procedure__step {
    width: min(78.2vw, 860px);
  }
}
@media screen and (max-width: 767px) {
  .procedure__step {
    width: 84.6vw;
  }
}

.procedure__step dt {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .procedure__step dt {
    margin-bottom: min(0.9vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .procedure__step dt {
    margin-bottom: 5.1vw;
  }
}

.procedure__num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-poppins);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  background-color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .procedure__num {
    width: min(6vw, 66px);
    height: min(6vw, 66px);
    font-size: min(2.5vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .procedure__num {
    width: 16.9vw;
    height: 16.9vw;
    font-size: 7.2vw;
  }
}

.procedure__step dt strong {
  font-weight: 700;
  color: var(--c-navy);
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .procedure__step dt strong {
    width: min(72.2vw, 794px);
    height: min(6vw, 66px);
    font-size: min(2.2vw, 24px);
    line-height: min(6vw, 66px);
  }
}
@media screen and (max-width: 767px) {
  .procedure__step dt strong {
    width: 67.7vw;
    height: 16.9vw;
    font-size: 5.1vw;
    line-height: 16.9vw;
  }
}

.procedure__step dd {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .procedure__step dd {
    padding-right: 1em;
    padding-left: min(6vw, 66px);
    margin-bottom: min(1.8vw, 20px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .procedure__step dd {
    margin-bottom: 5.1vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}
.procedure__step dd p strong {
  color: var(--c-red);
}
.procedure__step dd p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .procedure__step dd p.note {
    font-size: min(1.1vw, 12px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .procedure__step dd p.note {
    font-size: 3.1vw;
    line-height: 1.5;
  }
}

.procedure__step:not(:last-of-type)::after {
  display: block;
  color: var(--c-gold);
  text-align: center;
  content: "▼";
  transform: scaleX(1.5);
}
@media screen and (min-width: 768px) {
  .procedure__step:not(:last-of-type)::after {
    padding-left: min(4.2vw, 46px);
    margin-bottom: min(1.8vw, 20px);
    font-size: min(2vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  .procedure__step:not(:last-of-type)::after {
    padding-left: 11.8vw;
    margin-bottom: 5.1vw;
    font-size: 5.6vw;
  }
}

/* ---------------------------------------------------------
   18. 高見院長の紹介
--------------------------------------------------------- */
.profile .inner {
  font-family: var(--ff-sans);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .profile .inner {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .profile .inner {
    width: 84.6vw;
    font-size: 3.6vw;
  }
}

.profile__role,
.profile__name,
.profile__name-en,
.profile__position,
.profile__affiliation {
  font-family: var(--ff-serif);
}

@media screen and (min-width: 768px) {
  .profile__role {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .profile__role {
    font-size: 3.6vw;
  }
}

.profile__name {
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .profile__name {
    font-size: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__name {
    font-size: 7.7vw;
  }
}

.profile__name-en {
  margin-bottom: 1em;
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .profile__name-en {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .profile__name-en {
    font-size: 4.1vw;
  }
}

@media screen and (min-width: 768px) {
  .profile__position {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .profile__position {
    font-size: 3.6vw;
  }
}

.profile__affiliation {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .profile__affiliation {
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .profile__affiliation {
    font-size: 4.1vw;
  }
}

.profile__subheading {
  font-family: var(--ff-serif);
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .profile__subheading {
    font-size: min(1.6vw, 18px);
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .profile__subheading {
    font-size: 4.6vw;
    line-height: 1.3;
  }
}
.profile__subheading--bar {
  padding-left: 4px;
  font-family: var(--ff-sans);
  font-weight: 700;
  border-left: 4px solid var(--c-navy);
}
@media screen and (min-width: 768px) {
  .profile__subheading--bar {
    margin-bottom: min(1.4vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .profile__subheading--bar {
    margin-bottom: 3.8vw;
  }
}

.profile__text {
  font-weight: 400;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .profile__text {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .profile__text {
    margin-bottom: 7.7vw;
    font-size: 3.6vw;
  }
}
.profile__text > small {
  display: block;
  text-align: right;
}

.profile__qualification {
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .profile__qualification {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .profile__qualification {
    margin-bottom: 7.7vw;
    font-size: 3.6vw;
  }
}

@media screen and (min-width: 768px) {
  .profile__history {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__history {
    margin-bottom: 7.7vw;
  }
}
.profile__history dt {
  font-weight: 400;
}
.profile__history dd {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .profile__history dd {
    font-size: min(1.3vw, 14px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .profile__history dd {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.profile__lead {
  font-weight: 700;
}

.profile__pics {
  display: flex;
  justify-content: space-between;
}
.profile__pics--2 {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .profile__pics--2 {
    width: min(63.8vw, 702px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--2 {
    width: 100%;
    margin-bottom: 7.7vw;
  }
}
.profile__pics--2 li {
  width: 48%;
}

.profile__pic-single {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .profile__pic-single {
    width: min(23vw, 253px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pic-single {
    width: 33.1vw;
    margin-bottom: 7.7vw;
  }
}

@media screen and (max-width: 767px) {
  .profile__pics--award {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .profile__pics--award li:not(:last-of-type) {
    width: 29%;
    margin-bottom: min(2.7vw, 30px);
  }
  .profile__pics--award li:last-of-type {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--award li:not(:last-of-type) {
    width: 48%;
    margin-bottom: 7.7vw;
  }
  .profile__pics--award li:last-of-type {
    width: 100%;
  }
}
.profile__pics--award figcaption {
  padding-top: 0.5em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile__pics--award figcaption {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--award figcaption {
    font-size: 3.1vw;
  }
}

@media screen and (min-width: 768px) {
  .profile__pics--3 {
    width: min(57.5vw, 640px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--3 {
    margin-bottom: 7.7vw;
  }
}
.profile__pics--3 li {
  width: 32%;
}
.profile__pics--3 figcaption {
  padding-top: 0.5em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .profile__pics--3 figcaption {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--3 figcaption {
    font-size: 3.1vw;
  }
}

@media screen and (min-width: 768px) {
  .profile__pics--cert {
    width: min(76.4vw, 640px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--cert {
    flex-wrap: wrap;
    margin-bottom: 7.7vw;
  }
}
@media screen and (min-width: 768px) {
  .profile__pics--cert li {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--cert li {
    width: 48%;
    margin-bottom: 7.7vw;
  }
}
.profile__pics--cert figcaption {
  padding-top: 0.5em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .profile__pics--cert figcaption {
    font-size: min(1.1vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .profile__pics--cert figcaption {
    font-size: 3.1vw;
  }
}

/* ---------------------------------------------------------
   19. クリニックのご案内
--------------------------------------------------------- */
.clinic {
  background-color: var(--c-bg-gray);
}
@media screen and (min-width: 768px) {
  .clinic .inner {
    width: min(78.2vw, 860px);
  }
}
@media screen and (max-width: 767px) {
  .clinic .inner {
    width: 84.6vw;
  }
}

.clinic__subheading {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .clinic__subheading {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(2.2vw, 24px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .clinic__subheading {
    margin-bottom: 5.1vw;
    font-size: 4.6vw;
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {
  .clinic__slider {
    margin-bottom: min(2.7vw, 30px);
  }
  .clinic__slider .slider__viewport {
    overflow: visible;
  }
  .clinic__slider .slider__track {
    gap: 20px;
    transform: none !important;
  }
  .clinic__slider .slider__slide {
    flex: 1 1 0;
    width: auto;
  }
  .clinic__slider .slider__nav,
  .clinic__slider .slider__pagination {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .clinic__slider {
    margin-bottom: 7.7vw;
  }
  .clinic__slider .slider__nav {
    top: 50%;
    margin-top: -20px;
  }
}

.clinic__text {
  font-family: var(--ff-sans);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .clinic__text {
    margin-bottom: min(3.6vw, 40px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .clinic__text {
    margin-bottom: 5.1vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.clinic__map {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .clinic__map {
    padding-top: 19.77%;
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .clinic__map {
    padding-top: 62.42%;
    margin-bottom: 7.7vw;
  }
}
/* 口コミ評価の情報カードを表示域外へ追い出す */
.clinic__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 110px);
  border: 0;
}

.clinic__info {
  display: flex;
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .clinic__info {
    justify-content: flex-start;
  }
  .clinic__info li {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
  .clinic__info li:first-of-type {
    margin-right: 3em;
  }
}
@media screen and (max-width: 767px) {
  .clinic__info {
    flex-direction: column;
  }
  .clinic__info li {
    font-size: 3.6vw;
    line-height: 1.7;
  }
  .clinic__info li:first-of-type {
    margin-bottom: 2em;
  }
}

/* ---------------------------------------------------------
   20. ご利用案内
--------------------------------------------------------- */
.guide__trigger {
  display: block;
  position: relative;
  margin-inline: auto;
  color: #fff;
  background-color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .guide__trigger {
    width: min(78.2vw, 870px);
    height: min(6.4vw, 70px);
  }
}
@media screen and (max-width: 767px) {
  .guide__trigger {
    width: 84.6vw;
    height: 15.9vw;
  }
}

.guide__trigger-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 400;
  text-align: center;
  transform: translate(-50%, -50%);
}
.guide__trigger-text strong {
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .guide__trigger-text {
    font-size: min(1.5vw, 16px);
  }
  .guide__trigger-text strong {
    font-size: min(2vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  .guide__trigger-text {
    font-size: 3.6vw;
  }
  .guide__trigger-text strong {
    font-size: 4.1vw;
  }
}
.guide__trigger .accordion__icon {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.accordion--guide {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .accordion--guide {
    width: min(78.2vw, 870px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .accordion--guide {
    width: 84.6vw;
    margin-bottom: 7.7vw;
  }
}

.accordion--guide > .accordion__panel {
  padding-top: 1em;
  font-family: var(--ff-sans);
}
.accordion--guide .accordion__close {
  background-color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .accordion--guide .accordion__close {
    display: flex;
    width: min(30vw, 330px);
    height: 50px;
    font-size: 16px;
    border-radius: 25px;
  }
}

.guide__subheading {
  padding-left: 4px;
  color: var(--c-gold);
  border-left: 4px solid var(--c-gold);
}
@media screen and (min-width: 768px) {
  .guide__subheading {
    margin-bottom: min(2.1vw, 23px);
    font-size: min(1.6vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .guide__subheading {
    margin-bottom: 5.9vw;
    font-size: 4.6vw;
  }
}

.guide__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .guide__text {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .guide__text {
    margin-bottom: 7.7vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }
}
.accordion--guide > .accordion__panel strong {
  color: var(--c-red);
}

.guide__table {
  width: 100%;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .guide__table {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .guide__table {
    margin-bottom: 4vw;
  }
}
.guide__table caption {
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--c-gold);
}
@media screen and (min-width: 768px) {
  .guide__table caption {
    height: min(4.5vw, 50px);
    font-size: min(1.6vw, 18px);
    line-height: min(4.5vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .guide__table caption {
    height: 12.8vw;
    font-size: 4.1vw;
    line-height: 12.8vw;
  }
}
.guide__table td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #fff;
}
.guide__table tbody tr:nth-of-type(odd) {
  background-color: var(--c-bg-gray);
}
.guide__table tbody tr:nth-of-type(even) {
  background-color: var(--c-bg-gray2);
}
.guide__table td:nth-child(1) {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .guide__table td {
    font-size: min(1.5vw, 16px);
    line-height: 1.5;
  }
  .guide__table td:nth-child(1) {
    text-align: left;
  }
  .guide__table td:nth-child(2) {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .guide__table td {
    font-size: 3.3vw;
    line-height: 1.3;
  }
  .guide__table td:nth-child(1) {
    text-align: center;
  }
}

.guide__note {
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .guide__note {
    margin-bottom: min(2.7vw, 30px);
    font-size: min(1.3vw, 14px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .guide__note {
    margin-bottom: 7.7vw;
    font-size: 3.1vw;
    line-height: 1.7;
  }
}

.guide__sectiontitle {
  font-weight: 700;
  color: var(--c-navy);
}
@media screen and (min-width: 768px) {
  .guide__sectiontitle {
    margin-bottom: min(1.2vw, 13px);
    font-size: min(1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .guide__sectiontitle {
    margin-bottom: 3.6vw;
    font-size: 3.8vw;
  }
}

.guide__tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .guide__tablewrap {
    margin-bottom: min(1.6vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .guide__tablewrap {
    margin-bottom: 4vw;
  }
}
.guide__table--plan {
  min-width: 620px;
  margin-bottom: 0;
}
.guide__table--plan th {
  padding: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: var(--c-navy);
  border: 1px solid #fff;
}
.guide__table--plan td {
  text-align: left;
}
.guide__table--plan td:nth-child(1) {
  width: 28%;
}
@media screen and (min-width: 768px) {
  .guide__table--plan th {
    font-size: min(1.4vw, 15px);
  }
  .guide__table--plan td {
    font-size: min(1.35vw, 14px);
    line-height: 1.7;
  }
  .guide__table--plan td:nth-child(2) {
    width: 14%;
  }
}
@media screen and (max-width: 767px) {
  .guide__table--plan th {
    font-size: 3.1vw;
  }
  .guide__table--plan td {
    font-size: 3.1vw;
    line-height: 1.6;
    text-align: left;
  }
  .guide__table--plan td:nth-child(1) {
    text-align: left;
  }
}

.guide__flow {
  counter-reset: flow;
}
@media screen and (min-width: 768px) {
  .guide__flow {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .guide__flow {
    margin-bottom: 7.7vw;
  }
}
.guide__flow li {
  position: relative;
  counter-increment: flow;
  padding-left: 2.6em;
}
.guide__flow li:not(:last-of-type) {
  margin-bottom: 1em;
}
.guide__flow li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: block;
  width: 1.9em;
  height: 1.9em;
  font-family: var(--ff-poppins);
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1.9em;
  color: #fff;
  text-align: center;
  content: counter(flow);
  background-color: var(--c-gold);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .guide__flow li {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .guide__flow li {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}
.guide__flow .ttl {
  display: block;
  font-weight: 700;
  color: var(--c-navy);
}
.guide__flow .guide__inlinenote {
  display: block;
  color: var(--c-text-dark);
}
@media screen and (min-width: 768px) {
  .guide__flow .guide__inlinenote {
    font-size: min(1.3vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .guide__flow .guide__inlinenote {
    font-size: 3.1vw;
  }
}

@media screen and (min-width: 768px) {
  .guide__list {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .guide__list {
    margin-bottom: 7.7vw;
  }
}
.guide__list li {
  margin-left: 1em;
  text-indent: -1em;
}
.guide__list li:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .guide__list li {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .guide__list li {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

@media screen and (min-width: 768px) {
  .guide__def {
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .guide__def {
    margin-bottom: 7.7vw;
  }
}
@media screen and (min-width: 768px) {
  .guide__def dd {
    font-size: min(1.5vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .guide__def dd {
    font-size: 3.6vw;
    line-height: 1.7;
  }
}

.guide__notes {
  margin-inline: auto;
  font-family: var(--ff-sans);
}
@media screen and (min-width: 768px) {
  .guide__notes {
    width: min(78.2vw, 870px);
    margin-bottom: min(2.7vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .guide__notes {
    width: 84.6vw;
    margin-bottom: 7.7vw;
  }
}
.guide__notes li {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .guide__notes li {
    font-size: min(1.3vw, 14px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .guide__notes li {
    font-size: 3.1vw;
    line-height: 1.7;
  }
}

/* ---------------------------------------------------------
   21. CTA（セクション間）
--------------------------------------------------------- */
.cta {
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 1.9vw 0;
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 6.4vw;
    padding-bottom: 5.1vw;
    background-image: none;
  }
}
.cta--plain {
  padding: 0;
  background-image: none;
}

.cta__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta__head {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .cta__head {
    margin-bottom: 4.1vw;
  }
}

@media screen and (min-width: 768px) {
  .cta__bar {
    height: 4.4vw;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .cta__bar {
    height: 24.6vw;
    width: auto;
  }
}

.cta__title {
  text-align: center;
  color: var(--c-text-dark);
}
.cta__title > span {
  display: block;
}
.cta__title > strong {
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 1.8vw;
  }
  .cta__title > span {
    height: 1em;
    margin-bottom: 0.8vw;
    font-size: 2vw;
    line-height: 1em;
  }
  .cta__title > span > small {
    font-size: 1.6vw;
  }
  .cta__title > small {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 5.6vw;
  }
  .cta__title > span {
    font-size: 6.7vw;
  }
  .cta__title > small {
    display: block;
    font-size: 4.6vw;
  }
}

.cta__buttons {
  display: flex;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta__buttons {
    width: 68.75vw;
    align-items: center;
    justify-content: space-between;
  }
  .cta__buttons li {
    width: 21.375vw;
  }
}
@media screen and (max-width: 767px) {
  .cta__buttons {
    flex-direction: column;
    width: 88.7vw;
    margin-bottom: 3.8vw;
  }
  .cta__buttons li {
    width: 100%;
  }
  .cta__buttons li:not(:last-of-type) {
    margin-bottom: 3.1vw;
  }
}
.cta__buttons a {
  display: block;
}
.cta__buttons img {
  width: 100%;
}

/* ---------------------------------------------------------
   22. フッター / 固定CTA / トップへ戻る
--------------------------------------------------------- */
.footer {
  color: #fff;
  text-align: center;
  background-color: var(--c-navy);
}
.footer__logo {
  margin-inline: auto;
}
.footer__copy {
  font-family: var(--ff-serif);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: min(1.2vw, 13px) 0;
  }
  .footer__logo {
    width: min(19.8vw, 218px);
    margin-bottom: min(1.2vw, 13px);
  }
  .footer__copy {
    font-size: min(0.9vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 3.3vw;
    padding-bottom: 2.1vw;
  }
  .footer__logo {
    width: 55.9vw;
    margin-bottom: 3.3vw;
  }
  .footer__copy {
    font-size: 2.6vw;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: 17.9vw;
  }
  .fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 17.9vw;
    padding: 2.6vw 4.1vw;
    background: #fff;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.16);
  }
  .fixed-cta li a img {
    width: 29.7vw;
  }
  .fixed-cta__tel a {
    display: block;
    position: relative;
  }
  .fixed-cta__tel a > span {
    position: absolute;
    top: -8px;
    right: 0;
    left: 0;
    display: grid;
    width: 104px;
    height: 18px;
    margin: 0 auto;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--c-navy);
    background: #fff;
    border: 1px solid var(--c-navy);
    border-radius: 18px;
    place-content: center;
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 1000;
  width: 48px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.back-to-top.is-visible {
  visibility: visible;
  opacity: 0.7;
}

/* ===== 取り込み時の調整 ===== */
.lp-root {
  overflow-x: hidden;
}

/* 未提供の背景画像の代替（実サイトから採色） */
.mv__foot {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__foot {
    background-image: url("assets/images/images-063.webp");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
}
.anchor {
  background-color: #fbfbfb;
}
.cta {
  background-color: #eef2f6;
  background-image: radial-gradient(
    130% 105% at 50% 50%,
    #f7f9fb 0%,
    #dee5ed 52%,
    #b9c5d4 78%,
    #ffffff 100%
  );
}
@media screen and (min-width: 768px) {
  .cta:not(.cta--plain) {
    background-image: url("assets/images/images-063.webp");
    background-position: 50% 50%;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  /* CTA 帯を上下に伸ばし、次セクションまで背景を続かせる */
  .cta:not(.cta--plain) {
    padding: min(5.5vw, 60px) 0;
    margin-bottom: 0;
  }
  .cta:not(.cta--plain) + * {
    margin-top: 0;
  }
}
.cta--plain {
  background: none;
}
/* きらめき装飾（img-sparkle.svg）を表示 */
.about__lead::after,
.section-heading::after {
  display: block;
}
.concerns__heading span {
  background: none;
}

/* 人気施術のラベル帯（img-index-popular-treatments-04/05.svg 未提供のため塗り＋リボン形で代替） */
.popular__merit dt {
  background-image: none;
  color: #fff;
  text-align: center;
  clip-path: polygon(
    0 0,
    calc(100% - 0.6em) 0,
    100% 50%,
    calc(100% - 0.6em) 100%,
    0 100%
  );
}
.popular__merit dt:nth-of-type(odd) {
  background-color: var(--c-navy);
}
.popular__merit dt:nth-of-type(even) {
  background-color: var(--c-gold);
}
.popular__merit dd {
  color: var(--c-text);
}

/* FAQ の開閉アイコン（img-faq-arrow.svg 未提供のため CSS で描画） */
.faq__toggle {
  width: 12px;
  height: 12px;
  background: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-6px, -70%) rotate(45deg);
}
.faq__item dt.is-open .faq__toggle {
  transform: translate(-6px, -30%) rotate(225deg);
}

/* 本数目安の図：線画PNG＋ラベルSVGを重ねる */
.pricing__diagram {
  position: relative;
  display: block;
  width: 100%;
  max-width: 422px;
  margin-inline: auto;
}
.pricing__diagram img {
  display: block;
  width: 100%;
  height: auto;
}
.pricing__diagram-labels {
  position: absolute;
  inset: 0;
}

/* 症例カード：治療内容から下をPCでもアコーディオンに */
.cases__slider .accordion > .accordion__panel {
  display: none;
}
.cases__slider .accordion.is-open > .accordion__panel {
  display: block;
}
@media screen and (min-width: 768px) {
  /* 各カードの高さを揃え、ボタンの位置を統一 */
  .cases__slider .slider__slide {
    display: flex;
    flex-direction: column;
  }
  .cases__slider .slider__slide > .cases__body {
    flex: 1 0 auto;
  }
  .cases__slider .accordion__trigger,
  .cases__slider .accordion__close {
    display: flex !important;
    width: min(30vw, 330px);
    height: 50px;
    font-size: 16px;
    border-radius: 25px;
  }
  .cases__slider .accordion__trigger {
    margin-bottom: min(3.6vw, 40px);
  }
  .cases__slider .accordion__close {
    margin-top: min(3.6vw, 40px);
  }
}

/* 人気施術の帯：上セクションとの余白をなくす */
.popular__merit {
  margin-top: 0 !important;
}

/* Google マップの静的プレースホルダー */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8f93a8;
  background-color: #e9eaf0;
  border: 1px dashed #b9bccb;
}
.map-placeholder p {
  font-family: var(--ff-sans);
  font-size: 13px;
}
