  :root {
    --sky: #2A8DD3;
    --sky-light: #5BA9DD;
    --sky-pale: #E5F1FA;
    --navy: #143E68;
    --navy-deep: #0E2D4D;
    --orange: #F2994A;
    --orange-deep: #E07A1F;
    --orange-pale: #FFF1E2;
    --white: #FFFFFF;
    --bg: #F4F8FB;
    --text: #1A2E3E;
    --text-soft: #6B7B8A;
    --border: #DCE5EC;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* ============ HEADER ============ */
  header.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 44px; height: 44px;
    background: url('/logo-mark.png') center/contain no-repeat;
    flex-shrink: 0;
  }
  .brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--navy);
  }
  .brand-sub {
    font-size: 11px;
    color: var(--text-soft);
    margin-top: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .nav { display: flex; gap: 26px; }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.15s;
    white-space: nowrap;
  }
  .nav a:hover { color: var(--sky); }
  .header-ctas { display: flex; gap: 8px; align-items: center; }
  .btn-tel {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-tel:hover { background: var(--navy); color: var(--white); }
  .btn-tel::before { content: '☎'; font-size: 16px; }
  .btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(242,153,74,0.35);
    white-space: nowrap;
  }
  .btn-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
  @media (max-width: 1100px) { .nav { display: none; } }
  @media (max-width: 600px) {
    .brand-sub { display: none; }
    .brand-name { font-size: 18px; }
    .brand-mark { width: 36px; height: 36px; }
    .btn-tel { padding: 8px 14px; font-size: 12px; }
    .btn-cta { padding: 10px 16px; font-size: 12px; }
  }

  /* ============ HERO（写真右・テキスト左・左右余白十分） ============ */
  .hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
  }
  .hero {
    min-height: 780px;
  }
  .hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 82%;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    background: var(--white);
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      var(--white) 0%,
      rgba(255,255,255,0.99) 14%,
      rgba(255,255,255,0.92) 26%,
      rgba(255,255,255,0.7) 38%,
      rgba(255,255,255,0.35) 50%,
      rgba(255,255,255,0.08) 62%,
      transparent 72%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
  }
  .hero-text {
    max-width: 560px;
  }
  .hero-tag {
    display: inline-block;
    background: var(--sky-pale);
    color: var(--sky);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
  .hero-award {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #B87333 0%, #CD7F32 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    margin-left: 8px;
  }
  .hero-award::before { content: '🏆'; font-size: 13px; }
  .hero h1 {
    font-size: clamp(30px, 4.4vw, 54px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--sky); }
  .hero-sub {
    font-size: 16px;
    color: var(--text);
    line-height: 2.1;
    margin-bottom: 32px;
  }
  .hero-sub-row { display: flex; align-items: center; gap: 8px; }
  .hero-sub-row::before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
    font-size: 14px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
  .btn-cta-large {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(242,153,74,0.4);
  }
  .btn-cta-large:hover { background: var(--orange-deep); transform: translateY(-2px); }
  .btn-cta-large::before { content: '✉'; font-size: 18px; }
  .btn-tel-large {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s;
  }
  .btn-tel-large:hover { background: var(--navy); color: var(--white); }
  .btn-tel-large::before { content: '☎'; font-size: 18px; }
  .hero-note {
    font-size: 13px;
    color: var(--text-soft);
  }
  @media (max-width: 900px) {
    .hero { min-height: auto; display: block; }
    .hero-bg {
      position: relative;
      inset: auto;
      width: 100%;
      height: 260px;
    }
    .hero-bg img { object-position: center center; }
    .hero-bg::after { display: none; }
    .hero-inner { padding: 32px 20px 48px; display: block; justify-content: flex-start; }
    .hero-text { max-width: 100%; }
    .hero-tag, .hero-award { margin-bottom: 12px; }
    .hero h1 { font-size: 32px; }
  }

  /* ============ TARGET (こんな方にオススメ) ============ */
  .target {
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
    padding: 64px 0;
  }
  .target-head {
    text-align: center;
    margin-bottom: 32px;
  }
  .target-head h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.6;
  }
  .target-head h2 .em {
    background: linear-gradient(transparent 65%, var(--orange-pale) 65%);
    padding: 0 4px;
  }
  .target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto 24px;
  }
  .target-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
  }
  .target-card:hover {
    border-color: var(--sky);
    transform: translateY(-2px);
  }
  .target-card .num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--sky);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .target-card .text {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.5;
  }
  .target-pitch {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange-deep);
    margin-top: 8px;
  }
  .target-pitch::before, .target-pitch::after { content: '♪'; margin: 0 8px; opacity: 0.6; }
  @media (max-width: 700px) {
    .target-grid { grid-template-columns: 1fr; }
  }

  /* ============ PROOF BAND ============ */
  .proof-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding: 44px 0;
  }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .proof-card { position: relative; }
  .proof-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px; top: 20%;
    width: 1px; height: 60%;
    background: rgba(255,255,255,0.15);
  }
  .proof-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
  }
  .proof-num .star {
    color: var(--orange);
    font-size: 0.7em;
    margin-right: 4px;
  }
  .proof-num .unit {
    font-size: 0.4em;
    margin-left: 2px;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
  }
  .proof-num .medal {
    font-size: 0.85em;
    margin-right: 6px;
    filter: drop-shadow(0 2px 6px rgba(242,153,74,0.5));
  }
  .proof-label {
    font-size: 12px;
    margin-top: 8px;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.05em;
  }
  @media (max-width: 700px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .proof-card:nth-child(2)::after { display: none; }
  }

  /* ============ CAMPAIGN BANNER ============ */
  .campaign {
    padding: 24px 0;
    background: linear-gradient(135deg, #FFF8EE 0%, #FFEFD5 100%);
    border-bottom: 1px solid var(--border);
  }
  .campaign-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    flex-wrap: wrap;
  }
  .campaign-tag {
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .campaign-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
  }
  .campaign-text strong {
    color: var(--orange-deep);
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    margin: 0 4px;
  }
  .campaign-period {
    font-size: 12px;
    color: var(--text-soft);
  }

  /* ============ SECTIONS COMMON ============ */
  section.block { padding: 88px 0; }
  section.block.alt { background: var(--bg); }
  .section-head { text-align: center; margin-bottom: 56px; }
  .section-eyebrow {
    display: inline-block;
    color: var(--sky);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  .section-title .accent { color: var(--sky); }
  .section-sub {
    font-size: 15px;
    color: var(--text-soft);
    margin-top: 16px;
    line-height: 2;
  }

  /* ============ PRICING MATRIX ============ */
  .pricing-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(20,62,104,0.08);
    border: 1px solid var(--border);
  }
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
  }
  .pricing-table thead th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .pricing-table thead th:first-child { border-radius: 8px 0 0 8px; text-align: left; padding-left: 20px; }
  .pricing-table thead th:last-child { border-radius: 0 8px 8px 0; }
  .pricing-table tbody td {
    padding: 18px 12px;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .pricing-table tbody td:first-child {
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    color: var(--navy);
  }
  .pricing-table tbody tr:last-child td { border-bottom: none; }
  .pricing-table tbody td .sub {
    display: block;
    font-weight: 500;
    color: var(--text-soft);
    font-size: 11px;
    margin-top: 2px;
  }
  .price-yen {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--orange-deep);
  }
  .price-yen .small { font-size: 12px; color: var(--text-soft); font-weight: 700; margin-left: 2px; }
  .price-divider { color: var(--text-soft); font-size: 14px; }
  .options-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }
  .option-pill {
    background: var(--bg);
    color: var(--navy);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border);
  }
  .option-pill .opt-price {
    display: block;
    color: var(--orange-deep);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 14px;
    margin-top: 4px;
  }
  .pricing-claim {
    text-align: center;
    background: linear-gradient(135deg, rgba(42,141,211,0.08) 0%, rgba(242,153,74,0.08) 100%);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.7;
  }
  .pricing-claim strong { font-weight: 900; }
  @media (max-width: 768px) {
    .pricing-card { padding: 24px 16px; }
    .pricing-table thead th { font-size: 11px; padding: 10px 6px; }
    .pricing-table thead th:first-child { padding-left: 12px; }
    .pricing-table tbody td { padding: 14px 6px; font-size: 12px; }
    .pricing-table tbody td:first-child { padding-left: 12px; }
    .price-yen { font-size: 16px; }
    .options-row { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ MENU DETAIL (オプション・特殊メニュー) ============ */
  .menu-detail {
    max-width: 980px;
    margin: 32px auto 0;
  }
  .menu-detail-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sky);
    display: inline-block;
    width: 100%;
  }
  .menu-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .menu-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .menu-detail-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: var(--bg);
  }
  .menu-detail-body {
    padding: 22px 24px 24px;
  }
  .menu-detail-card h4 {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .menu-detail-card h4::before {
    content: '';
    width: 6px; height: 22px;
    background: var(--orange);
    border-radius: 3px;
  }
  .menu-detail-card .price-line {
    color: var(--orange-deep);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .menu-detail-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.9;
  }
  @media (max-width: 700px) {
    .menu-detail-grid { grid-template-columns: 1fr; }
  }

  /* ============ GALLERY (Before/After) ============ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .gallery-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(20,62,104,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(20,62,104,0.14);
  }
  .gallery-image-wrap { position: relative; }
  .gallery-image-wrap img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
  }
  .gallery-labels {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    pointer-events: none;
  }
  .gallery-labels span {
    align-self: start;
    justify-self: start;
    margin: 12px;
    background: rgba(20,62,104,0.85);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .gallery-labels span:nth-child(2) {
    justify-self: end;
    background: rgba(242,153,74,0.95);
  }
  .gallery-info { padding: 20px 22px 22px; }
  .gallery-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .gallery-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
  }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* ============ REASONS (5理由・アイコンなし) ============ */
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .reason-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 22px 28px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .reason-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .reason-card:hover {
    border-color: var(--sky);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(42,141,211,0.12);
  }
  .reason-card:hover::before { transform: scaleX(1); }
  .reason-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--sky);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }
  .reason-num .big {
    font-size: 32px;
    color: var(--navy);
    margin-left: 6px;
    letter-spacing: -0.02em;
  }
  .reason-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.4;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--sky-pale);
  }
  .reason-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.9;
  }
  @media (max-width: 1100px) {
    .reasons-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  }
  @media (max-width: 700px) {
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 460px) {
    .reasons-grid { grid-template-columns: 1fr; }
  }

  /* ============ PROMISE (約束する6つのこと) ============ */
  .promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .promise-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
  }
  .promise-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--sky-pale);
    line-height: 1;
  }
  .promise-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .promise-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .promise-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.95;
  }
  .promise-claim {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding: 32px 24px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(20,62,104,0.18);
  }
  .promise-claim h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .promise-claim h3 .em {
    color: var(--orange);
    font-family: 'Inter', sans-serif;
    font-size: 1.3em;
    margin: 0 4px;
  }
  .promise-claim p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 2;
  }
  @media (max-width: 900px) {
    .promise-grid { grid-template-columns: 1fr; }
  }

  /* ============ AREA ============ */
  .area-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .area-list-wrap h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .area-list-wrap h3::before { content: '📍'; font-size: 20px; }
  .area-prefs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .area-prefs span {
    background: var(--sky);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }
  .area-prefs span.partial {
    background: var(--white);
    color: var(--sky);
    border: 2px solid var(--sky);
  }
  .area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    margin-bottom: 24px;
    list-style: none;
  }
  .area-list li {
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
    border-bottom: 1px dotted var(--border);
  }
  .area-claim {
    background: var(--orange);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 28px rgba(242,153,74,0.3);
  }
  .area-claim strong {
    font-family: 'Inter', sans-serif;
    font-size: 1.5em;
    margin: 0 4px;
  }
  .area-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(20,62,104,0.1);
    background: var(--white);
    border: 1px solid var(--border);
  }
  .area-map-wrap img { width: 100%; height: auto; display: block; }
  .area-map-legend {
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 11px;
    color: var(--text-soft);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .area-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
  .area-map-legend .dot {
    width: 12px; height: 12px; border-radius: 50%;
  }
  .area-map-legend .full { background: var(--sky); }
  .area-map-legend .part { background: var(--sky-light); }
  .area-map-legend .hq { background: var(--orange); }
  @media (max-width: 900px) {
    .area-wrap { grid-template-columns: 1fr; gap: 32px; }
    .area-list { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ VOICES ============ */
  .voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .voice-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 24px 20px;
    border: 1px solid var(--border);
    position: relative;
  }
  .voice-card::before {
    content: '“';
    position: absolute;
    top: 4px; left: 16px;
    font-family: 'Inter', serif;
    font-size: 60px;
    line-height: 1;
    color: var(--sky);
    opacity: 0.18;
  }
  .voice-stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .voice-stars .rating {
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-left: 6px;
    font-size: 13px;
  }
  .voice-body {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 14px;
  }
  .voice-meta {
    font-size: 11px;
    color: var(--text-soft);
    border-top: 1px dotted var(--border);
    padding-top: 12px;
  }
  .voices-more {
    margin-top: 24px;
  }
  .voices-more summary {
    list-style: none;
    text-align: center;
    cursor: pointer;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    width: fit-content;
    margin: 0 auto;
    display: block;
  }
  .voices-more summary::-webkit-details-marker { display: none; }
  .voices-more summary::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 4px;
    color: var(--orange);
  }
  .voices-more[open] summary::after { content: ' ▲'; }
  .voices-more summary:hover { background: var(--navy); color: var(--white); }
  .voices-more summary:hover::after { color: var(--white); }
  .voices-more .voices-grid { margin-top: 24px; }
  @media (max-width: 700px) {
    .voices-grid { grid-template-columns: 1fr; }
  }

  /* ============ STAFF ============ */
  .staff-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: var(--text);
    line-height: 2;
  }
  .staff-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
  .staff-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
  }
  .staff-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-light) 0%, var(--sky) 100%);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 36px;
    position: relative;
  }
  .staff-photo-placeholder::after {
    content: 'PHOTO COMING SOON';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    white-space: nowrap;
  }
  .staff-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    margin-top: 30px;
    margin-bottom: 4px;
  }
  .staff-name-en {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .staff-role {
    display: inline-block;
    background: var(--bg);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .staff-quote {
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
    text-align: left;
  }
  .staff-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .staff-feature-pill {
    background: var(--white);
    border: 2px solid var(--sky-pale);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
  }
  .staff-feature-pill::before {
    content: '★';
    color: var(--orange);
    margin-right: 6px;
  }
  @media (max-width: 900px) {
    .staff-row { grid-template-columns: 1fr; }
    .staff-features { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ FLOW (4 Steps - イラストなし) ============ */
  .flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .flow-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 24px 28px;
    text-align: left;
    border: 1px solid var(--border);
    position: relative;
  }
  .flow-num {
    position: absolute;
    top: -16px; left: 24px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 6px 14px rgba(242,153,74,0.35);
  }
  .flow-step-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--sky);
    margin-bottom: 8px;
  }
  .flow-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sky-pale);
  }
  .flow-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.85;
  }
  @media (max-width: 900px) {
    .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  }
  @media (max-width: 460px) {
    .flow-grid { grid-template-columns: 1fr; }
  }

  /* ============ BUSINESS ============ */
  .business-card {
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .business-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(242,153,74,0.18) 0%, transparent 70%);
  }
  .business-tag {
    display: inline-block;
    background: rgba(242,153,74,0.18);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }
  .business-title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .business-desc {
    font-size: 14px;
    line-height: 2;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
  }
  .business-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
  }
  .business-features span::before {
    content: '✓ ';
    color: var(--orange);
    font-weight: 900;
  }
  .business-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(242,153,74,0.4);
  }
  .business-cta:hover { background: var(--orange-deep); transform: translateY(-2px); }
  .business-cta::after { content: '›'; font-size: 22px; line-height: 1; }
  .business-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .business-image img { width: 100%; height: auto; display: block; }
  @media (max-width: 900px) {
    .business-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  }

  /* ============ FAQ ============ */
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .faq-item[open] {
    border-color: var(--sky);
    box-shadow: 0 8px 24px rgba(42,141,211,0.1);
  }
  .faq-q {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    user-select: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::before {
    content: 'Q';
    font-family: 'Inter', sans-serif;
    width: 32px; height: 32px;
    background: var(--sky);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
  }
  .faq-q::after {
    content: '+';
    margin-left: auto;
    color: var(--orange);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.2s;
  }
  .faq-item[open] .faq-q::after { content: '−'; }
  .faq-a {
    padding: 4px 24px 22px 72px;
    font-size: 14px;
    color: var(--text);
    line-height: 2;
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before, .final-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,153,74,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta::before { top: -80px; left: -80px; width: 280px; height: 280px; }
  .final-cta::after { bottom: -60px; right: -60px; width: 220px; height: 220px; }
  .final-cta-eyebrow {
    color: var(--orange);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
  }
  .final-cta h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .final-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 2;
  }
  .final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .final-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 40px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    min-width: 240px;
    justify-content: center;
  }
  .final-btn.tel {
    background: var(--white);
    color: var(--navy);
  }
  .final-btn.tel::before { content: '☎'; font-size: 20px; }
  .final-btn.form {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(242,153,74,0.4);
  }
  .final-btn.form::before { content: '✉'; font-size: 18px; }
  .final-btn:hover { transform: translateY(-2px); }
  .final-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 2;
  }
  .final-meta strong { color: var(--white); font-weight: 700; }

  /* ============ FOOTER ============ */
  footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 24px;
    font-size: 12px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }
  .footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .footer-info { line-height: 2; }
  .footer-info strong { color: var(--white); font-weight: 700; }
  .footer-links { display: flex; flex-direction: column; gap: 8px; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    text-align: center;
    color: rgba(255,255,255,0.5);
  }
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ============ RENEWAL ADDITIONS ============ */
  section[id] { scroll-margin-top: 84px; }
  body { padding-bottom: 36px; }

  .header-tel-info { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; margin-right: 4px; }
  .header-tel-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 18px; color: var(--navy); white-space: nowrap; }
  .header-tel-hours { font-size: 10px; color: var(--text-soft); letter-spacing: 0.04em; white-space: nowrap; }
  .header-tel-icon { display: none; }
  @media (max-width: 700px) {
    .header-inner { gap: 12px; padding: 14px 14px; }
    .header-tel-info { display: none; }
    .header-tel-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--navy);
      color: var(--navy);
      font-size: 17px;
      flex-shrink: 0;
    }
    .header-ctas { gap: 8px; }
    .header-ctas .btn-cta { padding: 10px 12px; font-size: 12px; }
  }
  @media (max-width: 400px) {
    .header-ctas .btn-cta { padding: 10px 11px; font-size: 11px; }
  }
  @media (max-width: 360px) {
    .brand-name { font-size: 16px; }
    .brand-mark { width: 32px; height: 32px; }
    .header-ctas .btn-cta { padding: 9px 10px; }
  }

  .hero-award.hero-no1 {
    background: linear-gradient(135deg, #A87718 0%, #D4A017 45%, #F0C75E 100%);
    box-shadow: 0 4px 14px rgba(212,160,23,0.4);
  }
  .hero-no1-note { display: block; font-size: 10px; color: var(--text-soft); margin: 2px 0 14px; letter-spacing: 0.02em; }

  .no1-ribbon { text-align: center; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .no1-ribbon-main { font-size: clamp(18px, 2.4vw, 27px); font-weight: 900; letter-spacing: 0.04em; }
  .no1-ribbon-main strong {
    font-family: 'Inter', sans-serif;
    font-size: 1.4em;
    margin-left: 8px;
    background: linear-gradient(135deg, #F0C75E 0%, #FFE9A8 50%, #D4A017 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .no1-ribbon-note { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 8px; }

  .cta-band { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%); padding: 36px 0; }
  .cta-band-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center; }
  .cta-band-text { color: var(--white); font-size: clamp(17px, 2.2vw, 22px); font-weight: 900; }

  .contact-form, .form-done {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 880px;
    margin: 0 auto 32px;
    text-align: left;
    color: var(--text);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    position: relative;
    z-index: 2;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field-wide { grid-column: 1 / -1; }
  .form-field label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .form-field .req, .form-field .opt { font-size: 10px; font-weight: 700; border-radius: 4px; padding: 2px 6px; margin-left: 6px; }
  .form-field .req { background: var(--orange); color: var(--white); }
  .form-field .opt { background: var(--bg); color: var(--text-soft); }
  .form-field input, .form-field select, .form-field textarea {
    font-family: inherit;
    font-size: 16px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    min-height: 48px;
    width: 100%;
    transition: border-color 0.15s;
  }
  .form-field textarea { min-height: 110px; resize: vertical; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--sky); }
  .form-field.invalid input { border-color: #D64545; }
  .field-error { display: none; font-size: 11px; color: #D64545; margin-top: 5px; }
  .form-field.invalid .field-error { display: block; }
  .hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
  .form-consent { font-size: 12px; color: var(--text-soft); margin: 22px 0 0; text-align: center; }
  .form-consent a { color: var(--sky); text-decoration: underline; }
  .form-error { background: #FDECEC; color: #B33333; border: 1px solid #F5C6C6; border-radius: 10px; padding: 12px 16px; font-size: 13px; margin: 16px 0 0; text-align: center; }
  .form-error a { color: #B33333; font-weight: 900; }
  .form-submit {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 18px auto 0;
    background: var(--orange);
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    padding: 18px 24px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(242,153,74,0.4);
    transition: all 0.2s;
  }
  .form-submit:hover { background: var(--orange-deep); transform: translateY(-1px); }
  .form-submit:disabled { opacity: 0.6; transform: none; cursor: wait; }
  .form-note { font-size: 12px; color: var(--text-soft); text-align: center; margin-top: 12px; }
  .form-done { text-align: center; padding: 60px 40px; }
  .form-done-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--sky); color: var(--white); font-size: 30px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
  .form-done h3 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
  .form-done p { font-size: 14px; line-height: 2; }
  .form-done a { color: var(--sky); font-weight: 700; }
  .final-btn.line { background: #06C755; color: #fff; box-shadow: 0 8px 24px rgba(6,199,85,0.4); flex-direction: column; gap: 2px; }
  .final-btn.line::before { content: ''; }
  .final-btn .final-btn-sub { display: block; font-size: 10px; font-weight: 500; opacity: 0.75; margin-top: 2px; }
  .final-btn.tel { flex-direction: column; gap: 2px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 19px; }
  @media (max-width: 700px) {
    .form-grid { grid-template-columns: 1fr; }
    .contact-form, .form-done { padding: 28px 18px; }
  }

  .staff-card { text-align: left; position: relative; padding-top: 56px; }
  .staff-quote-mark { position: absolute; top: 12px; left: 22px; font-family: Georgia, serif; font-size: 64px; line-height: 1; color: var(--sky); opacity: 0.25; }
  .staff-card .staff-quote { margin-bottom: 18px; }
  .staff-ident { border-top: 2px solid var(--sky-pale); padding-top: 14px; }
  .staff-card .staff-name { margin-top: 0; }

  .area-osaka-note { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--navy); background: var(--sky-pale); border-radius: 10px; padding: 10px 16px; text-align: center; }

  .mobile-cta { display: none; }
  @media (max-width: 768px) {
    body { padding-bottom: 100px; }
    .mobile-cta {
      position: fixed;
      left: 0; right: 0; bottom: 34px;
      z-index: 9998;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border-top: 1px solid var(--border);
      transition: transform 0.25s, opacity 0.25s;
    }
    .mobile-cta.hidden { transform: translateY(130%); opacity: 0; pointer-events: none; }
    .mobile-cta a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 9px 6px 8px;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.3;
      min-height: 54px;
    }
    .mobile-cta a span { font-size: 9.5px; font-weight: 500; opacity: 0.8; }
    .mobile-cta-tel { background: var(--white); color: var(--navy); }
    .mobile-cta-form { background: var(--orange); color: var(--white); }
    body.banner-closed .mobile-cta { bottom: 0; }
  }

  .sample-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(14,45,77,0.96);
    color: #fff;
    padding: 8px 42px 8px 14px;
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.03em;
    border-top: 2px solid var(--orange);
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sample-banner strong { color: var(--orange); }
  .sample-banner-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    width: 26px;
    height: 26px;
    line-height: 1;
    border-radius: 50%;
  }
  .sample-banner-close:hover { background: rgba(255,255,255,0.15); }

/* ===================================================================== */
/* ============ STEP2 追加コンポーネント =============================== */
/* ===================================================================== */

/* ---- ナビ：対応エリアのドロップダウン ---- */
.nav .has-sub { position: relative; }
.nav .has-sub > a::after { content: '▾'; font-size: 10px; margin-left: 4px; }
.nav-sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 12px 30px rgba(20,62,104,0.12); padding: 8px; min-width: 170px;
  opacity: 0; visibility: hidden; transition: all 0.15s; z-index: 120;
}
.nav .has-sub:hover .nav-sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.nav-sub a { display: block; padding: 8px 12px; border-radius: 7px; font-size: 13px; white-space: nowrap; }
.nav-sub a:hover { background: var(--sky-pale); color: var(--sky); }

/* ---- パンくず ---- */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); }
.breadcrumb .container { padding-top: 12px; padding-bottom: 12px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--text-soft); }
.breadcrumb li::after { content: '›'; margin-left: 8px; opacity: 0.6; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb li[aria-current] { color: var(--navy); font-weight: 700; }

/* ---- 下層ページ・ヒーロー ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); padding: 56px 0; }
.page-hero .eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.15em; color: var(--sky-light); }
.page-hero h1 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; line-height: 1.35; margin: 10px 0; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.9; max-width: 720px; }

/* ---- デモ／サンプル明示のインライン注記 ---- */
.demo-note { background: var(--orange-pale); border: 1px solid #F0CFA6; color: var(--orange-deep); border-radius: 12px; padding: 14px 18px; font-size: 13px; line-height: 1.7; font-weight: 600; margin: 0 auto 28px; max-width: 980px; }
.demo-note strong { font-weight: 900; }

/* ---- 予約方式 比較表 ---- */
.compare-wrap { max-width: 980px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(20,62,104,0.08); border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: top; }
.compare-table thead th { background: var(--navy); color: var(--white); font-size: 14px; }
.compare-table thead th.reco { background: var(--orange-deep); }
.compare-table tbody th { background: var(--bg); color: var(--navy); font-weight: 700; width: 120px; }
.compare-table .reco-col { background: rgba(242,153,74,0.06); }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.reco-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
@media (max-width: 700px) {
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 12px; }
  .compare-table tbody th { width: 78px; }
}

/* ---- 空き状況カレンダー ---- */
.cal-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: 0 16px 40px rgba(20,62,104,0.07); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border); background: var(--white); color: var(--navy); font-size: 16px; font-weight: 700; transition: all 0.15s; }
.cal-nav button:hover:not(:disabled) { background: var(--sky-pale); border-color: var(--sky); color: var(--sky); }
.cal-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--text-soft); margin-bottom: 14px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 5px; }
.cal-legend i { font-style: normal; font-weight: 900; }
.cal-legend .s-o { color: var(--sky); }
.cal-legend .s-t { color: var(--orange-deep); }
.cal-legend .s-x { color: var(--text-soft); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: 11px; font-weight: 700; color: var(--text-soft); padding: 4px 0; }
.cal-dow.sun { color: #D64545; }
.cal-dow.sat { color: var(--sky); }
.cal-cell { aspect-ratio: 1/1; border: 1px solid var(--border); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: var(--white); transition: all 0.12s; min-height: 46px; }
.cal-cell .d { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
.cal-cell .mk { font-size: 16px; font-weight: 900; line-height: 1; }
.cal-cell.empty { border: none; background: transparent; }
.cal-cell.past { background: var(--bg); opacity: 0.5; }
.cal-cell.past .d { color: var(--text-soft); }
.cal-cell.s-o { cursor: pointer; }
.cal-cell.s-o .mk { color: var(--sky); }
.cal-cell.s-t { cursor: pointer; }
.cal-cell.s-t .mk { color: var(--orange-deep); }
.cal-cell.s-x .mk { color: var(--text-soft); }
.cal-cell.s-o:hover, .cal-cell.s-t:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(42,141,211,0.18); }
.cal-cell.selected { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.cal-note { font-size: 11px; color: var(--text-soft); margin-top: 14px; text-align: center; }
@media (max-width: 700px) {
  .cal-wrap { padding: 16px; }
  .cal-cell { min-height: 40px; border-radius: 8px; }
  .cal-cell .d { font-size: 11px; }
  .cal-cell .mk { font-size: 14px; }
}

/* ---- 予約フォーム：後日確定の安心枠＋バッジ ---- */
.reserve-assure { max-width: 760px; margin: 28px auto 0; background: var(--sky-pale); border: 1px solid #BFE0F4; border-radius: 14px; padding: 18px 22px; }
.reserve-assure p { font-size: 13px; color: var(--navy); line-height: 1.8; }
.reserve-assure strong { font-weight: 900; }
.assure-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.assure-badges span { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--navy); }
.assure-badges span::before { content: '✓ '; color: var(--orange); font-weight: 900; }

/* 予約3ステップバー（target-card流用ベース） */
.flow-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 880px; margin: 0 auto 36px; }
.flow-mini .target-card { align-items: flex-start; flex-direction: column; gap: 8px; }
.flow-mini .target-card .text { font-size: 13px; }
.flow-mini .target-card .desc { font-size: 12px; color: var(--text-soft); font-weight: 500; line-height: 1.6; }
@media (max-width: 700px) { .flow-mini { grid-template-columns: 1fr; } }

/* ---- 時間帯ボタン（カレンダー型デモ） ---- */
.slot-wrap { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: 0 16px 40px rgba(20,62,104,0.07); }
.slot-label { font-size: 13px; font-weight: 700; color: var(--navy); margin: 18px 0 10px; }
.slot-row { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-btn { border: 1.5px solid var(--border); background: var(--white); border-radius: 10px; padding: 12px 18px; font-size: 14px; font-weight: 700; color: var(--navy); transition: all 0.12s; }
.slot-btn:hover:not(:disabled) { border-color: var(--sky); background: var(--sky-pale); }
.slot-btn.selected { border-color: var(--orange); background: var(--orange); color: var(--white); }
.slot-btn:disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.slot-summary { background: var(--bg); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--navy); margin: 18px 0; min-height: 50px; }
.slot-summary strong { color: var(--orange-deep); }

/* ---- デモ：仮予約完了モーダル ---- */
.demo-modal { position: fixed; inset: 0; background: rgba(14,45,77,0.6); display: none; align-items: center; justify-content: center; z-index: 9998; padding: 20px; }
.demo-modal.open { display: flex; }
.demo-modal-card { background: var(--white); border-radius: 18px; max-width: 420px; width: 100%; padding: 36px 30px; text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.3); }
.demo-modal-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--sky); color: var(--white); font-size: 32px; display: flex; align-items: center; justify-content: center; }
.demo-modal-card h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.demo-modal-card .resno { font-family: 'Inter', sans-serif; font-weight: 800; color: var(--orange-deep); margin-bottom: 12px; }
.demo-modal-card p { font-size: 13px; color: var(--text-soft); line-height: 1.8; margin-bottom: 8px; }
.demo-modal-card .demo-tag { display: inline-block; background: var(--orange-pale); color: var(--orange-deep); font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 6px; margin-bottom: 14px; }
.demo-modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

