/* ==========================================
   包子専門店 - メインスタイルシート
   ========================================== */

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

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

iframe {
    max-width: 100%;
}

:root {
    /* カラーパレット - 美味しそうな暖色系 */
    --primary-color: #D84315;        /* 深い赤オレンジ - 食欲をそそる */
    --primary-dark: #BF360C;
    --primary-light: #FF6E40;
    --secondary-color: #FFA726;      /* 黄金色 - 温かみ */
    --accent-color: #FFD54F;         /* 明るい黄色 */
    
    /* テキストカラー */
    --text-primary: #2C2C2C;
    --text-secondary: #666;
    --text-light: #999;
    
    /* 背景カラー */
    --bg-white: #FFFFFF;
    --bg-light: #FFF8F3;             /* 温かみのある白 */
    --bg-cream: #FFF4E6;             /* クリーム色 */
    --bg-dark: #3E2723;              /* 深い茶色 */
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 40px rgba(216, 67, 21, 0.2);
    
    /* トランジション */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   ナビゲーション
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(216, 67, 21, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-notice {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 700px;
    width: 100%;
}

.notice-text {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 243, 224, 0.95);
    color: #C62828;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(216, 67, 21, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 167, 38, 0.3);
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.notice-text:hover {
    background: rgba(255, 243, 224, 1);
    border-color: rgba(255, 167, 38, 0.5);
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.2);
    transform: translateY(-2px);
}

.notice-text i {
    margin-right: 0.6rem;
    font-size: 1rem;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.notice-text span {
    flex: 1;
    line-height: 1.6;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

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

/* ==========================================
   ボタン
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==========================================
   特徴セクション
   ========================================== */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   セクション共通スタイル
   ========================================== */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================
   メニューセクション
   ========================================== */
.menu {
    padding: 3rem 0;
    background: var(--bg-light);
}

.menu-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    max-width: 500px;
    width: 100%;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    overflow: hidden;
}

.menu-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(216, 67, 21, 0.9), rgba(255, 167, 38, 0.9));
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.menu-badge.special {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: pulse 2s infinite;
}

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

.menu-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-name-overlay {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.menu-price-overlay {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-content {
    padding: 1.8rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.menu-allergen-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff8e1;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.allergen-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allergen-title i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.allergen-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-cream);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-hot {
    background: #FFEBEE;
    color: #C62828;
}

.tag-veggie {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag-sweet {
    background: #FCE4EC;
    color: #C2185B;
}

.tag-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-primary);
}

/* ==========================================
   こだわりセクション
   ========================================== */
.about {
    padding: 6rem 0;
    background-image: url('https://www.lightsystem.jp/pauzu/pozu1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content-centered .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text {
    text-align: left;
}

.about-item {
    margin-bottom: 2.5rem;
}

.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-item h3 i {
    font-size: 1.2rem;
}

.about-item p {
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 1.7rem;
}

/* ==========================================
   お客様の声セクション
   ========================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   贈答品セクション
   ========================================== */
.gift {
    padding: 6rem 0;
    background: white;
}

.gift-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.gift-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.gift-intro-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.gift-intro-text h3 i {
    font-size: 2rem;
}

.gift-intro-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.gift-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.gift-package-card {
    background: white;
    border: 2px solid var(--bg-cream);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.gift-package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.gift-package-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.package-icon-image {
    background: none;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    max-width: 280px;
    height: 180px;
    box-shadow: var(--shadow-md);
}

.package-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-content {
    text-align: center;
}

.package-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tax-note {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    background: #fff3e0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid #ffb74d;
    display: inline-block;
}

.package-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-cream);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.package-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.gift-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.gift-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.gift-info-item {
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.gift-info-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gift-info-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.gift-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-radius: 20px;
}

.gift-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.gift-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gift-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gift-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gift-cta-buttons .btn i {
    font-size: 1.2rem;
}

/* ==========================================
   テイクアウトセクション
   ========================================== */
.takeout {
    padding: 6rem 0;
    background: var(--bg-light);
}

.takeout-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.takeout-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.takeout-intro-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.takeout-intro-text h3 i {
    font-size: 2rem;
}

.takeout-intro-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.takeout-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.takeout-package-card {
    background: white;
    border: 2px solid var(--bg-cream);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.takeout-package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.takeout-package-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.takeout-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.takeout-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.takeout-info-item {
    text-align: center;
}

.payment-methods {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.payment-methods i {
    margin: 0 0.3rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.takeout-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-radius: 20px;
}

.takeout-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.takeout-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.takeout-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.takeout-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.takeout-cta-buttons .btn i {
    font-size: 1.2rem;
}

/* ==========================================
   CTAセクション
   ========================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ==========================================
   お問い合わせセクション
   ========================================== */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* フォーム */
.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    background: white;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* 店舗住所と地図 */
.store-location {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--bg-cream);
}

.store-image {
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 700px;
}

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

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.location-map iframe {
    display: block;
    width: 100%;
}

/* お問い合わせフォームセクション */
.contact-form-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--bg-cream);
}

.form-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   お召し上がり方 - Eating Instructions
   ========================================== */
.eating-instructions {
    text-align: left;
}

.eating-instructions p {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.eating-instructions p:first-child {
    margin-top: 0;
}

.instruction-list {
    list-style: none;
    counter-reset: instruction-counter;
    padding-left: 0;
    margin-left: 1em;
    line-height: 2;
}

.instruction-list li {
    counter-increment: instruction-counter;
    position: relative;
    padding-left: 3em;
    margin-bottom: 0.5rem;
}

.instruction-list li::before {
    content: counter(instruction-counter);
    position: absolute;
    left: 0;
    width: 1.8em;
    height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1;
}

.instruction-text {
    margin-left: 1em;
    line-height: 1.8;
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .takeout-packages,
    .gift-packages {
        grid-template-columns: 1fr;
    }
    
    .takeout-info-grid,
    .gift-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .gift-cta,
    .takeout-cta {
        padding: 2rem 1.5rem;
    }
    
    .gift-info,
    .takeout-info {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .notice-text {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .notice-text span {
        display: block;
        margin-top: 0.3rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ==========================================
   ユーティリティクラス
   ========================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
