/* --- 基本設定 --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", "Original Yu Gothic", "Yu Gothic", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* --- ヘッダー & ヒーロー --- */
.hero {
    background: linear-gradient(to right, #e60012, #c00010); /* 三菱の赤をイメージ */
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* 画像を薄く表示 */
    z-index: 1;
}

/* アフィリエイトバナー共通 */
.aff-banner {
    margin: 20px 0;
}
.aff-banner img {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- 共通セクション --- */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.highlight {
    background: linear-gradient(transparent 60%, #fff799 60%); /* 黄色のマーカー風 */
    font-weight: bold;
}

/* --- ターゲット層セクション --- */
.target ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}

.target li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 5px solid #e60012; /* 三菱レッド */
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- メリットセクション --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.benefit-item h3 {
    color: #e60012;
    font-size: 1.4em;
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.benefit-item p {
    font-size: 1em;
    margin-bottom: 0;
}

/* --- CTAセクション --- */
.cta {
    background-color: #fffdef; /* 少しクリーム色 */
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
}

.cta p {
    font-size: 1.1em;
}

.cta-button {
    display: inline-block;
    background-color: #ff6600; /* 目立つオレンジ */
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.cta-button:hover {
    background-color: #e65c00;
    text-decoration: none;
    transform: translateY(-2px);
}

/* --- フッター --- */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #333;
    color: #aaa;
    font-size: 0.9em;
}
footer .highlight {
    color: #fff;
    background: none;
}

/* --- レスポンシブ対応 (スマホ・タブレット) --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1em;
    }

    h2 {
        font-size: 1.6em;
    }

    .container {
        padding: 15px;
    }

    /* メリットグリッドを1列にする */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 90%;
        padding: 15px 20px;
        font-size: 1.1em;
    }
}
