﻿/*
 Theme Name: GeneratePress Child
 Theme URI: https://example.com
 Description: GeneratePress Child Theme
 Author: Your Name
 Template: generatepress
 Version: 1.0
*/

/* ===== 基本設定 ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* コンテンツ幅 */
.site-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

/* 見出し */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* ボタン（CTA用） */
.cta-button {
    display: block;
    text-align: center;
    background: #e60023;
    color: #ffffff;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    margin: 20px 0;
    transition: 0.3s;
}

.cta-button:hover {
    opacity: 0.85;
}

/* スマホ最適化 */
@media (max-width: 768px) {
    .site-content {
        padding: 15px;
    }

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