/* リセット & 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d946ef;
    --primary-dark: #a21caf;
    --secondary-color: #f472b6;
    --accent-color: #fbbf24;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #fef3f8;
    --border-color: #f3e8ff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* ユーティリティクラス */
.mobile-only {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================
   メインビジュアル（ヒーロー）
   ======================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: none;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
    display: none;
}

.hero-title-logos {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 1s ease;
}

.logo-separator {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    opacity: 0.9;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
    display: none;
}

.hero-announcement {
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
    display: none;
}

.hero-announcement-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.hero-announcement-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-announcement-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.hero-announcement-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #7C61A7, #9B84C4);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.hero-announcement-badge-secondary {
    background: linear-gradient(135deg, #6B4F94, #7C61A7);
}

.hero-announcement-date {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: none;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ボタン */
.btn {
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 64px;
    font-size: 1.2rem;
}

/* ========================
   訴求ブロック
   ======================== */
.appeal {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.appeal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.appeal-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.appeal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.appeal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2);
}

.appeal-card:hover::before {
    transform: scaleX(1);
}

.appeal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    transition: transform 0.4s ease;
}

.appeal-card:hover .appeal-icon {
    transform: scale(1.1) rotate(5deg);
}

.appeal-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.appeal-card-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.appeal-card-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.appeal-card-center {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.appeal-card-center .appeal-card-title {
    color: white;
}

.appeal-card-center .appeal-card-text {
    color: rgba(255, 255, 255, 0.95);
}

.appeal-icon-plus {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.appeal-icon-plus span {
    font-size: 3rem;
    font-weight: 300;
}

/* 2カラムセクション */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 6rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
}

.column-left,
.column-right {
    background: white;
    padding: 4rem 5%;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.column-left {
    border-right: 1px solid var(--border-color);
    background: linear-gradient(180deg, #EBE7F2 0%, #E0D9EB 100%);
}

.column-right {
    background: linear-gradient(180deg, #FFE8ED 0%, #FFDDE4 100%);
}

.column-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7C61A7, #9B84C4);
    transition: transform 0.4s ease;
}

.column-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
    transition: transform 0.4s ease;
}


.column-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.column-left .column-header {
    border-bottom-color: rgba(124, 97, 167, 0.3);
}

.column-left .column-subtitle {
    color: #7C61A7;
    font-weight: 700;
}

.column-right .column-header {
    border-bottom-color: rgba(255, 107, 107, 0.3);
}

.column-right .column-subtitle {
    color: #FF6B6B;
    font-weight: 700;
}

.column-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.column-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.column-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.column-announcement {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
}

.announcement-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, #7C61A7, #9B84C4);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.announcement-badge-secondary {
    background: linear-gradient(135deg, #6B4F94, #7C61A7);
}

.announcement-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

/* 店舗情報 */
.store-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--text-color);
}

.column-left .info-icon {
    color: #7C61A7;
}

.column-right .info-icon {
    color: #FF6B6B;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.info-text a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.info-text small {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

.column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.feature-item:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 1.5rem 1.5rem 0;
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--text-color);
}

.column-left .feature-icon {
    color: #7C61A7;
}

.column-right .feature-icon {
    color: #FF6B6B;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.column-left .feature-item {
    border: 1px solid rgba(124, 97, 167, 0.2);
}

.column-left .feature-item:hover {
    border-color: #7C61A7;
}

.column-left .feature-icon {
    filter: drop-shadow(0 2px 4px rgba(124, 97, 167, 0.3));
}

.column-left .feature-item h4 {
    color: #6B4F94;
}

