/* ========================================
   東京アオヤス v2 - スターバックス風デザイン
   ======================================== */

/* ----------------------------------------
   Design Tokens
   ---------------------------------------- */
:root {
    /* === Colors === */
    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-alt: #FFFBF5;
    --color-bg-warm: #F5F1EB;
    --color-primary: #D4895F;
    --color-primary-dark: #8B5A2B;
    --color-primary-light: #E8A87C;
    --color-text: #1E1E1E;
    --color-text-muted: #6B6B6B;
    --color-text-light: #9A9A9A;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-strong: rgba(0, 0, 0, 0.12);
    --color-shadow: rgba(0, 0, 0, 0.06);

    /* === Typography === */
    --font-display: 'Noto Serif JP', 'YuMincho', serif;
    --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

    /* Font Sizes */
    --text-xs: 0.9rem;
    --text-sm: 1.1rem;
    --text-base: 1.25rem;
    --text-lg: 1.45rem;
    --text-xl: 1.6rem;
    --text-2xl: 1.9rem;
    --text-3xl: 2.6rem;
    --text-4xl: 3.2rem;
    --text-5xl: 4.5rem;

    /* === Spacing === */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-section: 5rem;
    --space-section-sm: 3rem;

    /* === Layout === */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --header-height: 72px;

    /* === Borders & Radius === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* === Shadows === */
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-header: 0 1px 3px rgba(0, 0, 0, 0.08);

    /* === Transitions === */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-primary);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

ul, ol {
    list-style: none;
}

button {
    font: inherit;
    color: inherit;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* ----------------------------------------
   Container
   ---------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ----------------------------------------
   Section Title
   ---------------------------------------- */
.section-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--space-4xl);
    letter-spacing: 0.05em;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-white);
    z-index: 100;
    transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.header.is-scrolled {
    box-shadow: var(--shadow-header);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 350px;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 200;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 1px;
    transition: transform var(--duration-normal) var(--ease-smooth),
                opacity var(--duration-fast) var(--ease-smooth);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation */
.nav {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-smooth),
                visibility var(--duration-normal) var(--ease-smooth);
    z-index: 150;
}

.nav.is-active {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    text-align: center;
}

.nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-smooth);
}

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

.nav.is-active .nav-item:nth-child(1) { transition-delay: 0.1s; }
.nav.is-active .nav-item:nth-child(2) { transition-delay: 0.15s; }
.nav.is-active .nav-item:nth-child(3) { transition-delay: 0.2s; }
.nav.is-active .nav-item:nth-child(4) { transition-delay: 0.25s; }
.nav.is-active .nav-item:nth-child(5) { transition-delay: 0.3s; }

.nav-item:not(:last-child) {
    margin-bottom: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.1em;
    position: relative;
    padding: var(--space-xs);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--duration-normal) var(--ease-smooth);
}

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

.nav-link--sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-instagram-icon {
    width: 28px;
    height: 28px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
    }

    .nav-item {
        opacity: 1;
        transform: none;
    }

    .nav-item:not(:last-child) {
        margin-bottom: 0;
    }

    .nav-link {
        font-size: var(--text-sm);
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    .nav-instagram-icon {
        width: 20px;
        height: 20px;
    }
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    background: var(--color-bg-alt);
}

.hero-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl) var(--container-padding);
}

.hero-location {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.hero-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
}

.hero-catchphrase {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    background: var(--color-primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    transition: background var(--duration-fast) var(--ease-smooth),
                transform var(--duration-fast) var(--ease-smooth);
}

.hero-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Desktop Hero */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: stretch;
    }

    .hero-visual {
        width: 55%;
        aspect-ratio: auto;
    }

    .hero-content {
        width: 45%;
        padding: var(--space-3xl);
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-catchphrase {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    .hero-visual {
        width: 60%;
    }

    .hero-content {
        width: 40%;
    }
}

/* ----------------------------------------
   WHAT'S NEW Section
   ---------------------------------------- */
.whatsnew {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.news-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.news-card:hover {
    box-shadow: var(--shadow-card);
}

.news-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.news-card-content {
    flex: 1;
}

.news-card-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.news-card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.news-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Desktop News */
@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-card {
        flex-direction: column;
        text-align: center;
    }

    .news-card-icon {
        margin: 0 auto;
    }
}

/* ----------------------------------------
   MENU Section
   ---------------------------------------- */
.menu {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.menu-category {
    margin-bottom: var(--space-3xl);
}

.menu-category:last-of-type {
    margin-bottom: 0;
}

.menu-category-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.menu-category-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.menu-category-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.menu-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(139, 90, 43, 0.15);
}

.menu-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-bg-warm);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

