/* ==========================================================================
   Variable & Base Settings
   ========================================================================== */
:root {
    --primary-color: #2d4a22; 
    --dark-olive: #0b2219;    
    --accent-color: #c5a059;  
    --alert-red: #e63946;
    --bg-light: #f9f8f4;      
    --text-dark: #222;
    --text-light: #fff;
    --border-color: #eaeaea;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #fff;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.nav-header {
    position: fixed; top: 0; width: 100%;
    background: rgba(11, 34, 25, 0.95); z-index: 2000;
    padding: 15px 5%; display: flex; justify-content: space-between; align-items: center;
    backdrop-filter: blur(5px); border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}
.header-logo { height: 35px; display: flex; align-items: center; }
.header-logo img { height: 100%; filter: brightness(0) invert(1); }
.header-logo-sub { color: var(--accent-color); font-size: 0.75rem; margin-left: 12px; border-left: 1px solid rgba(255,255,255,0.4); padding-left: 12px; }

.pc-nav { display: flex; gap: 25px; }
.pc-nav a { color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.1em; }
.pc-nav a:hover { color: var(--accent-color); }
.menu-btn { display: none; cursor: pointer; color: var(--text-light); font-size: 1.5rem; }

.sp-nav { position: fixed; top: 0; right: -100%; width: 80%; height: 100%; background: var(--dark-olive); z-index: 2500; padding: 80px 40px; transition: 0.4s; display: flex; flex-direction: column; gap: 25px; }
.sp-nav.open { right: 0; }
.sp-nav a { color: #fff; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2400; display: none; }
.overlay.active { display: block; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh; 
    position: relative;
    background: linear-gradient(rgba(11, 34, 25, 0.2), rgba(11, 34, 25, 0.7));
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: var(--text-light); 
    text-align: center;
    
    /* ヘッダーとの重なりを防止：上部に余白を確保 */
    padding-top: 110px; 
    box-sizing: border-box; 
}
.hero-title { font-size: clamp(1.7rem, 6vw, 3rem); line-height: 1.6; font-weight: normal; margin-bottom: 30px; letter-spacing: 0.15em; }
.hero-taglinesub p {
    font-size: clamp(1.7rem, 6vw, 3rem); /* 通常のp（0.9rem）より大きく、存在感を出す */
   /* font-size: clamp(1.3rem, 3vw, 1.6rem);   */
    line-height: 1.4;
    font-weight: 500; /* 少しだけ太くして可読性をアップ */
    opacity: 1; /* 透かさずハッキリ見せる */
    margin-bottom: 40px;
}


.hero-taglinesub2 p {
    position: relative;
    display: inline-block; /* 背景を文字幅に合わせる */
    
    /* 背景：白を若干透過（0.85くらいが文字の読みやすさと背景の透け感のバランスが良いです） */
    background: rgba(255, 255, 255, 0.65); 
    
    /* 文字色：濃いめの色で可読性を確保 */
    color: #333; 
    
    /* 余白：文字の周りに十分なスペースを持たせる */
    padding: 20px 30px;
    
    /* 角丸：柔らかい印象に */
    border-radius: 60px; 
    
    /* フォントサイズ：さらに大きく（clampでレスポンシブに対応） */
    font-size: clamp(1.2rem, 4vw, 1.7rem); 
    
    /* 行間：少し広げて読みやすく */
    line-height: 1.6;
    
    /* フォントの太さ：しっかり太く */
    font-weight: 600; 
    
    /* 軽い影：背景から浮かせて立体感を出す */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    
    /* 下の要素との間隔 */
    margin-bottom: 30px;
    
    /* 念のため、親要素（.hero-sliderなど）より前面に来るように */
    z-index: 2; 
}

/* 以前の吹き出しの「しっぽ」の擬似要素（::after）がある場合は削除してください */
.hero-taglinesub2 p::after {
    display: none; /* または、コード自体を削除 */
}


.hero-tagline p { font-size: clamp(0.9rem, 2.5vw, 1.1rem); line-height: 2; opacity: 0.9; margin-bottom: 40px; }
.hero-shop-name { font-size: 1.5rem; letter-spacing: 0.3em; margin-bottom: 15px; border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); padding: 15px 0; display: inline-block; width: 100%; max-width: 500px; }
.hero-date { color: var(--accent-color); font-size: 1.3rem; letter-spacing: 0.2em; font-weight: bold; }

