@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Outfit:wght@400;700&display=swap');

/* ==========================================================================
   #DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors - Primary */
    --color-primary: #ff8c00;
    --color-primary-light: #ffa733;
    --color-primary-dark: #e67e00;
    --color-primary-50: rgba(255, 140, 0, 0.05);
    --color-primary-100: rgba(255, 140, 0, 0.1);
    --color-primary-200: rgba(255, 140, 0, 0.2);

    /* Colors - Accent */
    --color-accent: #e60012;
    --color-accent-light: #ff4444;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;

    /* Colors - Text */
    --color-text-main: #1a1a1a;
    --color-text-sub: #4a4a4a;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-white: #ffffff;

    /* Colors - Background */
    --color-bg-body: #ffffff;
    --color-bg-ivory: #fffef8;
    --color-bg-light: #f8f9fa;
    --color-bg-lighter: #fafbfc;
    --color-bg-accent-light: #fff5eb;
    --color-bg-dark: #1a1a1a;
    --color-bg-overlay: rgba(0, 0, 0, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    --gradient-warm: linear-gradient(135deg, #ffa733 0%, #ff8c00 50%, #e67e00 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #ff8c00 50%, #ffd93d 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Fonts */
    --font-base: 'Noto Sans JP', sans-serif;
    --font-en: 'Lato', 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;

    /* Layout */
    --width-container: 1320px;
    --header-height: 80px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
    --radius-full: 9999px;

    /* Effects - Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-float: 0 15px 40px rgba(255, 140, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Effects - Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(10px);

    /* Transitions & Animations */
    --transition-base: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================================================
   #BASE
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.05em;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    color: var(--color-text-main);
}

.section-title small {
    display: block;
    font-size: 1rem;
    font-family: var(--font-en);
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   #ACCESSIBILITY
   ========================================================================== */
/* スキップリンク */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 2px;
}

/* ==========================================================================
   #COMPONENTS
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    cursor: pointer;
    font-family: var(--font-base);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 18px 45px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-warm);
    z-index: -1;
    transition: opacity var(--transition-base);
    opacity: 0;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-large {
    padding: 22px 55px;
    font-size: 1.2rem;
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

.logo img {
    height: 50px;
    transition: var(--transition-base);
}

.header.scrolled .logo img {
    height: 42px;
}

.logo:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

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

.btn-header {
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ==========================================================================
   #HERO / MAIN VISUAL
   ========================================================================== */
.mv {
    margin-top: var(--header-height);
    padding: 60px 0;
    background: var(--color-bg-ivory);
    position: relative;
    overflow: hidden;
}

.mv::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.mv-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 0;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mv-content {
    flex: 1;
    max-width: 580px;
}

.mv-image {
    flex: 0 0 auto;
    /* 幅を固定するために自動伸縮をオフにする */
    display: flex;
    justify-content: flex-end;
}

.mv-image img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    max-width: 686px;
    /* 元画像のアスペクト比を維持しつつ収める */
    object-fit: contain;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.mv-image:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-content h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-text-main);
}

.mv-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    margin-bottom: 32px;
    font-weight: 400;
    color: var(--color-text-sub);
    line-height: 1.8;
}

