@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --black02: rgba(0, 0, 0, 0.5);
    --blue01: #2d71a3;
    --green01: #16716b;
    --green02: rgba(22, 113, 107, 0.9);
    --beige01: #f0f0e1;
    --beige02: #f8e6ce;
    --pink01: #ba6b8a;
    --pink02: rgba(186, 107, 138, 0.7);
    --orange01: #e59940;
    --gray: #e9e9e9;


    /* ぼかし */
    --blur: blur(10px);

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --zenKaku: "Zen Kaku Gothic New", sans-serif;

    /* 文字サイズ */
    --font15: clamp(11.47px, 0.327vw + 10.44px, 15px);
    --font17: clamp(13px, 0.37vw + 11.8px, 17px);
    --font19: clamp(14.53px, 0.414vw + 13.2px, 19px);
    --font21: clamp(16.06px, 0.458vw + 14.60px, 21px);
    --font23: clamp(17.59px, 0.502vw + 15.98px, 23px);
    --font24: clamp(18.36px, 0.524vw + 16.68px, 24px);
    --font25: clamp(19.12px, 0.545vw + 17.38px, 25px);
    --font26: clamp(19.88px, 0.567vw + 18.08px, 26px);
    --font28: clamp(21.41px, 0.611vw + 19.48px, 28px);
    --font30: clamp(22.94px, 0.654vw + 20.88px, 30px);
    --font36: clamp(27.53px, 0.785vw + 25.08px, 36px);
    --font40: clamp(30.59px, 0.872vw + 27.80px, 40px);


    /* ウェイト */
    --weight500: 500;
    --weight700: 700;

    /* 行間 */
    --lineHight147: 1.47;
    --lineHight166: 1.66;
    --lineHight175: 1.75;
    --lineHight200: 2.0;

    /* 文字間 */
    --fontSpace025: 0.025em;
    --fontSpace050: 0.05em;


    /* トランジションの変数　 */
    --transitionBase01: all 0.3s ease-in-out;
    --transitionBase02: all 0.5s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --borderRadius20: 20px;
    --borderRadius30: 30px;
    --borderRadiusCircle: 50%;

    --opacity07: .7;

}


@media screen and (max-width: 768px) {
    :root {
        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}



/*******************************************
common
*******************************************/

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight700);
    font-size: var(--font17);
}



p {
    text-align: justify;
    font-size: var(--font17);
    line-height: var(--lineHight175);
}

.section {
    position: relative;

    *:not(img) {
        border-radius: var(--borderRadius20);
    }
}

.about,
.question,
.environment {
    background-color: var(--beige01);
}

.section__inner {
    position: relative;
    width: min(100%, 980px);
    margin: 0 auto;
}

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: max(4.6%, 25px);
    font-size: var(--font36);
    line-height: var(--lineHight166);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: var(--weight700);
    text-align: center;
    z-index: 1;

    .ttlsub {
        font-size: 0.583em;
        color: var(--pink01);
        text-decoration: underline dotted;
        text-decoration-thickness: 3px;
        text-underline-offset: 0.4em;
        text-decoration-color: var(--pink01);
        margin-bottom: 0.8em;
    }
}

.marker {
    background: linear-gradient(transparent 90%, var(--yellow01) 90%);
    padding-bottom: 5px;
}

.list {
    li {
        position: relative;
        padding-left: 1em;

        &::before {
            position: absolute;
            content: "・";
            top: 0;
            left: 0;
            font-size: 1em;
        }
    }
}

.thin {
    letter-spacing: -0.5em;
}

.push {
    display: inline-block;
}

.block365,
.block480,
.block768 {
    display: none;
}



@media screen and (max-width:1024px) {
    .push1024 {
        display: inline-block;
    }

    .none1024 {
        display: none;
    }

    .section__inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width:768px) {
    .push768 {
        display: inline-block;
    }

    .none768 {
        display: none;
    }

    .block768 {
        display: block;
    }
}

@media screen and (max-width:480px) {
    .push480 {
        display: inline-block;
    }

    .none480 {
        display: none;
    }

    .block480 {
        display: block;
    }
}

@media screen and (max-width:365px) {
    .block365 {
        display: block;
    }
}



/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 550px);
    height: 70px;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-color: var(--blue01);
    font-size: var(--font19);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01) !important;
    transition: var(--transitionBase01);
    cursor: pointer;
    font-weight: var(--weight700);

    &:hover {
        opacity: var(--opacity07);
    }
}

.btn-green {
    background-color: var(--green01);
}

.btn-orange {
    background-color: var(--orange01);
}


@media screen and (max-width:480px) {
    .btn-outer {
        height: 50px;
    }
}



/*******************************************
entryBox
*******************************************/
.entryBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/*******************************************
追従ボタン
*******************************************/
.main__inner {
    position: relative;
}