.hero-campaign-btn {
    display: inline-block;
    margin-top: 4px;
    margin-bottom: 130px; /* SCROLLとの余白 */
    padding: 9px 40px;
    background: var(--alert-red);
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
    position: relative;
    z-index: 10;
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

.scroll-down {
    position: absolute;
    margin-top: 40px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    z-index: 5;
}
.scroll-down span { display: block; position: relative; padding-bottom: 60px; }
.scroll-down span::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 1px; height: 50px; background: var(--accent-color); animation: sldown 2s infinite; }
@keyframes sldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */
section { padding: 100px 5%; border-bottom: 1px solid var(--border-color); text-align: center; }
.section-title { margin: 0 auto 60px; text-align: center; width: 100%; }
.section-title span { color: var(--accent-color); font-size: 0.8rem; letter-spacing: 0.4em; display: block; margin-bottom: 15px; }
.section-title h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: normal; line-height: 1.5; margin: 0 auto; display: inline-block; }

/* ==========================================================================
   Campaign & App Integration (1000px 統一・PCレイアウト固定)
   ========================================================================== */
.shop-hero-section { background: #fff; padding: 100px 0 50px; }

.campaign-banner {
    background: var(--primary-color); color: #fff; text-align: center;
    padding: 60px 5%; position: relative; max-width: 1000px; margin: 0 auto; border-radius: 24px 24px 0 0;
}
.campaign-banner::after { content: ""; position: absolute; border: 1px solid var(--accent-color); top: 15px; left: 15px; right: 15px; bottom: 15px; pointer-events: none; }
.campaign-label { display: inline-block; background: var(--accent-color); color: var(--dark-olive); padding: 5px 25px; font-weight: bold; margin-bottom: 20px; }

.campaign-flow { display: flex; justify-content: center; gap: 15px; margin: 30px auto 40px; width: 100%; align-items: stretch; }
.flow-step { flex: 1; background: #fff; padding: 25px 15px; border-radius: 15px; text-align: center; position: relative; border: 1px solid #eee; color: var(--text-dark); display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.flow-step.step-highlight { background: #fffdf7; border: 2px solid var(--accent-color); }
.step-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-color); color: #fff; width: 35px; height: 35px; border-radius: 50%; line-height: 35px; font-weight: bold; z-index: 5; }

.flow-step i { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 10px; display: block; }
.flow-step h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-color); font-weight: bold; }
.flow-step p { font-size: 0.9rem; line-height: 1.4; margin-bottom: 15px; }

.step-dl-btn { display: inline-block; background: var(--alert-red); color: #fff !important; padding: 10px 15px; border-radius: 6px; font-weight: bold; font-size: 0.8rem; box-shadow: 0 4px 0 #b91c1c; transition: 0.2s; margin-top: auto; }
.off-number { font-size: clamp(3.5rem, 10vw, 5rem); font-family: serif; color: var(--accent-color); line-height: 1; display: block; margin: 10px 0; }

/* アプリ引換券ボックス (PC: 左写真・右テキスト) */
.app-highlight-box {
    background: #fff; border: 4px solid var(--primary-color); border-top: none;
    padding: 60px 50px; border-radius: 0 0 24px 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); 
    max-width: 1000px; margin: 0 auto 100px;
}
.app-product-flex { display: flex; align-items: center; gap: 50px; text-align: left; }
.app-visual-wide { flex: 0.9; position: relative; display: flex; justify-content: center; }
.app-visual-wide img.main-phone { width: 85%; height: auto; margin: 0; }

.offer-badge {
    position: absolute; top: -40px; left: -20px; background: var(--alert-red); color: #fff; 
    width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; font-weight: bold; text-align: center;
    z-index: 3; animation: pulse 2s infinite; transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(230,57,70,0.4); border: 2px solid #fff;
}
@keyframes pulse { 0% {transform: rotate(-10deg) scale(1);} 50% {transform: rotate(-10deg) scale(1.05);} 100% {transform: rotate(-10deg) scale(1);} }

.app-content-wide { flex: 1.1; }
.app-content-wide h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--primary-color); line-height: 1.3; }

