@charset "UTF-8";

/* ==========================================================================
   Pattern 45: Farm (農園)
   Designer: "素朴でオールドスクールな職人"
   Concept: アニメーションなし。IDセレクタ主体。明朝体の美しさと余白。
   ========================================================================== */

/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* CSSアニメーションは本質的ではないと切り捨てるストイックな設計 */
    animation: none !important;
    transition: none !important;
}

body {
    font-family: 'Shippori Mincho B1', serif;
    color: #333333;
    background-color: #FDFCF7;
    /* 温かみのある和紙のような白 */
    line-height: 2.2;
    font-size: 16px;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #4A5B42;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
}

/* =========================================
   #global-header
========================================= */
#global-header {
    background-color: #FDFCF7;
    border-bottom: 1px solid #EAE8D9;
    padding: 30px 0;
}

#header-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#site-logo {
    font-size: 24px;
    color: #2F3E22;
    letter-spacing: 0.2em;
}

#global-nav {
    list-style: none;
    display: flex;
}

#global-nav li {
    margin-left: 40px;
}

#global-nav a {
    font-size: 15px;
    letter-spacing: 0.1em;
}

/* =========================================
   #hero
========================================= */
#hero {
    margin-bottom: 120px;
    position: relative;
}

#hero-image img {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    object-fit: cover;
}

#hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(253, 252, 247, 0.9);
    padding: 60px 80px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

#hero-text h2 {
    font-size: 40px;
    line-height: 1.6;
    color: #2F3E22;
    margin-bottom: 20px;
}

#hero-text p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #6B7A5C;
}

/* =========================================
   #story-board (左右交互のクラシックレイアウト)
========================================= */
#story-board {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 150px;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

/* 順番の入れ替えをFlexboxでシンプルに解決 */
.story-block.text-right {
    flex-direction: row-reverse;
}

.story-image {
    width: 55%;
}

.story-content {
    width: 45%;
    padding: 0 60px;
}

.story-title {
    font-size: 28px;
    color: #2F3E22;
    margin-bottom: 5px;
}

.story-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #8C997F;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.story-desc {
    font-size: 16px;
    color: #444444;
}

/* =========================================
   #products
========================================= */
#products {
    background-color: #F8F7EE;
    padding: 120px 0;
    border-top: 1px solid #EAE8D9;
}

#products-header {
    text-align: center;
    margin-bottom: 80px;
}

#products-header h3 {
    font-size: 28px;
    color: #2F3E22;
    margin-bottom: 5px;
}

#products-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #8C997F;
    letter-spacing: 0.1em;
}

#products-list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.product-item {
    width: 31%;
}

.product-item img {
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-item h5 {
    font-size: 20px;
    color: #2F3E22;
    margin-bottom: 15px;
    border-bottom: 1px solid #EAE8D9;
    padding-bottom: 15px;
}

.product-item p {
    font-size: 15px;
    color: #555555;
}

#online-store-link {
    text-align: center;
    margin-top: 80px;
}

#online-store-link a {
    display: inline-block;
    border: 1px solid #2F3E22;
    padding: 20px 60px;
    color: #2F3E22;
    font-size: 16px;
    letter-spacing: 0.1em;
}

#online-store-link a:hover {
    background-color: #2F3E22;
    color: #FFFFFF;
    text-decoration: none;
}

/* =========================================
   #faq
========================================= */
#faq {
    padding: 120px 0;
}

#faq-header {
    text-align: center;
    margin-bottom: 80px;
}

#faq-header h3 {
    font-size: 28px;
    color: #2F3E22;
    margin-bottom: 5px;
}

#faq-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #8C997F;
    letter-spacing: 0.1em;
}

#faq-list {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #EAE8D9;
}

/* 最初のアイテムの上にも線を入れる場合 */
.faq-item:first-of-type {
    border-top: 1px solid #EAE8D9;
}

.faq-q {
    padding: 25px 0;
    font-size: 18px;
    color: #2F3E22;
    cursor: pointer;
    list-style: none;
    /* デフォルトの三角を消す */
    position: relative;
    font-weight: 500;
}

.faq-q::-webkit-details-marker {
    display: none;
}

/* 開閉用のクラシカルなアイコン代替（＋と−） */
.faq-q::after {
    content: '＋';
    position: absolute;
    right: 10px;
    color: #8C997F;
    font-size: 18px;
}

details[open] .faq-q::after {
    content: '−';
}

.faq-a {
    padding: 0 0 30px;
    color: #555555;
    font-size: 16px;
}

/* =========================================
   #global-footer
========================================= */
#global-footer {
    background-color: #2F3E22;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

#footer-logo {
    font-size: 24px;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

#footer-address {
    font-style: normal;
    font-size: 14px;
    color: #A9B2A1;
    margin-bottom: 40px;
    line-height: 2;
}

#copyright {
    color: #79856F;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
}

/* =========================================
   Responsive 
   (職人肌なのでMedia Queryも最小限で美しく崩す)
========================================= */
@media screen and (max-width: 800px) {
    #global-nav {
        display: none;
        /* スマホではナビを隠すシンプルな割り切り */
    }

    #hero-text {
        width: 90%;
        padding: 40px 20px;
    }

    #hero-text h2 {
        font-size: 28px;
    }

    .story-block,
    .story-block.text-right {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .story-image,
    .story-content {
        width: 100%;
        padding: 0;
    }

    .story-image {
        margin-bottom: 30px;
    }

    #products-list {
        flex-direction: column;
    }

    .product-item {
        width: 100%;
        margin-bottom: 60px;
    }
}