.topReturn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 60px;
    aspect-ratio: 1;
    opacity: 0;
    visibility: hidden;
    z-index: 30;
    transition: var(--transitionBase01);



    &.show {
        opacity: 1;
        visibility: visible;
    }


    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--orange01);
        transition: var(--transitionBase01);

        &::before,
        &:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 50%;
            width: 30%;
            height: 2px;
            background-color: var(--white);
            transition: var(--transitionBase01);
        }

        &::before {
            transform: translate(-83%, -50%) rotate(-45deg);
        }

        &::after {
            transform: translate(-17%, -50%) rotate(45deg);
        }

        &:hover {
            opacity: var(--opacity07);
        }
    }

}


@media screen and (max-width: 768px) {
    .topReturn {
        width: 40px;
        height: 40px;
        bottom: calc(2% + 65px);
    }
}


/*******************************************
header
*******************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70px;
    transition: var(--transitionBase01);
    padding: 0 10px 0 20px;
    z-index: 50;
    background-color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.header__logo {
    width: 260px;

    a {
        transition: var(--transitionBase01);

        &:hover {
            opacity: var(--opacity07);
        }
    }
}

.headerNav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transitionBase02);
    background-color: var(--black02);
}

.headerNav__list {
    width: min(50%, 600px);
    height: 100%;
    background-color: var(--white);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    padding: clamp(40px, 10vh, 200px) 20px 0;
    transition: var(--transitionBase01);
}

.headerNav__item:not(.entryBox-nav) {
    margin-bottom: clamp(20px, 5vh, 80px);

    &:nth-child(4) {
        margin-bottom: 0;
    }

    a {
        font-size: 25px;
        font-weight: var(--weight700);
        transition: var(--transitionBase01);

        &:hover {
            color: var(--green01);
        }
    }
}

.entryBox-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: clamp(25px, 7vh, 100px);

    .btn-outer {
        max-width: 300px;
        width: calc((100% - 15px)/2);
    }
}

.entryBox-fixed {
    flex: 1;
    justify-content: flex-end;

    .btn-outer {
        width: min(100%, 215px);
        height: 50px;

        .btn {
            font-size: 15px;
        }
    }
}

.hamburger {
    position: relative;
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--orange01);
    border-radius: var(--borderRadiusCircle);
    cursor: pointer;
    transition: var(--transitionBase01);
    z-index: 100;
    margin-left: 10px;


    &:hover {
        opacity: var(--opacity07);
    }
}

.line {
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transitionBase01);

    &:nth-child(1) {
        top: 33%;
    }

    &:nth-child(3) {
        top: 67%;
    }
}

/* ハンバーガー開いた後 */
.header.active {
    .headerNav {
        opacity: 1;
        visibility: visible;
    }

    .headerNav__list {
        transform: translateX(0);
    }
}

@media screen and (max-width:1024px) {

    .bg-white {
        background-color: initial;
    }

    .headerNav__list {
        width: 100%;

    }

    .headerNav__item:not(.entryBox-nav) {
        text-align: center;

        a {
            font-size: 18px;

            &:hover {
                color: var(--black);
            }
        }
    }


    .entryBox-nav {
        justify-content: center;
    }




}



@media screen and (max-width:768px) {

    .header {
        position: relative;
        height: 60px;
    }

    .entryBox-fixed {
        flex: initial;
        margin: 0;
        position: fixed;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        width: min(95%, 600px);
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transitionBase01);
        z-index: 10;

        .btn-outer {
            width: calc((100% - 15px)/2);
        }

        &.show {
            opacity: 1;
            visibility: visible;
        }

        .btn-outer:last-child {

            .btn {
                border: 1px solid var(--white);
            }

        }

    }


    .hamburger {
        position: fixed;
        top: 30px;
        right: 10px;
        transform: translateY(-50%);
        width: 50px;
    }

}


@media screen and (max-width:480px) {
    .header {
        height: 60px;
        padding: 0 0 0 5px;
    }

    .header__logo {
        width: 200px;

        a {
            transition: var(--transitionBase01);

            &:hover {
                opacity: var(--opacity07);
            }
        }
    }

    .entryBox-nav {
        flex-direction: column;
        gap: 10px;

        .btn-outer {
            width: min(100%, 200px);
            height: 50px;
        }
    }

    .entryBox-fixed {
        gap: 5px;

        .btn-outer {
            width: calc((100% - 5px)/2);

            .btn {
                font-size: 13px;
            }
        }


    }

    .hamburger {
        top: 30px;
        right: 5px;
        width: 40px;
    }
}




/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    margin-top: 70px;
    aspect-ratio: 1400/749;
}

.mv__ttl {
    position: relative;
    padding: 30vw 0 0 4.6428571428571vw;
    font-size: 4.2857142857142vw;
    font-weight: var(--weight700);
    z-index: 2;


    .ttlsub {
        display: block;
        font-size: 0.4em;
        color: var(--green01);
        margin-top: 1.785714285714285vw;
    }
}

.mv__img {
    position: absolute;
    border-radius: 1.42857142857142vw;
    overflow: hidden;
}

.mv__img01 {
    top: 0;
    left: 0;
    width: 48.71428571428571vw;
}

