:root {
  --pink: #2D6CDF;
  --pink-button: #1E3A5F;
  --pink-deep: #0D1B2A;
  --pink-light: #F7F9FC;
  --navy: #13294b;
  --text: #333333;
  --gray: #777777;
  --border: #E5E7EB;
  --white: #ffffff;
  --font-base: "Noto Sans JP", sans-serif;
  --font-title: "Shippori Mincho", serif;
  --font-price: "Anonymous Pro", monospace;
  --font-number: "Arimo", sans-serif;
  --header-height: 96px;
  --footer-height: 70px;
}
/* ==========================
   Base
========================== */

body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--pink-light);
  line-height: 1.7;
  font-size: 19px;
}

main {
  padding-top: var(--header-height);
  padding-bottom: var(--footer-height);
}

section {
  width: 100%;
}

.container {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
   Header
========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
  max-width: 390px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: block;
}

.header__logo img {
  display: block;
  width: 120px;
  height: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__phone img {
  width: 52px;
  height: 52px;
  display: block;
}

.header__menu-button {
  width: 45px;
  height: 43px;

  background: var(--pink-button);
  border: none;
  border-radius: 2px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;

  padding: 0;
}

.header__menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;

  transition: all .3s ease;
}

.header__menu-button:hover {
  background: var(--pink);
}

.header__menu-button:focus,
.header__menu-button:focus-visible,
.header__menu-button:active {
  outline: none;
  box-shadow: none;
}

.header__menu-button img {
  width: 20px;
  height: 20px;
  display: block;
}

/* ==========================
   Navigation
========================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__inner {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 34px 48px;
  background: var(--pink-light);
  position: relative;
}

.nav-overlay__close {
  position: absolute;
  top: 32px;
  right: 28px;

  width: 40px;
  height: 40px;
  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-overlay__close img {
  width: 28px;
  height: 28px;
}

.nav-overlay__title {
  margin-top: 28px;
  margin-bottom: 36px;

  text-align: center;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-overlay__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 10px auto 0;

  background-image: radial-gradient(var(--pink-deep) 2px, transparent 2px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
}

.nav-overlay__list li {
  height: 52px;
  border-bottom: 1px solid rgba(244, 107, 138, 0.18);
  background: rgba(255, 255, 255, 0.45);

  display: grid;
  grid-template-columns: 26px 1fr 18px;
  align-items: center;
  column-gap: 14px;
  padding: 0 14px;
}

.nav-overlay__list li img:first-child {
  width: 20px;
  height: 20px;
}

.nav-overlay__list li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.nav-overlay__list li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--pink-deep);
  border-right: 2px solid var(--pink-deep);
  transform: rotate(45deg);
  justify-self: end;
}

.nav-overlay__btn-web,
.nav-overlay__btn-line {
  width: 100%;
  height: 58px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
}

.nav-overlay__btn-web {
  margin-top: 20px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(244, 107, 138, 0.22);
}

.nav-overlay__btn-line {
  margin-top: 14px;
  background: var(--white);
  color: #00b900;
  border: 1px solid #00b900;
}

.nav-overlay__btn-web img,
.nav-overlay__btn-line img {
  width: 22px;
  height: 22px;
}

.nav-overlay__list li {
  border-bottom: 1px solid rgba(45, 108, 223, 0.18);
}

.nav-overlay__list li img:first-child,
.nav-overlay__close img {
  filter: hue-rotate(235deg) saturate(1.15) brightness(0.85);
}

/* =====================================
   FV
===================================== */

.fv {
  position: relative;
  height: 607px;
  overflow: hidden;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv__visual {
  margin: 0 0 0 auto;
}

.fv__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.fv__model {
  position: absolute;
  top: 0;
  right: -123px;
  left: auto;
  width: 390px;
  height: 232px;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  transform: none;
  display: block;
}
.fv__badge-group {
  position: absolute;
  top: 32px;
  left: 10.46px;
  z-index: 3;
  width: 209.82px;
  display: flex;
  gap: 8px;
}

.fv__badge-card {
  width: 90px;
  flex: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 8px 4px;
  text-align: center;
}


.fv__badge-icon {
  width: 18px;
  height: 18px;
  margin: 0 auto 3px;
}


.fv__badge-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.fv__badge-icon--star {
  color: #f0c419;
}

.fv__badge-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 9.5px;
  color: #666;
  margin: 0 0 2px;
}

.fv__badge-number {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 17px;
  color: #2D6CDF;
  margin: 0;
  line-height: 1.1;
}

.fv__badge-unit {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 10px;
}

.fv__badge-sub {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 9.5px;
  color: #2D6CDF;
  margin: 0;
}
.fv__copy {
  position: absolute;
  left: 10px;
  top: 95px;
  z-index: 4;
}

.fv__sub {
  position: absolute;
  left: 2px;
  top: 35px;
  width: 152px;
  height: 15px;
  margin: 0;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #555555;
}

.fv__catch {
  position: absolute;
  left: -1px;
  top: 58px;
  width: 269px;
  height: 17px;
  margin: 0;
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 800;
  line-height: 17px;
  letter-spacing: 0;
  color: #143b64;
  text-shadow: 0 0 2.24px #cfe0ff;
}

.fv__title {
  position: absolute;
  left: -6px;
  top: 77px;
  width: 350px;
  height: 35px;
  margin: 0;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  color: #143b64;
  text-shadow: 0 0 2.24px #cfe0ff;
}

.fv__lead {
  position: absolute;
  top: 78px;
  left: 37px;
  margin: 0;
  width: 387px;
  font-size: 8.6px;
  line-height: 1.8;
  color: #555;
}


