:root {
    --header-height: 80px;
    --header-h: 201px;

    --primary: #f4c84a;
    --accent: #5f8f3d;
    --text: #2d3436;
    --bg-light: #fffdf6;
    --shadow: rgba(0, 0, 0, 0.08);
    --transition: 0.85s cubic-bezier(0.23, 1, 0.32, 1);

    --soil-brown: #5d4037;
    --leaf-green: #2e7d32;
    --corn-yellow: #fdd835;
    --paper-white: #fdfaf5;
}

/* ============================================================
   Natsubi Farm Modern Header System
   ============================================================ */

/* --- 共通 --- */
header *,
header *::before,
header *::after,
.header_order_button *,
.header_order_button *::before,
.header_order_button *::after {
    box-sizing: border-box;
}

/* --- 1. ヘッダー全体（すりガラス・モダン） --- */
header {
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px 0 8px 0;
}

.header {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

}

/* --- 2. ロゴ --- */
.header_company {
    margin-bottom: 6px;
    text-decoration: none;
    color: inherit;
}

.header_coment {
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.header_tagline {
    font-size: 28px;
    font-weight: 800;
    color: #2b2b2b;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.header_logo {
    font-size: 35px;
    font-weight: 800;
    color: #2b2b2b;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* --- 3. ナビゲーション --- */
.header_nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding-bottom: 8px;
}

.header_nav_link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.header_nav_link p {
    margin: 0;
}

.header_nav_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4c84a;
    transition: width 0.3s ease;
}

.header_nav_link:hover::after {
    width: 100%;
}

.header_nav_icon {
    width: 18px;
    height: auto;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: rotate(-80deg);
}

.header_nav_link:hover .header_nav_icon {
    opacity: 1;
    transform: rotate(-20deg) scale(1.2);
}

/* --- 4. ハンバーガーメニュー（PCでは隠す） --- */
.menu_bar_open {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    order: 3;
    line-height: 1;
}

/* --- 5. 右上フローティング注文ボタン --- */
.header_order_button {
    position: fixed;
    top: 0px;
    right: clamp(20px, calc((100vw - 1100px) / 2 + 20px), 700px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #f4c84a 0%, #fbc531 100%);
    border: 5px solid #fff;
    border-radius: 50%;

    text-decoration: none;
    box-shadow:
        0 15px 35px rgba(244, 200, 74, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);

    transition:
        transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.35s ease,
        filter 0.35s ease;

    animation: orderButtonFloat 3.2s ease-in-out infinite;
}

/* 内側だけふわふわ */
.order_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orderButtonFloat 3.2s ease-in-out infinite;
}

@keyframes orderButtonFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* ツヤ */
.header_order_button::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0) 62%
    );
    z-index: 0;
    pointer-events: none;
}

/* 🛒 */
.order_cart {
    position: relative;
    right:-10px;
    z-index: 2;
    font-size: 4.9rem;
    line-height: 1;
    transform: translateY(-8px) translateX(-4px);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.35s ease;
}

/* 🌽 */
.order_corn {
    position: absolute;
    top: 24px;
    right: 36px;
    z-index: 1;
    font-size: 3.6rem;
    line-height: 1;
    transform: rotate(15deg);
    transition: transform 0.4s ease;
}

/* ラベル */
.order_label {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

    background: #fff;
    color: #2b2b2b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* hover */
.header_order_button:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 20px 60px rgba(255, 202, 55, 0.83);
    filter: saturate(1.04);
}

.header_order_button:hover .order_corn {
    transform: rotate(5deg) translateY(-12px) scale(1.1);
}

.header_order_button:hover .order_cart {
    transform: translateY(-10px) translateX(-4px) scale(1.03);
}

/* --- スマホ最適化（ヘッダー） --- */
@media (max-width: 768px) {

    /* ヘッダー全体 */
    header {
        padding: 10px 0;
    }

    .header {
        width: 98%;
        min-height: 60px;
        gap: 6px;
    }

    /* ロゴ */
    .header_tagline {
        font-size: 28px;
    }

    .header_logo {
        font-size: 35px;
    }

    /* ナビ */
    .header_nav {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        padding-bottom: 4px;
    }

    .header_nav_link {
        flex: 1;
        justify-content: center;
        font-size: 11px;
        padding: 0;
        gap:0px;
    }

    .header_nav_icon {
        width: 14px;
    }

    /* 注文ボタン（最重要） */
    .header_order_button {
        position: fixed;
        bottom: 20px;
        right: 16px;
        top: auto;

        width: 110px;
        height: 110px;
        border-width: 4px;

        box-shadow:
            0 10px 30px rgba(244, 200, 74, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.35);
    }

    .order_inner {
        animation: none; /* スマホは揺れ止める */
    }

    .order_cart {
        font-size: 2.8rem;
        transform: translateY(-4px) translateX(-10px);
    }

    .order_corn {
        font-size: 2.2rem;
        top: 16px;
        right: 36px;
    }

    .order_label {
        font-size: 0.8rem;
        padding: 3px 8px;
        bottom: 6px;
        transform: translateX(-50%);
    }

    /* hover無効化（スマホ対策） */
    .header_order_button:hover {
        transform: none;
        box-shadow:
            0 10px 30px rgb(0, 0, 0);
    }

    .header_nav_link:hover::after {
        width: 0;
    }

    .header_nav_link:hover .header_nav_icon {
        transform: rotate(-80deg);
        opacity: 0.6;
    }
}

/* --- 1. グローバル・リセット & 変数 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 16px;
    color: var(--text);
    scroll-behavior: smooth;
}

/* --- 葉をイメージした両サイドのモダンカーブ背景 --- */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1.6;

    /* 1. ベースの空間を「葉っぱの緑」にする */
    background-color: rgba(95, 143, 61, 0.15);

    /* 2. 中央に「真ん中がぽっこり膨らんだ黄色い実」を直接描く */
    /* ellipse 85% 100% で、横幅85%・縦幅100%の美しい楕円の弧を強制的に作る */
    background-image: radial-gradient(ellipse 85% 100% at 50% 50%,
            #fffce0 45%,
            /* 実の中心：柔らかくて甘そうな黄色 */
            rgba(255, 252, 224, 0.8) 60%,
            /* エッジに向かって少しだけ透けさせる */
            rgba(95, 143, 61, 0.25) 85%,
            /* 緑の境界線を少し濃くして「皮」の立体感を出す */
            transparent 100%
            /* 四隅のベース緑に溶け込ませる */
        );

    /* 3. スクロールしても背景のとうもろこし位置を固定する */
    background-attachment: fixed;
    overflow-x: hidden;
}

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


/* --- 下層ページ共通ヒーロー --- */
.farmer_soul_root {
    background-color: var(--paper-white);
    color: #333;
    font-family: "Zen Old Mincho", serif;
    overflow-x: hidden;
}

/* --- HERO SECTION: 厳か・神秘・細字の美学 --- */
.nature_hero {
    height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero_img_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(2.2);
    transform-origin: center center;
    filter: brightness(0.9);
}

.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 四隅から霧が侵食するようなグラデーション */
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.1) 50%, var(--paper-white) 100%);
    z-index: 2;
}

.hero_content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.stately_copy {
    text-align: left;
    color: var(--soil-brown);
}

.stately_copy .sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    /* 極細 */
    letter-spacing: 1.0em;
    /* 静寂を呼ぶ広い文字間 */
    margin-bottom: 30px;
    opacity: 0.7;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff
}

.stately_copy .hero_main {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.6;
    font-weight: 800;
    /* ★ここを細くしたわ。神秘性のキモよ。 */
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
}

.location_tag {
    margin-top: 10vh;
    text-align: right;
    font-size: 0.95rem;
    font-weight: 800;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    line-height: 2.2;
    letter-spacing: 0.15em;
    /* opacity: 0.6; */
}

/* --- スクロールアニメーション --- */
.scroll_guide {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.scroll_text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--soil-brown);
    opacity: 0.5;
    margin-bottom: 10px;
}

.scroll_line_anim {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--soil-brown), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    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;
    }
}


/* --- 下層ページ共通ミニヒーロー --- */
.nature_hero_mini {
    height: 35vh;
    min-height: 100px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ヒーローの文字影（白ブラー）を強化 */
.nature_hero_mini .stately_copy .sub {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: var(--soil-brown);
    margin-bottom: 10px;
    text-shadow: 0 0 10px #fff;
}

.nature_hero_mini .stately_copy .hero_main {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--soil-brown);
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
}

/* --- 下層ページ共通ミニヒーロー補正 --- */
/* ヒーローエリア：スマホで文字を読みやすく */
.nature_hero_mini {
    height: 40vh; /* 少し高さを出して情緒的に */
    min-height: 200px;
}

.nature_hero_mini .stately_copy .sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 5px;
}

.nature_hero_mini .stately_copy .hero_main {
    font-size: 1.8rem;
    line-height: 1.2;
}

@media (min-width: 901px) {
    .nature_hero_mini { height: 35vh; }
}

/* --- 共通ストーリーUI --- */
.web_story_box {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.web_story_box.web_story_reverse {
    flex-direction: row-reverse;
}

.web_story_text {
    flex: 1;
    text-align: left;
}

.web_story_text .web_story_label {
    color: var(--leaf-green);
    font-weight: 900;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.web_story_text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--soil-brown);
    margin-bottom: 25px;
    line-height: 1.4;
}

.web_story_text p {
    line-height: 2.2;
    font-size: 1.1rem;
    color: #444;
}

.web_story_text strong {
    color: var(--soil-brown);
    display: inline-block;
    margin-top: 10px;
    border-bottom: 2px solid var(--corn-yellow);
}

.web_story_image {
    flex: 1.2;
}

.web_story_image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--corn-yellow);
}

.web_cta_area {
    margin-top: 20px;
}

.web_order_btn {
    display: inline-block;
    padding: 20px 55px;
    background: var(--leaf-green);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

@media (max-width: 768px) {
    .web_story_box,
    .web_story_box.web_story_reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 20px;
    }

    .web_story_text {
        text-align: left;
        padding: 0 10px;
    }

    .web_story_text .web_story_label {
        font-size: 0.75rem;
        margin-bottom: 8px;
        border-left: 3px solid var(--leaf-green);
        padding-left: 10px;
    }

    .web_story_text h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        letter-spacing: 0.02em;
    }

    .web_story_text p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        text-align: justify;
    }

    .web_story_image {
        width: calc(100% + 40px);
        margin: 0 -20px;
    }

    .web_story_image img {
        border-radius: 0;
        aspect-ratio: 16 / 10;
        box-shadow: 0 10px 0 var(--corn-yellow);
    }
}

@media (min-width: 901px) {
    .web_story_box {
        flex-direction: row;
        gap: 80px;
    }

    .web_story_box.web_story_reverse {
        flex-direction: row-reverse;
    }

    .web_story_image {
        margin: 0;
        width: auto;
    }

    .web_story_image img {
        border-radius: 20px;
        box-shadow: 20px 20px 0 var(--corn-yellow);
    }
}


/* --- 共通ページ見出し --- */
.page_title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--soil-brown);
    line-height: 1.4;
    margin-bottom: 8px;
}

.page_annaunce {
    font-size: 0.95rem;
    color: #5f5f5f;
    font-weight: 700;
    line-height: 1.7;
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 900px) {
    .page_title {
        font-size: 1.6rem;
    }
}

@media (max-width: 560px) {
    .page_title {
        font-size: 1.5rem;
    }

    .page_annaunce {
        font-size: 0.9rem;
    }
}