.mv__img02 {
    top: 8.92857142857142vw;
    right: 0;
    width: 42vw;
}

.mv__img03 {
    bottom: 0;
    left: 51.642857142857146vw;
    width: 22.428571428571427vw;
}

@media screen and (max-width:768px) {
    .mv {
        margin-top: 0;
        aspect-ratio: 750/870;
    }

    .mv__ttl {
        font-size: 9vw;
        padding: 37vw 0 0;
        width: fit-content;
        margin: 0 auto;

        .ttlMain {
            line-height: 1.3;
        }

    }

    .mv__img01 {
        width: 60vw;
    }

    .mv__img02 {
        top: auto;
        bottom: 5%;
        width: 45vw;
    }

    .mv__img03 {
        bottom: 0;
        left: 20vw;
        width: 35vw;
    }
}



/*******************************************
ページネーション
*******************************************/
.paginationFlex {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: clamp(30px, 10%, 50px);
    gap: 10px;
}

.pagiDot {
    width: fit-content !important;

    .swiper-pagination-bullet-active {
        background-color: transparent;
        background-color: var(--white);
        opacity: 1;
    }
}

.pagiBtn {
    position: relative;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--green01);
    border-radius: var(--borderRadiusCircle) !important;
    cursor: pointer;

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        background-color: var(--white);
        width: 30%;
        height: 2px;
    }

    &::before {
        transform-origin: bottom right;
        transform: translate(-65%, -33%) rotate(45deg);
    }

    &::after {
        transform-origin: top right;
        transform: translate(-65%, -67%) rotate(-45deg);
    }

}

.prevBtn {
    transform: rotate(180deg);
}

@media screen and (max-width:768px) {
    .paginationFlex {
        display: flex;
    }
}


/*******************************************
about
*******************************************/
.about {
    .section__inner {
        padding: clamp(40px, 4%, 55px) 0 clamp(50px, 8%, 115px);
    }

    .section__ttl {
        position: relative;
        align-items: flex-start;
        padding-left: 2.36111em;

        &::before {
            position: absolute;
            content: "";
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 1.944em;
            height: 2px;
            background-color: var(--black);
        }
    }
}

.about__bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 1400/590;
    min-height: 400px;
    background-color: var(--white);
    border-radius: 0 !important;

    img {
        object-fit: cover;
        object-position: bottom;
        height: 100%;
    }
}

.about__topTxt {
    font-size: var(--font19);
    text-align: center;
    line-height: var(--lineHight200);
    font-weight: var(--weight700);
}

.aboutBox {
    position: relative;
    background-color: var(--green02);
    color: var(--white);
    padding: max(6.12%, 30px) 4.082% max(10%, 40px);
    margin-top: max(7.2%, 30px);
    border-radius: var(--borderRadius30) !important;
}

.aboutBox__parts {
    position: absolute;
    top: 0;
    right: 0;
    width: max(19%, 10px);
    transform: translate(-20%, 16%);
}

.aboutBox__ttl {
    position: relative;
    font-size: var(--font36);
    text-align: center;
}

.aboutSwiper {
    overflow: visible;
}

.aboutBox__txt {
    position: relative;
    font-size: var(--font19);
    text-align: center;
    line-height: var(--lineHight200);
    margin: max(4.4%, 15px) 0 max(5.5%, 25px);
}

.aboutSwiper__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px 50px;

    .swiper-slide01 {
        position: relative;
        background-color: var(--white);
        color: var(--black);
        width: calc((100% - 50px)/2);
        min-height: 275px;
    }
}

.aboutHouse__link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: var(--transitionBase01);

    &:hover {
        opacity: 1;
    }
}

.aboutHouse__detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 10px 83px;
    text-align: center;
    flex-grow: 1;

    dt {
        position: relative;
        font-size: var(--font17);
        margin-bottom: 20px;
        line-height: var(--lineHight147);
        padding-bottom: 15px;
        min-height: calc(1.47em * 3);
        display: flex;
        justify-content: center;
        align-items: center;

        &::before {
            position: absolute;
            content: "";
            bottom: 0;
            left: 50%;
            width: 2.941em;
            height: 3px;
            background-color: var(--green01);
            transform: translateX(-50%);

        }
    }

    dd {
        font-size: var(--font26);
        line-height: 1.3846;
        flex-grow: 1;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.aboutHouse__img {
    position: absolute;
    width: 29.41%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 43%);
}

.paginationFlex-about {

    margin-top: max(10%, 50px);

    .pagiBtn {
        background-color: transparent;
    }

    .pagiDot {

        .swiper-pagination-bullet-active {
            background-color: var(--white);
        }
    }
}

@media screen and (max-width:1024px) {
    .aboutSwiper__list {
        gap: 70px 30px;

        .swiper-slide01 {
            width: calc((100% - 30px)/2);
        }
    }
}

