/* ALL PAGES */
body {
    background-color: #FFF;
}

.display__sp {
    display: block;
}

.display__pc {
    display: none;
}

.section__container {
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.section__container .section__box {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.section__container .section__box .title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.title-eng {
    font-family: var(--font-familySerif);
    font-size: 14px;
    font-weight: var(--fontWeightBold);
    line-height: 150%;
    letter-spacing: 2.4px;
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section__container .title-jap {
    color: #000;
    font-family: var(--font-familySerif);
    font-size: 32px;
    font-weight: var(--fontWeightBold);
    line-height: 150%;
    text-align: center;
}

.section__container .button a {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.4px;
}

.banner {}

/* OTHERS PAGES only (not home) トップページ以外 */
/* KV  */
.section__container.page__kv .section__box {
    align-items: start;
    flex-direction: column;
}

.section__container.page__kv .title-container {
    width: 100%;
    align-items: start;
    padding-left: 24px;
}

/* 	SECTIONS */
.page__section .section__box {
    padding: 40px 0;
    gap: 24px;
}

.page__section:last-of-type .section__box {
    border-bottom: unset;
}

.page__section .section__heading {
    padding: 0 var(--padding-side);
}

.page__section .section__heading .title1__container {
    display: flex;
    position: relative;
}

.page__section .section__heading .title1__container::before {
    content: "";
    width: 18px;
    height: 1px;
    background-color: #222;
    position: absolute;
    left: -24px;
    top: 50%;
}

.page__section .section__heading .title1 {
    color: var(--color-text);
    font-family: var(--font-familySerif);
    font-size: 16px;
    line-height: 150%;
}

.page__section .section__heading .title2 {
    color: var(--color-text);
    font-family: var(--font-familySerif);
    font-size: 28px;
    line-height: 150%;
}

.page__section .section__description {
    gap: 24px;
    padding: 0 var(--padding-side);
}

.page__section .section__description-p {
    font-size: 13px;
    line-height: 200%;
}

.page__section .section__description-p.chui {
    font-size: 11px;
    line-height: 200%;
}

.page__section .heading__title {
    font-size: 26px;
    line-height: 150%;
    font-family: var(--font-familySerif)
}

.page__section .heading__sub {
    font-size: 16px;
    font-family: var(--font-familySerif)
}

.page__section .section__img {
    width: 100%;
}

/* TOGGLE CONTAINER */
.toggle_container {
    overflow: hidden;
    row-gap: 32px;
}

.toggle_container .toggle__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    width: 100%;
    padding: 0 var(--padding-side);
}

.toggle_container .toggle__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 200%;
}

.toggle_container .toggle__iconcontainer {
    position: relative;
    width: 16px;
    height: 16px;
}

.toggle_container .toggle__iconcontainer::before,
.toggle_container .toggle__iconcontainer::after {
    content: "";
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.toggle_container .toggle__iconcontainer::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.toggle_container .toggle__iconcontainer::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.toggle_container.active .toggle__iconcontainer::after {
    transform: translateX(-50%) scaleY(0);
}

.toggle_container .toggle__description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0;
    gap: 0 !important;
    margin-top: 0;
}

.toggle_container.active .toggle__description {
    max-height: 1000px;
    opacity: 1;
    margin-top: 32px;
}

.toggle_container .toggle__description-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: 200%;
    padding: 0 var(--padding-side);
}

.toggle_container .toggle__description-p {
    font-size: 12px;
    line-height: 200%;
    padding: 0 var(--padding-side);
}

.toggle_container .grid__textblock {
    grid-column: 1/2;
    margin-top: 32px;
    gap: 0;
}

.toggle__description.grid .grid__img {
    margin-top: 32px;
}

@media screen and (min-width: 768px) {
    .display__sp {
        display: none;
    }

    .display__pc {
        display: block;
    }

    .section__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .section__container .section-head {
        flex-direction: column;
        gap: 36px;
    }

    .section__container .title-eng {
        font-size: 22px;
    }

    .section__container .title-jap {
        font-size: clamp(32px, 3vw ,40px);
    }

    .section__container .button a {
        text-align: center;
        font-size: 21px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 2.1px;
        display: flex;
        padding: 12px 24px;
        align-items: center;
        gap: 6px;
        border-radius: 4.5px;
        background: #FFF;
        box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.10);
        justify-content: space-between;
    }

    /* 	KV */
    .section__container.page__kv .section__box {
        flex-direction: row;
    }

    .section__container.page__kv .title-container {
        padding-top: 60px;
    }

    /* 	SECTIONS */
    .page__section .section__box {
        padding: 80px 0;
        gap: 32px;
    }

    .page__section .section__description {
        gap: 32px;
    }

    .page__section .section__description-p {
        font-size: 16px;
    }

    .page__section .heading__title {
        font-size: 28px;
    }

    .page__section .heading__sub {
        font-size: 20px;
    }

    .page__section .section__img {
        padding: 0 var(--padding-side);
    }

    .page__section .section__heading .title1 {
        font-size: 20px;
    }

    .page__section .section__heading .title2 {
        font-size: 32px;
    }

    /* TOGGLE  */
    .toggle_container {
        padding: 0 var(--padding-side);
    }

    .toggle_container .toggle__title {
        font-size: 24px;
    }

    .toggle_container .toggle__description-heading {
        font-size: 20px;
    }

    .toggle_container .toggle__heading,
    .toggle_container .toggle__description-heading,
    .toggle_container .toggle__description-p {
        padding: 0;
    }

    .toggle__description.grid .toggle__description-p,
    .section__description .grid__description-p {
        padding-left: 0;
        padding-right: 32px;
    }

    .toggle__description .toggle__description-p,
    .section__description .grid__description-p {
        font-size: 16px;
    }

    .toggle__description.grid {
        display: grid;
        grid-template-columns: 60% 40%;
        grid-template-rows: auto;
        column-gap: 0;
    }

    .toggle__description.grid .grid__img {
        grid-column: 2/3;
        grid-row: 1/5;
        margin: 0;
    }
}

@media screen and (min-width: 1001px) {
    .section__container.page__kv .title-container {
        width: 75%;
    }

    .section__container .title-jap {
        font-size: 40px;
    }
}