/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*      ★各ページ共通のCSSコードはここから★     */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@charset "UTF-8";

:root {
    --main-color: #027d46;
    --base-color: #fffffe;
    --accent-color: #f39800;
    --font-zen: 'Zen Kaku Gothic New', sans-serif;
    --font-noto: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-noto);
    font-size: 14px;
    line-height: 1.6;
    color: var(--main-color);
    background-color: var(--base-color);
}

/* 見出し設計 */
h1 { font-family: var(--font-zen); font-size: 48px; font-weight: 700; }
h2 { font-family: var(--font-zen); font-size: 36px; font-weight: 700; }
h3 { font-family: var(--font-zen); font-size: 24px; font-weight: 700; }

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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



/* スプラッシュ画面のスタイル */
.splash {
    position: fixed;
    inset: 0;           /* 上下左右を0にして全画面に広げる */
    z-index: 9999;      /* ヘッダーよりも上に表示 */
    background-color: var(--main-color); /* ブランドカラー */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s; /* 消えるときのアニメーション */
}

/* ロゴのサイズ */
.splash-logo img {
    width: 400px;       /* 拡大版なので大きめに設定 */
    height: auto;
}

/* 非表示にするためのクラス（JSで付与） */
.splash.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* スプラッシュ表示中は背景スクロールを止める */
body.is-loading {
    overflow: hidden;
}

/* --- レイアウトの絶対保持 --- */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 70px;
    background-color: transparent !important; /* 常に透明を維持 */
    z-index: 100;
}
.gnav-list { display: flex !important; list-style: none; gap: 25px; margin: 0; padding: 0; }

/* --- 文字色と三本線の切り替え --- */

/* A. 初期状態（明るい背景用：メインカラー） */

/* === ヘッダー内のレイアウト === */
.header-inner {
    max-width: 1360px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ロゴを左、ナビ・ボタンを右に */
    padding: 0 40px;
}

.header-right {
    display: flex;
    align-items: center;
}

/* PCナビゲーション：ハンバーガーボタンとの距離を40pxに設定 */
.gnav {
    margin-right: 40px; 
}

.gnav-list {
    display: flex;
    list-style: none;
    gap: 25px; /* メニュー文字同士の間隔 */
    margin: 0;
    padding: 0;
}

/* --- 文字色の制御（JSのクラスと連動） --- */

/* 通常時 */
.gnav-list a {
    color: var(--main-color);
    text-decoration: none;
    font-family: var(--font-noto);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.05em;

}

/* 背景が暗いエリア（JSで付与されるクラス） */
.header.is-dark-bg .gnav-list a {
    color: #fff;
}
.header.is-dark-bg .hamburger span {
    background-color: #fff;
}

/* ロゴの基本設定（高さ40px） */
.logo img {
    height: 40px;
    width: auto;
    display: block;
    /* 切り替わりをふわっとさせる */
    transition: filter 0.3s ease;
}
/* 0.3s から 0.1s にすると、よりキビキビ動きます */
.logo img, .gnav-list a, .hamburger span {
    transition: all 0.1s ease; 
}

/* -----------------------------------------
   背景が暗いエリア（is-dark-bg）にいる時
   ロゴを「白」に変換する魔法のフィルター
   ----------------------------------------- */
.header.is-dark-bg .logo img {
    /* 
       brightness(0) で一度真っ黒にし、
       invert(1) で色を反転させて真っ白にします 
    */
    filter: brightness(0) invert(1);
}

/* リンク自体の高さも揃えておくとクリック範囲が安定します */
.logo a {
    display: block;
}

/* ==========================================
   ハンバーガーボタン 
   ========================================== */
.hamburger {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    width: 24px;  /* 縮小サイズ */
    height: 18px; /* 縮小サイズ */
    position: relative;
    z-index: 200;
    flex-shrink: 0;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px; /* 繊細な細さ */
    background-color: var(--main-color);
    transition: 0.3s;
}

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

/* クリック時(✕)の形状 */
.hamburger.is-active span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ==========================================
   ドロワーメニュー (右からスライド)
   ========================================== */
/* リセット：余計な●を消す */
.drawer-nav ul {
    list-style: none;
    padding: 0 44px;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: auto;
    background-color: var(--main-color);
    color: #fff;
    z-index: 150;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom-left-radius: 20px;
    padding: 24px 0 40px;
}

.drawer-menu.is-active {
    right: 0;
}

/* 罫線の幅を左右マージンに合わせる */
.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,0.5); }
.drawer-nav li.border-top { border-top: 1px solid rgba(255,255,255,0.5); }

/* SNS：全体をセンタリング */
.drawer-sns-container {
    display: flex;
    justify-content: center;
    margin: 22px 0 16px;
}
.drawer-sns {
    display: flex;
    align-items: center;
}
.follow-text { font-size: 11px; margin-right: 6px; }

/* Xだけデカいのを強制抑制 */
.sns-icons { display: flex; gap: 16px; align-items: center; }
.sns-icons img { width: 28px; height: 28px; object-fit: contain; }
.sns-icons img.icon-x { width: 18px; height: 18px; } /* Xだけ小さく調整 */

/* 白い四角：幅狭め・大きな角丸・センタリング */
/* お問い合わせカード全体 */
.drawer-contact-card {
    background-color: #fff;
    color: var(--main-color);
    padding: 10px 8px;
    border-radius: 18px;
    width: 80%;
    margin: 2px auto 0;
    text-align: center;
}

/* 背景オーバーレイ：ほんのりとした、ごく薄いグレー */
.drawer-overlay {
    position: fixed;
    inset: 0;
    /* 0.08は、背後が動いていないことがわかり、かつ「暗い」と感じさせない絶妙な薄さ */
    background: rgba(0, 0, 0, 0.08); 
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
    
    z-index: 140;
    /* 閉じるときにパッと明るくなるよう、時間は短めの0.3sに */
    transition: opacity 0.3s, visibility 0.3s;
}

/* アクティブ時：ほんのり色を出す */
.drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* 上部：ロゴと一回り小さい×ボタン */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px; 
    margin-bottom: 30px;
}
.drawer-logo img { height: 36px;  display: block;}

.drawer-close {
    width: 16px; 
    height: 16px;
    position: relative;
    cursor: pointer;
}
.drawer-close span {
    position: absolute;
    top: 8px;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
}
.drawer-close span:nth-child(1) { transform: rotate(45deg); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg); }

/* メインメニュー：上下罫線と左右マージン */
.drawer-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.drawer-nav li.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.drawer-nav a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
}

.card-label { font-size: 14px; font-weight: 700; margin-bottom: 1px; }

/* 電話番号の行を横並びにする */
.card-tel {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1px;
    display: flex;         /* 横並び */
    align-items: center;    /* 上下中央 */
    justify-content: center; /* センター寄せ */
    gap: 8px;              /* 受話器と番号の間の隙間 */
}

/* 受話器アイコンのサイズ調整 */
.phone-icon {
    display: block;  
    width: 20px !important; 
    height: 20px !important;
    flex-shrink: 0;        /* ★これを入れると、flexボックス内で潰されなくなります */
    object-fit: contain;
}

.card-time { font-size: 14px; font-weight: 700; }


/* --- 共通：スムーズスクロール --- */
html {
    scroll-behavior: smooth;
}

/* --- 常に暗い背景にあるもの（フッター・ドロワー） --- */
.footer-logo img,
.drawer-logo img {
    filter: brightness(0) invert(1) !important; /* 常に白 */
}

/* --- ヘッダー内のロゴ：背景によって変わる設定 --- */
/* 通常時：メインカラー */
.logo img {
    height: 40px;
    width: auto;
    /* transition: filter 0.1s ease; */
}

/* 背景が暗いエリア（js-dark-section）に入った時だけ白くする */
/* これなら、下層ページの最初の画面が明るければ「緑」、暗ければ「白」に自動でなります */
.header.is-dark-bg .logo img {
    filter: brightness(0) invert(1);
}

html,body{
    overflow-x:hidden;
}

/* ================================================ */
/*   ↑↑↑　★各ページ共通のCSSコードはここまで★　↑↑↑   */
/* =============================================== */


/* =============以下トップページのみ適用のコード============ */

/* Heroエリア全体：余白を抑えた設計 */
.hero {
    width: 100%;
    background-color: var(--base-color);
}

.hero-inner {
    max-width: 1360px;
    height: 580px;
    margin: 0 auto;
    display: flex; /* 左右に分割 */
}

/* 左：テキストエリア */
.hero-text-area {
    width: 45%;
    display: flex;
    align-items: center; /* 垂直中央 */
    justify-content: flex-end; /* 右（中央寄り）に配置 */
}

.hero-text-area h1 {
    color: var(--accent-color);
    font-family: var(--font-zen);
    font-size: 48px; 
    font-weight: 700;
    line-height: 1.2;
    padding-right: 30px; /* 余白を少なめに設定 */
}

/* 右：画像エリア（幅を55%に拡大） */
.hero-image-area {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center; /* 4枚全体を中央寄せ */
    gap: 15px; /* 画像同士の隙間 */
    padding-left: 20px; /* テキストとの間に少し余裕を作る */
}

/* 4枚の画像それぞれの設定 */
.hero-image-area img {
    /* (エリア全体の100% - 隙間3個分) / 4枚 */
    width: calc((100% - (15px * 3)) / 4);
    height: 180px; /* 高さを揃える（お好みで調整してください） */
    object-fit: contain; /* 画像を切り取らず、枠内に収める */
    
    /* 以前の設定をリセット */
    /* width: auto; ではないので注意 */
}

/* スライダー全体の枠 */
.curry-slider {
    width: 100%;
    margin-top: 0;
    overflow: hidden; /* はみ出しを隠す */
}

/* Swiperの基本コンテナ（これ自体に幅を持たせる） */
.swiper {
    width: 100%;
    height: 600px;
}

/* スライドを横に並べるための重要な設定 */
/* .swiper-wrapper { */
/*    display: flex; /* 縦並びを防ぐ */
/* } */

/* 各スライド（2枚並べる設定） */
.swiper-slide {
    /* width: 50%; 2枚並べるために幅を50%に設定 */
    height: 100%;
    /* flex-shrink: 0; 潰れないように固定 */
}

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

/* == ECOセクション全体=== */
.eco-section {
    width: 100%;
    background-color: var(--base-color);
    padding: 60px 0; /* セクション自体の上下余白を固定 */
}