@media screen and (max-width:768px) {
    .aboutBox {
        overflow: hidden;
    }

    .aboutSwiper__list {

        .swiper-slide01 {
            min-height: initial;
        }
    }

    .aboutHouse__detail {
        padding-bottom: 70px;

        dd {
            max-height: calc(1.47em * 2);
        }
    }
}

@media screen and (max-width:575px) {
    .aboutSwiper__list {
        gap: 50px 15px;

        .swiper-slide01 {
            width: calc((100% - 15px)/2);
            min-height: initial;
        }
    }

}

@media screen and (max-width:480px) {
    .about {
        .section__ttl {
            padding-left: 1em;

            &::before {
                width: 0.7em;
            }
        }
    }

    .aboutHouse__detail {
        padding-bottom: 45px;
        padding-top: 10px;

        dt {
            font-size: 10px;
            min-height: 74px;
        }

        dd {
            font-size: 15px;
            min-height: calc(1.47em * 2);
        }
    }

    .aboutBox__parts {
        width: max(15%, 10px);
        transform: translate(-5%, 3%);
    }
}

@media screen and (max-width:400px) {
    .aboutHouse__detail {
        dd {
            font-size: 14px;
        }
    }
}



@media screen and (max-width:375px) {
    .about__bg {
        min-height: 600px;
    }
}

@media screen and (max-width:374px) {
    .aboutSwiper__list {
        width: min(100%, 250px);
        margin: 0 auto;

        .swiper-slide01 {
            width: 100%;
            min-height: initial;
        }
    }

    .aboutHouse__detail {
        padding-bottom: 45px;
        padding-top: 20px;

        dt {
            font-size: 12px;
            min-height: initial;
        }

        dd {
            font-size: 18px;
            min-height: initial;
        }
    }

    .aboutHouse__img {
        width: min(29.41%, 50px);
    }
}

/******************************************
流れる続けるスライダー
*******************************************/
.loopSwiper {
    background-color: var(--beige01);
}

.loopSwiper__list {
    transition-timing-function: linear;

    .swiper-slide {
        overflow: hidden;
        border-radius: var(--borderRadius20);
    }

    .swiper-slide02 {
        margin-top: max(4%, 15px);
    }
}




/*******************************************
environment
*******************************************/
.environment {
    .section__inner {
        padding: clamp(40px, 7%, 90px) 0 clamp(60px, 11.5%, 160px);
    }
}

.environmentData {
    margin: max(9.1%, 40px) auto;
}

.environmentList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;

    .environmentList__item {
        width: calc((100% - 60px)/3);
        background-color: var(--orange01);
        min-height: 200px;
        color: var(--white);
    }
}

.environmentData__detail {
    text-align: center;
    padding: 25px 5px 30px;
    font-size: var(--font25);
    line-height: 1.1;

    .big01 {
        font-size: 4.4em;
    }

    .big02 {
        font-size: 2.8em;
    }

    .big03 {
        font-size: 2.4em;
    }

    .big04 {
        font-size: 3em;
    }

    .big05 {
        font-size: 1.64em;
    }
}

.environmentSwiper__list {
    justify-content: flex-start !important;

    .swiper-slide {
        position: relative;
        background-color: var(--pink01);
        align-items: center;
        justify-content: center;

        &::before,
        &::after {
            position: absolute;
            content: "";
            bottom: 30px;
            right: 15px;
            width: 25px;
            height: 2px;
            background-color: var(--white);
        }

        &::after {
            transform: rotate(90deg);
        }
    }
}

.environmentSwiper__item {
    font-size: var(--font30);
}

.paginationFlex-environment {
    .pagiBtn {
        background-color: var(--pink01);
    }

    .pagiDot {
        .swiper-pagination-bullet {
            background-color: var(--white);
            opacity: 1;
            border: 0.5px solid var(--pink01);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--pink01);
        }
    }
}


.environmentBanner {
    position: relative;
    background-color: var(--blue01);
    color: var(--white);
    padding: 35px 5px 55px;
}

.environmentBanner__inner {
    position: relative;
    width: min(100%, 908px);
    margin: 0 auto;
}

.environmentBannerTop {
    width: min(100%, 354px);
    margin: 0 auto;
}


.environmentBannerTop__ttl {
    position: relative;
    font-size: var(--font30);
    text-align: center;
    margin-bottom: 25px;

    span {
        position: relative;
        z-index: 2;
    }

    &::before,
    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/environment/star01.png);
        background-repeat: no-repeat;
        background-size: contain;
        bottom: 0;
        left: 0;
        width: 1.083em;
        aspect-ratio: 1;
        transform: translate(28%, 10%);
        z-index: 0;
    }

    &::after {
        background-image: url(../img/environment/star02.png);
        bottom: auto;
        left: auto;
        top: 0;
        right: 0;
        width: 2.09em;
        transform: translate(10%, -42%);
    }

}


.environmentBannerTop__txt {
    font-size: var(--font17);
    text-align: center;
    line-height: var(--lineHight147);

    .small {
        font-size: 0.8em;
    }
}

