body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #000;
}

/* ================= HEADER ================= */

.header {
    background: #0f1d2f;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
}

.site-title {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(90deg, #4fa0ff, #d0d0d0);
    -webkit-background-clip: text;
    color: transparent;
    margin: 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 18px;
}

.nav a:hover {
    opacity: 0.7;
}

/* ▼ ハンバーガーメニューの初期状態（PCでは非表示） */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* ▼ スマホ（768px以下）での挙動 */
@media (max-width: 768px) {

    /* メニューは初期非表示に */
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #0f1d2f;
        padding: 20px;
        border-radius: 10px;
        flex-direction: column;
        gap: 18px;
        width: 180px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 999;
    }

    .nav a {
        font-size: 18px;
    }

    /* ハンバーガー表示 */
    .hamburger {
        display: flex;
    }

    /* ヘッダー配置調整（崩れ防止） */
    .header {
        justify-content: space-between;
    }

    /* メニューが開いた時に表示されるクラス */
    .nav.active {
        display: flex;
    }

	.site-title {
	    font-size: 24px;
	}
}

/* ================= HERO ================= */

.hero-img {
    width: 100%;
    display: block;
}

/* ================= SERVICES ================= */

.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
}

.service-card {
    width: 300px;
    text-align: center;
    padding: 25px 20px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.service-icon {
    width: 220px;
    margin-bottom: 10px;
}

.service-title {
    color: #1D348E;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-desc {
    line-height: 1.6;
    color: #333;
}

/* ================= RESULT ================= */

.result-section {
    text-align: center;
    padding: 50px 20px;
}

.result-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.result-list p {
    font-size: 20px;
    margin: 4px 0;
}


/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
}

/* ====== 強調された的中例セクション ====== */

.result-section-strong {
    text-align: center;
    padding: 80px 20px;
    /* ▼ ここをグラデーション背景に変更！ ▼ */
    background: linear-gradient(180deg, #003C34 0%, #015C54 40%, #02766A 100%);
    color: #fff;
}

/* 上部の見出し */
.result-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    background: linear-gradient(90deg, #f7d56d, #f0c947);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

/* 白いボックス部分 */
.result-box {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* 1行ずつの行 */
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid #e3e3e3;
    font-size: 20px;
}

.result-row:last-child {
    border-bottom: none;
}

/* 的中バッジ部分 */
.badge {
    background: #000;
    color: #fff;
    font-size: 18px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
}

/* 左側のレース内容 */
.result-date {
    font-weight: bold;
    color: #333;
}

/* -------- FOOTER -------- */
.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
}
