@charset "utf-8";

/* --- 共通デザイン（農園ページにも適用） --- */
.shokudo-page {
    padding: 200px 0 120px;
    background-color: #f7f6ee;
    position: relative;
    overflow: hidden;
    color: #333;
    /* font-family指定なし：テーマ全体を継承 */
}

.shokudo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* タイトル周り */
.shokudo-head { text-align: center; margin-bottom: 80px; }
.shokudo-icon { width: 60px; height: auto; margin: 0 auto 15px; display: block; }
.shokudo-title-jp { font-size: 24px; font-weight: 900; line-height: 1.2; }
.shokudo-title-en { display: block; font-size: 13px; font-weight: 800; color: #aaa; margin-top: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.shokudo-head::after { content: ""; display: block; width: 60px; height: 3px; background-color: #f1c40f; margin: 20px auto 0; border-radius: 2px; }

/* 背景装飾 */
.deco-v { position: absolute; z-index: 1; pointer-events: none; height: auto; }
.deco-v4 { top: 320px !important; left: -15vw !important; width: 65vw !important; opacity: 0.7; }
.deco-v6 { right: -10vw !important; bottom: -50px; width: 40vw; opacity: 0.8; }

/* メインコンセプト */
.shokudo-concept { margin: 60px auto 120px; max-width: 850px; }
.shokudo-copy { font-size: 24px; font-weight: 900; line-height: 1.6; margin-bottom: 40px; color: #333; }
.shokudo-text p { font-size: 15px; line-height: 2.4; font-weight: 700; color: #444; }

/* レイアウト */
.shokudo-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}
.shokudo-img-box { flex: 0 0 380px; }
.shokudo-img { width: 100%; height: auto; border-radius: 4px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.shokudo-content { flex: 1; }
.shokudo-sub-title { font-size: 24px; font-weight: 900; margin-bottom: 25px; color: #333; }
.shokudo-content p { font-size: 15px; line-height: 2.4; font-weight: 700; color: #444; }

/* 2枚並び写真ギャラリー */
.shokudo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 0 80px;
}
.gallery-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; }

/* ガラスボックス (角丸控えめ) */
.shokudo-info-box.glass-box {
    padding: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 80px;
}
.info-list dl { display: grid; grid-template-columns: 100px 1fr; gap: 15px 30px; }
.info-list dt { font-weight: 900; color: #f1c40f; font-size: 15px; }
.info-list dd { font-weight: 700; font-size: 15px; margin: 0; color: #444; }

/* お問い合わせ (間をしっかり空ける) */
.shokudo-contact-area { margin-top: 100px; text-align: center; }
.contact-text { font-size: 16px; font-weight: 900; margin-bottom: 50px !important; color: #333; display: block; }

.shokudo-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: #fff;
    padding: 20px 60px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.2s;
}
.shokudo-btn:hover { background-color: #d4ac0d; }

/* レスポンシブ */
@media screen and (max-width: 850px) {
    .shokudo-flex { flex-direction: column; gap: 30px; }
    .shokudo-img-box { width: 100%; flex: none; }
    .shokudo-gallery { grid-template-columns: 1fr; }
    .shokudo-info-box.glass-box { padding: 40px 20px; }
}