.environmentBanner__detail {
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--font19);
    text-align: center;
    width: min(100%, 222px);

    dt {
        font-size: 1em;
        background-color: var(--white);
        border-radius: var(--borderRadius01);
        color: var(--blue01);
        line-height: 1.2;
        padding: 2.5px;
    }

    dd {
        margin-top: -8px;
    }

    .big01 {
        font-size: 5.789em;
        line-height: 1;
    }

    .big02 {
        font-size: 3.157em;
        line-height: 1;
    }
}

.environmentBanner__detail02 {
    left: auto;
    right: 0;
}

.environment-container {
    position: relative;
}

.environment__parts01 {
    position: absolute;
    right: -2%;
    bottom: 100%;
    width: clamp(50px, 16vw, 223px);
}

.environment__parts02 {
    position: absolute;
    left: -20.5%;
    bottom: 0;
    width: clamp(100px, 24vw, 335px);
}

@media screen and (max-width:1024px) {
    .environment__parts02 {
        left: 0;
    }
}

@media screen and (max-width:880px) {

    .environmentBanner__inner {
        width: min(100%, 500px);
    }

    .environmentBannerBottom {
        display: flex;
        justify-content: space-between;
        margin-top: max(6%, 15px);
    }

    .environmentBanner__detail {
        position: initial;
        width: calc((100% - 30px)/2);
    }
}

@media screen and (max-width:768px) {
    .environmentData {
        width: min(100%, 500px);

        .environmentList {
            justify-content: center;

        }

        .environmentList__item {
            width: calc((100% - 30px)/2);

        }
    }
}

@media screen and (max-width:480px) {
    .environmentData {
        width: min(100%, 400px);

        .environmentList {
            gap: 15px;
        }

        .environmentList__item {
            width: calc((100% - 15px)/2);
            min-height: initial;
            aspect-ratio: 1;
            display: flex;
            justify-content: center;
            align-items: center;

        }
    }

    .environmentData__detail {
        padding: 0 5px;
        font-size: max(4vw, 14px);


        .big01 {
            font-size: 3.6em;
        }

        .big02 {
            font-size: 2.3em;
        }

        .big03 {
            font-size: 2em;
        }

        .big04 {
            font-size: 2.5em;
        }

        .big05 {
            font-size: 1.36em;
        }
    }

    .environmentSwiper {
        width: min(100%, 200px) !important;
        aspect-ratio: 1;
    }

    .environmentBanner {
        padding: 25px 10px;
    }

    .environmentBannerTop__ttl {
        width: min(100%, 300px);
        margin: 0 auto 15px;

        &::before {
            transform: translate(0, 27%);
        }

        &::after {
            transform: translate(0, -27%);
        }
    }


    .environmentBanner__detail {
        position: initial;
        width: calc((100% - 5px)/2);

        .big01 {
            font-size: 3.5em;
            line-height: 1.5;
        }

        .big02 {
            font-size: 1.5em;

        }
    }

}

@media screen and (max-width:375px) {
    .environmentData {
        width: min(100%, 400px);

        .environmentList {
            gap: 5px;
        }

        .environmentList__item {
            width: calc((100% - 5px)/2);
        }
    }

    .environmentBanner__detail {
        dt {
            font-size: 3.8vw;
        }
    }

}

/*******************************************
modal
*******************************************/
/* 共通
ーーーーーーーーーーーーーーーーーーー */
.modalOpen {
    cursor: pointer;
    transition: var(--transitionBase01);

    &:hover {
        opacity: var(--opacity07);
    }
}

.no-scroll {
    overflow: hidden;

    body {
        overflow: scroll;
    }
}

.modal {
    /* 背景 */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
    height: 100vh;
    background-color: var(--pink02);
    z-index: -100;
    overflow: auto;
    transition: var(--transitionBase01);
}

.modalBox-outer {
    /* 最大幅*/
    position: absolute;
    width: min(100vw, 1000px);
    height: auto;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: var(--transitionBase01);
    padding: clamp(40px, 10%, 140px) 0;

}

.modalBox {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: var(--beige01);
    height: auto;
    border-radius: var(--borderRadius20);
}

.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;

    .show.modalBox-outer {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        z-index: 1001;
    }
}

.modalClose {
    cursor: pointer;
    transition: var(--transitionBase01);

    &:hover {
        opacity: var(--opacity07);
    }
}

/* モーダル中身のインナー */
.modal__inner {
    width: min(100%, 915px);
    margin: 0 auto;
    padding: 135px 0;
}

.modalClose-top {
    position: absolute;
    content: "";
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--orange01);
    top: 0;
    right: 0;
    border-radius: var(--borderRadiusCircle);
    transform: translate(50%, -50%);
    z-index: 10;
    transition: var(--transitionBase01);

    &::before,
    &::after {
        position: absolute;
        content: "";
        width: 50%;
        height: 2px;
        top: 50%;
        left: 50%;
        background-color: var(--white);
        transition: var(--transitionBase01);
    }

    &::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    &::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    &:hover {
        opacity: var(--opacity07);

    }
}