/* ---- ご紹介プログラム ---- */
.ref-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.ref-step { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; position: relative; }
.ref-step .n { width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%; background: var(--sky); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.ref-step h3 { font-size: 15px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.ref-step p { font-size: 13px; color: var(--text-soft); line-height: 1.8; }
.ref-step .pay { color: var(--orange-deep); font-weight: 900; }
.ref-benefit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 36px auto 0; }
.ref-benefit-card { border-radius: 16px; padding: 26px; text-align: center; color: var(--white); }
.ref-benefit-card.giver { background: linear-gradient(135deg, var(--sky) 0%, #1F6FA8 100%); }
.ref-benefit-card.taker { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); }
.ref-benefit-card .who { font-size: 13px; font-weight: 700; opacity: 0.9; }
.ref-benefit-card .amt { font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 900; margin: 6px 0; }
.ref-note { max-width: 760px; margin: 28px auto 0; font-size: 12px; color: var(--text-soft); line-height: 1.9; background: var(--bg); border-radius: 12px; padding: 18px 22px; }
.ref-note strong { color: var(--navy); }
@media (max-width: 700px) { .ref-steps { grid-template-columns: 1fr; } .ref-benefit { grid-template-columns: 1fr; } }

/* ---- フィルタチップ（事例ギャラリー） ---- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.filter-chip { border: 1.5px solid var(--border); background: var(--white); border-radius: 999px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--navy); transition: all 0.12s; }
.filter-chip:hover { border-color: var(--sky); }
.filter-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-card.hide { display: none; }

/* ---- 関連リンク（回遊） ---- */
.related-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.related-links a { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 10px 20px; font-size: 13px; font-weight: 700; color: var(--navy); transition: all 0.15s; }
.related-links a:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-1px); }