/* --- 共通フォーム・ボタン --- */
/* --- お問い合わせ：フルポテンシャル・スタイル --- */
.contact_main_area {
    background-color: var(--paper-white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_intro_text {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 2;
    color: var(--soil-brown);
    font-weight: 500;
}

/* フォーム全体を包むカード */
.contact_soul_form {
    width: 100%;
    max-width: 800px;
    background: #fff;
    padding: 80px;
    border: 2px solid var(--soil-brown);
    border-radius: 30px;
    /* ★これがあんたの惚れた「黄色い影」の極致よ */
    box-shadow: 25px 25px 0 var(--corn-yellow);
}

.form_group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form_row_half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

/* ラベルの美学 */
.form_group label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--soil-brown);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hissu_tag {
    background-color: var(--leaf-green);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 15px;
    letter-spacing: 0.05em;
}

/* 入力エリアの質感 */
.contact_input, .contact_textarea {
    border: 2px solid rgba(93, 64, 55, 0.1);
    background-color: var(--paper-white);
    padding: 18px 20px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact_input:focus, .contact_textarea:focus {
    outline: none;
    border-color: var(--leaf-green);
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.05);
}

.contact_textarea {
    height: 250px;
    resize: vertical;
}

/* プレースホルダーの色 */
::placeholder {
    color: #bbb;
}

/* ボタン：サイトで一番「強い」デザインにするわ */
.form_submit_area {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.contact_soul_btn {
    appearance: none;
    background-color: var(--soil-brown);
    color: #fff;
    border: none;
    padding: 25px 80px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    /* ボタン自体にも重厚な黄色い影 */
    box-shadow: 10px 10px 0 var(--corn-yellow);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact_soul_btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0 var(--corn-yellow);
    background-color: var(--leaf-green);
}

.contact_soul_btn:active {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--corn-yellow);
}

@media (max-width: 800px) {
    .contact_main_area {
        padding: 24px 16px 72px;
        align-items: stretch;
    }

    .contact_intro_text {
        max-width: 100%;
        margin-bottom: 18px;
        text-align: left;
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .contact_intro_text br {
        display: none;
    }

    .contact_soul_form {
        max-width: 100%;
        box-sizing: border-box;
        padding: 28px 18px 32px;
        border-width: 1.5px;
        border-radius: 14px;
        box-shadow: 6px 6px 0 var(--corn-yellow);
    }

    .form_group {
        margin-bottom: 18px;
    }

    .form_row_half {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form_group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .hissu_tag {
        font-size: 0.62rem;
        padding: 2px 8px;
        margin-left: 10px;
        border-radius: 3px;
    }

    .contact_input,
    .contact_textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 14px;
        font-size: 1rem;
        border-radius: 9px;
    }

    .contact_textarea {
        height: 180px;
        line-height: 1.7;
    }

    .form_submit_area {
        margin-top: 30px;
    }

    .contact_soul_btn {
        width: 100%;
        padding: 17px 18px;
        font-size: 1.05rem;
        border-radius: 999px;
        box-shadow: 5px 5px 0 var(--corn-yellow);
    }

    .contact_soul_btn:hover {
        transform: none;
        box-shadow: 5px 5px 0 var(--corn-yellow);
        background-color: var(--soil-brown);
    }

    .contact_soul_btn:active {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 var(--corn-yellow);
    }
}

/* --- ストア共通ベルト --- */
.store_belt {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background-color: #5D4037;
    border-bottom: 4px solid #8BC34A;
    color: #FFF;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
}

.store_belt_menu {
    margin-left: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFF !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.store_belt_menu:hover {
    color: #FFC107 !important;
}

.store_belt_menu[href="/store"] {
    background-color: #2e7d32;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.store_belt_menu[href="/cart"] {
    background-color: #E64A19;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .store_belt {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 6px 10px;
        padding: 10px 14px;
        border-radius: 0;
    }

    .store_belt_menu {
        margin-left: 0;
        font-size: 0.82rem;
    }

    .store_belt_menu[href="/cart"] {
        padding: 4px 12px;
        font-size: 0.82rem;
    }
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

footer * {
    margin: 0;
    padding: 0;
    font-size: 0.87rem
}

.footer_company {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer_company li {
    margin: 1% 1% 0% 1%;
    list-style-type: none;
}

.footer_nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

.footer_nav li {
    margin: 1% 1% 0% 1%;
}

.footer_sns {
    margin: 20px 1% 0% 1%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

.footer_sns li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer_sns li:first-child {
    margin-right: 20px;
}

.footer_sns * {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 20px;
    text-align: center;
}

.copyright {
    display: flex;
    justify-content: center;
    margin-top: 1%;
    scroll-snap-align: end;
}

@media (max-width: 768px) {
    footer {
        padding: 28px 16px 32px;
        box-sizing: border-box;
        background-color: var(--paper-white);
    }

    footer * {
        font-size: 0.82rem;
    }

    .footer_company,
    .footer_nav {
        flex-wrap: wrap;
        gap: 10px 16px;
        justify-content: center;
    }

    .footer_company li,
    .footer_nav li {
        margin: 0;
    }

    .footer_company {
        margin-bottom: 14px;
    }

    .footer_nav {
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .footer_sns {
        margin: 0 0 18px;
    }

    .footer_sns li:first-child {
        margin-right: 0;
    }

    .footer_sns a {
        gap: 6px;
        height: auto;
        text-decoration: none;
    }

    .footer_sns img {
        width: 18px;
        height: 18px;
    }

    .copyright {
        margin-top: 0;
        font-size: 0.72rem;
        opacity: 0.55;
        text-align: center;
    }
}

/* ============================================================
   Source: web_home.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Home Page UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* --- 2. レイアウト構造 --- */
.home_main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- 3. ヒーローエリア --- */
.top {
    width: 100%;
    height: calc(100vh - 20vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.eye_catch {
    position: relative;
    width: 98%;
    flex-grow: 1;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.15);
}

.hero_slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero_slider_track {
    display: flex;
    height: 100%;
    transition: transform var(--transition);
    will-change: transform;
}

.no-transition {
    transition: none !important;
}

.hero_slide {
    flex: 0 0 70%;
    height: 100%;
    padding: 0 10px;
    transition: all 0.5s ease;
    position: relative;
}

.hero_slide:not(.active-slide) {
    opacity: 0.6;
}

.slide_inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.slide_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_page_message {
    position: absolute;
    top: 25%;
    left: 20%;
    transform: translateY(-50%);
    z-index: 5;
    color: white;
}

.top_page_message1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero_arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-50%) scale(1.1);
}

.hero_arrow_prev {
    left: 30px;
}

.hero_arrow_next {
    right: 30px;
}

.hero_slider_ui {
    position: absolute;
    bottom: 20px;
    right: 17%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.hero_dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero_dot.active {
    width: 35px;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 10px;
}

/* --- TOPIX（お知らせ）エリアのモダン化 --- */
.index_top_oshirase {
    background: rgba(255, 255, 255, 0.65);
    /* 背景に溶け込むすりガラス */
    backdrop-filter: blur(12px);
    padding: 12px 35px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ホバー時にフワッと浮き上がらせる */
.index_top_oshirase:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.oshirase_inner {
    display: flex;
    align-items: center;
}

.oshirase_inner a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.oshirase_inner a:hover .index_top_oshirase_title {
    color: var(--accent);
    /* ホバーでタイトルだけがスッと緑になる */
}

/* TOPIXバッジ */
.index_top_oshirase_topix {
    background: linear-gradient(135deg, var(--primary), #e6b83c);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(244, 200, 74, 0.4);
    /* とうもろこしの黄色の発光 */
}

/* 日付 */
.index_top_oshirase_date {
    color: var(--accent);
    margin-right: 8px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    /* 数字を欧文フォントでシュッと見せる */
}

/* テキスト部分（お知らせなし用） */
.oshirase_inner p {
    margin: 0;
    font-weight: 600;
    color: #666;
}

/* --- 4. コンテンツセクション --- */
.introduction {
    width: 90%;
    max-width: 1200px;
    margin-bottom: 40px;
}

/* タイトルの左線（完全復元） */
.infomation_title h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-weight: 800;
}

.infomation_title h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 8px;
    background: var(--primary);
    border-radius: 4px;
}

/* --- 甘さのヒミツ（オリジナルUIの復元） --- */
.introduction_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.intro_full_card {
    display: block;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

/* ホバーアニメーション復元 */
.intro_full_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.full_card_inner {
    width: 100%;
    height: 360px;
    position: relative;
    background: #1a1a1a;
}

.full_card_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.8s ease;
}

.card_overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.card_overlay h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.card_overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.card_overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 20px;
}

.read_more_btn {
    background: var(--primary);
    color: var(--text);
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.intro_full_card:hover .read_more_btn {
    background: white;
}

/* --- とうもろこしの料理（モダンカードUIを適用） --- */
.recipes_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.recipe_card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ホバーアニメーション */
.recipe_card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe_card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.recipe_text {
    padding: 20px;
}

.recipe_text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--text);
}

.recipe_text p {
    font-size: 0.85rem;
    color: #666;
}

/* --- 売り場（モダン分割レイアウトを適用） --- */
.place_layout {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.place_main_card {
    flex: 1.5;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ホバーアニメーション */
.place_main_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.place_main_card img {
    width: 45%;
    object-fit: cover;
}

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

.place_main_text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.place_main_text p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn_green {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: bold;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn_green:hover {
    background: var(--primary);
    color: var(--text);
}

.place_side_cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side_card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

/* 横にスライドするホバーアニメーション＋左線追加 */
.side_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.side_card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--accent);
}

.side_card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.text_link {
    color: var(--text);
    font-weight: bold;
    font-size: 0.85rem;
}

/* --- 5. お知らせ一覧 --- */
.news {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 30px;
    margin-top: 30px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.news_top {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.news_top::before,
.news_top::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.news_list_container {
    list-style: none;
}

.news_list_container li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.news_list_container li a {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

/* ホバーアニメーション復元 */
.news_list_container li a:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
}

.news_date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.news_cat {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.news_content {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* --- 6. リンクナビゲーション --- */
.about_grid_container {
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 5px auto 60px;
}

.intro_about {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.intro_about::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--corn-yellow);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

/* ホバーアニメーション復元 */
.intro_about:hover {
    /* transform: translateY(-10px); */
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.intro_title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    border-left: 5px solid var(--accent);
    padding-left: 15px;
}

.intro_title div {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.intro_title p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.intro_link {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.intro_link div {
    border-bottom: none;
    padding: 0;
}

.intro_link a {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* ホバーアニメーション復元 */
.intro_link a:hover {
    background: var(--accent);
    color: white;
    padding-left: 30px;
}

.intro_link a span {
    margin-right: 8px;
}


/* --- Home responsive rules --- */
@media screen and (max-width: 1024px) {
        /* --- ヒーローエリア：URLバー対策 --- */
        .top {
            width: 100%;
            height: 500px;
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .eye_catch {
            width: 100%;
            height: 500px;
            /* ここも変数を参照 */
            margin: 0;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
        }

        .hero_slide {
            flex: 0 0 100%;
            /* スマホは1枚で見せる */
            padding: 0;
        }

        .slide_inner {
            border-radius: 0;
            /* 親のeye_catchで丸めるのでここは不要 */
        }

        .top_page_message {
            left: var(--sp-padding);
            top: 20%;
            width: 85%;
        }

        .top_page_message1 {
            font-size: 2.2rem;
            letter-spacing: -0.02em;
        }

        /* --- お知らせバッジ --- */
        .index_top_oshirase {
            position: relative;
            z-index: 10;
            width: 90%;
            margin: -10px auto 40px;
            padding: 15px 20px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        /* --- コンテンツ共通 --- */
        .introduction,
        .news,
        .about_grid_container {
            width: 100%;
            padding: 0 var(--sp-padding);
            box-sizing: border-box;
        }

        .infomation_title h1 {
            font-size: 1.75rem;
            margin-bottom: 25px;
        }

        /* --- 甘さのヒミツ (Grid) --- */
        .introduction_grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .full_card_inner {
            height: 300px;
        }

        .card_overlay h3 {
            font-size: 1.5rem;
        }

        /* --- とうもろこしの料理 (Recipe) --- */
        .recipes_grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .recipe_card {
            display: grid;
            grid-template-columns: 120px 1fr;
            /* 画像サイズを固定して情報を整理 */
            height: 120px;
        }

        .recipe_card img {
            width: 120px;
            height: 120px;
        }

        .recipe_text {
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .recipe_text h3 {
            font-size: 1rem;
            margin-bottom: 4px;
        }

        /* --- 売り場 (Place) --- */
        .place_layout {
            flex-direction: column;
            gap: 16px;
        }

        .place_main_card {
            flex-direction: column;
        }

        .place_main_card img {
            width: 100%;
            height: 240px;
        }

        .place_main_text {
            padding: 25px var(--sp-padding);
        }

        .place_side_cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .side_card {
            padding: 20px;
            border-radius: 16px;
            background: #fff;
        }

        /* --- お知らせ一覧 (News Section) --- */
        .news {
            background: white;
            margin: 40px auto;
            padding: 35px 20px;
            border-radius: 30px;
        }

        .news_list_container li a {
            display: block;
            /* スマホは縦積み一択 */
            padding: 20px 10px;
        }

        .news_date {
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 8px;
        }

        .news_cat {
            margin-left: 8px;
        }

        .news_content {
            font-size: 1rem;
            line-height: 1.6;
            white-space: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* --- リンクナビゲーション (About) --- */
        .about_grid_container {
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 80px;
        }

        .intro_about {
            padding: 30px 20px;
            border-radius: 24px;
        }

        .intro_link a {
            padding: 16px;
            margin-bottom: 8px;
            background: #f9f9f9;
            font-size: 1rem;
        }

}

/* 超小型スマホ向けの最終調整 */
@media screen and (max-width: 380px) {
    .top_page_message1 {
        font-size: 1.8rem;
    }

    .recipe_card {
        grid-template-columns: 100px 1fr;
    }

    .recipe_card img {
        width: 100px;
    }
}

/* ============================================================
   Source: web_farm_items.css
   ============================================================ */

/* ============================================================
   Natsubi Farm and Items Page UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* --- 下部セクション：温かみのある元デザイン --- */
.farm_story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    padding: 80px 20px;
}

.farm_items_story_panel {
    max-width: 1100px;
    gap: 40px;
}

.farm_items_story_text {
    width: 50%;
}

.farm_items_story_label {
    margin-bottom: 10px;
}

.farm_items_story_text h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 20px;
}

.farm_items_story_text p {
    line-height: 2.1;
    text-align: justify;
}

.farm_items_story_image {
    flex: 1.1;
}

.farm_items_story_image img {
    box-shadow: 15px 15px 0 var(--corn-yellow);
}

.producer_profile {
    background-color: #fff;
    padding: 80px 40px;
    border-radius: 50px;
    width: 100%;
    max-width: 1000px;
}

.profile_card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    outline: 2px solid var(--corn-yellow);
}

.farm_info_footer {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.farm_info_footer img {
    width: 100%;
    height: auto;
}


@media (max-width: 768px) {
        /* --- ストーリー全体：間延び解消 --- */
        .farm_story {
            padding: 36px 20px 56px;
            gap: 36px; /* 詰める */
        }

        .farm_items_story_panel,
        .farm_items_story_panel_reverse {
            gap: 16px; /* 画像とテキストの間も詰める */
        }

        .farm_items_story_text {
            width: 100%;
            /* ラベル・見出し・本文の塊感を出す */
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .farm_items_story_label {
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            margin-bottom: 0;
            border-left: 0;
            padding-left: 0;
        }

        .farm_items_story_text h2 {
            font-size: 1.25rem;
            line-height: 1.55;
            margin-bottom: 0;
            color: var(--soil-brown);
        }

        .farm_items_story_text p {
            font-size: 0.93rem;
            /* 行間は読みやすさの要。2.1→1.85に締める */
            line-height: 1.85;
            text-align: justify;
            color: #444;
        }

        /* 画像：影を控えめにしてすっきり */
        .farm_items_story_image img {
            border-radius: 10px;
            box-shadow: 5px 5px 0 var(--corn-yellow);
        }

        /* --- セクション区切りを視覚化 --- */
        .farm_items_story_panel + .farm_items_story_panel {
            padding-top: 36px;
            border-top: 1px solid rgba(93, 64, 55, 0.1);
        }

        /* --- プロフィール：コンパクトに締める --- */
        .producer_profile {
            padding: 32px 18px;
            border-radius: 16px;
            /* 背景に少し土っぽいニュアンスを */
            background-color: #fff9f2;
        }

        .profile_card {
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        /* アバターを小さく・横並びで名前と並べる */
        .profile_card > .avatar {
            width: 80px;
            height: 80px;
            /* 左上に小さく置く */
            float: left;
            margin: 0 16px 8px 0;
            outline-offset: 3px;
        }

        .message h3 {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 10px;
            color: var(--soil-brown);
        }

        .message p {
            font-size: 0.92rem;
            line-height: 1.85;
            text-align: justify;
            color: #444;
            /* floatのクリア */
            clear: both;
        }

        .farm_profile_cta_area {
            margin-top: 20px;
            clear: both;
        }

        .farm_profile_order_btn {
            display: block;
            text-align: center;
            padding: 15px 20px;
            font-size: 0.95rem;
            border-radius: 10px;
            /* 影を足してボタン感を強調 */
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
        }

        /* --- フッター --- */
        .farm_info_footer {
            margin: 12px auto 36px;
            padding: 0 4px;
        }
}

/* メインコンテンツ：100px間隔でリズムを作る */
.corn_special_detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 120px 10px;
}

/* 最後のアピールセクション */
.final_cta_section {
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.final_cta_section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--soil-brown);
    margin-bottom: 20px;
}

.items_final_cta_area {
    margin-top: 50px;
}

/* シンプルな著作権表示 */
.simple_footer {
    padding: 60px 0;
    text-align: center;
    opacity: 0.5;
    font-size: 0.8rem;
}
/* --- 作物詳細ページ：スマホ最適化スタイル --- */

/* 全体コンテナの余白調整 */
.corn_special_detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* スマホ向けに間隔を凝縮 */
    padding: 40px 20px; /* 横余白を確保 */
    background: linear-gradient(to bottom, #fff, #fdfcf0); /* わずかな変化で高級感を出す */
}


/* 最後のアピールセクション：スマホで埋もれないように */
.final_cta_section {
    padding: 40px 20px;
    border-radius: 20px;
    background-color: #fff;
    border: 2px solid var(--corn-yellow); /* 枠線で注目させる */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.final_cta_section h2 {
    font-size: 1.3rem;
}

.items_final_order_btn {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: var(--corn-yellow);
    color: var(--soil-brown);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* フッター */
.simple_footer {
    padding: 40px 0;
}


/* PC版（901px以上）の時は元のスタイルに戻るように設定 */
@media (min-width: 901px) {
        .corn_special_detail { gap: 100px; padding: 120px 10px; }
}

/* ============================================================
   Source: web_news.css
   ============================================================ */

/* ============================================================
   Natsubi Farm News UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* --- お知らせ：農園掲示板スタイル --- */
.news_board_area {
    background-color: var(--paper-white);
    padding-top: 20px;
}

.news_board_inner {
    max-width: 900px;
    margin: 0 auto;
}

.year_block {
    margin-bottom: 40px;
}

.year_stamp {
    font-size: 3rem;
    color: var(--soil-brown);
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.year_stamp::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--corn-yellow);
    z-index: -1;
}

.news_card_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news_card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 10px 10px 0 var(--corn-yellow);
    border: 2px solid var(--soil-brown);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.news_card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 13px 13px 0 var(--corn-yellow);
}

.news_card_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--soil-brown);
    padding: 25px 30px;
}

.date_box {
    min-width: 100px;
    border-right: 2px solid var(--paper-white);
}

.month_day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--leaf-green);
}

.title_box {
    flex: 1;
    padding: 0 30px;
}

.news_title_text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.arrow_box {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    opacity: 0.6;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

/* --- 記事詳細 --- */
.article_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--paper-white);
    padding: 30px;
    min-height: 80vh;
    font-family: "Zen Old Mincho", serif;
}

#artcile_date {
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--leaf-green);
    letter-spacing: 0.1em;
}

.article_title {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    margin-bottom: 50px;
    padding: 40px;
    box-sizing: border-box;
    border: 2px solid var(--soil-brown);
    border-radius: 15px;
    box-shadow: 15px 15px 0 var(--corn-yellow);
    position: relative;
}

.article_title h1 {
    text-align: left;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--soil-brown);
    line-height: 1.4;
    margin: 0;
}

.annouce_article {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 90px;
    padding: 38px 42px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(125, 92, 62, 0.18);
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        8px 8px 0 rgba(255, 211, 50, 0.144);
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 2.35;
    letter-spacing: 0.03em;
    color: #3f3a34;
    text-align: justify;
    word-break: break-word;
}

.annouce_article br {
    content: "";
    display: block;
    margin-bottom: 0.8em;
}

.annouce_article h2,
.annouce_article h3,
.annouce_article h4 {
    margin: 2.2em 0 0.8em;
    line-height: 1.5;
    color: var(--soil-brown);
    font-weight: 700;
}

.annouce_article a {
    color: var(--leaf-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(60, 120, 60, 0.35);
    transition: 0.2s ease;
}

.annouce_article a:hover {
    opacity: 0.75;
    border-bottom-color: var(--leaf-green);
}

@media (max-width: 768px) {
    /* --- お知らせ一覧：スマホ --- */
    .news_board_area {
        padding: 24px 16px 80px;
    }

    .news_board_inner {
        max-width: 100%;
    }

    .year_block {
        margin-bottom: 36px;
    }

    .year_stamp {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .year_stamp::after {
        bottom: -2px;
        height: 6px;
    }

    .news_card_list {
        gap: 10px;
    }

    .news_card {
        border-radius: 8px;
        border-width: 1.5px;
        box-shadow: 4px 4px 0 var(--corn-yellow);
        min-height: 60px;
    }

    .news_card:hover {
        transform: none;
        box-shadow: 4px 4px 0 var(--corn-yellow);
    }

    .news_card:active {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 var(--corn-yellow);
    }

    .news_card_link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 60px;
        padding: 8px 14px;
        box-sizing: border-box;
    }

    .date_box {
        min-width: 64px;
        flex-shrink: 0;
        padding-right: 12px;
        border-right: 1px solid #e8e0d4;
    }

    .month_day {
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1;
        white-space: nowrap;
    }

    .title_box {
        flex: 1;
        min-width: 0;
        padding: 0;
    }

    .news_title_text {
        font-size: 0.9rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .arrow_box {
        display: none;
    }

    /* --- 記事詳細：スマホ --- */
    .article_page {
        padding: 24px 16px 72px;
        align-items: stretch;
    }

    #artcile_date,
    .article_title,
    .annouce_article {
        max-width: 100%;
    }

    #artcile_date {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .article_title {
        margin-bottom: 32px;
        padding: 26px 20px;
        border-radius: 12px;
        box-shadow: 7px 7px 0 var(--corn-yellow);
    }

    .article_title h1 {
        font-size: clamp(1.25rem, 5vw, 1.55rem);
        line-height: 1.55;
    }

    .annouce_article {
        margin-bottom: 60px;
        padding: 24px 18px;
        font-size: 1rem;
        line-height: 2.1;
        letter-spacing: 0.02em;
        border-radius: 12px;
        text-align: left;
        box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.04),
            5px 5px 0 rgba(255, 210, 70, 0.30);
    }

    .annouce_article br {
        margin-bottom: 0.65em;
    }

    .annouce_article h2,
    .annouce_article h3,
    .annouce_article h4 {
        margin: 2em 0 0.7em;
        line-height: 1.45;
    }
}

/* ============================================================
   Source: web_contact.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Contact and Complete UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* ボタンエリアのレイアウト調整 */
.confirm_action_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

/* 修正するボタン：渋いグレー系で影を継承 */
.contact_back_btn {
    appearance: none;
    background-color: #8d8d8d; /* 土木感のある渋いグレー */
    color: #fff;
    border: none;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    box-shadow: 8px 8px 0 var(--corn-yellow); /* 影は共通。ここが統一感の肝 */
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact_back_btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 var(--corn-yellow);
    background-color: #757575;
}

.contact_back_btn:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--corn-yellow);
}

@media (max-width: 800px) {
    .confirm_action_flex {
        gap: 16px;
        margin-top: 28px;
    }

    .contact_back_btn {
        width: 100%;
        padding: 16px 18px;
        font-size: 1.05rem;
        border-radius: 999px;
        box-shadow: 5px 5px 0 var(--corn-yellow);
    }

    .contact_back_btn:hover {
        transform: none;
        box-shadow: 5px 5px 0 var(--corn-yellow);
    }

    .contact_back_btn:active {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 var(--corn-yellow);
    }

    .readonly_field {
        background-color: #f7f1e8;
        color: var(--soil-brown);
        opacity: 1;
    }

    #contact_confirm_naiyou {
        min-height: 180px;
    }
}

/* 完了ページ */
.contact_complete_box {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 24px 140px;
    text-align: center;
}

.contact_complete_icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 36px;
    border-radius: 50%;
    background: #f3f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #6d7c4a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact_complete_title {
    font-size: 38px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #2f3526;
    margin-bottom: 28px;
    font-weight: 500;
}

.contact_complete_message {
    font-size: 16px;
    line-height: 2.2;
    color: #5b5f52;
    margin-bottom: 56px;
}

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

.contact_complete_btn {
    min-width: 280px;
}

.contact_error_message {
    margin: 0;
    text-align: center;
    color: #d32f2f;
    font-weight: 800;
    line-height: 1.7;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .contact_complete_box {
        padding: 70px 20px 100px;
    }

    .contact_complete_icon {
        width: 74px;
        height: 74px;
        font-size: 34px;
        margin-bottom: 28px;
    }

    .contact_complete_title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .contact_complete_message {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 44px;
    }

    .contact_complete_btn {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================================
   Source: web_policy.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Policy UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* プライバシーポリシー専用エリア */
.policy_main_area {
    background-color: var(--paper-white);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* 本文を包む重厚なカード */
.policy_card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 80px 60px;
    border: 2px solid var(--soil-brown);
    border-radius: 30px;
    box-shadow: 25px 25px 0 var(--corn-yellow); /* お約束の黄色い影 */
    color: var(--soil-brown);
    line-height: 1.8;
}

.policy_intro {
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* 条項のタイトル */
.policy_section {
    margin-bottom: 40px;
}

.policy_section h2 {
    font-size: 1.4rem;
    font-weight: 900;
    border-left: 6px solid var(--leaf-green); /* 農園らしいアクセント */
    padding-left: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* リストの美学：数字もデザインの一部 */
.policy_list_primary {
    padding-left: 1.5em;
    counter-reset: item;
    list-style: none;
}

.policy_list_primary > li {
    counter-increment: item;
    margin-bottom: 12px;
    position: relative;
}

.policy_list_primary > li::before {
    content: counter(item) ".";
    position: absolute;
    left: -1.5em;
    font-weight: 900;
    color: var(--leaf-green);
}

/* 入れ子のリスト */
.policy_list_primary ol {
    list-style-type: lower-roman; /* ⅰ, ⅱ... */
    padding-left: 2em;
    margin-top: 10px;
}

.policy_link {
    color: var(--leaf-green);
    font-weight: 800;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.policy_link:hover {
    opacity: 0.7;
}

/* モバイル対応 */
@media (max-width: 800px) {
    .policy_card {
        padding: 40px 25px;
        box-shadow: 15px 15px 0 var(--corn-yellow);
        border-radius: 20px;
    }
    .policy_section h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   Source: web_store.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Store, Login and Registration UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* ベースエリア */
.login_compact_area {
    background-color: var(--paper-white);
    padding: 15px 20px;
    margin-bottom: 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
}

/* カードデザイン：ナツビ農園の「厚紙」仕様 */
.login_card {
    background: #fff;
    padding: 60px 50px;
    border: 2px solid var(--soil-brown);
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--corn-yellow);
    flex: 1;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.regist_side_bg {
    background-color: #fcfaf5;
}

/* テキスト周り */
.card_header {
    text-align: center;
    margin-bottom: 30px;
}

.card_sub_title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--leaf-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card_main_title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--soil-brown);
}

.login_annaunce {
    font-size: 0.95rem;
    text-align: center;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* フォーム要素 */
.login_form_group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.login_form_inner label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--soil-brown);
    margin-bottom: 10px;
}

.login_password_options {
    margin-top: -10px;
    margin-bottom: 30px;
}

.login_password_visible_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--soil-brown);
}

/* ボタンとリンク */
.login_submit_area {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login_btn_full {
    width: 100%;
    padding: 20px 0 !important;
}

.login_password_forget {
    font-size: 0.85rem;
    color: var(--soil-brown);
    text-decoration: underline;
    font-weight: 700;
}

/* 特典リスト */
.regist_benefit_list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.regist_benefit_list li {
    font-size: 1rem;
    font-weight: 700;
    color: var(--soil-brown);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.regist_benefit_list li span {
    color: var(--leaf-green);
    font-size: 1.2rem;
    font-weight: 900;
}

.regist_btn_style {
    display: flex;
    justify-content: center;
    background-color: var(--leaf-green) !important;
    width: 100%;
    padding: 20px 0 !important;
    text-decoration: none !important;
}

.regist_btn_style:hover {
    background-color: var(--soil-brown) !important;
}

@media (max-width: 900px) {
    .login_compact_area {
        padding: 28px 14px 56px;
        align-items: stretch;
    }

    .login_container {
        gap: 22px;
    }

    .login_card {
        padding: 28px 18px;
        min-width: 100%;
        border-radius: 14px;
        box-shadow: 6px 6px 0 var(--corn-yellow);
    }

    /* 登録カードは少し軽くして主従つける */
    .regist_side_bg {
        box-shadow: 4px 4px 0 var(--corn-yellow);
        opacity: 0.96;
    }

    .card_header {
        margin-bottom: 18px;
    }

    .card_sub_title {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .card_main_title {
        font-size: 1.4rem;
    }

    .login_form_group {
        margin-bottom: 18px;
    }

    .login_form_inner label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .login_password_options {
        margin-top: -6px;
        margin-bottom: 20px;
    }

    .login_password_visible_label {
        font-size: 0.85rem;
    }

    .login_submit_area {
        gap: 14px;
    }

    .login_btn_full {
        padding: 16px 0 !important;
        font-size: 1rem;
    }

    .login_password_forget {
        font-size: 0.75rem;
    }

    .regist_benefit_list {
        margin-bottom: 28px;
    }

    .regist_benefit_list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .regist_benefit_list li span {
        font-size: 1rem;
    }

    .regist_btn_style {
        padding: 16px 0 !important;
        font-size: 1rem;
    }
}

/* =========================
   new regist
========================= */
.new_regist {
    background-color: var(--paper-white);
    padding: 30px 20px 50px;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.new_regist_form {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 55px 50px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--soil-brown);
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--corn-yellow);
    box-sizing: border-box;
}

.new_regist_heading {
    text-align: center;
    margin-bottom: 35px;
}

.new_regist_sub_title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--leaf-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.new_regist_form > label,
.new_regist_mail_magazine,
.new_regist_rule_title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--soil-brown);
    margin-top: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.new_regist_family_names,
.new_regist_family_rubys,
.new_regist_births,
.new_regist_mail_magazine_raddio_button {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.new_regist_births > span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
    font-weight: 700;
    color: var(--soil-brown);
}

.new_regist_mail_magazine_raddio_button {
    gap: 30px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.new_regist_mail_magazine_raddio_button label,
.new_regist_password_visible_label,
.new_regist_rule_confirm_checkbox_label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--soil-brown);
    cursor: pointer;
}

.new_regist_mail_magazine_raddio_button label {
    width: auto;
}

.new_regist_password_visible {
    margin-top: 12px;
    margin-bottom: 4px;
}

.new_regist_password_visible_checkbox,
.new_regist_rule_confirm_checkbox,
.new_regist_mail_magazine_raddio_button input[type="radio"] {
    width: 17px;
    height: 17px;
    accent-color: var(--leaf-green);
    cursor: pointer;
    flex-shrink: 0;
}

.new_regist_required {
    font-size: 0.78rem;
    color: #d84c4c;
    font-weight: 800;
    margin-left: 4px;
}

.new_regist_family_name,
.new_regist_first_name,
.new_regist_family_ruby,
.new_regist_first_ruby,
.new_regist_company,
.new_regist_email1,
.new_regist_email2,
.new_regist_password,
.new_regist_postcode,
.new_regist_pref,
.new_regist_city,
.new_regist_tel,
.new_regist_birth {
    border: 2px solid #d7cdbf;
    background-color: #fcfaf5;
    color: var(--soil-brown);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    width: 100%;
    height: 54px;
    border-radius: 16px;
    padding: 0 16px;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.new_regist_family_name,
.new_regist_first_name,
.new_regist_family_ruby,
.new_regist_first_ruby,
.new_regist_postcode,
.new_regist_pref {
    width: calc(50% - 8px);
    min-width: 220px;
}

.new_regist_company,
.new_regist_email1,
.new_regist_email2,
.new_regist_password,
.new_regist_city,
.new_regist_tel {
    width: 100%;
}

.new_regist_birth {
    width: 110px;
    min-width: 110px;
    text-align: center;
    padding: 0 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.new_regist_family_name::placeholder,
.new_regist_first_name::placeholder,
.new_regist_family_ruby::placeholder,
.new_regist_first_ruby::placeholder,
.new_regist_company::placeholder,
.new_regist_email1::placeholder,
.new_regist_email2::placeholder,
.new_regist_password::placeholder,
.new_regist_postcode::placeholder,
.new_regist_pref::placeholder,
.new_regist_city::placeholder,
.new_regist_tel::placeholder {
    color: #a59b8f;
}

.new_regist_family_name:focus,
.new_regist_first_name:focus,
.new_regist_family_ruby:focus,
.new_regist_first_ruby:focus,
.new_regist_company:focus,
.new_regist_email1:focus,
.new_regist_email2:focus,
.new_regist_password:focus,
.new_regist_postcode:focus,
.new_regist_pref:focus,
.new_regist_city:focus,
.new_regist_tel:focus,
.new_regist_birth:focus {
    outline: none;
    border-color: var(--leaf-green);
    background-color: #fffdf8;
    box-shadow: 0 0 0 4px rgba(125, 154, 81, 0.14);
}

.new_regist_rule_title {
    margin-top: 42px;
    margin-bottom: 12px;
}

.new_regist_rule_contents {
    border: 2px solid #d7cdbf;
    background: #fcfaf5;
    border-radius: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    height: 320px;
    width: 100%;
    box-sizing: border-box;
}

.new_regist_rule_contents::-webkit-scrollbar {
    width: 10px;
}

.new_regist_rule_contents::-webkit-scrollbar-thumb {
    background: #cfc2ab;
    border-radius: 999px;
}

.new_regist_rule_contents::-webkit-scrollbar-track {
    background: transparent;
}

.new_regist_rule_contents * {
    margin: 0;
    padding: 0;
    font-size: 0.96rem;
    line-height: 1.9;
    color: #4e4338;
    box-sizing: border-box;
}

.new_regist_rule_contents_title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--soil-brown);
    margin-bottom: 18px;
}

.new_regist_rule_contents_contents {
    margin-top: 14px;
}

.new_regist_rule_contents_contents:first-of-type {
    margin-top: 0;
}

.new_regist_rule_contents_contents_chapter {
    font-weight: 900;
    color: var(--soil-brown);
    margin-bottom: 4px;
}

.new_regist_rule_contents_contents_content {
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.new_regist_rule_confirm {
    margin-top: 22px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--soil-brown);
}

.new_regist_submit_row {
    margin-top: 34px;
}

.regist_confirm_submit,
.account_regist_submit,
.regist_confirm_edit_submit {
    width: 100%;
    min-height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--soil-brown);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 0 rgba(92, 70, 50, 0.18);
}

.regist_confirm_submit,
.account_regist_submit {
    background-color: var(--corn-yellow);
    color: var(--soil-brown);
}

.regist_confirm_submit:hover,
.account_regist_submit:hover {
    transform: translateY(-2px);
    background-color: var(--leaf-green);
    color: #fff;
}

.regist_confirm_submit:active,
.account_regist_submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(92, 70, 50, 0.18);
}

.regist_confirm_edit_submit {
    background: #fff;
    color: var(--soil-brown);
}

.regist_confirm_edit_submit:hover {
    transform: translateY(-2px);
    background: #f3efe5;
}

.regist_confirm_edit_submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(92, 70, 50, 0.18);
}

