body {
    font-family: "EB Garamond", "Zen Old Mincho",
        sans-serif;
    color: #4B3A14;
}

img {
    width: 100%;
    height: auto;
}

.section__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 200px 0 110px;
    /* 上下の余白はそのまま反映 */
}

@media (max-width: 700px) {
    .section__title {
        padding: 140px 0 80px;
    }
}


.section__title::before,
.section__title::after {
    content: "";
    flex: 1;
    /* 線の長さを自動調整 */
    height: 1px;
    background-color: #b48b83;
}

.section__title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #4B3A14;
    letter-spacing: 0.4em;
    margin: 0 115px;
    /* 文字と線の間隔を115pxに設定 */
}

@media (max-width: 1200px) {
    .section__title h2 {
        font-size: 26px;
        margin: 0 80px;
    }
}

@media (max-width: 700px) {
    .section__title h2 {
        font-size: 20px;
        margin: 0 40px;
    }
}


.backcolor {
    background-color: #FFEFF5;
}