:root {
        --bg: #f7f7f7;
        --text: #222;
        --line: #d9d9d9;
        --muted: #666;
        --white: #fff;
        --placeholder: #d0d0d0;
      }
      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: Arial, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
        color: var(--text);
        background: var(--bg);
        line-height: 1.7;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      p {
        margin: 0 0 1em;
      }
      ul {
        margin: 0;
        padding-left: 1.2em;
      }
      .container {
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
      }
      .section {
        padding: 56px 0;
      }
      .section-head {
        margin-bottom: 24px;
      }
      .section-head .eyebrow {
        display: block;
        margin-bottom: 8px;
        color: var(--muted);
        font-size: 14px;
        letter-spacing: 0.08em;
      }
      .section-head h2 {
        margin: 0 0 8px;
        font-size: 32px;
        line-height: 1.3;
      }
      .section-head h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
      }

      .site-header {
        background: var(--white);
        border-bottom: 1px solid var(--line);
        position: sticky;
        top: 0;
        z-index: 10;
      }
      .header-inner {
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      .site-logo {
        font-weight: 700;
        font-size: 20px;
        white-space: nowrap;
      }
      .header-nav {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .header-nav ul {
        list-style: none;
        display: flex;
        gap: 18px;
        padding: 0;
        margin: 0;
        font-size: 14px;
      }
      .menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        background: var(--white);
        padding: 8px;
        cursor: default;
      }
      .menu-toggle span {
        display: block;
        height: 2px;
        background: #333;
        margin: 6px 0;
      }

      .hero {
        padding: 24px 0 56px;
      }
      .hero-visual {
        position: relative;
        background: var(--placeholder);
        border: 1px solid #bcbcbc;
        overflow: hidden;
      }
      .ratio-16-9::before {
        content: '';
        display: block;
        padding-top: 56.25%;
      }
      .ratio-4-3::before {
        content: '';
        display: block;
        padding-top: 75%;
      }
      .hero-copy {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
      }
      .hero-copy h1 {
        margin: 0 0 16px;
        font-size: clamp(30px, 5vw, 54px);
        line-height: 1.25;
      }
      .hero-copy p {
        max-width: 760px;
        margin: 0 auto 12px;
        font-size: clamp(16px, 2vw, 20px);
      }
      .hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-top: 12px;
        font-weight: 700;
      }

      .placeholder {
        position: relative;
        background: var(--placeholder);
        border: 1px solid #bcbcbc;
        width: 100%;
        overflow: hidden;
      }
      .placeholder span {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #555;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.05em;
        padding: 12px;
      }

      .slider-track {
        display: grid;
        grid-template-columns: repeat(10, minmax(180px, 1fr));
        gap: 12px;
      }

      .single-image-text .content {
        margin-top: 24px;
      }

      .welcome-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        list-style: none;
        padding: 0;
      }
      .welcome-item {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 20px;
      }
      .welcome-item h3 {
        margin: 0 0 10px;
        font-size: 20px;
      }

      .zigzag-list {
        display: grid;
        gap: 24px;
      }
      .zigzag-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: center;
        background: var(--white);
        border: 1px solid var(--line);
        padding: 20px;
      }
      .zigzag-block:nth-child(even) .zigzag-image {
        order: 2;
      }
      .zigzag-block:nth-child(even) .zigzag-text {
        order: 1;
      }
      .zigzag-text h3 {
        margin: 0 0 12px;
        font-size: 24px;
      }

      .cta-box {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 32px 24px;
        text-align: center;
      }
      .cta-box h2 {
        margin: 0 0 12px;
        font-size: 28px;
      }
      .cta-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 20px;
      }
      .cta-actions a {
        display: inline-block;
        min-width: 220px;
        padding: 14px 20px;
        border: 1px solid #333;
        border-radius: 999px;
        background: var(--white);
        text-align: center;
        font-weight: 700;
      }

      .card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
      .card {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .card-body h3 {
        margin: 0 0 10px;
        font-size: 22px;
      }

      .branch-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
      .branch-card {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 20px;
      }
      .branch-card h3 {
        margin: 0 0 10px;
        font-size: 22px;
      }

      .timeline-card {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 24px;
      }
      .timeline {
        display: grid;
        gap: 0;
      }
      .timeline-row {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 20px;
        padding: 18px 0;
        border-top: 1px solid var(--line);
      }
      .timeline-row:first-child {
        border-top: none;
        padding-top: 0;
      }
      .timeline-time {
        font-weight: 700;
      }
      .timeline-content h3 {
        margin: 0 0 8px;
        font-size: 20px;
      }

      .info-card {
        background: var(--white);
        border: 1px solid var(--line);
      }
      .info-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        margin-top: -1px;
      }
      .info-label,
      .info-detail {
        padding: 18px 20px;
      }
      .info-label {
        background: #fafafa;
        font-weight: 700;
        border-right: 1px solid var(--line);
      }
      .info-detail p:last-child,
      .info-detail ul:last-child {
        margin-bottom: 0;
      }

      .contact-form {
        background: var(--white);
        border: 1px solid var(--line);
        padding: 24px;
      }
      .form-grid {
        display: grid;
        gap: 18px;
      }
      .form-field label {
        display: block;
        margin-bottom: 8px;
        font-weight: 700;
      }
      .form-field input,
      .form-field textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #bcbcbc;
        background: #fff;
        font: inherit;
      }
      .form-field textarea {
        min-height: 160px;
        resize: vertical;
      }
      .form-submit {
        text-align: center;
        margin-top: 24px;
      }
      .form-submit button {
        min-width: 220px;
        padding: 14px 20px;
        border: 1px solid #333;
        border-radius: 999px;
        background: var(--white);
        font: inherit;
        font-weight: 700;
        cursor: default;
      }
      .contact-note {
        text-align: center;
        margin-top: 16px;
      }

      .sp-only {
        display: none;
      }

      @media (max-width: 900px) {
        .header-nav ul {
          gap: 12px;
          font-size: 13px;
        }
        .info-row {
          grid-template-columns: 180px 1fr;
        }
      }

      @media (max-width: 768px) {
        .section {
          padding: 40px 0;
        }
        .header-nav ul {
          display: none;
        }
        .menu-toggle {
          display: block;
        }
        .welcome-list,
        .card-grid,
        .branch-grid,
        .zigzag-block,
        .info-row {
          grid-template-columns: 1fr;
        }
        .zigzag-block .zigzag-image {
          order: 1 !important;
        }
        .zigzag-block .zigzag-text {
          order: 2 !important;
        }
        .card {
          flex-direction: column;
        }
        .timeline-row {
          grid-template-columns: 1fr;
          gap: 8px;
        }
        .info-label {
          border-right: none;
          border-bottom: 1px solid var(--line);
        }
        .cta-actions {
          flex-direction: column;
          align-items: center;
        }
        .cta-actions a {
          width: 100%;
          max-width: 360px;
        }
        .sp-only {
          display: block;
        }
      }

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

      :root {
        --bg: #eff4fb;
        --bg-soft: #f8fbff;
        --text: #162033;
        --muted: #5d6b7b;
        --line: #d7e1ef;
        --line-strong: #b7c8df;
        --white: #ffffff;
        --blue: #1568e5;
        --blue-dark: #0e3f8f;
        --orange: #f28a1b;
        --orange-dark: #cf6c10;
        --accent-soft: #eef5ff;
        --placeholder: #cfd6df;
        --shadow-sm: 0 10px 24px rgba(11, 40, 84, 0.08);
        --shadow-md: 0 18px 48px rgba(11, 40, 84, 0.14);
        --radius-sm: 16px;
        --radius-md: 24px;
        --radius-lg: 32px;
        --header-height: 84px;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        color: var(--text);
        background:
          radial-gradient(circle at top left, rgba(21, 104, 229, 0.08), transparent 28%),
          radial-gradient(circle at top right, rgba(242, 138, 27, 0.08), transparent 24%),
          linear-gradient(180deg, #f7fbff 0%, #eff4fb 100%);
      }

      ::selection {
        background: rgba(21, 104, 229, 0.18);
      }

      a,
      button,
      input,
      textarea {
        font-family: inherit;
      }

      a {
        transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
      }

      p {
        color: var(--text);
      }

      .container {
        width: min(1120px, calc(100% - 40px));
      }

      .section {
        padding: 88px 0;
        scroll-margin-top: calc(var(--header-height) + 20px);
      }

      .section-head {
        max-width: 760px;
        margin: 0 auto 34px;
        text-align: center;
      }

      .section-head .eyebrow {
        color: var(--blue);
        font-weight: 700;
        letter-spacing: 0.14em;
      }

      .section-head h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 900;
        color: var(--blue-dark);
        letter-spacing: 0.02em;
      }

      .section-head h3 {
        font-size: 18px;
        font-weight: 500;
        color: var(--muted);
      }

      .site-header {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(183, 200, 223, 0.7);
        box-shadow: 0 8px 30px rgba(11, 40, 84, 0.08);
      }

      .header-inner {
        min-height: var(--header-height);
        position: relative;
      }

      .site-logo {
        font-size: clamp(18px, 2vw, 24px);
        font-weight: 900;
        color: var(--blue-dark);
        letter-spacing: 0.03em;
      }

      .header-nav {
        display: flex;
        align-items: center;
        gap: 18px;
        position: relative;
      }

      .header-nav ul {
        gap: 20px;
        font-size: 14px;
      }

      .header-nav a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        font-weight: 700;
        color: var(--text);
      }

      .header-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--orange));
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.25s ease;
      }

      .header-nav a:hover,
      .header-nav a:focus-visible {
        color: var(--blue);
      }

      .header-nav a:hover::after,
      .header-nav a:focus-visible::after {
        transform: scaleX(1);
      }

      .menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      }

      .menu-toggle:hover,
      .menu-toggle:focus-visible {
        transform: translateY(-1px);
        border-color: var(--blue);
        box-shadow: 0 14px 28px rgba(21, 104, 229, 0.14);
      }

      .menu-toggle span {
        width: 24px;
        margin: 5px auto;
        border-radius: 999px;
        background: var(--blue-dark);
        transition: transform 0.25s ease, opacity 0.25s ease;
      }

      .header-nav.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .header-nav.is-open .menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      .header-nav.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .hero {
        padding: 30px 0 0;
      }

      .hero-visual {
        border: 0;
        border-radius: var(--radius-lg);
        background:
          linear-gradient(135deg, rgba(14, 63, 143, 0.18), rgba(21, 104, 229, 0.06) 42%, rgba(242, 138, 27, 0.12)),
          linear-gradient(135deg, #d4dae2 0%, #c4ccd6 46%, #dde2e9 100%);
        box-shadow: var(--shadow-md);
        isolation: isolate;
      }

      .hero-visual.ratio-16-9::before {
        padding-top: 66%;
      }

      .hero-visual > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
      }

      .hero-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(8, 35, 79, 0.72), rgba(8, 35, 79, 0.48) 48%, rgba(12, 68, 145, 0.18) 100%);
        z-index: 0;
      }

      .hero-copy {
        z-index: 1;
        align-items: flex-start;
        text-align: left;
        justify-content: center;
        padding: clamp(22px, 3vw, 36px) clamp(14px, 2vw, 22px);
      }

      .hero-copy::before {
        content: none;
      }

      .hero-copy h1 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: clamp(28px, 4vw, 50px);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: #ffffff;
        text-shadow: 0 8px 24px rgba(6, 18, 39, 0.28);
      }

      .hero-copy p {
        max-width: 820px;
        margin: 0 0 8px;
        color: rgba(255, 255, 255, 0.94);
        font-size: clamp(14px, 1.35vw, 16px);
        line-height: 1.42;
        font-weight: 500;
      }

      .hero-tags {
        margin-top: 24px;
        gap: 14px;
      }

      .hero-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.34);
        backdrop-filter: blur(10px);
        color: #ffffff;
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(6, 18, 39, 0.16);
      }

      [aria-label='FV下スライダー領域'] {
        padding: 8px 0;
      }

      [aria-label='FV下スライダー領域'] .container {
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
      }

      [aria-label='FV下スライダー領域'] + .section {
        padding-top: 0;
      }

      .slider-track {
        display: flex;
        align-items: stretch;
        gap: 8px;
        width: max-content;
        margin: 0;
        padding: 0;
        animation: slider-marquee 36s linear infinite;
        will-change: transform;
      }

      .slider-track .placeholder {
        flex: 0 0 clamp(180px, 21vw, 240px);
      }

      @keyframes slider-marquee {
        from {
          transform: translateX(-50%);
        }
        to {
          transform: translateX(0);
        }
      }

      .placeholder {
        border: 1px solid var(--line-strong);
        border-radius: 24px;
        background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
          repeating-linear-gradient(135deg, #ccd4de 0 20px, #d7dde5 20px 40px);
        box-shadow: var(--shadow-sm);
      }

      .placeholder span {
        color: rgba(22, 32, 51, 0.7);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
      }

      .media-frame {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line-strong);
        border-radius: 24px;
        background: #d7dde5;
        box-shadow: var(--shadow-sm);
      }

      .media-frame img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }

      .slider-track > * {
        flex: 0 0 clamp(220px, 25vw, 280px);
      }

      .slider-track .slider-item {
        margin: 0;
      }

      [aria-label='FV下スライダー領域'],
      [aria-label='FV下スライダー領域'] * {
        line-height: 1;
      }

      .single-image-text,

      .cta-box,
      .timeline-card,
      .info-card,
      .contact-form {
        border: 1px solid rgba(215, 225, 239, 0.9);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
      }

      .single-image-text {
        padding: clamp(20px, 3vw, 32px);
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
      }

      .single-image-text .placeholder {
        border-radius: 28px;
      }

      .single-image-text .content {
        max-width: 860px;
        margin: 28px auto 0;
      }

      .single-image-text .content p:last-child {
        margin-bottom: 0;
      }

      .welcome-list {
        gap: 20px;
      }

      .welcome-item {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(215, 225, 239, 0.9);
        border-radius: 24px;
        padding: 28px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        box-shadow: var(--shadow-sm);
      }

      .welcome-item::before {
        content: '';
        position: absolute;
        inset: 0 auto 0 0;
        width: 6px;
        background: linear-gradient(180deg, var(--blue), var(--orange));
      }

      .welcome-item h3 {
        margin-bottom: 12px;
        font-size: 22px;
        font-weight: 700;
        color: var(--blue-dark);
      }

      .zigzag-list {
        gap: 28px;
      }

      .zigzag-block {
        gap: 32px;
        padding: clamp(20px, 3vw, 32px);
        border: 1px solid rgba(215, 225, 239, 0.9);
        border-radius: 28px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        box-shadow: var(--shadow-sm);
      }

      .zigzag-text h3 {
        margin-bottom: 14px;
        font-size: clamp(24px, 3vw, 30px);
        font-weight: 900;
        color: var(--blue-dark);
      }

      .zigzag-text p:last-child {
        margin-bottom: 0;
      }

      .cta-box {
        padding: clamp(30px, 4vw, 42px);
        border-radius: 28px;
        background: linear-gradient(135deg, rgba(14, 63, 143, 0.97), rgba(21, 104, 229, 0.92) 62%, rgba(61, 134, 236, 0.92));
        color: #ffffff;
        box-shadow: 0 22px 54px rgba(14, 63, 143, 0.22);
      }

      .cta-box h2,
      .cta-box p {
        color: #ffffff;
      }

      .cta-box h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 900;
      }

      .cta-box p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
      }

      .cta-actions {
        margin-top: 28px;
        gap: 14px;
      }

      .cta-actions a {
        min-width: 240px;
        min-height: 56px;
        padding: 14px 24px;
        border: 2px solid transparent;
        border-radius: 999px;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 14px 26px rgba(8, 35, 79, 0.18);
      }

      .cta-actions a:first-child {
        background: linear-gradient(135deg, var(--orange), #ffae4d);
        color: #ffffff;
      }

      .cta-actions a:last-child {
        background: #ffffff;
        color: var(--blue-dark);
      }

      .cta-actions a:hover,
      .cta-actions a:focus-visible {
        transform: translateY(-2px);
      }

      .hero-actions {
        justify-content: flex-start;
        margin-top: 16px;
      }

      .hero-actions + .hero-tags {
        margin-top: 18px;
      }

      .card-grid {
        gap: 22px;
      }

      .card {
        overflow: hidden;
        border: 1px solid rgba(215, 225, 239, 0.9);
        border-radius: 24px;
        padding: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        box-shadow: var(--shadow-sm);
      }

      .card .placeholder {
        border-radius: 18px;
      }

      .card-body {
        padding-top: 18px;
      }

      .card-body h3 {
        margin: 0 0 12px;
        font-size: 24px;
        font-weight: 700;
        color: var(--blue-dark);
      }

      .card-body p:last-child {
        margin-bottom: 0;
      }

      .branch-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        margin-top: 24px;
      }

      .branch-card {
        height: 100%;
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        border: 1px solid rgba(215, 225, 239, 0.9);
        border-radius: 24px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        box-shadow: var(--shadow-sm);
      }

      .branch-card .media-frame {
        margin: 0;
      }

      #business .media-frame,
      #training .card > .media-frame,
      #merit .card > .media-frame,
      #members .card > .media-frame {
        width: 100%;
        max-width: none;
        margin: 0;
      }

      .branch-card h3 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 700;
        color: var(--blue-dark);
      }

      .branch-card p:last-child {
        margin-bottom: 0;
      }

      .timeline-card {
        padding: clamp(20px, 3vw, 34px);
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
      }

      .timeline {
        gap: 0;
      }

      .timeline-row {
        grid-template-columns: 120px 1fr;
        gap: 24px;
        padding: 20px 0;
        border-top: 1px solid var(--line);
      }

      .timeline-row:first-child {
        padding-top: 0;
        border-top: 0;
      }

      .timeline-row:last-child {
        padding-bottom: 0;
      }

      .timeline-time {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-width: 92px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--blue-dark);
        font-weight: 900;
      }

      .timeline-content h3 {
        color: var(--blue-dark);
        font-size: 22px;
        font-weight: 700;
      }

      .info-card {
        overflow: hidden;
        background: #ffffff;
      }

      .info-row {
        grid-template-columns: 240px 1fr;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .info-label,
      .info-detail {
        padding: 20px 22px;
      }

      .info-label {
        background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%);
        color: var(--blue-dark);
        font-weight: 700;
      }

      .info-detail {
        background: #ffffff;
      }

      .info-detail ul {
        padding-left: 1.1em;
      }

      .contact-form {
        padding: clamp(22px, 3vw, 34px);
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
      }

      .form-grid {
        gap: 20px;
      }

      .form-field label {
        margin-bottom: 10px;
        color: var(--blue-dark);
        font-weight: 700;
      }

      .form-field input,
      .form-field textarea {
        border: 1px solid var(--line-strong);
        border-radius: 16px;
        background: #ffffff;
        min-height: 56px;
        padding: 14px 16px;
        font-size: 16px;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
      }

      .form-field textarea {
        min-height: 160px;
      }

      .form-field input:focus,
      .form-field textarea:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(21, 104, 229, 0.12);
      }

      .contact-form button {
        min-height: 58px;
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--orange), #ffae4d);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 16px 30px rgba(242, 138, 27, 0.24);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
      }

      .contact-form button:hover,
      .contact-form button:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(242, 138, 27, 0.32);
      }

      .contact-note {
        margin-top: 22px;
      }

      .contact-note p:first-child {
        color: var(--blue-dark);
        font-weight: 700;
      }

      @media (max-width: 1100px) {
        .header-nav ul {
          gap: 14px;
          font-size: 13px;
        }

        .branch-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 900px) {
        .container {
          width: min(1120px, calc(100% - 28px));
        }

        .section {
          padding: 72px 0;
        }

        .hero-copy {
          align-items: center;
          text-align: center;
        }

        .info-row {
          grid-template-columns: 190px 1fr;
        }
      }

      @media (max-width: 768px) {
        body.menu-open {
          overflow: hidden;
        }

        .media-frame {
          border-radius: 20px;
        }

        .section {
          padding: 54px 0;
        }

        .site-header {
          backdrop-filter: blur(10px);
        }

        .header-inner {
          min-height: 74px;
        }

        .header-nav nav {
          position: absolute;
          top: calc(100% + 12px);
          right: 0;
          width: min(92vw, 360px);
          padding: 16px;
          border: 1px solid var(--line);
          border-radius: 20px;
          background: rgba(255, 255, 255, 0.98);
          box-shadow: 0 22px 48px rgba(11, 40, 84, 0.18);
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-8px);
          transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        }

        .header-nav nav ul {
          display: grid;
          gap: 4px;
        }

        .header-nav nav a {
          display: flex;
          min-height: 44px;
          padding: 10px 12px;
          border-radius: 12px;
        }

        .header-nav nav a::after {
          display: none;
        }

        .header-nav nav a:hover,
        .header-nav nav a:focus-visible {
          background: var(--accent-soft);
        }

        .header-nav.is-open nav {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
        }

        .menu-toggle {
          display: block;
        }

        .hero {
          padding-top: 22px;
        }

        .hero-visual,
        .single-image-text,
        .cta-box,
        .timeline-card,
        .info-card,
        .contact-form {
          border-radius: 22px;
        }

        .hero-visual.ratio-16-9::before {
          padding-top: 96%;
        }

        .hero-copy {
          padding: 20px 18px;
        }

        .hero-copy h1 {
          font-size: clamp(28px, 8.4vw, 38px);
          line-height: 1.2;
          margin-bottom: 12px;
        }

        .hero-copy p {
          font-size: 14px;
          line-height: 1.45;
          margin-bottom: 8px;
        }

        .hero-copy::before {
          margin-bottom: 14px;
        }

        .hero-tags {
          justify-content: center;
          gap: 8px;
          margin-top: 0;
        }

        .hero-tags span {
          min-height: 36px;
          padding: 0 12px;
          font-size: 13px;
        }

        .hero-actions {
          margin-top: 14px;
        }

        .hero-actions a {
          min-height: 48px;
          padding: 12px 16px;
          font-size: 14px;
        }

        .slider-track {
          gap: 8px;
          animation-duration: 28s;
        }

        .slider-track > * {
          flex: 0 0 clamp(200px, 23vw, 260px);
        }

        .slider-track .placeholder {
          flex-basis: 200px;
        }

        .welcome-list,
        .card-grid,
        .branch-grid,
        .zigzag-block,
        .info-row {
          grid-template-columns: 1fr;
        }

        .welcome-item,
        .zigzag-block,
        .branch-card,
        .card {
          border-radius: 20px;
        }

        .zigzag-block {
          gap: 20px;
        }

        .zigzag-block .zigzag-image {
          order: 1 !important;
        }

        .zigzag-block .zigzag-text {
          order: 2 !important;
        }

        .card {
          flex-direction: column;
        }

        .timeline-row {
          grid-template-columns: 1fr;
          gap: 10px;
        }

        .info-label {
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }

        .cta-actions {
          flex-direction: column;
          align-items: center;
        }

        .cta-actions a {
          width: 100%;
          max-width: 360px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        .slider-track {
          animation: none;
        }

        * {
          transition: none !important;
        }
      }

/* FV final override 2026-07-16 */
.hero-visual.ratio-16-9::before {
  padding-top: 66%;
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  z-index: 1;
  padding: clamp(22px, 3vw, 36px) clamp(14px, 2vw, 22px);
}

.hero-copy h1 {
  max-width: 980px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(6, 18, 39, 0.28);
}

.hero-copy p {
  max-width: 820px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.42;
  font-weight: 500;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 16px;
}

[aria-label='FV下スライダー領域'],
[aria-label='FV荳九せ繝ｩ繧､繝繝ｼ鬆伜沺'] {
  padding: 8px 0;
}

[aria-label='FV下スライダー領域'] .container,
[aria-label='FV荳九せ繝ｩ繧､繝繝ｼ鬆伜沺'] .container {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

[aria-label='FV下スライダー領域'] + .section,
[aria-label='FV荳九せ繝ｩ繧､繝繝ｼ鬆伜沺'] + .section {
  padding-top: 0;
}

@media (max-width: 900px) {
  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-visual.ratio-16-9::before {
    padding-top: 108%;
  }

  .hero-copy {
    padding: 20px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7.6vw, 36px);
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.42;
    margin-bottom: 6px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-actions a {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
