    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      font-family: 'Noto Sans JP', sans-serif;
      background: #fff;
      color: #1a2a3a;
      -webkit-font-smoothing: antialiased;
		text-align: center;
    }
    /* ヘッドラインだけ明朝 */
    .hero-headline {
      font-family: 'Shippori Mincho', 'Noto Serif JP', 'YuMincho', '游明朝', 'Hiragino Mincho ProN', serif;
    }
    .lp-wrap {
      max-width: 560px;
      margin: 0 auto;
      overflow-x: hidden;
    }
    /* =====================
       HEADER
    ===================== */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 16px;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }
    .header-logo {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #1bb8cc;
      font-size: 13.5px;
      font-weight: 700;
      text-decoration: none;
    }
    .header-logo img {
		width: 160px;
    }
    .btn-line {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #06C755;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 5px 16px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      letter-spacing: 0.02em;
    }
    .btn-line img {
      width: 30px;
    }
    /* =====================
       HERO
    ===================== */
    .hero {
      position: relative;
      background: #fff;
      min-height: 550px;
      overflow: hidden;
      background-image: url("../images/FV.png");
      background-size: 100% auto;
      background-repeat: no-repeat;
    }
    /* 女性写真 — 実際の写真に差し替えてください */
    .hero-photo {
      position: absolute;
      top: 0;
      right: -8px;
      width: 62%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    /* メインコピー */
    /* 手書き風下線 (SVG) */
    .hero-headline .line-accent::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 8px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C20 2, 40 9, 60 5 C80 1, 100 8, 138 5' stroke='%231bb8cc' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0 8 C30 5, 70 9, 100 7 C115 6, 128 8, 140 7' stroke='%231bb8cc' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: 100% 100%;
    }
    .hero-subtext {
      margin-top: 28px;
      font-size: 13.5px;
      line-height: 2.2;
      color: #3a3a3a;
      white-space: nowrap;
    }
    /* 相談無料バッジ */
    .badge-free {
      position: absolute;
      right: 18px;
      bottom: 80px;
      z-index: 3;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: #1bb8cc;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 5px 8px 10px;
    }
    .badge-free .b-icon {
      /* margin-bottom: 3px;*/
    }
    .badge-free .b-small {
      font-size: 12px;
      font-weight: 500;
      line-height: 1.3;
    }
    .badge-free .b-main {
      font-size: 19px;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }
    .badge-free .b-divider {
      width: 70%;
      border: none;
      border-top: 1.5px dashed rgba(255, 255, 255, 0.55);
      margin: 5px 0;
    }
    .badge-free .b-note {
      font-size: 11px;
      font-weight: 500;
      line-height: 1.4;
      opacity: 0.92;
    }
    /* =====================
       TEAL SECTION
    ===================== */
    .teal-section {
      background: url("../images/cv-bg.png");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      padding: 55px 0 15px;
      position: relative;
      margin-top: -80px;
    }
    @media (max-width: 450px) {
		.sp {
			display: block;
		}
      .badge-free {
        bottom: 150px;
      }
      .teal-section {
        margin-top: -50vw;
      }
    }
    /* ロゴカルーセル */
    .logo-carousel {
      background: #fff;
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      margin-bottom: 12px;
    }
    .logo-track-outer {
      overflow: hidden;
      padding: 0 28px;
    }
    .logo-track {
      display: flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      /* 左から右へ流れる */
      animation: marquee-ltr 18s linear infinite;
    }
    @keyframes marquee-ltr {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .logo-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
      font-size: 11.5px;
      font-weight: 700;
      color: #1a2a3a;
    }
    .logo-item .logo-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 9px;
      color: #fff;
      font-weight: 900;
    }
    .logo-item .li-sompo .logo-icon {
      background: #d62b2b;
    }
    .logo-item .li-nissay .logo-icon {
      background: #c8001e;
    }
    .logo-item .li-metlife .logo-icon {
      background: #003087;
      font-size: 10px;
    }
    /* テキストロゴのスタイル */
    .logo-sompo-text {
      color: #1a1a1a;
    }
    .logo-aflac-text {
      color: #001b6e;
      font-size: 17px;
      font-weight: 900;
      letter-spacing: -0.5px;
    }
    .logo-aflac-i {
      color: #0066cc;
      font-style: italic;
    }
    .logo-metlife-text {
      color: #003087;
    }
    .logo-tokio-text {
      font-size: 10px;
      line-height: 1.3;
    }
    .logo-nissay-text {
      color: #c8001e;
      font-size: 13px;
    }
    /* LINE CTAボタン */
    .btn-line-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(to bottom, #4ac87a, #30a85e);
      color: #fff;
      border-radius: 60px;
      padding: 10px 20px;
      font-size: 22px;
      font-weight: 900;
      text-decoration: none;
      letter-spacing: 0.02em;
      margin-bottom: 28px;
      box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
      cursor: pointer;
      margin: 0 20px 0;
      border: solid 2px #fff;
      margin-top: 20px;
    }
    .btn-line-cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: 90%;
    }
    .btn-line-cta img {
      width: 50px;
    }
    .btn-line-cta::after {
      content: "›";
      font-size: 25px;
      margin-left: 6px;
    }
    /* =====================
       診断セクション
    ===================== */
