@charset "utf-8";

/* =====================================
   千葉校 プライオリティパス LP - スタイル
===================================== */

/* =====================================
   CSS Variables
===================================== */
:root {
    /* Colors */
    --primary: #fd0253;
    --primary-dark: #d00244;
    --primary-light: #ff6b9d;
    --secondary: #FFD700;
    --accent: #22c55e;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-body: 'Noto Sans JP', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================
   Base Styles
===================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* =====================================
   Layout
===================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) var(--spacing-md);
}

/* =====================================
   Header
===================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

/* =====================================
   Footer
===================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: block;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.75rem;
}

/* =====================================
   Form Base Styles
===================================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.form-label .required {
    color: var(--primary);
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(253, 2, 83, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.form-error.show {
    display: block;
}

/* =====================================
   Section Common Styles
===================================== */
.section {
    padding: var(--spacing-3xl) var(--spacing-md);
}

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

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title-en {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-xs);
}

.section-title-ja {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

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

/* =====================================
   Hero Section - v3
===================================== */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 80px var(--spacing-md) var(--spacing-2xl);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pc-runway.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 明るめのオーバーレイ：画像を活かしつつ文字エリアのみ軽くカバー */
    background: linear-gradient(
        180deg,
        rgba(26, 26, 46, 0.3) 0%,
        rgba(22, 33, 62, 0.25) 40%,
        rgba(15, 52, 96, 0.4) 80%,
        rgba(10, 35, 70, 0.6) 100%
    );
}

/* PC版背景画像 */
@media screen and (min-width: 769px) {
    .hero-bg-image {
        background-image: url('../images/pc-runway.jpg');
        background-position: center center;
    }
}

/* タブレット・モバイル用 */
@media screen and (max-width: 768px) {
    .hero-bg-image {
        background-image: url('../images/runway.jpg');
        background-position: center center;
    }

    .hero-overlay-gradient {
        /* スマホ用：PC版と同じ設定 */
        background: linear-gradient(
            180deg,
            rgba(26, 26, 46, 0.3) 0%,
            rgba(22, 33, 62, 0.25) 40%,
            rgba(15, 52, 96, 0.4) 80%,
            rgba(10, 35, 70, 0.6) 100%
        );
    }
}

.hero-v3 .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    /* 文字の読みやすさを確保 */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-v3 .badge-container {
    margin-bottom: var(--spacing-lg);
}

.hero-v3 .hero-title {
    margin-bottom: var(--spacing-md);
}

/* Priority Pass Badge */
.badge-priority {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1a2e;
    font-weight: 700;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: badge-glow 2s ease-in-out infinite;
    /* 親のtext-shadowを無効化 */
    text-shadow: none;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5); }
}

/* Hero Catch */
.hero-catch {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Times New Roman', Times, serif;
}

/* World カラフル文字 */
.world-colorful {
    display: inline-block;
    font-weight: 700;
    font-style: italic;
}