.eco-inner {
    max-width: 1360px;
    height: 620px;
    margin: 0 auto; /* これで1360pxの枠が画面中央 */
    display: flex;
    align-items: center; /* 左右の要素の垂直中央を揃える */
    justify-content: center; /* ★中身を中央に寄せる */
}

/* 左側：52% */
.eco-content {
    width: 52%;
    height: auto;
    max-height: 650px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-title {
    margin: 0 0 30px 30px;
    /* h2のスタイルは共通設定を適用 */
}

/* 3つ並びのイラストエリア */
.eco-items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.eco-item {
    width: 50%;
    height: auto;
    text-align: center;
}

.eco-item img {
    width: 90px; /* イラストのサイズ調整 */
    height: auto;
    margin-bottom: 2px;
}

/* 3つ並びの文字エリア */
.eco-itemps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.eco-itemp {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

/* .eco-item1 p {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
} */

/* 下部テキストとボタンの並び */
.eco-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-top: 1px solid #eee; 軽く区切り線 */
    padding-top: 20px;
}

.eco-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

/* しくみをみるボタン (左右半円デザイン) */
.eco-btn {
    display: inline-flex;
    align-items: center;    /* 垂直方向のセンター（これでラインが揃います） */
    justify-content: center; /* 文字と矢印をまとめて中央へ */
    width: 230px;           /* 固定幅を維持しつつ、崩れを防ぐ */
    max-width: 100%;        /* 画面が狭くなってもはみ出さない */
    height: 60px;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px; 
    font-size: 22px;
    font-weight: 500;
    position: relative;
    box-sizing: border-box; /* パディングを含めたサイズ計算 */
    transition: background-color 0.3s, opacity 0.3s; /* 背景色などの変化をスムーズに */
}

/* 右向き三角形（擬似要素） */
.eco-btn::after {
    content: '';
    display: inline-block;
    margin-left: 10px;      /* 文字との間の距離 */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    transition: transform 0.3s ease; 
}

/* 右側：48% */
/* 右側エリア：高さの基準を明確にする */
.eco-image {
    width: 48%;
    height: 100%; /* 親の620pxに合わせる */
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-image img {
    /* 高さを固定して、横幅は自動計算にする（はみ出し防止） */
    width: auto;
    max-width: 100%;
    height: 560px; /* ここで高さを固定。はみ出す場合は少し数値を下げてください */
    object-fit: contain;
}

/* ホバー時のボタン全体の動き */
.eco-btn:hover {
    background-color: var(--accent-color); /* ホバーでアクセントカラーに変化（任意） */
    opacity: 0.9;
}

/* ホバー時に三角形だけを右に動かす */
.eco-btn:hover::after {
    transform: translateX(8px); /* 右に8pxスライド */
}


/* ==========================================
   メニューセクション
   ========================================== */
.menu-section {
    width: 100%;
    min-height: 600px; /* 固定ではなく、中身に合わせて伸縮できるようにする */
    background-color: var(--main-color);
    color: #fff;
    padding-top: 100px;
    padding-bottom: 50px; /* 下側に少し余裕を持たせる */
    box-sizing: border-box;
}

/* 中身のコンテンツ幅を固定して中央寄せ（4枚のカード幅+隙間に合わせる） */
.menu-inner {
    max-width: 1360px;
    width: 1190px; /* (260px * 4枚) + (50px * 3箇所) */
    margin: 0 auto;
}

/* 1段目：見出し */
.menu-title {
    text-align: center;
    font-family: var(--font-zen);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* 2段目：メニューカードの並び */
.menu-grid {
    display: flex;
    gap: 50px; /* カード間の距離 50px */
}

/* 画像とテキストが一体となった「枠」 */
/* カード全体 */
.menu-card {
    width: 260px;
    height: 260px; /* 画像自体の高さに合わせる */
    position: relative; /* テキストを重ねるための基準 */
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* 画像エリア：カードいっぱいに表示 */
.menu-img {
    width: 100%;
    height: 100%;
}

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

/* テキストエリア：画像内の白背景部分に重ねる */
.menu-name {
    position: absolute; /* 画像の上に重ねる */
    bottom: 0;         /* 下端にピタッと合わせる */
    left: 0;
    width: 100%;
    
    /* 枠としての色や高さは持たせず、文字だけを配置 */
    background-color: transparent; 
    color: var(--main-color);
    text-align: center;
    
    /* 画像内の白い部分に文字が収まるよう、パディングで微調整 */
    padding-bottom: 14px; 
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    z-index: 10;
}


/* 3段目：一覧はこちら（右端をカードの端に合わせる） */
.menu-link-wrapper {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    margin-top: 30px;
}

.menu-more {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.menu-more:hover {
    opacity: 0.8;
    color: var(--accent-color); /* アクセントカラーに変化 */
}

/* h3クラスのサイズ（22px） */
.menu-more h3 {
    font-family: var(--font-zen);
    font-size: 22px;
    font-weight: 700;
}

/* 右向き三角形（表示されない問題を解決する設定） */
.menu-more::after {
    content: '';
    display: inline-block;
    margin-left: 12px;
    width: 0 !important;
    height: 0!important;
    /* 線の太さを少し太く(9px)、色を確実に白(#ffffff)に */
    border-style: solid;
    border-width: 9px 0 9px 16px !important;
    border-color: transparent transparent transparent #ffffff !important;
    
    /* 念のため透明度を1に固定 */
    opacity: 1 !important;
    visibility: visible !important;
    
    transition: transform 0.3s ease;
}

/* ホバーで右に動く */
.menu-more:hover::after {
    transform: translateX(8px);
    color: var(--accent-color); /* アクセントカラーに変化 */
    opacity: 0.9;
}


/* ==========================================
   ニュースセクション
   ========================================== */
.news-section {
    width: 100%;
    height: 400px;
    padding-top: 50px;
    box-sizing: border-box;
    color: var(--main-color);
    margin-bottom:100px;
}

.news-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.news-title {
    text-align: center;
    font-family: var(--font-zen);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.news-list {
    width: 100%;
    border-top: 1px solid var(--accent-color);
}

.news-item {
    display: flex;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid var(--accent-color);
    padding-left: 300px; /* セクション左端から300pxの位置を開始点にする */
    box-sizing: border-box;
}

/* ニュースカテゴリ（h3） */
.news-category {
    /* 2. 文字列が最大（キャンペーン等）でも収まる固定幅を設定 */
    /* これにより、右隣のp文の開始位置が固定されます */
    width: 120px; 
    font-family: var(--font-zen);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ニュース内容（p） */
.news-content {
    /* 3. h3の固定幅(120px)の右端から、140pxの余白を空けて開始 */
    margin-left: 140px; 
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* 3段目：詳細はこちら */
.news-link-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-right: 50px;
    transition: color 0.3s, opacity 0.3s;
}

.news-more {
    text-decoration: none;
    color: var(--main-color);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
}

.news-more::after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    /* 通常時の矢印にもtransitionを追加しておく */
    transition: transform 0.3s;
    width: 0 !important;
    height: 0!important;
    /* 線の太さを少し太く(8px)、色を確実に白(#ffffff)に */
    border-style: solid;
    border-width: 8px 0 8px 14px !important;

    border-color: transparent transparent transparent var(--main-color);
}
/* ホバー時に文字色を少し明るくし、矢印を右にスライドさせる */
.news-more:hover {
    color: var(--accent-color); /* アクセントカラーに変化 */
}

.news-more:hover::after {
    transform: translateX(8px); /* 矢印を右に8px移動 */
    transition: transform 0.3s; /* スムーズに動かす */
}

/* ==== 地図セクション全体 ===== */
.access-map {
    width: 100%;
    background-color: var(--base-color);
    margin-top: 0; /* 上のセクションとの隙間が不要？ */
    padding-bottom: 10px; /* 下側に少し余白 */
}

.map-container {
    max-width: 1360px; /* 規定の幅 */
    height: 600px;     /* 指定の高さ */
    margin: 0 auto;    /* 中央寄せ */
    overflow: hidden;  /* はみ出し防止 */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    /* border: none; */
    box-shadow: #027d46 0px 4px 12px;
}

/* ==========================================
   店舗情報セクション
   ========================================== */
.shop-info {
    width: 100%;
    color: var(--main-color);
    margin-bottom: 100px;
}

.shop-info-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start; /* 複数行になっても上揃えにする */
    padding: 20px 0;
    border-bottom: 1px solid var(--accent-color);
    box-sizing: border-box;
}

/* 左側の項目名（店名・所在地など） */
.info-label {
    padding-left: 300px; /* 左端から300px */
    width: 400px;        /* 300pxの余白 + 文字幅を考慮して広めに確保 */
    flex-shrink: 0;      /* ★これを入れることで縦書き（潰れ）を防ぎます */
    /* font-weight: 500; */
    font-size: 14px;
    letter-spacing: 0.1em;
    white-space: nowrap; /* 文字を改行させない */
}

/* 右側の詳細データ */
.info-data {
    margin-left: 60px;   /* ラベルから60px離す */
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.8;    /* 営業時間が見やすいように少し広げる */
}

.info-list {
    width: 100%;
}

/* =================================
       キョンの森セクション全体 
===================================== */

/* 背景画像：アスペクト比を維持して100%幅で表示 */
.forest-bg img {
    width: 100%;
    height: auto;
    display: block;
    /* --- ここを追加 --- */
    opacity: 0.9; /* 0.5(50%)に設定。お好みで0.3〜0.7程度で調整 */
}

/* もし背景を薄くした時に、後ろから透ける色を調整したい場合 */
.kyon-forest-section {
    background-color: #fff; /* ここを#fffにすると明るく、#000にすると暗く沈んだ雰囲気になる */
    /* 既存のコード */
    width: 100%;
    position: relative;
    overflow: hidden; 
    line-height: 0;
    margin-bottom: -50px; 
    padding-bottom: 50px;
    z-index: 10;
}

/* キョンを配置するコンテナ */
.kyon-container {
    position: absolute;
    bottom: 0;
    left: 0; /* 開始位置を0に固定 */
    z-index: 10;
}


/* カゴ：画面を端から端まで一定速度で往復する（横の動き） */
.kyon-runner {
    display: inline-block;
    animation: kyon-run 40s linear infinite;
}

@keyframes kyon-run {
    0%, 100% { transform: translateX(-15vw) scaleX(-1); }
    48%      { transform: translateX(110vw) scaleX(-1); }
    50%      { transform: translateX(110vw) scaleX(1); } /* 画面外で向き変更 */
    98%      { transform: translateX(-15vw) scaleX(1); }
}

/* キョン本体：カゴの中でただ上下に跳ねるだけ（縦の動き） */
.jumping-kyon {
    height: 104px;
    width: auto;
    display: block;
    /* 1.2秒のリズムで「ease-out」で跳ねる */
    animation: kyon-bounce 1.2s ease-out infinite alternate;
}

@keyframes kyon-bounce {
    0%   { transform: translateY(50px); }    /* 着地（フッターの裏） */
    100% { transform: translateY(-150px) rotate(-10deg); } /* ジャンプの頂点 */
}

/* 下層ページ用のキョンエリア（背景画像なし版） */
.kyon-subpage-container {
    width: 100%;
    position: relative;
    height: 0;          /* 枠としての高さは持たせない */
    overflow: visible;  /* キョンが上に飛び出すように見えるようにする */
    z-index: 10;        /* フッター(z-index: 20)より下にする */
    margin-bottom: 0;   /* 余白の調整 */
}


/* ==========================================
   　　フッター
   ========================================== */
.footer {
    width: 100%;
    min-height: 360px; /* height固定ではなくmin-heightで内容量に合わせる */
    background-color: var(--main-color);
    color: #fff;
    position: relative;
    z-index: 20;
    margin-top: -30px;
}

/* ギザギザの草むら */
.footer-grass {
    position: absolute;
    top: -39px; 
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--main-color);
    z-index: 30;

    /* X軸（%）を不規則に刻むことで、草の「太さ」をランダムにしています */
    clip-path: polygon(
        0% 100%,
        0.3% 20%, 1.2% 100%, 2.8% 40%, 3.8% 100%, 4.8% 10%, 6.0% 100%, 7.2% 30%, 8.3% 100%, 9.0% 0%, 10.3% 100%,
        11.0% 25%, 11.8% 100%, 12.6% 45%, 13.9% 100%, 14.7% 15%, 15.0% 100%, 16.2% 35%, 17.0% 100%, 18.5% 5%, 19.3% 100%,
        20.0% 20%, 21.2% 100%, 22.7% 40%, 23.2% 100%, 24.5% 10%, 25.3% 100%, 26.0% 30%, 27.3% 100%, 28.0% 0%, 29.1% 100%,
        29.8% 25%, 30.9% 100%, 31.5% 45%, 32.8% 35%, 33.5% 15%, 34.1% 100%, 35.7% 35%, 36.0% 100%, 37.8% 5%, 38.7% 100%,
        39.2% 20%, 40.5% 100%, 41.0% 40%, 42.5% 100%, 43.2% 10%, 44.0% 100%, 45.5% 30%, 46.3% 100%, 47.2% 0%, 49.5% 100%,
        50.8% 25%, 53.0% 100%, 54.8% 45%, 56.2% 100%, 57.7% 15%, 59.5% 100%, 60.5% 35%, 61.6% 100%, 62.0% 5%, 63.2% 100%,
        64.9% 20%, 66.0% 100%, 67.2% 40%, 68.5% 100%, 69.8% 10%, 70.9% 100%, 71.0% 30%, 72.8% 100%, 73.4% 0%, 74.8% 100%,
        75.2% 10%, 76.8% 45%, 78.1% 100%, 79.5% 10%, 82.0% 100%, 83.1% 35%, 84.8% 100%, 86.2% 20%, 87.5% 100%, 88.8% 10%,
        90.6% 100%, 91.9% 35%, 93.0% 100%, 94.8% 10%, 95.5% 30%, 96.9% 100%, 97.9% 30%, 98.7% 100%, 99.2% 20%, 100% 100%
    );
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 20px; /* 下部に余白を確保 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 縦に並ぶ要素をすべて中央揃え */

}

/* --- 1段目：ロゴとメインナビ --- */
.footer-row-top {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.footer-logo {
    position: absolute;
    left: 50px;
    z-index: 2;
}

.footer-logo img {
    height: 46px;
    width: auto;
}

.footer-nav-main {
    width: 100%;
    /* ロゴ（約150px+余白40px）と被らないよう左に余白を確保しつつ、残りのスペースで中央寄せ */
    /*padding-left: 160px; */
    display: flex;
    justify-content: center;
}

.footer-nav-main ul, 
.footer-nav-sub ul {
    display: flex;
    list-style: none;
    gap: 34px;
}

.footer-nav-main a, 
.footer-nav-sub a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* 2段目：サブリンク */
.footer-nav-sub {
    width: 100%;
    /*padding-left: 200px; /* メインナビと位置を合わせるため同じ余白を設定 */
    display: flex;
    justify-content: center;
    margin-bottom: 60px; /* SNSとの距離感 */
}

/* 3段目：SNSアイコン */
/* 3段目：SNSアイコン共通設定 */
/* 3段目：SNSアイコン全体のコンテナ */
.footer-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* ここでアイコン同士の「中心からの距離」を一定に保つ */
    margin-bottom: 50px; /* 下のコピーライトとの間に強制的に隙間を作る */
}

/* 各アイコンの「土台（ボタンの枠）」を共通サイズにする */
.footer-sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;  /* 全てのアイコンに同じ「幅の箱」を用意 */
    height: 40px; /* 全てのアイコンに同じ「高さの箱」を用意 */
}

/* 画像の共通設定：箱（aタグ）からはみ出さないようにする */
.footer-sns img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* --- 個別調整 --- */

/* X（旧Twitter）: 少し大きいとのことなので、高さを少し下げる */
.footer-sns .sns-x {
    height: 28px; 
}

/* LINE: 小さく見えるのは余白が多いか正方形のため。高さを出す */
.footer-sns .sns-line {
    height: 30px; 
}

/* YouTube: もっと小さくて良いとのことなので、さらに高さを抑える */
.footer-sns .sns-yt {
    height: 28px; 
}

/* Instagram: そのままでもOKですが、微調整が必要ならここに追加 */
.footer-sns .sns-insta {
    height: 44px;
}

/* --- 4段目：コピーライト --- */
.copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    margin: 0; /* 余計なマージンをリセット */
}

/* トップへ戻るボタンの固定配置 */
.top-back-btn {
    position: fixed;
    bottom: 40px;      /* 下から40px */
    right: 30px;       /* 右から30px（適度な距離） */
    width: 60px;       /* 邪魔にならないサイズ。 */
    height: auto;
    z-index: 100;      /* フッターやキョンよりも上に配置 */
    transition: all 0.3s ease; /* 動きをなめらかにする */
    display: block;
    line-height: 0;
}

.top-back-btn img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ホバー時の演出 --- */
.top-back-btn:hover {
    transform: translateY(-5px); /* 少し上に浮き上がる */
    filter: 
        brightness(1.2)           /* ほのかに光る（明度を上げる） */
        drop-shadow(0 5px 15px rgba(255, 249, 163, 0.5)); /* 背後に影をつける */
}

/* ========ここまで全ぺーじ共通＆トップページのスタイル======== */


/* ==========================================
   ここからＣＯＮＴＡＣＴページ
   ========================================== */

.contact-hero {
    position: relative;
    width: 100%;
    height: 660px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 背景を透けさせるための親要素の設定（任意） */
    background-color: var(--base-color); /* 画像が薄くなった分、この色が透ける */
}

/* 背景画像（ぼかし適用） */
.hero-bg {
    position: absolute;
    inset: 0; /* top,right,bottom,leftを0に */
    background: url('../img/contact-hero.webp') center/cover no-repeat;
    filter: blur(3px);
        /* 不透明度を75%に（以前の会話の数値に基づき調整） */
    opacity: 0.75; 
    z-index: 1;  
}

/* 中央の箱 */
.hero-content-box {
    position: relative;
    z-index: 10;
    width: 700px;
    height: 200px;
    background-color: rgba(255, 255, 254, 0.6); /* --base-colorの透過 */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* テキスト：h1とh2を密着させる */
.hero-content-box h1 {
    color: var(--main-color);
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: -5px; /* h2との距離を詰める微調整 */
}

.hero-content-box h2 {
    font-size: 24px; /* 指定の中見出しサイズ */
    font-weight: 500;
    color: var(--main-color);
}

/* 右下のキョン */
.kyon-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 40px; 
    height: auto;
}

/* 波型の境界線 */
.wave-border {
    position: absolute;
      bottom: -1px; /* 隙間防止 */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20; /* 料理画像より上に配置 */
}

.wave-border img {
    width: 100%;
    height: auto;
}

.contact-guide {
    padding: 60px 0; /* 前後のセクションとの間隔 */
    max-width: 1360px; /* 全体の最大幅 */
    margin: 0 auto;
    text-align: center;
}

/* 注意書き */
.contact-notice {
    margin-bottom: 50px;
}
.contact-notice p {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.4;
}

.required-mark {
    color: #f00; /* 赤字指定 */
}



/* ボックスコンテナ */
.guide-box-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* 箱同士の間隔 */
}

/* 共通ボックススタイル */
.guide-box {
    width: 386px;
    height: 148px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-zen);
    font-weight: 700;
}

