/* ===================================
   CSS Reset & Base Styles
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 600;
    color: #2a3441;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Variables - AMJ Light Theme (Logo-based)
   =================================== */
:root {
    --color-primary: #1A3A6E;
    --color-primary-dark: #0F2547;
    --color-primary-light: #2B5299;
    --color-accent: #c7252b;
    --color-accent-light: #d94046;
    --color-accent-dark: #a51e23;
    --color-secondary: #c7252b;
    --color-secondary-dark: #a51e23;
    --color-secondary-light: #d94046;
    --color-dark: #2a3441;
    --color-dark-gray: #3d4a5c;
    --color-text: #2a3441;
    --color-text-light: #5a6878;
    --color-white: #fff;
    --color-off-white: #f7f9fc;
    --color-gray-light: #e8ecf2;
    --color-gray: #c5cdd8;
    --color-bg-light: #f0f4f8;
    --header-height: 80px;
    --max-width: 1200px;
    --font-display: 'Oswald', sans-serif;
}

/* ===================================
   Animations
   =================================== */
@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===================================
   Scroll-Triggered Animation System
   =================================== */
.anim-ready [data-anim] {
    opacity: 0;
    will-change: opacity, transform;
}

.anim-ready [data-anim="fade-up"] {
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim-ready [data-anim="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section title: simple fade-up */
.anim-ready .section-title[data-anim="fade-up"] {
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim-ready .section-title[data-anim="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .anim-ready [data-anim],
    .anim-ready .section-title[data-anim="fade-up"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-highlight {
    color: var(--color-accent);
}

.sp-only {
    display: none !important;
}

.pc-only {
    display: block;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block !important;
    }
    
    .sp-only.pattern-sp-stack {
        display: flex !important;
    }
    
    .pc-only {
        display: none !important;
    }
}

/* ===================================
   Wrapper
   =================================== */
.wrapper {
    position: relative;
    overflow-x: hidden;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* スクロール時のガラスデザイン */
.header.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 30px rgba(26, 58, 110, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 15px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.header-logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-left: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.header.scrolled .logo-sub {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s ease;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-white), var(--color-accent));
    transition: width 0.3s ease, background 0.4s ease;
}

.header.scrolled .nav-link::after {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-white);
}

.header.scrolled .nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(232, 86, 61, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 86, 61, 0.5);
}

.header-sns {
    display: flex;
    gap: 1rem;
    margin-left: 1.5rem;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gray-light);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.sns-link svg {
    width: 18px;
    height: 18px;
}

.sns-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(26, 58, 110, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav-link--primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    text-align: center;
    border-radius: 4px;
    border: none;
    padding: 1.5rem;
    margin-top: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(232, 86, 61, 0.3);
}

/* ===================================
   Main
   =================================== */
.main {
    padding-top: 0;
}

/* ===================================
   NEW Hero Section - Image Based
   =================================== */
.hero-new {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 背景動画（下部で使用するため固定） */
.hero-bg-video-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MV画像 */
.hero-mv-image {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-mv-image picture {
    display: block;
    width: 100%;
}

/* 1200px以上：1920px固定・中央配置・はみ出し非表示 */
.hero-mv-image .mv-img {
    display: block;
    width: 1920px;
    max-width: none;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* 1199px以下：ビューポート幅に縮小して文字が読めるよう表示 */
@media screen and (max-width: 1199px) {
    .hero-mv-image .mv-img {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

/* 768px以下：SP用の画像スタイル */
@media screen and (max-width: 768px) {
    .hero-mv-image .mv-img {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

/* MV CTAボタンオーバーレイ */
.mv-cta-overlay {
    position: absolute;
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
    white-space: nowrap;
}

.mv-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 3.2rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.mv-cta-btn:hover {
    transform: translateY(-2px);
}

.mv-cta-btn--primary {
    background: linear-gradient(135deg, #c7252b 0%, #8b1a1e 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(139, 26, 30, 0.55), 0 2px 8px rgba(0,0,0,0.2);
}

.mv-cta-btn--primary:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 30, 0.65), 0 4px 12px rgba(0,0,0,0.25);
    opacity: 0.95;
}

.mv-cta-btn--secondary {
    background: #fff;
    color: #c7252b;
    box-shadow: 0 4px 20px rgba(199, 37, 43, 0.2), 0 0 0 1.5px rgba(199, 37, 43, 0.15);
}

.mv-cta-btn--secondary:hover {
    box-shadow: 0 6px 28px rgba(199, 37, 43, 0.3), 0 0 0 1.5px rgba(199, 37, 43, 0.25);
}

@media screen and (max-width: 1199px) {
    .mv-cta-overlay {
        display: none;
    }
}

/* MV下部帯バナー */
.mv-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(199, 37, 43, 1);
    z-index: 10;
    padding: 0.85rem 1rem;
    text-align: center;
    font-size: 1.8rem;
}

.mv-banner-text {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0;
    white-space: nowrap;
}

.mv-banner-text-highlight {
    color: #ffeb3b;
}

@media screen and (max-width: 768px) {
    .mv-banner-text {
        font-size: 1.2rem;
        letter-spacing: 0.04em;
        white-space: normal;
        line-height: 1.6;
    }
}

/* ===================================
   NEW Reason Section
   =================================== */
.reason-new {
    padding: 8rem 2rem 8rem;
    background: #ffffff;
    position: relative;
}

.reason-new-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ===================================
   Reason Schedule (BEFORE / AFTER)
   =================================== */
.reason-schedule {
    background: #f7f7f9;
    border: 1px solid #e4e4ea;
    border-radius: 14px;
    padding: 2rem 2.4rem 2.4rem;
    margin-bottom: 0;
}

.reason-schedule--after {
    background: linear-gradient(135deg, #fef9f0 0%, #fff5f5 100%);
    border: 2px solid var(--color-accent);
}

.reason-schedule-label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
}

.reason-schedule-label-type {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #9ca3af;
    line-height: 1.2;
}

.reason-schedule-label-type--after {
    color: var(--color-accent);
}

.reason-schedule-label-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
}

/* 7-column calendar grid */
.reason-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.6rem;
}

.cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #ffffff;
    border: 1px solid rgba(236, 236, 236, 1);
    border-radius: 10px;
    padding: 1rem 0.5rem 0;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
}

/* AFTER セルの枠は暖色系 */
.reason-schedule--after .cal-day {
    border-color: #f0e0d8;
}

.cal-day-name {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 700;
    color: #374151;
    line-height: 1;
}

.cal-day-status {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 600;
    color: #6b7280;
    line-height: 1;
    background-color: rgba(233, 232, 253, 1);
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: 0px;
    margin-bottom: 0;
    padding: 0.45rem 0;
    text-align: center;
    border-radius: 0;
}

.cal-day-note {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 0.6rem;
}

/* note がある場合はステータスバッジの下丸みをフラットにする */
.cal-day-status:not(:last-child) {
    border-radius: 0;
}

/* Off-day variants */
.cal-day--off-green,
.cal-day.cal-day--off-green {
    background: #dcfce7;
    border-color: #86efac;
}
.cal-day--off-green .cal-day-name {
    color: #374151;
}
.cal-day--off-green .cal-day-status {
    color: #16a34a;
    font-weight: 700;
    background-color: #dcfce7;
}

/* Weekend off (土・日) — day name in accent red */
.cal-day--weekend .cal-day-name {
    color: var(--color-accent);
}

/* Weekend work day (BEFORE 土・日) — pink bg, all text in red */
.cal-day--work-weekend {
    background: #fff1f2;
    border-color: #f4f4f4;
}
.cal-day--work-weekend .cal-day-name {
    color: var(--color-accent);
}
.cal-day--work-weekend .cal-day-status {
    color: var(--color-accent);
    font-weight: 600;
    background-color: #ffe4e6;
}

/* Overtime day (BEFORE 残業) — red tint, same as tag-ot */
.cal-day--overtime {
    background: #fce8e8;
    border-color: #fda4af;
}
.cal-day--overtime .cal-day-status {
    color: var(--color-accent);
    font-weight: 700;
    background-color: #ffe4e6;
}

/* AMJ working day (AFTER 出勤) — blue tint */
.cal-day--amj-work {
    background: #eff6ff;
    border-color: #93c5fd;
}
.cal-day--amj-work .cal-day-status {
    color: rgba(35, 86, 160, 1);
    font-weight: 700;
    background-color: rgba(219, 234, 254, 1);
}

/* Arrow between BEFORE and AFTER */
.reason-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background: var(--color-accent);
    border-radius: 50%;
    margin: 1.6rem auto;
    flex-shrink: 0;
}

.reason-arrow svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

/* ===================================
   Reason Stats (156日 / 18:30退社)
   =================================== */
.reason-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    margin-top: 2.4rem;
}

.reason-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.2rem;
    gap: 0.4rem;
}

.reason-stat-prefix {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.04em;
    line-height: 1;
}

.reason-stat-num {
    font-size: clamp(3.6rem, 6vw, 5.6rem);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.reason-stat-unit {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    vertical-align: baseline;
}

.reason-stat-label {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 600;
    color: #374151;
    margin-top: 0.2rem;
}

.reason-stat-sub {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #374151;
    font-weight: 600;
    line-height: 1.4;
}

/* ===================================
   NEW Workstyle Section
   =================================== */
.workstyle-new {
    padding: 8rem 2rem;
    background-color: #fff;
    position: relative;
}



.workstyle-new-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workstyle-patterns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.pattern-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: unset;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.pattern-card .pattern-copy,
.pattern-card .pattern-image {
    flex: 1;
}

/* Pattern A: 左に画像、右にコピー */
.pattern-card--a {
    flex-direction: row;
}

.pattern-card--a .pattern-image {
    order: 1;
}

.pattern-card--a .pattern-copy {
    order: 2;
}

/* Pattern B: 左にコピー、右に画像 */
.pattern-card--b {
    flex-direction: row;
}

.pattern-card--b .pattern-copy {
    order: 1;
}

.pattern-card--b .pattern-image {
    order: 2;
}

.pattern-copy img,
.pattern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Full pattern image (single image card) */
.pattern-full-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* SP用パターン画像縦並び */
.pattern-sp-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.pattern-sp-copy,
.pattern-sp-img {
    width: 100%;
    height: auto;
    display: block;
}

.workstyle-check-banner {
    max-width: 1000px;
    margin: 0 auto;
}

.workstyle-check-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ===================================
   DATA & STYLE パターンブロック
   =================================== */
.ds-patterns {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* ── パターンブロック共通 ── */
.ds-pattern-block {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.ds-pattern-a {
    background: #fff;
}

.ds-pattern-b {
    background: #f8f9fb;
    border-top: 1px solid #eee;
}

/* ── コンテンツ行（テキスト＋写真） ── */
.ds-pattern-content {
    padding: 2.5rem 2.5rem 0;
}

.ds-pattern-content--b {
    padding: 2.5rem;
}

/* ds-pattern-text は縦並びコンテナ（上段row + 下段badges） */
.ds-pattern-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 上段：テキスト（左）＋写真（右） */
.ds-pattern-top-row {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

.ds-pattern-text-inner {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ds-pattern-text-inner .ds-badges {
    margin-top: auto;
    padding-top: 1.6rem;
}

.ds-pattern-photo {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    align-self: stretch;
}

.ds-pattern-photo--b {
    align-self: flex-start;
    position: relative;
    aspect-ratio: 10 / 9;
}

.ds-pattern-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── ラベル ── */
.ds-pattern-label {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.ds-pattern-sub {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
    border-radius: 3px;
    padding: 0.2rem 0.8rem;
    letter-spacing: 0.04em;
}

.ds-pattern-letter-row {
    margin-bottom: 0.6rem;
    font-size: 10rem;
    line-height: 1;
}

.ds-pattern-letter {
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.ds-pattern-catch {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.ds-holiday-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 900;
    padding: 0.4rem 1.4rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.ds-pattern-desc {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ── バッジ ── */
.ds-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.ds-badge {
    flex: 1;
    min-width: 9rem;
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 1.4rem 1rem;
    text-align: center;
}

.ds-pattern-b .ds-badge {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
}

.ds-badge-label {
    font-size: 1.8rem;
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ds-badge-val {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.ds-badge-val--sm {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.3;
}

.ds-badge-unit {
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

.ds-badge-note {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-top: 0.2rem;
}

/* ── Pattern B ターゲット（画像オーバーレイ・右上） ── */
.ds-pb-target-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.ds-pb-target-label {
    font-size: 2rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.ds-pb-target {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    line-height: 1;
}

.ds-pb-target-unit {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ── 給与比較セクション ── */
.ds-salary-section {
    background: var(--color-off-white);
    border-radius: 12px;
    padding: 2.8rem 2.5rem 2.4rem;
    border: 1px solid var(--color-gray-light);
    margin: 2.4rem 2.5rem 2.5rem;
}

.ds-salary-header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.ds-salary-small {
    font-size: 2rem;
    color: rgba(158, 158, 158, 1);
    letter-spacing: 0.2em;
    font-weight: 700;
}

.ds-salary-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.6;
    margin-top: 0.4rem;
}

.ds-red {
    color: var(--color-accent);
}

/* バー */
.ds-salary-bars {
    margin-bottom: 2rem;
}

.ds-bar-row {
    margin-bottom: 1.4rem;
}

.ds-bar-row:last-child {
    margin-bottom: 0;
}

.ds-bar-label-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 3rem;
}

.ds-bar-label-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ds-bar-tag {
    font-size: 1.4rem;
    font-weight: 900;
    padding: 0.2rem 0.8rem;
    border-radius: 3px;
}

.ds-bar-tag--avg {
    background: var(--color-gray-light);
    color: var(--color-text-light);
}

.ds-bar-tag--ours {
    background: #fdedef;
    color: var(--color-accent);
}

.ds-bar-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-gray);
}

.ds-bar-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    white-space: nowrap;
}

.ds-bar-amount--avg {
    color: rgba(158, 158, 158, 1);
}

.ds-bar-amount--ours {
    color: var(--color-accent);
}

.ds-yen {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.ds-bar-track {
    width: 100%;
    height: 3.2rem;
    background: var(--color-gray-light);
    border-radius: 6px;
    overflow: hidden;
}

.ds-bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.2rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
}

.ds-bar-fill--avg {
    background: linear-gradient(90deg, #bbb, #999);
    width: 74%;
}

.ds-bar-fill--ours {
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-light));
    width: 83%;
}

/* 差分バッジ */
.ds-diff-badge {
    display: flex;
    justify-content: center;
    margin: -0.4rem 0 1rem;
    position: relative;
    z-index: 2;
}

.ds-diff-badge-inner {
    background: #ffd644;
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.4rem;
    padding: 0.5rem 1.6rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255,214,68,0.4);
}

/* 詳細カード */
.ds-salary-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ds-sd-card {
    border-radius: 10px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    border: 1px solid var(--color-gray-light);
}

.ds-sd-card--gray {
    background: var(--color-off-white);
}

.ds-sd-card--highlight {
    background: #fff5f5;
    border-color: #f0c0c0;
}

.ds-sd-icon {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.ds-sd-label {
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-weight: 700;
}

.ds-sd-val {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-primary);
}

.ds-sd-card--highlight .ds-sd-val {
    color: var(--color-accent);
}

.ds-sd-unit {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

.ds-sd-sub {
    font-size: 1.2rem;
    color: rgba(59, 69, 84, 1);
    margin-top: 0.2rem;
}

/* ボトムメッセージ */
.ds-salary-bottom {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.6rem 2rem;
    text-align: center;
    border-left: 4px solid var(--color-accent);
    margin-bottom: 1.2rem;
}

.ds-salary-bottom p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.8;
}

.ds-salary-source {
    text-align: right;
    font-size: 1.0rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-top: 0.8rem;
}

@media (max-width: 768px) {
    .ds-salary-source {
        text-align: left;
        font-size: 1.2rem;
    }
}

/* ── レスポンシブ ── */

/* タブレット（1100px以下）: ブロック幅に水平 padding */
@media (max-width: 1140px) {
    .ds-patterns {
        padding: 0 2rem;
    }
}

/* タブレット中（900px以下）: 写真縮小しつつ50:50維持 */
@media (max-width: 900px) {
    .ds-pattern-block {
        border-radius: 14px;
    }
    .ds-pattern-content {
        padding: 2rem 2rem 0;
    }
    .ds-pattern-content--b {
        padding: 2rem;
    }
    .ds-pattern-top-row {
        gap: 1.5rem;
    }
    .ds-pattern-photo img {
        height: 26rem;
    }
    .ds-pattern-photo--b img {
        height: 100%;
    }
    .ds-salary-section {
        margin: 2rem 2rem 2rem;
        padding: 2rem 1.6rem;
    }
    .ds-salary-details {
        grid-template-columns: 1fr 1fr;
    }
}

/* モバイル（768px以下）: 縦積みレイアウト */
@media (max-width: 768px) {
    .ds-patterns {
        padding: 0 1.6rem;
        gap: 3rem;
    }
    .ds-pattern-block {
        border-radius: 12px;
    }
    .ds-pattern-content,
    .ds-pattern-content--b {
        padding: 2rem 1.6rem 0;
    }
    .ds-pattern-content--b {
        padding-bottom: 2rem;
    }
    .ds-pattern-text {
        gap: 1.2rem;
    }
    .ds-pattern-top-row {
        flex-direction: column;
        gap: 1.6rem;
    }
    .ds-pattern-photo {
        flex: none;
        width: 100%;
        border-radius: 10px;
    }
    .ds-pattern-photo img {
        width: 100%;
        height: 24rem;
        object-fit: cover;
    }
    .ds-pattern-photo--b img {
        height: 100%;
    }
    .ds-pattern-letter {
        font-size: 7rem;
    }
    .ds-pattern-catch {
        font-size: 2.8rem;
    }
    .ds-pattern-desc {
        font-size: 1.4rem;
        margin-bottom: 1.6rem;
    }
    .ds-badge-val {
        font-size: 2.4rem;
    }
    .ds-badge-val--sm {
        font-size: 1.4rem;
    }
    .ds-salary-section {
        margin: 1.6rem 1.6rem 1.6rem;
        padding: 2rem 1.4rem;
    }
    .ds-salary-title {
        font-size: 1.6rem;
    }
    .ds-salary-details {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .ds-sd-card {
        padding: 1.2rem 0.8rem;
    }
    .ds-sd-val {
        font-size: 2.0rem;
    }
    .ds-bar-amount {
        font-size: 1.8rem;
    }
    .ds-bar-track {
        height: 2.8rem;
    }
    .ds-bar-fill {
        font-size: 1.4rem;
        padding-right: 0.8rem;
    }
    .ds-pb-target {
        font-size: 2.6rem;
        padding: 0.6rem 1.4rem;
    }
    .ds-salary-bottom {
        padding: 1.4rem 1.6rem;
    }
    .ds-salary-bottom p {
        font-size: 1.4rem;
    }
}

/* 小型モバイル（480px以下） */
@media (max-width: 480px) {
    .ds-patterns {
        padding: 0 1.2rem;
    }
    .ds-pattern-content,
    .ds-pattern-content--b {
        padding: 1.6rem 1.4rem 0;
    }
    .ds-pattern-content--b {
        padding-bottom: 1.6rem;
    }
    .ds-pattern-letter {
        font-size: 6.5rem;
    }
    .ds-pattern-catch {
        font-size: 2.6rem;
    }
    .ds-pattern-photo img {
        height: 20rem;
    }
    .ds-pattern-photo--b img {
        height: 100%;
    }
    .ds-salary-section {
        margin: 1.4rem 1.2rem 1.4rem;
        padding: 1.6rem 1.2rem;
    }
    .ds-salary-details {
        grid-template-columns: 1fr;
    }
    .ds-badges {
        gap: 0.8rem;
    }
    .ds-badge {
        min-width: 7rem;
        padding: 1.2rem 0.8rem;
    }
}

/* ===================================
   NEW Special Feature Section
   =================================== */
.special-new {
    padding: 8rem 2rem;
    background: var(--color-off-white);
}

.special-new-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.special-bg-area {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 4rem;
    overflow: hidden;
}

.special-bg-image {
    display: none;
}

.special-sub-banner {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
}

.special-sub-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.special-content-image {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.special-content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.special-check-banner {
    text-align: center;
    padding: 6rem 2rem;
    background: url('images/cta-bg-new.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100vw;
    left: 0;
    margin-left: calc(50% - 50vw);
}

.special-check-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

@media screen and (max-width: 768px) {
    .special-check-banner {
        padding: 4.5rem 1.6rem;
    }

    .special-check-cta-text {
        font-size: 1.8rem;
    }
}

/* Responsive for new sections */
@media screen and (max-width: 768px) {
    .workstyle-patterns {
        gap: 2rem;
    }
    
    .pattern-card {
        flex-direction: column;
    }
    
    .pattern-card--a,
    .pattern-card--b {
        flex-direction: column;
    }
    
    .pattern-card--a .pattern-image,
    .pattern-card--a .pattern-copy,
    .pattern-card--b .pattern-image,
    .pattern-card--b .pattern-copy {
        order: unset;
    }
    
.special-bg-area {
        padding: 0;
        margin: 0;
        width: 100vw;
        margin-left: -15px;
    }
    
    .reason-new,
    .workstyle-new {
        padding: 5rem 1.5rem;
    }

    .special-new {
        padding: 5rem 1.5rem 0;
    }

    .reason-card {
        padding: 3rem 1.6rem 2.4rem;
        border-radius: 14px;
        margin-bottom: 3.5rem;
    }

    .reason-cta {
        padding: 4.5rem 1.6rem;
    }

    .reason-cta-btn {
        padding: 1.4rem 3.5rem;
        font-size: 1.7rem;
    }

    .reason-schedule {
        padding: 1.6rem 1.2rem 2rem;
    }

    .reason-schedule-label {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .reason-schedule-label-badge {
        font-size: 1rem;
    }

    .reason-schedule-label-text {
        font-size: 1.2rem;
    }

    .reason-cal {
        gap: 0.4rem;
    }

    .cal-day {
        padding: 0.8rem 0.2rem 0.6rem;
        border-radius: 6px;
        gap: 0.3rem;
        aspect-ratio: 1 / 1.2;
    }

    .cal-day-note {
        display: none;
    }

    .reason-arrow {
        width: 3rem;
        height: 3rem;
        margin: 1.2rem auto;
    }

    .reason-arrow svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    .reason-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .reason-stat {
        padding: 1.6rem 0.8rem;
        border-radius: 10px;
    }
}

/* ===================================
   Legacy Hero Section (commented out for reference)
   =================================== */
/*
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent, var(--color-primary-dark));
    z-index: 2;
}

/* Hero Carousel - 自動スクロールカルーセル */
.hero-carousel {
    position: static;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    padding: 2rem 0;
    z-index: 2;
    margin-top: 0px;
}

.hero-carousel-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: carouselScroll 40s linear infinite;
    width: fit-content;
}

.carousel-img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0.8em;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Carousel: hover removed (non-interactive element) */

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Carousel - Responsive */
@media screen and (max-width: 768px) {
    .hero-carousel {
        margin-top: 0px;
        padding: 1.5rem 0;
    }
    
    .carousel-img {
        width: 140px;
        height: 170px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-lead {
    display: inline;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.2em;
}

.hero-title {
    font-size: clamp(3.6rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight-blue,
.hero-highlight-red {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.hero-highlight-blue {
    color: #0066cc;
}

.hero-highlight-red {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:nth-child(1) { transition-delay: 0.1s; }
.stat-box:nth-child(2) { transition-delay: 0.2s; }
.stat-box:nth-child(3) { transition-delay: 0.3s; }
.stat-box:nth-child(4) { transition-delay: 0.4s; }

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}


.stat-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: none;
}

.stat-number--yen {
    font-size: 3.5rem;
}

.stat-number--small {
    font-size: 3.5rem;
}

.stat-unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-left: 0.3rem;
}

.stat-text-large {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat-note {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 0.5rem;
}

.stat-range {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 0.5rem;
}

/* Scroll Indicator (active) */
.hero-scroll {
    position: absolute;
    bottom: 18%;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.hero-scroll-text {
    font-size: 1rem;
    font-family: var(--font-display);
    color: rgb(255, 255, 255);
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-scroll-line {
    width: 2px;
    height: 50px;
    background-color: rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* ===================================
   Section Title
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-en {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.section-title--dark .section-title-en {
    color: var(--color-accent);
}

.section-title--dark .section-title-ja {
    color: var(--color-primary);
}

.section-title-ja {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.4;
}

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

/* Reason section title - dark text on white background */
#reason .section-title-ja {
    color: var(--color-dark);
}

#reason .section-title-catchcopy,
#special .section-title-catchcopy {
    margin-top: 1.2em;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

#reason .section-title-catchcopy strong {
    color: var(--color-accent);
    font-weight: 900;
}

/* Reason card container */
.reason-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    padding: 4rem 3rem 3rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
}

/* Reason CTA */
.reason-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: url('images/cta-bg-new.png') no-repeat center center;
    background-size: cover;
    /* フル幅：transformをアニメーションに譲るためmargin-leftで実現 */
    position: relative;
    width: 100vw;
    left: 0;
    margin-left: calc(50% - 50vw);
}

.reason-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.reason-cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.6rem 5rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(199, 37, 43, 0.35);
    margin-bottom: 1.4rem;
}

.reason-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(199, 37, 43, 0.45);
    opacity: 1;
}

.reason-cta-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 6rem 0 0;
    background: transparent;
    position: relative;
}

.why-choose-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}


.section-title--center {
    text-align: center;
    margin-bottom: 5rem;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.4;
}

/* Why Choose Header - AMJ POINT Title */
.why-choose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-choose-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.6rem 2.5rem;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.why-choose-heading {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.3;
}

.why-choose-num {
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-right: 0.2rem;
    position: relative;
    top: 0.1em;
}

.why-choose-accent {
    color: var(--color-accent);
    position: relative;
}

.why-choose-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(199, 37, 43, 0.3), rgba(199, 37, 43, 0.1));
    border-radius: 4px;
    z-index: -1;
}

/* Legacy badge/main styles (keep for compatibility) */
.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

.why-choose-main {
    display: block;
    margin-top: 1rem;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--color-dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
}

.why-choose-grid .why-card {
    grid-column: span 2;
}

.why-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-gray-light);
    position: relative;
}

.why-card-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(199, 37, 43, 0.4);
}

.why-card-number span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-left: 0.2rem;
}

.why-card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.why-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.why-card-content {
    padding: 2rem 2rem 2.5rem;
}

.why-card-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.why-card-title .highlight-red {
    color: var(--color-accent);
}

.why-card-desc {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

/* 5カードを3-2のレイアウトで中央揃え */
.why-choose-grid .why-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.why-choose-grid .why-card:nth-child(5) {
    grid-column: 4 / span 2;
}

@media screen and (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid .why-card {
        grid-column: span 1;
    }
    
    .why-choose-grid .why-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .why-choose-grid .why-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .why-choose {
        padding: 4rem 0 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid .why-card,
    .why-choose-grid .why-card:nth-child(4),
    .why-choose-grid .why-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .why-card-title {
        font-size: 1.6rem;
        min-height: auto;
    }
    
    .why-card-content {
        padding: 1.5rem 1.5rem 2rem;
    }
}

/* ===================================
   Reason Section
   =================================== */
.reason {
    padding: 20rem 2rem 10rem;
    background: var(--color-off-white);
    position: relative;
}

.zigzag-line {
    position: absolute;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, rgba(26, 58, 110, 1) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(26, 58, 110, 1) 25%, rgba(0, 0, 0, 0) 98%);
    background-size: 40px 40px;
    background-position: 0 0;
}

.zigzag-line--bottom {
    top: auto;
    bottom: 0;
    transform: rotate(180deg);
}

.reason-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.reason-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
}

.reason-vision {
    text-align: center;
    max-width: 900px;
}

.vision-quote {
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.3) 0%, rgba(15, 37, 71, 0.4) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4rem 5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(26, 58, 110, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
}

.vision-sub {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 2;
    margin-top: 2rem;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 0;
    position: absolute;
    text-shadow: 0 0 20px rgba(199, 37, 43, 0.4);
    opacity: 0.8;
}

.quote-mark:first-of-type {
    top: 3rem;
    left: 2rem;
}

.quote-mark:last-of-type {
    bottom: 1rem;
    right: 2rem;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.6;
    text-align: center;
    padding: 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Vision Image Container */
.vision-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.vision-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 58, 110, 0.25);
}

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

.vision-image-container .vision-quote {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 2;
}

.reason-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 4px solid var(--color-accent);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(199, 37, 43, 0.3);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
    stroke-width: 2.5;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-desc {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

/* ===================================
   Workstyle Section
   =================================== */
.workstyle {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.workstyle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 86, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.workstyle-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workstyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.workstyle-card {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.workstyle-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.workstyle-card--a { transition-delay: 0.1s; }
.workstyle-card--c { transition-delay: 0.2s; }

.card-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.card-badge--gold {
    background: linear-gradient(135deg, #D4A84B 0%, #B08A3E 100%);
    color: var(--color-white);
}

.card-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 2rem;
}

/* Card Illustration */
.card-illust {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-light);
    position: relative;
}

.card-illust img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-illust-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.card-illust-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.card-visual {
    margin-bottom: 2.5rem;
}

.calendar-visual {
    display: flex;
    gap: 0.5rem;
}

.cal-day {
    flex: 1;
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    background: #ffffff;
    border-radius: 4px;
}

.cal-day--off {
    background: var(--color-accent);
    color: var(--color-white);
}

.cal-day.cal-day--off-green {
    background: #dcfce7;
    border-color: #86efac;
}

.income-visual {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(199, 37, 43, 0.1) 0%, rgba(165, 30, 35, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(199, 37, 43, 0.3);
}

.income-label {
    display: block;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.income-amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: #D4A84B;
    line-height: 1;
}

.income-unit {
    font-size: 2rem;
}

.income-plus {
    display: block;
    font-size: 1.4rem;
    color: #D4A84B;
    margin-top: 0.5rem;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features li {
    font-size: 1.5rem;
    color: var(--color-text);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.card-features li:last-child {
    border-bottom: none;
}

.feature-highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.feature-highlight--gold {
    color: #D4A84B;
}

.card-desc {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.workstyle-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(26, 58, 110, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.note-text {
    font-size: 1.6rem;
    color: var(--color-white);
    line-height: 1.6;
}

.note-highlight {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
}

/* ===================================
   Special Feature Section
   =================================== */
.special {
    padding: 10rem 2rem;
    background: var(--color-off-white);
}

.special-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Special Hero Image */
.special-hero-image {
    max-width: 1000px;
    margin: 0 auto 5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.special-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.special-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: stretch;
    width: 100%;
    margin-bottom: 6rem;
}

/* Division Header */
.division-header {
    text-align: center;
    margin-bottom: 4rem;
}

.division-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.division-badge svg {
    width: 20px;
    height: 20px;
}

.division-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.4;
}

/* Division Comparison Layout */
.division-comparison {
    display: grid;
    grid-template-columns: 0.7fr auto 0.7fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

/* Division Cards */
.division-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.division-card--pro {
    background: linear-gradient(270deg, rgba(26, 60, 117, 0.35) 0%, rgba(15, 36, 70, 0.8) 100%),
                url('images/0018.jpg') center/cover no-repeat;
}

.division-card--support {
    background: linear-gradient(270deg, rgba(45, 90, 45, 0.35) 0%, rgba(30, 61, 30, 0.8) 100%),
                url('images/0019.jpg') center/cover no-repeat;
}

.division-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.division-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.division-avatar--pro {
    background: var(--color-accent);
    box-shadow: 0 4px 15px rgba(199, 37, 43, 0.4);
}

.division-avatar--support {
    background: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.division-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.division-card-title {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.division-card-label {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-white);
}

.division-card-role {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.division-card-count {
    font-size: 2rem;
    font-weight: 900;
    color: #81C784;
}

.division-card-body {
    padding: 2rem;
}

.division-card-desc {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Task Lists */
.division-task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.division-task-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: var(--color-white);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
}

.division-task-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.division-task-list--pro li svg {
    color: var(--color-white);
}

.division-task-list--support li svg {
    color: var(--color-white);
}

/* Connector */
.division-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

.division-connector-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.division-connector-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(199, 37, 43, 0.4);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.division-connector-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.division-connector-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 0.8rem;
    z-index: 1;
}

/* Result Section */
.division-result {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b71c1c 100%);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(199, 37, 43, 0.3);
    margin: auto;
}

.division-result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.division-result-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.division-result-content {
    flex: 1;
}

.division-result-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
}

.division-result-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    margin: 0;
}

.division-result-text .text-accent {
    color: #FFD54F;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.division-result-sub {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .division-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .division-connector {
        flex-direction: row;
        padding: 1rem 2rem;
    }
    
    .division-connector-line {
        width: 80%;
        height: 4px;
        background: linear-gradient(to right, transparent, var(--color-accent), transparent);
    }
    
    .division-connector-text {
        margin-top: 0;
        margin-left: 1rem;
    }
    
    .division-result {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* ===================================
   Career Section - Two-Column Paths
   =================================== */
.career {
    padding: 10rem 2rem 0;
    background-color: var(--color-gray-light);
    color: rgba(0, 0, 0, 1);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(26, 58, 110, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(232, 86, 61, 0.05) 0%, transparent 40%);
}

.career-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Career Intro - Full Bleed Layout */
.career-intro {
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: 5rem;
    min-height: 300px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.career-intro-image {
    position: relative;
    flex: 0 0 55%;
    overflow: hidden;
}

.career-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 420px;
}

.career-intro-text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    background: linear-gradient(135deg, rgba(218, 0, 1, 1) 0%, rgba(219, 0, 1, 1) 48%, rgba(21, 101, 192, 1) 100%);
    padding: 3.5rem 4rem;
    border-radius: 16px 0 0 16px;
    color: #fff;
}

.career-intro-lead {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.career-yellow {
    color: #ffd644;
}

.career-intro-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .career-intro {
        flex-direction: column;
        min-height: auto;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .career-intro-image {
        flex: auto;
        width: 100%;
    }
    
    .career-intro-text {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        margin: -3rem auto 0;
        border-radius: 16px;
    }
    
    .career-intro-lead {
        font-size: 2.2rem;
    }
    
    .career-intro-desc {
        font-size: 1.2rem;
    }
}

/* Two-Column Paths */
.career-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.career-path {
    padding: 3.5rem 2.5rem 4rem;
}

.career-path--a {
    border-right: 1px solid #eee;
}

.career-path-header {
    margin-bottom: 2.5rem;
}

.career-path-tag {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.career-path-tag--a {
    background: #e8f0fe;
    color: #2356a0;
}

.career-path-tag--b {
    background: #fdedef;
    color: var(--color-accent);
}

.career-path-name {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.career-path-name--a {
    color: var(--color-primary);
}

.career-path-name--b {
    color: var(--color-accent);
}

.career-path-desc {
    font-size: 1.2rem;
    color: #999;
    font-weight: 700;
}

/* Spec Card (Pattern A) */
.career-spec-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    margin-bottom: 2rem;
}

.career-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e8ecf2;
}

.career-spec-row:last-child {
    border-bottom: none;
}

.career-spec-label {
    font-size: 1.3rem;
    font-weight: 900;
    color: #888;
}

.career-spec-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.career-spec-unit {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

.career-spec-value-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.career-spec-message {
    margin-bottom: 2rem;
}

.career-spec-message p {
    font-size: 1.4rem;
    color: #777;
    line-height: 1.8;
    text-align: center;
}

.career-spec-switch {
    background: #e8f0fe;
    border-radius: 10px;
    padding: 1.6rem 1.8rem;
    text-align: center;
}

.career-spec-switch-text {
    font-size: 1.3rem;
    color: #2356a0;
    line-height: 1.7;
}

.career-spec-switch-text strong {
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* Timeline (Pattern B) */
.career-timeline {
    position: relative;
    padding-left: 2.4rem;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: calc(0.8rem - 1px);
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: #f0d0d0;
}

.career-step {
    position: relative;
    padding: 0 0 2.8rem 1.8rem;
}

.career-step:last-child {
    padding-bottom: 0;
}

.career-step::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: #fff;
}

.career-step--current::before {
    width: 1.6rem;
    height: 1.6rem;
    left: -2.4rem;
    top: 0.6rem;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.career-step-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.career-step-age {
    font-size: 1.2rem;
    color: #999;
    font-weight: 700;
}

.career-step-salary {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.career-step-u {
    font-size: 1.3rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

.career-step-role {
    font-size: 1.3rem;
    font-weight: 700;
    color: #555;
}

.career-step-note {
    font-size: 1.1rem;
    color: #aaa;
    margin-top: 0.2rem;
}

.career-step-final {
    background: #fef8f8;
    border-radius: 10px;
    padding: 1.4rem;
    margin-left: -0.4rem;
}

.career-step-final .career-step-salary {
    font-size: 2.8rem;
}

/* Bottom Bar */
.career-bottom-bar {
    background: var(--color-accent);
    padding: 2.5rem 3rem;
    text-align: center;
    border-radius: 0px 0px 16px 16px;
}

.career-bottom-bar p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.8;
}

/* CTA Block */
.career-cta {
    text-align: center;
    margin-top: 60px;
    padding: 6rem 2rem;
    background: url('images/cta-bg-new.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100vw;
    left: 0;
    margin-left: calc(50% - 50vw);
}

.career-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.career-cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.6rem 5rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(199, 37, 43, 0.35);
    margin-bottom: 1.4rem;
}

.career-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(199, 37, 43, 0.45);
    opacity: 1;
}

.career-cta-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Career Responsive */
@media screen and (max-width: 768px) {
    .career-paths {
        grid-template-columns: 1fr;
    }

    .career-path--a {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .career-path {
        padding: 2.5rem 2rem;
    }

    .career-path-name {
        font-size: 2.6rem;
    }

    .career-spec-value {
        font-size: 2.6rem;
    }

    .career-step-salary {
        font-size: 2.2rem;
    }

    .career-step-final .career-step-salary {
        font-size: 2.4rem;
    }

    .career-bottom-bar {
        padding: 2rem;
    }

    .career-bottom-bar p {
        font-size: 1.3rem;
    }

    .career-cta {
        padding: 4.5rem 1.6rem;
    }

    .career-cta-btn {
        padding: 1.4rem 3.5rem;
        font-size: 1.7rem;
    }
}

/* ===================================
   Job Requirements Section
   =================================== */
.requirements {
    padding: 8rem 2rem;
    background: #eee;
}

.requirements-inner {
    max-width: 900px;
    margin: 0 auto;
}

.requirements-content {
    background: var(--color-white);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    border: none;
}

/* ダークヘッダー */
.req-content-header {
    background: linear-gradient(135deg, #1a3a6b 0%, #2356a0 100%);
    padding: 4.4rem 2.8rem 3.6rem;
    text-align: center;
}

.req-content-en {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.req-content-ja {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-top: 4px;
}

.req-pattern-badge {
    display: inline-block;
    margin-top: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

/* 募集職種ヘッダー */
.requirements-header {
    background: #fff;
    padding: 2.8rem 2.4rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.requirements-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.requirements-job-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.requirements-job-sub {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pattern A ラベルバッジ */
.pattern-a-label-wrap {
    text-align: center;
    margin: 1.6rem 0 2.4rem;
}

.pattern-a-label-badge {
    display: inline-block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 0.65rem 2.4rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 40px;
    background: var(--color-primary);
    box-shadow: 0 4px 16px rgba(26, 58, 110, 0.25);
    letter-spacing: 0.04em;
}

/* 上部ハイライトバッジ3つ */
.requirements-highlight-badges {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.req-highlight-badge-divider {
    display: none;
}

.req-highlight-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 130px;
    max-width: 190px;
    padding: 1.6rem 1.2rem;
    gap: 0.4rem;
    background: #f8f9fb;
    border-radius: 10px;
    transition: box-shadow 0.2s ease;
}

.req-highlight-badge:hover {
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.12);
}

.req-highlight-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    margin-bottom: 0.1rem;
}

.req-highlight-badge-icon svg {
    width: 100%;
    height: 100%;
}

.req-highlight-badge-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.04em;
}

.req-highlight-badge-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.01em;
}

.req-highlight-badge-num small {
    font-size: 0.5em;
    font-weight: 900;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.req-highlight-badge-num--salary {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.req-highlight-badge-num--red {
    color: #c41e2a;
}

.req-highlight-badge-unit {
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 900;
}

.req-highlight-badge-note {
    font-size: 1rem;
    color: #aaa;
    margin-top: 2px;
}

/* 募集要項テーブル */
.requirements-table {
    background: #fff;
    padding: 0 2.4rem;
}

.req-table {
    width: 100%;
    border-collapse: collapse;
}

.req-table tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.req-table th {
    width: 120px;
    padding: 1.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: #1a3a6b;
    text-align: left;
    vertical-align: top;
    background: #fafbfc;
    border-right: 3px solid #1a3a6b;
}

.req-table td {
    padding: 1.6rem 1.6rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
    vertical-align: top;
}

.req-note {
    font-size: 1.1rem;
    color: #999;
}

.req-highlight-text {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.6rem;
}

.req-time {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* 資格 */
.req-qualification {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.req-qualification:last-child {
    margin-bottom: 0;
}

.req-qual-badge {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.req-qual-badge--required {
    background: var(--color-accent);
    color: var(--color-white);
}

.req-qual-badge--welcome {
    background: #ffd644;
    color: #1a1a1a;
}

/* 勤務地 */
.req-location-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
}

.req-location-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.req-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.req-location-card {
    background: #f8f9fb;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.req-location-name {
    font-weight: 900;
    color: #1a3a6b;
    margin-bottom: 2px;
    font-size: 1.2rem;
}

.req-location-address {
    font-size: 1.1rem;
    color: #999;
}

.req-location-access {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* 給与 */
.req-salary-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.req-salary-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #c41e2a;
}

.req-salary-unit {
    font-size: 1.3rem;
    font-family: var(--font-body);
}

.req-salary-bonus {
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-family: 'Noto Sans JP', sans-serif;
}

/* 手当 */
.req-benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.req-benefit-tag {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0.5rem 1.2rem;
    background: var(--color-bg-light);
    border-radius: 20px;
    color: var(--color-text);
    border: 1px solid var(--color-gray);
}

.req-bonus-info {
    display: flex;
    gap: 3rem;
}

.req-bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.req-bonus-label {
    font-size: 1.3rem;
    color: var(--color-text-light);
}

.req-bonus-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-accent);
}

/* 注目ポイント */
.requirements-highlight {
    margin: 3rem;
    background: linear-gradient(135deg, rgba(199, 37, 43, 0.05) 0%, rgba(199, 37, 43, 0.02) 100%);
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    overflow: hidden;
}

.req-highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
}

.req-highlight-icon {
    font-size: 2rem;
}

.req-highlight-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
}

.req-highlight-content {
    padding: 2rem;
}

.req-highlight-content h5 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.req-highlight-content p {
    font-size: 1.5rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.req-highlight-closing {
    font-size: 1.6rem !important;
    font-weight: 700;
    color: var(--color-accent) !important;
    margin-top: 1.5rem !important;
}

/* 資格取得支援 */
.requirements-support {
    margin: 30px 3rem 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--color-white);
}

.req-support-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.req-support-header svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
}

.req-support-header h4 {
    font-size: 2rem;
    font-weight: 900;
}

.requirements-support p {
    font-size: 1.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

/* 福利厚生 */
.requirements-welfare {
    margin: 0;
    background: #fff;
    padding: 2.8rem 2.4rem;
    border-top: 1px solid #eee;
}

.req-welfare-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.req-welfare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.req-welfare-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.4rem 1rem;
    background: #f8f9fb;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.req-welfare-card:hover {
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.1);
}

.req-welfare-emoji {
    font-size: 2.2rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
}

.req-welfare-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #444;
    line-height: 1.5;
}

/* 募集背景 */
.requirements-background {
    margin: 0 3rem 3rem;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    overflow: hidden;
}

.req-background-title {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem 2rem;
    text-align: center;
}

.req-background-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
}

.req-background-number {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(199, 37, 43, 0.1) 0%, rgba(199, 37, 43, 0.05) 100%);
    border-radius: 12px;
}

.req-bg-num {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.req-bg-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.req-bg-label {
    display: block;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-top: 0.5rem;
    font-weight: 600;
}

.req-background-text {
    flex: 1;
}

.req-background-text p {
    font-size: 1.5rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.req-background-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.req-bg-plan {
    font-weight: 600;
}

.req-bg-highlight {
    background: linear-gradient(transparent 60%, rgba(199, 37, 43, 0.2) 60%);
    font-weight: 700;
    color: var(--color-accent);
}

/* CTA */
.requirements-cta {
    background: #1a3a6b;
    padding: 3.6rem 2.4rem;
    text-align: center;
}

.req-cta-lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.req-cta-btn {
    display: inline-block;
    background: #c41e2a;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 1.8rem 6rem;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(196, 30, 42, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.req-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(196, 30, 42, 0.5);
}

.req-cta-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .requirements {
        padding: 6rem 0;
    }

    .req-content-header {
        padding: 3.6rem 1.6rem 2.8rem;
    }

    .req-content-en {
        font-size: 2.8rem;
    }

    .requirements-header {
        padding: 2rem 1.6rem;
    }

    .requirements-highlight-badges {
        gap: 0.8rem;
    }

    .req-highlight-badge {
        padding: 1.2rem 1rem;
        min-width: 100px;
    }

    .requirements-table {
        padding: 0 1.6rem;
    }

    .req-table th {
        width: 85px;
        padding: 1.2rem 0.8rem;
        font-size: 1.1rem;
    }

    .req-table td {
        padding: 1.2rem;
        font-size: 1.2rem;
    }

    .req-salary-amount {
        font-size: 1.8rem;
    }

    .req-locations-grid {
        grid-template-columns: 1fr;
    }

    .req-welfare-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .req-welfare-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .requirements-cta {
        padding: 2.8rem 1.6rem;
    }

    .req-cta-btn {
        padding: 1.6rem 4rem;
        font-size: 1.6rem;
    }
}

/* ===================================
   Video Section
   =================================== */
.video {
    padding: 10rem 2rem;
    background: var(--color-off-white);
}

.video-inner {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 10rem 2rem;
    background: var(--color-gray-light);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-highlight {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.faq-highlight-item {
    text-align: center;
    padding: 3rem 4rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ Highlight Icon */
.faq-highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.faq-highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-highlight-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.faq-highlight-item:nth-child(1) { transition-delay: 0.1s; }
.faq-highlight-item:nth-child(2) { transition-delay: 0.2s; }

.highlight-number {
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.highlight-percent {
    font-size: 3rem;
}

.highlight-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 1rem;
    line-height: 1.4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    text-align: left;
}

.faq-q, .faq-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-q {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.faq-a {
    background: var(--color-accent);
    color: var(--color-white);
}

.faq-question-text {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
}

.faq-toggle {
    font-size: 2.4rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 2rem 25px;
}

.faq-answer-text {
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 2.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #d0d0d0;
    border-radius: 30px;
    background: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    color: #888;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.faq-tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}

.faq-tab-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: url('images/cta-bg-new.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100vw;
    left: 0;
    margin-left: calc(50% - 50vw);
    margin-top: 3.6rem;
}

.faq-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.faq-cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.6rem 5rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(199, 37, 43, 0.35);
    margin-bottom: 1.4rem;
}

.faq-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(199, 37, 43, 0.45);
    opacity: 1;
}

.faq-cta-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    margin-top: 1.2rem;
}

@media screen and (max-width: 768px) {
    .faq-cta {
        padding: 4.5rem 1.6rem;
    }

    .faq-cta-btn {
        padding: 1.4rem 3.5rem;
        font-size: 1.7rem;
    }
}

/* ===================================
   Locations Section
   =================================== */
.locations {
    padding: 10rem 2rem;
    background: rgb(14 33 65 / 80%);
}

.locations-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.location-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Location Photo */
.location-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.location-card:nth-child(1) { transition-delay: 0.1s; }
.location-card:nth-child(2) { transition-delay: 0.2s; }
.location-card:nth-child(3) { transition-delay: 0.3s; }

.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: var(--color-primary-dark);
}

.location-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.location-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 0.3rem 1rem;
    border-radius: 4px;
}

.location-address {
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    background: var(--color-primary-dark);
}

.location-map {
    height: 200px;
    background: rgba(255,255,255,0.05);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    filter: none;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 30%, #b71c1c 60%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(232, 86, 61, 0.1);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
}

.cta-highlight {
    color: var(--color-accent-dark);
    font-weight: 900;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

/* ===================================
   CEO Message Section
   =================================== */
.ceo-message {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--color-off-white) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.ceo-message::before {
    content: 'MESSAGE';
    position: absolute;
    top: 5rem;
    right: -5rem;
    font-family: var(--font-display);
    font-size: clamp(10rem, 20vw, 25rem);
    font-weight: 700;
    color: rgba(26, 58, 110, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.ceo-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Pull quote */
.ceo-pull-quote {
    background: #f8f9fb;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 10px 10px 0;
    padding: 2.4rem 2.8rem;
    margin-bottom: 3.6rem;
    position: relative;
}

.ceo-pull-quote::before {
    content: '\201C';
    font-family: 'Noto Serif JP', Georgia, serif;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: -0.8rem;
    left: 1.6rem;
    line-height: 1;
    pointer-events: none;
}

.ceo-pull-quote p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.ceo-pull-quote-red {
    color: var(--color-accent);
}

.ceo-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 6rem;
    align-items: start;
}

.ceo-profile {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 58, 110, 0.1);
    text-align: center;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ceo-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-bg-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-info {
    position: relative;
}

.ceo-company {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ceo-name {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.ceo-credentials {
    text-align: left;
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.ceo-credentials li {
    font-size: 1.35rem;
    color: var(--color-dark);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px dashed rgba(26, 58, 110, 0.1);
    font-weight: 600;
}

.ceo-credentials li:last-child {
    border-bottom: none;
}

.ceo-credentials li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 900;
}

.ceo-text {
    padding-top: 1rem;
}

.ceo-text p {
    font-size: 1.6rem;
    color: var(--color-text);
    line-height: 2.2;
    margin-bottom: 3rem;
    text-align: justify;
}

/* Drop cap for the first paragraph */
.ceo-text p:first-of-type::first-letter {
    font-size: 3.2em;
    font-weight: 900;
    color: var(--color-primary);
    float: left;
    line-height: 0.8;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.ceo-highlight {
    background: linear-gradient(transparent 60%, rgba(255, 246, 122, 0.4) 60%);
    font-weight: 700;
    color: var(--color-dark);
    padding: 0 0.2em;
}

.ceo-closing {
    font-size: 2.2rem !important;
    font-weight: 900;
    color: var(--color-primary) !important;
    text-align: center !important;
    padding: 4rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 58, 110, 0.08);
    border: 2px solid var(--color-primary);
    margin-top: 4rem !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ceo-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 58, 110, 0.03) 0%, transparent 70%);
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .ceo-profile {
        position: static;
        max-width: 700px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
        padding: 3rem;
    }
    
    .ceo-image {
        margin: 0;
        width: 180px;
        height: 180px;
    }
    
    .ceo-name {
        margin-bottom: 1.5rem;
    }

    .ceo-credentials {
        margin-top: 0;
        padding: 1.5rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .ceo-profile {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
        gap: 1.5rem;
    }
    
    .ceo-image {
        margin: 0 auto 1rem;
    }
    
    .ceo-text p {
        font-size: 1.5rem;
        line-height: 2;
        margin-bottom: 2rem;
    }
    
    .ceo-closing {
        padding: 2.5rem;
        font-size: 1.8rem !important;
    }
}

/* ===================================
   Entry Section
   =================================== */
.entry {
    padding: 10rem 2rem;
    background: rgb(14 33 65 / 80%);
}

.entry-inner {
    max-width: 700px;
    margin: 0 auto;
}

.entry-lead {
    text-align: center;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.entry-form {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.form-required {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
    font-weight: 600;
}

.form-optional {
    display: inline-block;
    background: #e8eaed;
    color: #5f6368;
    font-size: 1.1rem;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
    font-weight: 600;
}

.form-input--optional {
    background: #f7f8fa;
    border-color: #dde1e6;
}

.form-input--optional:focus {
    background: var(--color-white);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--color-white);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(199, 37, 43, 0.15);
}

.form-input--short {
    width: 120px;
}

.form-age {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-unit {
    font-size: 1.6rem;
    color: var(--color-text);
}

.form-radios {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
}

.form-radio input {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
}

.form-radio input:checked + span {
    color: var(--color-accent);
    font-weight: 700;
}

.form-radio span {
    font-size: 1.5rem;
    color: var(--color-text);
}

.form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
}

.form-checkbox span {
    font-size: 1.5rem;
    color: var(--color-text);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 2rem 2rem 1.8rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(199, 37, 43, 0.3);
    transition: all 0.3s ease;
}

.form-submit-static {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.form-submit-text-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-submit-note {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.92;
    letter-spacing: 0.02em;
}

.form-submit svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(199, 37, 43, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== ハニーポット（ボット対策: 完全非表示） ===== */
.form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* ===== バリデーションエラー ===== */
.form-error {
    display: none;
    color: #ef4444;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.form-group--error .form-input,
.form-group--error .form-textarea,
.form-group--error .form-input--optional {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ===== 文字数カウンタ ===== */
.form-char-count {
    display: block;
    text-align: right;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
}

.form-char-count--warn {
    color: #f59e0b;
}

/* ===== 同意チェックボックス ===== */
.form-group--consent {
    text-align: center;
    margin-bottom: 2rem;
}

.form-checkbox--consent {
    font-size: 1.4rem;
}

/* ===== 送信ボタンのローディング ===== */
.form-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.form-spinner {
    animation: formSpin 1s linear infinite;
}

@keyframes formSpin {
    to { transform: rotate(360deg); }
}

/* ===== 送信結果メッセージ ===== */
.form-result {
    text-align: center;
    padding: 4rem 2rem;
    animation: formFadeIn 0.5s ease;
}

.form-result-icon {
    margin-bottom: 2rem;
}

.form-result-message {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    white-space: pre-wrap;
    margin-bottom: 2rem;
}

.form-result-retry {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-result-retry:hover {
    background: rgba(255, 255, 255, 0.25);
}

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

/* ===================================
   Page Top Button
   =================================== */
.page-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(26, 58, 110, 0.4);
}

.page-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(26, 58, 110, 0.5);
}

.page-top-icon {
    width: 24px;
    height: 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-primary-dark);
    padding: 5rem 2rem 3rem;
    border-top: 3px solid var(--color-accent);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 1rem;
    color: var(--color-accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.copyright {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .header-sns {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reason-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workstyle-grid {
        grid-template-columns: 1fr;
    }
    
    .special-content {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .stat-box {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 5rem;
    }
    
    .stat-number--yen,
    .stat-number--small {
        font-size: 3rem;
    }
    
    .reason-features {
        grid-template-columns: 1fr;
    }

    .vision-quote {
        padding: 3rem 2rem;
    }

    .vision-sub {
        font-size: 1.4rem;
    }
    
    .workstyle-note {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-highlight {
        flex-direction: column;
        gap: 2rem;
    }
    
    .entry-form {
        padding: 3rem 2rem;
    }
    
    .form-checkboxes {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-lead {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 4.5rem;
    }
    
    .stat-text-large {
        font-size: 2.4rem;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .section-title-en {
        font-size: 4rem;
    }
    
    .section-title-ja {
        font-size: 18px;
    }
    
    .page-top {
        width: 50px;
        height: 50px;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}
