@charset "UTF-8";

/* =========================================================
   reset / base  (f/ 既存規約準拠)
   - デザイン基準幅: 750px (SP)
   - SP: @media (max-width:768px) で calc((x / 750) * 100vw)
   - PC: 750px コンテナを中央寄せ
   ========================================================= */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  width: 100%;
}

body {
  background-color: #ffffff;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}

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

ul,
ol {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* LP 本体ラッパー: デザイン 750px を中央寄せ */
.lp-wrapper {
  width: 750px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow-x: hidden;
  padding-top: 100px;
}

img.full {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .lp-wrapper {
    width: 100%;
    padding-top: calc((100 / 750) * 100vw);
  }
}

/* =========================================================
   sections  (Figma 各セクションをここに追記していく)
   ========================================================= */

/* -------------------- header (2003:92) -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 750px;
  max-width: 100%;
  height: 100px;
  background-color: #000000;
}

.header__logo {
  position: absolute;
  top: 32px;
  left: 29px;
  width: 97px;
  height: 68px;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__cta {
  position: absolute;
  top: 27.5px;
  right: 36px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  background-color: #bba170;
  border-radius: 100px;
  transform: scale(0.75);
  transform-origin: top right;
}

.header__cta-text {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
}

.header__cta-arrow {
  flex: none;
  width: 8px;
  height: 12px;
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: calc((100 / 750) * 100vw);
  }

  .header__logo {
    top: calc((32 / 750) * 100vw);
    left: calc((29 / 750) * 100vw);
    width: calc((97 / 750) * 100vw);
    height: calc((68 / 750) * 100vw);
  }

  .header__cta {
    top: calc((27.5 / 750) * 100vw);
    right: calc((36 / 750) * 100vw);
    height: calc((60 / 750) * 100vw);
    gap: calc((12 / 750) * 100vw);
    padding: 0 calc((30 / 750) * 100vw);
    border-radius: calc((100 / 750) * 100vw);
  }

  .header__cta-text {
    font-size: calc((24 / 750) * 100vw);
  }

  .header__cta-arrow {
    width: calc((12 / 750) * 100vw);
    height: calc((18 / 750) * 100vw);
  }
}

#header .logo a {
  display: flex;
  justify-content: flex-start;
  align-items: end;
}

/* number font (Figma: DIN 2014) */
.din {
  font-family: "din-2014", "DIN 2014", "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-style: normal;
}

/* -------------------- MV (2003:104) -------------------- */
.mv {
  position: relative;
  width: 750px;
  height: 884px;
  background-color: #ffffff;
}

.mv__hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 750px;
  height: 670px;
}

/* stats band */
.mv__stats {
  position: absolute;
  top: 670px;
  left: 0;
  width: 750px;
  height: 214px;
  background-color: #000000;
}

.mv__card {
  position: absolute;
  top: 30px;
  width: 220px;
  height: 95px;
  background-color: #000000;
  border: 2px solid #bba170;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mv__card--1 {
  left: 36px;
}

.mv__card--2 {
  left: 266px;
}

.mv__card--3 {
  left: 494px;
}

.mv__card-label {
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.mv__card-num {
  display: flex;
  align-items: baseline;
  color: #bba170;
  line-height: 1;
}

.mv__card-figure {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.mv__card-unit {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-left: 3px;
}

.mv__card-unit--narrow {
  font-size: 22px;
}

.mv__card-unit--pct {
  font-size: 32px;
  margin-left: 1px;
}

.mv__card-note {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: #ededed;
  margin-left: 4px;
}

.mv__footnote {
  position: absolute;
  top: 137px;
  left: 36px;
  width: 678px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.7px;
  font-weight: 400;
  color: #ededed;
}

/* deep blue block */
.mv__blue {
  position: absolute;
  top: 884px;
  left: 0;
  width: 750px;
  height: 280px;
  background-color: #023580;
}

/* CTA button */
.mv__cta {
  position: absolute;
  top: 974px;
  left: 71px;
  width: 608px;
  height: 100px;
  background-color: #bba170;
  border-radius: 50px;
  display: block;
}

.mv__cta-badge {
  position: absolute;
  top: -10px;
  left: 0;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bd272d 0%, #8b0001 100%);
  border: 2px solid #bba170;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
}

.mv__cta-badge-t1 {
  font-size: 22px;
  font-weight: 600;
}

.mv__cta-badge-t2 {
  font-size: 56px;
  font-weight: 600;
  margin: -2px 0;
}

.mv__cta-badge-t3 {
  font-size: 23px;
  font-weight: 600;
}

.mv__cta-label {
  position: absolute;
  top: 0;
  left: 162px;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 34px;
  font-weight: 700;
  color: #000000;
}

.mv__cta-label--n {
  font-weight: 400;
}

.mv__cta-arrow {
  position: absolute;
  top: 50%;
  left: 534px;
  width: 16px;
  height: 24px;
  transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 768px) {
  .mv {
    width: 100%;
    height: calc((884 / 750) * 100vw);
  }

  .mv__hero {
    width: 100%;
    height: calc((670 / 750) * 100vw);
  }

  .mv__stats {
    top: calc((670 / 750) * 100vw);
    width: 100%;
    height: calc((214 / 750) * 100vw);
  }

  .mv__card {
    top: calc((30 / 750) * 100vw);
    width: calc((220 / 750) * 100vw);
    height: calc((95 / 750) * 100vw);
    border-width: calc((2 / 750) * 100vw);
    border-radius: calc((10 / 750) * 100vw);
  }

  .mv__card--1 {
    left: calc((36 / 750) * 100vw);
  }

  .mv__card--2 {
    left: calc((266 / 750) * 100vw);
  }

  .mv__card--3 {
    left: calc((494 / 750) * 100vw);
  }

  .mv__card-label {
    font-size: calc((22 / 750) * 100vw);
    margin-bottom: calc((6 / 750) * 100vw);
  }

  .mv__card-figure {
    font-size: calc((40 / 750) * 100vw);
  }

  .mv__card-unit {
    font-size: calc((24 / 750) * 100vw);
    margin-left: calc((3 / 750) * 100vw);
  }

  .mv__card-unit--narrow {
    font-size: calc((22 / 750) * 100vw);
  }

  .mv__card-unit--pct {
    font-size: calc((32 / 750) * 100vw);
    margin-left: calc((1 / 750) * 100vw);
  }

  .mv__card-note {
    font-size: calc((16 / 750) * 100vw);
    margin-left: calc((4 / 750) * 100vw);
  }

  .mv__footnote {
    top: calc((137 / 750) * 100vw);
    left: calc((36 / 750) * 100vw);
    width: calc((678 / 750) * 100vw);
    font-size: calc((14 / 750) * 100vw);
    line-height: calc((20 / 750) * 100vw);
    letter-spacing: calc((-0.7 / 750) * 100vw);
  }

  .mv__blue {
    top: calc((884 / 750) * 100vw);
    width: 100%;
    height: calc((280 / 750) * 100vw);
  }

  .mv__cta {
    top: calc((974 / 750) * 100vw);
    left: calc((71 / 750) * 100vw);
    width: calc((608 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    border-radius: calc((50 / 750) * 100vw);
  }

  .mv__cta-badge {
    top: calc((-10 / 750) * 100vw);
    width: calc((122 / 750) * 100vw);
    height: calc((122 / 750) * 100vw);
    border-width: calc((2 / 750) * 100vw);
  }

  .mv__cta-badge-t1 {
    font-size: calc((22 / 750) * 100vw);
  }

  .mv__cta-badge-t2 {
    font-size: calc((56 / 750) * 100vw);
    margin: calc((-2 / 750) * 100vw) 0;
  }

  .mv__cta-badge-t3 {
    font-size: calc((23 / 750) * 100vw);
  }

  .mv__cta-label {
    left: calc((162 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    font-size: calc((34 / 750) * 100vw);
  }

  .mv__cta-arrow {
    left: calc((534 / 750) * 100vw);
    width: calc((16 / 750) * 100vw);
    height: calc((24 / 750) * 100vw);
  }
}

/* -------------------- CASE (2003:105) — slider -------------------- */
.case {
  position: relative;
  width: 750px;
  background-color: #000000;
}

/* static gold banner (does not slide) */
.case__banner {
  position: absolute;
  z-index: 2;
  top: 100px;
  left: 0;
  width: 750px;
  height: 80px;
  background-color: #bba170;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
}

.case__slider {
  width: 750px;
}

/* reconstructed slide (no baked arrows) */
.case-slide {
  position: relative;
  width: 750px;
  height: 1031px;
  background-color: #000000;
}

.case-slide__subtitle {
  position: absolute;
  top: 230px;
  left: 0;
  width: 750px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}

.case-slide__photo {
  position: absolute;
  top: 298px;
  width: 310px;
  height: 310px;
}

.case-slide__photo--before {
  left: 41px;
}

.case-slide__photo--after {
  left: 400px;
}

.case-slide__arrow {
  position: absolute;
  top: 435px;
  left: 362px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 26px;
  border-color: transparent transparent transparent #bba170;
}

.case-slide__label {
  position: absolute;
  top: 627px;
  width: 310px;
  text-align: center;
  font-size: 32px;
}

.case-slide__label--before {
  left: 41px;
  font-weight: 500;
  color: #ffffff;
}

.case-slide__label--after {
  left: 400px;
  font-weight: 600;
  color: #bba170;
}

.case-slide__spec {
  position: absolute;
  top: 698px;
  left: 41px;
  width: 670px;
  height: 233px;
  border: 1px solid #ffffff;
  border-radius: 10px;
}

.case-slide__table {
  position: absolute;
  top: 28px;
  left: 20px;
  right: 20px;
}

.case-slide__row {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.case-slide__row dt {
  flex: none;
  width: 179px;
}

.case-slide__row dt::after {
  content: "：";
}

.case-slide__row dd {
  flex: 1;
}

.case-slide__note {
  position: absolute;
  top: 168px;
  left: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.case__pagination {
  display: none;
}

.case__pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.5;
}

.case__pagination .swiper-pagination-bullet-active {
  background-color: #bba170;
  opacity: 1;
}

/* static nav arrows (do not slide; sit over the slider) */
.case__nav {
  position: absolute;
  z-index: 3;
  top: 432px;
  width: 30px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.case__prev {
  left: 20px;
}

.case__next {
  right: 20px;
}

.case__nav img {
  display: block;
  width: 100%;
  height: 100%;
}

.case__next img {
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .case {
    width: 100%;
  }

  .case__banner {
    top: calc((100 / 750) * 100vw);
    width: 100%;
    height: calc((80 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .case__slider {
    width: 100%;
  }

  .case-slide {
    width: 100%;
    height: calc((1031 / 750) * 100vw);
  }

  .case-slide__subtitle {
    top: calc((230 / 750) * 100vw);
    width: 100%;
    font-size: calc((32 / 750) * 100vw);
  }

  .case-slide__photo {
    top: calc((298 / 750) * 100vw);
    width: calc((310 / 750) * 100vw);
    height: calc((310 / 750) * 100vw);
  }

  .case-slide__photo--before {
    left: calc((41 / 750) * 100vw);
  }

  .case-slide__photo--after {
    left: calc((400 / 750) * 100vw);
  }

  .case-slide__arrow {
    top: calc((435 / 750) * 100vw);
    left: calc((362 / 750) * 100vw);
    border-width: calc((18 / 750) * 100vw) 0 calc((18 / 750) * 100vw) calc((26 / 750) * 100vw);
  }

  .case-slide__label {
    top: calc((627 / 750) * 100vw);
    width: calc((310 / 750) * 100vw);
    font-size: calc((32 / 750) * 100vw);
  }

  .case-slide__label--before {
    left: calc((41 / 750) * 100vw);
  }

  .case-slide__label--after {
    left: calc((400 / 750) * 100vw);
  }

  .case-slide__spec {
    top: calc((698 / 750) * 100vw);
    left: calc((41 / 750) * 100vw);
    width: calc((670 / 750) * 100vw);
    height: calc((233 / 750) * 100vw);
    border-radius: calc((10 / 750) * 100vw);
  }

  .case-slide__table {
    top: calc((28 / 750) * 100vw);
    left: calc((20 / 750) * 100vw);
    right: calc((20 / 750) * 100vw);
  }

  .case-slide__row {
    font-size: calc((14 / 750) * 100vw);
    line-height: calc((20 / 750) * 100vw);
  }

  .case-slide__row dt {
    width: calc((179 / 750) * 100vw);
  }

  .case-slide__note {
    top: calc((168 / 750) * 100vw);
    left: calc((20 / 750) * 100vw);
    right: calc((20 / 750) * 100vw);
    font-size: calc((14 / 750) * 100vw);
    line-height: calc((20 / 750) * 100vw);
  }

  .case__nav {
    top: calc((432 / 750) * 100vw);
    width: calc((30 / 750) * 100vw);
    height: calc((40 / 750) * 100vw);
  }

  .case__prev {
    left: calc((20 / 750) * 100vw);
  }

  .case__next {
    right: calc((20 / 750) * 100vw);
  }
}

/* -------------------- FACT (2004:28825) -------------------- */
.fact {
  position: relative;
  width: 750px;
  background-color: #ffffff;
  padding-bottom: 90px;
}

.fact__hero {
  position: relative;
  width: 750px;
  height: 1500px;
}

.fact__img {
  display: block;
  width: 750px;
  height: 1500px;
  object-fit: cover;
  object-position: top;
}

/* refund-guarantee card replaces the bottom portion of fact.png */
.fact__repay {
  position: relative;
  width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  z-index: 2;
}

.fact__repay-card {
  padding: 60px 40px 56px;
  text-align: center;
  color: #000000;
  border-radius: 16px 16px 0 0;
}

.fact__repay-hero {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.fact__repay-title {
  margin: 14px 0 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.fact__repay-sub {
  margin: 36px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.55;
}

.fact__repay-sub span {
  padding-bottom: 2px;
  border-bottom: 2px solid #000000;
}

.fact__repay-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0 60px;
  border: 0;
  background: #000000;
  color: #ffffff;
  font-family: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.fact__repay-toggle-icon {
  position: absolute;
  top: 50%;
  right: 36px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.fact__repay-toggle-icon::before,
.fact__repay-toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.fact__repay-toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
}

.fact__repay-toggle-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  transform-origin: center;
}

.fact__repay-toggle[aria-expanded="true"] .fact__repay-toggle-icon::after {
  transform: rotate(90deg);
}

.fact__repay-panel {
  background-color: #ffffff;
  padding: 40px 50px 50px;
  color: #000000;
  text-align: left;
  border-top: 1px solid #e5e5e5;
}

.fact__repay-panel[hidden] {
  display: none;
}

.fact__repay-h {
  margin: 34px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000000;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.fact__repay-h:first-child {
  margin-top: 0;
}

.fact__repay-t {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.fact__repay-note {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #555555;
}

.fact__repay-close {
  display: block;
  width: 100%;
  margin: 32px auto 0;
  padding: 6px 8px;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* animated pie chart drawn over the baked chart (Figma 2004:28830-37) */
.fact__chart {
  position: absolute;
  left: 0;
  top: 22.67%;
  width: 100%;
  height: 40%;
  background-color: #000000;
  pointer-events: none;
  z-index: 1;
}

/* the panel must stay fully opaque from the start so the baked chart
   is never visible; only the pie draws in on scroll */
.fact__chart.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.fact__note {
  position: absolute;
  margin: 0;
  top: 2%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #ededed;
}

.fact__pie {
  position: absolute;
  left: 16.667%;
  top: 14.5%;
  width: 66.667%;
  height: 83.333%;
  overflow: visible;
}

.fact__pie-seg {
  fill: none;
  stroke: #bba170;
  stroke-width: 250;
  stroke-dasharray: 785.398;
  stroke-dashoffset: 785.398;
  will-change: stroke-dashoffset;
}

.fact__chart.is-revealed .fact__pie-seg {
  animation: factPie 1s ease forwards;
}

@keyframes factPie {
  from {
    stroke-dashoffset: 785.398;
  }
  to {
    stroke-dashoffset: 15.708;
  }
}

.fact__lbl {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

.fact__lbl--face {
  top: 62.83%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}

.fact__lbl--face-n {
  top: 70%;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
}

.fact__lbl--face-n .din {
  font-size: 96px;
  font-weight: 600;
}

.fact__lbl--face-n .fact__pct {
  font-size: 64px;
}

.fact__lbl--online {
  top: 34.5%;
  right: 9.33%;
  text-align: right;
  font-size: 32px;
  font-weight: 600;
  color: #ededed;
}

.fact__lbl--online-n {
  top: 39.5%;
  right: 20.27%;
  color: #ededed;
}

.fact__lbl--online-n .din {
  font-size: 48px;
  font-weight: 600;
}

.fact__lbl--online-n .fact__pct-sm {
  font-size: 40px;
}

.fact__lead {
  position: absolute;
}

.fact__lead--h {
  top: 19.83%;
  left: 48.27%;
  right: 24%;
  border-top: 2px dotted #ededed;
}

.fact__lead--v {
  top: 19.83%;
  left: 76%;
  height: 12.5%;
  border-left: 2px dotted #ededed;
}

/* staged reveal: pie -> 対面診療98% -> オンライン診療2%（L字含む）
   text/leader lines fade in after the pie is drawn.
   The chart note (.fact__note) is intentionally NOT animated. */
.fact__lbl,
.fact__lead {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fact__chart.is-revealed .fact__lbl--face,
.fact__chart.is-revealed .fact__lbl--face-n {
  opacity: 1;
  transition-delay: 0.93s;
}

.fact__chart.is-revealed .fact__lbl--online,
.fact__chart.is-revealed .fact__lbl--online-n,
.fact__chart.is-revealed .fact__lead--h,
.fact__chart.is-revealed .fact__lead--v {
  opacity: 1;
  transition-delay: 1.4s;
}

@media (prefers-reduced-motion: reduce) {
  .fact__pie-seg {
    stroke-dashoffset: 15.708;
    animation: none;
  }

  .fact__lbl,
  .fact__lead {
    opacity: 1;
    transition: none;
  }
}

@media screen and (max-width: 768px) {
  .fact {
    width: 100%;
    padding-bottom: calc((90 / 750) * 100vw);
  }

  .fact__hero {
    width: 100%;
    height: calc((1500 / 750) * 100vw);
  }

  .fact__img {
    width: 100%;
    height: calc((1500 / 750) * 100vw);
  }

  .fact__repay {
    width: calc((600 / 750) * 100vw);
  }

  .fact__repay-card {
    padding: calc((60 / 750) * 100vw) calc((40 / 750) * 100vw) calc((56 / 750) * 100vw);
    border-radius: calc((16 / 750) * 100vw) calc((16 / 750) * 100vw) 0 0;
  }

  .fact__repay-sub span {
    padding-bottom: calc((2 / 750) * 100vw);
    border-bottom-width: calc((2 / 750) * 100vw);
  }

  .fact__repay-hero {
    font-size: calc((30 / 750) * 100vw);
  }

  .fact__repay-title {
    margin-top: calc((14 / 750) * 100vw);
    font-size: calc((60 / 750) * 100vw);
  }

  .fact__repay-sub {
    margin-top: calc((36 / 750) * 100vw);
    font-size: calc((30 / 750) * 100vw);
  }

  .fact__repay-toggle {
    height: calc((100 / 750) * 100vw);
    padding: 0 calc((60 / 750) * 100vw);
    font-size: calc((26 / 750) * 100vw);
  }

  .fact__repay-toggle-icon {
    right: calc((36 / 750) * 100vw);
    width: calc((24 / 750) * 100vw);
    height: calc((24 / 750) * 100vw);
  }

  .fact__repay-panel {
    padding: calc((40 / 750) * 100vw) calc((50 / 750) * 100vw) calc((50 / 750) * 100vw);
  }

  .fact__repay-h {
    margin: calc((34 / 750) * 100vw) 0 calc((18 / 750) * 100vw);
    padding-bottom: calc((18 / 750) * 100vw);
    font-size: calc((26 / 750) * 100vw);
  }

  .fact__repay-t {
    font-size: calc((22 / 750) * 100vw);
  }

  .fact__repay-note {
    font-size: calc((20 / 750) * 100vw);
  }

  .fact__repay-close {
    margin-top: calc((32 / 750) * 100vw);
    font-size: calc((24 / 750) * 100vw);
  }

  .fact__note {
    font-size: calc((14 / 750) * 100vw);
    line-height: calc((20 / 750) * 100vw);
  }

  .fact__lbl--face {
    font-size: calc((40 / 750) * 100vw);
  }

  .fact__lbl--face-n .din {
    font-size: calc((96 / 750) * 100vw);
  }

  .fact__lbl--face-n .fact__pct {
    font-size: calc((64 / 750) * 100vw);
  }

  .fact__lbl--online {
    font-size: calc((32 / 750) * 100vw);
  }

  .fact__lbl--online-n .din {
    font-size: calc((48 / 750) * 100vw);
  }

  .fact__lbl--online-n .fact__pct-sm {
    font-size: calc((40 / 750) * 100vw);
  }
}

/* -------------------- REASON (2004:28850) -------------------- */
.reason {
  width: 750px;
}

.reason__img {
  width: 750px;
  height: 3457px;
}

@media screen and (max-width: 768px) {
  .reason {
    width: 100%;
  }

  .reason__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- FAQ (2004:28883) — accordion -------------------- */
.faq {
  width: 750px;
  background-color: #efefef;
  padding: 100px 0;
}

.faq__title {
  margin: 0 0 100px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

.faq__item {
  width: 680px;
  margin: 0 auto 50px;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  width: 680px;
  min-height: 130px;
  padding: 20px 90px 20px 0;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
}

.faq__q-badge {
  flex: none;
  width: 50px;
  height: 50px;
  margin-left: 29px;
  margin-right: 24px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
}

.faq__q-text {
  flex: 1;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
}

.faq__q-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 32px;
  color: #777777;
  line-height: 1;
}

.faq__q-icon::before {
  content: "＋";
}

.faq__item.is-open .faq__q-icon::before {
  content: "−";
}

.faq__a {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  padding: 30px 40px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
}

.faq__a[hidden] {
  display: none;
}

.faq__a-badge {
  flex: none;
  width: 50px;
  height: 50px;
  margin-right: 24px;
  background-color: #bba170;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
}

.faq__a-body {
  flex: 1;
}

.faq__a-lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
}

.faq__a-text {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .faq {
    width: 100%;
    padding: calc((100 / 750) * 100vw) 0;
  }

  .faq__title {
    margin: 0 0 calc((50 / 750) * 100vw);
    height: calc((50 / 750) * 100vw);
    line-height: calc((50 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .faq__item {
    width: calc((680 / 750) * 100vw);
    margin-bottom: calc((50 / 750) * 100vw);
  }

  .faq__q {
    width: 100%;
    min-height: calc((130 / 750) * 100vw);
    padding: calc((20 / 750) * 100vw) calc((90 / 750) * 100vw) calc((20 / 750) * 100vw) 0;
    border-radius: calc((16 / 750) * 100vw);
  }

  .faq__q-badge {
    width: calc((50 / 750) * 100vw);
    height: calc((50 / 750) * 100vw);
    margin-left: calc((29 / 750) * 100vw);
    margin-right: calc((24 / 750) * 100vw);
    border-radius: calc((6 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .faq__q-text {
    font-size: calc((28 / 750) * 100vw);
    line-height: calc((40 / 750) * 100vw);
  }

  .faq__q-icon {
    right: calc((30 / 750) * 100vw);
    font-size: calc((32 / 750) * 100vw);
  }

  .faq__a {
    margin-top: calc((16 / 750) * 100vw);
    padding: calc((30 / 750) * 100vw) calc((40 / 750) * 100vw);
    border-radius: calc((16 / 750) * 100vw);
  }

  .faq__a-badge {
    width: calc((50 / 750) * 100vw);
    height: calc((50 / 750) * 100vw);
    margin-right: calc((24 / 750) * 100vw);
    border-radius: calc((6 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .faq__a-lead {
    font-size: calc((28 / 750) * 100vw);
    line-height: calc((40 / 750) * 100vw);
  }

  .faq__a-text {
    margin-top: calc((16 / 750) * 100vw);
    font-size: calc((24 / 750) * 100vw);
    line-height: calc((40 / 750) * 100vw);
  }
}

/* -------------------- FLOW (2004:28932) — CSS rebuild -------------------- */
.flow {
  width: 750px;
  background-color: #efefef;
  padding-bottom: 100px;
}

.flow__title {
  margin: 0;
  padding: 50px 0;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  box-sizing: content-box;
}

.flow__title-n {
  font-weight: 500;
}

.flow__list {
  width: 680px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow__step {
  position: relative;
  width: 680px;
  height: 296px;
  margin-bottom: 50px;
}

.flow__step:last-child {
  margin-bottom: 0;
}

.flow__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #bba170;
  font-size: 48px;
  line-height: 1;
}

.flow__bar {
  position: absolute;
  top: 0;
  left: 95px;
  width: 585px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.flow__step-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.flow__body {
  position: absolute;
  top: 80px;
  left: 0;
  width: 680px;
  height: 216px;
}

.flow__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 330px;
  height: 216px;
  object-fit: cover;
  display: block;
}

.flow__desc {
  position: absolute;
  top: 0;
  left: 25px;
  width: 300px;
  height: 216px;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 29px;
  color: #000000;
}

.flow__text {
  position: absolute;
  top: 0;
  left: 25px;
  width: 320px;
  height: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.flow__lead,
.flow__hours {
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
}

.flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  background-color: #bba171;
  color: #000000;
  border-radius: 100px;
}

.flow__btn-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.flow__btn-n {
  font-weight: 500;
}

.flow__btn-arrow {
  flex: none;
  width: 9px;
  height: 14px;
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .flow {
    width: 100%;
    padding-bottom: calc((100 / 750) * 100vw);
  }

  .flow__title {
    padding: calc((50 / 750) * 100vw) 0;
    height: calc((50 / 750) * 100vw);
    line-height: calc((50 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .flow__list {
    width: calc((680 / 750) * 100vw);
  }

  .flow__step {
    width: calc((680 / 750) * 100vw);
    height: calc((296 / 750) * 100vw);
    margin-bottom: calc((50 / 750) * 100vw);
  }

  .flow__num {
    width: calc((80 / 750) * 100vw);
    height: calc((80 / 750) * 100vw);
    font-size: calc((48 / 750) * 100vw);
  }

  .flow__bar {
    left: calc((95 / 750) * 100vw);
    width: calc((585 / 750) * 100vw);
    height: calc((80 / 750) * 100vw);
  }

  .flow__step-title {
    font-size: calc((32 / 750) * 100vw);
  }

  .flow__body {
    top: calc((80 / 750) * 100vw);
    width: calc((680 / 750) * 100vw);
    height: calc((216 / 750) * 100vw);
  }

  .flow__photo {
    width: calc((330 / 750) * 100vw);
    height: calc((216 / 750) * 100vw);
  }

  .flow__desc {
    left: calc((25 / 750) * 100vw);
    width: calc((300 / 750) * 100vw);
    height: calc((216 / 750) * 100vw);
    font-size: calc((20 / 750) * 100vw);
    line-height: calc((29 / 750) * 100vw);
  }

  .flow__text {
    left: calc((25 / 750) * 100vw);
    width: calc((320 / 750) * 100vw);
    height: calc((216 / 750) * 100vw);
    gap: calc((14 / 750) * 100vw);
  }

  .flow__lead,
  .flow__hours {
    font-size: calc((22 / 750) * 100vw);
  }

  .flow__btn {
    gap: calc((14 / 750) * 100vw);
    padding: calc((18 / 750) * 100vw) calc((26 / 750) * 100vw);
    border-radius: calc((100 / 750) * 100vw);
  }

  .flow__btn-label {
    font-size: calc((20 / 750) * 100vw);
  }

  .flow__btn-arrow {
    width: calc((9 / 750) * 100vw);
    height: calc((14 / 750) * 100vw);
  }
}

/* -------------------- CLINIC (2004:29005) — accordion -------------------- */
.clinic {
  width: 750px;
  background-color: #efefef;
  padding-bottom: 100px;
}

.clinic__title {
  height: 50px;
  line-height: 50px;
  margin-bottom: 100px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

.clinic__item {
  width: 680px;
  margin: 0 auto 50px;
}

.clinic__item:last-child {
  margin-bottom: 0;
}

.clinic__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 680px;
  height: 100px;
  background-color: #000000;
  border-radius: 8px;
  cursor: pointer;
}

.clinic__name {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.clinic__icon {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
}

.clinic__icon::before {
  content: "＋";
}

.clinic__item.is-open .clinic__icon::before {
  content: "−";
}

.clinic__panel {
  padding: 30px 0 0;
}

.clinic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 12px;
  row-gap: 0;
  margin-bottom: -12px;
}

.clinic__card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  overflow: hidden;
  background-color: #000000;
  cursor: pointer;
  margin-bottom: 12px;
}

.clinic__card-img {
  display: block;
  width: 100%;
  height: auto;
}

.clinic__card-name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75.34%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.clinic__card-more {
  position: absolute;
  top: 75.34%;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #bba170;
  letter-spacing: 0.05em;
}

.clinic__c-detail {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  padding: 28px 36px 32px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
}

.clinic__c-detail[hidden] {
  display: none;
}

.clinic__c-ttl {
  margin: 0 0 16px;
  font-size: 27px;
  font-weight: 600;
  color: #000000;
}

.clinic__c-table {
  margin: 0 0 24px;
}

.clinic__c-row {
  display: flex;
  font-size: 19px;
  line-height: 32px;
  color: #000000;
}

.clinic__c-row dt {
  flex: none;
  width: 110px;
}

.clinic__c-row dd {
  flex: 1;
  margin: 0;
}

.clinic__c-map {
  width: 100%;
}

.clinic__c-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media screen and (max-width: 768px) {
  .clinic {
    width: 100%;
    padding-bottom: calc((100 / 750) * 100vw);
  }

  .clinic__title {
    height: calc((50 / 750) * 100vw);
    line-height: calc((50 / 750) * 100vw);
    margin-bottom: calc((100 / 750) * 100vw);
    font-size: calc((40 / 750) * 100vw);
  }

  .clinic__item {
    width: calc((680 / 750) * 100vw);
    margin-bottom: calc((50 / 750) * 100vw);
  }

  .clinic__bar {
    width: 100%;
    height: calc((100 / 750) * 100vw);
    border-radius: calc((8 / 750) * 100vw);
  }

  .clinic__name {
    font-size: calc((32 / 750) * 100vw);
  }

  .clinic__icon {
    right: calc((32 / 750) * 100vw);
    font-size: calc((32 / 750) * 100vw);
  }

  .clinic__panel {
    padding: calc((30 / 750) * 100vw) 0 0;
  }

  .clinic__grid {
    column-gap: calc((12 / 750) * 100vw);
    row-gap: 0;
    margin-bottom: calc((-12 / 750) * 100vw);
  }

  .clinic__card {
    margin-bottom: calc((12 / 750) * 100vw);
  }

  .clinic__card-name {
    font-size: calc((24 / 750) * 100vw);
  }

  .clinic__card-more {
    font-size: calc((18 / 750) * 100vw);
  }

  .clinic__c-detail {
    margin-bottom: calc((12 / 750) * 100vw);
    padding: calc((28 / 750) * 100vw) calc((36 / 750) * 100vw) calc((32 / 750) * 100vw);
  }

  .clinic__c-ttl {
    margin-bottom: calc((16 / 750) * 100vw);
    font-size: calc((27 / 750) * 100vw);
  }

  .clinic__c-table {
    margin-bottom: calc((24 / 750) * 100vw);
  }

  .clinic__c-row {
    font-size: calc((19 / 750) * 100vw);
    line-height: calc((32 / 750) * 100vw);
  }

  .clinic__c-row dt {
    width: calc((110 / 750) * 100vw);
  }

  .clinic__c-map iframe {
    height: calc((360 / 750) * 100vw);
  }
}

/* -------------------- FOOTER (2004:29042) -------------------- */
.footer {
  position: relative;
  width: 750px;
  height: 418px;
  background-color: #000000;
}

.footer__logo {
  position: absolute;
  top: 100px;
  left: 326px;
  width: 97px;
  height: 68px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__copy {
  position: absolute;
  top: 188px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    height: calc((418 / 750) * 100vw);
  }

  .footer__logo {
    top: calc((100 / 750) * 100vw);
    left: calc((326 / 750) * 100vw);
    width: calc((97 / 750) * 100vw);
    height: calc((68 / 750) * 100vw);
  }

  .footer__copy {
    top: calc((188 / 750) * 100vw);
    font-size: calc((22 / 750) * 100vw);
  }
}

/* -------------------- FixedCTA (2004:29082) — fixed bottom bar -------------------- */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  width: 750px;
  max-width: 100%;
  height: 180px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fixed-cta__btn {
  position: absolute;
  top: 40px;
  left: 75px;
  width: 600px;
  height: 100px;
  background-color: #bba170;
  border-radius: 50px;
  display: block;
}

.fixed-cta__badge {
  position: absolute;
  top: -10px;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bd272d 0%, #8b0001 100%);
  border: 2px solid #bba170;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
}

.fixed-cta__badge-t1 {
  font-size: 22px;
  font-weight: 600;
}

.fixed-cta__badge-t2 {
  font-size: 56px;
  font-weight: 600;
  margin: -2px 0;
}

.fixed-cta__badge-t3 {
  font-size: 23px;
  font-weight: 600;
}

.fixed-cta__label {
  position: absolute;
  top: 0;
  left: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 34px;
  font-weight: 700;
  color: #000000;
}

.fixed-cta__label--n {
  font-weight: 400;
}

.fixed-cta__arrow {
  position: absolute;
  top: 50%;
  left: 543px;
  width: 16px;
  height: 24px;
  transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 768px) {
  .fixed-cta {
    width: 100%;
    height: calc((180 / 750) * 100vw);
  }

  .fixed-cta__btn {
    top: calc((40 / 750) * 100vw);
    left: calc((75 / 750) * 100vw);
    width: calc((600 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    border-radius: calc((50 / 750) * 100vw);
  }

  .fixed-cta__badge {
    top: calc((-10 / 750) * 100vw);
    width: calc((120 / 750) * 100vw);
    height: calc((120 / 750) * 100vw);
    border-width: calc((2 / 750) * 100vw);
  }

  .fixed-cta__badge-t1 {
    font-size: calc((22 / 750) * 100vw);
  }

  .fixed-cta__badge-t2 {
    font-size: calc((56 / 750) * 100vw);
    margin: calc((-2 / 750) * 100vw) 0;
  }

  .fixed-cta__badge-t3 {
    font-size: calc((23 / 750) * 100vw);
  }

  .fixed-cta__label {
    left: calc((160 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    font-size: calc((34 / 750) * 100vw);
  }

  .fixed-cta__arrow {
    left: calc((543 / 750) * 100vw);
    width: calc((16 / 750) * 100vw);
    height: calc((24 / 750) * 100vw);
  }
}

/* -------------------- KNOW (2003:126) -------------------- */
.know {
  width: 750px;
}

.know__img {
  width: 750px;
}

@media screen and (max-width: 768px) {
  .know {
    width: 100%;
  }

  .know__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- FEATURES (2003:14220) -------------------- */
.features {
  width: 750px;
}

.features__img {
  width: 750px;
}

@media screen and (max-width: 768px) {
  .features {
    width: 100%;
  }

  .features__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- FEATURES01 (2004:14221) -------------------- */
.features01 {
  width: 750px;
}

.features01__img {
  width: 750px;
  height: 2787px;
}

@media screen and (max-width: 768px) {
  .features01 {
    width: 100%;
  }

  .features01__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- FEATURES02 (2004:14247) -------------------- */
/* base section stays as image; the two slider blocks are rebuilt in
   CSS (text) with arrow-free figure images. Static gold nav arrows
   are layered on top so horizontal sliding has no traveling arrows.
   Slide internals are positioned with % (from the Figma frame) and
   sized in em against a slide-scaled font-size, so one SP rule scales
   everything. Slider A blocks are black, slider B blocks are white. */
.features02 {
  background: #000;
  position: relative;
  width: 750px;
}

.features02__img {
  width: 100%;
}
.features02 .featuresBox {
  width: calc(100vw / 750 * 680);
  background: #EFEFEF;
  padding: calc(100vw / 750 * 40) 0;
  margin: calc(100vw / 750 * 50) auto 0;
}
.features02 .featuresBox .featuresBox_img {
  width: calc(100vw / 750 * 600);
  margin: 0 auto;
}
.btn_more a {
  color: #fff;
  font-size: 4.27vw;
  letter-spacing: .1em;
  background: #BBA170;
  width: 51.2vw;
  height: 12.4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vw;
  margin: 30px auto 0;
}
@media screen and (min-width:768px) {
  .features02 .featuresBox {
    width: 680px;
    padding: 40px 0;
    margin: 40px auto 0;
  }
  .features02 .featuresBox .featuresBox_img {
    width: 600px;
  }
  .btn_more a {
    font-size: 26px;
    width: 304px;
    height: 66px;
  }
}

















/* transparent button over the baked "総合治療の症例写真はこちら" CTA
   (Figma 2013:503) -> in-page jump to CASE02 */
.features02__case-link {
  display: block;
  position: absolute;
  bottom: 122px;
  left: 75px;
  width: 600px;
  height: 80px;
  z-index: 4;
}

.f02-slider {
  position: absolute;
  font-size: 10px;
}

.f02-slider--a {
  top: 869px;
  left: 36px;
  width: 680px;
  height: 678px;
}

.f02-slider--b {
  top: 1547px;
  left: 35px;
  width: 680px;
  height: 768px;
}

.f02-slider .swiper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.f02-slider .swiper-slide {
  height: 100%;
}

.f02s {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 10px;
  color: #000000;
}

.f02-slider--a .f02s {
  background-color: #000000;
}

.f02-slider--b .f02s {
  background-color: #ffffff;
}

.f02s__ttl {
  position: absolute;
  margin: 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.f02s__n {
  font-weight: 500;
}

.f02s__g {
  color: #bba170;
}

.f02s__img {
  position: absolute;
  display: block;
  height: auto;
}

.f02s__txt {
  position: absolute;
  margin: 0;
  font-size: 2.8em;
  line-height: 1.43;
}

/* static nav arrows */
.f02-nav {
  position: absolute;
  z-index: 5;
  width: 30px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.f02-nav img {
  display: block;
  width: 100%;
  height: 100%;
}

.f02-nav--next img {
  transform: scaleX(-1);
}

.f02-slider--a .f02-nav--prev {
  top: 40.12%;
  left: 1.32%;
}

.f02-slider--a .f02-nav--next {
  top: 40.12%;
  right: 3.82%;
}

.f02-slider--b .f02-nav--prev {
  top: 36.33%;
  left: 3.68%;
}

.f02-slider--b .f02-nav--next {
  top: 36.33%;
  right: 3.68%;
}

/* ---- Slider A ---- */
.f02s--a1 .f02s__ttl {
  top: 4.42%;
  left: 10.88%;
  right: 11.18%;
  font-size: 3.2em;
  color: #bba170;
}

.f02s--a1 .f02s__img {
  top: 20.21%;
  left: 5.74%;
  width: 88.23%;
}

.f02s--a1 .f02s__txt {
  top: 70.35%;
  left: 5.74%;
  right: 6.03%;
  color: #bba170;
}

.f02s--a2 .f02s__ttl {
  top: 7.37%;
  left: 11.03%;
  right: 11.03%;
  font-size: 3.2em;
  color: #bba170;
}

.f02s--a2 .f02s__img {
  top: 18.88%;
  left: 32.94%;
  width: 33.97%;
}

.f02s__circle {
  position: absolute;
  top: 68.29%;
  width: 27.94%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border: 0.2em solid #0077e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077e1;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.67;
  text-align: center;
}

.f02s__circle--1 {
  left: 5.88%;
}

.f02s__circle--2 {
  left: 36.03%;
}

.f02s__circle--3 {
  left: 66.18%;
}

.f02s--a3 .f02s__ttl {
  top: 5.31%;
  left: 11.03%;
  right: 11.03%;
  color: #bba170;
  line-height: 1.15;
}

.f02s--a3 .f02s__big {
  font-size: 4.8em;
}

.f02s--a3 .f02s__sm {
  font-size: 3.2em;
}

.f02s--a3 .f02s__w {
  color: #ffffff;
}

.f02s--a3 .f02s__img {
  top: 28.47%;
  left: 0;
  width: 94.12%;
  border-radius: 3.5em;
}

.f02s--a3 .f02s__stat {
  position: absolute;
  margin: 0;
  left: 0;
  right: 0;
  top: 78%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  color: #ffffff;
}

.f02s--a3 .f02s__stat-l {
  color: #bba170;
  font-size: 3.2em;
  font-weight: 600;
}

.f02s--a3 .f02s__stat-n {
  font-size: 9.6em;
  font-weight: 600;
}

.f02s--a3 .f02s__stat-u {
  font-size: 3.2em;
  font-weight: 600;
}

.f02s--a3 .f02s__stat-b {
  font-size: 5.2em;
  font-weight: 600;
}

.f02s--a3 .f02s__note {
  position: absolute;
  margin: 0;
  top: 95.5%;
  left: 7.06%;
  right: 7.21%;
  color: #777777;
  font-size: 1.4em;
  line-height: 1.43;
  text-align: center;
}

/* ---- Slider B ---- */
.f02s--b1 .f02s__ttl {
  top: 6.64%;
  left: 11.03%;
  right: 11.03%;
  font-size: 3.2em;
}

.f02s--b1 .f02s__img {
  top: 18.75%;
  left: 5.88%;
  width: 88.24%;
}

.f02s__box {
  position: absolute;
  top: 61.07%;
  bottom: 10.29%;
  width: 27.94%;
  background-color: #000000;
  border-radius: 1.6em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bba170;
}

.f02s__box b {
  display: block;
  color: #ffffff;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.f02s__box span {
  display: block;
  margin-top: 0.4em;
  font-size: 2.2em;
  text-align: center;
}

.f02s__box--1 {
  left: 5.88%;
}

.f02s__box--2 {
  left: 36.03%;
}

.f02s__box--3 {
  left: 66.18%;
}

.f02s--b2 .f02s__ttl {
  top: 4.56%;
  left: 9.26%;
  right: 12.79%;
  font-size: 3.2em;
  font-weight: 500;
}

.f02s--b2 .f02s__ttl b {
  font-weight: 600;
}

.f02s__d {
  position: absolute;
  display: block;
  height: auto;
}

.f02s__d--1 {
  top: 23.96%;
  left: 5.29%;
  width: 27.95%;
}

.f02s__d--2 {
  top: 18.75%;
  left: 35.44%;
  width: 27.94%;
}

.f02s__d--3 {
  top: 18.75%;
  left: 65.59%;
  width: 27.94%;
}

.f02s__cap {
  position: absolute;
  margin: 0;
  top: 51.17%;
  font-size: 2em;
  line-height: 1.5;
}

.f02s__cap--1 {
  left: 5.29%;
  right: 66.76%;
}

.f02s__cap--2 {
  left: 35.44%;
  right: 36.62%;
}

.f02s__cap--3 {
  left: 65.59%;
  right: 6.62%;
}

.f02s__band {
  position: absolute;
  margin: 0;
  top: 63.8%;
  left: 5.29%;
  width: 88.09%;
  height: 7.81%;
  background-color: #e3ded4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2em;
  font-weight: 600;
}

.f02s__list {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 75.52%;
  left: 38.82%;
  right: 6.62%;
  font-size: 2.4em;
  line-height: 1.6;
  font-weight: 600;
}

.f02s__list li {
  display: flex;
  align-items: center;
}

.f02s__no {
  flex: none;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.4em;
  border: 0.08em solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 600;
}

.f02s--b2 .f02s__larrow {
  position: absolute;
  top: 76%;
  left: 17%;
  width: 18%;
  height: auto;
}

.f02s--b3 .f02s__ttl,
.f02s--b4 .f02s__ttl {
  top: 4.56%;
  left: 11.03%;
  right: 11.03%;
  font-size: 3.2em;
}

.f02s--b5 .f02s__ttl {
  top: 4.56%;
  left: 5.88%;
  right: 5.88%;
  font-size: 3.2em;
}

.f02s--b3 .f02s__img,
.f02s--b4 .f02s__img,
.f02s--b5 .f02s__img {
  top: 18.75%;
  left: 5.88%;
  width: 88.24%;
}

.f02s--b3 .f02s__txt,
.f02s--b4 .f02s__txt,
.f02s--b5 .f02s__txt {
  top: 63.02%;
  left: 5.88%;
  right: 5.88%;
}

.f02s__txt b {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .features02 {
    width: 100%;
  }

  .features02__img {
    width: 100%;
    height: auto;
  }

  .features02__case-link {
    bottom: calc((122 / 750) * 100vw);
    left: calc((75 / 750) * 100vw);
    width: calc((600 / 750) * 100vw);
    height: calc((80 / 750) * 100vw);
  }

  .f02-slider {
    font-size: calc((10 / 750) * 100vw);
  }

  .f02-nav {
    width: calc((30 / 750) * 100vw);
    height: calc((40 / 750) * 100vw);
  }

  .f02-slider--a {
    top: calc((869 / 750) * 100vw);
    left: calc((36 / 750) * 100vw);
    width: calc((680 / 750) * 100vw);
    height: calc((678 / 750) * 100vw);
  }

  .f02-slider--b {
    top: calc((1547 / 750) * 100vw);
    left: calc((35 / 750) * 100vw);
    width: calc((680 / 750) * 100vw);
    height: calc((768 / 750) * 100vw);
  }

  .f02s {
    font-size: calc((10 / 750) * 100vw);
  }
}

/* -------------------- FEATURES03 (2004:14342) -------------------- */
.features03 {
  width: 750px;
}

.features03__img {
  width: 750px;
  height: 3265px;
}

@media screen and (max-width: 768px) {
  .features03 {
    width: 100%;
  }

  .features03__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- COMPARISON (2004:28642) -------------------- */
.comparison {
  width: 750px;
}

.comparison__img {
  width: 750px;
  height: 1309px;
}

@media screen and (max-width: 768px) {
  .comparison {
    width: 100%;
  }

  .comparison__img {
    width: 100%;
    height: auto;
  }
}

/* -------------------- PRICE (2004:28712) -------------------- */
.price {
  width: 750px;
  background: #fff;
  padding-bottom: calc(100vw / 750 * 40) 0;
}

.price__img {
  width: 750px;
  height: 2472px;
}
.price .btn_more {
  margin-top: calc(100vw / 750 * -80);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .price {
    width: 100%;
  }

  .price__img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:768px) {
  .price {
    padding-bottom: 40px;
  }
  .price .btn_more {
    margin-top: -80px;
  }
}

/* -------------------- CASE02 (2004:28789) -------------------- */
/* CASE02 reuses the .case / .case-slide slider styles (see CASE 2003:105) */

/* -------------------- CTA (2004:28810) -------------------- */
.cta {
  position: relative;
  width: 750px;
  height: 280px;
  background-color: #023580;
}

.cta__btn {
  position: absolute;
  top: 90px;
  left: 75px;
  width: 600px;
  height: 100px;
  background-color: #bba170;
  border-radius: 50px;
  display: block;
}

.cta__badge {
  position: absolute;
  top: -10px;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bd272d 0%, #8b0001 100%);
  border: 2px solid #bba170;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
}

.cta__badge-t1 {
  font-size: 22px;
  font-weight: 600;
}

.cta__badge-t2 {
  font-size: 56px;
  font-weight: 600;
  margin: -2px 0;
}

.cta__badge-t3 {
  font-size: 23px;
  font-weight: 600;
}

.cta__label {
  position: absolute;
  top: 0;
  left: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 34px;
  font-weight: 700;
  color: #000000;
}

.cta__label--n {
  font-weight: 400;
}

.cta__arrow {
  position: absolute;
  top: 50%;
  left: 543px;
  width: 16px;
  height: 24px;
  transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 768px) {
  .cta {
    width: 100%;
    height: calc((280 / 750) * 100vw);
  }

  .cta__btn {
    top: calc((90 / 750) * 100vw);
    left: calc((75 / 750) * 100vw);
    width: calc((600 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    border-radius: calc((50 / 750) * 100vw);
  }

  .cta__badge {
    top: calc((-10 / 750) * 100vw);
    width: calc((120 / 750) * 100vw);
    height: calc((120 / 750) * 100vw);
    border-width: calc((2 / 750) * 100vw);
  }

  .cta__badge-t1 {
    font-size: calc((22 / 750) * 100vw);
  }

  .cta__badge-t2 {
    font-size: calc((56 / 750) * 100vw);
    margin: calc((-2 / 750) * 100vw) 0;
  }

  .cta__badge-t3 {
    font-size: calc((23 / 750) * 100vw);
  }

  .cta__label {
    left: calc((160 / 750) * 100vw);
    height: calc((100 / 750) * 100vw);
    font-size: calc((34 / 750) * 100vw);
  }

  .cta__arrow {
    left: calc((543 / 750) * 100vw);
    width: calc((16 / 750) * 100vw);
    height: calc((24 / 750) * 100vw);
  }
}

/* =========================================================
   PC version (Figma 2009:945) — f/ spec: centered SP column,
   side elements in the gutters, no FixedCTA on PC
   ========================================================= */
.pc-side {
  display: none;
}

@media screen and (min-width: 769px) {
  body {
    background-color: #000000;
  }

  .pc-side {
    display: flex;
    position: fixed;
    top: 0;
    height: 100vh;
    width: calc((100% - 750px) / 2);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 90;
  }

  .pc-side--left {
    left: 0;
  }

  .pc-side--right {
    right: 0;
  }

  .pc-side__logo {
    display: block;
    width: 180px;
  }

  .pc-side__logo img {
    display: block;
    width: 180px;
    height: auto;
    max-width: none;
  }

  .pc-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
  }

  .pc-nav a {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .pc-nav a:hover {
    opacity: 1;
  }

  .pc-nav__cta {
    display: block;
    width: 250px;
    margin-top: 32px;
  }

  .pc-nav__cta img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* FixedCTA is SP-only */
  .fixed-cta {
    display: none !important;
  }

  /* header is SP-only; on PC the logo lives in the left gutter */
  .header {
    display: none;
  }

  .lp-wrapper {
    padding-top: 0;
  }
}

/* =========================================================
   Animations
   - CTA buttons: slow, gentle bounce (button only)
   - Entrance reveal for CSS-built blocks (big-image
     sections are intentionally excluded)
   ========================================================= */
@keyframes puru {
  0% {
    transform: translateX(0);
  }
  4% {
    transform: translateX(-6px);
  }
  9% {
    transform: translateX(6px);
  }
  14% {
    transform: translateX(-5px);
  }
  19% {
    transform: translateX(5px);
  }
  24% {
    transform: translateX(-3px);
  }
  28% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes cta-shine-sweep {
  0% {
    transform: translateX(-160%) skewX(-14deg);
  }
  55% {
    transform: translateX(220%) skewX(-14deg);
  }
  100% {
    transform: translateX(220%) skewX(-14deg);
  }
}

.mv__cta,
.cta__btn,
.pc-nav__cta {
  animation: puru 2.4s ease infinite;
  will-change: transform;
}

.pc-nav__cta {
  position: relative;
}

.cta-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

/* PC right-side CTA's shape comes from a PNG, not CSS, so the
   inherited radius is 0. Clip the shine to the button's pill shape. */
.pc-nav__cta .cta-shine {
  border-radius: 100px;
}

.cta-shine::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
  transform: rotate(45deg);
  animation: cta-shine-sweep 3s ease-in-out infinite;
}

/* PC right-side CTA only: shine dimensions */
.pc-nav__cta .cta-shine::before {
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .mv__cta,
  .cta__btn,
  .pc-nav__cta,
  .cta-shine::before {
    animation: none;
    transform: translateX(-160%) skewX(-14deg);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.banner {
  background: #000;
  padding: 0;
  margin: 0 !important;
}
@media screen and (min-width:768px) {
  .banner {
  }
}

.contents-wrapper {
  position: relative;
  width: 100%;
}
#ft_tel {
  background: #7f7f7f;
  margin-top: 0;
}
.pc-side--left.is-bottom,
.pc-side--right.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
@media screen and (max-width:767px) {
  .ft_wrap {
    padding-top: 0;
  }
}