/* メニューカード プレースホルダー */
.menu-card-image-placeholder {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #f8f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-image-placeholder--wide {
    aspect-ratio: 4 / 3;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.6;
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

/* バッジバリエーション */
.badge--popular {
    background: #e74c3c;
}

.badge--seasonal {
    background: #27ae60;
}

.badge--new {
    background: #3498db;
}

.menu-card-content {
    padding: var(--space-xl);
}

.menu-card-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.menu-card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.menu-card-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary);
}

.menu-note {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--space-lg);
}

/* 焼き芋サイズ価格（1行表示） */
.yakiimo-prices {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.yakiimo-price-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.yakiimo-price-item:last-child {
    border-right: none;
}

.yakiimo-size {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.yakiimo-size::after {
    content: 'サイズ';
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-text-muted);
    display: block;
    margin-top: 2px;
}

.yakiimo-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary);
}

/* ドリンクグリッド */
.menu-grid--drinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.menu-card--drink {
    padding: var(--space-lg);
}

.menu-card--drink .menu-card-content {
    padding: 0;
}

.menu-card--drink .menu-card-name {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.menu-card--drink .menu-card-desc {
    font-size: var(--text-xs);
    margin-bottom: var(--space-xs);
}

.menu-card--drink .menu-card-price {
    font-size: var(--text-lg);
}

/* 人気バッジ */
.menu-card--popular .menu-card-badge {
    background: #E53935;
}

/* 焼き芋セクションヒーロー画像 */
.menu-hero-image {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* ブリュレカード */
.menu-card--brulee .menu-card-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.menu-card-option {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .menu-grid--drinks {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 焼き芋価格 - スマホ対応 */
    .yakiimo-prices {
        flex-direction: row;
    }

    .yakiimo-price-item {
        padding: var(--space-md) var(--space-sm);
    }

    .yakiimo-size {
        font-size: var(--text-base);
    }

    .yakiimo-price {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .menu-grid--drinks {
        grid-template-columns: 1fr;
    }

    .yakiimo-size {
        font-size: var(--text-sm);
    }

    .yakiimo-size::after {
        font-size: 0.7rem;
    }

    .yakiimo-price {
        font-size: var(--text-base);
    }
}

.menu-notice {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.menu-notice a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
}

/* Mobile Menu Card Adjustments */
@media (max-width: 767px) {
    .menu-card {
        border-radius: var(--radius-md);
    }

    .menu-card-image {
        aspect-ratio: 1 / 1;
    }

    .menu-card-content {
        padding: var(--space-md);
    }

    .menu-card-name {
        font-size: var(--text-base);
        margin-bottom: var(--space-xs);
    }

    .menu-card-desc {
        font-size: var(--text-xs);
        line-height: 1.5;
        margin-bottom: var(--space-xs);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-card-price {
        font-size: var(--text-lg);
    }
}

/* Desktop Menu */
@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

/* ----------------------------------------
   FEATURES Section
   ---------------------------------------- */
.features {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-smooth);
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
}

.feature-card-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.feature-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 var(--space-xs);
    background: var(--color-primary);
    color: white;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.feature-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Mobile Features - Strip Layout (like News) */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-card {
        display: flex;
        align-items: flex-start;
        gap: var(--space-lg);
        text-align: left;
        padding: var(--space-lg);
    }

    .feature-card-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .feature-card-content {
        flex: 1;
        min-width: 0;
    }

    .feature-card-title {
        font-size: var(--text-base);
        margin-bottom: var(--space-xs);
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .feature-card-text {
        font-size: var(--text-xs);
        line-height: 1.5;
    }
}

/* Desktop Features */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-card {
        padding: var(--space-xl) var(--space-lg);
    }
}

/* ----------------------------------------
   ACCESS Section
   ---------------------------------------- */
.access {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.access-info {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
}

.access-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.access-item {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.access-item:last-child {
    border-bottom: none;
}

.access-item--highlight {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-bottom: none;
}

.access-label {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
}

.access-value {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.7;
}

.access-value--time {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.access-highlight-text {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.access-highlight-note {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.access-tel {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: 500;
}

.access-tel:hover {
    color: var(--color-primary-dark);
}

.access-tel-icon {
    width: 18px;
    height: 18px;
}

.access-sns {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 500;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.access-sns:hover {
    transform: translateY(-2px);
}

.access-sns-icon {
    width: 20px;
    height: 20px;
}

.access-sns-icon svg {
    width: 100%;
    height: 100%;
}

.access-map {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.access-map-iframe {
    width: 100%;
    height: 100%;
}

/* Desktop Access */
@media (min-width: 768px) {
    .access-content {
        flex-direction: row;
    }

    .access-info {
        flex: 1;
    }

    .access-map {
        flex: 1.2;
        aspect-ratio: auto;
        min-height: 400px;
    }
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    background: var(--color-primary-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: var(--text-sm);
    opacity: 0.7;
    margin-top: var(--space-xs);
}

.footer-sns-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    transition: background var(--duration-fast) var(--ease-smooth);
}

.footer-sns-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: var(--text-xs);
    opacity: 0.6;
}

/* Desktop Footer */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ----------------------------------------
   Responsive Utilities
   ---------------------------------------- */
@media (max-width: 767px) {
    :root {
        --container-padding: 1.25rem;
    }
}

/* ----------------------------------------
   Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ----------------------------------------
   TOP DUAL Section（2カラム）
   ---------------------------------------- */
.top-dual{
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
    padding-top: var(--header-height);
}

@media (min-width: 768px) {
    .top-dual {
        grid-template-columns: 1fr 1fr;
        min-height: 80vh;
    }
}

.dual-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 35vh;
    overflow: hidden;
    background: var(--color-bg-alt);
    text-decoration: none;
}

@media (min-width: 768px) {
    .dual-card {
        min-height: 80vh;
    }
}

.dual-card-image {
    position: absolute;
    inset: 0;
}

.dual-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.dual-card:hover .dual-card-image img {
    transform: scale(1.05);
}

.dual-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.dual-card-label {
    font-size: var(--text-xs);
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.dual-card-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin: var(--space-xs) 0;
}

.dual-card-text {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.dual-card-arrow {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: var(--text-lg);
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.dual-card:hover .dual-card-arrow {
    transform: translateX(8px);
}

/* ----------------------------------------
   HERO TEXT Section（トプ画の下）
   ---------------------------------------- */
.hero-text-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    text-align: center;
}

.hero-text-location {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.hero-text-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.hero-text-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
}

.hero-text-catchphrase {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
}

.hero-text-description {
    margin-top: var(--space-xl);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-text-title {
        font-size: var(--text-5xl);
    }

    .hero-text-catchphrase {
        font-size: var(--text-3xl);
    }
}

/* ----------------------------------------
   ABOUT Section
   ---------------------------------------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.about-text {
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: 2;
}

.about-text p {
    margin-bottom: var(--space-lg);
}

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

.about-video {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-elevated);
}

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

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

/* ----------------------------------------
   Scroll Reveal Animation
   ---------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.1s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.25s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.3s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.35s; }

[data-reveal-stagger].revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support for scroll reveal */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-stagger] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ----------------------------------------
   モバイル: テキスト表示改善
   ---------------------------------------- */
@media (max-width: 767px) {
    /* ヒーローテキストセクション */
    .hero-text-section {
        text-align: left;
        padding: var(--space-2xl) var(--container-padding);
    }

    .hero-text-location,
    .hero-text-title,
    .hero-text-subtitle,
    .hero-text-catchphrase {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-text-description {
        text-align: left;
        line-height: 1.8;
        margin-top: var(--space-lg);
        margin-left: 0;
        margin-right: 0;
    }

    /* メニューカテゴリー説明 */
    .menu-category-desc {
        text-align: left;
    }

    /* テキスト改行改善 - 伸ばし棒などが単独で改行されるのを防止 */
    .menu-category-title,
    .menu-card-name,
    .feature-card-title,
    .news-card-title {
        word-break: keep-all;
        overflow-wrap: anywhere;
    }
}

/* ----------------------------------------
   モバイル: トップ画像を正方形に
   ---------------------------------------- */
@media (max-width: 767px) {
    .dual-card {
        min-height: auto;
    }

    .dual-card-image {
        position: relative !important;
        aspect-ratio: 1 / 1;
        inset: auto !important;
    }

    .dual-card-image img {
        object-fit: contain !important;
        background: var(--color-bg-alt);
    }

    /* オーバーレイを左下に配置 */
    .dual-card-content {
        bottom: 0;
        top: auto;
        left: 0;
        right: auto;
        padding: var(--space-sm) var(--space-md);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0 var(--radius-md) 0 0;
    }

    .dual-card-label {
        display: none;
    }

    .dual-card-title {
        font-size: var(--text-lg);
        margin: 0;
    }

    .dual-card-text {
        display: none;
    }

    .dual-card-arrow {
        display: none;
    }
}
