@charset "utf-8";

/* ====== sp News ====== */
.section--news{
    background-color: var(--primary-white);
    padding: 7rem 0;
}
.newslist_item {
    padding: 0 4.2% 0 4.2%;
    margin: 2.4rem 0 2.4rem 0;
}
.newslist_item_innner {
    width: 100%;
    height: 100%;
    border: 1px solid #828796;
    border-radius: 20px;
}
/* newsList_画像 */
.newslist_img1 {
    background-image: url(../images/ibent1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 50vw;
    margin: 0 auto;
}
.newslist_img2 {
    background-image: url(../images/ibent2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 50vw;
    margin: 0 auto;
}
.newslist_img3 {
    background-image: url(../images/ibent3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 50vw;
    margin: 0 auto;
}

/* newsList_日付イベント名 */
.newslist_content {
    padding: 4.2%;
}
.newslist_category_tag {
    padding: 0.2rem 1rem;
    border: 1px solid #828796;
    border-radius: 50px;
}
.newslist_category_date {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.newslist_category {
    font-size: 1.1rem;
}
.newslist_date {
    font-size: 1.4rem;
}
.newslist_title {
    font-size: 1.6rem;
    margin-top: 0.8rem;
}

.news_note {
    padding: 0 4.2%;
}

@media screen and (min-width:1024px) {
/* ====== pc news ====== */
    .section--news {
        padding: 10rem 0;
    }
    .newslist {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        padding: 5.5rem 7.6%;
    }
    .newslist_item {
        padding: 0 ;
        margin: 0;
    }
    .newslist_img1,.newslist_img2,.newslist_img3 {
        height: 20vw;
    }
}

/* ====== sp concept ====== */
.section--concept {
    padding-top: 7rem;
}
.concept_innner1 {
    margin: 0 4.2% 0 4.2%;
}

.pc_concept_img {
    display: none;
}
.sp_concept_img {
    padding-top: 3.2rem;
}

/* concept テキスト */
.concept_txt {
    padding: 1.6rem 0 5.4rem 0;
    text-align: center;
}
.concept_txt--1,.concept_txt--2 {
    line-height: 2.4;
}
.concept_txt--2 {
    padding-top: 2.4rem;
}

.concept_about {
    background-color: #FFFFFF;
    margin: 0 4.2%;
    border-radius: 30px;
}

/* ====== sp sasaco紹介文 ====== */
.concept_innner2 {
    padding: 6.4%;
}

/* sasaco名前 */
.concept_about_name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    text-align: end;
    font-weight: 500;
    margin-top: 0.5rem;
}
.concept_about_name--en {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.concept_about_name--kana {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

/* snsアイコン */
.concept_about_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.4rem;
}
.concept_about_icon--img {
    width: 45px;
    height: 45px;
}

@media screen and (min-width:768px) {
    /* ====== pc concept ====== */
    .section--concept {
        padding-top: 10rem;
    }

    .concept_txt {
        padding: 7rem 0 7rem 0;
    }
    .concept_innner1 {
        margin: 0 7.6%;
    }
    .concept_innner1 img {
        display: block;
    }
    .sp_concept_img {
        display: none;
    }
    .pc_concept_img {
        display: block;
        margin-top: 5.5rem;
    }

    .concept_about_img {
        display: block;
        width: 100%;
        height: auto;
    }

    .concept_about {
        margin: 0 13%;
    }

    .concept_innner2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .concept_txt_group {
        display: block;
    }
    .concept_about_name {
        margin-top: 0;
    }

}
/* ==== concept txtアニメ ==== */
.concept_txt span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease,
        filter 0.9s ease;
}

.concept_txt.show span {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
/* 時間差で1行ずつ */
.concept_txt.show .concept_txt--1 span:nth-child(1) { transition-delay: 0.3s; }
.concept_txt.show .concept_txt--1 span:nth-child(2) { transition-delay: 0.6s; }
.concept_txt.show .concept_txt--1 span:nth-child(3) { transition-delay: 0.9s; }
.concept_txt.show .concept_txt--1 span:nth-child(4) { transition-delay: 1.2s; }

.concept_txt.show .concept_txt--2 span:nth-child(1) { transition-delay: 1.8s; }
.concept_txt.show .concept_txt--2 span:nth-child(2) { transition-delay: 2.1s; }
.concept_txt.show .concept_txt--2 span:nth-child(3) { transition-delay: 2.4s; }
.concept_txt.show .concept_txt--2 span:nth-child(4) { transition-delay: 2.7s; }
/* ============ */

/* ====== sp products ====== */
.section--products {
    padding: 7rem 4.2%;
    margin-top: 0;
}

.products_txt {
    text-align: center;
    margin-top: 2.4rem;
}

.btn_shop {
    margin: 3.2rem 0 5.5rem 0;
}

.btn--shop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding-right: 1rem;
}

.btn_shop img {
    width: 26px;
    height: 18px;
} 

/* === products slick用 === */
.products_slider {
    position: relative;
}

.products_viewport {
    margin: 0 -0.8rem;
}

.products_slide {
    padding: 0 0.8rem;
}

.products_slide img {
    width: 100%;
    height: auto;
}

/* 下のナビ全体 */
.prev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.4rem;
}

/* 矢印 */
.arrow_prev,
.arrow_next {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev_btn {
    width: 30px;
    height: 30px;
    z-index: 100;
}

/* dots */
.products_viewport .slick-dots {
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}
.slick-dots {
    bottom: auto !important;
}

.products_viewport .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.products_viewport .slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
}

.products_viewport .slick-dots li button:before {
    font-size: 12px;
    color: #D9D9D9;
    opacity: 1;
}

.products_viewport .slick-dots li.slick-active button:before {
    color: var(--primary-darkBlue);
    opacity: 1;
}


@media screen and (min-width:768px) {
    .section--products {
        padding: 10rem 7.6%;
    }

    .products_txt {
        margin: 0 auto;
        height: auto;
        padding: 2.4rem 0 0 0;
    }

    .products_slide {
        padding: 0 1rem;
    }

    .prev {
        margin-top: 3.2rem;
    }

    .prev_btn {
        width: 40px;
        height: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .btn_shop {
        margin: 5.5rem 0 10rem 0;
    }

    .btn_shop img {
        width: 29px;
        height: 21px;
    }

    .btn_shop p {
        font-size: 1.6rem;
    }

    .prev_btn {
        width: 50px;
        height: 50px;
    }
}



/* ====== sp_contact ====== */
.section--contact {
    padding: 0 4.2% 7rem 4.2%;
    margin-top: 0;
}

.btn_contact {
    margin-top: 3.2rem;
}
.note {
    font-size: 1rem;
    text-align: center;
    margin-top: 2.4rem;
}

@media screen and (min-width: 1024px) {
    .btn_shop {
        margin: 5.5rem 0 10rem 0;
    }
    .btn_shop img {
        width: 29px;
        height: 21px;
    }
    .btn_shop p {
        font-size: 1.6rem;
    }
}

/* ====== footer周り ====== */
.shop_btn_inner_g {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border: solid 1px #828796;
    border-radius: 50px;
    padding: 1.4rem 0 1.4rem 0;
    width: 21rem;
    margin-top: 3.2rem;
}
.shop_btn_g{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}
.shop_btn_g img {
    width: 26px;
    height: 18px;
}
.shop_btn_g p {
    color: #828796;
    font-size: 1.4rem;
}

@media screen and (min-width:768px) {
    .shop_btn_inner_g {
        margin: 0;

    }
}



