@charset "UTF-8";

/*///////////////////// MV（メインビジュアル）スライダー ///////////////////////////*/
.wrap {
    position: relative;
}

.kv {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.kv_inner {
    width: calc(100% - 80px);
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.kv_inner:nth-child(2) {
    position: absolute;
    top: 0;
    right: 50%;
    translate: calc(-50% - 20px) 0;
}

.kv_inner:nth-child(3) {
    position: absolute;
    top: 0;
    left: 50%;
    translate: calc(50% + 20px) 0;
}

.kv_item {
    width: 100%;
    max-width: 1700px;
    max-height: 705px;
    height: 100%;
    position: absolute;
    right: 50%;
    translate: 50%;
    top: 0;
    margin: 0 auto;
    z-index: 1;
}

.kv_item:nth-child(1) {
    position: relative;
}

.kv_item .img {
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 1.6s cubic-bezier(0.33, 1, 0.68, 1);
    transform-origin: 0 0;
}

.kv_item .img span {
    display: block;
    position: relative;
    width: 106.25%;
    max-height: 705px;
    aspect-ratio: 1700 / 705;
    z-index: 1;
    translate: 0 0;
    transition: all 0.1s linear;
}

.kv_item .img span img {
    width: 100%;
    max-width: none;
    height: 705px;
    object-fit: cover;
    object-position: center bottom;
}

.kv_item .img__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(77, 74, 72, 0.2) 18.94%,
        rgba(77, 74, 72, 0.1) 42.224%,
        rgba(77, 74, 72, 0) 59.801%
    );
    mix-blend-mode: multiply;
}

.kv_item__overlay {
    position: absolute;
    left: 16.5375%;
    top: 18.4022%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 21px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.37, 0, 0.63, 1);
}

.kv__count {
    position: absolute;
    left: 39.4%;
    translate: -50%;
    width: min(1700px, calc(100% - 80px));
    max-width: 1700px;
    bottom: 100px;
    padding-right: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 2;
    pointer-events: none;
}

.kv__count .mv-count {
    pointer-events: auto;
}

.kv_item h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
    margin: 0;
    pointer-events: none;
}

.kv_item h2 em {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-family: "Zen Old Mincho";
}

.kv_item h2 em:nth-of-type(1) span[data-char-index] {
    transition-delay: calc(1000ms + attr(data-char-index number, 0) * 120ms);
}

.kv_item h2 em:nth-of-type(2) span[data-char-index] {
    transition-delay: calc(1400ms + attr(data-char-index number, 0) * 120ms);
}

.kv_item h2 span {
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    translate: 0 100%;
    opacity: 0;
    font-size: 58px;
    color: #fff;
    letter-spacing: 0;
    font-family: "Zen Old Mincho";
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
}

.kv_item.pre {
    z-index: 3;
    pointer-events: none;
}

