.header-bg--current {
    background-image: url("../img/header-bg-img2.png");
    opacity: 1;
}

.story {
    padding: 80px 0 120px;
    background: var(--white);
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(10, 44, 104, 0.12);
    padding: 48px 56px;
}

.story-card h2 {
    font-size: 22px;
    color: var(--blue);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-family: "Eurostile LT Std", "Montserrat", "Noto Sans JP", sans-serif;
}

.story-card p {
    font-size: 14px;
    line-height: 2;
    color: var(--navy);
    margin-bottom: 28px;
}

.story-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 24px;
}

.story-list li {
    font-size: 14px;
    line-height: 1.9;
    color: var(--navy);
    padding-left: 18px;
    position: relative;
}

.story-list li::before {
    content: "・";
    color: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
}

.story-list .story-list-title::before {
    content: "■";
}

@media (max-width: 900px) {
    .story {
        padding: 64px 0 96px;
    }

    .story-card {
        padding: 36px 20px;
    }
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .story-card h2 {
        font-size: 18px;
    }

    .story-card p,
    .story-list li {
        font-size: 13px;
        line-height: 1.9;
    }
}