/* 左の箱（電話） */
.tel-box {
    background-color: rgba(243, 152, 0, 0.3); /* --accent-color 30% */
    color: var(--main-color);
}

.label-pill {
    width: 210px;
    height: 30px;
    background-color: var(--base-color);
    border-radius: 15px; /* 左右が半円 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

.label-pill p {
    font-size: 14px;
}

.contact-info-row, .insta-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.tel-number {
    font-size: 24px;
    letter-spacing: 0.2em;
    margin-bottom: -4px;
}

.reception-time {
    font-size: 14px;
    letter-spacing: 0.01em;
}

.guide-box.tel-box .reception-time {
    white-space: nowrap;
    font-size: 12px;
}

/* 右の箱（Instagram） */
.insta-box {
    background-color: rgba(2, 125, 70, 0.8); /* --main-color 80% */
    color: #fff;
    justify-content: flex-start; /* 上寄せ */
    align-items: center;
    padding-top: 38px; /* 上の余白を詰めつつ、位置を調整 */
}


.insta-link-text {
    font-size: 20px;
    letter-spacing: 0.1em;
}

.insta-sub-text {
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* アイコンの個別サイズ指定 */
.tel-box .guide-icon {
    width: 18px; /* 電話アイコンは小さめ */
}

.insta-box .guide-icon {
    width: 28px; /* インスタアイコン */
}

/* 共通設定アイコン */
.guide-icon {
    height: auto;
    display: block;
}

/* ====== 個人情報入力フォームに関すること ======= */
.contact-form-area {
    width: 820px;
    margin: 60px auto 0;
    color: var(--main-color);
    font-family: var(--font-noto);
}

.contact-form-area .btn-area {
    color: var(--base-color);
    }

.contact-form-area .btn-area p {
    letter-spacing: 0.2em;
    font-size: 16px;
    font-weight: bold;
}


.form-row { position: relative; width: 100%; margin-bottom: 30px; }

.form-row.has-illust {
    position: relative; /* 親要素を基準にする */
}

.field-label {
     display: block;
      font-size: 14px;
       font-weight: 700;
        margin-bottom: 8px;
         text-align: left;
        letter-spacing: 0.1em;
        }

.required { color: #ff0000; margin-left: 4px; }

.input-field {
    width: 100%; height: 60px; padding-left: 15px;
    border: 1px solid var(--main-color);
    border-radius: 6px; box-sizing: border-box;
    background-color: #f9f9f7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: var(--font-noto);
    font-size: 14px;
    color: #000000; /* 入力文字を黒に修正 */
}

.input-field::placeholder { color: #ccc; }

.select-field {
     color: #000; 
    } /* プレースホルダー的役割の時 */

.select-field option { color: #000; }

.flex-row { display: flex; gap: 20px; }
.flex-item { flex: 1; }

.textarea-field { height: 265px; padding-top: 15px; resize: vertical; min-height: 265px; }

/* キョン（6段目）だけ個別に位置を上書き */
.illust-kyon {
    width: 68px;
    height: auto;
}

/* 他のイラストサイズ */
.illust-mail { width: 52px; height: auto; }
.illust-phone { width: 56px; height: auto; }

/* イラストの共通リセット */
.row-illust {
    position: absolute;
    left: -12px; 
    transform: translateX(-100%);
    object-fit: contain;
}

/* 4段目：メール（中央） */
.illust-mail { top: 55px; transform: translate(-100%, -50%); }

/* 5段目：電話（中央） */
.illust-phone { top: 55px; transform: translate(-100%, -50%); }

/* 6段目：キョン（ここだけ「上」に固定） */
.illust-kyon {
    top: 30px; /* 数値はFigmaを見て微調整してください */
    transform: translateX(-100%); /* 垂直中央（-50%）を入れない */
}



.policy-area { width: 700px; margin: 0 auto 80px; text-align: center; }
/* .policy-agreement a { color: var(--main-color); text-decoration: underline; margin-bottom: 30px;} */

/* チェックボックス本体を大きくする */
#policy-check {
    transform: scale(1.5); /* 1.5倍に拡大 */
    margin-right: 12px;    /* 文字との間隔を調整 */
    vertical-align: middle;
    cursor: pointer;
}

.policy-agreement {
    margin-bottom: 14px;
}

/* ラベルも押しやすく調整 */
.policy-agreement label {
    font-size: 14px;
    cursor: pointer;
    vertical-align: middle;
}


/* 8段目：送信確認ボタン */
.submit-box {
    width: 800px;
    height: 60px;
    border-radius: 30px; /* 両端半円 */
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: all 0.2s ease; /* 反応を良くする */
    margin-bottom: 160px;
}


.submit-box p { color: var(--base-color); font-size: 16px; font-weight: bold; letter-spacing: 0.3em; margin: 0; transition: color 0.1s; }

.submit-box:hover { filter: brightness(1.1); transform: translateY(-2px); }
.submit-box:hover p { color: #ff0000; text-shadow: 0 0 5px rgba(255,255,255,0.5); }

/* 確認画面は、最初は絶対に隠しておく */
#confirmation-screen {
    display: none !important; /* JSで命令があるまで表示させない */
    width: 100%;
    max-width: 820px;
    margin: 0 auto 160px;
    min-height: 100vh; /* 画面いっぱいを占領する高さ */
    background-color: var(--base-color);
    position: relative;
    z-index: 1000; /* 他の要素より上に重ねる */
    padding: 100px 0; /* 上下にゆとりを持たせて贅沢に使う */
}

#confirm-data {
    min-height: 400px; /* 文字が少なくても、この高さは維持する */
    padding: 40px;
    border: 1px solid var(--main-color);
    background-color: #f9f9f7;
    line-height: 2.2;
}

#thanks-msg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    /* 背景をオレンジ、文字を黒にして最強の視認性を確保 */
    background-color: var(--accent-color); 
    color: #000000; 
    padding: 50px 100px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    text-align: center;
    border: 3px solid #fff; /* 白い枠線をつけてさらに浮かび上がらせる */
}
/* ボタンエリアを最前面に持ってくる */
#button-container, 
#button-container button {
    position: relative;
    z-index: 9999 !important;
}

/* ======================================
　 　ここまでＣＯＮＴＡＣＴページのＣＳＳ　　
 ====================================== */

/* ==========================================
   ニュースページ
   ========================================== */
/* コンテナの設定 */
.rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* コンテンツの裏側 */
  pointer-events: none;
}