.column-right .feature-item {
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.column-right .feature-item:hover {
    border-color: #FF6B6B;
}

.column-right .feature-icon {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}

.column-right .feature-item h4 {
    color: #E85A5A;
}

/* CTA（行動喚起）セクション */
.appeal-cta {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.appeal-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.appeal-cta .btn {
    position: relative;
    z-index: 1;
}

/* ========================
   フッター
   ======================== */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-images {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: none;
    -webkit-text-fill-color: initial;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-separator {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-logo {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-bottom-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================
   モーダル
   ======================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-body ul,
.modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: disc;
}

.modal-body ol {
    list-style: decimal;
}

.modal-body ol ol {
    list-style: lower-alpha;
    margin-top: 0.5rem;
}

.modal-body li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.modal-body a:not(.menu-option) {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.modal-body a:not(.menu-option):hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.modal-body dl {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.modal-body dt {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.modal-body dd {
    color: var(--text-light);
    line-height: 1.8;
    margin-left: 0;
}

.policy-date {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
    font-weight: 600;
    color: var(--text-color);
}

/* メニュー選択モーダル */
.modal-content-menu {
    max-width: 650px;
    max-height: auto;
}

.modal-menu-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.menu-option-af {
    border-color: rgba(124, 97, 167, 0.3);
}

.menu-option-af:hover {
    border-color: #7C61A7;
    background: linear-gradient(135deg, rgba(124, 97, 167, 0.05), rgba(124, 97, 167, 0.02));
}

.menu-option-tbm {
    border-color: rgba(255, 107, 107, 0.3);
}

.menu-option-tbm:hover {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 107, 107, 0.02));
}

.menu-option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.menu-option-af .menu-option-icon {
    background: linear-gradient(135deg, #7C61A7, #9B84C4);
    color: white;
}

.menu-option-tbm .menu-option-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
}

.menu-option-content {
    flex: 1;
}

.menu-option-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.menu-option-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.menu-option-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.info-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #7C61A7, #9B84C4);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.info-badge-secondary {
    background: linear-gradient(135deg, #6B4F94, #7C61A7);
}

.info-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.menu-option-arrow {
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.menu-option:hover .menu-option-arrow {
    transform: translateX(4px);
}

.menu-option-af:hover .menu-option-arrow {
    color: #7C61A7;
}

.menu-option-tbm:hover .menu-option-arrow {
    color: #FF6B6B;
}

/* ========================
   レスポンシブデザイン
   ======================== */
@media (max-width: 1024px) {
    .appeal-content {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-logos {
        gap: 1.5rem;
    }

    .hero-logo {
        height: 60px;
        max-width: 200px;
    }

    .logo-separator {
        font-size: 2rem;
    }

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

    .hero-announcement {
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-announcement-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-announcement-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-announcement-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
        min-width: 170px;
    }

    .hero-announcement-date {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .appeal {
        padding: 80px 0;
    }

    .appeal-content {
        gap: 2rem;
    }

    .appeal-card {
        padding: 2rem 1.5rem;
    }

    .appeal-card-text {
        font-size: 1.05rem;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 4rem;
    }

    .column-left,
    .column-right {
        padding: 3rem 5%;
        border-right: none;
    }

    .column-left {
        border-bottom: 1px solid var(--border-color);
    }

    .column-title {
        font-size: 1.75rem;
    }

    .column-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-image {
        height: 150px;
    }

    .feature-header {
        padding: 1.25rem 1.25rem 0;
    }

    .feature-item p {
        padding: 0 1.25rem 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .appeal-cta {
        padding: 3rem 2rem;
    }

    .cta-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .mobile-only {
        display: inline;
    }

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

    .hero-title-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-logo {
        height: 50px;
        max-width: 200px;
    }

    .logo-separator {
        font-size: 1.5rem;
        transform: rotate(90deg);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-announcement {
        padding: 1rem 1.25rem;
        margin-bottom: 1.75rem;
    }

    .hero-announcement-title {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .hero-announcement-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        min-width: 160px;
    }

    .hero-announcement-date {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .appeal {
        padding: 60px 0;
    }

    .appeal-card {
        padding: 2rem 1.25rem;
    }

    .appeal-card-title {
        font-size: 1.25rem;
    }

    .appeal-card-text {
        font-size: 1rem;
    }

    .appeal-card-description {
        font-size: 0.9rem;
    }

    .appeal-icon {
        width: 64px;
        height: 64px;
    }

    .appeal-icon svg {
        width: 48px;
        height: 48px;
    }

    .two-column-section {
        gap: 0;
        margin-bottom: 3rem;
    }

    .column-left,
    .column-right {
        padding: 2.5rem 5%;
    }

    .column-header {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }

    .column-title {
        font-size: 1.5rem;
    }

    .column-logo {
        height: 40px;
    }

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

    .column-announcement {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }

    .announcement-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .announcement-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        min-width: 160px;
    }

    .announcement-date {
        font-size: 0.85rem;
    }

    .column-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-image {
        height: 120px;
    }

    .feature-header {
        padding: 1rem 1rem 0;
    }

    .feature-item p {
        padding: 0 1rem 1rem;
    }

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

    .feature-item h4 {
        font-size: 1.05rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .store-info {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

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

    .info-text strong {
        font-size: 0.85rem;
    }

    .info-text p {
        font-size: 0.85rem;
    }

    .info-text small {
        font-size: 0.7rem;
    }

    .appeal-cta {
        padding: 2.5rem 1.5rem;
    }

    .cta-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }

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

    .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.05rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-images {
        gap: 0.75rem;
    }

    .footer-logo-img {
        height: 30px;
        max-width: 120px;
    }

    .footer-logo-separator {
        font-size: 1.2rem;
    }

    .footer-bottom-description {
        text-align: left;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.75rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.1rem;
    }

    .modal-menu-body {
        padding: 1.5rem;
        gap: 1rem;
    }

    .menu-option {
        padding: 1.5rem;
        gap: 1rem;
    }

    .menu-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .menu-option-content h3 {
        font-size: 1.1rem;
    }

    .menu-option-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .menu-option-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .info-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .info-date {
        font-size: 0.8rem;
    }

    .menu-option-arrow {
        font-size: 1.25rem;
    }
}