/* ========== Wrapper ========== */
.diagnosis-section {
	background: #d3eef5;
}
.diagnosis {
	padding: 32px 14px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== Header ========== */
.diagnosis__header {
  text-align: center;
  padding: 0 16px;
}

.diagnosis__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1bb8cc;
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.diagnosis__title {    
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    color: #1bb8cc;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
}

.diagnosis__desc {
  font-size: 14px;
  color: #7a9da5;
  line-height: 1.7;
}

/* ========== Wrapper ========== */
.diagnosis {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== Header ========== */
.diagnosis__header {
  text-align: center;
  padding: 0 16px;
}

.diagnosis__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1bb8cc;
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.diagnosis__title {    
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    color: #1bb8cc;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.diagnosis__desc {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* ========== Slider Card ========== */
.diagnosis__slider {
  background: #fff;
  border-radius: 20px;
  padding: 24px 24px 24px;
  box-shadow: 0 2px 16px rgba(27, 184, 204, 0.08);
}

/* ========== Nav ========== */
.slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nav__dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8eef2;
  transition: background 0.3s, transform 0.3s;
}

.dot--active {
  background: #1bb8cc;
  transform: scale(1.25);
}

.dot--done {
  background: #a8dde5;
}

.nav__count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1bb8cc;
}

/* ========== Slide Window ========== */
.slider__window {
  overflow: hidden;
  width: 100%;
}

.slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Question Slide ========== */
/* width is set by JS in px to avoid % ambiguity inside flex track */
.question {
  flex-shrink: 0;
}

.question__text {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e35;
  line-height: 1.65;
  margin-bottom: 18px;
}

.question__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opt {
  width: 100%;
  text-align: left;
  padding: 13px 18px;
  border: 1.5px solid #d8eef2;
  border-radius: 12px;
  background: #fff;
  color: #4a6570;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.opt::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8e4e8;
  transition: background 0.15s;
}

.opt:hover {
  border-color: #1bb8cc;
  color: #1bb8cc;
  background: #f5fcfd;
}

.opt:hover::before {
  background: #1bb8cc;
}

.opt.selected {
  background: #1bb8cc;
  border-color: #1bb8cc;
  color: #fff;
  font-weight: 700;
}

.opt.selected::before {
  background: rgba(255, 255, 255, 0.7);
}

.opt:active {
  transform: scale(0.99);
}

/* ========== Back / Next Buttons ========== */
.slider__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.btn-back {
  background: none;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #aac8ce;
  cursor: pointer;
  padding: 8px 4px;
  transition: color 0.15s;
}

.btn-back:hover:not(:disabled) {
  color: #1bb8cc;
}

.btn-back:disabled {
  opacity: 0;
  pointer-events: none;
}

.btn-next {
  background: #1bb8cc;
  border: none;
  border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  padding: 10px 24px;
  box-shadow: 0 3px 10px rgba(27, 184, 204, 0.3);
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn-next:hover:not(:disabled) {
  opacity: 0.88;
}

.btn-next:disabled {
  background: #d8eef2;
  color: #a8c8ce;
  box-shadow: none;
  cursor: default;
}

.btn-next:active:not(:disabled) {
  transform: scale(0.97);
}

/* ========== Result Slide ========== */
.question--result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #daf1f5;
  border-radius: 14px;
  padding: 24px 20px;
}

.result__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1bb8cc;
  background: #fff;
  border-radius: 50px;
  padding: 4px 16px;
}

.result__type {
  font-size: 20px;
  font-weight: 700;
  color: #1a2e35;
  line-height: 1.3;
}

.result__desc {
  font-size: 13px;
  color: #4a6570;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.result__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
  transition: opacity 0.15s, transform 0.1s;
  margin-top: 4px;
}

.result__line-btn:hover {
  opacity: 0.88;
}

.result__line-btn:active {
  transform: scale(0.98);
}