/* Media Queries for MV */
@media screen and (max-width: 990px) {
    .mv {
        padding: 40px 0;
    }

    .mv-inner {
        flex-direction: column-reverse;
        padding: 0;
        gap: 30px;
        text-align: center;
    }

    .mv-content {
        max-width: 100%;
    }

    .mv-image {
        justify-content: center;
        margin-bottom: 20px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .mv-image img {
        max-width: 500px;
    }

    .mv-content h2 {
        font-size: 2rem;
    }

    .mv-content p {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   #INFINITE SCROLL
   ========================================================================== */
.infinite-scroll-section {
    overflow: hidden;
    padding: 0;
    margin-bottom: 60px;
    background: transparent;
    display: block;
}

.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
}

.scrolling-content {
    display: flex;
    animation: scroll-left 100s linear infinite;
    width: max-content;
}

.scrolling-content img {
    height: 146px;
    width: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-right: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.scrolling-content img:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   #REASON
   ========================================================================== */
.reason-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reason-item {
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    background: #fff2e8 !important;
    /* カード全体の背景色を強制指定 */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.reason-img {
    overflow: hidden;
}

.reason-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.reason-text {
    padding: 20px;
    background: #fff2e8;
    text-align: center;
    /* Center align all text */
}

.reason-cat {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: var(--font-en);
}

.reason-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.reason-text p {
    font-size: 0.95rem;
    text-align: center;
    /* Ensure paragraphs are centered */
    color: var(--color-text-sub);
    line-height: 1.2;
    /* Tighter line height for wrapped text */
    margin-bottom: 8px;
}

.reason-sub {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.reason-cta {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   #SECRET
   ========================================================================== */
.secret-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secret-card {
    background: var(--color-bg-ivory);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.secret-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fdf5e6;
}

.secret-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-en);
    line-height: 1;
    margin-right: 15px;
}

.secret-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--color-text-main);
}

.secret-body img {
    margin-top: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Secret 01のレイアウト (Flexbox化) */
.secret-card.full-width .secret-body {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.secret-card.full-width .secret-body p {
    flex: 1;
    margin-bottom: 0;
}

.secret-card.full-width .secret-body img {
    width: 140px !important;
    height: auto !important;
    object-fit: cover;
    margin: 0;
    flex-shrink: 0;
}

.nested-container {
    display: flex;
    gap: 30px;
}

.nested-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.nested-card h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.nested-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nested-item {
    background: var(--color-white);
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 25px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.nested-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.nested-item h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

/* 美味しさのヒミツ: 2カラムレイアウト */
.secret-two-column {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.secret-card.half-width {
    flex: 1;
    width: 50%;
}

.accent-title {
    border-left: 4px solid var(--color-primary);
    padding-left: 12px;
    color: var(--color-text-main);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* 03 色々揃えます */
.secret-item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secret-item {
    display: flex;
    align-items: stretch;
    background: #fff;
    /* Changed to white */
    padding: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition-base);
}

.secret-subsection {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.secret-item-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secret-item-img {
    flex: 1;
}

.secret-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.secret-item-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-sub);
}

.secret-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   #BIG SECRET
   ========================================================================== */
.big-secret {
    background: #F9F9F9;
    padding: 60px 0;
}

.big-secret-content {
    background: var(--color-white);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.big-secret-text {
    flex: 1;
}

.big-secret-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid var(--color-primary);
    line-height: 1.4;
}


.big-secret-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    /* Reduced from 20px */
    color: var(--color-text);
}

.big-secret-description {
    font-size: 1rem;
    line-height: 1.4;
    /* Reduced from 1.8 */
    margin-bottom: 25px;
    color: var(--color-text);
}

/* ... skipped lifedeli-link ... */

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px 20px;
    /* Changed vertical padding to 15px */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* ... skipped footer-grid ... */

.footer-nav-list li a:hover {
    color: var(--color-primary);
    /* Changed to primary color */
    padding-left: 0;
    /* Removed movement */
}

.lifedeli-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    border-bottom: none;
    transition: var(--transition-base);
}

.lifedeli-link:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.big-secret-image {
    flex: 1;
    display: flex;
    gap: 15px;
}

.big-secret-image img {
    width: calc(50% - 7.5px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* ==========================================================================
   #PLAN
   ========================================================================== */
.plan {
    background: var(--color-bg-light);
    position: relative;
}

.plan-intro {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 1.2rem;
}

.plan-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.plan-card {
    width: 45%;
    padding: 25px;
    /* Reduced from 50px */
    border-radius: 12px;
    border: 1px solid #E3DFDF;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    background: #FBF9E1;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    display: none;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.big {
    background: #FFF2E8;
    border: 1px solid #E3DFDF;
}

.plan-card.big::before {
    display: none;
}

.plan-card h3 {
    background: var(--color-text-main);
    color: var(--color-white);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.plan-card h3 .big-text {
    color: #ffd700;
    font-weight: 900;
    font-style: italic;
}

.price-box {
    margin: 25px 0;
    border-bottom: 2px dashed #ddd;
    /* Solid line is harsh, dashed is friendlier */
    padding-bottom: 25px;
}

.price-row {
    font-weight: 700;
    margin-bottom: 2px;
    /* Reduced from 7px */
    line-height: 1.1;
}

/* Fixed orphaned block - merged into .plan-card-inner or removed if unused. 
   Assuming these were meant for .plan-card or similar, but simplified here based on request.
   The user wants specific tweaks. */

.plan-header {
    /* background: #444; Removed based on user feedback */
    padding: 15px;
    text-align: center;
    border-radius: var(--radius-md);
    margin: 20px 20px 0;
    /* Bottom margin is 0 */
}

.plan-header h3 {
    color: #fff;
    font-size: 2.1rem;
    /* 1.4 -> 2.1 (approx 1.5x) */
    font-weight: 700;
    margin-bottom: 0;
}

.plan-card .price-box {
    text-align: center;
    padding: 10px 0;
    margin-top: 5px;
}

.plan-card .price-row {
    font-size: 2.1rem;
    /* 1.4 -> 2.1 (1.5x) */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
    color: var(--color-text-main);
}

.plan-card .price-label {
    font-size: 1.65rem;
    /* 1.1 -> 1.65 (1.5x) */
    margin-right: 5px;
    font-weight: 500;
}

.plan-card .price-val {
    font-size: 1.2em;
    /* Relative to price-row (2.1rem * 1.2) - Bold emphasis */
    font-weight: 900;
    /* Thicker font */
    color: #bf0000;
    /* Dark Red */
    margin: 0 5px;
}

.plan-card .price-unit {
    font-size: 1.2rem;
    /* Adjusted for balance */
}

.plan-card .price-note {
    font-size: 1.2rem;
    /* Increased size for note */
}

.plan-features li {
    font-size: 1.2rem;
    /* Increased list item size */
}



.plan-card .price-val {
    font-size: 2.4rem;
    font-weight: 700;
}

.plan-card .price-note {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    display: inline-block;
    border-bottom: 1px solid var(--color-text-sub);
    padding-bottom: 2px;
    margin-top: 5px;
}

.plan-img {
    width: 100%;
    height: 250px;
    padding: 0 20px;
}

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

.plan-features {
    padding: 25px 30px;
    background: #fffef2;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--color-text);
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    color: #333;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 1.1rem;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.feature-note {
    display: block;
    font-size: 0.9rem;
    margin-left: 0;
    margin-top: 4px;
    color: var(--color-text-sub);
}

/* Big Secret */
.big-secret-section {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    border: 1px solid #ffd700;
}

.big-secret-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.big-secret-text {
    flex: 1;
}

.big-secret-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    box-shadow: 3px 3px 0 var(--color-text-main);
    border-radius: 4px;
}

.big-secret-text p {
    font-weight: 700;
    line-height: 2;
}

.big-secret-img {
    width: 40%;
}

.big-secret-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Price Table */
.price-table-wrapper {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    /* Added based on user feedback */
}

.table-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 5px;
    font-weight: 700;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.price-table th,
.price-table td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    line-height: 1.3;
}

.price-table th {
    background: #dcdcdc;
    font-weight: 700;
    color: var(--color-text-main);
    position: sticky;
    top: 70px;
    /* Adjusted for fixed header height (scrolled state) */
    z-index: 10;
}

.price-table tr:nth-child(even) {
    background: #fdfdfd;
}

.price-table tr:hover {
    background: var(--color-bg-ivory);
}

.table-note {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-text-sub);
}

.plan-cta {
    text-align: center;
    margin-top: 30px;
}

/* ==========================================================================
   #CASE STUDY CAROUSEL
   ========================================================================== */
.case-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
}

.case-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 960px;
}

.case-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.case-card {
    min-width: 300px;
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.case-img-wrap {
    overflow: hidden;
}

.case-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img-wrap img {
    transform: scale(1.1);
}

.case-body {
    padding: 24px;
}

.case-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    min-height: 3rem;
    font-weight: 700;
    line-height: 1.5;
}

.case-nav {
    background: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.case-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-text {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.btn-text:hover {
    border-bottom-color: var(--color-primary);
}

/* =======================/* ===================================================
Contact/Footer Area (Modified)
=================================================== */
.bottom-cta {
    background-image: url('../images/footer_cta_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    margin: 0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* CTA Main Button */
.btn-cta-main {
    background-color: #F38200;
    /* Orange */
    color: #fff;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-main:hover {
    background-color: #d67200;
    transform: translateY(-2px);
}

/* Phone Box */
.cta-phone-box {
    background-color: #fff;
    color: #333;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-phone-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
    gap: 10px;
}

.phone-icon {
    width: 32px;
    height: 32px;
    fill: #333;
    /* SVG color if supported */
}

.cta-phone-time {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* ===================================================
Footer Main (Re-revised)
=================================================== */
.footer {
    background: #fff;
    color: #333;
    padding: 60px 0 40px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    /* Center content */
    align-items: flex-end;
    gap: 20px;
    /* Add gap as requested */
}

/* Header/Grid is removed, using Flexbox */
.footer-grid {
    display: contents;
    /* Remove grid styling if reusing HTML structure, or ignore */
}

/* We will restructure CSS to match specific classes or target generic columns */

/* Left Side: Navigation */
.footer-nav-col {
    text-align: left;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li a {
    color: #333;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-nav-list li a:hover {
    color: var(--color-primary);
    padding-left: 0;
}

/* Right Side: Logo & Copyright */
.footer-logo-col,
.footer-copy-col {
    display: none;
    /* Hide original individual columns to combine them via HTML change or CSS tweaks */
}

/* Since HTML structure is: 
   .footer-grid > .footer-nav-col, .footer-logo-col, .footer-copy-col 
   We need to adapt CSS without changing HTML if possible, OR change HTML too.
   Let's assume we change HTML to group Logo and Copy on the right.
*/
/* Actually, let's keep HTML and just position them via Flex/Grid? 
   No, cleaning HTML is better. I will update HTML in next step.
   For now, defining styles for new structure.
*/

.footer-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img {
    width: 200px;
    /* Larger logo */
    height: auto;
}

.footer-logo-text {
    display: none;
    /* Hide text, use image only */
}

.copyright {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-nav-col {
        text-align: center;
        width: 100%;
    }

    .footer-right-col {
        align-items: center;
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   #MOBILE MENU (Hamburger)
   ========================================================================== */
.hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    position: absolute;
    left: 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* ==========================================================================
   #RESPONSIVE
   ========================================================================== */
@media screen and (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    .header-inner {
        padding: 0 15px;
        min-width: auto;
    }

    /* Mobile Menu */
    .hamburger {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        right: -100%;
        top: 0;
        background: rgba(255, 255, 255, 0.98);
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
    }

    .nav-wrapper.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* 美味しさのヒミツ: レスポンシブ */
    .secret-two-column {
        flex-direction: column;
    }

    .secret-card.half-width {
        width: 100%;
    }

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

    .secret-item-info {
        flex: 6;
    }

    .secret-item-img {
        flex: 4;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Layout Adjustments */
    .reason-item {
        width: 100%;
    }

    /* TOP文言 スマホ余白 */
    .mv-content p {
        padding: 0 10px;
    }

    .plan-wrapper,
    .big-secret-inner,
    .nested-container {
        flex-direction: column;
    }

    .plan-card,
    .big-secret-image,
    .nested-card {
        width: 100%;
    }

    .big-secret-image {
        flex-direction: column;
    }

    .big-secret-image img {
        width: 100%;
    }

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

    /* Secret 01 Mobile Layout */
    .secret-card.full-width .secret-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .secret-card.full-width .secret-body img {
        width: 100% !important;
        height: auto !important;
        margin-top: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .reason-item {
        width: 100%;
    }

    .header-inner {
        justify-content: space-between;
    }

    .mv-content h2 {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 15px 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .mv-image img {
        max-width: 100%;
    }
}

/* ==========================================================================
   #FAQ
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    background: var(--color-white);
    position: relative;
    line-height: 1.5;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--color-text-sub);
    font-size: 1rem;
    line-height: 1.8;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-icon-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-answer-text {
    flex: 1;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-icon,
    .faq-icon-a {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}