#regist_confirm_result{
    margin-top: 30px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff4f4;
    color: #c62828;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

#regist_result,
#login_error_msg {
    color: #d32f2f;
    text-align: center;
    font-weight: 800;
    margin-top: 16px;
    font-size: 0.95rem;
}

.input_error{
    border: 2px solid #d32f2f !important;
    background: #fff5f5;
}

.input_error:focus{
    outline: none;
    border: 2px solid #b71c1c !important;
    box-shadow: 0 0 0 4px rgba(211,47,47,0.15);
}

.input_error_label{
    color:#d32f2f;
    font-weight:700;
}

/* =========================
   regist confirm
========================= */
.regist_confirm {
    background-color: var(--paper-white);
    padding: 30px 20px 50px;
    margin-bottom: 20px;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.regist_confirm_form {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--soil-brown);
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--corn-yellow);
    box-sizing: border-box;
}

.regist_confirm_heading {
    text-align: center;
    margin-bottom: 35px;
}

.regist_confirm_sub_title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--leaf-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.regist_confirm_form > label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--soil-brown);
    margin-top: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.regist_confirm_family_names,
.regist_confirm_family_rubys,
.regist_confirm_births,
.regist_confirm_postcode_to_address {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.regist_confirm_births {
    align-items: center;
}

.regist_confirm_births > span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
    font-weight: 700;
    color: var(--soil-brown);
}

