.story-box {
    background: #fff;
    padding: 60px 100px;
    margin-bottom: 60px;
}

.story-head {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    margin-bottom: 30px;
    padding: 10px;
    background-image: url(../img/story_line.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 87%;
    padding-bottom: 25px;
}

.story-person {
    width: 120px;
}

.story-title {
    color: #537C3C;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-voice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 14%;
}

.story-voice img {
    width: 2.5rem;
}

.story-voice p {
    color: #537C3C;
    font-weight: 600;
}

.subpage-section-2 {
    background-color: #189fbd;
    background-image: url(../img/bg_1.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: top -20% right 5%;
}


.magazine-container {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
    row-gap: 50px;
}

.magazine-box {
    width: calc(94% / 3);
}

.magazine-box:hover img {
    filter: brightness(1.1);
}

.magazine-box:hover p {
    text-decoration: underline;
}

.magazine-box img {}

.magazine-box p {
    color: #fff;
    text-align: center;
}

.blog-box {
    text-align: center;
}

.blog-link:hover {
    opacity: 0.8;
}

.backnumber-link {
    border: solid 2px #fff;
    color: #fff;
    padding: 5px 60px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: auto;
    margin-top: 50px;
    font-size: 1.2rem;
    border-radius: 2px;
}

.backnumber-link:hover {
    color: #189fbd;
    background-color: #fff;
}

.backnumber-box p {
    color: #235125;
}

@media screen and (max-width: 1800px) {
    .story-voice {
        position: absolute;
        right: 0;
        bottom: 2rem;
    }
}

@media screen and (max-width: 1280px) {
    .story-box {
        padding: 60px 50px;
    }

    .story-text-box {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .story-person {
        width: 100px;
    }

    .story-head {
        gap: 30px;
    }

    .story-box {
        padding: 60px 30px;
    }

}

@media screen and (max-width: 768px) {
    .story-head {
        flex-direction: column;
    }

    .story-voice {
        left: 0;
        top: -32px;
        bottom: auto;
        margin-right: 0;
        width: 100%;
    }

    .story-title {
        text-align: center;
    }

    .story-title-s {
        font-size: 1.1rem;
        letter-spacing: -1px;
    }

    .magazine-container {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }

    .magazine-box {
        width: 300px;
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .story-text-box {
        padding: 0 10px;
    }
}

@media screen and (max-width: 425px) {
    .story-box {
        padding: 60px 10px;
    }

    .backnumber-link {
        padding: 5px 32px;
    }
}