/* ==========================
   Skin Type
========================== */

.skin-type {
  padding: 24px 0;
}

.skin-type__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.skin-type__title {
  margin: 0 0 -2px;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  color: #2D6CDF;
  line-height: 1.3;
}

.skin-type__sub {
  margin: 10px 0 16px;
  font-family: var(--font-base);
  font-size: 11.88px;
  font-weight: 500;
  color: #000000;
}

.skin-type__grid {
  display: grid;
  grid-template-columns: repeat(2, 177px);
  gap: 20px;
  justify-content: center;
}

.skin-type__card {
  position: relative;
  width: 177px;
  height: 130px;
  border-radius: 13px;
  border: 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}

.skin-type__card--pink   { border-color: #FE517B; background: linear-gradient(to bottom, #FFF4F7, #FFFFFF); }
.skin-type__card--orange { border-color: #F5823B; background: linear-gradient(to bottom, #FFF7F3, #FFFFFF); }
.skin-type__card--blue   { border-color: #2A62C9; background: linear-gradient(to bottom, #F5F9FF, #FFFFFF); }
.skin-type__card--green  { border-color: #3CC92A; background: linear-gradient(to bottom, #F6FFF5, #FFFFFF); }

.skin-type__header {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 8px;
}

.skin-type__badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP", var(--font-base);
  font-size: 10.71px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.skin-type__badge--pink   { background: #FE517B; }
.skin-type__badge--orange { background: #F5823B; }
.skin-type__badge--blue   { background: #2A62C9; }
.skin-type__badge--green  { background: #3CC92A; }

.skin-type__img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.skin-type__concern {
  margin: 0;
  padding-left: 0;
  font-family: "LINE Seed JP", var(--font-base);
  font-size: 11.97px;
  font-weight: 700;
}

.skin-type__concern--pink   { color: #FE517B; }
.skin-type__concern--orange { color: #F8853E; }
.skin-type__concern--blue   { color: #2A62C9; }
.skin-type__concern--green  { color: #3CC92A; }

.skin-type__name {
  margin: 0;
  font-family: "LINE Seed JP", var(--font-base);
  font-size: 15px;
  font-weight: 700;
}

.skin-type__card--pink   .skin-type__name { color: #FE517B; }
.skin-type__card--orange .skin-type__name { color: #F8853E; }
.skin-type__card--blue   .skin-type__name { color: #2A62C9; }
.skin-type__card--green  .skin-type__name { color: #3CC92A; }

/* ==========================
   Problem
========================== */

.problem {
  padding: 36px 0;
  background: #f7f9fc;
}

.problem__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 16px;
}

.problem__title {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  color: #1e3a5f;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
}

.problem__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #d5e3ff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(45, 108, 223, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease, box-shadow 0.25s ease;
}

.problem__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2d6cdf;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 8px;
}

.problem__text {
  font-family: var(--font-base);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
}
/* ==========================
   CTA Price
========================== */

.cta-price__inner {
  width: 346px;
  height: 65px;
  margin: 0px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D6CDF;
  border-radius: 20px;
  text-decoration: none;
  box-sizing: border-box;
}
.cta-price__text {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
  text-align: center;
}

.cta-price__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  background: #2D6CDF;
  border-radius: 16px;
  text-decoration: none;
  padding: 0 8px;
  box-sizing: border-box;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 8px;
}

.line-cta-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.line-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 195, 0, 0.3);
}
.cta-price__inner {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-price__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(45, 108, 223, 0.35);
}

/* ==========================
   Footer
========================== */

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
}

.footer__inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer__btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.footer__btn--line {
  background: #ffffff;
  color: #00C300;
  border: 1px solid #00C300;
}

.footer__btn--web {
  background: #2D6CDF;
}

.footer__btn img {
  width: 24px;
  height: 24px;
}

.footer__safe-area {
  max-width: 390px;
  margin: 0 auto;
  height: 20px;
  background: #ffffff;
}

/* ==========================
   Price
========================== */

.price {
  padding: 0 10px 24px;
  background: var(--pink-light);
  position: relative;
  z-index: 2;
  margin-top: -377px;
}

.price__grid {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.price__card {
  position: relative;
  min-height: 180px;
  padding: 14px 10px 10px;
  border: 2px solid;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  overflow: hidden;
}

.price__card--pink {
  background: #FFFBFC;
  border-color: #F45178;
}

.price__card--pink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp-assets/shimi/images/images/price/price-picospot.png") center / contain no-repeat;
  pointer-events: none;
}

.price__card--orange {
  background: #FEFDFD;
  border-color: #F28A3D;
}

.price__card--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp-assets/shimi/images/images/price/price-ruby.png") center / contain no-repeat;
  pointer-events: none;
}

.price__card--blue {
  background: #F9FBFF;
  border-color: #2B73D6;
}

.price__card--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp-assets/shimi/images/images/price/price-picotoning.png") center / contain no-repeat;
  pointer-events: none;
}

.price__card--green {
  background: #FDFFFD;
  border-color: #46B64A;
}

.price__card--green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp-assets/shimi/images/images/price/price-limelight.png") center / contain no-repeat;
  pointer-events: none;
}

.price__concern {
  display: inline-block;
  margin: 0 0 4px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 999px;
  position: relative;
  top: 11px;
}

.price__concern--pink   { color: #f45178; background: #FFF1F4; }
.price__concern--orange { color: #f28a3d; background: #fff1e8; }
.price__concern--blue   { color: #2b73d6; background: #e8f5ff; }
.price__concern--green  { color: #24a934; background: #e8ffe8; }

.price__name {
  margin: 0;
  font-family: "LINE Seed JP", var(--font-base);
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  position: relative;
  top: 11px;
}

.price__name--pink,
.price__name--orange {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.price__name--pink   { color: #f45178; top: 25px; }
.price__name--orange { color: #f28a3d; }
.price__name--blue   { color: #2b73d6; }
.price__name--green  { color: #46b64a; }

.price__badge {
  height: 22px;
  margin-top: 2px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.price__badge--pink   { color: #f45178; background: #FFF1F4; position: relative; top: 7px; }
.price__badge--orange { color: #f28a3d; background: #fff1e8; position: relative; top: 12px; }
.price__badge--blue   { color: #2b73d6; background: #e8f5ff; position: relative; top: 12px; }
.price__badge--green  { color: #24a934; background: #e8ffe8; position: relative; top: 12px; }

.price__amount {
  margin-top: 15px;
  color: #ef1818;
  font-family: var(--font-number);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.price__yen  { font-size: 20px; }
.price__num  { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.price__tax  { font-size: 6px; font-style: normal; }

.price__regular {
  margin-top: 4px;
  font-family: var(--font-price);
  font-size: 10px;
  font-weight: bold;
  color: #555;
}

/* ==========================
   Case
========================== */

.case {
  padding: 9px 0;
}

.case__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.case__entry {
  margin-top: 40px;
}

.case__title {
  margin: 0 0 -3px;
  font-family: var(--font-title);
  font-size: 40.46px;
  font-weight: 700;
  background: linear-gradient(to bottom, #2D6CDF 26%, #1E3A5F 85%, #0D1B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case__lead {
  margin: -7 0 16px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #000000;
  text-align: center
}

.case__photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.case__photo {
  width: 100%;
  display: block;
}

.case__arrow {
  padding: 8px 0;
}


.case__info-header {
  height: 28px;
  background: #D5E3FF;
  border-radius: 13px 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
}

.case__info-col {
  display: flex;
  align-items: center;
  gap: 4px;
}

.case__info-label {
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 500;
  color: #000000;
}

.case__info-value {
  display: flex;
  align-items: center;
  gap: 1px;
}

.case__info-num {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  color: #2D6CDF;
  line-height: 1;
}

.case__info-unit {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 500;
  color: #000000;
}


.case__photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.case__photo-wrap {
  position: relative;
  width: 100%;
  padding-top: 40px;
}

.case__arrow-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #2D6CDF;
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 23px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

.case__arrow {
  padding: 8px 0;
}

.case__treatment-badge {
  width: 75px;
  padding: 1px 6px;
  border-radius: 8px;
  background: #D5E3FF;
  color: #2D6CDF;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
  box-sizing: border-box;
   margin-top: 4px;
}

.case__treatment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
}

.case__treatment-item {
  line-height: 1.6;
}

.case__treatment-name {
  font-family: var(--font-base);
  font-size: 17px;
  font-weight: 700;
  color: #333333;
}

.case__treatment-note {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}

.case__commentary {
  width: 318px;
  margin: 0 auto;
  border: 1px solid #D5E3FF;
  border-radius: 13px;
  background: #F7F9FC;
  padding: 12px;
  text-align: left;
}

.case__commentary-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-family: var(--font-base);
  font-size: 11.5px;
  font-weight: 700;
  color: #2D6CDF;
}

.case__commentary-header img {
  width: 18.21px;
  height: auto;
}

.case__commentary-content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.case__commentary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case__commentary-body {
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 4px;
  width: 213px;
}

.case__doctor-affiliation {
  font-family: var(--font-title);
  font-size: 5px;
  font-weight: 600;
  color: #2D6CDF;
  margin: 0;
}

.case__doctor-name {
  font-family: var(--font-title);
  font-size: 10.3px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.case__doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.case__doctor-photo {
  width: 76px;
  height: 77.66px;
  object-fit: cover;
  border-radius: 0;
}

/* ==========================
   C-OPERA
========================== */

.cpera {
  width: 100%;
}

.cpera__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 24px 16px;
  position: relative;
}

/* ヘッダーエリア */
.cpera__header {
  position: relative;
  margin-bottom: 12px;
}

.cpera__machine {
  position: absolute;
  top: 0;
  right: -14px;
  width: 160px;
  height: auto;
  opacity: 0.9;
  z-index: 0;
}

.cpera__header-content {
  position: relative;
  z-index: 1;
   width: calc(100% - 77px);
  padding-bottom: 16px;
}

.cpera__recommend {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background: #0D7755;
  border-radius: 999px;
  padding: 5px 14px;
  margin: 0 0 6px;
  margin-left: 12px;
}
.cpera__title-main {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.1;
  margin-left: 20px;
}
.cpera__title-sub {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  padding-left: 56px;
}

/* 白カード（本文） */
.cpera__body-card {
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.cpera__body-text {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 27.6px;
  color: #333333;
  margin: 0;
}

.cpera__highlight {
  color: #FE517B;
}

/* 帯テキスト */
.cpera__band {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 27.6px;
  color: #0D7755;
  text-align: center;
  margin: 31px 0 2px;
}

/* 効果カード3枚 */
.cpera__effects {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 15px 0 18px;
}

.cpera__effect-card {
  width: 113px;
  min-height: 175px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cpera__effect-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  color: #0D7755;
  flex-shrink: 0;
}


.cpera__effect-icon[src*="icon-greenglow"] {
    width: 46px;
    height: 46px;
}

.cpera__effect-title {
  font-family: var(--font-title);
  font-size: 11.56px;
  font-weight: 700;
  line-height: 21.4px;
  color: #0D7755;
  margin: 0;
  text-align: center;
  width: 100%;
  min-height: 42.8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px dashed #0D7755;
  padding-bottom: 4px;
}

.cpera__effect-icon[src*="icon-greendry"] {
  transform: scale(1.4);
}

.cpera__effect-desc {
  font-family: var(--font-title);
  font-size: 9.56px;
  font-weight: 700;
  line-height: 13.7px;
  color: #000000;
  margin: 9px 0 0;
  text-align: left;
}

/* 価格カード */
.cpera__price-card {
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 16px;
  text-align: center
}

.cpera__price-name-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
  justify-content: center;
}

.cpera__price-name {
  font-family: var(--font-title);
  font-size: 34.17px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
}

.cpera__price-name-kana {
  font-family: var(--font-title);
  font-size: 16.17px;
  font-weight: 700;
  color: #000000;
}

.cpera__price-sub {
  font-family: var(--font-title);
  font-size: 11.81px;
  font-weight: 700;
  color: #2D6CDF;
  margin: 0 0 -5px
}

.cpera__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: -9px;
  justify-content: center;
}

.cpera__first-badge {
  height: 33px;
  width: auto;
  object-fit: contain;
  align-self: center;
  margin-right: 4px;
}

.cpera__yen {
  font-family: var(--font-base);
  font-size: 24.17px;
  font-weight: 700;
  color: #ef1818;
}

.cpera__amount {
  font-family: var(--font-number);
  font-size: 38.17px;
  font-weight: 700;
  font-style: italic;
  color: #ef1818;
}

.cpera__tax {
  font-family: var(--font-base);
  font-size: 8px;
  font-weight: 700;
  color: #ef1818;
}

.cpera__regular {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  text-align: center
}


/* ==========================
   Price List
========================== */

.price-list {
  padding: 32px 0;
}

.price-list__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 16px;
}

.price-list__title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: #2D6CDF;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-list__title-deco {
  width: 8px;
  height: 8px;
}

.price-list__title-en {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #2D6CDF;
  text-align: center;
 margin: -7px 0 20px;
}

.price-list__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-list__item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1.5px solid #B4CDFF;
  overflow: hidden;
}

.price-list__trigger {
  width: 100%;
  padding: 22px 17px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
}

.price-list__trigger-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.price-list__name {
  font-family: var(--font-price);
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.price-list__note {
  font-family: var(--font-base);
  font-size: 9px;
  font-weight: 500;
  color: #777777;
  line-height: 1.5;
}

.price-list__trigger-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.price-list__price {
  font-family: var(--font-number);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #ef1818;
  white-space: nowrap;
}

.price-list__yen {
  font-size: 14px;
  font-style: normal;
}

.price-list__num {
  font-size: 20px;
}

.price-list__tax {
  font-family: var(--font-base);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  color: #ef1818;
}

.price-list__icon {
  width: 22px;
  height: 22px;
  background: none;
  color: #2D6CDF;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.price-list__icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.price-list__item.is-open .price-list__icon {
  transform: rotate(45deg);
}
.price-list__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.price-list__item.is-open .price-list__body {
  max-height: 2000px;
}

.price-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 17px;
  border-top: 1px solid #EAF1FF;
  gap: 8px;
}

.price-list__row-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.price-list__row-name {
  font-family: var(--font-price);
  font-size: 13px;
  font-weight: 700;
  color: #333333;
}

.price-list__row-note {
  font-family: var(--font-base);
  font-size: 9px;
  color: #777777;
  line-height: 1.4;
}

.price-list__row-highlight {
  color: #ef1818;
}

.price-list__row-price {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #ef1818;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-list__section-title {
  padding: 10px 17px 6px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #2D6CDF;
  border-top: 1px solid #EAF1FF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-list__section-note {
  font-family: var(--font-base);
  font-size: 9px;
  font-weight: 500;
  color: #777777;
}

.cta-price--price-list {
  padding: 16px 0;
  background: transparent;
}

/* ==========================
   Reason
========================== */

.reason {
  padding: 0 0 24px;
}

.reason__inner {
  max-width: 390px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 16px;
}

.reason__title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 800;
  color: #403D3D;
  text-align: center;
  margin: 35px 0 12px;
}

.reason__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reason__card {
  background: #FFFFFF;
  border: 0.34px solid #F3DDE2;
  border-radius: 5px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.10);
}

.reason__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reason__label {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: #777777;
  margin: 0;
}

.reason__num {
  margin: 0;
  line-height: 1;
  text-align: center;
}

.reason__num-large {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  color: #2D6CDF;
  text-shadow: 1.06px 1.06px 0.53px rgba(0, 0, 0, 0.25);
}

.reason__num-unit {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: #2D6CDF;
}

.reason__desc {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: #5C5656;
  margin: 0;
  text-align: center;
}

.reason__card--image {
  align-items: center;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.reason__card-content {
  display: none;
}

.reason__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  text-align: center;
}

.reason__machine {
  width: 90px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 8px;
}

.reason__num-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: #777777;
  margin: 0;
  line-height: 1.3;
  white-space: normal;
  word-break: keep-all;
  text-align: center;
}
/* ===== Doctor Section ===== */

.doctor {
  padding: 8px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.doctor-card {
  width: 333px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 13px rgba(155, 222, 212, 0.25);
  padding: 24px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
margin-top: 24px;
}

.doctor-title {
  width: 333px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  background: linear-gradient(to right, #3A987A 26%, #248F6D 85%, #0A7855 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.doctor-title-line {
  width: 333px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.doctor-title-line-bar {
  flex: 1;
  height: 0;
  border-top: 1px solid #248F6D;
}

.doctor-title-icon {
  width: 12px;
  height: auto;
  flex-shrink: 0;
}

.doctor-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-photo {
  width: 136px;
  height: 132px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.doctor-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-clinic-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  color: #2D6CDF;
  margin: 0;
  white-space: nowrap;
  margin-left: -8px;
}

.doctor-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  color: #333333;
  margin: 0;
}

.doctor-catch {
  width: calc(100% - 32px);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #0A7878;
  background: #F4FBFA;
  border-radius: 3px;
  padding: 6px 10px;
  margin: 0 auto;
  text-align: center;
}

.doctor-desc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}

.doctor-desc-icon {
  width: 34px;
  height: 37px;
  flex-shrink: 0;
}

.doctor-desc-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 14.3px;
  color: #333333;
  margin: 0;
  width: 212px;
}

.doctor-career-box,
.doctor-qualification-box {
  width: 280px;
  background: #F4FBFA;
  border: none;
  border-radius: 3px;
  margin: 0 auto;
  padding: 10px 12px;
}

.doctor-section-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.doctor-heading-line {
  flex: 1;
  height: 0;
  border-top: 0.5px solid #0A7878;
}

.doctor-heading-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #0A7878;
  white-space: nowrap;
}

.doctor-timeline {
  display: grid;
  grid-template-columns: 45px 16px 1fr;
  position: relative;
}

.doctor-timeline::before {
  content: "";
  position: absolute;
  left: calc(45px + 8px);
  top: 10px;
  bottom: 10px;
  width: 0.5px;
  background: #000000;
  transform: translateX(-50%);
}

.doctor-timeline-row {
  display: contents;
}

.doctor-timeline-year {
  font-family: "Shippori Mincho", serif;
  font-size: 9px;
  color: #0A7878;
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.doctor-timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0A7878;
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.doctor-timeline-item {
  font-family: "Shippori Mincho", serif;
  font-size: 9px;
  color: #333333;
  display: flex;
  align-items: center;
  padding: 6px 0 6px 8px;
}

.doctor-qualification-box .doctor-section-heading {
  margin-bottom: 2px;
}

.doctor-qualification-text {
  font-family: "Shippori Mincho", serif;
  font-size: 6px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  width: 242px;
}

.doctor-message-card {
  width: 300px;
  background: #ffffff;
  border: 1px solid #0A7878;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.doctor-message-icon {
  width: 28px;
  height: 26px;
  flex-shrink: 0;
}

.doctor-message-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 14.3px;
  color: #000000;
  margin: 0;
  width: 228px;
}


/* ===== Clinic Section ===== */

.clinic {
  width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.clinic-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #2D6CDF 26%, #1E3A5F 85%, #0D1B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.clinic-subtitle {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin: 0;
  margin-top: -19px;
}

.clinic-subtitle-line {
  width: 60px;
  height: 0;
  border-top: 1px solid #2D6CDF;
  margin: 0 auto;
}

.clinic-catch {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  text-align: center;
  line-height: auto;
  margin: 0;
}

.clinic-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 333px;
}

.clinic-title-line-bar {
  flex: 1;
  height: 0;
  border-top: 1px solid #2D6CDF;
}

.clinic-title-icon {
  width: 12px;
  height: auto;
  flex-shrink: 0;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 380px;
}

.clinic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
}

.clinic-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.clinic-badge {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #2D6CDF;
  background: #D5E3FF;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #2D6CDF;
  border: none;
  border-radius: 18px;
  padding: 4px 12px;
  width: 120px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.clinic-badge--small {
  font-size: 11px;
}

.clinic-desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 13px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.clinic-features {
  width: 350px;
  background: #ffffff;
  border: 1.5px solid #D5E3FF;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 0;
}

.clinic-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
  border-right: 1px solid #F7E7EC;
}

.clinic-feature-item:last-child {
  border-right: none;
}

.clinic-feature-icon {
  width: 40px;
  height: 40px;
  filter: hue-rotate(235deg) saturate(1.15) brightness(0.85);
}

.clinic-feature-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
  text-align: center;
  margin: 0;
}

.clinic-feature-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 8px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}


/* Access */
.access-section {
  width: 366px;
  margin: 0 auto;
  padding: 0 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.access-subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(to bottom, #2D6CDF 26%, #1E3A5F 85%, #0D1B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 28px 0 0px;
}
.access-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.access-title-line {
  display: block;
  width: 91px;
  height: 1px;
  background-color: #2D6CDF;
}
.access-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 30px;
  width: 128px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin-top: -6px;
  background: linear-gradient(to bottom, #2D6CDF 26%, #1E3A5F 85%, #0D1B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.access-clinic-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  width: 192px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin: -11px 0 16px;
}
.access-map-wrap {
  width: 366px;
  height: 198px;
  overflow: hidden;
  margin-bottom: 12px;
}
.access-map-wrap iframe {
  display: block;
  width: 366px;
  height: 198px;
}
.access-card {
  width: 345px;
  background: var(--white);
  border: 1px solid #D5E3FF;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 0 23px;
  box-sizing: border-box;
}
.access-card-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
}
.access-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  color: #2D6CDF;
  min-width: 80px;
  flex-shrink: 0;
  justify-content: center;
}

.access-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.access-card-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.8;
  padding-top: 1px;
}

.access-card-divider {
  width: 299px;
  border: none;
  border-top: 1px dashed #D5E3FF;
  margin: 0 auto;
}

.access-icon {
  filter: hue-rotate(235deg) saturate(1.15) brightness(0.85);
}

/* LINE CTA */
.line-cta-section {
  width: 366px;
  margin: 0 auto;
  padding: 0 0 24px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.line-cta-btn {
  display: flex;
  align-items: center;
  width: 346px;
  height: 65px;
  background: #FFFFFF;
  border: 0.5px solid #00C300;
  border-radius: 20px;
  text-decoration: none;
  padding: 0 14px;
  box-sizing: border-box;
  gap: 0;
}
.line-cta-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.line-cta-text {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  color: #00C300;
  flex: 1;
  text-align: center;
}
.line-cta-arrow {
  width: 26px;
  height: 26px;
  background: #00C300;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 6px;
  box-sizing: border-box;
}


/* FAQ */
.faq {
  width: 366px;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  background: linear-gradient(to bottom, #2D6CDF 26%, #1E3A5F 85%, #0D1B2A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.faq-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 333px;
  margin: 4px 0 20px;
}
.faq-title-line-bar {
  flex: 1;
  height: 0;
  border-top: 1px solid #2D6CDF;
}
.faq-title-icon {
  width: 12px;
  height: auto;
  flex-shrink: 0;
}
.faq-items {
  width: 345px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #D6E3F5;
  border-radius: 12px;
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  padding: 17px 17px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  box-sizing: border-box;
}
.faq-q {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 24px;
  color: #2D6CDF;
  flex-shrink: 0;
  line-height: 1;
}
.faq-question {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  flex: 1;
  line-height: 1.5;
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: #2D6CDF;
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-body {
  max-height: 600px;
}
.faq-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 17px 17px;
}
.faq-a {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 24px;
  color: #2D6CDF;
  flex-shrink: 0;
  line-height: 1;
}
.faq-answer-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  margin: 0;
  line-height: 1.8;
}

.header__nav-pc {
  display: none;
}

.header__reserve-pc {
  display: none;
}

.neovoir-photo {
  padding: 16px 0;
  text-align: center;
}
.neovoir-photo__img {
  width: 358px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 88px;
  }
}

@media (min-width: 1024px) {
  .header {
    height: 88px;
  }
  .header__inner {
    max-width: 1200px;
    padding: 0 40px;
  }
  .header__logo img {
    width: 150px;
  }
  .header__nav-pc {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .header__nav-pc a {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .header__nav-pc a:hover {
    color: var(--pink-deep);
  }
  .header__menu-button {
    display: none;
  }
  .header__phone {
    display: none;
  }
  .header__actions {
    gap: 12px;
  }
  .header__reserve-pc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    background: var(--pink);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .fv {
    height: 660px;
  }
  .fv__visual {
    position: relative;
    z-index: 2;
    width: min(1500px, 90vw);
    max-width: 1500px;
    height: 660px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-left: 40px;
    box-sizing: border-box;
    overflow: visible;
  }
  .fv__image-wrap {
    position: relative;
    inset: auto;
    order: 2;
    align-self: flex-end;
    flex-shrink: 0;
    width: clamp(560px, 44vw, 820px);
    height: clamp(560px, 40vw, 660px);
    margin-right: calc(
      -1 * (100vw - min(1500px, 90vw)) / 2 - 40px
    );
  }
  .fv__model {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
  }
}

@media (min-width: 1024px) {
  .fv__badge-group {
    position: absolute;
    top: 34px;
    left: 357px;
    right: auto;
    z-index: 5;

    display: flex;
    align-items: stretch;
    gap: 54px;

    width: auto;
  }

.fv__badge-card {
  width: 195px;
  min-height: 165px;
  padding: 16px 12px;
  box-sizing: border-box;

  display: grid;
  grid-template-rows: 44px 30px 58px 24px;
  justify-items: center;
  align-content: center;

  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}

.fv__badge-icon {
  width: 40px;
  height: 40px;
  margin: 0;
  align-self: center;
}

.fv__badge-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv__badge-label {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
}

.fv__badge-number {
  margin: 0;
  font-size: 47px;
  line-height: 58px;
  white-space: nowrap;
}

.fv__badge-unit {
  font-size: 21px;
}

.fv__badge-sub {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
  .fv__copy {
    position: static;
    order: 1;
    align-self: center;
    flex-shrink: 0;

    width: min(54vw, 900px);
    max-width: 900px;

    margin-top: 115px;
  }

  .fv__sub,
  .fv__catch,
  .fv__title {
    position: static;

    width: auto;
    height: auto;
  }

  .fv__sub {
    margin: 76px 269px 4px;

    font-size: clamp(25px, 3.75vw, 35px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.025em;
    white-space: nowrap;
  }

  .fv__catch {
    margin: 0 138px -75px;

    font-size: clamp(48px, 4.45vw, 75px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .fv__title {
    margin: 102px -87px 0;

    font-size: clamp(142px, 5.15vw, 98px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

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

@media (max-width: 1023px) {
  .fv__badge-group {
    position: absolute;
    top: 32px;
    left: 10.46px;
    z-index: 3;

    width: 209.82px;

    display: flex;
    gap: 8px;
  }
}

@media (min-width: 1024px) {
  .price {
    margin-top: 40px;
    padding: 0 40px 60px;
  }
  .price__grid {
    max-width: 1450px;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  align-items: stretch;
}
.price__card {
  min-height: 320px;
  padding: 32px 22px 22px;
}
  .price__concern {
    font-size: 16px;
    padding: 5px 16px;
  }
  .price__name {
    font-size: 30px;
    line-height: 32px;
  }
  .price__name--pink,
  .price__name--orange {
    min-height: 64px;
  }
  .price__badge {
    font-size: 14px;
    height: 30px;
    padding: 0 16px;
  }
  .price__yen {
    font-size: 28px;
  }
  .price__num {
    font-size: 46px;
  }
  .price__tax {
    font-size: 10px;
  }
  .price__regular {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .price__name {
    min-height: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .price__name--blue,
  .price__name--green {
    top: 25px;
  }
}

@media (min-width: 1024px) {
  .cta-price__inner {
    width: 560px;
    height: 84px;
    padding: 0 32px;
    border-radius: 26px;
    margin: 32px auto;
  }
  .cta-price__text {
    font-size: 33px;
  }
  .cta-price__btn {
    height: 64px;
    padding: 0 24px;
    font-size: 17px;
    border-radius: 20px;
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .problem {
    padding: 60px 0;
  }
  .problem__inner {
    max-width: 900px;
    padding: 0 40px;
  }
  .problem__title {
    font-size: 38px;
    margin-bottom: 36px;
  }
  .problem__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .problem__item {
    padding: 20px 22px;
    border-radius: 14px;
  }
  .problem__check {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .problem__text {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .skin-type {
    padding: 60px 0;
  }
  .skin-type__inner {
    max-width: 1450px;
    padding: 0 40px;
  }
  .skin-type__title {
    font-size: 48px;
  }
  .skin-type__sub {
    font-size: 17px;
    margin: 14px 0 32px;
  }
  .skin-type__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .skin-type__card {
    width: 100%;
    height: 220px;
    border-radius: 18px;
  }
  .skin-type__header {
    padding: 0 16px;
  }
  .skin-type__badge {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
  .skin-type__concern {
    font-size: 21px;
  }
  .skin-type__img {
    width: 84px;
    height: 84px;
  }
  .skin-type__name {
    font-size: 21px;
  }
}

@media (min-width: 1024px) {
  .skin-type__header {
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .case {
    padding: 50px 0;
  }
  .case__inner {
    max-width: 1100px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
  .case__title,
  .case__lead {
    grid-column: 1 / -1;
  }
  .case__title {
    font-size: 56px;
  }
  .case__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .case__entry {
    margin-top: 40px;
  }
  .case__photo {
    width: 100%;
  }
  .case__arrow-label {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .cpera__inner {
    max-width: 1100px;
    padding: 60px 40px;
  }
  .cpera__header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
  }
  .cpera__machine {
    position: relative;
    width: 260px;
    order: 2;
    flex-shrink: 0;
    left: -20px;
    top: -51px;
  }
  .cpera__header-content {
    width: auto;
    flex: 1;
    padding-bottom: 0;
    order: 1;
  }
.cpera__recommend {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: #0D7755;
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0 0 8px;
}
.cpera__title-main {
  font-family: var(--font-title);
  font-size: 65px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.1;
  position: relative;
  left: 17px;
}
  .cpera__title-sub {
    font-size: 26px;
  }
  .cpera__body-card {
    padding: 24px 28px;
    margin-top: 16px;
  }
  .cpera__body-text {
    font-size: 32px;
    line-height: 1.8;
  }
  .cpera__band {
    font-size: 26px;
    margin: 10px 0 20px;
  }
  .cpera__effects {
    gap: 24px;
    margin: 20px 0 30px;
  }
  .cpera__effect-card {
    width: 260px;
    min-height: 280px;
    padding: 24px 18px;
  }
  .cpera__effect-icon {
    width: 70px;
    height: 70px;
  }
  .cpera__effect-title {
    font-size: 18px;
    line-height: 1.4;
  }
  .cpera__effect-desc {
    font-size: 15px;
    line-height: 1.6;
  }
  .cpera__price-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px;
  }
  .cpera__price-name {
    font-size: 44px;
  }
  .cpera__price-name-kana {
    font-size: 22px;
  }
  .cpera__amount {
    font-size: 48px;
  }
  .cpera__yen {
    font-size: 30px;
  }
  .cpera__tax {
    font-size: 16px;
  }
  .cpera__regular {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .cpera__title-main {
    position: relative;
  }
  .cpera__title-sub {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    text-align: center;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  .cpera__recommend {
    vertical-align: middle;
    margin: 0 16px 0 0;
    font-size: 18px;
    padding: 8px 22px;
    margin-top: -40px;
  }
}

@media (min-width: 1024px) {
  .cpera__effect-icon[src*="icon-greenglow"] {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 1024px) {
  .cpera__band {
    margin: -76px 0 20px;
  }
}


@media (min-width: 1024px) {
  .price-list__inner {
    max-width: 900px;
    padding: 0 40px;
  }
  .price-list__title {
    font-size: 44px;
  }
  .price-list__title-en {
    font-size: 15px;
  }
  .price-list__trigger {
    padding: 28px 26px;
  }
  .price-list__name {
    font-size: 20px;
  }
  .price-list__note {
    font-size: 12px;
  }
  .price-list__price {
    font-size: 26px;
  }
  .price-list__num {
    font-size: 26px;
  }
  .price-list__row {
    padding: 14px 26px;
  }
  .price-list__row-name {
    font-size: 16px;
  }
  .price-list__row-note {
    font-size: 11px;
  }
  .price-list__row-price {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .reason {
    padding: 0 0 60px;
  }
  .reason__inner {
    max-width: 1300px;
    margin-top: 40px;
    padding: 0 40px;
  }
  .reason__title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .reason__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .reason__card {
    padding: 28px 16px;
    border-radius: 12px;
    min-height: 260px;
    justify-content: space-between;
  }
  .reason__icon {
    width: 40px;
    height: 40px;
  }
  .reason__label {
    font-size: 29px;
  }
  .reason__num-large {
    font-size: 52px;
  }
  .reason__num-unit {
    font-size: 20px;
  }
  .reason__desc {
    font-size: 16px;
  }
  .reason__machine {
    width: 120px;
    height: 106px;
  }
  .reason__num-name {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .reason__desc br {
    display: none;
  }
}



@media (min-width: 1024px) {
  .clinic {
    width: 100%;
    max-width: 1300px;
    gap: 20px;
    padding: 0 40px;
  }
  .clinic-title {
    font-size: 56px;
  }
  .clinic-subtitle {
    font-size: 18px;
    margin-top: -28px;
  }
  .clinic-subtitle-line {
    width: 80px;
  }
  .clinic-catch {
    font-size: 20px;
    line-height: 1.8;
  }
  .clinic-title-line {
    width: 260px;
    margin-top: 10px;
  }
  .clinic-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 32px;
    margin-top: 20px;
  }
  .clinic-item {
    padding-bottom: 0;
  }
  .clinic-photo {
    height: 260px;
    border-radius: 8px;
  }
  .clinic-badge {
    font-size: 19px;
    width: 220px;
    height: 32px;
    margin-top: 10px;
  }
  .clinic-badge--small {
    font-size: 19px;
  }
  .clinic-desc {
    font-size: 19px;
    line-height: 1.8;
    margin-top: 10px;
  }
  .clinic-features {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    padding: 24px 0;
  }
.clinic-feature-icon {
  filter: hue-rotate(235deg) saturate(1.15) brightness(0.85);
}
  .clinic-feature-title {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .access-section {
    width: 700px;
    padding: 0 0 40px;
  }
  .access-subtitle {
    font-size: 18px;
    margin-top: 20px;
  }
  .access-title-wrap {
    gap: 16px;
    margin-bottom: 20px;
  }
  .access-title-line {
    width: 220px;
  }
  .access-title {
    font-size: 40px;
    width: auto;
    height: auto;
    line-height: 1.2;
  }
  .access-clinic-name {
    font-size: 20px;
    width: auto;
    height: auto;
    line-height: 1.4;
    margin: 0 0 24px;
  }
  .access-map-wrap {
    width: 700px;
    height: 360px;
  }
  .access-map-wrap iframe {
    width: 700px;
    height: 360px;
  }
  .access-card {
    width: 660px;
    padding: 0 40px;
  }
  .access-card-row {
    padding: 20px 0;
    gap: 20px;
  }
  .access-card-label {
    font-size: 18px;
    min-width: 110px;
  }
  .access-icon {
    width: 20px;
    height: 20px;
  }
  .access-card-text {
    font-size: 15px;
  }
  .access-card-divider {
    width: 100%;
  }
}

.access-card-row:first-child .access-card-text br {
  display: none;
}

@media (min-width: 1024px) {
  .line-cta-section {
    width: 560px;
    padding: 0 0 32px;
  }
  .line-cta-btn {
    width: 560px;
    height: 84px;
    padding: 0 28px;
    border-radius: 26px;
  }
  .line-cta-icon {
    width: 54px;
    height: 54px;
  }
  .line-cta-text {
    font-size: 33px;
  }
  .line-cta-arrow {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1024px) {
  .faq {
    width: 700px;
    padding: 0 0 60px;
  }
  .faq-title {
    font-size: 40px;
  }
  .faq-title-line {
    width: 260px;
    margin: 8px 0 32px;
  }
  .faq-items {
    width: 700px;
    gap: 16px;
  }
  .faq-trigger {
    padding: 22px 24px;
    gap: 12px;
  }
  .faq-q,
  .faq-a {
    font-size: 28px;
  }
  .faq-question {
    font-size: 17px;
  }
  .faq-icon {
    font-size: 24px;
  }
  .faq-answer {
    padding: 0 24px 22px;
    gap: 12px;
  }
  .faq-answer-text {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  section:not(.fv) {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.price__card,
.skin-type__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price__card:hover,
.skin-type__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


@media (min-width: 1024px) {
  .cpera__title-main {
    position: relative;
    display: inline-block;
  }
  .cpera__title-sub {
    position: absolute;
    top: -30px;
    left: 65%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    text-align: center;
    padding-left: 0;
  }
}

.clinic-photo-wrap {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
.clinic-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.clinic-item:hover .clinic-photo {
  transform: scale(1.08);
}

.fv__badge-card {
  box-shadow: 0 4px 14px rgba(45, 108, 223, 0.25);
}
.reason__card {
  box-shadow: 0 4px 14px rgba(45, 108, 223, 0.2);
}


@media (min-width: 1024px) {
  .footer {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 280px 280px;
    justify-content: center;
    gap: 32px;
    padding: 20px 0;
  }
  .footer__btn {
    height: 60px;
    border-radius: 10px;
    font-size: 18px;
    gap: 10px;
  }
  .footer__btn img {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .fv__badge-number {
    position: relative;
    left: -4px;
  }
}

@media (min-width: 1024px) {
  .fv__title {
    -webkit-text-stroke: 1px #ffffff;
  }
}

@media (min-width: 1024px) {
  .neovoir-photo__img {
    width: 802px;
  }
}

@media (min-width: 1024px) {
  .doctor-title {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .doctor-card {
    transform: scale(2);
    transform-origin: top center;
    margin-top: 60px;
    margin-bottom: 800px;
  }
}