.reason-page-hero {
    position: relative;
    background-image: url(../images/bg-washi.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.reason-page-hero__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 40px 64px;
    text-align: center;
}
.reason-page-hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-family: "Shippori Mincho B1", var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: #3e2b2c;
    letter-spacing: 0.04em;
}
.reason-page-hero__subtitle {
    margin: 28px 0 0;
    font-family: "Shippori Mincho B1", var(--font-serif);
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    font-weight: 600;
    line-height: 1.4;
    color: #b99663;
    letter-spacing: 0.08em;
}
.reason-page-hero__title-line {
    display: block;
    font-size: clamp(3.4rem, 4vw, 5.1rem);
    line-height: 1.18;
    letter-spacing: 0.03em;
}
.reason-page-hero__title-line--sub {
    display: block;
    font-size: clamp(2.8rem, 3.2vw, 4rem);
    line-height: 1.28;
}

.reason-page .page-wrapper__content > .reasons-section {
    margin-top: 28px;
    position: relative;
    overflow: visible;
}

.reason-page .page-wrapper__content > .reasons-section::before,
.reason-page .page-wrapper__content > .reasons-section::after {
    content: "";
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 1;
}

.reason-page .page-wrapper__content > .reasons-section::before {
    left: 0;
    width: 478px;
    height: 60px;
    background-image: url(../images/bg-01-left.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.reason-page .page-wrapper__content > .reasons-section::after {
    right: -6px;
    width: 432px;
    height: 121px;
    background-image: url(../images/bg-01-right.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}

.reason-page .page-wrapper__content > .reasons-section .reasons-section__inner {
    position: relative;
    z-index: 2;
}

.reason-page .page-wrapper__content {
    overflow: visible;
}

.reason-page .page-wrapper__content::before {
    content: none;
}

.reason-page .page-wrapper__content::after {
    content: none;
}
  
/* Responsive */
@media (max-width: 768px) {
    .reason-page-hero__inner {
        padding: 36px 20px 48px;
    }

    .reason-page-hero__title {
        gap: 10px;
    }

    .reason-page-hero__title-line {
        font-size: clamp(2.6rem, 6.3vw, 3.7rem);
        line-height: 1.22;
    }

    .reason-page-hero__title-line--sub {
        font-size: clamp(2rem, 4.8vw, 2.8rem);
        line-height: 1.35;
    }

    .reason-page-hero__subtitle {
        margin-top: 18px;
        font-size: 1.7rem;
    }

    .reason-page .page-wrapper__content > .reasons-section {
        margin-top: 18px;
    }

    .reason-page .page-wrapper__content > .reasons-section::after {
        right: -6px;
        width: 210px;
        height: 59px;
    }

    .reason-page .page-wrapper__content > .reasons-section::before {
        width: 240px;
        height: 30px;
    }

    .reason-page .page-wrapper__content::before {
        content: none;
        width: 240px;
        height: 30px;
    }

    .reason-page .page-wrapper__content::after {
        content: none;
    }

}
  
  
  
