:root {
    --bg-color: #FAFAF8;
    /* オフホワイト、生成り */
    --text-color: #333333;
    /* 墨色 */
    --accent-color: #A4B8C4;
    /* 淡い海のような青グレー */
    --sand-color: #E6E2D3;
    /* 砂色 */
    --font-main: 'Shippori Mincho', serif;
    --section-spacing: 160px;
    /* セクション間の余白 */
    --fade-duration: 2s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 2.2;
    /* 広めの行間 */
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* リンクやボタンのスタイルは基本的に不要だが、念のため */
a {
    color: inherit;
    text-decoration: none;
}

main {
    width: 100%;
    max-width: 600px;
    /* スマホ閲覧主軸だがPCでも読みやすい幅に制限 */
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------
   Hero Section
-------------------------------- */
.hero {
    min-height: 100vh;
    /* ファーストビューを占有 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-text-main {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.spacer-hero {
    height: 80px;
    /* 縦の余白 */
}

.hero-text-sub {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    width: 1px;
    height: 60px;
    background-color: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

/* --------------------------------
   Common Section Styles
-------------------------------- */
.section {
    margin-bottom: var(--section-spacing);
    text-align: left;
    /* 基本は左揃えで自然に */
}

/* スマホレイアウトでは中央寄せも綺麗だが、
   「テキストが主役」の場合は左揃えのほうが読みやすい場合が多い。
   ただし、もとの指示のHeroは中央寄せ。
   それ以外は指示がないが、詩的な文章なので中央寄せも合う。
   指示にある「視線が自然に下へ流れる設計」を考慮し、
   長文は左揃え、短い詩的な部分は中央寄せなどを使い分けるか、
   あるいは全体を通して中央寄せのほうが「LP」っぽさは出る。
   しかし「読み物」としては左揃えが自然。
   ここでは、全体的に「静かな」中央寄せベースのデザインを採用する。
   行長を短くして中央に配置するスタイル。
*/

.section {
    text-align: center;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--accent-color);
    letter-spacing: 0.15em;
}

.text-body p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* --------------------------------
   Images (Placeholders)
-------------------------------- */
.image-wrapper {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-width: 600px;
    /* パターンA: 2:1 ワイド調整 */
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* ほんのり影をつけて浮き立たせる */
    opacity: 0.95;
    /* 若干馴染ませる */
}

/* --------------------------------
   Specific Sections
-------------------------------- */
.quote-section {
    margin: var(--section-spacing) 0;
    font-size: 1.2rem;
    line-height: 2.4;
}

.product-details {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-name {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-list li {
    margin-bottom: 0.5rem;
}

.product-note {
    font-size: 0.8rem;
    color: #666;
}

.sales-info {
    margin-bottom: 100px;
    font-weight: 500;
}

/* --------------------------------
   Footer
-------------------------------- */
footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.1em;
}

/* --------------------------------
   Animation Classes
-------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--fade-duration) ease-out, transform var(--fade-duration) ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------
   Responsive Adjustments
-------------------------------- */
@media (min-width: 768px) {

    /* PC向け調整：余白をさらに贅沢に */
    :root {
        --section-spacing: 240px;
    }

    .hero-text-main {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

    .placeholder-image {
        max-width: 400px;
        height: 250px;
    }
}

/* --------------------------------
   Instagram Link
-------------------------------- */
.instagram-invite-container {
    margin-top: 6rem;
    text-align: center;
}

.instagram-invite-container p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1px solid var(--accent-color);
    border-radius: 2px;
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: transparent;
}

.instagram-btn:hover {
    background-color: rgba(164, 184, 196, 0.1);
    transform: translateY(-2px);
    opacity: 1;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}