/* ---- 地域ページ：情報テーブル ---- */
.area-facts { max-width: 760px; margin: 0 auto; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.area-facts dl { display: grid; grid-template-columns: 140px 1fr; background: var(--white); }
.area-facts dt { background: var(--bg); padding: 14px 18px; font-size: 13px; font-weight: 700; color: var(--navy); }
.area-facts dd { padding: 14px 18px; font-size: 14px; color: var(--text); }
@media (max-width: 600px) { .area-facts dl { grid-template-columns: 96px 1fr; } .area-facts dt, .area-facts dd { padding: 11px 12px; font-size: 12px; } }

/* ============ スクロール演出（STEP2追加・reduced-motion時は無効） ============ */
@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
  }
  .rv.in { opacity: 1; transform: none; }

  /* ヒーロー初回ロード（トップ） */
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  .hero-text { opacity: 0; transform: translateY(24px); animation: heroIn .9s cubic-bezier(.22,1,.36,1) .08s forwards; }

  /* 下層ページヒーロー初回ロード */
  .page-hero .eyebrow, .page-hero h1, .page-hero p { opacity: 0; transform: translateY(18px); animation: heroIn .8s cubic-bezier(.22,1,.36,1) forwards; }
  .page-hero .eyebrow { animation-delay: .05s; }
  .page-hero h1 { animation-delay: .14s; }
  .page-hero p { animation-delay: .24s; }
}

/* ヘッダー：スクロールで影 */
header.site-header { transition: box-shadow .25s ease; }
body.scrolled header.site-header { box-shadow: 0 6px 24px rgba(20,62,104,0.10); }

/* 施工事例：ホバーで写真がじわっとズーム */
.gallery-image-wrap { overflow: hidden; }
.gallery-image-wrap img { transition: transform .55s cubic-bezier(.22,1,.36,1); }
.gallery-card:hover .gallery-image-wrap img { transform: scale(1.05); }
