@charset "UTF-8";

/* =========================================
   Base Styles
   ========================================= */
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f4f6f7;
    -webkit-font-smoothing: antialiased;
}

.lp-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.sp-only { display: none; }
@media screen and (max-width: 768px) {
    .sp-only { display: inline; }
}

/* =========================================
   Main Visual Adjustment
   ========================================= */
.main-visual {
    text-align: center;
    background-color: #fff;
}

.mv-img {
    width: 100%;
    height: auto;
    /* PC表示時の最大幅制限（味噌キット同様） */
    max-width: 700px; 
    margin: 0 auto;
    display: block;
}

/* スマホ表示時 */
@media screen and (max-width: 768px) {
    .mv-img {
        /* スマホでは横幅いっぱいに */
        max-width: 100%;
    }
}

/* =========================================
   Sections Common
   ========================================= */
.content-section {
    padding: 60px 40px;
}
@media screen and (max-width: 768px) {
    .content-section { padding: 40px 20px; }
}

/* 見出しスタイル（ブルーグレー系） */
.section-title-mincho {
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    color: #4f6b7a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.sub-title {
    font-size: 1.4rem;
    color: #2c3e50;
    border-left: 6px solid #4f6b7a;
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* =========================================
   Intro Section (背景画像あり)
   ========================================= */
.intro-section {
    /* ▼ここに背景画像を指定してください▼ */
    background-image: url('https://www.gaia-ochanomizu.co.jp/img/category/katomochi/katomochi_02.png');
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-content-box {
    /* 背景を少し透過させて文字を読みやすくする */
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px;
    max-width: 680px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2.2;
    text-align: center;
    display: inline-block;
    color: #444;
}

@media screen and (max-width: 768px) {
    .intro-section { padding: 40px 15px; }
    .intro-content-box { padding: 30px 20px; }
    .section-title-mincho { font-size: 1.5rem; margin-bottom: 20px; }
    .intro-text { font-size: 1rem; line-height: 1.9; text-align: left; }
}

/* =========================================
   Producer/Body Section
   ========================================= */
.producer-section {
    background-color: #fff;
}
.producer-section p {
    margin-bottom: 20px;
    font-size: 1.15rem; /* ← ここを追加（サイズ調整） */
    line-height: 2.0;   /* ← ここを追加（行間を少し広げる） */
}
.note-text {
    margin-top: 20px;
    color: #888;
    font-size: 0.85rem;
    text-align: right;
}
.note-text.small {
    font-size: 0.8rem;
}

/* =========================================
   Warning / Schedule Section
   ========================================= */
.warning-section {
    padding-top: 20px; /* 上の余白調整 */
    padding-bottom: 60px;
}

.warning-box {
    border: 2px solid #4f6b7a; /* 枠線をブルーに */
    padding: 40px 30px;
    background-color: #fff;
    text-align: center;
}

.warning-title {
    color: #4f6b7a;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    font-weight: bold;
    border-bottom: 1px dashed #4f6b7a;
    padding-bottom: 15px;
    line-height: 1.4;
}

.highlight-message {
    font-size: 1.1rem;
    font-weight: bold;
    color: #c84e4e; /* 注意喚起は赤系のまま */
    margin-bottom: 30px;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    max-width: 600px;
}
.warning-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}
.warning-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #4f6b7a;
}

/* スケジュールテーブル */
.schedule-wrap {
    margin-top: 20px;
    overflow-x: auto;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 600px;
    margin: 0 auto;
}
.schedule-table th {
    background-color: #4f6b7a;
    color: #fff;
    padding: 12px;
    border: 1px solid #4f6b7a;
    font-weight: bold;
    font-size: 1.1rem;
}
.schedule-table td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f9fbfc;
}
.schedule-table td.important-date {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}
.schedule-table .arrow {
    display: block;
    margin: 5px 0;
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .warning-box { padding: 20px; }
    .warning-title { font-size: 1.2rem; }
    .schedule-table td.important-date { font-size: 1rem; }
}