.content_banner {
    position: relative;
    height: 600px;
}

@media screen and (max-width: 767px) {
    .content_banner {
        height: 260px;
    }
}

.content_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_banner .content_banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

@media screen and (max-width: 767px) {
    .content_banner .content_banner_text {
        font-size: 36px;
        line-height: 1.11;
    }
}

.content_page {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0 80px;
    font-size: 1.25rem;
    line-height: 1.2;
}

@media screen and (max-width: 1023px) {
    .content_page {
        margin: 0;
        padding: 64px 32px 80px;
    }
}

@media screen and (max-width: 767px) {
    .content_page {
        padding: 36px 20px 32px;
    }
}

.content_page a {
    color: #e71d34;
    text-decoration: underline;
}

.content_page details {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.content_page details + details {
    border-top: none;
}

.content_page details[open] {
    padding-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .content_page details[open] {
        padding-bottom: 24px;
    }
}

.content_page summary {
    position: relative;
    font-weight: 700;
    display: flex;
    padding: 24px 20px 24px 0;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .content_page summary {
        padding: 16px 20px 16px 0;
    }
}

.content_page summary:before,
.content_page summary:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #00865e;
}

.content_page summary:after {
    right: 7px;
    width: 3px;
    height: 17px;
}

.content_page summary:before {
    width: 17px;
    height: 3px;
}

.content_page details[open] summary:after {
    display: none;
}