.result__note {
  font-size: 11px;
  color: #7aa8b0;
}
/* =====================
       こんなお悩みセクション
    ===================== */
    .worry-section {
      background: #fff;
      padding: 32px 0 0;
    }
    /* 見出し（コーディング版） */
    .worry-heading {
      position: relative;
      padding: 0px 18px;
      background: #fff;
      overflow: hidden;
    }
    /* 男性写真（右上） */
    .worry-heading-photo {
      position: absolute;
      top: 12px;
      right: -8px;
      width: 44%;
      height: 220px;
      background: linear-gradient(160deg, #e1f1f5 0%, #c2e0e8 100%);
      z-index: 0;
    }
    .worry-heading img {
      width: 100%;
    }
    /* タイトル */
    .worry-heading-title {
      position: relative;
      z-index: 2;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 42px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.02em;
      line-height: 1.3;
      padding-bottom: 14px;
    }
    .worry-heading-title .ac {
      color: #1bb8cc;
    }
    /* 下線 */
    .worry-heading-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 56%;
      height: 6px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 6' preserveAspectRatio='none'%3E%3Cpath d='M2 3 Q50 1 100 3 T198 3' stroke='%231bb8cc' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    /* 6カードグリッド */
    .worry-cards {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 18px 14px 8px;
      background: #fff;
    }
    .worry-card {
      position: relative;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 10px rgba(28, 184, 204, 0.20);
      padding: 14px 12px 16px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 100px;
		margin-bottom: 10px;
    }
    .worry-card .check {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 18px;
      height: 18px;
    }
    .worry-card .icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #e7f4f8;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 6px;
    }
    .worry-card .card-text {
      font-size: 15px;
      line-height: 1.65;
      color: #333;
      letter-spacing: 0.01em;
		text-align: left;
    }
    .worry-card .card-text .accent {
      color: #1bb8cc;
      font-weight: 700;
    }
    /* セクション下部：当てはまったら〜 */
    .worry-footer {
      position: relative;
      background: linear-gradient(180deg, #fff 0%, #e7f5f8 60%, #d3eef5 100%);
      padding: 28px 16px 40px;
      text-align: center;
      overflow: hidden;
    }
    .worry-arrow {
      display: block;
      width: 24px;
      height: 14px;
      margin: 0 auto 16px;
      color: #1bb8cc;
    }
    .worry-footer .lead {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: #2a2a2a;
      margin-bottom: 4px;
    }
    .worry-footer .strong {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 26px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.02em;
      line-height: 1.45;
      margin-bottom: 14px;
    }
    .worry-footer .strong .ac {
      color: #1bb8cc;
      font-size: 30px;
    }
    .worry-footer .sub {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      color: #555;
      letter-spacing: 0.02em;
    }
    /* 装飾ウェーブ（下部背景） */
    .worry-footer::before, .worry-footer::after {
      content: '';
      position: absolute;
      left: -10%;
      width: 130%;
      height: 80px;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      pointer-events: none;
      opacity: 0.5;
    }
    .worry-footer::before {
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 80' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q125 20 250 45 T500 40 L500 80 L0 80 Z' fill='%2356d8e8' opacity='0.35'/%3E%3C/svg%3E");
    }
    .worry-footer::after {
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 80' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q150 35 300 55 T500 50 L500 80 L0 80 Z' fill='%2330c0d4' opacity='0.25'/%3E%3C/svg%3E");
    }
    /* =====================
       選ばれる理由セクション
    ===================== */
    .reason-section {
      padding: 32px 14px 36px;
      position: relative;
    }
    .reason-section-head {
      text-align: center;
      position: relative;
      margin-bottom: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reason-title-main {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      color: #1bb8cc;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.4;
    }
    .reason-paperplane {
      width: 30px;
      height: 30px;
      transform: rotate(15deg);
      opacity: 0.7;
    }
    /* カード */
    .reason-card {
      background: #fff;
      display: flex;
      flex-direction: column;
      margin-bottom: 12px;
      overflow: hidden;
      position: relative;
      padding: 10PX 0 10PX;
    }
    .reason-photo {
      width: 100%;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
    }
    .reason-photo img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
		border-radius: 10px;
    }
    /* REASON 番号バッジ（ダイヤ） */
    .reason-card .reason-badge {
      position: absolute;
      left: 10px;
      width: 52px;
      height: 52px;
      background: #fff;
      border: 1.5px solid #1bb8cc;
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .reason-badge-inner {
      transform: rotate(-45deg);
      text-align: center;
      color: #1bb8cc;
      font-family: 'Noto Sans JP', sans-serif;
      line-height: 1;
    }
    .reason-badge-inner .r-label {
      font-size: 8px;
      font-weight: 500;
      letter-spacing: 0.1em;
      display: block;
    }
    .reason-badge-inner .r-num {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 20px;
      font-weight: 600;
      display: block;
      margin-top: 3px;
    }
    .reason-content {
      flex: 1;
      padding: 14px 0 14px;
      display: flex;
      flex-direction: column;
    }
    .reason-card-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      color: #1bb8cc;
      font-size: 23px;
      font-weight: 600;
      line-height: 1.45;
      letter-spacing: 0.02em;
      padding-bottom: 10px;
      border-bottom: 1.5px dotted #b8dde5;
      margin-bottom: 10px;
		text-align: center;
    }
    .reason-card-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.85;
      color: #555;
      letter-spacing: 0.01em;
    }
/* ========== Container ========== */
.sim-section {
	padding: 0 14px 36px;
}
.sim-title-main {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      color: #1bb8cc;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.04em;
	text-align: center;
      line-height: 1.4;
	margin-bottom: 10px;
}
.sim-title-txt {
	text-align: center;
	font-size: 12px;
	color: #333;
	margin-bottom: 25px;
}

/* ========== Wrapper ========== */
.simulator {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== Controls Card ========== */
.simulator__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(27, 184, 204, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.control-group__label {
  font-size: 14px;
  font-weight: 500;
  color: #4a6570;
}

.control-group__value {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1bb8cc;
  letter-spacing: -0.01em;
}

/* ========== Slider ========== */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #ddeef2;
  outline: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1bb8cc;
  box-shadow: 0 2px 8px rgba(27, 184, 204, 0.25);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(27, 184, 204, 0.4);
}

.slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 3px solid #1bb8cc;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(27, 184, 204, 0.25);
  cursor: pointer;
}

/* ========== Rate Buttons ========== */
.control-group:last-child .control-group__label {
  display: block;
  margin-bottom: 12px;
}

.rate-buttons {
  display: flex;
  gap: 10px;
}

.rate-btn {
  flex: 1;
  padding: 12px 0;
  border: 1.5px solid #c8e8ed;
  border-radius: 50px;
  background: #fff;
  color: #7ab8c2;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
}

.rate-btn:hover {
  border-color: #1bb8cc;
  color: #1bb8cc;
	color: #fff;
}

.rate-btn--active {
  background: #1bb8cc;
  border-color: #1bb8cc;
  color: #fff;
  box-shadow: 0 3px 10px rgba(27, 184, 204, 0.35);
}

.rate-btn:active {
  transform: scale(0.97);
}

/* ========== Result Card ========== */
.result-card {
  background: #daf1f5;
  border-radius: 20px;
  padding: 22px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-top {
  display: flex;
  gap: 10px;
}

.result-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px 16px;
  border-radius: 14px;
}

.result-box--principal {
  background: rgba(255,255,255,0.55);
}

.result-box--total {
  background: #fff;
  box-shadow: 0 2px 8px rgba(27, 184, 204, 0.1);
}

.result-box__amount {
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: #1bb8cc;
  letter-spacing: -0.02em;
  line-height: 1;
}

.result-box__amount--total {
  font-size: 25px;
}