.regist_confirm_password_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.regist_confirm_password_visible_label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--soil-brown);
    cursor: pointer;
}

.regist_confirm_password_visible_checkbox {
    width: 17px;
    height: 17px;
    accent-color: var(--leaf-green);
    cursor: pointer;
    flex-shrink: 0;
}

.regist_confirm_family_name,
.regist_confirm_first_name,
.regist_confirm_family_ruby,
.regist_confirm_first_ruby,
.regist_confirm_company,
.regist_confirm_email,
.regist_confirm_password,
.regist_confirm_postcode,
.regist_confirm_pref,
.regist_confirm_city,
.regist_confirm_tel,
.regist_confirm_birth,
.regist_confirm_mail_magazine,
.regist_confirm_rule_confirm {
    border: 2px solid #d7cdbf;
    background-color: #f6f2e8;
    color: var(--soil-brown);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 0 16px;
    width: 100%;
    height: 54px;
    border-radius: 16px;
    box-sizing: border-box;
}

.regist_confirm_family_name,
.regist_confirm_first_name,
.regist_confirm_family_ruby,
.regist_confirm_first_ruby,
.regist_confirm_postcode {
    width: calc(50% - 8px);
    min-width: 220px;
}

.regist_confirm_company,
.regist_confirm_email,
.regist_confirm_password,
.regist_confirm_pref,
.regist_confirm_city,
.regist_confirm_tel,
.regist_confirm_mail_magazine,
.regist_confirm_rule_confirm {
    width: 100%;
}

