/* =========================
  Layout
========================= */
.l-inner {
    width: min(calc(100% - 40px), 1200px);
    margin-inline: auto;
}

@media screen and (max-width: 767px) {
    .l-inner {
        width: min(calc(100% - 48px), 1200px);
    }
}

/* =========================
  Header
========================= */
.l-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 93, 80, 0.12);
}

.l-header__inner {
    width: min(100% - 40px, 1200px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.l-header__logo {
    flex-shrink: 0;
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.l-header__logo:hover {
    opacity: 0.75;
}

.l-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.l-header__nav a {
    color: #2e2e2e;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.l-header__nav a:hover {
    color: #2f5d50;
}

.l-header__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.l-header__button {
    width: 152px;
    height: 43px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.l-header__button:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.l-header__button--tel {
    background: #f8faf0;
    color: #2f5d50;
    border: 1px solid #2f5d50;
}

.l-header__button--contact {
    background: #c95b46;
    color: #ffffff;
    border: none;
}

.l-header__button-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* hamburger */
.l-header__hamburger {
    display: none;
}

/* drawer default */
.l-header__drawer {
    display: none;
}

body.is-drawer-open {
    overflow: hidden;
}

/* tablet / SP */
@media screen and (max-width: 1024px) {
    .l-header__inner {
        width: min(100% - 32px, 1200px);
    }

    .l-header__nav,
    .l-header__buttons {
        display: none;
    }

    .l-header__hamburger {
        display: block;
        position: relative;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 1002;
    }

    .l-header__hamburger span {
        position: absolute;
        left: 50%;
        width: 30px;
        height: 2px;
        background: #2f5d50;
        border-radius: 999px;
        transform: translateX(-50%);
        transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    }

    .l-header__hamburger span:nth-child(1) {
        top: 13px;
    }

    .l-header__hamburger span:nth-child(2) {
        top: 21px;
    }

    .l-header__hamburger span:nth-child(3) {
        top: 29px;
    }

    .l-header__hamburger.is-active span:nth-child(1) {
        top: 21px;
        transform: translateX(-50%) rotate(45deg);
    }

    .l-header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .l-header__hamburger.is-active span:nth-child(3) {
        top: 21px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .l-header__drawer {
        display: flex;
        position: fixed;
        top: 80px;
        right: 0;
        z-index: 999;
        width: min(82vw, 360px);
        height: calc(100vh - 80px);
        padding: 40px 28px;
        background: #fdfbf7;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        gap: 22px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .l-header__drawer.is-open {
        transform: translateX(0);
    }

    .l-header__drawer>a {
        color: #2f5d50;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.6;
        transition: opacity 0.3s ease;
    }

    .l-header__drawer>a:hover {
        opacity: 0.7;
    }

    .l-header__drawer-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
    }

    .l-header__drawer-button {
        width: 100%;
        height: 56px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .l-header__drawer-button:hover {
        opacity: 0.86;
        transform: translateY(-2px);
    }

    .l-header__drawer-button img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .l-header__drawer .l-header__drawer-button--tel {
        background: #f8faf0;
        color: #2f5d50;
        border: 1px solid #2f5d50;
    }

    .l-header__drawer .l-header__drawer-button--contact {
        background: #c95b46;
        color: #ffffff;
        border: none;
    }
}

@media screen and (max-width: 767px) {
    .l-header {
        height: 68px;
    }

    .l-header__inner {
        width: min(100% - 24px, 1200px);
    }

    .l-header__logo {
        font-size: 24px;
    }

    .l-header__drawer {
        top: 68px;
        width: 100%;
        height: calc(100vh - 68px);
        padding: 36px 28px;
    }
}

/* =========================
Contact CTA
========================= */
.c-contact-cta {
    position: relative;
    width: 100%;
    min-height: 386px;
    padding: 46px 20px;
    overflow: hidden;
}

/* dark / light */
.c-contact-cta--dark {
    background: #2f5d50;
    color: #ffffff;
}

.c-contact-cta--light {
    background: #f3f7ee;
    color: #2e2e2e;
}

.c-contact-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-inline: auto;
    text-align: center;
}

/* heading */
.c-contact-cta__en {
    margin-bottom: 2px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.c-contact-cta--dark .c-contact-cta__en {
    color: #ffffff;
}

.c-contact-cta--light .c-contact-cta__en {
    color: #c95b46;
}

.c-contact-cta__title {
    margin-bottom: 32px;
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}

.c-contact-cta--dark .c-contact-cta__title {
    color: #ffffff;
}

.c-contact-cta--light .c-contact-cta__title {
    color: #2f5d50;
}

.c-contact-cta__text {
    margin-bottom: 32px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
}

.c-contact-cta--dark .c-contact-cta__text {
    color: #ffffff;
}

.c-contact-cta--light .c-contact-cta__text {
    color: #2e2e2e;
}

/* buttons */
.c-contact-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.c-contact-cta__button {
    width: 320px;
    height: 75px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-contact-cta__button:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.c-contact-cta__button--mail {
    background: #c95b46;
    color: #ffffff;
}

.c-contact-cta__button--line {
    background: #4cc764;
    color: #ffffff;
}

.c-contact-cta__button--tel {
    background: #ffffff;
    color: #2f5d50;
}

.c-contact-cta__icon {
    object-fit: contain;
    flex-shrink: 0;
}

.c-contact-cta__icon--mail {
    width: 36px;
    height: 41px;
}

.c-contact-cta__icon--line {
    width: 43px;
    height: 43px;
}

.c-contact-cta__icon--tel {
    width: 28px;
    height: 32px;
}

.c-contact-cta__tel-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.c-contact-cta__tel-label,
.c-contact-cta__tel-number {
    font-size: 20px;
    line-height: 1.2;
}

/* decoration */
.c-contact-cta__deco {
    position: absolute;
    top: 50%;
    z-index: -1;
    width: 156px;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

.c-contact-cta__deco--left {
    left: -80px;
}

.c-contact-cta__deco--right {
    right: -81px;
    opacity: 0.38;
}

/* SP */
@media screen and (max-width: 767px) {
    .c-contact-cta {
        min-height: auto;
        padding: 40px 20px;
    }

    .c-contact-cta__inner {
        position: relative;
    }

    .c-contact-cta__en {
        font-size: 13px;
    }

    .c-contact-cta__title {
        margin-bottom: 18px;
        font-size: 26px;
    }

    .c-contact-cta__text {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .c-contact-cta__buttons {
        flex-direction: column;
        gap: 14px;
    }

    .c-contact-cta__button {
        width: 100%;
        max-width: 320px;
        height: 64px;
        font-size: 15px;
    }

    .c-contact-cta__icon--mail,
    .c-contact-cta__icon--line,
    .c-contact-cta__icon--tel {
        width: 24px;
        height: 24px;
    }

    .c-contact-cta__tel-label,
    .c-contact-cta__tel-number {
        font-size: 15px;
    }

    .c-contact-cta__deco {
        top: 69px;
        z-index: 0;
        width: 118px;
        opacity: 0.32;
    }

    .c-contact-cta__inner > :not(.c-contact-cta__deco) {
        position: relative;
        z-index: 1;
    }

    .c-contact-cta__deco--left {
        left: -54px;
    }

    .c-contact-cta__deco--right {
        right: -54px;
        opacity: 17%;
    }
}


/* =========================
  Footer
========================= */
.l-footer {
    background: #2f5d50;
    color: #ffffff;
    padding: 64px 0 28px;
    font-family: "Noto Sans JP", sans-serif;
}

.l-footer__inner {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

.l-footer__top {
    display: grid;
    grid-template-columns: 300px 1px 360px 270px;
    justify-content: space-between;
    align-items: start;
}

.l-footer__logo {
    display: inline-block;
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.l-footer__lead {
    margin: 0 0 29px;
    font-size: 16px;
    line-height: 1.9;
}

.l-footer__address {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
}

.l-footer__divider {
    width: 1px;
    height: 202px;
    background: rgba(255, 255, 255, 0.9);
}

.l-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 64px;
    font-size: 14px;
    line-height: 1.6;
}

.l-footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.l-footer__nav a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.l-footer__nav a:hover {
    opacity: 0.7;
}

.l-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-footer__contact-button {
    width: 270px;
    height: 75px;
    border-radius: 50px;
    background: #ffffff;
    color: #2f5d50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.l-footer__contact-button:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.l-footer__contact-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.l-footer__sns {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}

.l-footer__sns-link {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.l-footer__sns-link:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.l-footer__sns-link--tel {
    background: #ffffff;
}

.l-footer__sns-link--line img {
    width: 51px;
    height: 51px;
}

.l-footer__sns-link--tel img {
    width: 25px;
    height: 25px;
}

.l-footer__copy {
    margin: 50px 0 0;
    padding-top: 30px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

/* tablet */
@media screen and (max-width: 1024px) {
    .l-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .l-footer__divider {
        display: none;
    }

    .l-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .l-footer__contact {
        align-items: flex-start;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .l-footer {
        padding: 48px 0 24px;
    }

    .l-footer__inner {
        width: min(100% - 40px, 1200px);
    }

    .l-footer__logo {
        font-size: 20px;
    }

    .l-footer__lead,
    .l-footer__address {
        font-size: 14px;
    }

    .l-footer__nav {
        grid-template-columns: 1fr;
        font-size: 14px;
    }

    .l-footer__contact {
        align-items: center;
    }

    .l-footer__contact-button {
        width: 100%;
        max-width: 270px;
        height: 64px;
        font-size: 15px;
    }

    .l-footer__copy {
        margin-top: 40px;
        padding-top: 24px;
        font-size: 12px;
    }
}

.u-sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: inline;
    }
}

/* =========================
  Lower Hero
========================= */
.c-lower-hero {
    position: relative;
    min-height: 400px;
    padding: 80px 20px;
    background: url("../images/common/section-title-img.webp") center center / cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-lower-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 36, 20, 0.63);
    z-index: 0;
}

.c-lower-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    text-align: center;
}

.c-lower-hero__en {
    margin-bottom: 6px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.c-lower-hero__title {
    margin-bottom: 46px;
    font-family: "Noto Serif JP", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.45;
}

.c-lower-hero__text {
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
}

/* SP */
@media screen and (max-width: 767px) {
    .c-lower-hero {
        min-height: 320px;
        padding: 56px 20px;
    }

    .c-lower-hero__inner {
        width: min(100% - 40px, 1200px);
    }

    .c-lower-hero__en {
        font-size: 13px;
    }

    .c-lower-hero__title {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .c-lower-hero__text {
        font-size: 14px;
        line-height: 1.9;
    }

    .c-lower-hero__text br {
        display: none;
    }
}

/* =========================
  Breadcrumb
========================= */
.c-breadcrumb {
    background: #fdfbf7;
    padding: 16px 0;
}

.c-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #2e2e2e;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.c-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-breadcrumb__item:not(:last-child)::after {
    content: ">";
    color: #2f5d50;
    font-size: 13px;
}

.c-breadcrumb__item a {
    color: #2f5d50;
    transition: opacity 0.3s ease;
}

.c-breadcrumb__item a:hover {
    opacity: 0.7;
}

.c-breadcrumb__item[aria-current="page"] {
    color: #2e2e2e;
}

/* SP */
@media screen and (max-width: 767px) {
    .c-breadcrumb {
        padding: 12px 0;
    }

    .c-breadcrumb__list {
        font-size: 12px;
    }
}

/* =========================
Contact Form
========================= */
.c-contact-form {
    padding: 80px 0;
    background: #f3f7ee;
}

.c-contact-form__inner {
    width: min(calc(100% - 40px), 890px);
    margin-inline: auto;
}

.c-contact-form__title {
    margin-bottom: 32px;
    color: #2f5d50;
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.c-contact-form__form {
    width: 100%;
}

.c-contact-form__field+.c-contact-form__field {
    margin-top: 20px;
}

.c-contact-form__label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.c-contact-form__label {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
}

.c-contact-form__required {
    width: 61px;
    height: 27px;
    border-radius: 999px;
    background: #c95b46;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.c-contact-form__input,
.c-contact-form__select,
.c-contact-form__textarea {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.c-contact-form__input,
.c-contact-form__select {
    height: 60px;
    padding: 0 20px;
}

.c-contact-form__textarea {
    height: 185px;
    padding: 18px 20px;
    resize: vertical;
}

.c-contact-form__input:focus,
.c-contact-form__select:focus,
.c-contact-form__textarea:focus {
    outline: 2px solid #b6d38f;
    outline-offset: 2px;
}

/* select */
.c-contact-form__select-wrap {
    position: relative;
}

.c-contact-form__select {
    appearance: none;
    padding-right: 56px;
    cursor: pointer;
}

.c-contact-form__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 0;
    height: 0;
    border-top: 10px solid #777777;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: translateY(-50%);
    pointer-events: none;
}

/* privacy */
.c-contact-form__privacy {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
}

.c-contact-form__privacy input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.c-contact-form__privacy-box {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-contact-form__privacy input:checked+.c-contact-form__privacy-box::before {
    content: "✓";
    color: #2f5d50;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.c-contact-form__privacy-text {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* button */
.c-contact-form__button-wrap {
    margin-top: 64px;
    text-align: center;
}

.c-contact-form__button {
    width: 290px;
    height: 60px;
    border-radius: 50px;
    background: #c95b46;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-contact-form__button:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.c-contact-form__button-arrow {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #ffffff;
    color: #c95b46;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
}

/* SP */
@media screen and (max-width: 767px) {
    .c-contact-form {
        padding: 56px 0;
    }

    .c-contact-form__inner {
        width: min(calc(100% - 40px), 890px);
    }

    .c-contact-form__title {
        font-size: 26px;
    }

    .c-contact-form__label {
        font-size: 15px;
    }

    .c-contact-form__required {
        width: 48px;
        height: 22px;
        font-size: 12px;
    }

    .c-contact-form__input,
    .c-contact-form__select {
        height: 52px;
        font-size: 15px;
    }

    .c-contact-form__textarea {
        height: 160px;
        font-size: 15px;
    }

    .c-contact-form__privacy {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .c-contact-form__privacy-text {
        font-size: 14px;
    }

    .c-contact-form__button-wrap {
        margin-top: 40px;
    }

    .c-contact-form__button {
        width: 100%;
        max-width: 290px;
    }
}