/* 配色定義 */
:root {
    /* メインカラー */
    --color-primary: #0B3D91;
    --color-secondary: #2F6FED;

    /* 背景 */
    --color-background: #F5F8FF;

    /* テキスト */
    --color-text-primary: #0B3D91;
    --color-text: #333F57;
    --color-text-note: #777777;

    /* ロゴ */
    --color-logo-company: #FFFFFF;

    /* ヘッダー */
    --color-header-back: #071E4D;
    --color-header-text: #FFFFFF;

    /* セクション背景 */
    --color-section-white-back: #FFFFFF;
    --color-section-green-back: #EEF3FF;
    --color-section-bar: #9dafe2;

    /* フッター */
    --color-footer-back: #071E4D;
    --color-footer-text: #ffffffc0;
}

body {
    background-color: var(--color-header-back);
    width: 100%;
    ;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}


h2,
h3 {
    font-family: 'Sawarabi Gothic', 'Noto Sans JP', sans-serif;
}

button,
.btn {
    font-family: 'Sawarabi Gothic', 'Noto Sans JP', sans-serif;
}


/* セクション背景色 */
section:nth-of-type(odd) {
    background-color: var(--color-section-white-back);
}

section:nth-of-type(even) {
    background-color: var(--color-section-green-back);
}

section h2 {
    font-weight: bold;
    text-align: center;
    color: var(--color-text-primary);
}

section:not(:first-of-type)::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-section-bar);
    margin: 0 auto;
    border-radius: 2px;
}


.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    width: 250px;
    text-align: center;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
}


.text_note {
    font-size: 0.9rem;
    color: var(--color-text-note);
}

footer {
    background: var(--color-footer-back);
    color: white;
    padding: 15px;
    text-align: center;
}

.footer_info {
    color: var(--color-footer-text);
    margin-top: 1rem;
}