.btn-outer-modal {
    width: min(100%, 400px);
    margin: max(6.5%, 40px) auto 0;
}



@media screen and (max-width:1024px) {
    .modal__inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .modalClose-top {
        top: 10px;
        right: 10px;
        transform: none;
    }
}




@media screen and (max-width:768px) {


    .modalClose-top {
        width: 40px;

        &:hover {
            background-color: var(--blue01);

            &::before,
            &::after {
                background-color: var(--white);
            }

        }
    }

    .modal__inner {
        padding-top: max(10%, 40px);
    }

}










/*******************************************
modal-environment
*******************************************/
.modal-environment {
    .modalBox {
        border-radius: var(--borderRadius20);
        overflow: hidden;
        background-color: var(--pink01);
    }

    .modalBox-outer {
        width: min(100vw, 750px);
        padding: 0;
        display: flex !important;
        justify-content: center;
        align-items: center;
        height: 100vh;
        z-index: -100;
    }
}

.environmentModal__detail {
    display: flex;
    flex-direction: column;
    font-size: var(--font40);
    height: 11.75em;
    text-align: center;



    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--pink01);
        color: var(--white);
        height: 3.15em;
    }

    dd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        letter-spacing: var(--fontSpace025);
        color: var(--pink01);
        background-color: var(--beige01);
        line-height: 1.5;

        .big01 {
            font-size: 3em;
            line-height: 1.25;

        }
    }
}

.environmentModal__txt {
    transform: translateY(-13%);
}

.environmentModal__btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: var(--font17);
    color: var(--black);
    cursor: pointer;

    span {
        position: relative;
        padding-right: 1.3em;

        &::before,
        &::after {
            position: absolute;
            content: "";
            top: 50%;
            right: 0;
            width: 1em;
            height: 2px;
            transform: translateY(-50%) rotate(45deg);
            background-color: var(--pink01);
        }

        &::after {
            transform: translateY(-50%) rotate(-45deg);
        }
    }
}



@media screen and (max-width:480px) {
    .environmentModal__detail {
        height: 9em;

        dt {
            font-size: 0.6em;
        }

        dd {
            font-size: 0.6em;

            .big01 {
                font-size: 2em;
            }
        }
    }
}

/*******************************************
modal-voice
*******************************************/
.modal-voice {
    .questionDetail {

        dt,
        .dd-inner {
            padding: 15px;
        }

        dt {
            background-color: transparent;
            padding-left: 0;
        }

        .dd-inner {
            margin: 0;
        }

        dd {
            background-color: var(--white);
            border-radius: 5px;

            .txt {
                padding: 0;
            }
        }
    }
}

.modalMv {
    position: relative;
    margin: 0 auto max(3%, 10px);
}

.modalMv__txtBox {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.modalMv__ttl {

    p {
        color: var(--orange01);
        font-size: var(--font30);
    }
}

.modalMv__img {
    width: clamp(160px, 39%, 350px);
    margin-left: auto;
}

.modalMv__detail {
    margin-top: 35px;
    font-size: var(--font19);
    font-weight: var(--weight700);

    .type {
        line-height: 1.4;
        font-size: 0.789em;
    }

    .name {
        font-size: 1.79em;
        line-height: 1.3;

        .small {
            font-size: 0.45em;
            margin-left: 0.3em;
        }
    }
}

.benefits__detail {
    width: min(55%, 484px);
    margin-top: 15px;
    font-size: var(--font15);

    dt {
        color: var(--pink01);
        margin-bottom: 5px;
    }

    dd {
        padding: 0.8em 0 1em;
        line-height: 1.6;
        background-image: radial-gradient(circle, var(--pink01) 1px, transparent 1px), radial-gradient(circle, var(--pink01) 1px, transparent 1px);
        background-position: left top, left bottom;
        background-repeat: repeat-x, repeat-x;
        background-size: 6px 2px, 6px 2px;
    }
}


.modal-dd-subTtl {
    display: block;
}

.modal-dd-detail {
    margin-top: var(--font15);
}

.modal-dd-detail__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: var(--font15);

    &:last-child {
        margin-bottom: 0;
    }

    .time {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 4em;
        height: 1.3em;
        background-color: var(--pink02);
        color: var(--white);
        border-radius: var(--borderRadius01);
        margin-right: 10px;
        font-weight: var(--weight500);
    }

    .text {
        flex: 1;
    }
}

.layout01 {
    margin-bottom: 15px;

    &:last-child {
        margin-bottom: 0;
    }
}

.layout01__ttl {
    display: block;
    margin-bottom: 10px;
}

.layout01Box {
    margin-bottom: var(--font15);

    &:last-child {
        margin-bottom: 0;
    }

    .list li {
        line-height: 1.5;
    }
}

.layout01Box__ttl {
    display: block;
    margin-bottom: 3px;
}