/* 共通の動き：ゆっくり降下＋ゆらゆら */
.rain-item {
  position: absolute;
  top: -150px; /* 画面の上からスタート */
  opacity: 0;
  animation: fall-slow 15s linear infinite; /* 15秒かけて1回落下 */
}

/* 落下アニメーション */
@keyframes fall-slow {
  0% {
    top: -100px;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  10% {
    opacity: 0.4; /* ふんわり現れる */
  }
  90% {
    opacity: 0.4;
  }
  100% {
    top: 110vh; /* 画面下まで */
    opacity: 0; /* ふんわり消える */
    transform: translateX(50px) rotate(20deg); /* 少し横に流れながら傾く */
  }
}

/* --- 画像ごとのサイズ設定 --- */
.type-a { width: 60px; }  /* キョン */
.type-b { width: 40px; }  /* にんじん */
.type-c { width: 30px; }  /* ハート */

/* --- 個別配置と遅延（ここでバラバラ感を出す） --- */
.pos-1 { left: 5%;  animation-delay: 0s; }
.pos-2 { left: 15%; animation-delay: 7s; }
.pos-3 { left: 25%; animation-delay: 2s; }
.pos-4 { left: 40%; animation-delay: 10s; }
.pos-5 { left: 55%; animation-delay: 4s; }
.pos-6 { left: 70%; animation-delay: 12s; }
.pos-7 { left: 80%; animation-delay: 1s; }
.pos-8 { left: 90%; animation-delay: 8s; }
.pos-9 { left: 95%; animation-delay: 5s; }
.news-title h2{
    padding-top:100px;
    text-align:center;
    color:var(--main-color);
    margin-bottom:70px;
}


.newspage-list{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 160px;
}

.news-card{
    width: 100%;
    min-height: 300px;
    height:auto;
    border:1px solid var(--accent-color);
    border-radius:20px;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-image{
    flex: 0 0 35%;
    max-width: 400px;
    display:flex;
    align-items:center;
}

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

.news-article{
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-article h3{
    margin-bottom: 10px;
    color: var(--main-color)
}

.newspage-text{
    padding-top:15px;
    line-height: 1.6;
}

.newspage-selector{
    display:flex;
    justify-content:center;
    margin-bottom:160px;
}

/* ==========================================
   ここまでニュースページ
   ========================================== */
/* ==========================================
   アバウトページ
   ========================================== */

.about-wrapper{
    width: auto;
    padding-top: 70px;
    margin:  auto;
}

.about-title{
    background-image: url(../img/abouthero.webp);
    max-width:100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
}

.about-title h2{
    text-align: center;
    color: var(--base-color)
}

.aboutpage-list{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card{
    max-width: 1000px;
    height: auto;
    min-height: 300px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    margin-bottom: 100px;
}

.about-image{
    max-width: 100%;
    height: auto;
}

.about-article{
    max-width: 40%;
    height: 250px;
}

.about-diagram{
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.about-article h3{
    color: var(--accent-color)
}

.fadeIn {
    opacity: 0;
    transition: 2s;
}
.fadeIn.is-show {
    opacity: 1;
}

.about-text{
    padding-top: 25px;
}

.about-text p{
    color: #000;
}

.textplus{
    max-width: 30px;
    height: auto;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 24px;
}

.color-change1{
    color: var(--main-color)
}

.color-change2{
    color: var(--accent-color)
}

/* --- ロゴについて --- */

.aboutlogo-wrapper {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 160px;
}

.section-title {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 48px;
}

.spice-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: start;
}

.spice-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.spice-icon {
    background-image:url(../img/logo2.gif);
    background-size: cover;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    padding-top:40px;
    font-size: 24px;
    color: var(--base-color);
    font-weight: bold;
}

.spice-texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spice-item {
    padding: 5px 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.spice-item h3 {
    margin-bottom: 8px;
}

/* ==========================================
   ここまでアバウトページ
   ========================================== */

/* ==========================================
   メニューページ
   ========================================== */
.menu-page{
    background-image: url(../img/menupage.webp);
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    width :100%
}

.menu-page-header{
    background-color: var(--base-color);
    width: auto;
    margin:0 auto;
    height:70px;
}

.menu-page-headline{
    height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-page-headline .menu{
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.menu-page-headline h2{
    color: var(--base-color);
}

.menu-page-headline h3{
    color: var(--base-color);
}


/* --- 主力メニュー --- */

.menu-curry{
    max-width:1360px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:30px;
}

.menu-page-card{
    width: 300px;
    height: 350px;
    padding: 25px;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    background-color: var(--base-color);
}

.menu-page-card1{
    background-image: url(../img/curry01.webp);
    background-size: cover;
    width: 250px;
    height: 250px;
    padding-top: 210px;
    display: flex;
    justify-content: center;
    position:relative;
}

/* --- おすすめアイコン --- */

.recommend{
    width:100px;
    height:100px;
    background-image:url(../img/recommend.webp);
    position:absolute;
    padding-top:35px;
    display:flex;
    justify-content: center;
    top:-50px;
    left:-50px;
    z-index :1000;
}

.recommend p{
    color:var(--base-color)
}


.menu-page-card2{
    background-image: url(../img/curry02.webp);
    background-size: cover;
    width: 250px;
    height: 250px;
    padding-top: 210px;
    display: flex;
    justify-content: center;
}

.menu-page-card3{
    background-image: url(../img/curry03.webp);
    background-size: cover;
    width: 250px;
    height: 250px;
    padding-top: 210px;
    display: flex;
    justify-content: center;
}

.menu-page-card4{
    background-image: url(../img/curry04.webp);
    background-size: cover;
    width: 250px;
    height: 250px;
    padding-top: 210px;
    display: flex;
    justify-content: center;
}


.price{
    display: flex;
    justify-content: center;
}

.spice{
    display:flex;
    justify-content: center;
}


/* --- メニュー一覧 --- */

.menu-page2{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-container {
    width: 1000px;
    height: 350px;
    display: grid;
    grid-template-columns: 200px 100px 100px 200px 200px;
    grid-template-rows: 50px 300px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    background-color: var(--base-color);
}

.menu-container ul{
    list-style: none;
}

.menu-container li{
    margin-bottom:15px;
}

.menu-basiccurry{
    text-align: center;
    padding-top:50px;
}

.menu-drink, .menu-topping{
    padding-top:50px;
}

.menu-basiccurry{
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}

.menu-curry-column{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.menu-price{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.menu-spice{
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.menu-drink{
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.menu-drink-list{
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.menu-topping{
    grid-column: 5 / 6;
    grid-row: 1 / 2;
}

.menu-topping-list{
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}


.menufromgamemeat {
    max-width:1360px;    
    margin:0 auto 160px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menufromgamemeat h2{
    color: var(--base-color);
}

.togamemeat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 204px;
    height: 58px;
    background-color: var(--main-color);
    border-radius: 29px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-zen);
    color: var(--base-color);
    margin-top: 24px;
    transition: background-color 0.3s, opacity 0.3s; /* 背景色などの変化をスムーズに */
}

/* ホバー時のボタン全体の動き */
.togamemeat-btn:hover {
    background-color: var(--accent-color); /* ホバーでアクセントカラーに変化（任意） */
    opacity: 0.9;
}


/* --- ちばなプライバシーのページ --- */

/* ===== HERO ===== */
.policy-hero {
display: flex;
flex-direction: column;
align-items: center;
padding: 56px 20px 36px;
}
.policy-hero__img {
width: 280px;
height: auto;
margin-bottom: 24px;
}
.policy-hero__title {
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 36px;
font-weight: 700;
color: #027d46;
margin-bottom: 8px;
letter-spacing: 0.04em;
}
.policy-hero__sub {
font-size: 14px;
color: #888;
letter-spacing: 0.08em;
}

/* ===== SECTION ===== */
.policy-section {
max-width: 900px;
margin: 0 auto;
padding: 0 40px 40px;
}
.policy-item {
margin-bottom: 44px;
}

.policy-item__heading {
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: flex-end;
gap: 14px;
margin-bottom: 10px;
}


.policy-item__heading img {
flex-shrink: 0;
object-fit: contain;
}
.policy-item__heading h3 {
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 24px;
font-weight: 700;
color: #027d46;
border-left: 6px solid #f39800;
padding-left:10px;
}

.policy-item__body {
font-size: 14px;
line-height: 1.9;
color: #027d46;
padding-left: 4px;
}
.policy-item__body ul {
margin: 6px 0 0;
padding-left: 20px;
}
.policy-item__body li {
margin-bottom: 4px;
}

/* ===== 運営事務局 ===== */
.policy-office {
max-width: 760px;
margin: 0 auto 56px;
padding: 0 40px;
}
.policy-office__box {
width: 467px;
height: 140px;
border: 2px solid #027d46;
border-radius: 33px;
background-color: #027d46;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 36px;
}
.policy-office__box p {
font-size: 14px;
line-height: 1.9;
color: #fffffe;
}
/* ===== CTA ===== */
.policy-cta {
display: flex;
align-items: center;
justify-content: center;
padding: 40px 40px 80px;
width:100%;
box-sizing: border-box;
}


.policy-cta__img {
width: 186px;
height: 158px;
object-fit: contain;
}
.policy-cta__btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 160px;
height: 46px;
background-color: #027d46;
border-radius: 23px;
font-size: 14px;
font-weight: 700;
font-family: 'Noto Sans JP', sans-serif;
color: #fffffe;
text-decoration: none;
transition: background-color 0.3s, opacity 0.3s; /* 背景色などの変化をスムーズに */
}

/* ホバー時のボタン全体の動き */
.policy-cta__btn:hover {
    background-color: var(--accent-color); /* ホバーでアクセントカラーに変化（任意） */
    opacity: 0.9;
}

/* --- ちばなジビエのページ --- */
/* ===== 共通タイトル ===== */
.top-section__title {
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 48px;
font-weight: 700;
color: #027d46;
text-align: center;
margin-top:80px;
margin-bottom: 80px;
border-bottom: 10px solid #f39800;
padding-bottom: 16px;
display: inline-block;
}
/* ===== はじめてでも、食べやすいジビエ ===== */
.top-gibier {
max-width:1380px;
margin: 0 auto;
padding: 80px 60px;
text-align: center;
}

.top-gibier__cards {
display: flex;
justify-content: center;
gap: 80px;
flex-wrap: wrap;
margin-top:40px;
}

.top-gibier__card {
width: 360px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}

.top-gibier__card-title {
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 36px;
font-weight: 700;
color: #027d46;
text-align: center;
line-height: 1.4;
text-align: center;
}

.top-gibier__card-img {
width:240px;
height: 240px;
border-radius: 50%;
object-fit: cover;
}

.top-gibier__card-sub {
font-family: 'Noto Sans JP', sans-serif;
font-size: 24px;
color: #027d46;
text-align: center;
line-height: 1.7;
text-align: center;
}

/* ===== ジビエは、意外とヘルシー ===== */
.top-healthy {
max-width:1380px;    
margin:0 auto;
padding: 80px 60px;
text-align: center;

}

.top-healthy__cards {
display: flex;
justify-content: center;
gap: 120px;
flex-wrap: wrap;
margin-top: 40px;
}
.top-healthy__card {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
width: 220px;
}

.top-healthy__icon {
width: 100px;
height: 100px;
object-fit: contain;
}

.top-healthy__card-title {
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 36px;
font-weight: 700;
color: #027d46;
border-bottom: 10px solid #f39800;
padding-bottom: 4px;
text-align: center;
}

.top-healthy__card-sub {
font-family: 'Noto Sans JP', sans-serif;
font-size: 24px;
color: #027d46;
text-align: center;
}

/* ===== ジビエは、エコにもつながる ===== */
.top-eco {
max-width:1380px;    
margin:0 auto;
padding: 80px 60px 120px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.top-eco__btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 204px;
height: 58px;
background-color: #027d46;
border-radius: 29px;
font-size: 14px;
font-weight: 700;
font-family: 'Noto Sans JP', sans-serif;
color: #fffffe;
text-decoration: none;
margin-top: 24px;
transition: background-color 0.3s, opacity 0.3s; /* 背景色などの変化をスムーズに */
}

/* ホバー時のボタン全体の動き */
.top-eco__btn:hover {
    background-color: var(--accent-color); /* ホバーでアクセントカラーに変化（任意） */
    opacity: 0.9;
}


/* ==========================================
   ここまでメニューページ
   ========================================== */
   
 /* ======================================
　 　ここから外来種（ａｌｉｅｎ）ページのＣＳＳ　　
 ====================================== */

/* 1段目：ラベル */
.category-label {
    width:200px;
    height: 50px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    letter-spacing: 0.25em;
    margin:0 auto 60px;

    border-radius: 2em; /* 丸みをつけて柔らかい印象に */
    
}

/* 2段目：h1（字間を狭く調整） */
.alien-h1 {
    font-family: var(--font-zen);
    font-size: 48px;
    line-height: 1.3;
    color: var(--main-color);
    margin-bottom: 30px;
    letter-spacing: -0.02em; /* 字間をギュッと詰め、都会的な印象に */
}

/* 3段目：p（20pt相当、自然な折り返し） */
.alien-p {
    font-family: var(--font-noto);
    font-size: 20px;
    line-height: 1.8;
    color: var(--main-color);
    letter-spacing: 0.05em;
    max-width: 540px; /* 枠内で読みやすく折り返すための最大幅 */
    text-align: justify; /* 両端揃えで綺麗に見せる */
}

.alien-impact {
    background-color: var(--base-color);
    width: 100%;
    min-height: 700px; /* 画像拡大に合わせて高さを少し確保 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 80px auto 60px
}

.impact-container {
    width: 95%; /* 左右の余白をさらに削ってエリアを確保 */
    max-width: 1360px; /* 全体の最大幅を少し拡張 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
}

/* 左側：テキストエリアを少し絞る */
.alien-text-content {
    flex: 0.8; /* 右側にスペースを譲るために少し縮小 */
    z-index: 10;
}

/* 右側：画像エリアを大胆に広げる */
.alien-visual-content {
    flex: 1.2; /* テキストより広く確保 */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.animation-wrapper {
    position: relative;
    width: 100%;       /* 親要素（配置場所）の幅いっぱいに広がる */
    max-width: 600px;  /* 必要に応じて最大サイズを制限 */
    aspect-ratio: 1 / 1; 
    margin: 0 auto;
}

/* 共通：中心固定 */
.img-earth, .img-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 地球：矢印とのバランスを見て個別に%指定 */
.img-earth {
    z-index: 2;
    width: 95%; /* 例：親コンテナに対して95%の大きさ */
    height: auto;
}

/* 矢印：地球との重なり具合を見て個別に%指定 */
.img-arrow {
    z-index: 1;
    width: 84%; /* 例：親コンテナに対して84%の大きさ */
    height: auto;
    opacity: 0.8; /* 矢印を少し透けさせることで、地球が見えるようにする */ 
    animation: rotation-center 40s linear infinite;
}

@keyframes rotation-center {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* セクション全体 */
.contribution-stats {
    background-color: var(--base-color);
    width: 100%;
    margin-bottom: 120px;
    padding: 0 40px;
    box-sizing: border-box;
}

.contribution-stats .container {
    max-width: 1360px; /* 規定の画面幅 */
    margin: 0 auto;
    text-align: center;
}


.stats-h3 {
    font-family: var(--font-zen);
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px; /* 箱同士の距離 */
}

/* 3つの箱（カード）：高さを出し、余白を広く取る */
.stats-card {
    flex: 1;
    max-width: 360px; /* 横幅を少し広げつつ、高さを強調 */
    min-height: 400px; /* ★高さをしっかり確保し、縦長に */
    background-color: #fff;
    border: 3px solid var(--main-color);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 上：画像エリア（余白を贅沢に取る） */
.stats-image-area {
    width: 100%;
    flex: 1; /* ★可変で高さをしっかり取る */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid var(--main-color);
    padding: 40px; /* ★余白を広く取る（ここが重要） */
    box-sizing: border-box;
}

.stats-image-area img {
    max-width: 160px; /* 前回よりさらに少し大きく（約1.8倍以上） */
    height: auto;
    object-fit: contain;
}

/* 下：説明文エリア（こちらも余白を十分に確保） */
.stats-text-area {
    padding: 40px 20px; /* ★上下の余白を広く取る */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-text {
    font-family: var(--font-noto);
    font-size: 18px;
    color: var(--main-color);
    line-height: 2.0; /* ★行間も広めにして、ゆったり見せる */
    letter-spacing: 0.05em;
    font-weight: 400;
    margin: 0;
}

/* セクション全体（背景メインカラー） */
.alien-crisis {
    background-color: var(--main-color);
    width: 100%;
    padding-top: 60px;
    margin-bottom: 160px; /* 次セクションとのマージン */
}

.container-alien {
    max-width: 1360px; /* 指定の規定値 */
    margin: 0 auto;
    padding: 0 40px;
}

/* 1段目 */
.crisis-intro {
    text-align: center;
    color: var(--base-color); /* 背景が緑なので生成り色で見やすく */
    margin-bottom: 46px;
}

.crisis-h2 {
    font-family: var(--font-zen);
    font-size: 36px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 30px;
}

.crisis-intro-p {
    font-family: var(--font-noto);
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

/* 2段目：グリッド */
.crisis-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

/* 2段目：被害状況カード */
.crisis-card {
    flex: 1;
    max-width: 400px;
    background: transparent; /* 透明にして背景色(緑)を見せる */
    border-radius: 20px; /* 角丸を20pxに拡大 */
    overflow: hidden;
}

.crisis-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0; /* 画像の上側も角丸に合わせる */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* さりげない影 */
}

.crisis-info {
    padding: 25px 20px;
    text-align: center !important;
    color: #ffffff; /* 文字色は白 */
}

.crisis-title {
    font-family: var(--font-zen);
    font-size: 18px; /* 本文に近い控えめなサイズ */
    font-weight: 400; /* レギュラー */
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.crisis-desc {
    font-family: var(--font-noto);
    font-size: 14px;
    font-weight: 400; /* レギュラー */
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 3段目：警告エリア */
.waste-warning-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 70px;
}

.orange-alert-box {
    width: 920px;
    max-height: 66px; /* 高さを抑える */
    padding: 15px 0; /* 高さを抑えるためにパディングを調整 */
    background-color: var(--accent-color);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warning-text {
    color: var(--main-color);
    font-size: 18px; /* 少し小さくしてオシャレに */
    font-weight: 500; /* レギュラー */
    letter-spacing: 0.1em;
    margin-bottom: 4px; /* テキストと線の距離を広げる */
}

.white-line-extended {
    /* 文字幅より少し長く（左右2文字分ずつ追加） */
    width: 83%; 
    height: 4px;
    background-color: #ffffff;
}

/* しくみと取り組みのセクション全体 */
.alien-process-section {
    background-color: var(--base-color);
    width: 100%;
    margin-bottom: 240px;
    color: var(--main-color);
   
   /* 1. 幅広モニターで親要素自体を中央に固定する */
    display: block; 
    margin-left: auto;
    margin-right: auto; 
}

.process-container {
    /* ここで幅を90%に絞り、中央に固定する */
    width: 90%;
    max-width: 1224px; /* 1360pxの90% */

/* 2. ここが重要！左右の余白を「均等（auto）」にする */
    margin-left: auto;
    margin-right: auto;
    
    position: relative; /* 中央線の基準 */
    box-sizing: border-box;
    }

.process-flex-row {
    display: flex;
    width: 100%;
    /* gapは使わず、左右50%ずつに固定する */
    /* justify-content: space-between; */
    justify-content: center; /* 念のため追加 */
    margin: 0;
    padding: 0;
}

/* 中央の縦罫線（壊れないように絶対値で指定） */
.process-flex-row::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--main-color);
    z-index: 10;
}

.process-side {
    /* 左右を完全に50%ずつに固定 */
    width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
}

/* 左右の余白を「中央線から等距離」に設定 */
.side-left {
    padding-right: 50px; /* 中央線との距離 */
}

.side-right {
    padding-left: 50px; /* 中央線との距離 */
}

.process-h4 {
    font-family: var(--font-zen);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 0.15em;
}

/* 各段のアイテム */
.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px; /* 各段の間隔 */
    position: relative;
}

/* 左エリア：画像を縦に連結する罫線 */
.side-left .item-visual {
    position: relative;
}

/* 画像の中心を通る垂直線（擬似要素） */
/* 垂直線（左側の画像連結線）のズレ防止 */
.side-left .process-item:not(:last-child) .item-visual::after {
    content: "";
    position: absolute;
    top: 50%;  /* 画像の垂直中央からスタート */
    left: 50%;
    transform: translateX(-50%); /* 確実に真ん中を通す */
    width: 2px;
    height: calc(100% + 60px); /* アイテム間のマージン分伸ばす */
    background-color: var(--main-color);
    z-index: 1;
}

/* ビジュアルエリア（画像固定幅） */
.item-visual {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
     align-items: center; /* 画像をこの100x80の箱の真ん中に置く */
    position: relative;
}

.process-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 2; /* 連結線より前に出す */
    background-color: var(--base-color); /* 重なり部分を消すため */
}

/* テキストエリア */
.item-text-group {
    padding-left: 20px;
    flex: 1;
     padding-top: 25px;
}

.title-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

/* 丸数字 */
.step-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: #fff; /* 数字は白 */
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    margin-right: 12px;
}

/* p文タイトル：若干大きめ、重め、適度な字間 */
.p-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.p-title.no-num {
    margin-bottom: 12px;
}

/* p文説明：本文と同じ、左揃え折り返し */
.p-desc {
    font-size: 16px; /* 規定本文サイズ */
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: left;
    word-break: break-all;
}

/* =====最後の食べるイラストとハートとテキストのセクション==== */
.alien-final-message {
    background-color: var(--base-color);
    width: 100%;
    margin-bottom: 280px; /* 次セクションとの間隔 */
    display: flex;
    justify-content: center;
}

.final-overlap-container {
    width: 1360px; /* 規定の横幅 */
    height: 600px; /* 全体の高さ（重なりを考慮して調整） */
    position: relative;
}

/* 左上のテキスト枠（幅40% / 高さ180~200px） */
.final-text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 200px;
    z-index: 10; /* 重なりで上にくるように設定 */
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%; /* 左の余白を少し取る */
}

.final-h2 {
    font-family: var(--font-zen);
    font-size: 32px;
    margin-bottom: 24px;
}

.final-p {
    font-family: var(--font-noto);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* 右下の画像枠（幅60% / 高さ500px） */
.final-image-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 500px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5%; /* 右の余白を少し取る */
}

.main-illust {
    width: 100%;
    height: auto;
    object-fit: cover; /* 枠に合わせて調整 */
}

/* ハートマーク：ユラユラ動くアニメーション */
.floating-heart {
    position: absolute;
    top: 25%;
    right: 90%;
    width: 80px; 
    animation: yura-yura-slow-wide 18s ease-in-out infinite;
    z-index: 15; /* メイン画像より確実に上に */
}

/* ★ここが重要：中にある画像に「親の幅に従え」と命令する */
.floating-heart img {
    width: 100%;
    height: auto;
    display: block;
}

/* ユラユラの定義：上下左右に微動 */
@keyframes yura-yura-slow-wide {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(80px, -50px) rotate(20deg); }  /* 右上へ大きく */
    50%  { transform: translate(-140px, 100px) rotate(-10deg); } /* 左下へ大きく */
    75%  { transform: translate(160px, 60px) rotate(30deg); }  /* 右へ大胆に */
    100% { transform: translate(0, 0) rotate(0deg); }         /* ゆっくり戻る */
}


/* =============================================
   【PC・SP共通】地球が歪む問題を修正
   aspect-ratioをやめてwidth/heightをpx固定にする
   ============================================= */

.animation-wrapper {
    position: relative;
    width: 500px !important;
    height: 500px !important;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0 auto;
}

.img-earth {
    height: auto !important;
}

.img-arrow {
    height: auto !important;
}

.header,
.header-inner{
  overflow: visible !important;
}

 /* ======================================
　 ここまで外来種（ａｌｉｅｎ）ページのＣＳＳ　　
 ========================================= */


 /* =============================================
     ポリシーページ
     ============================================= */

  .policy-hero__title { font-size: 28px; }
  .policy-item__heading h3 { font-size: 20px; }
  .policy-office__box { width: 100%; height: auto; padding: 24px; }
  .policy-cta-wrapper { display: flex;
    justify-content:center;
height:auto; margin-bottom:160px;}
  .policy-cta { flex-direction: column; align-items: center; }
  .policy-cta__btn { margin: 70px 0 0 20px; }

/* =============================================
   ジビエページ：3Dフリップカード
   ============================================= */

.healthy-flip-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
}

.flip-card {
  width: 220px;
  height: 260px;
  perspective: 900px;
  cursor: pointer;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  box-sizing: border-box;
}

.flip-front {
  background: #ffffff;
  border: 2px solid var(--main-color);
}

.flip-back {
  background: var(--main-color);
  transform: rotateY(180deg);
}

.flip-front-label {
  font-family: var(--font-zen);
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  border-bottom: 6px solid var(--accent-color);
  padding-bottom: 4px;
}

.flip-front-sub {
  font-family: var(--font-noto);
  font-size: 14px;
  color: var(--main-color);
  text-align: center;
}

.flip-hint {
  font-family: var(--font-noto);
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
}

.flip-back-title {
  font-family: var(--font-zen);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}

.flip-back-desc {
  font-family: var(--font-noto);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.8;
}

.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  box-sizing: border-box;
}

.flip-front-sub {
  font-family: var(--font-noto);
  font-size: 14px;
  color: var(--main-color);
  text-align: center;
}

.flip-hint {
  font-family: var(--font-noto);
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
}

/* =============================================
   キョンシェイク用CSS
   ============================================= */

/* キョンをつかめるようにする */
.kyon-runner {
  cursor: grab;
  user-select: none;
  touch-action: none;
  position: relative;
  z-index: 50;
  transition: transform 0.1s;
}

.kyon-runner:active,
.kyon-runner.is-grabbed {
  cursor: grabbing;
}

/* シェイク中：左右にぷるぷる */
.kyon-runner.is-shaking .jumping-kyon {
  animation: kyon-shake 0.1s ease-in-out infinite !important;
}

@keyframes kyon-shake {
  0%   { transform: rotate(-10deg) scale(1.1); }
  50%  { transform: rotate(10deg) scale(1.1); }
  100% { transform: rotate(-10deg) scale(1.1); }
}

/* メッセージオーバーレイ */
#kyon-message-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 125, 70, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  cursor: pointer;
}

#kyon-message-overlay.is-show {
  opacity: 1;
  visibility: visible;
}

.kyon-message-inner {
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#kyon-message-overlay.is-show .kyon-message-inner {
  transform: scale(1);
}

.kyon-message-text {
  font-family: var(--font-zen);
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.kyon-message-sub {
  font-family: var(--font-noto);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

 /* ======================================
　 画面幅が750px以下になった時の調整
 ========================================= */

/* ==============================================
トップページのレスポンシブ化ＣＳＳコードはここから
============================================== */
@media screen and (max-width:750px){

  .header-inner{
    width:100vw !important;
    max-width:100vw !important;
    min-width:100vw !important;

    margin:0 !important;
    padding:0 16px !important;

    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;

    box-sizing:border-box !important;
    overflow:hidden !important;
}

  .header-right{
    width:auto !important;
    flex:none !important;
    margin:0 !important;
}

  .gnav,
  .gnav-list{
    display:none !important;
  }

  .hamburger{
    display:flex !important;
  }

  /* .hamburger span{
    background-color:#027d46 !important;
  } */

  /* トップページの横崩れ強制停止 */
  .hero-inner,
  .menu-inner,
  .map-container,
  .shop-info-inner,
  .header-inner{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 !important;
    padding-left:16px !important;
    padding-right:16px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  /* スライダー一時簡略化 */
  .swiper{
    height:400px !important;
}
     .swiper-slide{
    min-width:100% !important;
}

  /* Heroを縦並びへ */

.hero-inner{
    display:flex !important;
    flex-direction:column !important;
    height:auto !important;
    align-items:center !important;
}
.hero{
    padding-top:100px;
    min-height:auto;
    margin-bottom:40px;
}

.hero-text-area,
.hero-image-area{
    width:100% !important;
}

.hero-text-area{
    width:100% !important;
    max-width:100% !important;

    display:block !important;

    text-align:center !important;

    margin:0 auto 56px auto !important;
    padding:0 !important;
}

.hero-text-area h1{
    width:100%;
    text-align:center !important;
    margin:0 auto !important;
    line-height:1.4;
}

  .hero-image-area{
    display:flex !important;
    flex-direction:column !important;
    gap:12px;
}
  .hero-image-area img{
    height:auto !important;
    display:block;
  }

  /* 横スクロール絶対停止 */
  html,
  body,
  main{
    overflow-x:hidden !important;
    max-width:100% !important;
  }

/* ECOセクションをスマホで縦並び */
/* ECOセクションSP最適化 */
.eco-inner{
    display:flex !important;
    flex-direction:column !important;

    height:auto !important;
    max-width:100% !important;

    padding:0 20px !important;
    box-sizing:border-box;
}

.eco-content,
.eco-image{
    width:100% !important;
    max-width:100% !important;
}

.eco-content{
    padding:0 !important;
    margin-bottom:40px;
}

.eco-title{
    margin:0 0 24px 0 !important;
    text-align:center;
        font-size:28px !important;
line-height:1.4;
}

.eco-items{
    display:flex !important;
    justify-content:space-between;
    gap:12px;

    margin-bottom:28px;
}

.eco-item{
    width:33.3% !important;
}

.eco-item img{
    width:56px;
}

.eco-item p{
    font-size:14px;
    line-height:1.5;
}

.eco-bottom{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;

    gap:20px;
    padding-top:20px;
}

.eco-text{
    font-size:16px;
    line-height:1.7;
    text-align:center;
}

.eco-btn{
    width:220px;
    height:54px;
    font-size:18px;
}

.eco-image{
    display:flex;
    justify-content:center;
}

.eco-image img{
    width:100% !important;
    max-width:420px;
    height:auto !important;
}
    
    
/* MENUセクション SP最適化 */
.menu-section{
    padding-top:60px;
    padding-bottom:60px;
}

.menu-inner{
    width:100% !important;
    max-width:100% !important;

    padding:0 20px;
    box-sizing:border-box;
}

.menu-title{
    font-size:28px;
    margin-bottom:32px;
}

.menu-grid{
    display:flex !important;
    flex-direction:column !important;

    gap:28px;
    align-items:center;
}

.menu-card{
    width:100% !important;
    max-width:360px;

    height:auto !important;
    aspect-ratio:1 / 1;

    border-radius:20px;
}

.menu-img{
    width:100%;
    height:100%;
}

.menu-name{
    font-size:15px;
    padding-bottom:12px;
}

.menu-link-wrapper{
    justify-content:center;
    margin-top:36px;
}

.menu-more h3{
    font-size:20px;
}

/* NEWSセクション SP最適化 */
.news-section{
    height:auto !important;
    padding-top:60px;
    padding-bottom:60px;
}

.news-inner{
    width:100% !important;
    max-width:100% !important;

    padding:0 20px;
    box-sizing:border-box;
}

.news-title{
    font-size:28px;
    margin-bottom:28px;
}

.news-item{
    display:flex !important;
    flex-direction:column !important;

    align-items:flex-start !important;

    height:auto !important;

    padding:18px 0 !important;
    padding-left:0 !important;
}

.news-category{
    width:auto !important;

    font-size:16px;
    margin-bottom:8px;
}

.news-content{
    margin-left:0 !important;

    font-size:14px;
    line-height:1.6;

    white-space:normal !important;
}

.news-link-wrapper{
    justify-content:center;
    padding-right:0;
    margin-top:28px;
}

.news-more{
    font-size:18px;
}

/* 地図セクション SP最適化 */
.access-map{
    padding-bottom:40px;
}

.map-container{
    width:100% !important;
    max-width:100% !important;

    height:400px !important;

    margin:0 auto;
    overflow:hidden;
}

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

/* 店舗情報 SP最適化 */
.shop-info{
    margin-bottom:60px;
}

.shop-info-inner{
    width:100% !important;
    max-width:100% !important;

    padding:0 20px;
    box-sizing:border-box;
}

.info-item{
    display:flex !important;
    flex-direction:column !important;

    align-items:flex-start !important;

    padding:18px 0;
}

.info-label{
    padding-left:0 !important;
    width:auto !important;

    margin-bottom:8px;

    font-size:13px;

    white-space:normal !important;
}

.info-data{
    margin-left:0 !important;

    font-size:14px;
    line-height:1.8;
}

/* 森画像の高さをスマホで増やす */
.forest-bg{
    height:420px;
    overflow:hidden;
}

.forest-bg img{
    width:100%;
    height:100% !important;

    object-fit:cover;
    object-position:center center;
}

/* フッター SP最適化 */
.footer{
    margin-top:0;
    min-height:auto;
}

.footer-inner{
    width:100% !important;
    max-width:100% !important;

    padding-top:50px;
    padding-bottom:30px;

    padding-left:20px;
    padding-right:20px;

    box-sizing:border-box;
}

.footer-row-top{
    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;

    margin-bottom:24px;
}

.footer-logo{
    position:static !important;
    margin-bottom:24px;
}

.footer-logo img{
    height:40px;
}

/* ナビは縦積み */
.footer-nav-main,
.footer-nav-sub{
    width:100%;
    padding-left:0 !important;

    display:flex;
    justify-content:center;
}

.footer-nav-main ul,
.footer-nav-sub ul{
    display:flex;
    flex-direction:column;

    align-items:center;

    gap:16px;
    padding:0;
    margin:0;
}

.footer-nav-main{
    margin-bottom:24px;
}

.footer-nav-sub{
    margin-bottom:36px;
}

.footer-nav-main a,
.footer-nav-sub a{
    font-size:14px;
}

/* SNS */
.footer-sns{
    gap:24px;
    margin-bottom:30px;
}

/* コピーライト */
.copyright{
    font-size:11px;
    line-height:1.7;
    text-align:center;
}

/* TOP戻るボタン */
.top-back-btn{
    width:48px;
    right:16px;
    bottom:20px;
}

/* 森セクションとフッターを密着 */
.kyon-forest-section{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.footer{
    margin-top:0 !important;
}

/* ==============================================
トップページのレスポンシブ化ＣＳＳコードはここまで！
============================================== */

/* ===============================================
contactページのレスポンシブ化ＣＳＳコードはここから
=============================================== */
/* # CONTACTページ 700px以下 レスポンシブCSS */

/* =============================
   CONTACT Hero
============================= */
.contact-hero{
    height:420px;
}

.hero-content-box{
    width:88%;
    height:160px;
    padding:20px;
    box-sizing:border-box;
}

.hero-content-box h1{
    font-size:34px;
    letter-spacing:0.12em;
}

.hero-content-box h2{
    font-size:18px;
}

.kyon-icon{
    width:32px;
    right:16px;
    bottom:12px;
}

/* =============================
   ガイドエリア
============================= */
.contact-guide{
    padding:50px 20px;
}

.contact-notice{
    margin-bottom:36px;
}

.contact-notice p{
    font-size:13px;
    line-height:2;
}

.guide-box-container{
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.guide-box{
    width:100%;
    max-width:360px;
    height:auto;
    min-height:150px;
    padding:24px 18px;
    box-sizing:border-box;
}

.label-pill{
    width:190px;
}

.tel-number{
    font-size:22px;
    letter-spacing:0.1em;
}

.reception-time{
    font-size:12px;
    line-height:1.8;
}

.insta-box{
    padding-top:26px;
}

.insta-link-text{
    font-size:18px;
}

.insta-sub-text{
    font-size:12px;
    text-align:center;
    line-height:1.8;
}

/* =============================
   フォーム全体
============================= */
.contact-form-area{
    width:100%;
    max-width:100%;
    padding:0 20px;
    box-sizing:border-box;
    margin-top:40px;
}

.form-row{
    margin-bottom:26px;
}

.field-label{
    font-size:13px;
    margin-bottom:10px;
}

.input-field{
    height:56px;
    font-size:14px;
}

.textarea-field{
    height:220px;
    min-height:220px;
}

/* 名前入力を縦積み */
.flex-row{
    flex-direction:column;
    gap:14px;
}

.flex-item{
    width:100%;
}

/* 左の装飾イラストをスマホでは消す */
.row-illust{
    display:none;
}

/* =============================
   ポリシー
============================= */
.policy-area{
    width:100%;
    padding:0 10px;
    box-sizing:border-box;
    margin-bottom:60px;
}

.policy-agreement{
    line-height:2;
}

.policy-agreement label{
    font-size:13px;
}

.policy-note{
    font-size:12px;
    line-height:1.8;
}

#policy-check{
    transform:scale(1.3);
}

/* =============================
   送信ボタン
============================= */
.submit-box{
    width:100%;
    max-width:100%;
    height:56px;
    margin-bottom:100px;
}

.submit-box p{
    font-size:14px;
    letter-spacing:0.15em;
}

/* =============================
   確認画面
============================= */
#confirmation-screen{
    padding:70px 20px !important;
    box-sizing:border-box;
}

#confirmation-screen h2{
    font-size:28px !important;
    margin-bottom:30px !important;
}

#confirm-data{
    width:100% !important;
    max-width:100% !important;
    padding:24px !important;
    box-sizing:border-box;
    font-size:14px !important;
    line-height:2 !important;
}

#button-container{
    min-height:auto !important;
}

#first-action-area,
#double-check-area > div{
    flex-direction:column;
    align-items:center;
    gap:16px !important;
}

#first-action-area button,
#double-check-area button{
    width:100% !important;
    max-width:360px;
}

/* =============================
   thanksメッセージ
============================= */
#thanks-msg{
    width:85%;
    padding:36px 24px;
    font-size:18px;
    line-height:1.8;
    text-align:center;
}

/* # このレスポンシブで改善される内容

* Heroの高さと中央ボックス縮小
* ガイドボックスを縦並び
* フォーム横並び → 縦並び
* 左側イラストをSPでは非表示
* フォーム幅を画面幅にフィット
* 確認画面のボタン崩れ防止
* thanks表示をスマホ最適化
* ボタン幅のオーバー防止
* テキスト折返し最適化 */


/* ===== ニュースセクションのレスポンシブ ===== */

    .news-card{
        flex-direction: column;
        height:auto;
    }

    .news-image{
        max-width:100%;
        height: 200px;
    }

    .news-article{
        padding: 20px;
    }

/* ===== アバウトページのレスポンシブ ===== */

    .about-title{
        height: 200px;
        margin-bottom: 30px;
    }

    .about-card{
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .about-article{
    max-width: 100%;
    height: auto;
    margin-bottom:20px;
    }

    .about-image{
        width: 100%;
        order: 2;
    }

    .about-diagram{
        width: 80%;
        margin:20px auto;
    }

    .about-text br{
        display: none;
    }

    .about-text p{
        margin-bottom: 1em;
    }

    .spice-grid {
    grid-template-columns: 1fr;
    }

    .spice-icons {
    flex-direction: row;
    justify-content: center;
    }

/* ===== メニューページのレスポンシブ ===== */

    .menu-page-headline{
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .menu-page-headline .menu{
        margin-bottom:20px;
    }

    .menu-page-headline h3{
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .menu-curry{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        justify-items: center;
    }

    .menu-page2{
        height: auto;
        padding: 50px 0;
    }

    .menu-container ul{
        padding-inline-start:0;
        list-style:none;
        padding:0;
        margin:0;
    }

    .menu-container {
        width:calc(100% - 40px);
        height:auto;
        margin:0 auto;
        padding:0 120px;
        grid-template-columns: auto auto auto;
        grid-template-rows: repeat(6, auto);
        gap:20px 8px;
        justify-content: start;
    }

    .menu-drink{
        grid-column: 1 / 4;
        grid-row: 3 / 4;
    }

    .menu-drink-list{
        grid-column: 1 / 4;
        grid-row: 4 / 5;
    }

    .menu-topping{
        grid-column: 1 / 4;
        grid-row: 5 / 6;
    }

    .menu-topping-list{
        grid-column: 1 / 4;
        grid-row: 6 / 7;
    }

    .menu-drink, .menu-topping{
        text-align:center;
    }

    .menu-drink-list, .menu-topping-list{
        display:flex;
        justify-content: center;
    }

    /* ===== ポリシーページのレスポンシブ ===== */

    .policy-hero__title {
        font-size: 28px;
    }
    .policy-item__heading h3 {
        font-size: 20px;
    }
    .policy-office__box {
        width: 100%;
        height: auto;
        padding: 24px;
    }
    .policy-cta {
        flex-direction: column;
        align-items: center;
    }
    .policy-cta__btn {
        margin-bottom: 0;
    }

/* ===== ちばなジビエページレスポンシブ ===== */

    .top-section__title {
        font-size: 28px;
    }

    .top-gibier {
        padding: 40px 20px;
    }

    .top-gibier__cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .top-healthy {
        padding: 40px 20px;
    }

    .top-healthy__card {
        width: 100%;
    }

    .top-eco {
        padding: 40px 20px;
    }

    .flip-front-label {
        font-size: 20px;
    }

    .flip-back-title {
        font-size: 17px;
    }

    .flip-back-desc {
        font-size: 12px;
    }

    .healthy-flip-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .flip-card {
        width: 100%;
        max-width: 360px;
        height: 240px;
    }

/* =============================================
   【エイリアンページ】ヒーローエリア：左右 → 縦並び
   ============================================= */

    .alien-impact {
        margin: 60px auto 40px;
        min-height: auto;
    }

    .impact-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 32px;
    }

    .alien-text-content {
        width: 100%;
        flex: none;
        text-align: left;
    }

    .alien-h1 {
        font-size: 32px;
    }

    .alien-p {
        font-size: 16px;
        max-width: 100%;
    }

    .category-label {
        margin-bottom: 32px;
    }

    /* 地球エリア：幅を画面いっぱいにしてwrapperを中央に */
    .alien-visual-content {
        flex: none !important;
        width: 100% !important;      /* 画面幅いっぱいに広げてwrapperをmargin autoで中央寄せ */
        height: auto !important;
        display: block;              /* flexをやめてblockにする */
    }

    /* SP時の地球サイズ：wrapperをmargin autoで中央に */
    .animation-wrapper {
        width: 280px !important;
        height: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

/* =============================================
   【エイリアン】カレー1杯カード：3カラム → 縦並び
   ============================================= */

    .contribution-stats {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    .stats-h3 {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stats-card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .stats-image-area {
        width: 120px;
        flex-shrink: 0;
        flex: none;
        border-bottom: none;
        border-right: 3px solid var(--main-color);
        padding: 20px 16px;
        min-height: 120px;
    }

    .stats-image-area img {
        max-width: 80px;
    }

    .stats-text-area {
        flex: 1;
        padding: 20px 16px;
        justify-content: flex-start;
        text-align: left;
    }

    .stats-text {
        font-size: 16px;
        text-align: left;
    }


/* =============================================
   【エイリアン】今起きていること（緑背景）
   文字を中央寄せ・3カラム → 縦並び
   ============================================= */
    .alien-crisis {
        margin-bottom: 60px;
        padding-top: 40px;
    }

    .container-alien {
        padding: 0 16px;
    }

    .crisis-h2 {
        font-size: 26px;
    }

    .crisis-intro-p {
        font-size: 14px;
        line-height: 1.8;
    }

    .crisis-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .crisis-card {
        width: 100%;
        max-width: 400px;
    }

    .crisis-info {
        text-align: center !important;
    padding: 20px 16px;
    }

    .crisis-title {
        text-align: center;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .crisis-desc {
        text-align: center;
        font-size: 13px;
    }

    /* オレンジ警告ボックス */
    .orange-alert-box {
        width: 100%;
        max-height: none;
        padding: 12px 20px;
        box-sizing: border-box;
        align-items: center;
    }

    .warning-text {
        font-size: 13px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 2px;
    }

    .white-line-extended {
        display: block !important;
        width: 90%;
        height: 3px;
        background-color: #ffffff;
        margin-top: 2px;
    }


/* =============================================
   【エイリアン】しくみ／取り組み
   左右 → 縦並び・中央寄せ
   ============================================= */

    .alien-process-section {
        margin-bottom: 60px;
    }

    .process-container {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .process-flex-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-flex-row::after {
        display: none;
    }

    .process-side {
        width: 100%;
        max-width: 480px;
        flex: none;
    }

    .side-left {
        padding-right: 0;
        padding-bottom: 40px;
        border-bottom: 2px solid var(--main-color);
        margin-bottom: 40px;
    }

    .side-right {
        padding-left: 0;
    }

    .side-left .process-item:not(:last-child) .item-visual::after {
        display: none;
    }

    .process-item {
        justify-content: flex-start;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .process-h4 {
        font-size: 20px;
        margin-bottom: 32px;
        text-align: center;
    }

    .item-visual {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .process-img {
        width: 80px;
        height: 80px;
    }

    .item-text-group {
        padding-top: 10px;
    }

    .p-title {
        font-size: 16px;
    }

    .p-desc {
        font-size: 14px;
    }

    .step-num {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-right: 8px;
    }

/* =============================================
   【エイリアン】最終メッセージエリア
   ============================================= */

    .alien-final-message {
        margin-bottom: 60px;
    }

    .final-overlap-container {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        box-sizing: border-box;
        gap: 32px;
    }

    .final-text-box {
        position: static;
        width: 100%;
        height: auto;
        margin-left: 0;
        text-align: center;
    }

    .final-h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .final-p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* イラストボックス：ハートのabsolute基準をここに */

    .final-image-box {
        position: relative;
        width: 100%;
        height: auto;
        margin-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .main-illust {
        width: 80%;
        max-width: 300px;
        display: block;
    }

    /* ハート：男の人の横（胴体あたり）に配置 */

    .floating-heart {
        position: absolute;
        top: 35%;             /* イラストの上から35%あたり＝胴体あたり */
        left: 5%;             /* 左端寄り */
        right: auto;
        bottom: auto;
        width: 50px;
    }

    .kyon-subpage-container {
        height: 0;       /* キョンが見える高さを確保 */
        overflow: visible;
        margin-bottom: 0;
    }

    .jumping-kyon{
        height:70px;
    }

    @keyframes kyon-bounce{
        0%   { transform: translateY(30px); }    /* 着地位置をスマホ用に調整 */
        100% { transform: translateY(-80px) rotate(-10deg); }
    }
    /* -------------------------
       TOP戻る
    ------------------------- */
    .top-back-btn{
        width:48px;
        right:16px;
        bottom:20px;
    }

}