.regist_confirm_birth {
    width: 110px;
    min-width: 110px;
    text-align: center;
    padding: 0 12px;
}

.regist_confirm_action_row {
    display: flex;
    gap: 18px;
    margin-top: 38px;
}

.regist_confirm_action_row > * {
    flex: 1;
}

@media (max-width: 900px) {
    .new_regist,
    .regist_confirm {
        padding: 20px 14px 40px;
    }

    .new_regist_form,
    .regist_confirm_form {
        padding: 38px 22px;
        border-radius: 24px;
        box-shadow: 14px 14px 0 var(--corn-yellow);
    }

    .new_regist_family_name,
    .new_regist_first_name,
    .new_regist_family_ruby,
    .new_regist_first_ruby,
    .new_regist_postcode,
    .new_regist_pref,
    .regist_confirm_family_name,
    .regist_confirm_first_name,
    .regist_confirm_family_ruby,
    .regist_confirm_first_ruby,
    .regist_confirm_postcode {
        width: 100%;
        min-width: auto;
    }

    .new_regist_births,
    .regist_confirm_births {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .new_regist_births > span,
    .regist_confirm_births > span {
        width: 100%;
    }

    .new_regist_birth,
    .regist_confirm_birth {
        width: 100%;
        max-width: 160px;
        text-align: left;
        padding: 0 16px;
    }

    .new_regist_mail_magazine_raddio_button {
        flex-direction: column;
        gap: 14px;
    }

    .new_regist_rule_contents {
        height: 280px;
        padding: 20px 16px;
    }

    .regist_confirm_action_row {
        flex-direction: column;
    }

    .regist_confirm_submit,
    .account_regist_submit,
    .regist_confirm_edit_submit {
        min-height: 58px;
    }
}

/* ===== store_top ===== */

.store_main {
    background-color: var(--paper-white);
    min-height: 75vh;
    padding: 15px 20px 50px;
    box-sizing: border-box;
}

.store_page_intro {
    max-width: 1100px;
    margin: 0 auto 15px;
    text-align: center;
}

.store_page_sub_title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--leaf-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.store_main_items {
    width: 100%;
}

.store_items_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    justify-content: center;
    gap: 26px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.store_item {
    position: relative;
    cursor: pointer;
}

.item_detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--soil-brown);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 12px 12px 0 var(--corn-yellow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store_item:hover .item_detail {
    transform: translateY(-4px);
    box-shadow: 16px 16px 0 var(--corn-yellow);
    border-color: var(--leaf-green);
}

.store_item_image_wrap {
    position: relative;
    padding: 18px 18px 0;
}

.item_img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-top: 0;
    border-radius: 18px;
    background: #f3efe5;
}

.store_items_details {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 20px 10px;
    border-bottom: none;
}

.store_items_details > * {
    font-size: 1rem;
}

.store_item_name {
    padding-right: 0;
    font-size: 1.08rem;
    font-weight: 900;
    color: var(--soil-brown);
    line-height: 1.5;
}

.store_item_price {
    display: inline-flex;
    align-self: flex-start;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    background: var(--leaf-green);
    border-radius: 999px;
    padding: 8px 14px;
    line-height: 1;
}

.store_item_discription {
    padding: 0 20px 13px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: #5b5045;
    flex-grow: 1;
}

.store_item_action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 20px;
    min-height: 50px;
    border: 2px solid var(--soil-brown);
    border-radius: 999px;
    background-color: #fcfaf5;
    color: var(--soil-brown);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.store_item:hover .store_item_action {
    background-color: var(--corn-yellow);
    color: var(--soil-brown);
    border-color: var(--soil-brown);
}


/* スマホ */
@media (max-width: 560px) {
    .store_items_list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .store_page_intro {
        margin-bottom: 28px;
    }

    .store_item_name {
        font-size: 1rem;
    }

    .store_item_discription {
        font-size: 0.88rem;
    }
}

/* ============================================================
   Source: web_item_detail.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Item Detail UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* ===== 商品詳細ページ ===== */

