.section_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}
.section_title_en {
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-green);
}
.section_title_ja {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.template_contact .section_title_en {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .section_title {
        gap: 5px;
        margin-bottom: 30px;
    }
    .section_title_en {
        font-size: 15px;
    }
    .section_title_ja {
        font-size: 24px;
        line-height: 1.2;
    }
}