/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ベース設定 */
:root {
    --color-text: #000000;
    --color-text-light: #333333;
    --color-background: #ffffff;
    --color-paper: #ffffff;
    --color-accent: #dc143c;
    --color-highlight: #fff0f0;
    --color-border: #e5e5e5;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
}

body {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    background-color: var(--color-background);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* コンテナ */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ヘッダー */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.date {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}

/* レター（手紙風） */
.letter {
    background-color: var(--color-paper);
    padding: 60px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

/* セクション */
.section {
    margin-bottom: 50px;
}

.section:last-child {
    margin-bottom: 0;
}

/* 画像コンテナ */
.image-container {
    margin: 30px 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* テキスト */
.text {
    margin-bottom: 1.5em;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
}

.text:last-child {
    margin-bottom: 0;
}

/* 強調 */
.text strong {
    font-weight: 700;
    color: var(--color-text);
}

.text.highlight {
    background: transparent;
    padding: 0;
    display: inline;
}

.text.highlight.large {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1.8em;
}

/* イタリック */
.text.italic {
    font-style: italic;
    color: var(--color-text-light);
}

/* 引用 */
.text.quote {
    padding-left: 0;
    border-left: none;
    color: var(--color-text);
    font-style: normal;
}

/* 中央寄せ */
.text.center {
    text-align: center;
    font-weight: 500;
}

/* キーメッセージ */
.text.key-message {
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    color: var(--color-accent);
    margin-top: 2em;
    margin-bottom: 2em;
}

/* ダークセクション */
.section.dark {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
}

/* ブレークスルーセクション */
.section.breakthrough {
    padding: 0;
    background-color: transparent;
    border-left: none;
    margin-left: 0;
    margin-right: 0;
}

/* 区切り線 */
.divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
    margin: 50px auto;
}

/* セクションタイトル */
.section-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
}

/* 製品名 */
.product-name {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 18px;
    letter-spacing: 0.05em;
}

/* フィーチャーセクション */
.feature-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
}

.feature-box {
    background-color: transparent;
    padding: 0;
    border-left: none;
    margin-bottom: 25px;
}

.feature-box:last-of-type {
    margin-bottom: 30px;
}

/* CTAセクション */
.cta-section {
    text-align: center;
}

/* CTA */
.cta {
    margin-top: 100px;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--color-accent);
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.cta-period {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.cta-event-details {
    margin-bottom: 30px;
}

.cta-event-text {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 10px;
    font-weight: 500;
}

.cta-event-text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.cta-points {
    font-family: var(--font-sans);
    font-size: 20px;
    color: var(--color-text);
    font-weight: 500;
    margin-top: 5px;
}

.cta-points strong {
    color: var(--color-accent);
    font-size: 24px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 18px 60px;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cta-button:hover {
    background-color: #b8102f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* フッター */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-text-light);
}

/* レスポンシブ */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 20px 15px;
    }

    .letter {
        padding: 40px 25px;
    }

    .header {
        margin-bottom: 40px;
    }

    .section {
        margin-bottom: 40px;
    }

    .image-container {
        margin: 25px 0;
    }

    .content-image {
        border-radius: 2px;
    }

    .text {
        font-size: 15px;
        line-height: 1.9;
    }

    .text.highlight.large {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .product-name {
        font-size: 17px;
    }

    .feature-section {
        padding: 30px 20px;
    }

    .feature-box {
        padding: 20px;
    }

    .cta {
        padding: 40px 20px;
        margin-top: 80px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-period {
        font-size: 13px;
    }

    .cta-event-text {
        font-size: 15px;
    }

    .cta-points {
        font-size: 18px;
    }

    .cta-points strong {
        font-size: 22px;
    }

    .cta-button {
        padding: 16px 50px;
        font-size: 15px;
    }

    .section.dark,
    .section.breakthrough,
    .feature-section {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .letter {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-period {
        font-size: 12px;
    }

    .cta-event-text {
        font-size: 14px;
    }

    .cta-points {
        font-size: 17px;
    }

    .cta-points strong {
        font-size: 20px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }
}