.world-colorful span {
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 虹色グラデーション風 - 視認性重視 */
.w-w { color: #ff4d94; }   /* 濃いピンク */
.w-o { color: #ffaa33; }   /* 濃いオレンジ */
.w-r { color: #66dd44; }   /* 明るい緑 */
.w-l { color: #33ccff; }   /* 明るい水色 */
.w-d { color: #dd66ff; }   /* 明るい紫 */
.w-dot { color: #aa7744; } /* ブラウン */

/* Hero Title */
.hero-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
}

.hero-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    word-spacing: 0.15em;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-school {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: var(--spacing-xs);
}

/* Open Date */
.hero-v3 .hero-open-date {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-v3 .open-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.hero-v3 .open-date {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Social Proof with Avatars */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.proof-avatars {
    display: flex;
    gap: 4px;
}

.proof-avatars .avatar {
    font-size: 1.25rem;
}

.proof-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.proof-text strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Countdown in Hero */
.countdown-section {
    margin-bottom: var(--spacing-xl);
}

.countdown-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    min-width: 60px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
    text-align: center;
}

.countdown-unit {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
}

/* CTA Wrapper */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta-above {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cta-slash {
    display: inline-block;
    animation: slash-bounce 1.5s ease-in-out infinite;
}

.cta-slash:last-child {
    animation-delay: 0.1s;
}

@keyframes slash-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.cta-below {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* CTA Button v3 */
.hero-v3 .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-normal);
    box-shadow: 0 8px 30px rgba(253, 2, 83, 0.4);
}

.hero-v3 .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 2, 83, 0.5);
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    opacity: 0.6;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =====================================
   Concept Section
===================================== */
.concept {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.concept-content {
    max-width: 600px;
    margin: 0 auto;
}

.concept-title {
    margin-bottom: var(--spacing-xl);
}

.concept-en {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

/* ONE & COLORFUL カラーリング */
.concept-en span {
    display: inline-block;
}

/* ONE - すべて赤で統一 */
.c-o { color: #c94a4a; }   /* 赤 */
.c-n { color: #c94a4a; }   /* 赤 */
.c-e { color: #c94a4a; }   /* 赤 */

/* & */
.c-amp { color: #4a4a4a; } /* グレー */

/* COLORFUL */
.c-c { color: #7bc47b; }   /* 緑 */
.c-o2 { color: #5cb5b5; }  /* 青緑 */
.c-l { color: #6b9fd4; }   /* 水色 */
.c-o3 { color: #8888c8; }  /* 青紫 */
.c-r { color: #b07cb0; }   /* 紫 */
.c-f { color: #d4a0b0; }   /* ピンク */
.c-u { color: #c9a07a; }   /* ベージュ */
.c-l2 { color: #a0a0a0; }  /* グレー */

.concept-ja {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
}

.concept-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--gray-600);
}

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

/* =====================================
   Priority Benefits Section
===================================== */
.priority-benefits {
    background: linear-gradient(135deg, #fef9f0 0%, #fff5f8 100%);
    padding: var(--spacing-3xl) 0;
}

/* Pass Card Design */
.pass-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 2, 83, 0.1);
}

.pass-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: var(--spacing-lg);
}

.pass-icon {
    font-size: 1.5rem;
}

.pass-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pass-free {
    font-size: 0.7rem;
    font-weight: 700;
    background: #22c55e;
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.pass-limit {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--accent-gold);
    color: #1a1a2e;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pass-benefits {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.pass-benefit {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.benefit-detail h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.benefit-detail p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.pass-footer {
    background: var(--gray-50);
    padding: var(--spacing-md) var(--spacing-xl);
    text-align: center;
    border-top: 1px dashed var(--gray-200);
}

.pass-remaining {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pass-remaining strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

/* =====================================
   Global Experience Section
===================================== */
.global-experience {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.experience-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    transition: all var(--transition-normal);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.experience-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

/* Flags Circle */
.flags-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    max-width: 120px;
}

.flags-circle span {
    font-size: 1.25rem;
    animation: flag-float 3s ease-in-out infinite;
}

.flags-circle span:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes flag-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Quality Badge */
.quality-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    border-radius: 50%;
    color: var(--white);
}

.quality-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.quality-unit {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

.quality-label {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Community Icon */
.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-icon span {
    font-size: 2.5rem;
}

.experience-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
}

.experience-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* =====================================
   Track Record Section
===================================== */
.track-record {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0;
}

.track-record .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.track-record .stat-item {
    padding: var(--spacing-xl);
}

.track-record .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.track-record .stat-number small {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.track-record .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =====================================
   Target Audience Section
===================================== */
.target-audience {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.target-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.target-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.target-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.target-item p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    padding-top: 2px;
}

/* =====================================
   Register Section - v3 Boarding Pass
===================================== */
.register {
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 100%);
    padding: var(--spacing-3xl) 0;
}

/* ボーディングパス全体 */
.boarding-pass {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

/* 切り取り線（ミシン目）*/
.boarding-pass::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 140px;
    bottom: 16px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        #ddd 8px,
        #ddd 16px
    );
}

/* 半円の切り欠き - 上 */
.boarding-pass::after {
    content: '';
    position: absolute;
    top: -16px;
    right: 124px;
    width: 32px;
    height: 32px;
    background: #ecf6fd;
    border-radius: 50%;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* 半円の切り欠き - 下（別要素で） */
.boarding-stub::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: #ecf6fd;
    border-radius: 50%;
    box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* メイン部分 */
.boarding-main {
    flex: 1;
    padding: var(--spacing-xl);
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

/* ヘッダー（航空会社風） */
.boarding-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
}

.boarding-airline {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.airline-logo {
    font-size: 1.5rem;
    color: var(--primary);
}

.airline-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gray-800);
}

.boarding-class {
    text-align: right;
}

.class-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
}

.class-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
}

/* 出発地 → 到着地 */
.boarding-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.route-from,
.route-to {
    text-align: center;
}

.route-code {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
}

.route-city {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.route-arrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.plane-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transform: rotate(90deg);
    margin-bottom: 4px;
}

.route-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-300), var(--primary), var(--gray-300));
    position: relative;
}

.route-line::before,
.route-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    border-radius: 50%;
    transform: translateY(-50%);
}

.route-line::before { left: 0; }
.route-line::after { right: 0; background: var(--primary); }

/* フライト詳細 */
.boarding-details {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.detail-item {
    flex: 1;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
}

.detail-value strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* フォームセクション */
.boarding-form-section {
    border-top: 2px dashed var(--gray-200);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.boarding-form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.boarding-form-title .title-free {
    font-size: 0.7rem;
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

.boarding-lead {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.boarding-form .form-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.form-note {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 2px;
}

/* form.run ボット対策用非表示フィールド */
._formrun_gotcha {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* 送信ボタン */
.boarding-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(253, 2, 83, 0.3);
}

.boarding-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 2, 83, 0.4);
}

/* 安心ポイント（ミシン目の上） */
.boarding-trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
}

.boarding-trust span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* 半券（スタブ）部分 */
.boarding-stub {
    width: 140px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* PC版ではstub-contentは縦並び */
.stub-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
}

.stub-header {
    text-align: center;
}

.stub-airline {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.stub-class {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-top: 4px;
}

.stub-route {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
}

.stub-from,
.stub-to {
    font-size: 1.1rem;
    font-weight: 700;
}

.stub-arrow {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* バーコード風 */
.stub-barcode {
    width: 100%;
    padding: var(--spacing-sm) 0;
}

.barcode-lines {
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        #fff,
        #fff 2px,
        transparent 2px,
        transparent 4px,
        #fff 4px,
        #fff 5px,
        transparent 5px,
        transparent 8px,
        #fff 8px,
        #fff 10px,
        transparent 10px,
        transparent 11px,
        #fff 11px,
        #fff 14px,
        transparent 14px,
        transparent 16px
    );
    opacity: 0.9;
}

.stub-info {
    text-align: center;
}

.stub-date {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.stub-seats {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--accent-gold);
    color: #1a1a2e;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

/* プライバシーポリシー */
.boarding-privacy {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.pass-icon-small {
    font-size: 1.1rem;
}

.pass-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Remaining Slots Bar */
.remaining-slots {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.slots-text {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
}

.slots-text strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.slots-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.slots-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #ff6b9d 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

/* Register Form Content */
.register-card-v3 .register-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin: var(--spacing-xl) var(--spacing-xl) var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.title-free {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background: #22c55e;
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.register-card-v3 .register-lead {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    margin: 0 var(--spacing-xl) var(--spacing-lg);
}

.register-card-v3 .waitlist-form {
    padding: 0 var(--spacing-xl);
}

/* Submit Button v3 */
.submit-button-v3 {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(253, 2, 83, 0.3);
}

.submit-button-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 2, 83, 0.4);
}

.submit-button-v3:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Trust Points */
.register-card-v3 .trust-points {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    border-top: none;
    margin-top: var(--spacing-lg);
}

.trust-item {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* =====================================
   Register Complete - Pass Style
===================================== */
.register-complete {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.complete-pass {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.complete-pass-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: var(--spacing-md);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.complete-pass-body {
    padding: var(--spacing-xl);
}

.complete-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.complete-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
}

.complete-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.complete-message {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Social Share */
.social-share {
    margin-top: var(--spacing-xl);
}

.share-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-md);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.share-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.share-twitter {
    background: #000000;
    color: var(--white);
}

.share-line {
    background: #00b900;
    color: var(--white);
}

.share-facebook {
    background: #1877f2;
    color: var(--white);
}

.share-button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* =====================================
   Access Section
===================================== */
.access {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.access-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.access-detail {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.access-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(253, 2, 83, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-xs);
}

.access-address,
.access-station {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.access-map {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.access-map iframe {
    display: block;
    border-radius: var(--radius-lg);
}

.map-link-text {
    display: block;
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.map-link-text:hover {
    text-decoration: underline;
}

/* =====================================
   Floating CTA - v3
===================================== */
.floating-cta-v3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-200);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.floating-cta-v3.show {
    transform: translateY(0);
}

.floating-cta-v3 .floating-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    color: var(--white);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(253, 2, 83, 0.3);
}

.floating-pass {
    font-size: 1rem;
}

.floating-text {
    font-size: 0.95rem;
}

.floating-remaining {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.floating-remaining strong {
    font-family: var(--font-display);
    font-weight: 700;
}

/* =====================================
   Expired Content
===================================== */
.expired-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: var(--spacing-xl);
}

.expired-card {
    max-width: 500px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.expired-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.expired-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-lg);
}

.expired-message {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.expired-message strong {
    color: var(--primary);
}

.expired-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-xl);
}

.expired-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #e00249 100%);
    color: var(--white);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.expired-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 2, 83, 0.4);
}

/* =====================================
   Responsive - Tablet
===================================== */
@media screen and (max-width: 768px) {
    /* Hero */
    .hero-catch {
        font-size: 1.25rem;
    }

    .hero-brand {
        font-size: 1.5rem;
    }

    .hero-school {
        font-size: 2rem;
    }

    /* Experience Grid */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .experience-card {
        padding: var(--spacing-lg);
    }

    /* Stats */
    .track-record .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .track-record .stat-item {
        padding: var(--spacing-lg);
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
    }

    .track-record .stat-number {
        font-size: 2.5rem;
    }

    /* Access */
    .access-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Concept */
    .concept-text br {
        display: none;
    }

    /* Boarding Pass - Tablet: 縦並び + 横向きミシン目 */
    .boarding-pass {
        flex-direction: column;
        max-width: 480px;
        overflow: visible;
    }

    /* スタブ：ミシン目をスタブ内に配置して相対位置で管理 */
    .boarding-stub {
        width: 100%;
        flex-direction: column;
        padding: 0;
        border-radius: 0 0 16px 16px;
        position: relative;
    }

    /* ミシン目と切り欠きはboarding-passではなくstubの上部に配置 */
    .boarding-pass::before,
    .boarding-pass::after {
        display: none;
    }

    /* スタブ上部のミシン目エリア - 半円を避けて配置 */
    .boarding-stub::before {
        content: '';
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        bottom: auto;
        width: auto;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 6px,
            #ccc 6px,
            #ccc 12px
        );
        border-radius: 0;
    }

    /* 左の半円切り欠き */
    .boarding-stub::after {
        content: '';
        position: absolute;
        top: -16px;
        left: -16px;
        width: 32px;
        height: 32px;
        background: #ecf6fd;
        border-radius: 50%;
        z-index: 10;
        box-shadow: inset 4px 0 8px rgba(0, 0, 0, 0.08);
    }

    /* 右の半円切り欠き - boarding-mainの下端に配置 */
    .boarding-main::after {
        content: '';
        position: absolute;
        bottom: -16px;
        right: -16px;
        width: 32px;
        height: 32px;
        background: #ecf6fd;
        border-radius: 50%;
        z-index: 10;
        box-shadow: inset -4px 0 8px rgba(0, 0, 0, 0.08);
    }

    .boarding-main {
        position: relative;
    }

    /* stub-contentのbeforeは不要 */
    .stub-content::before {
        display: none;
    }

    /* 上段：コンテンツエリア */
    .stub-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        position: relative;
    }

    /* 下段：バーコードエリア */
    .stub-barcode {
        width: 100%;
        margin: 0;
        padding: var(--spacing-xs) var(--spacing-lg) var(--spacing-md);
    }

    .barcode-lines {
        height: 30px;
    }

    .stub-header {
        text-align: left;
    }

    .stub-route {
        flex-direction: row;
        gap: var(--spacing-sm);
    }

    .stub-info {
        text-align: right;
    }
}

/* =====================================
   Responsive - Mobile
===================================== */
@media screen and (max-width: 480px) {
    /* Hero */
    .hero-v3 {
        min-height: auto;
        padding-bottom: var(--spacing-3xl);
    }

    .hero-catch {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-brand {
        font-size: 1.6rem;
    }

    .hero-school {
        font-size: 2.2rem;
    }

    .hero-v3 .hero-cta {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .cta-text {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Pass Card */
    .pass-header {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }

    .pass-benefits {
        padding: var(--spacing-lg);
    }

    .pass-benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Stats */
    .track-record .stat-number {
        font-size: 2rem;
    }

    /* Register */
    .register-card-v3 .register-title {
        font-size: 1.1rem;
        margin: var(--spacing-lg) var(--spacing-md) var(--spacing-xs);
    }

    .register-card-v3 .register-lead {
        font-size: 0.85rem;
        margin: 0 var(--spacing-md) var(--spacing-md);
    }

    .register-card-v3 .waitlist-form {
        padding: 0 var(--spacing-md);
    }

    .register-card-v3 .trust-points {
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: var(--spacing-md);
    }

    /* Floating CTA */
    .floating-cta-v3 .floating-cta-button {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .floating-text {
        font-size: 0.85rem;
    }

    /* Boarding Pass - Mobile */
    .boarding-main {
        padding: var(--spacing-lg);
    }

    .route-code {
        font-size: 1.5rem;
    }

    .boarding-details {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .boarding-trust {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    /* スタブをさらにコンパクトに - 縦並びで見やすく */
    .boarding-stub {
        padding: var(--spacing-md);
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .stub-content {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }

    /* stub-content: 左にOCE PRIORITY、右にルート、下にOPEN日・限定人数 */
    .stub-content {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: var(--spacing-xs) var(--spacing-md);
        align-items: center;
    }

    .stub-header {
        text-align: left;
        grid-column: 1;
        grid-row: 1;
    }

    /* NOW ✈ CHIBA を右側に */
    .stub-route {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }

    .stub-route .stub-from,
    .stub-route .stub-to {
        font-size: 0.9rem;
    }

    .stub-route .stub-arrow {
        font-size: 0.75rem;
    }

    /* OPEN日・限定人数を下段に横並び */
    .stub-info {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: var(--spacing-xs);
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: var(--spacing-xs);
    }

    .stub-info .stub-date {
        font-size: 1rem;
        font-weight: 700;
    }

    .stub-info .stub-open {
        font-size: 0.7rem;
    }

    .stub-info .stub-seats {
        font-size: 0.85rem;
    }

    .stub-barcode {
        order: 4;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: var(--spacing-xs) var(--spacing-md) var(--spacing-sm);
    }

    .barcode-lines {
        height: 25px;
    }

    /* Expired */
    .expired-card {
        padding: var(--spacing-xl);
    }

    .expired-title {
        font-size: 1.1rem;
    }

    .expired-message br {
        display: none;
    }
}

/* =====================================
   Animations
===================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   Thanks Page
===================================== */
.thanks-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.thanks-hero {
    padding: var(--spacing-3xl) var(--spacing-md);
    text-align: center;
}

.thanks-hero .complete-pass {
    margin-bottom: var(--spacing-xl);
}

.thanks-hero .social-share {
    margin-top: var(--spacing-xl);
}

/* =====================================
   期限切れ時のスタイル
===================================== */

/* カウントダウン終了時 */
.countdown-ended {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

/* CTAボタン無効化 */
.cta-disabled {
    background: var(--gray-500) !important;
    cursor: default;
    animation: none !important;
}

.cta-disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* タイトルのCLOSEDバッジ */
.title-closed {
    background: var(--gray-500);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
}

/* 期限切れメッセージボックス */
.expired-message-box {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.expired-icon-large {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.expired-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.expired-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

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

.expired-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.expired-note small {
    font-size: 0.75rem;
}

.expired-link-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.expired-link-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =====================================
   Twemoji Styles（クロスプラットフォーム対応）
===================================== */
img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
}

/* 国旗アバター内の絵文字 */
.proof-avatars img.emoji,
.avatar img.emoji {
    height: 1.5rem;
    width: 1.5rem;
}

/* 国旗サークル内の絵文字 */
.flags-circle img.emoji {
    height: 1.25rem;
    width: 1.25rem;
}

/* バッジ内の絵文字 */
.badge img.emoji {
    height: 1em;
    width: 1em;
}

/* reCAPTCHA v3 バッジを非表示 */
.grecaptcha-badge {
    visibility: hidden !important;
}