.item_detail_main {
    background: linear-gradient(180deg, #faf8f3 0%, #f4efe7 100%);
    padding: 10px 20px 72px;
    box-sizing: border-box;
}

/* ===== 上部構成 ===== */

.item_detail_main .item_detail_sub1 {
    display: grid;
    grid-template-columns: auto 430px;
    column-gap: 60px;
    justify-content: center;
    align-items: start;
    max-width: 1400px;
    margin: 20px auto 0;
}

/* ===== 画像エリア ===== */

.item_detail_main .item_detail_introduction {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.item_detail_main .item_detail_images_small {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item_detail_main .item_detail_image_small {
    display: block;
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #ddd4c8;
    background: #fff;
    box-shadow: 0 8px 18px rgba(58, 43, 29, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.item_detail_main .item_detail_image_small:hover {
    cursor: pointer;
    transform: translateY(-2px);
    border-color: #7b8f63;
    box-shadow: 0 14px 24px rgba(58, 43, 29, 0.10);
    opacity: 0.96;
}

.item_detail_main .item_detail_images_big {
    background: #fffdf8;
    border: 1px solid #e5ddd1;
    border-radius: 30px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(58, 43, 29, 0.07);
}

.item_detail_main .item_detail_image_big {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
    background: #f3eee5;
}

/* ===== 右側購入エリア ===== */

.item_detail_main .item_detail_discription {
    padding-top: 10px;
}

.item_detail_main .item_detail_discription_inner {
    position: sticky;
    top: 110px;
}

.item_detail_main .item_detail_marks {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf3e9;
    color: #5f7d4a;
    font-size: 0.92rem;
    font-weight: 800;
}

.item_detail_main .item_detail_marks a {
    color: #5a4738;
    text-decoration: underline;
}

.item_detail_main .item_detail_discription_name {
    font-size: 2rem;
    line-height: 1.28;
    word-break: keep-all;
}

.item_detail_main .item_detail_discription_product_area {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #786757;
}

.item_detail_main .item_detail_discription_buy {
    margin-top: 14px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid #e5ddd1;
    border-radius: 24px;
    padding: 24px 22px 22px;
    box-shadow: 0 18px 34px rgba(58, 43, 29, 0.08);
}

.item_detail_main .item_detail_discription_price {
    color: #a13123;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Meiryo', sans-serif;
}

.item_detail_main .item_detail_discription_shipping {
    margin-top: 8px;
    color: #54493f;
    font-size: 0.96rem;
    font-weight: 700;
    font-family: 'Meiryo', sans-serif;
}

.item_detail_main .item_detail_discription_price_onepoints {
    list-style: none;
    padding: 0;
    margin: 18px 25px 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item_detail_main .item_detail_discription_price_onepoint {
    position: relative;
    padding-left: 1.5em;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #51463c;
}

.item_detail_main .item_detail_discription_price_onepoint::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #caa15a;
    font-weight: 900;
}

.item_detail_main .item_detail_buy_count_titile {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #372d26;
}

.item_detail_main .item_detail_buy_count,
.item_detail_main .item_detail_buy_count_option {
    height: 52px;
    width: 100%;
    font-size: 1rem;
    border: 1px solid rgba(90, 71, 56, 0.18);
    border-radius: 14px;
    background: #fff;
    padding: 0 16px;
    color: #372d26;
    box-sizing: border-box;
}

.item_detail_main .item_detail_buy_count:focus {
    outline: none;
    border-color: rgba(47, 74, 55, 0.45);
    box-shadow: 0 0 0 4px rgba(95, 125, 74, 0.10);
}

.item_detail_main .item_detail_stocks_situation {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf3e9;
    color: #5f7d4a;
    font-size: 0.92rem;
    font-weight: 800;
}

.item_detail_main .item_detail_cart {
    display: flex;
    margin-top: 20px;
}

.item_detail_main .item_detail_cart_in,
.item_detail_main .item_detail_cart_in_not {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 60px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-sizing: border-box;
}

.item_detail_main .item_detail_cart_in {
    background: linear-gradient(135deg, #45654e 0%, #2f4a37 100%);
    color: #fff;
    border: 1px solid #2f4a37;
    box-shadow: 0 14px 24px rgba(47, 74, 55, 0.20);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.item_detail_main .item_detail_cart_in:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(47, 74, 55, 0.24);
    filter: brightness(1.02);
}

.item_detail_main .item_detail_cart_in_not {
    background: #efefef;
    color: #999;
    border: 1px solid #dddddd;
}

.item_detail_main .item_detail_cart_in_result {
    min-height: 1.4em;
    font-size: 0.94rem;
    font-weight: 700;
    color: #5f7d4a;
}

.item_detail_cart_in_result {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* 文字とリンクの間 */
    text-align: center;
}

.cart_link {
    display: inline-block;

    margin-top: 6px;
    padding: 7px 12px;

    font-size: 0.92rem;
    font-weight: 900;
    color: #3b2f00;

    background: linear-gradient(135deg, #ffe066, #ffd43b);
    border-radius: 10px;

    text-decoration: none;

    box-shadow:
        2px 2px 0 #e8590c,
        0 6px 14px rgba(255, 212, 59, 0.35);

    transition: transform 0.08s ease, filter 0.1s ease;
}

.cart_link:active {
    transform: scale(0.96);
    filter: brightness(0.92);
}

/* ===== 下段説明 ===== */

.item_detail_main .item_detail_sub2,
.item_detail_main .item_detail_sub4 {
    width: 100%;
    max-width: 1280px;
    margin: 42px auto 0;
}

.item_detail_main .item_detail_category_how_to,
.item_detail_main .item_detail_customer_reviews {
    font-size: 1.9rem;
    font-weight: 900;
    color: #2d231c;
    text-align: center;
    margin-bottom: 28px;
}

.item_detail_main .item_detail_category_how_to_enjoys {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.item_detail_main .item_detail_category_how_to_enjoy {
    display: flex;
    flex-direction: column;
}

.item_detail_main .item_detail_category_how_to_enjoy1 {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    background: #f3eee5;
    box-shadow: 0 10px 22px rgba(58, 43, 29, 0.06);
}

.item_detail_main .item_detail_category_how_to_enjoy2 {
    padding: 12px 4px 0;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #56483c;
}

/* ===== レビュー ===== */

.item_detail_main .item_detail_customer_review {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 22px 24px;
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid #e5ddd1;
    border-radius: 22px;
    box-sizing: border-box;
    box-shadow: 0 14px 28px rgba(58, 43, 29, 0.07);
}

.item_detail_main .item_detail_customer_review_title_date {
    display: flex;
    flex-direction: row;
}

.item_detail_main .item_detail_customer_review_title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #2d231c;
}

.item_detail_main .item_detail_customer_review_icon_mark_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 16px 0 12px;
}

.item_detail_main .item_detail_customer_review_icon {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid #e5ddd1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.item_detail_main .item_detail_customer_review_mark_item {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item_detail_main .item_detail_category_customer_review_mark_average {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf3e9;
    color: #5f7d4a;
    font-size: 0.95rem;
    font-weight: 900;
}

.item_detail_main .item_detail_customer_review_item,
.item_detail_main .item_detail_customer_review_personal {
    font-size: 0.93rem;
    color: #5a5148;
    line-height: 1.6;
}

.item_detail_main .item_detail_customer_review_comment {
    width: 100%;
    font-size: 0.97rem;
    line-height: 1.98;
    padding: 0 70px;
    color: #4b4138;
}

/* ===== レスポンシブ ===== */

@media (max-width: 1180px) {
    .item_detail_main .item_detail_sub1 {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .item_detail_main .item_detail_discription_inner {
        position: static;
    }
}

@media (max-width: 720px) {
    .item_detail_main {
        padding: 18px 10px 48px;
    }

    .item_detail_main .item_detail_sub1 {
        display: block;
        width: 100%;
        margin-top: 12px;
    }

    .item_detail_main .item_detail_introduction {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .item_detail_main .item_detail_images_big {
        padding: 8px;
        border-radius: 16px;
        box-shadow: 0 8px 18px rgba(58, 43, 29, 0.06);
    }

    .item_detail_main .item_detail_image_big {
        border-radius: 12px;
    }

    .item_detail_main .item_detail_images_small {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 6px;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }

    .item_detail_main .item_detail_image_small {
        width: 58px;
        height: 58px;
        min-width: 58px;
        flex: 0 0 58px;
        border-radius: 10px;
    }

    .item_detail_main .item_detail_discription {
        padding-top: 18px;
    }

    .item_detail_main .item_detail_marks {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .item_detail_main .item_detail_discription_name {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .item_detail_main .item_detail_discription_product_area {
        margin-top: 6px;
        font-size: 0.88rem;
    }

    .item_detail_main .item_detail_discription_buy {
        margin-top: 12px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .item_detail_main .item_detail_discription_price {
        font-size: 1.65rem;
    }

    .item_detail_main .item_detail_discription_shipping {
        font-size: 0.86rem;
    }

    .item_detail_main .item_detail_discription_price_onepoints {
        margin: 14px 0;
        gap: 2px;
    }

    .item_detail_main .item_detail_discription_price_onepoint {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .item_detail_main .item_detail_buy_count_titile {
        margin-top: 18px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .item_detail_main .item_detail_buy_count {
        height: 48px;
        border-radius: 12px;
    }

    .item_detail_main .item_detail_stocks_situation {
        margin-top: 12px;
        font-size: 0.82rem;
        padding: 6px 10px;
    }

    .item_detail_main .item_detail_cart {
        margin-top: 16px;
    }

    .item_detail_main .item_detail_cart_in,
    .item_detail_main .item_detail_cart_in_not {
        min-height: 52px;
        font-size: 0.95rem;
    }

    .item_detail_main .item_detail_sub2,
    .item_detail_main .item_detail_sub4 {
        margin-top: 44px;
    }

    .item_detail_main .item_detail_category_how_to,
    .item_detail_main .item_detail_customer_reviews {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .item_detail_main .item_detail_category_how_to_enjoys {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .item_detail_main .item_detail_category_how_to_enjoy1 {
        border-radius: 12px;
    }

    .item_detail_main .item_detail_category_how_to_enjoy2 {
        padding-top: 8px;
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .item_detail_main .item_detail_customer_review {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .item_detail_main .item_detail_customer_review_title {
        font-size: 1rem;
    }

    .item_detail_main .item_detail_customer_review_icon_mark_item {
        align-items: flex-start;
        margin: 14px 0 10px;
    }

    .item_detail_main .item_detail_customer_review_icon {
        width: 56px;
        height: 56px;
    }

    .item_detail_main .item_detail_customer_review_mark_item {
        margin-left: 14px;
    }

    .item_detail_main .item_detail_category_customer_review_mark_average {
        font-size: 0.85rem;
        padding: 5px 9px;
    }

    .item_detail_main .item_detail_customer_review_item,
    .item_detail_main .item_detail_customer_review_personal {
        font-size: 0.82rem;
    }

    .item_detail_main .item_detail_customer_review_comment {
        padding: 0;
        font-size: 0.9rem;
        line-height: 1.85;
    }
}

/* ============================================================
   Source: web_cart_order.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Cart and Order UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* ===== カート全体 ===== */
.cart {
    max-width: 760px;
    margin: 40px auto 100px;
    padding: 0 24px;
    box-sizing: border-box;
}

.cart_body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===== カードリスト ===== */
.cart_items_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

/* ===== 商品カード ===== */
.cart_list_items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(89, 72, 56, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(58, 43, 29, 0.06),
        0 1px 4px rgba(58, 43, 29, 0.04);
    transition: box-shadow 0.2s ease;
}

.cart_list_items:hover {
    box-shadow:
        0 8px 24px rgba(58, 43, 29, 0.10),
        0 2px 8px rgba(58, 43, 29, 0.06);
}

/* ===== 商品画像 ===== */
.cart_item_detail_img {
    width: 200px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    align-self: stretch;
}

/* ===== カード本体 ===== */
.cart_card_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    gap: 10px;
    min-width: 0;
}

/* ===== 商品名 ===== */
.cart_item_detail_detail_name {
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.5;
    color: #2f241d;
    letter-spacing: 0.01em;
    word-break: break-word;
}

/* ===== 注意事項 ===== */
.cart_item_caution {
    padding: 10px 14px;
    background: rgba(248, 244, 237, 0.9);
    border: 1px solid rgba(89, 72, 56, 0.07);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.cart_item_caution_title {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #857261;
    margin-bottom: 4px;
}

.cart_item_caution_content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart_caution_point {
    position: relative;
    padding-left: 1.2em;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #5a4c40;
}

.cart_caution_point::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #caa15a;
    font-weight: 900;
    font-size: 0.7rem;
}

/* ===== フッター（単価・数量） ===== */
.cart_card_footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(89, 72, 56, 0.07);
}

.cart_card_price_row,
.cart_card_amount_row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== ラベル ===== */
.cart_card_label {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #a08878;
    min-width: 28px;
    flex-shrink: 0;
}

/* ===== 単価 ===== */
.cart_item_price_value {
    font-size: 1.05rem;
    font-weight: 900;
    color: #9f3528;
    letter-spacing: 0.01em;
}

/* ===== 数量エリア ===== */
.cart_item_amount_change {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart_qty_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(89, 72, 56, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #4b4037;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.cart_qty_btn:hover {
    background: rgba(245, 240, 231, 0.95);
    box-shadow: 0 4px 10px rgba(58, 43, 29, 0.08);
}

.cart_qty_btn:active {
    transform: scale(0.95);
}

.cart_qty_input {
    width: 48px;
    height: 36px;
    border: 1px solid rgba(89, 72, 56, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #372d26;
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
}

.cart_qty_input:focus {
    outline: none;
    border-color: rgba(69, 101, 78, 0.45);
    box-shadow: 0 0 0 3px rgba(95, 125, 74, 0.10);
}

/* ===== 注文ボタン ===== */
.cart_submit_link {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

#item_order,
#login_after_order {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    min-height: 58px;
    padding: 0 32px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4b6a54 0%, #2f4a37 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 20px rgba(47, 74, 55, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#item_order:hover,
#login_after_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(47, 74, 55, 0.28);
}

/* ===== 空カート ===== */
.cart_empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 40px auto 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(89, 72, 56, 0.10);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(58, 43, 29, 0.06);
    color: #5d4d40;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

/* ===== スマホ（〜640px） ===== */
@media (max-width: 640px) {
    .cart {
        margin: 24px auto 80px;
        padding: 0 12px;
    }

    .cart_list_items {
        flex-direction: column;
        border-radius: 16px;
    }

    /* スマホは上部に大きめの画像 */
    .cart_item_detail_img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }

    .cart_card_body {
        padding: 14px 16px;
        gap: 8px;
    }

    .cart_item_detail_detail_name {
        font-size: 1rem;
    }

    .cart_item_caution {
        padding: 8px 12px;
        border-radius: 10px;
    }

    .cart_caution_point {
        font-size: 0.8rem;
    }

    .cart_card_footer {
        padding-top: 8px;
        gap: 6px;
    }

    .cart_qty_btn {
        width: 40px;
        height: 40px;
    }

    .cart_qty_input {
        width: 48px;
        height: 40px;
    }

    #item_order,
    #login_after_order {
        max-width: 100%;
        min-height: 54px;
        border-radius: 12px;
    }
}

/* =============================================
   注文画面 全文CSS
   ============================================= */

/* 全体レイアウト */
.order {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    max-width: 1280px;
    margin: 36px auto 88px;
    padding: 0 24px;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #372d26;
}

.order_left,
.order_right {
    min-width: 0;
}

/* 共通セクションカードスタイル */
.order_topic {
    background: #ffffff;
    border: 1px solid rgba(89, 72, 56, 0.12);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(58, 43, 29, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.order_confirm_title {
    padding: 24px 28px 0;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.4;
    color: #2f241d;
}

/* １．配送情報フォーム */
.order_confirm_contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 28px 32px;
}

.order_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.order_field_full {
    grid-column: 1 / -1;
}

.order_field_label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #7f6f61;
    margin-left: 4px;
}

.order_confirm_contents input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(89, 72, 56, 0.15);
    border-radius: 12px;
    background: #fdfdfd;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.order_confirm_contents input:focus {
    outline: none;
    border-color: #4b6a54;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(75, 106, 84, 0.1);
}

/* ２．商品確認リスト */
.order_confirm_items_body {
    padding: 0 28px;
}

.order_confirm_items_item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(89, 72, 56, 0.08);
}

.order_confirm_items_item:last-child {
    border-bottom: none;
}

.order_confirm_meta {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 16px;
}

.order_confirm_date {
    font-weight: 800;
    color: #236a49;
}

.order_confirm_shipping_from {
    font-size: 0.9rem;
    color: #857261;
}

.order_confirm_item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 160px;
    gap: 20px;
    align-items: start;
}

.order_confirm_item_img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.order_confirm_details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding-top: 2px;
}

.order_confirm_details_name {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.5;
}

.order_confirm_cautions {
    margin: 8px 0;
    padding: 12px 16px;
    background: #f8f6f2;
    border-radius: 12px;
}

.order_confirm_cautions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order_confirm_caution {
    font-size: 0.85rem;
    color: #6b5c4f;
    line-height: 1.6;
}

.order_confirm_caution::before {
    content: "・";
    margin-right: 4px;
}

.order_confirm_price_row {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.order_confirm_details_price {
    font-weight: 800;
    color: #b32d2d;
}

.order_confirm_details_ship {
    font-size: 0.9rem;
    color: #7f6f61;
}

.order_confirm_amount {
    margin-top: 12px;
    width: 130px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(89, 72, 56, 0.2);
    border-radius: 8px;
    background: #fff;
    font-weight: 700;
}

.order_confirm_item_shipping {
    background: #f1ede6;
    padding: 16px;
    border-radius: 12px;
    height: fit-content;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5d4d40;
    line-height: 1.6;
}

/* 注意書きセクション */
.order_notice {
    margin: 24px 28px 32px;
    padding: 24px;
    background: #faf9f7;
    border-radius: 16px;
    border: 1px solid rgba(89, 72, 56, 0.05);
}
.order_notice_important {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #7a6a5c;
}

.order_notice h6 {
    font-size: 0.9rem;
    font-weight: 900;
    margin: 20px 0 8px;
    color: #2f241d;
}

.order_notice h6:first-of-type {
    margin-top: 0;
}

.order_notice p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #6b5c4f;
}

/* 右側：決済サマリー (Sticky) */
.order_right1 {
    position: sticky;
    top: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(89, 72, 56, 0.12);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.order_submit_submit {
    width: 100%;
    height: 60px;
    background: #4b6a54;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(75, 106, 84, 0.25);
}

.order_submit_submit:hover {
    background: #3d5644;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(75, 106, 84, 0.35);
}

.order_submit_caution {
    font-size: 0.75rem;
    color: #857261;
    line-height: 1.6;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(89, 72, 56, 0.2);
}

/* 価格内訳 */
.order_submit_prices {
    margin-top: 20px;
}

.order_total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 20px;
}

.order_total .order_submit_total_title {
    font-size: 0.9rem;
    color: #7f6f61;
}

.order_total .order_confirm_price_sum {
    font-size: 2rem;
    font-weight: 900;
    color: #b32d2d;
}

.order_submit_prices1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order_submit_title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #2f241d;
    margin-bottom: 4px;
}

.order_submit_topic {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.order_submit_topic div:last-child {
    font-weight: 700;
}

/* 合計金額（下部の再掲分） */
.order_submit_topic:last-child {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(89, 72, 56, 0.1);
}
@media (max-width: 640px) {
    .order {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        margin: 14px auto 56px;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .order_topic,
    .order_right1 {
        border-radius: 20px;
        border: 1px solid rgba(89, 72, 56, 0.10);
        background: #fffdf8;
        box-shadow: 0 10px 28px rgba(58, 43, 29, 0.06);
        overflow: hidden;
    }

    .order_confirm_title {
        padding: 20px 18px 0;
        font-size: 1.08rem;
        line-height: 1.45;
        letter-spacing: 0.02em;
    }

    .order_confirm_contents {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .order_field {
        gap: 6px;
    }

    .order_field_label {
        font-size: 0.78rem;
        font-weight: 900;
        color: #7b6857;
        margin-left: 2px;
    }

    .order_confirm_contents input {
        height: 48px;
        padding: 0 14px;
        border-radius: 14px;
        background: #ffffff;
        font-size: 0.95rem;
    }

    .order_confirm_items_body {
        padding: 0 18px;
    }

    .order_confirm_items_item {
        padding: 22px 0;
    }

    .order_confirm_meta {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin-bottom: 12px;
    }

    .order_confirm_date {
        font-size: 0.86rem;
    }

    .order_confirm_shipping_from {
        font-size: 0.8rem;
    }

    .order_confirm_item {
        display: grid;
        grid-template-columns: 92px 1fr;
        gap: 13px;
        align-items: start;
    }

    .order_confirm_item_img {
        width: 92px;
        height: 92px;
        border-radius: 16px;
    }

    .order_confirm_details {
        gap: 8px;
        padding-top: 0;
    }

    .order_confirm_details_name {
        font-size: 0.98rem;
        font-weight: 900;
        line-height: 1.45;
    }

    .order_confirm_cautions {
        margin: 4px 0;
        padding: 10px 12px;
        border-radius: 14px;
        background: #f5f1e9;
    }

    .order_confirm_caution {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .order_confirm_price_row {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .order_confirm_details_price {
        font-size: 0.9rem;
    }

    .order_confirm_details_ship {
        font-size: 0.78rem;
    }

    .order_confirm_amount {
        width: 100%;
        height: 42px;
        margin-top: 6px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .order_confirm_item_shipping {
        grid-column: 1 / -1;
        margin-top: 4px;
        padding: 11px 13px;
        border-radius: 14px;
        background: #f1ede6;
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .order_notice {
        margin: 18px;
        padding: 18px;
        border-radius: 16px;
        background: #faf7f0;
    }

    .order_conform_total_title {
        font-size: 1rem;
        font-weight: 900;
        color: #a13123;
        margin-bottom: 16px;
    }

    .order_notice h6 {
        font-size: 0.82rem;
        margin: 18px 0 7px;
    }

    .order_notice p {
        font-size: 0.78rem;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .order_right1 {
        padding: 18px;
    }

    .order_submit_submit {
        height: 54px;
        border-radius: 999px;
        font-size: 1rem;
        letter-spacing: 0.03em;
        background: linear-gradient(135deg, #45654e, #2f4a37);
        box-shadow: 0 12px 24px rgba(47, 74, 55, 0.22);
    }

    .order_submit_submit:hover {
        transform: none;
        box-shadow: 0 12px 24px rgba(47, 74, 55, 0.22);
    }

    .order_submit_submit:active {
        transform: scale(0.97);
    }

    .order_submit_caution {
        margin-top: 14px;
        padding-bottom: 14px;
        font-size: 0.72rem;
        line-height: 1.65;
    }

    .order_submit_prices {
        margin-top: 16px;
    }

    .order_total {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .order_total .order_submit_total_title {
        font-size: 0.78rem;
        font-weight: 900;
    }

    .order_total .order_confirm_price_sum {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .order_submit_title {
        font-size: 0.78rem;
        font-weight: 900;
    }

    .order_submit_topic {
        font-size: 0.84rem;
        gap: 12px;
    }

    .order_submit_topic:last-child {
        margin-top: 6px;
        padding-top: 12px;
    }
}

/* ============================================================
   Source: web_thanks.css
   ============================================================ */

/* ============================================================
   Natsubi Farm Thanks Page UI
   Source: tougou.css
   Generated as a new split CSS file. Existing CSS/EJS are untouched.
   ============================================================ */

/* =========================
   全体レイアウト
========================= */
.order_complete_root {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    color: #333;
    font-family: "Hiragino Mincho ProN", "Noto Serif JP", "Noto Sans JP", serif;
    padding-bottom: 28px;
}

/* =========================
   ヒーロービジュアル
========================= */
.hero_visual {
    position: relative;
    width: 100%;
    height: 34vh;
    min-height: 260px;
    overflow: hidden;
}

.image_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image_wrapper img {
    position: absolute;
    bottom: -320px;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05) saturate(1.08);
}

/* =========================
   ヒーローテキスト
========================= */
.hero_text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.42)
        );
    color: #fff;
    padding: 24px;
}

.thanks_title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
    color: #ffd75a;
    text-shadow: 0 7px 10px rgb(0, 0, 0);
}

.thanks_main_title {
    font-size: clamp(1.55rem, 4vw, 2.7rem);
    line-height: 1.45;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}

/* =========================
   コンテンツ
========================= */
.content_body {
    padding: 25px 28px 42px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* =========================
   メッセージ
========================= */
.excitement_message {
    margin-bottom: 24px;
}

.excitement_message h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.65;
    margin: 0 auto 16px;
    color: #2d5a27;
    display: inline-block;
    padding: 0 18px 8px;
    border-bottom: 1px solid #e7e3d3;
}

.excitement_message p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin: 0 auto 18px;
    max-width: 620px;
}

/* =========================
   ステータスバー
========================= */
.status_tracker {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 420px;
    margin: 24px auto 28px;
    position: relative;
    text-align: center;
}

.status_tracker::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: #e8e8e8;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    flex: 1;
}

.step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e6e6e6;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 8px;
    font-size: 0.8rem;
    box-sizing: border-box;
}

.step_current span {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #fff;
}

.step p {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* =========================
   インフォカード
========================= */
.info_card {
    background: #fffdf0;
    padding: 18px 24px;
    border: 1px solid #eadf9b;
    border-radius: 14px;
    margin: 0 auto 28px;
    max-width: 620px;
    text-align: center;
}

.info_card p {
    font-size: 0.88rem;
    color: #7a5f00;
    margin: 0;
    line-height: 1.7;
}

/* =========================
   ボタン
========================= */
.action_area {
    text-align: center;
}

.btn_continue {
    display: inline-block;
    background: linear-gradient(135deg, #f6a623 0%, #e67e22 100%);
    color: #fff !important;
    padding: 15px 56px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px;
    font-size: 1rem;
    box-shadow: 0 5px 16px rgba(230, 126, 34, 0.24);
    transition: all 0.25s ease;
}

.btn_continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 126, 34, 0.32);
}

/* =========================
   スマホ
========================= */
@media (max-width: 600px) {
    .hero_visual {
        height: 32vh;
        min-height: 230px;
    }

    .image_wrapper img {
        bottom: -18px;
        width: 115%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero_text {
        padding: 18px;
    }

    .thanks_title {
        font-size: 0.78rem;
    }

    .thanks_main_title {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .content_body {
        padding: 26px 18px 36px;
    }

    .excitement_message h2 {
        font-size: 1.18rem;
        padding: 0 10px 8px;
    }

    .excitement_message p {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .info_card {
        padding: 16px 16px;
    }

    .btn_continue {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
}

/* ============================================================
   Zero-base readability overrides
   - Keep index_header/header branding as the original CSS intended.
   - Use readable gothic typography elsewhere.
   ============================================================ */

:root {
    --readable-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --header-original-gothic: "M PLUS 1p", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --comfortable-text: #333a32;
    --sp-padding: 20px;
}

html {
    font-size: 16px;
}

body {
    color: var(--comfortable-text);
    font-family: var(--readable-gothic);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--readable-gothic);
}

body :not(header):not(header *):not(.header_order_button):not(.header_order_button *) {
    font-family: var(--readable-gothic);
}

/* index_header keeps the original header tone. */
header,
header button,
header input,
header select,
header textarea,
.header_order_button,
.header_order_button * {
    font-family: var(--header-original-gothic);
}

.header_tagline,
.header_logo {
    font-family: "Zen Maru Gothic", var(--header-original-gothic);
    text-align: left;
}

.header_tagline {
    color: #1b5e20;
    font-size: 24px;
}

.header_nav {
    gap: 18px;
}

.header_nav_link {
    width: 128px;
    justify-content: center;
}

.header_nav_link p {
    white-space: nowrap;
}

/* Remove old mincho/display-font islands outside the header. */
.farmer_soul_root,
.article_page,
.annouce_article,
.order_complete_root,
.excitement_message,
#artcile_date,
.month_day,
.arrow_box {
    font-family: var(--readable-gothic);
}

/* Base readability: old CSS remains the layout source, this only smooths reading. */
p,
li,
dd,
dt,
label,
input,
select,
textarea,
button {
    line-height: 1.75;
}

.web_story_text p,
.farm_items_story_text p,
.annouce_article,
.contact_intro_text,
.policy_intro,
.contact_complete_message,
.excitement_message p,
.item_detail_category_how_to_enjoy2,
.item_detail_customer_review_comment,
.store_item_discription,
.order_notice,
.cart_item_caution_content {
    line-height: 1.85;
}

.page_title,
.infomation_title h1,
.news_top,
.year_stamp,
.article_title h1,
.web_story_text h2,
.farm_items_story_text h2,
.final_cta_section h2,
.item_detail_discription_name,
.item_detail_category_how_to,
.item_detail_customer_reviews,
.contact_complete_title,
.excitement_message h2 {
    font-family: var(--readable-gothic);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.page_title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    line-height: 1.35;
}

.infomation_title h1,
.news_top,
.item_detail_category_how_to,
.item_detail_customer_reviews {
    line-height: 1.35;
}

/* Heading hierarchy: h2 should support h1, not shout over it. */
.web_story_text h2,
.farm_items_story_text h2,
.final_cta_section h2,
.policy_section h2,
.annouce_article h2,
.excitement_message h2,
.card_main_title {
    font-size: clamp(1.25rem, 2.5vw, 1.72rem);
    line-height: 1.45;
}

.article_title h1,
.stately_copy .hero_main,
.nature_hero_mini .stately_copy .hero_main,
.thanks_main_title,
.page_title,
.item_detail_main .item_detail_discription_name {
    font-size: clamp(1.62rem, 3.4vw, 2.35rem);
}

.contact_input,
.contact_textarea,
.new_regist_form input,
.new_regist_form select,
.regist_confirm_form input,
.order input,
.order select,
.item_detail_buy_count,
.cart_qty_input {
    font-size: 1rem;
}

@media (max-width: 768px) {
    body {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .page_title {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .web_story_text h2,
    .farm_items_story_text h2,
    .final_cta_section h2,
    .policy_section h2,
    .annouce_article h2,
    .excitement_message h2,
    .card_main_title {
        font-size: clamp(1.12rem, 5vw, 1.45rem);
    }

    .web_story_text p,
    .farm_items_story_text p,
    .annouce_article,
    .contact_intro_text,
    .policy_intro {
        line-height: 1.8;
    }
}

/* ============================================================
   Image balance overrides
   Bigger gothic text needs calmer images so copy has room to breathe.
   ============================================================ */

.full_card_inner {
    height: clamp(320px, 34vw, 380px);
}

.recipe_card img {
    aspect-ratio: 1;
    max-height: none;
}

.place_main_card img {
    max-height: 380px;
}

.web_story_image img,
.farm_items_story_image img {
    max-height: 390px;
}

.farm_info_footer {
    max-width: 840px;
}

.store_items_list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
}

.item_img {
    aspect-ratio: 1;
}

.cart_item_detail_img,
.order_confirm_item_img {
    max-height: 240px;
}

.cart_list_items {
    align-items: stretch;
}

.cart_item_detail_img {
    height: auto;
    min-height: 100%;
    max-height: none;
    align-self: stretch;
}

#item_order,
.order_submit_submit {
    background: linear-gradient(135deg, #ffe27a 0%, var(--corn-yellow) 55%, #efb92f 100%);
    color: #3b2f00;
    box-shadow: 0 8px 20px rgba(175, 126, 18, 0.22);
}

#item_order:hover,
.order_submit_submit:hover {
    box-shadow: 0 14px 28px rgba(175, 126, 18, 0.30);
}

.order_notice {
    margin: 18px 28px 28px;
    padding: 18px 20px;
    line-height: 1.55;
}

.order_notice h6 {
    margin: 14px 0 5px;
    font-size: 0.82rem;
    line-height: 1.35;
}

.order_notice h6:first-of-type {
    margin-top: 0;
}

.order_notice p {
    margin: 0 0 5px;
    font-size: 0.8rem;
    line-height: 1.55;
}

.order_notice_important {
    margin-top: 4px;
    padding: 7px 9px;
    background: rgba(253, 216, 53, 0.16);
    border-left: 3px solid var(--corn-yellow);
    border-radius: 6px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.nature_hero_mini {
    height: 28vh;
    min-height: 150px;
    max-height: 210px;
}

.image_wrapper img {
    object-position: center;
}

.item_detail_main .item_detail_sub1 {
    grid-template-columns: minmax(0, 720px) minmax(360px, 430px);
    column-gap: 34px;
}

.item_detail_main .item_detail_introduction {
    width: 100%;
    max-width: 720px;
}

.item_detail_main .item_detail_images_big {
    width: 100%;
    max-width: 620px;
}

.item_detail_main .item_detail_image_big {
    aspect-ratio: 1;
}

.item_detail_main .item_detail_discription {
    padding-top: 0;
}

.item_detail_main .item_detail_discription_inner {
    top: 96px;
}

.item_detail_main .item_detail_marks {
    margin-bottom: 6px;
    padding: 6px 12px;
    font-size: 0.86rem;
}

.item_detail_main .item_detail_discription_name {
    font-size: clamp(1.55rem, 2.8vw, 1.86rem);
    line-height: 1.22;
}

.item_detail_main .item_detail_discription_product_area {
    margin-top: 6px;
    font-size: 0.94rem;
}

.item_detail_main .item_detail_discription_buy {
    margin-top: 10px;
    padding: 30px 18px 30px 18px;
    border-radius: 20px;
}

.item_detail_main .item_detail_discription_price {
    font-size: clamp(1.65rem, 3vw, 1.95rem);
}

.item_detail_main .item_detail_discription_shipping {
    margin-top: 4px;
    font-size: 0.9rem;
}

.item_detail_main .item_detail_discription_price_onepoints {
    margin: 12px 12px 12px 4px;
    gap: 1px;
}

.item_detail_main .item_detail_discription_price_onepoint {
    font-size: 0.9rem;
    line-height: 1.62;
}

.item_detail_main .item_detail_buy_count_titile {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.item_detail_main .item_detail_buy_count,
.item_detail_main .item_detail_buy_count_option {
    height: 46px;
    border-radius: 12px;
}

.item_detail_main .item_detail_stocks_situation {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 0.86rem;
}

.item_detail_main .item_detail_cart {
    margin-top: 12px;
}

.item_detail_main .item_detail_cart_in,
.item_detail_main .item_detail_cart_in_not {
    min-height: 52px;
}

.web_order_btn,
.btn_green,
.items_final_order_btn,
.farm_profile_order_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    min-height: 58px;
    margin-inline: auto;
    padding: 0 32px;
    background: linear-gradient(135deg, #ffe27a 0%, var(--corn-yellow) 55%, #efb92f 100%);
    color: #3b2f00;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(175, 126, 18, 0.22);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.items_final_order_btn,
.farm_profile_order_btn {
    width: 100%;
}

.web_order_btn:hover,
.btn_green:hover,
.items_final_order_btn:hover,
.farm_profile_order_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(175, 126, 18, 0.30);
}

.store_belt {
    justify-content: flex-end;
    gap: 18px;
    padding: 9px 20px;
    background: #2f4a37;
    border-bottom: 2px solid rgba(253, 216, 53, 0.55);
    border-radius: 0;
    color: #fff;
    font-size: 0.86rem;
}

.store_belt_menu,
.store_belt_menu[href="/store"],
.store_belt_menu[href="/cart"] {
    margin-left: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 800;
}

.store_belt_menu:hover,
.store_belt_menu[href="/store"]:hover,
.store_belt_menu[href="/cart"]:hover {
    color: var(--corn-yellow) !important;
}

.store_belt_menu[href="/cart"] {
    padding: 5px 14px;
    background: linear-gradient(135deg, #ffe27a 0%, var(--corn-yellow) 60%, #efb92f 100%);
    border-radius: 999px;
    color: #3b2f00 !important;
    box-shadow: 0 4px 12px rgba(175, 126, 18, 0.22);
}

.store_belt_menu[href="/cart"]:hover {
    color: #3b2f00 !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(175, 126, 18, 0.28);
}

.item_detail_main .item_detail_category_how_to_enjoy1 {
    aspect-ratio: 1;
    max-height: 320px;
}

.store_item_name,
.store_item_discription,
.item_detail_main .item_detail_discription_name,
.item_detail_main .item_detail_discription_price_onepoint,
.item_detail_main .item_detail_category_how_to_enjoy2,
.item_detail_main .item_detail_customer_review_comment,
.news_title_text,
.news_content {
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .item_detail_main .item_detail_sub1 {
        grid-template-columns: 1fr;
    }

    .item_detail_main .item_detail_introduction,
    .item_detail_main .item_detail_images_big {
        max-width: 720px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .nature_hero_mini {
        height: 32vh;
        min-height: 180px;
        max-height: 230px;
    }

    .full_card_inner {
        height: 300px;
    }

    .web_story_image img,
    .farm_items_story_image img,
    .item_detail_main .item_detail_category_how_to_enjoy1 {
        max-height: 320px;
    }

    .place_main_card img {
        height: 240px;
        max-height: 240px;
    }

    .item_detail_main .item_detail_images_big {
        max-width: 100%;
    }

    .item_detail_main .item_detail_image_big {
        aspect-ratio: 1;
    }

    .cart_item_detail_img {
        height: 200px;
        min-height: 0;
        max-height: 200px;
    }

    .order_notice {
        margin: 16px 14px 24px;
        padding: 16px;
    }
}
