@charset "UTF-8";
/* mv */
.mv {
    display: flex;
}

.mv_text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}

.mv_title {
    font-size: clamp(1.5rem, -1.445rem + 6.14vw, 2.625rem);
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}

.mv_text-wrap .mv_title-s {
    font-size: clamp(0.75rem, -0.232rem + 2.05vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    display: block;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 50px;
}

.mv_title-s.sscontents_borders::before,
.mv_title-s.sscontents_borders::after {
    max-width: 1060px;
    width: 100%;
}

.mv_image-wrap {
    width: 55%;
}


/* swiper */
/* 1. 外側のラッパー（位置や全体のサイズを制御） */
.mv_image-wrap {
    width: 55%;
    position: relative;
}
/* 2. Swiper本体 */
.mySwiper2 {
    width: 100%;
    height: auto;
}
/* 3. 各スライドと画像の設定 */
.mySwiper2 .swiper-slide {
    width: 100%;
    /* 縦横比を固定して画像を綺麗に収める設定 */
    /* aspect-ratio: 16 / 9; */
    /* 例として16:9。MVの画像比率に合わせて変更してください */
    overflow: hidden;
}
.mySwiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をトリミングして枠いっぱいに綺麗に表示 */
    object-position: center;
    /* 中央合わせ */
}
/* 4. 矢印ボタン（ナビゲーション）のカスタマイズ */
.mySwiper2 .swiper-button-prev,
.mySwiper2 .swiper-button-next {
    color: #fff;
    /* 矢印の色を白に変更 */
    background-color: rgba(0, 0, 0, 0.3);
    /* 薄い黒の背景をつけて見やすく */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* 丸型にする */
    transition: background-color 0.3s, opacity 0.3s;
}
/* 矢印のサイズ調整（デフォルトは少し大きいので小さくします） */
.mySwiper2 .swiper-button-prev::after,
.mySwiper2 .swiper-button-next::after {
    font-size: 20px;
    display: none !important;
}

.prev2,
.next2 {
    display: none !important;
}

/* ホバー時のエフェクト */
.mySwiper2 .swiper-button-prev:hover,
.mySwiper2 .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
/* 5. ページネーション（ドット）のカスタマイズ */
.swiper-pagination-bullet {
    background: #282828;
    /* ドットの色 */
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
    margin: 0 7px !important;
}
/* 現在アクティブな（表示されている）ドットのスタイル */
.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #282828;
    /* アクティブ時の色（お好みで変更してください） */
    width: 24px;
    /* 横長にしておしゃれにする場合 */
    border-radius: 5px;
}
.swiper-pagination {
    position: relative;
    text-align: left;
    margin-top: 70px;
}



@media(max-width:767px) {
    .mv {
        position: relative;
        overflow: hidden;
    }

    .mv_text-wrap {
        position: relative;
        z-index: 1;
        padding: 0 30px 0 10px;
        /* background-color: rgba(255, 255, 255, 0.3); */
    }

    .mv_title {
        font-size: 24px;
    }

    .mv_text-wrap .mv_title-s {
        font-size: 12px;
        margin-bottom: 73vw;
    }

    .mv_image-wrap {
        position: absolute;
        top: 80px;
        right: 0;
        width: 95%;
        z-index: 0;
    }

    .mv_text-wrap {
        margin: 0 0 0 3%;
        width: 100%;
    }

    .swiper-pagination {
        position: relative;
        text-align: right;
        margin-top: 20px;
    }

}

/* about */
.about {
    position: relative;
}

.about .image_wrap {
    max-width: 773px;
    margin: 32px auto 0;
    width: 80vw;
}

@media(max-width:767px) {
    .about .image_wrap {
        width: 75%;
    }
}


/* point */
.point .title {
    text-align: center;
    font-size: clamp(1.25rem, -0.877rem + 4.44vw, 2.063rem);
    font-weight: 400;
}

.point_container {
    display: flex;
    gap: 4%;
    margin-top: 48px;
}

.point_item {
    background-color: #f4f5f3;
    padding: 0 0 27px;
}

.point_item_title {
    text-align: center;
    background-color: #525252;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: .6em 0;
    letter-spacing: .2em;
}