.gift-items { margin-bottom: 25px; }
.gift-card-single { background: #f9f9f9; border: 2px solid #eee; padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 20px; text-align: left; }
.gift-card-single img { height: 140px; width: auto; object-fit: contain; margin: 0; } 
.gift-card-single span { font-size: 1.0rem; font-weight: bold; color: var(--text-dark); }
.gift-card-single span::before { content: "PRESENT"; font-size: 0.7rem; color: var(--accent-color); display: block; letter-spacing: 0.1em; margin-bottom: 3px; font-weight: bold; }

.dl-btns-large { display: flex; gap: 15px; }
.dl-btn-large { 
    flex: 1; background: #e63946; color: #fff !important; padding: 25px 20px; border-radius: 15px; 
    display: flex; justify-content: center; align-items: center; gap: 15px; box-shadow: 0 8px 0 #c61926;
}
.dl-btn-large i { font-size: 2.8rem; }
.dl-btn-text { text-align: left; line-height: 1.2; }
.btn-label { font-size: 0.85rem; display: block; opacity: 0.9; margin-bottom: 2px; }
.btn-main { font-size: 1.4rem; font-weight: bold; white-space: nowrap; }

/* ==========================================================================
   About & Access
   ========================================================================== */
.about-flex { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; text-align: left; }
.about-image { flex: 1; }
.about-text { flex: 1.2; }
.brand-lead { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 20px; }

.access-wide-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; text-align: left; }
.shop-main-img-large { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.info-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.info-table th { color: var(--primary-color); width: 110px; text-align: left; padding: 15px 0; border-bottom: 1px solid #eee; }
.info-table td { padding: 15px 0; border-bottom: 1px solid #eee; }
.map-wrapper { height: 100%; min-height: 400px; border: 1px solid #ddd; background: #eee; }

/* ==========================================================================
   Experience
   ========================================================================== */
.olive-bg { background-color: var(--dark-olive); color: var(--text-light); border: none; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.exp-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(197, 160, 89, 0.2); border-radius: 8px; overflow: hidden; text-align: left; }
.exp-img { height: 200px; overflow: hidden; }
.exp-info { padding: 25px 20px; }
.exp-info h4 { color: var(--accent-color); margin-bottom: 10px; font-weight: normal; }

/* ==========================================================================
   Gallery & Products & Social
   ========================================================================== */
.gallery-section-full { background-color: var(--dark-olive); color: #fff; padding: 100px 0; border: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; border: 1px solid rgba(197,160,89,0.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

.products-container { display: flex; flex-direction: column; gap: 60px; max-width: 1000px; margin: 0 auto; }
.product-item { display: flex; align-items: center; gap: 40px; background: #fff; padding: 30px; border: 1px solid #eee; text-align: left; }
.product-item:nth-child(even) { flex-direction: row-reverse; }
.product-visual { flex: 1; position: relative; }
.product-tag { position: absolute; top: 10px; left: 10px; background: var(--accent-color); color: #fff; font-size: 0.7rem; padding: 4px 10px; }
.product-info { flex: 1.2; }
.product-info h3 { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 10px; }
.product-link { display: inline-block; padding: 10px 30px; border: 1px solid var(--primary-color); color: var(--primary-color); font-size: 0.8rem; margin-top: 15px; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.social-card { text-align: center; }
.social-card img { height: 180px; width: 100%; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }
.fa-instagram { color: #E1306C; } .fa-line { color: #06C755; }

footer { background: var(--dark-olive); color: #fff; padding: 60px 5% 30px; text-align: center; border: none; }
.footer-logo { height: 35px; filter: brightness(0) invert(1); margin: 0 auto 20px; }
.footer-copy { color: var(--accent-color); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 25px; }
.footer-nav { margin: 20px 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 0.75rem; opacity: 0.6; }

/* ==========================================================================
   Floating Campaign Banner
   ========================================================================== */
.floating-campaign { position: fixed; right: 15px; bottom: 20px; z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; transition: 0.5s ease; opacity: 0.85; }
.floating-campaign:hover { opacity: 1; }
.campaign-hint { background: var(--dark-olive); color: #fff; font-size: 0.65rem; padding: 4px 12px; border-radius: 10px 10px 0 0; transform: translateX(-10px); }
.campaign-rectangle { width: auto; min-width: 200px; padding: 15px 25px; background: var(--alert-red); color: #fff; border-radius: 30px 0 30px 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; font-weight: bold; border: 2px solid #fff; box-shadow: 0 10px 25px rgba(230,57,70,0.4); text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .app-highlight-box { flex-direction: column; border-top: 4px solid var(--primary-color); border-radius: 20px; width: 95%; padding: 40px 20px; margin-top: 20px; gap: 30px; }
    .campaign-banner { width: 95%; border-radius: 20px; }
    .app-product-flex { flex-direction: column; text-align: center; gap: 30px; }
    .app-content-wide { text-align: center; }
    .offer-badge { width: 110px; height: 110px; top: -30px; left: 50%; transform: translateX(-50%) rotate(0deg); }
    .offer-badge span { font-size: 0.8rem !important; }
    .gift-card-single { flex-direction: column; text-align: center; }
    .gift-card-single img { margin: 0 0 10px 0; }
    .access-wide-container { grid-template-columns: 1fr; }
    .about-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .pc-nav { display: none; }
    .menu-btn { display: block; }
    .campaign-flow, .dl-btns-large, .product-item, .product-item:nth-child(even), .social-grid { flex-direction: column; }
    .flow-step { flex: none; width: 100%; margin-bottom: 20px; }
    #experience .experience-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; gap: 15px; margin: 0 -5%; padding-left: 5%; padding-right: 5%; }
    #experience .exp-card { flex: 0 0 85%; scroll-snap-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .campaign-rectangle { min-width: 180px; padding: 12px 20px; }
    .floating-campaign { transform: translateY(150px); visibility: hidden; }
    .floating-campaign.show { transform: translateY(0); visibility: visible; }
}

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 3000; display: none; justify-content: center; align-items: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 80vh; object-fit: contain; }


/* 例：アイコンの色をゴールドにする */
.step-dl-btn i {
    color:#ffffff; /* または #FFD700 など直接指定 */
}

/* About Section の文章のみ左揃えに修正 */
.about-text {
    flex: 1.2;
    text-align: left; /* PCでも基本は左揃え */
}

.brand-desc {
    font-size: 0.95rem;
    text-align: justify; /* 日本語の右端をきれいに揃える */
    text-justify: inter-ideograph;
    line-height: 1.8;
}

/* スマホ閲覧時の微調整 */
@media (max-width: 992px) {
    .about-text {
        text-align: left; /* スマホで親要素がセンターになっても文章は左 */
        padding: 0 10px; /* 画面端にピッタリくっつかないよう余白を追加 */
    }
    
    .brand-lead {
        text-align: center; /* キャッチコピー（一言）だけはスマホでセンター */
        margin-bottom: 25px;
    }
}

/* --- PC/共通設定 --- */
.about-text {
    position: relative;
    padding-bottom: 80px; /* PCでの余白 */
}

.signature-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 180px;
    height: auto;
}

/* --- スマホ・タブレット設定（ここを上書きしてください） --- */
@media (max-width: 992px) {
    .about-text {
        position: relative; /* スマホでも基準位置を維持 */
        padding-bottom: 100px; /* ★文章の終わりの後の余白を大きく確保 */
        display: block; /* フレックスの影響をリセットして配置を安定させる */
    }

    .signature-img {
        position: absolute; /* ★スマホでも絶対配置（右下固定）を維持 */
        right: 10px;        /* 画面端から少し離す */
        bottom: 10px;       /* 下端から少し離す */
        width: 120px;       /* スマホで適切なサイズに固定 */
        display: inline-block;
        margin: 0;          /* 余計なマージンを排除 */
    }
}

/* --- WORLDWIDE PARTNERS 専用スタイル --- */
.partners-organic-box {
    padding: 100px 0;
    background-color: #F4F1DE; /* オーガニックなアースベージュ */
}
.partner-story-flex {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.story-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 0;
}
.story-item.reverse { flex-direction: row-reverse; }
.story-image-wrap { flex: 0 0 60%; line-height: 0; }
.story-image-wrap img { width: 100%; height: 450px; object-fit: cover; }
.story-text-card {
    flex: 0 0 45%;
    padding: 50px;
    background: #fff;
    z-index: 2;
    margin-left: -5%;
    border-top: 6px solid #6B705C; /* オリーブ色 */
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}
.story-item.reverse .story-text-card { margin-left: 0; margin-right: -5%; }
.story-text-card h3 { color: #3F4238; margin-bottom: 20px; font-size: 1.4rem; font-weight: bold; }
.story-text-card p { font-size: 0.95rem; line-height: 1.8; color: #444; }

/* --- OUR REALITY 専用スタイル --- */
.reality-organic-box {
    background-color: #606C38; /* 深いオリーブの実の色（黒の代用） */
    padding-bottom: 100px;
}
.reality-main-hero {
    position: relative;
    width: 100%;
    height: 75vh;
}
.reality-main-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.reality-hero-message {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #fff;
}
.reality-hero-message h2 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.4;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    font-weight: normal;
}
.reality-details-container {
    max-width: 1050px;
    margin: -100px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}
.reality-white-card {
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.reality-body-text { flex: 1.2; padding: 60px; text-align: left; line-height: 2; color: #333; }
.reality-body-photo { flex: 1; line-height: 0; }
.reality-body-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- レスポンシブ対応 --- */
@media (max-width: 992px) {
    .story-item, .story-item.reverse, .reality-white-card { flex-direction: column; }
    .story-image-wrap, .story-text-card, .reality-body-text, .reality-body-photo { flex: none; width: 100%; }
    .story-text-card { margin: 0; padding: 30px 20px; }
    .story-image-wrap img { height: 300px; }
    .reality-details-container { margin-top: -50px; }
    .reality-body-text { padding: 40px 20px; font-size:small;}
    .reality-body-photo img { height: 300px; }
}

/* 繋ぎのエリア */
.reality-bridge-area {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f8f4; /* 非常に薄いベージュで区切りを意識 */
}

.bridge-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

/* アクションボタン */
.btn-to-partners {
    display: inline-block;
    background-color: #5d6e1e; /* 井上誠耕園らしいオリーブ色 */
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-to-partners:hover {
    background-color: #4a5818;
    transform: translateY(-2px);
}

.btn-to-partners i {
    margin-left: 8px;
}

/* スマホ用微調整 */
@media (max-width: 768px) {
    .bridge-text {
        font-size: 0.95rem;
        text-align: left; /* スマホでは文章は左揃えが読みやすい */
    }
    .btn-to-partners {
        width: 100%; /* スマホでは押しやすいよう横いっぱいに */
        box-sizing: border-box;
    }
}


/* 神戸店誘導エリア */
.kobe-invite-area {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.invite-lead {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

/* 誘導ボタン：農家の重みを表現 */
.btn-to-kobe {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #2FaD3B; /* 完熟オリーブの深い色 */
    color: #fff;
    padding: 25px 60px;
    text-decoration: none;
    border-radius: 4px; /* あえて角を丸くせず、無骨な印象に */
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-to-kobe:hover {
    background-color: #4a5818;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-sub {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.9;
}

.btn-main {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.invite-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* スマホ用調整 */
@media (max-width: 768px) {
    .invite-lead {
        font-size: 1.05rem;
        text-align: center;
    }
    .btn-to-kobe {
        width: 100%;
        padding: 20px 10px;
    }
    .btn-main {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    /* セクションの上下余白を半分（またはそれ以下）に一括調整 */
    section { padding: 50px 5%; }
}

@media (max-width: 768px) {
    /* 1. タイトルとキャッチコピーの文字サイズを一段階小さくしてスペースを稼ぐ */
    .hero-title {
        font-size: 1.6rem; /* 少し小さく */
        margin-bottom: 15px;
    }
    .hero-taglinesub p {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .hero-tagline p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* 2. ショップ名と日付の枠をコンパクトに */
    .hero-shop-name {
        font-size: 1.1rem;
        padding: 10px 0;
        margin-bottom: 10px;
    }
    .hero-date {
        font-size: 1.1rem;
    }

    /* 3. ボタンのマージンを調整（ここが重なりの一番の原因） */
    .hero-campaign-btn {
        margin-top: 20px;
        margin-bottom: 60px; /* SCROLL（絶対配置）と被らない程度に減らす */
        padding: 12px 25px;  /* ボタン自体も少し小さく */
        font-size: 0.9rem;
    }

    /* 4. SCROLLアイコンの位置を固定 */
    .scroll-down {
        bottom: 10px; /* 画面の一番下に張り付くように調整 */
    }
}


/* 写真直下の注釈のみを装飾 */
.photo-note {
    display: block;      /* 改行させる */
    text-align: center;  /* 中央寄せ */
    color: #d9534f;     /* 赤字 */
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 5px;     /* 写真との距離を詰める */
    margin-bottom: 15px; /* 下のテーブルとの間に少し隙間を作る */
}


/* --- 2. 背景スライダー 修正版 --- */
.hero {
    position: relative;
    overflow: hidden;
    background: #0b2219; /* 万が一の背景色 */
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: sliderAnime 20s infinite;
}

/* ★ここが重要：全スライドの「前面」に暗い膜を固定する */
.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    /* 指定のグラデーション（少し濃く調整しました） */
    background: linear-gradient(
        rgba(11, 34, 25, 0.4), /* 上部：少し濃く */
        rgba(11, 34, 25, 0.8)  /* 下部：しっかり濃く */
    );
    z-index: 10; /* 画像(0)より上で、コンテンツ(hero-content)より下 */
    pointer-events: none; /* 下のボタンが押せるように */
}

/* タイミング調整 */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes sliderAnime {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

/* コンテンツを「膜」よりもさらに前面に出す */
.hero-content {
    position: relative;
    z-index: 20; /* 膜(10)より大きい数値にする */
}