@charset "UTF-8";

/* ===================================
about
==================================== */

.about__aboutBox {
    padding: 0 var(--contentPadding);
}

.about__aboutTxt {
    color: #574E40;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    margin-top: 15px;
}

.aboutImgSp {
    display: block;
    margin-top: 50px;
}

.aboutImgPc {
    display: none;
}


/* ===================================
about tablet
==================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section__about__about {
        margin-top: 50px;
    }
}
/* ===================================
about pc
==================================== */

@media screen and (min-width: 1024px) {
    .section__about__about {
        margin-top: 50px;
    }
    .aboutImgSp {
        display: none;
    }

    .aboutImgPc {
        display: block;
        width: 100%;
        max-width: 1440px;
        height: auto;
        margin: 0 auto;
    }
        
    .about__aboutTxt {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 3.5;
    }
}


/* ===================================
features
==================================== */

.section__topicSubtxt__features {
    color: #F6AD38;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
}

.featuresLineup {
    margin-top: 20px;
}

.featuresImg {
    width: 100%;
}

.featuresTxtBox {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.featuresNumberOne {
    color: #DA8D12;
    text-align: center;
    font-size: 5.6rem;
    font-weight: 600;
    margin-right: 23px;
    padding-bottom: 10px;
}

.featuresNumberTwo {
    color: #62B13E;
    text-align: center;
    font-size: 5.6rem;
    font-weight: 600;
    margin-right: 23px;
    padding-bottom: 10px;
}

.featuresNumberThree {
    color: #606FCB;
    text-align: center;
    font-size: 5.6rem;
    font-weight: 600;
    margin-right: 23px;
    padding-bottom: 10px;
}

.featuresTxt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8;
}

.featuresSubTxt {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin-top: 20px;
}

.featuresSubTxt:last-child {
    padding-bottom: 60px;
}


/* ===================================
features tablet
==================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}
/* ===================================
features pc
==================================== */

@media screen and (min-width: 1024px) {
    .FeaturesBox {
        max-width: 1440px;
        margin: 0 auto;
    }
    .featuresList {
        display: flex;
        gap: 110px;
        margin-bottom: 85px;
    }
    .featuresList.reverse {
        flex-direction: row-reverse;
    }   
     .featuresBox {
        max-width: 572px;
    }    
    .featuresNumberOne,
    .featuresNumberTwo,
    .featuresNumberThree {
        font-size: 9.3rem;
    }
    .featuresTxt {
        font-size: 2.7rem;
    }
    .featuresSubTxt {
        font-size: 1.6rem;
    }
}


/* ===================================
message
==================================== */

.messageSp {
    display: block;
}

.messagePc {
    display: none;
}

.messageImg {
    width: 100%;
}

.section.section__message {
    background-color: #EEE1CC;
}

.section__topicSubtxt__message {
    color: #90CC73;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
}

.messageTxtBox {
    padding-bottom: 60px;
}

.messageTxt {
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
    margin-top: 60px;
}

.messageSubtxt {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin-top: 40px;
}

.scroll-infinity__aboutPc {
    display: none;
}

.scroll-infinity__aboutSp {
    display: block;
    background-color: #EEE1CC;
    padding-bottom: 50px;
}

.aboutSlide {
    border-radius: 10px;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }

    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0
    }

    .scroll-infinity__list--left {
        animation: infinity-scroll-left 80s infinite linear 0.5s both;
    }

    .scroll-infinity__item {
        width: calc(300vw / 6);
        margin-right: 30px;
    }

    .scroll-infinity__item>img {
        width: 100%;
    }

/* ===================================
message tablet
==================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}
/* ===================================
message pc
==================================== */

    @media screen and (min-width: 1024px) {
        .section__message {
            border-radius: 100% 100% 0 0/65%;
        }
        .MessageBox {
            display: flex;
            gap: 155px;
            max-width: 1440px;
            margin: 0 auto;
        }
        .messageSp {
            display: none;
        }

        .messagePc {
            display: block;
        }

        .messageTxt {
            font-size: 2.7rem;
            font-weight: 600;
            line-height: 2;
        }

        .messageSubtxt {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 2;
        }

        .scroll-infinity__aboutPc {
            display: block;
            background-color: #EEE1CC;
            padding: 100px 0 100px;
        }

        .scroll-infinity__aboutSp {
            display: none;
        }

        @keyframes infinity-scroll-left {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }

        .scroll-infinity__wrap {
            display: flex;
            overflow: hidden;
            max-width: 1440px;
            margin: 0 auto;
        }

        .scroll-infinity__list {
            display: flex;
            list-style: none;
            padding: 0
        }

        .scroll-infinity__list--left {
            animation: infinity-scroll-left 80s infinite linear 0.5s both;
        }

        .scroll-infinity__item {
            width: calc(100vw / 6);
        }

        .scroll-infinity__item>img {
            width: 100%;
        }

    }


 /* ===================================
member
==================================== */

    .section__memberPage {
        background: rgba(78, 135, 136, 0.59);
        padding-bottom: 50px;
    }

    .member__category {
        color: #FFF;
        font-family: "sofia-pro";
        font-size: 2rem;
        font-weight: 500;
    }

    .memberContent {
        padding: 0 var(--contentPadding);
        margin-top: 60px;
    }

    .memberMemo {
        margin-top: 27px;
    }

    .memberName {
        display: flex;
        margin-top: 7px;
    }

    .memberNameTxt {
        color: #FFF;
        font-size: 2.5rem;
        font-weight: 400;
        line-height: normal;
        margin-right: 25px;
    }

    .memberNameTxtEn {
        color: #FFF;
        font-size: 1.4rem;
        font-weight: 400;
        margin-top: 13px;
    }

    .memberComment {
        color: #FFF;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2;
        margin-top: 20px;
    }
    .memberImage {
        width: 100%;
        border-radius: 20px;
    }

 /* ===================================
member tablet
==================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .MemberBOX {
        max-width: 1440px;
        margin: 0 auto;
    }
    .memberBox1,
    .memberBox2 {
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }
    .memberBox2 {
        padding: 0 17%;
    }
    .memberContent:first-child {
        margin-top: 60px;
    }
    .memberContent {
        flex: 1;
        padding: 0;
        margin-bottom: 60px;
        max-width: 360px;
    }
    .memberNameTxt {
        font-size: 2rem;
        white-space: nowrap;
        margin-right: 15px;
    }
    .memberNameTxtEn {
        font-size: 1.2rem;
        margin-top: 9px;
    }
    .memberComment {
        font-size: 1.4rem;
    }
}
 /* ===================================
member pc
==================================== */
    @media screen and (min-width: 1024px) {
        .MemberBOX {
            max-width: 1440px;
            margin: 0 auto;
        }
        .memberBox1,
        .memberBox2 {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }
        .memberBox2 {
            padding: 0 17%;
        }
        .memberContent:first-child {
            margin-top: 60px;
        }
        .memberContent {
            flex: 1;
            padding: 0;
            margin-bottom: 60px;
            max-width: 360px;
        }
        .memberImage {
            border-radius: 20px;
        }
    }