.result-box__label {
  font-size: 12px;
  color: #7aa8b0;
  font-weight: 500;
}

/* ========== Profit Box ========== */
.result-profit-box {
  background: #fff;
  border-radius: 14px;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(27, 184, 204, 0.08);
	flex: 1;
}

.result-profit__label {
  font-size: 12px;
  color: #7aa8b0;
  font-weight: 500;
}

.result-profit__amount {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #f06030;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ========== Bar Chart ========== */
.result-bar-section {
  padding: 4px 4px 0;
}

.result-bar__legend-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.result-bar__legend {
  font-size: 12px;
  font-weight: 700;
  color: #5a9aa5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-bar__legend::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.result-bar__legend--principal::before {
  background: #1bb8cc;
}

.result-bar__legend--profit::before {
  background: #56d4e4;
}

.result-bar__track {
  width: 100%;
  height: 18px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  background: rgba(255,255,255,0.4);
}

.result-bar__fill {
  height: 100%;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-bar__fill--principal {
  background: #1bb8cc;
}

.result-bar__fill--profit {
  background: #56d4e4;
}

.result-bar__note {
  margin-top: 10px;
  font-size: 11px;
  color: #7aa8b0;
  text-align: center;
}


    /* =====================
       CTAセクション
    ===================== */
    .cta-section {
      background: linear-gradient(180deg, #eaf6f9 0%, #d3eef5 100%);
      padding: 36px 0 40px;
      text-align: center;
      position: relative;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      height: 30px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 390 30' preserveAspectRatio='none'%3E%3Cpath d='M0 0 Q100 30 200 10 T390 15 L390 0 Z' fill='%23e8f0f5'/%3E%3C/svg%3E") no-repeat;
      background-size: 100% 100%;
    }
    .cta-heading {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 30px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .cta-heading .ac {
      color: #1bb8cc;
    }
    .cta-sub {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12.5px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 22px;
      letter-spacing: 0.02em;
    }
    /* LINE CTA（既存と同形） */
    .cta-section .btn-line-cta {
      margin-top: 0;
      margin-bottom: 20px;
    }
    /* OR 区切り */
    .cta-or {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 280px;
      margin: 0 auto 16px;
    }
    .cta-or::before, .cta-or::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(27, 184, 204, 0.35);
    }
    .cta-or span {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      color: #1bb8cc;
      letter-spacing: 0.1em;
    }
    /* 電話 */
    .cta-tel-wrap {
      background: #fff;
      border: 1.5px solid #1bb8cc;
      border-radius: 14px;
      padding: 14px 18px 16px;
      max-width: 500px;
		width: 90%;
      margin: 20px auto;
    }
    .cta-tel-label {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      color: #1bb8cc;
      font-weight: 700;
      letter-spacing: 0.06em;
      margin-bottom: 6px;
      text-align: center;
    }
    .cta-tel-num {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 32px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.02em;
      text-decoration: none;
      margin-bottom: 6px;
      line-height: 1;
    }
    .cta-tel-num svg {
      flex-shrink: 0;
    }
    .cta-tel-info {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 10.5px;
      color: #555;
      letter-spacing: 0.02em;
      line-height: 1.5;
      text-align: center;
    }
    /* =====================
       スタッフ紹介セクション
    ===================== */
    .staff-section {
      background: linear-gradient(180deg, #f1f8fa 0%, #e1f1f5 100%);
      padding: 38px 0 0px;
      position: relative;
      overflow: hidden;
    }
    .staff-head {
      text-align: center;
      margin-bottom: 18px;
      padding: 0 16px;
    }
    .staff-en {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #1bb8cc;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      letter-spacing: 0.45em;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .staff-en::before, .staff-en::after {
      content: '・ ・ ・ ・';
      font-size: 8px;
      letter-spacing: 2px;
      opacity: 0.85;
    }
    .staff-title-jp {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 42px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.06em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .staff-subtitle {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      color: #2a2a2a;
      letter-spacing: 0.04em;
      position: relative;
      display: inline-block;
      padding-bottom: 14px;
    }
    .staff-subtitle::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 8px;
      background-image: url("../images/deco-line1.png");
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    /* カルーセル */
    .staff-carousel {
      position: relative;
      padding: 0px 0 6px;
    }
    .staff-track {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding: 0 6%;
      padding: 8px 6% 14px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .staff-track::-webkit-scrollbar {
      display: none;
    }
    .staff-card {
      flex: 0 0 92%;
      scroll-snap-align: center;
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 22px rgba(20, 100, 130, 0.10);
      display: flex;
      flex-direction: column;
    }
    .staff-card-photo {
      width: 100%;
      aspect-ratio: 16 / 9;
      position: relative;
      flex-shrink: 0;
		height: 220px;
    }
    .staff-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
		object-position: top;
    }
    .staff-card-info {
      padding: 18px 18px 22px;
      display: flex;
      flex-direction: column;
    }
    .staff-card-titlerow {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }
    .staff-badge {
      background: #1bb8cc;
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.1em;
    }
    .staff-en-role {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 9.5px;
      color: #1a2a3a;
      letter-spacing: 0.03em;
    }
    .staff-name {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 26px;
      font-weight: 700;
      color: #1a2a3a;
      letter-spacing: 0.12em;
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .staff-role {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11.5px;
      color: #333;
      letter-spacing: 0.04em;
      padding-bottom: 10px;
      border-bottom: 1.5px dotted #b8dde5;
      margin-bottom: 12px;
    }
    .staff-message {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      line-height: 1.95;
      color: #444;
      letter-spacing: 0.02em;
    }
    /* 矢印ボタン */
    .staff-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #1bb8cc;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .staff-arrow.left {
      left: 8px;
    }
    .staff-arrow.right {
      right: 8px;
    }
    .staff-arrow svg {
      width: 14px;
      height: 14px;
    }
    /* ページネーションドット */
    .staff-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 8px;
    }
    .staff-dots i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(27, 184, 204, 0.30);
      display: block;
    }
    .staff-dots i.active {
      background: #1bb8cc;
    }
    /* 下部 LINE CTA */
    .staff-cta-wrap {
      position: relative;
      padding: 32px 18px 30px;
    }
    .staff-cta-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 390 120' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q97 5 195 25 T390 22 L390 120 L0 120 Z' fill='%2356d8e8' opacity='0.45'/%3E%3Cpath d='M0 50 Q130 25 260 45 T390 42 L390 120 L0 120 Z' fill='%2330c0d4' opacity='0.30'/%3E%3C/svg%3E") no-repeat center bottom;
      background-size: 100% 100%;
      pointer-events: none;
    }
    .staff-cta-wrap .cta-line-btn {
      position: relative;
      z-index: 2;
      margin: 0 auto;
    }
    /* =====================
       数字で見る510.rm
    ===================== */
    .stats-section {
      position: relative;
      padding: 0px 0 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(232, 244, 247, 0.92) 100%), #f1f8fa;
    }
    .stats-section .number-head {
      width: 100%;
    }
    /* 統計4カード */
    .stats-grid {
      padding: 30px 15px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }
    .stat-card {
      background: #fff;
      border-radius: 14px;
      padding: 14px 8px 18px;
      text-align: center;
      box-shadow: 0 3px 12px rgba(20, 100, 130, 0.07);
      position: relative;
    }
    .stat-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #1bb8cc;
      margin: -32px auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(27, 184, 204, 0.25);
    }
    .stat-card .pre {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #1a2a3a;
      line-height: 1.4;
      margin-bottom: 2px;
    }
    .stat-card .pre.t {
      color: #1bb8cc;
    }
    .stat-card .title-large {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: #1bb8cc;
      letter-spacing: 0.04em;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .stat-card .num-row {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      margin-bottom: 4px;
      line-height: 1;
    }
    .stat-card .num {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 45px;
      font-weight: 700;
      color: #c5a55a;
      letter-spacing: -0.02em;
      line-height: 1;
      /* 桁数による横揺れ防止 */
      font-variant-numeric: tabular-nums;
      display: inline-block;
      text-align: right;
    }
    .stat-card .num[data-count="8"] {
      min-width: 0.7em;
    }
    .stat-card .num[data-count="20"] {
      min-width: 1.4em;
    }
    .stat-card .num[data-count="3000"] {
      min-width: 2.8em;
    }
    .stat-card .unit {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #1a2a3a;
      line-height: 1.15;
    }
    .stat-card .unit small {
      font-size: 11px;
      font-weight: 500;
    }
    .stat-card .divider {
      border: none;
      border-top: 1.5px solid #c5a55a;
      width: 36px;
      margin: 8px auto;
      opacity: 0.6;
    }
    .stat-card .sub {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      color: #444;
      letter-spacing: 0.02em;
    }
    .stat-card .sub strong {
      font-size: 15px;
      font-weight: 700;
      color: #1a2a3a;
      letter-spacing: 0.04em;
    }
    .stat-card .tag {
      display: inline-block;
      border: 1px solid #c5a55a;
      color: #1a2a3a;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 4px;
      margin-top: 6px;
    }
    /* 街並みシルエット & コピー */
    .stats-footer {
      width: 100%;
      padding-top: 10px;
      background: #fff;
      margin-bottom: -5px;
    }
    /* =====================
       お客様の声セクション
    ===================== */
    .voice-section {
      background: #fff;
      padding: 36px 16px 30px;
      position: relative;
      overflow: hidden;
    }
    /* 装飾葉っぱ */
    .voice-leaf {
      position: absolute;
      width: 150px;
      opacity: 0.45;
      top: 0px;
    }
    .voice-leaf.l {
      left: 0px;
    }
    .voice-leaf.r {
      right: 0px;
      transform: scaleX(-1);
    }
    .voice-head {
      text-align: center;
      margin-bottom: 32px;
      position: relative;
    }
    .voice-sparkle {
      display: block;
      width: 50px;
      margin: 0 auto 4px;
    }
    .voice-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 38px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #1a2a3a;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .voice-title .ac {
      color: #1bb8cc;
      font-size: 44px;
    }
    .voice-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 4px 0 12px;
    }
    .voice-divider::before, .voice-divider::after {
      content: '';
      width: 30px;
      border-top: 1px dotted #1bb8cc;
    }
    .voice-divider svg {
      width: 12px;
      height: 12px;
    }
    .voice-subtitle {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      color: #444;
      letter-spacing: 0.06em;
    }
    /* 声カード */
    .voice-card {
      display: flex;
      gap: 0;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 18px rgba(20, 100, 130, 0.08);
      overflow: hidden;
      margin-bottom: 18px;
      align-items: stretch;
    }
    .voice-card.reverse {
      flex-direction: row-reverse;
    }
    .voice-photo {
      flex: 0 0 42%;
      background: linear-gradient(160deg, #e8f0f5 0%, #c8dde5 100%);
      min-height: 220px;
    }
    .voice-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .voice-content {
      flex: 1;
      padding: 16px 14px 16px;
      display: flex;
      flex-direction: column;
    }
    .voice-name-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }
    .voice-avatar img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #d8eef3;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .voice-name {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 600;
      color: #1bb8cc;
      letter-spacing: 0.04em;
    }
    .voice-name .san {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #1bb8cc;
      margin-left: 2px;
    }
    .voice-tag {
      display: inline-block;
      background: #1bb8cc;
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 30px;
      letter-spacing: 0.04em;
      line-height: 1.5;
      margin-bottom: 12px;
      align-self: flex-start;
    }
    .voice-divline {
      border: none;
      border-top: 1.5px dotted #b8dde5;
      margin-bottom: 10px;
    }
    .voice-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11.5px;
      line-height: 1.85;
      color: #444;
      letter-spacing: 0.02em;
		text-align: left;
    }
    /* =====================
       ご相談の流れ
    ===================== */
    .flow-section {
      background: linear-gradient(180deg, #f1f8fa 0%, #e8f4f7 100%);
      padding: 38px 18px 36px;
    }
    .flow-head {
      text-align: center;
      margin-bottom: 26px;
    }
    .flow-en {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #1bb8cc;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      letter-spacing: 0.4em;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .flow-en::before, .flow-en::after {
      content: '・ ・ ・ ・';
      font-size: 8px;
      letter-spacing: 2px;
      opacity: 0.85;
    }
    .flow-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 36px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.08em;
      line-height: 1.2;
    }
    .flow-step {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 3px 14px rgba(20, 100, 130, 0.08);
      padding: 20px 18px 20px;
      position: relative;
    }
    .flow-step-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .flow-step-badge {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: linear-gradient(160deg, #2bc6d8 0%, #1aafc0 100%);
      color: #fff;
      box-shadow: 0 4px 10px rgba(27, 184, 204, 0.28);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1;
      padding: 0;
    }
    .flow-step-badge .label {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.18em;
      margin-bottom: 4px;
      opacity: 0.95;
    }
    .flow-step-badge .num {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .flow-step-title {
      flex: 1;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 19px;
      font-weight: 600;
      color: #1bb8cc;
      letter-spacing: 0.03em;
      line-height: 1.35;
      margin: 0;
      padding: 0;
      border: none;
    }
    /* アイコン（薄い円背景あり） */
    .flow-step-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #e7f4f8;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .flow-step-icon svg {
      width: 30px;
      height: 30px;
    }
    .flow-step-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.85;
      color: #444;
      letter-spacing: 0.02em;
      padding-top: 12px;
      border-top: 1.5px dotted #b8dde5;
    }
    .flow-step-body a {
      color: #1bb8cc;
      text-decoration: none;
      font-weight: 700;
    }
    .flow-step-body a {
      color: #1bb8cc;
      text-decoration: none;
      font-weight: 700;
    }
    /* =====================
       取り扱い保険会社
    ===================== */
    .partner-section {
      background: #fff;
      padding: 38px 16px 36px;
      position: relative;
    }
    .partner-head {
      text-align: center;
      margin-bottom: 10px;
    }
    .partner-en {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #1bb8cc;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      letter-spacing: 0.4em;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .partner-en::before, .partner-en::after {
      content: '・ ・ ・ ・';
      font-size: 8px;
      letter-spacing: 2px;
      opacity: 0.85;
    }
    .partner-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 32px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.06em;
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .partner-subtitle {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      color: #444;
      letter-spacing: 0.04em;
      line-height: 1.7;
    }
    .partner-subtitle strong {
      color: #1bb8cc;
      font-weight: 700;
    }
    /* ロゴグリッド */
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      background: #f1f8fa;
      border: 1px solid #d3eaf0;
      border-radius: 12px;
      padding: 8px;
    }
    .partner-cell {
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 0px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
.partner-cell img {
	width: 150px;
}
    /* =====================
       よくあるご質問
    ===================== */
    .faq-section {
      background: linear-gradient(180deg, #f1f8fa 0%, #e8f4f7 100%);
      padding: 38px 16px 38px;
    }
    .faq-head {
      text-align: center;
      margin-bottom: 22px;
    }
    .faq-en {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #1bb8cc;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      letter-spacing: 0.4em;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .faq-en::before, .faq-en::after {
      content: '・ ・ ・ ・';
      font-size: 8px;
      letter-spacing: 2px;
      opacity: 0.85;
    }
    .faq-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 32px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.06em;
      line-height: 1.25;
    }
    .faq-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(20, 100, 130, 0.06);
      margin-bottom: 10px;
      overflow: hidden;
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 16px;
      position: relative;
    }
    .faq-item summary::-webkit-details-marker {
      display: none;
    }
    .faq-q-mark {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #1bb8cc;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 700;
    }
    .faq-q-text {
      flex: 1;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      color: #1a2a3a;
      letter-spacing: 0.02em;
      line-height: 1.5;
    }
    .faq-toggle {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      color: #1bb8cc;
      transition: transform 0.3s ease;
    }
    .faq-item[open] .faq-toggle {
      transform: rotate(180deg);
    }
    .faq-answer {
      display: flex;
      gap: 12px;
      padding: 4px 16px 18px;
      border-top: 1px dashed #d3eaf0;
      padding-top: 16px;
      align-items: flex-start;
    }
    .faq-a-mark {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px solid #1bb8cc;
      color: #1bb8cc;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 700;
    }
    .faq-a-text {
      flex: 1;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.85;
      color: #444;
      letter-spacing: 0.02em;
      padding-top: 4px;
		text-align: left;
    }
    /* =====================
       地図 / 会社情報
    ===================== */
    .info-section {
      background: #fff;
      padding: 0px 0 0 0;
    }
    .info-map {
      width: 100%;
      aspect-ratio: 16 / 11;
      background: #e0eef2;
      position: relative;
      overflow: hidden;
		padding: 30px 0;
    }
    .info-map iframe {
      width: 100%;
      height: 320px;
      border: 0;
      display: block;
		border-radius: 15px;
    }
    .info-map-placeholder {
      width: 90%;
      height: 100%;
		margin: 0 auto;
    }
    .info-body {
      padding: 26px 18px 30px;
    }
    .info-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 600;
      color: #1a2a3a;
      letter-spacing: 0.04em;
      line-height: 1.4;
      margin-bottom: 18px;
      text-align: center;
    }
    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
    }
    .info-table th, .info-table td {
      text-align: left;
      vertical-align: top;
      padding: 12px 4px;
      line-height: 1.7;
      border-top: 1px dotted #c0d8de;
    }
    .info-table tr:last-child th, .info-table tr:last-child td {
      border-bottom: 1px dotted #c0d8de;
    }
    .info-table th {
      width: 88px;
      font-weight: 700;
      color: #1bb8cc;
      letter-spacing: 0.06em;
    }
    .info-table td {
      color: #333;
      letter-spacing: 0.02em;
    }
    .info-table td .small {
      display: block;
      font-size: 11px;
      color: #666;
      margin-top: 2px;
    }
    /* =====================
       FOOTER
    ===================== */
    .site-footer {
      background: #1a2a3a;
      color: #fff;
      padding: 30px 18px 24px;
      text-align: center;
    }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 6px;
    }
    .footer-logo img {
      width: 150px;
    }
    .footer-logo .logo-text {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.05em;
    }
    .footer-company {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 18px;
      letter-spacing: 0.04em;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      letter-spacing: 0.04em;
      position: relative;
      padding: 0 4px;
    }
    .footer-links a + a::before {
      content: '|';
      position: absolute;
      left: -10px;
      opacity: 0.4;
    }
    .footer-copy {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 10.5px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.04em;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    /* =====================
       W特典プレゼント (画像準拠)
    ===================== */
    .gift-section {
      background: #fff;
      padding: 0 0 0 0;
      position: relative;
      overflow: hidden;
    }
    /* ============ バナー ============ */
    .gift-banner img {
      width: 100%;
		margin-bottom: 10px;
    }
    /* SPECIAL GIFT リボン */
    .gift-ribbon {
      position: relative;
      z-index: 2;
      margin: 22px auto 22px;
      width: 220px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.32em;
      background:
        linear-gradient(180deg, #6dd6e1 0%, #3fc4d3 100%);
      box-shadow: 0 3px 8px rgba(27, 184, 204, 0.22);
      clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
    }
    /* リボンの両端の影/凹み */
    .gift-ribbon-wrap {
      position: relative;
      z-index: 2;
    }
    .gift-ribbon-wrap::before, .gift-ribbon-wrap::after {
      content: '';
      position: absolute;
      top: 32px;
      width: 18px;
      height: 14px;
      background: #2a9aac;
      z-index: 1;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 100% 50%);
    }
    .gift-ribbon-wrap::before {
      left: calc(50% - 122px);
      transform: scaleX(-1);
    }
    .gift-ribbon-wrap::after {
      right: calc(50% - 122px);
    }
    /* タイトル */
    .gift-banner-title {
      position: relative;
      z-index: 1;
      text-align: center;
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      color: #1a2a3a;
      line-height: 1.32;
      padding: 0 8px 18px;
    }
    .gift-banner-title .pre {
      display: block;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 4px;
      position: relative;
    }
    /* キラキラ装飾(両端) */
    .gift-banner-title .pre::before, .gift-banner-title .pre::after {
      content: '';
      display: inline-block;
      width: 16px;
      height: 14px;
      vertical-align: middle;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14' fill='none'%3E%3Cpath d='M3 11 L5 3' stroke='%231bb8cc' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M8 12 L9.5 2' stroke='%231bb8cc' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M13 11 L11.5 3' stroke='%231bb8cc' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      margin: 0 6px;
    }
    .gift-banner-title .pre::after {
      transform: scaleX(-1);
    }
    .gift-banner-title .main {
      display: block;
      font-size: 36px;
      font-weight: 600;
      letter-spacing: 0.03em;
      position: relative;
      padding-bottom: 12px;
    }
    .gift-banner-title .main .ac {
      color: #1bb8cc;
    }
    .gift-banner-title .main::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 7px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 7' preserveAspectRatio='none'%3E%3Cpath d='M3 4 Q50 1 100 4 T197 4' stroke='%23c5a55a' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    /* ============ カード共通 ============ */
    .gift-cards {
      padding: 0 14px;
    }
    .gift-card {
      background: #fff;
      border: 1.5px solid #c2e0e8;
      border-radius: 18px;
      padding: 16px;
      margin-bottom: 16px;
      position: relative;
      box-shadow: 0 4px 14px rgba(20, 100, 130, 0.06);
    }
    /* 特典バッジ(円) */
    .gift-badge {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(180deg, #6dd6e1 0%, #3fc4d3 100%);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 8px rgba(27, 184, 204, 0.28);
      line-height: 1;
    }
    .gift-badge .lbl {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .gift-badge .num {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 18px;
      font-weight: 700;
    }
    .gift-card-title {
      font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: 24px;
      font-weight: 600;
      color: #1a2a3a;
      line-height: 1.32;
      letter-spacing: 0.02em;
    }
.gift-card-title .l-space {
	letter-spacing: -0.08em;
}
    /* ============ カード01 ============ */
    .gift-card.no01 .gift-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .gift-card.no01 .gift-card-photo {
      width: 100%;
      margin: 0 -16px 14px 0;
      aspect-ratio: 16 / 8;
      background: linear-gradient(160deg, #e1f1f5 0%, #c2e0e8 100%);
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }
.gift-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
    /* ハイライト枠（ゴールド） */
    .gift-highlight {
      text-align: center;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      color: #fff;
		background: #b59028;
      padding: 9px 12px;
      border: 1px solid #b59028;
      border-radius: 4px;
      margin-bottom: 8px;
      letter-spacing: 0.04em;
    }
    /* チェックリスト */
    .gift-list {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
    }
    .gift-list li {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #1a2a3a;
      letter-spacing: 0.01em;
      line-height: 1.55;
      padding: 10px 0 10px 30px;
      position: relative;
      border-bottom: 1px dotted #c2e0e8;
		text-align: left;
    }
    .gift-list li:last-child {
      border-bottom: none;
    }
    .gift-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 11px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #1bb8cc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5 L9 14 L15 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% 100%;
    }
    /* カード右下のミニアイコン */
    .gift-mini-icon {
      position: absolute;
      right: 10px;
      bottom: 10px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid #b8dde5;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gift-card-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.85;
      color: #333;
      letter-spacing: 0.01em;
		width: 90%;
		text-align: left;
    }
    .gift-card-body strong {
      color: #1bb8cc;
      font-weight: 700;
    }
    /* ============ Present フッター ============ */
    .gift-footer {
      text-align: center;
      padding: 24px 14px 28px;
      position: relative;
      background:
        radial-gradient(ellipse at 50% 100%, rgba(86, 216, 232, 0.30) 0%, transparent 70%), linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
    }
    .gift-present {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-family: 'Italianno', 'Dancing Script', cursive;
      font-size: 38px;
      color: #1a2a3a;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 10px;
      line-height: 1;
    }
    .gift-present::before, .gift-present::after {
      content: '';
      width: 28px;
      height: 1.4px;
      background: #1bb8cc;
    }
    .gift-footer-msg {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      color: #1a2a3a;
      letter-spacing: 0.04em;
      line-height: 1.7;
    }
    .gift-footer-leaf {
      position: absolute;
      bottom: 6px;
      right: 8px;
      width: 50px;
      opacity: 0.55;
      transform: rotate(20deg);
    }
    /* 矢印 */
    .flow-arrow {
      display: flex;
      justify-content: center;
      padding: 6px 0;
    }
    .flow-arrow svg {
      width: 22px;
      height: 16px;
      color: #1bb8cc;
    }
/* =====================
   PC専用 左右固定サイドバー
   （SPでは非表示、1024px以上で表示）
===================== */
.pc-side { display: none; }

@media (min-width: 1024px) {
  body {
    padding-left: 220px;
    padding-right: 240px;
    background: #f4f9fb;
  }
	.sp {
		display: none;
	}
  .lp-wrap {
    box-shadow: 0 0 30px rgba(0,0,0,0.06);
  }

  .pc-side {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 50;
    overflow-y: auto;
  }

  .pc-side-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* ----- LEFT ----- */
  .pc-side-left {
    left: 0;
    width: 220px;
    background: linear-gradient(180deg, #2bc6d8 0%, #1aafc0 100%);
    color: #fff;
  }

  .pc-side-left .pc-side-inner {
    padding: 28px 0 28px;
  }

  .pc-side-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 8px;
  }
  .pc-side-logo img {
    max-width: 140px;
    filter: brightness(0) invert(1);
  }
  .pc-side-logo .logo-fallback {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
  }

  .pc-anchor-nav {
    display: flex;
    flex-direction: column;
  }

  .pc-anchor-nav a {
    display: block;
    padding: 13px 22px 13px 28px;
    color: #fff;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    position: relative;
    transition: background 0.2s ease, padding-left 0.2s ease;
  }

  .pc-anchor-nav a::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
  }

  .pc-anchor-nav a::after {
    content: '›';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    opacity: 0.6;
    font-size: 16px;
  }

  .pc-anchor-nav a:hover {
    background: rgba(255,255,255,0.10);
    padding-left: 32px;
  }

  /* ----- RIGHT ----- */
  .pc-side-right {
    right: 0;
    width: 240px;
    background: #fff;
    border-left: 1px solid #e3eef2;
  }

  .pc-side-right .pc-side-inner {
    padding: 24px 16px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: center;
  }

  .pc-side-lead {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a2a3a;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .pc-qr {
    width: 160px;
    height: 160px;
    padding: 8px;
    border: 1px solid #e3eef2;
    border-radius: 8px;
    background: #fff;
    position: relative;
  }

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

  .pc-qr-fallback {
    width: 100%;
    height: 100%;
    display: block;
  }

  .pc-qr img[src=""],
  .pc-qr img:not([src]),
  .pc-qr img[style*="display: none"] + .pc-qr-fallback {
    display: block;
  }

  /* 画像が読み込めた場合はSVG非表示 */
  .pc-qr img:not([style*="display: none"]) ~ .pc-qr-fallback {
    display: none;
  }

  .pc-side-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #06C755;
    color: #fff;
    border-radius: 50px;
    padding: 12px 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
    letter-spacing: 0.02em;
  }
  .pc-side-line img {
    width: 26px;
    height: auto;
  }

  .pc-side-tel {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px dashed #cfdee2;
    width: 100%;
  }
  .pc-side-tel .lbl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: #1bb8cc;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .pc-side-tel a {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 21px;
    font-weight: 700;
    color: #1a2a3a;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .pc-side-tel .hours {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    color: #666;
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
	.result-numbers {
		display: flex;
  justify-content: space-between;
  gap: 8px;
	}
	
.result-item--total {
  border-left: 1px solid #cdeef3;
}

  /* スムーズスクロール */
  html { scroll-behavior: smooth; }
}