@media screen and (max-width: 768px) {
    .modalMv {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: min(100%, 600px);
        margin-left: auto;
        margin-right: auto;
    }

    .modalMv__txtBox {
        position: initial;
    }

    .modalMv__img {
        margin: 0 0 max(5%, 15px) 0;
    }

    .modalMv__detail {
        margin-top: max(3%, 10px);
    }

    .benefits__detail {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .modalMv__detail {
        .name {
            font-size: 1.4em;
        }
    }

    .modal-voice {
        .questionDetail {
            dt {
                padding-right: 0;

                .q-icon {
                    margin-right: 5px;
                }

                .txt {
                    text-align: left;
                }
            }



            dd {
                margin-top: 2.5%;

                .dd-inner {
                    padding: 15px 10px;
                }
            }
        }
    }

    .modalMv {
        position: relative;
        margin: 0 auto 30px;
    }

    .modal-dd-detail__item {
        .time {
            width: 3em;
            margin-right: 5px;

        }
    }
}



/*******************************************
work
*******************************************/
.work {
    .section__ttl {
        .ttlsub {
            color: var(--green01);
            text-decoration-color: var(--green01);
        }
    }

    .section__inner {
        padding: clamp(40px, 8%, 110px) 0;
    }
}

.work__parts01 {
    position: absolute;
    bottom: 100%;
    left: 1.5%;
    width: clamp(50px, 14%, 131px);
}

.work__parts02 {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: clamp(50px, 23.5%, 229px);
}

.work-container {
    position: relative;
}

.workList {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.workList__item {
    width: calc((100% - 60px)/3);
    background-color: var(--beige01);
    display: flex;
    flex-direction: column;
    padding: 35px 1em;

    .img {
        width: min(100%, 126px);
        margin: 0 auto 35px;
    }

    &:last-child {
        .workList__detail dd {
            text-align: justify;


        }
    }
}

.workList__detail {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;


    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: var(--font30);
        color: var(--green01);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    dd {
        font-size: var(--font17);
        line-height: var(--lineHight175);
    }
}

@media screen and (max-width:768px) {
    .workList {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .workList__item {
        width: calc((100% - 20px)/2);

        .img {
            width: min(90%, 100px);
            margin: 0 auto 15px;
        }
    }

    .workList__detail {
        dt {
            margin-bottom: 10px;
        }
    }
}

@media screen and (max-width:480px) {
    .workList {
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .workList__item {
        width: 100%;
        padding: 20px 1em;

        .img {
            width: min(90%, 80px);
        }
    }

    .workList__detail {
        dt {
            margin-bottom: 10px;
        }
    }
}


/*******************************************
voice
*******************************************/
.voice {
    .section__inner {
        padding-bottom: clamp(50px, 9%, 125px);
    }
}

.voice__ttl {
    position: relative;
    background-color: var(--pink01);
    color: var(--white);
    text-align: center;
    padding: 0.94em 5px;
    font-size: var(--font28);

    &::before {
        position: absolute;
        content: "";
        display: inline-block;
        width: 1.321em;
        aspect-ratio: 37/29;
        background: var(--pink01);
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 97%);
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
    }
}

.voiceList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 0 0;
}

.voiceList__item {
    background-color: var(--beige01);
    width: calc((100% - 30px)/2);
    display: flex;
    flex-direction: row-reverse;
    padding: 15px 15px 0 30px;
    cursor: pointer;
    transition: var(--transitionBase01);

    &:hover {
        opacity: var(--opacity07);
    }

    .icon {
        width: 187px;
    }

    .txtBox {
        padding: 1em 0 1.17em;
        flex: 1;
        display: flex;
        flex-direction: column;

        p {
            margin-bottom: 10px;
        }
    }

    .read {
        position: relative;
        display: block;
        font-size: var(--font24);
        color: var(--pink01);
        margin-top: auto;
        width: 4.583em;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/interview/arrow.svg);
            background-repeat: no-repeat;
            background-size: contain;
            bottom: 15%;
            right: 0;
            width: 1.875em;
            aspect-ratio: 45/11;
        }
    }
}


@media screen and (max-width:1024px) {
    .voiceList {
        width: min(100%, 500px);
        margin: 40px auto 0;
        flex-direction: column;
    }

    .voiceList__item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;

        .icon {
            width: min(40%, 140px);
            margin-bottom: 10px;
        }

        .read {
            margin: 10px 0 0 auto;
        }

        .txtBox {
            padding-top: 0;
            padding-bottom: 0;
            flex: initial;
            width: 100%;
            align-items: center;
        }
    }
}

@media screen and (max-width:480px) {
    .voiceList {
        width: min(100%, 250px);
    }

    .voiceList__item {
        width: 100%;
        max-height: 250px;
        aspect-ratio: 1;
        padding-top: 35px;


        .txtBox {
            height: 100%;

            .read {
                margin-top: auto;
            }
        }
    }
}


/*******************************************
question
*******************************************/
.question {
    .section__inner {
        padding: clamp(40px, 8%, 105px) 0 clamp(40px, 4%, 55px)
    }
}

