  :root {
    --blue-dark:   #2a4a70;
    --blue-main:   #3a7ab8;
    --blue-mid:    #5a9ad0;
    --blue-light:  #8bbdda;
    --blue-pale:   #d0e8f5;
    --blue-bg:     #eef6fb;
    --yellow:      #f0a500;
    --yellow-l:    #f7c84a;
    --red:         #cc3a2a;
    --red-l:       #e85a48;
    --red-pale:    #fdecea;
    --cream:       #fffcf5;
    --cream-dark:  #fff8e8;
    --text-dark:   #1a2b3c;
    --text-mid:    #3a546a;
    --text-light:  #7a96aa;
    --white:        #ffffff;
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    28px;
    --radius-xl:    48px;
    --shadow-sm:    0 2px 12px rgba(30,58,95,.08);
    --shadow-md:    0 6px 28px rgba(30,58,95,.12);
    --shadow-lg:    0 16px 48px rgba(30,58,95,.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
  }

  img { display: block; width: 100%; }

  /* ─────────────────────────────
     HEADER
  ───────────────────────────── */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,247,242,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,74,112,.12);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .header-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .header-logo-sub {
    font-size: 10px;
    line-height: 1.5;
    color: var(--text-light);
    letter-spacing: .08em;
    font-weight: 400;
  }

  .header-logo-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-dark);
    letter-spacing: .04em;
    line-height: 1.2;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-main);
    color: var(--white);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .03em;
    transition: background .2s;
    white-space: nowrap;
  }

  .btn-tel:hover { background: var(--blue-dark); }
  .btn-tel svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ─────────────────────────────
     HERO
  ───────────────────────────── */
  .hero {
    padding-top: 72px;
    background:
      url('./images/hero-sample01.webp') center / cover no-repeat,
      linear-gradient(160deg, #2255a0 0%, #3a7ab8 50%, #5a9ad0 100%);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-photo-area {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.28) 0%,
      rgba(0,0,0,.52) 60%,
      rgba(0,0,0,.72) 100%
    );
  }

  .hero-photo-placeholder {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 24px 48px;
  }

  .hero-label {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    letter-spacing: .15em;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
  }

  .hero-catch {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
  }

  .hero-catch em {
    font-style: normal;
    color: var(--yellow-l);
    font-size: 1.1em;
  }

  .hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 400px;
  }

  .hero-cards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .hero-card {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-card-dot {
    width: 6px; height: 6px;
    background: var(--yellow-l);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue-dark);
    text-decoration: none;
    padding: 16px 28px;
    border-radius: var(--radius-xl);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: var(--shadow-lg);
    transition: transform .2s, box-shadow .2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
  }

  .btn-primary svg { width: 18px; height: 18px; }

  .hero-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    letter-spacing: .15em;
  }

  .hero-scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,.3);
  }

  /* ─────────────────────────────
     SECTION COMMON
  ───────────────────────────── */
  .section {
    padding: 72px 24px;
  }

  .section-alt {
    background: var(--cream-dark);
  }

  .section-green {
    background: var(--blue-dark);
    color: var(--white);
  }

  .section-pale {
    background: var(--blue-bg);
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--blue-main);
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--blue-main);
    border-radius: 2px;
  }

  .section-label-white {
    color: var(--yellow-l);
  }

  .section-label-white::before {
    background: var(--yellow-l);
  }

  .section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(27px, 7vw, 37px);
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 12px;
  }

  .section-title-white {
    color: var(--white);
  }

  .section-desc {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 40px;
  }

  .section-desc-white {
    color: rgba(255,255,255,.75);
  }

  /* ─────────────────────────────
     CONCERNS
  ───────────────────────────── */
  .concerns-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .concern-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--blue-light);
  }

  .concern-icon {
    width: 36px; height: 36px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }

  .concern-text {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
  }

  .concerns-answer {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: var(--white);
    text-align: center;
  }

  .concerns-answer-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .concerns-answer-text {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
  }

  /* ─────────────────────────────
     FEATURES
  ───────────────────────────── */
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
  }

  .feature-card-head {
    background: var(--blue-main);
    padding: 20px 24px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .feature-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: rgba(255,255,255,.25);
    line-height: 1;
    min-width: 44px;
  }

  .feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
  }

  .feature-body {
    padding: 20px 24px;
  }

  .feature-desc {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 14px;
  }

  .feature-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    letter-spacing: .06em;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  /* ─────────────────────────────
     STAFF / PT OT ST
  ───────────────────────────── */
  .staff-intro {
    background: var(--blue-pale);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
  }

  .staff-intro-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
  }

  .staff-intro-text {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .staff-roles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  .staff-role-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-top: 3px solid var(--blue-main);
  }

  .staff-role-badge {
    background: var(--blue-main);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    line-height: 1.3;
    text-align: center;
    min-width: 44px;
    flex-shrink: 0;
  }

  .staff-role-content {}

  .staff-role-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
  }

  .staff-role-sub {
    font-size: 15px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 8px;
  }

  .staff-role-list {
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
  }
  .staff-role-list li {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-mid);
    padding: 3px 0 3px 1.2em;
    position: relative;
  }
  .staff-role-list li::before {
    content: '・';
    position: absolute;
    left: 0;
  }

  .staff-role-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .staff-count {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
  }

  .staff-count-title {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    letter-spacing: .1em;
  }

  .staff-count-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .staff-count-item {
    background: rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .staff-count-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--yellow-l);
    line-height: 1;
  }
  .staff-count-num .unit {
    font-size: 0.5em;
    font-weight: 700;
    margin-left: 1px;
  }

  .staff-count-label {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
  }

  /* Staff member cards */
  .staff-members {
    margin-top: 28px;
  }

  .staff-members-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
  }

  .staff-member-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .staff-member-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .staff-member-photo {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--blue-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    font-size: 12px;
    text-align: center;
    border: 2px solid var(--blue-light);
  }

  .staff-member-info {}

  .staff-member-role {
    font-size: 14px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 2px;
  }

  .staff-member-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
  }

  .staff-member-comment {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    border-left: 2px solid var(--blue-pale);
    padding-left: 10px;
  }

  /* ─────────────────────────────
     SERVICES
  ───────────────────────────── */
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .service-card-head {
    padding: 24px 24px 20px;
    position: relative;
  }

  .service-card-head-piccolo {
    background: linear-gradient(135deg, #5a9e82, #3a7460);
  }

  .service-card-head-poco {
    background: linear-gradient(135deg, #6e87a0, #445e78);
  }

  .service-age {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-xl);
    margin-bottom: 10px;
    letter-spacing: .08em;
  }

  .service-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: 4px;
  }

  .service-name-ja {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    letter-spacing: .06em;
  }

  .service-card-body {
    padding: 22px 24px;
  }

  .service-desc {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .service-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }

  .service-table tr {
    border-bottom: 1px solid var(--cream-dark);
  }

  .service-table tr:last-child {
    border-bottom: none;
  }

  .service-table th {
    text-align: left;
    padding: 10px 0;
    color: var(--text-light);
    font-weight: 500;
    width: 40%;
    vertical-align: top;
  }

  .service-table td {
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
  }

  /* ─────────────────────────────
     DAY FLOW
  ───────────────────────────── */
  .flow-list {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .flow-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red-l), var(--red-pale));
  }

  .flow-item {
    display: flex;
    gap: 20px;
    padding: 0 0 28px 0;
    position: relative;
  }

  .flow-item:last-child {
    padding-bottom: 0;
  }

  .flow-dot {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--blue-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -.02em;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--blue-pale);
  }

  .flow-content {
    padding-top: 8px;
    flex: 1;
  }

  .flow-time {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 2px;
  }

  .flow-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
  }

  .flow-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* タブ切り替え */
  .flow-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
  }

  .flow-tab {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid var(--blue-pale);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all .2s;
    line-height: 1.3;
    font-family: inherit;
  }

  .flow-tab.active {
    background: var(--blue-main);
    border-color: var(--blue-main);
    color: var(--white);
  }

  .flow-tab-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: .8;
  }

  .flow-panel {
    animation: fadein .25s ease;
  }

  @keyframes fadein {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* 切り替えヒント */
  .flow-switch-hint {
    font-size: 13px;
    color: var(--blue-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: .03em;
    opacity: .75;
  }

  .flow-switch-hint--day {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 16px;
    margin-top: -4px;
  }

  /* 平日/土曜 サブタブ */
  .flow-day-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
  }

  .flow-day-tab {
    padding: 7px 18px;
    border: 1.5px solid var(--blue-pale);
    border-radius: 20px;
    background: var(--white);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
  }

  .flow-day-tab.active {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
    color: var(--white);
  }

  .flow-day-panel {
    animation: fadein .2s ease;
  }

  /* プレースホルダー */
  .flow-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 14px;
    border: 2px dashed var(--blue-pale);
    border-radius: 10px;
  }

  /* 午前/午後の注記 */
  .flow-ampm-note {
    font-size: 13px;
    color: var(--text-light);
    background: var(--blue-pale);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* サブ活動リスト */
  .flow-sub-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }

  .flow-sub-item {
    font-size: 13px;
    background: var(--blue-pale);
    color: var(--blue-dark);
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 600;
  }

  /* ─────────────────────────────
     HOW TO START / 費用
  ───────────────────────────── */
  .cost-highlight {
    background: linear-gradient(135deg, var(--yellow), #c47840);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    margin-bottom: 24px;
    text-align: center;
  }

  .cost-highlight-label {
    font-size: 14px;
    letter-spacing: .15em;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
  }

  .cost-highlight-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .cost-highlight-sub {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
  }

  .steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }

  .step-num {
    width: 36px; height: 36px;
    background: var(--blue-main);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-content {}

  .step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 3px;
  }

  .step-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ─────────────────────────────
     FAQ
  ───────────────────────────── */
  .faq-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
  }
  .faq-q:hover {
    background: rgba(0,0,0,.04);
  }

  .faq-q-icon {
    width: 24px; height: 24px;
    background: var(--blue-main);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .faq-q-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    flex: 1;
  }

  .faq-chevron {
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.3s ease;
    color: var(--text-mid);
  }
  .faq-q.active .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-a {
    display: none;
    padding: 0 20px 18px 56px;
  }

  .faq-a.open {
    display: block;
  }

  .faq-a-text {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    border-top: 1px solid var(--cream-dark);
    padding-top: 14px;
  }

  /* ─────────────────────────────
     CONTACT / ACCESS
  ───────────────────────────── */
  .contact-section {
    background: linear-gradient(160deg, #1e3a6a 0%, #2a4a80 100%);
    padding: 72px 24px;
    color: var(--white);
  }

  .contact-tel-block {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 24px;
  }

  .contact-tel-label {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    letter-spacing: .1em;
    margin-bottom: 14px;
  }

  .contact-tel-number {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: 6px;
  }

  .contact-tel-hours {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
  }

  .btn-tel-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue-dark);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .2s;
  }

  .btn-tel-large:hover { transform: scale(1.02); }

  .contact-note {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    text-align: center;
    margin-top: 10px;
    line-height: 1.7;
  }

  .access-block {
    margin-top: 36px;
  }

  .access-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
  }

  .access-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .access-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .access-item-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .access-item-icon svg { width: 14px; height: 14px; color: var(--yellow-l); }

  .access-item-text {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    padding-top: 4px;
  }

  .map-placeholder {
    margin-bottom: 16px;
  }

  .btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: var(--radius-xl);
    font-size: 17px;
    font-weight: 700;
    transition: background .2s;
  }

  .btn-map:hover { background: rgba(255,255,255,.2); }

  /* ─────────────────────────────
     EVALUATION NOTICE
  ───────────────────────────── */
  .eval-section {
    background: var(--cream);
    padding: 40px 24px;
    border-top: 1px solid var(--cream-dark);
    text-align: center;
  }
  .eval-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  .eval-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
  }
  .eval-card {
    background: #dce8f5;
    border-radius: 12px;
    padding: 20px 24px;
  }
  .eval-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .eval-card-label {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 12px;
  }
  .eval-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .eval-btn {
    display: block;
    padding: 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    transition: opacity .2s;
  }
  .eval-btn:hover { opacity: .85; }
  .eval-btn--green { background: #3a7ab8; }
  .eval-btn--blue  { background: #3a7060; }
  .eval-btn--red   { background: #9a6020; }

  /* ─────────────────────────────
     FOOTER
  ───────────────────────────── */
  .footer {
    background: #1e3028;
    padding: 32px 24px;
    color: rgba(255,255,255,.5);
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
  }
  .footer-logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
  }
  .footer-logo-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,.8);
  }

  /* ─────────────────────────────
     MAP
  ───────────────────────────── */
  .map-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .map-placeholder iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  /* ─────────────────────────────
     FLOAT CTA
  ───────────────────────────── */
  .float-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    gap: 10px;
    pointer-events: none;
    width: calc(100% - 32px);
    max-width: 400px;
  }

  .float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    border-radius: var(--radius-xl);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    pointer-events: auto;
    letter-spacing: .03em;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    transition: transform .2s;
  }

  .float-btn:active { transform: scale(.97); }

  .float-btn-tel {
    background: var(--blue-main);
    color: var(--white);
  }

  .float-btn-contact {
    background: #e09600;
    color: var(--white);
  }

  .float-btn svg { width: 16px; height: 16px; }

  /* Animation */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    animation: fadeUp .7s ease both;
  }

  .hero-label       { animation-delay: .1s; }
  .hero-catch       { animation-delay: .25s; }
  .hero-sub         { animation-delay: .4s; }
  .hero-cards       { animation-delay: .5s; }
  .btn-primary      { animation-delay: .6s; }
  .hero-scroll      { animation-delay: .75s; }

  /* ─────────────────────────────
     RESPONSIVE — 768px+
  ───────────────────────────── */
  @media (min-width: 768px) {
    .flow-switch-hint--day { text-align: left; }

    .header {
      padding: 16px 40px;
    }
    .header-logo-sub br { display: none; }
    .header-logo-sub { font-size: 13px; }

    .hero-content {
      padding: 100px 48px 80px;
      max-width: 640px;
    }
    .hero-catch { font-size: 38px; }

    .section {
      padding: 96px 48px;
    }

    .contact-section {
      padding: 96px 48px;
    }

    /* Features: 1カードあたりの幅を確保しつつ横並び */
    .features-list {
      flex-direction: row;
      align-items: stretch;
    }
    .feature-card { flex: 1; }

    /* Staff roles: 2列 */
    .staff-roles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    /* Staff count: 4列 */
    .staff-count-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    /* Staff member cards: 2列 */
    .staff-member-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    /* Services: 横並び */
    .services-grid {
      flex-direction: row;
      align-items: stretch;
    }
    .service-card { flex: 1; }

    /* Flow: 768pxでも縦タイムライン維持 */

    /* Steps: 2列 */
    .steps-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    /* Contact/Access: 2列 */
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }
    .access-block { margin-top: 0; }
    .contact-tel-block { display: flex; flex-direction: column; justify-content: center; margin-bottom: 0; }
    .contact-tel-number { font-size: 40px; }
    .sp-br { display: none; }
    .eval-cards { flex-direction: row; }
    .eval-card { flex: 1; }
    .eval-btns { flex-direction: column; }
    .map-placeholder { aspect-ratio: 16 / 9; }

    /* Float CTA: 幅を抑える */
    .float-cta { max-width: 320px; }
  }

  /* ─────────────────────────────
     RESPONSIVE — 1280px+
  ───────────────────────────── */
  @media (min-width: 1280px) {
    .header {
      padding: 16px max(48px, calc(50% - 560px));
    }

    .section {
      padding-top: 120px;
      padding-bottom: 120px;
      padding-left: max(48px, calc(50% - 560px));
      padding-right: max(48px, calc(50% - 560px));
    }

    .contact-section {
      padding-top: 120px;
      padding-bottom: 120px;
      padding-left: max(48px, calc(50% - 560px));
      padding-right: max(48px, calc(50% - 560px));
    }

    .hero-content {
      padding-left: max(48px, calc(50% - 560px));
      padding-right: max(48px, calc(50% - 560px));
      max-width: none;
    }
    .hero-catch { font-size: 52px; }

    /* Staff roles: 3列 */
    .staff-roles {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Staff members: 3列 */
    .staff-member-cards {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Flow: 横並びタイムライン（デスクトップ） */
    .flow-list {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0;
    }
    .flow-list::before {
      left: 21px;
      right: 21px;
      top: 21px;
      bottom: auto;
      width: auto;
      height: 2px;
      background: linear-gradient(to right, var(--red-l), var(--red-pale));
    }
    .flow-item {
      flex: 1;
      flex-direction: column;
      align-items: center;
      padding: 0 12px 28px;
      gap: 0;
    }
    .flow-item:last-child { padding-bottom: 0; }
    .flow-content {
      padding-top: 16px;
      width: 100%;
    }

    /* Steps: 2列 */
    .steps-list {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Float CTA: デスクトップでは不要（ヘッダーに電話ボタンあり） */
    .float-cta { display: none; }
  }