.point_item_image {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.point_item_image img {
    width: 100%;
    height: 180px;
}

.point_item_text {
    font-size: clamp(0.875rem, 0.711rem + 0.34vw, 0.938rem);
    line-height: 1.8;
    padding: 0 30px;
    margin-top: 35px;
    font-weight: 300;
}

@media(max-width:767px) {
    .point_container {
        flex-direction: column;
    }

    .point_item {
        margin-top: 48px;
    }

    .point .title {
        font-size: 20px;
        line-height: 1.4;
    }

    .point_item_text {
        font-size: 14px;
    }

    .point_item_image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

}


/* happy */
.happy_container {
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.happy_container-wrap .happy_container:nth-of-type(1) {
    margin-top: 80px;
}

.happy_container_visual {
    display: flex;
    cursor: pointer;
    transition: .4s;
    position: relative;
    z-index: 2;
}

@media(any-hover: hover) {
    .happy_container_visual:hover {
        opacity: .8;
    }

}


.happy_container_text-wrap {
    width: 35%;
    background-color: #525252;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1% 1% 1% 4%;
    transition: .4s;
    box-sizing: border-box;
}

.arrow_button {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #525252;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 25px;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.5));
    transition: .4s;
}

@media(any-hover: hover) {
    .happy_container_visual:hover .arrow_button {
        filter: drop-shadow(3px 4px 2px rgba(0, 0, 0, 0.9));
        transform: scale(1.1);
    }
}

.arrow_button::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: .4s;
}

.happy_container_image-wrap {
    width: 65%;
    overflow: hidden;
}

.happy_container_image-wrap img {
    transition: .4s;
}

@media(any-hover: hover) {
    .happy_container_visual:hover .arrow_button {
        filter: drop-shadow(3px 4px 2px rgba(0, 0, 0, 0.9));
    }

    .happy_container_visual:hover .happy_container_image-wrap img {
        transform: scale(1.1);
    }
}

.happy_container_title {
    font-size: clamp(1.25rem, 0.105rem + 2.39vw, 1.688rem);
    font-weight: 600;
    letter-spacing: .15em;
    line-height: 1.2;
}

.happy_container_text {
    font-size: clamp(1rem, 0.018rem + 2.05vw, 1.375rem);
    font-weight: 500;
    letter-spacing: .07em;
    line-height: 1.5;
    margin-top: .9em;
}

.happy_container_contents {
    background-color: #f4f5f3;
    padding: 0;
}



.happy_container_contents-title {
    font-size: clamp(1rem, 0.018rem + 2.05vw, 1.375rem);
    font-weight: 400;
    line-height: 1.6;
    width: 90%;
    margin: 0 auto;
}

.happy_container_contents-text {
    font-size: clamp(0.875rem, 0.384rem + 1.02vw, 1.063rem);
    font-weight: 300;
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    line-height: 2;
}

.happy_container_item-wrap {
    margin-top: 60px;
}

.happy_container_item {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}

.happy_container_item:first-of-type {
    margin-top: 0;
}

.happy_container_item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.happy_container_item_image-wrap {
    width: 62%;
}

.happy_container_item_text-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
    width: 38%;
}

.happy_container_item_text-wrap .icon_image {
    width: 15%;
}

.happy_container_item_text-wrap .icon_image img {
    width: 40px;
}

.happy_container_item_image {
    width: 80%;
}

.happy_container_item:nth-of-type(even) .happy_container_item_text-wrap {
    flex-direction: row-reverse;
}

.happy_container_item_image {
    font-size: clamp(0.813rem, -0.169rem + 2.05vw, 1.188rem);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .15em;
}

.happy_container_item:nth-of-type(even) .happy_container_item_image {
    text-align: right;
}

.happy_container_item_image span {
    font-size: clamp(0.75rem, 0.096rem + 1.37vw, 1rem);
    letter-spacing: 0;
}

/* accordion */
.happy_container_contents {
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    transition: .4s;
    position: relative;
    z-index: 0;
}

.happy_container_contents.show {
    height: auto;
    opacity: 1;
    pointer-events: all;
    padding: 70px 0 0;
}

.show .arrow_button::after {
    transform: translate(-50%, -50%) rotate(315deg);
}


@media(max-width:767px) {
    .happy_container {
        margin-top: 30px;
    }

    .happy_container_contents-title {
        font-size: 16px;
    }

    .happy_container_image-wrap {
        width: 100%;
    }

    .happy_container_text-wrap {
        width: 100%;
        padding: 5% 3% 5% 3%;
    }

    .happy_container_title {
        font-size: 20px;
    }

    .happy_container_text {
        font-size: 16px;
    }

    .happy_container_visual {
        flex-direction: column-reverse;
    }

    .arrow_button {
        /* width: 30px;
        height: 30px; */
        bottom: 15px;
        right: 15px;
    }

    .happy_container_contents-text {
        font-size: 14px;
    }

    .happy_container_contents.show {
        padding: 40px 0;
    }

    .happy_container_item_image-wrap {
        width: 42%;
    }

    .happy_container_item_text-wrap {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0;
        width: 56%;
    }

    .happy_container_item_image {
        font-size: 13px;
    }

    .happy_container_item_image span {
        font-size: 12px;
    }
}


/* innovation */
.innovation {
    max-width: 1060px;
    margin: 0 auto 90px;
    color: #fff;
    background-color: #a0a0a0;
}

.innovation .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.innovation_text-wrap {
    padding: 0 0 0 55px;
    width: 45%;
}

.innovation_title {
    font-size: clamp(1rem, 0.836rem + 0.34vw, 1.063rem);
    font-weight: 600;
    line-height: 1;
}

.innovation_text {
    font-size: clamp(0.813rem, 0.485rem + 0.68vw, 0.938rem);
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.7;
}

.innovation_image-wrap {
    display: flex;
    align-items: flex-end;
    width: 45%;
}

@media(max-width:767px) {
    .innovation .inner {
        display: flex;
        justify-content: space-between;
        padding: 20px;

        flex-direction: column;
    }

    .innovation_text-wrap {
        padding: 0;
        width: 100%;
    }

    .innovation_image-wrap {
        display: flex;
        width: 100%;
        margin-top: 20px;
    }

    .innovation_title {
        font-size: 16px;
    }

    .innovation_text {
        font-size: 13px;
    }

    .innovation {
        width: 90%;
    }
}