.question-container {
    position: relative;
}

.question__parts01 {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: max(23.87%, 60px);
    transform: translate(0, -20%);
}

.question__parts02 {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: max(14.2%, 30px);
    transform: translate(-14%, -3%);
}

.questionDetail {
    margin: 0 0 max(11.23%, 30px) 0;
}

.question__txt {
    text-align: center;
    font-size: var(--font30);
    margin-bottom: 1em;
}

.btn-outer-question {
    margin: 0 auto;
}



/*******************************************
アコーディオン
*******************************************/
.aco-container {
    transition: var(--transitionBase02);
    overflow: hidden;
    border-radius: 0 !important;
}

.aco-click {
    position: relative;
    cursor: pointer;
    transition: var(--transitionBase02);

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 2%;
        width: 1.1em;
        height: 2px;
        background-color: var(--orange01);
        transform: translateY(-50%);
        transition: var(--transitionBase02);
    }

    &::after {
        transform: translateY(-50%) rotate(90deg);
    }
}

.aco-box {
    max-height: 0;
    transition: var(--transitionBase02);
}

.aco-container.open {
    .aco-click {
        &::before {
            transform: translateY(-50%) rotate(180deg);
        }

        &::after {
            transform: translateY(-50%) rotate(360deg);
        }
    }
}


.questionDetail__item {
    margin-bottom: max(4.08%, 20px);

    dt,
    .dd-inner {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 15px 25px 15px 15px;

        p {
            font-size: var(--font19);
            padding-top: 11px;
        }
    }

    dt {
        background-color: var(--white);
        border-radius: 0 !important;
    }

    .dd-inner {
        margin-top: 10px;

        p {
            padding-top: 14px;
            font-size: var(--font17);
        }
    }

    .q-icon,
    .a-icon {
        position: relative;
        font-size: var(--font21);
        width: 2.285em;
        aspect-ratio: 1;
        border-radius: var(--borderRadiusCircle);
        margin: 0 10px 0 0;

        &::before {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -56%);
            font-size: 1em;
        }
    }

    .q-icon {
        background-color: var(--beige02);

        &::before {
            content: "Q";
            color: var(--orange01);
        }
    }

    .a-icon {
        background-color: var(--orange01);

        &::before {
            content: "A";
            color: var(--white);
        }
    }

    .txt {
        flex: 1;
        line-height: 1.3;
    }
}

@media screen and (max-width:480px) {
    .questionDetail__item {

        dt,
        .dd-inner {
            padding: 5px 25px 5px 10px;

            p {
                padding-top: 5px;
            }
        }

        .dd-inner {
            margin-top: 5px;

            p {
                padding-top: 7px;
            }
        }

        .q-icon,
        .a-icon {
            width: 1.8em;

            &::before {
                font-size: 0.8em;
            }
        }

    }
}



/*******************************************
info
*******************************************/
.info {
    position: relative;
    min-height: 350px;

    .section__inner {
        padding: 27% 0 19%;
    }
}

.info__parts {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -1%);
    z-index: 1;
}

.bg-info {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;

    img {
        object-fit: cover;
        height: 100%;
    }
}

.btn-outer-info {
    width: min(100%, 448px);
    height: 80px;
}

@media screen and (max-width:768px) {
    .btn-outer-info {
        width: min(100%, 300px);
        height: 70px;
    }
}

@media screen and (max-width:480px) {
    .info {
        position: relative;
        min-height: initial;

        .section__inner {
            padding-top: 33%;
        }
    }

    .btn-outer-info {
        width: min(70%, 250px);
        height: 50px;
    }
}


/*******************************************
sp時　スライダー
*******************************************/

.resetSwiper__list {
    flex-wrap: wrap;
    justify-content: space-between;

    .swiper-slide {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}

@media screen and (max-width:768px) {

    .resetSwiper {
        width: min(100%, 350px);
        overflow: visible;
    }

    .resetSwiper__list {
        flex-wrap: nowrap;
        justify-content: initial !important;
        gap: 0;

        .swiper-slide {
            width: auto;
        }

        .swiper-slide02 {
            width: auto;
        }
    }

}


/*******************************************
footer
*******************************************/

.footer {
    background-color: var(--green01);
    padding: 50px 0;
    position: relative;
    font-size: 12px;
    color: var(--white);
    font-weight: var(--weight500);
}

.footer-nav {
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    gap: 30px;

    a {
        position: relative;

        &:hover {
            opacity: var(--opacity07);
        }
    }

    a:not(:first-child):before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--white);
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    text-align: center;
    font-size: 12px;
}



@media screen and (max-width:768px) {
    .footer {
        padding-bottom: 100px;
    }
}


@media screen and (max-width:520px) {

    .footer {
        .inner {
            padding: 0 15px;
        }
    }

    .footer-nav {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 10px;


        & a:last-child::before {
            display: none;
        }

        & a:not(:first-child):before {
            left: -14px;
        }
    }

    .copyright {
        text-align: center;
        font-size: 9px;
    }
}