.kv_item.pre .img {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.kv_item.pre .img span {
    translate: -5.465% 0;
}

.kv_item.now {
    z-index: 2;
}

.kv_item.now .img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.kv_item.now .img span {
    translate: -5.465% 0;
    transition: all 9s linear;
}

.kv_item.now .kv_item__overlay {
    opacity: 1;
}

.kv_item.now h2 em span {
    translate: 0 0;
    opacity: 1;
}

.mv-deco {
    position: absolute;
    left: 5px;
    top: 63.4%;
    z-index: 2;
    margin: 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    opacity: 0.6;
    pointer-events: none;
}

.mv-deco span {
    display: block;
}

.mv-slide__content {
    position: relative;
    z-index: 3;
    width: fit-content;
    height: fit-content;
    pointer-events: none;
}

.mv-area-appeal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mv-area-appeal__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.mv-area-appeal__icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.mv-area-appeal__text {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #3d3d3d;
    padding-top: 5px;
}

.mv-area-appeal__main {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
}

.mv-area-appeal__sub {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.mv-count {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 60px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: rgba(71, 71, 71, 0.72);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    color: #fff;
    width: 674px;
    box-sizing: border-box;
    transform: translateZ(0);
    isolation: isolate;
}
.mv-count * {
    color: #fff;
}

.mv-count--no-cta {
    padding: 40px 50px;
}

.mv-count__stats {
    display: flex;
    flex-direction: column;
    gap: 1pc;
    width: 243px;
    min-width: 0;
    flex-shrink: 0;
}

.mv-count__total {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mv-count__label {
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

.mv-count__label--total {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.mv-count__label--member {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    padding-bottom: 2px;
}

.mv-count__number {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.mv-count__number--total .mv-count__value {
    font-size: 90px;
    font-weight: 500;
}

.mv-count__number--total .mv-count__unit--total {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-bottom: 5px;
}

.mv-count__member {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.mv-count__number--member {
    gap: 3px;
}

.mv-count__number--member .mv-count__value {
    font-size: 36px;
    font-weight: 500;
}

.mv-count__number--member .mv-count__unit--member {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-bottom: 0.1vw;
}

.mv-count__divider {
    flex-shrink: 0;
    align-self: stretch;
    width: 1px;
    background: #fff;
}

.mv-count__cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    justify-content: center;
    min-width: 0;
    flex-shrink: 1;
    width: 230px;
    padding-bottom: 10px;
}

.mv-count__cta-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #fff;
}

.mv-count__cta-text--bold {
    font-weight: 500;
}

.mv-count__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 55px;
    border: 1px solid #fff;
    border-radius: 99999px;
    background: #fff;
    color: #3d3d3d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
    box-sizing: border-box;
}

.mv-count__btn:hover {
    background: #3d3d3d;
    border-color: #3d3d3d;
    color: #fff;
    opacity: 1;
}

@media screen and (min-width: 1919px) {
    .kv__count {
        left: 39.9%;
    }
    .kv_item__overlay {
        left: 16.6%;
        top: 18%;
    }
    .mv-deco {
        left: 7%;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
    .kv__count {
        left: 43.6%;
    }
    .kv_item__overlay {
        left: 12.3%;
        top: 18.3%;
    }
    .mv-deco {
        left: -146px;
    }
}
@media screen and (max-width: 1400px) {
    .kv_item__overlay {
        left: 50px;
        top: 20%;
    }
    .mv-deco span{
        font-size: 100px;
    }
    .mv-deco {
        left: -20.1%;
        top: 63%;
    }
    .kv__count {
        left: 48.5%;
    }
    .kv_item__overlay {
        left: 4.4%;
        top: 18%;
    }
}

@media screen and (max-width: 1200px) {
    .kv__count {
        padding-right: 3%;
    }

    .kv_item__overlay {
        left: 8%;
        top: 18%;
    }

}

/* Swiperオプションのレイアウト */
.swiper-option__wrap {
    margin-top: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
    .swiper-option__wrap .swiper-button-prev, .swiper-option__wrap .swiper-button-next {
        position: unset;
        margin: 0;
        width: 40px;
        height: 40px;
        border: 1px solid #7D7D7D;
        border-radius: 50%;
        background: #ffffff;
        justify-content: start;
        padding-left: 12px;
    }

    .swiper-option__wrap .swiper-button-prev {
        padding-left: 14px;
    }
        .swiper-option__wrap .swiper-button-prev::after, .swiper-option__wrap .swiper-button-next::after {
            content: "";
            display: block;
            position: relative;
            width: 10px;
            height: 10px;
            border-top: 1px solid #7D7D7D;
            border-right: 1px solid #7D7D7D;
            left: 1px;
        }
            /* 左向き */
        .swiper-option__wrap .swiper-button-prev::after {
            transform: rotate(-135deg);
        }
        /* 右向き */
        .swiper-option__wrap .swiper-button-next::after {
            transform: rotate(45deg);
            left: -1px;
        }


/* Swiper 〇件以下で発火させない場合のレイアウト */
.noslide .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.noslide .swiper-option__wrap {
    display: none;
}

.noslide .swiper-slide {width: 380px;border-top: 1px solid #AFAFAF;border-bottom: 1px solid #AFAFAF;}

.contents__area{
	margin: 0 auto;
}


.contents__img {
    height: 210px;
}

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

.l-page .contents__text {
    margin-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bkn_favorite {
    background: url(/images/top/favorite_icon.svg) no-repeat center;
    background-size: 100%;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 11px;
    right: 13px;
    margin: 0;
}

.bkn_favorite.is-checked {
    background: url(/images/top/favorite_icon_on.svg) no-repeat center;
    background-size: 100%;
    margin: 0;
    position: absolute;
    margin: 0;
}

.swiper-slide:first-child .bkn-card {
border-left: 1px solid #AFAFAF;
}


.more__btn {
display: flex;
width: 280px;
height: 60px;
padding: 15px 100px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 100px;
border: 1px solid #333;
background: #FFF;
}

.more__btn {
    display: flex;
    width: 280px;
    height: 60px;
    padding: 15px 45px 15px 51px;
    justify-content: end;
    align-items: center;
    gap: 56px;
    border-radius: 100px;
    border: 1px solid #333;
    background: #FFF;
    margin: 31px auto 0;
}