@charset "utf-8";

/*-----------------------------------------------
    secHero（メインビジュアル）
-----------------------------------------------*/
.secHero {
    position: relative;
    width: 100%;
    min-height: 236rem;
    overflow: hidden;
    transition: filter 0.6s ease;
    /* background: url(../img/index/bgHero.jpg) center top / cover no-repeat fixed; */
    z-index: 1;
}

.secHero.is-blurred {
    filter: blur(1.5rem);
    transition: filter 0.6s ease;
}

/* hero構造基本設定 */
.secHero .wrapper {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
}

.secHero .heroInner01 {
    height: 118rem;
}

.secHero .heroInner01.hero2 {
    height: 400rem;
    align-items: flex-start;
}

.secHero .heroInner01.hero2.is-end {
    align-items: flex-end;
}

.secHero .hero2Inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    justify-content: space-between;
}

.secHero .hero2Inner.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 10rem);
    width: 156rem;
    gap: 2rem;
}

.secHero .boxHero {
    width: 76rem;
    position: relative;
    z-index: 2;
    left: -6.3rem;
}

.secHero .boxHero02 {
    width: 101.2rem;
    position: relative;
    mix-blend-mode: overlay;
    z-index: 2;
    margin-top: 6rem;
}

.secHero .boxMovie {
    position: absolute;
    top: 84.6rem;
    right: 6%;
    width: 21.7949%;
    max-width: 34rem;
    overflow: hidden;
    z-index: 2;
}

.secHero .boxMovie.imgTopBnr {
    max-width: 33.4rem;
}

video {
    max-width: 120rem !important;
    max-height: 80vh !important;
    height: auto !important;
    width: 80vw !important;
}

.secHero .boxFlex {
    display: flex;
    align-items: center;
}

.secHero .boxHero03 {
    width: 55rem;
    z-index: 2;
}

.secHero .boxHero04 {
    display: flex;
    gap: 5rem;
    z-index: 2;
    position: relative;
    padding-bottom: 6rem;
}

.secHero .boxHero04 .boxTxt::before {
    content: '';
    position: absolute;
    right: 4rem;
    top: 3.5rem;
    height: 100%;
    width: 0.1rem;
    background: rgba(36, 36, 35, 0.15);
}

.secHero .boxHero04 .boxConcept {
    padding-top: 3.5rem;
}

/* hero2 共通テキスト */
.secHero .txtHero {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing18_300);
    line-height: var(--pcLineHeight18_48);
    text-align: right;
    font-weight: bold;
}

.secHero .txtHero+.txtHero {
    margin-top: 4.6rem;
}

/* hero1・hero2 セクション */
.hero1,
.hero2 {
    min-height: 100vh;
}

.hero1 {
    position: static;
    z-index: 2;
    opacity: 1;
    transition: opacity 1s ease;
    padding-top: 36rem;
}

.hero2 {
    position: relative;
    z-index: 10;
}

.hero2.is-visible {
    opacity: 1;
}

.hero2.is-end {
    opacity: 1;
    position: relative;
    z-index: 10;
}

/* 背景設定 */
.heroBgWrap {
    position: absolute;
    inset: 0;
    overflow: visible;
}

.heroBg {
    position: absolute;
    inset: 0;
    /* background: url(../img/index/bgHero.jpg) center top / cover fixed; */
    filter: blur(0);
    transition: filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1 !important;
}

.heroBgWrap .heroBg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    /* transform: scale(1.05); */
    transition: opacity 2s ease-in-out, transform 5s ease-in-out;
    opacity: 0;
}

.heroBgWrap .heroBg.heroBg2,
.heroBgWrap .heroBg.heroBg3 {
    opacity: 0;
}

.heroBg1 {
    background-image: url(../img/index/bgHero.jpg);
}

.heroBg2 {
    background-image: url(../img/index/bgHero02.jpg);
}

.heroBg3 {
    background-image: url(../img/index/bgHero03.jpg);
}

.heroBg.is-active {
    opacity: 1 !important;
    /* transform: scale(1); */
    z-index: 3;
}
.heroBg.is-prev {
    z-index: 2; /* ←一つ前を中間層に */
}
.heroBg {
    z-index: 1; /* ←それ以外は背面 */
}

.heroBg .heroBgBlur {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    inset: 0;
    background: rgba(207, 195, 184, 0.5);
    pointer-events: none;
    filter: blur(1rem);
    backdrop-filter: brightness(1.4);
    opacity: 0;
}

.secHero.is-white {
    background: #fff !important;
}

.heroBg.is-white-bg {
    background: #fff !important;
    position: absolute !important;
    overflow: hidden;
}

/*-----------------------------------------------
    hero2 jsEffect：タイプライター風アニメーション
-----------------------------------------------*/
.jsEffect {
    opacity: 0;
}

.jsEffect span {
    display: inline-block;
    vertical-align: top;
    opacity: 0;
    transform: translate(-8px, 13px) rotate(-5deg);
    filter: blur(10px);
    transition: all 1s ease-out;
}

.jsEffect.jsShow span.jsEffectTxt {
    opacity: 1;
    transform: translate(0px, 0px);
    filter: blur(0px);
}

/*-----------------------------------------------
    maskアニメーション（旧仕様用、残す）
-----------------------------------------------*/
@keyframes mask-over-text {
    0% {
        -webkit-mask-size: 0% 120%;
        mask-size: 0% 120%;
    }

    100% {
        -webkit-mask-size: 300% 200%;
        mask-size: 300% 200%;
    }
}

@media only screen and (max-width:1400px) {
    .secHero .txtHero {
        font-size: var(--pcFontSize16);
    }
}

@media only screen and (max-width:1215px) {
    .secHero {
        position: relative;
        padding: 4.5rem 0 0;
        min-height: auto;
    }

    .secHero::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 15rem;
        background: linear-gradient(to bottom, rgba(0, 0, 0, .3), transparent);
        z-index: 0;
    }

    .secHero .wrapper {
        position: absolute;
        z-index: 1;
        align-items: center;
        flex-direction: column;
    }

    .hero1.is-end,
    .hero2.is-end {
        position: absolute;
    }

    .hero2.is-end {
        position: relative !important;
        /* ← 固定解除時に通常フローへ戻す */
    }

    .secHero .boxHero {
        max-width: unset;
        width: 28rem;
        bottom: unset;
        top: 0;
        left: calc(50% - 16rem);
        position: relative;
    }

    .hero1.wrapper {
        padding-top: 0;
    }

    .secHero .heroInner01 {
        height: 65rem;
        height: 100vh;
    }

    .secHero .boxHero02 {
        width: 29.6rem;
        max-width: unset;
        bottom: unset;
        top: 0;
        left: calc(50% - 14.8rem);
        position: relative;
        margin-top: 3rem;
    }

    .secHero .boxHero03 {
        display: none;
    }

    .secHero .txtHero {
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing12_100);
        line-height: var(--spLineHeight12_24);
        text-align: center;
    }

    .secHero .boxHero04 {
        display: block;
    }

    .secHero .txtHero+.txtHero {
        margin-top: 2.4rem;
    }

    .secHero .boxHero04 .boxConcept {
        display: none;
    }

    .hero2.wrapper {
        justify-content: center;
    }

    .secHero .heroInner01.hero2 {
        height: 300rem;
    }

    .secHero .heroInner01.hero2.is-end {
        justify-content: end;
    }

    .secHero .hero2Inner {
        justify-content: center;
    }

    .secHero .hero2Inner.is-fixed {
        top: 0;
        left: 0;
        transform: unset;
        max-width: unset;
        width: 100%;
        gap: unset;
    }

    .hero2 {
        visibility: visible;
    }

    .secHero .hero2 {
        opacity: 1;
    }

    .secHero .boxMovie {
        position: relative;
        top: unset;
        right: unset;
        left: unset;
        transform: unset;
        width: 109.86%;
        max-width: 36.8rem;
        overflow: hidden;
        margin: -2rem auto 0;
    }

    .secHero .boxMovie.imgTopBnr {
        max-width: 36.2rem;
    }

    .secHero .boxHero04 .boxTxt {
        padding-bottom: 0;
    }
}

@media only screen and (max-width:1215px) {
    .secHero {
        background: none;
    }

    .heroBg {
        position: absolute;
        inset: 0;
        background: none;
        filter: blur(0);
        transition: filter 0.6s ease;
        position: fixed !important;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .heroBg img {
        width: auto;
        height: 100vh;
    }

    .secHero::after {
        display: none;
    }

    .secHero .boxHero04 .boxTxt::before {
        display: none;
    }

    .hero2 {
        opacity: 1;
    }

    .secHero .heroWrap {
        position: relative !important;
        /* ← staticをrelativeに変更 */
        height: auto;
        overflow: visible;
    }

    .secHero .wrapper {
        position: relative !important;
        /* ← absoluteをrelativeに変更 */
        z-index: 2;
        align-items: center;
        flex-direction: column;
    }

    .secHero .hero1.wrapper {
        position: static !important;
        padding-top: 34vh;
    }

    .boxHero04 .boxTxt .txtHero {
        opacity: 0;
        transform: translateY(0);
        transition: opacity 2s ease, transform 2s ease;
        transition: 1s ease-out;
    }

    .boxHero04 .boxTxt .txtHero:nth-child(2) {
        transition-delay: 0.3s;
    }

    .boxHero04 .boxTxt .txtHero:nth-child(3) {
        transition-delay: 0.6s;
    }

    .boxHero04 .boxTxt .txtHero:nth-child(4) {
        transition-delay: 0.9s;
    }

    .hero2 {
        position: static !important;
        /* ← relativeをstaticに戻す（ScrollTrigger制御に任せる） */
    }
}

@media only screen and (max-width: 1100px) {
    .secHero.is-sticky .heroBg {
        left: -18.4rem;
    }

    /* .secHero {
        background: url(../img/index/bgHero_sp.jpg) center top / cover no-repeat fixed;
    } */

    .heroBg {
        left: -16.4rem;
        top: -0rem;
    }

    .is-blurred::after {
        right: -18.4rem;
    }
}

@media only screen and (max-width:370px) {
    .secHero .boxHero {
        left: calc(50% - 14rem);
    }

    .secHero .boxMovie {
        width: 100%;
    }
}

/*-----------------------------------------------
    secDifference
-----------------------------------------------*/
.secDifference {
    position: relative;
    height: 272.7rem;
    overflow: hidden;
}

.secDifference.lazyloaded {
    background: url(../img/index/bgDifference.jpg) center top / cover no-repeat;
}

.secDifference .boxTxt {
    padding-top: 16.6rem;
}

.secDifference .boxTxt .tit01 {
    font-size: var(--pcFontSize33);
    line-height: var(--pcLineHeight33_80);
    letter-spacing: var(--pcLetterSpacing33_100);
}

.secDifference .imgDifference {
    margin-top: 6rem;
}

.secDifference .imgDifferenceNum {
    margin-top: 6.3rem;
}

.secDifference .imgComfortable {
    margin-top: 17rem;
    max-width: 192rem;
    mix-blend-mode: color-burn;
    opacity: 0.9;
}

.secDifference .imgFlex {
    display: flex;
    margin: -6.5rem auto 0;
    justify-content: space-between;
}

.secDifference .imgCercle {
    width: 89.7rem;
    margin: 6.6rem auto 0;
}

.secDifference .wrapperNUm {
    position: absolute;
    bottom: 6rem;
    right: calc(50% - 78rem);
}

.secDifference .imgDifferenceNum02 {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width:1215px) {
    .secDifference .boxTxt {
        padding-top: 5rem;
    }

    .secDifference .boxTxt .tit01 {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing18_50);
        line-height: var(--spLineHeight18_40);
        text-align: center;
    }

    .secDifference.lazyloaded {
        background: url(../img/index/bgDifference_sp.jpg) center center / cover no-repeat;
    }

    .secDifference {
        height: auto;
        padding-bottom: 47.3rem;
        z-index: 2;
    }

    .secDifference .imgDifference {
        margin-top: 2.5rem;
    }

    .secDifference .imgComfortable {
        width: 92.5373%;
        margin: 11.9rem auto 0;
        max-width: 31rem;
    }

    .secDifference .imgFlex {
        display: block;
        margin: 0;
        justify-content: space-between;
    }

    .secDifference .titUtria {
        width: 30rem;
        margin: -3rem auto 0;
    }

    .secDifference .imgFuture {
        width: 25.3rem;
        margin: 1.7rem auto 0;
    }

    .secDifference .imgCercle {
        width: 23.1rem;
        margin: 2.1rem auto 0;
    }

    .secDifference .wrapperNUm {
        bottom: 2.4rem;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        width: 32.8rem;
        width: 87.467%;
        max-width: 32.8rem;
    }
    .secDifference .imgDifferenceNum02 {
        width: 96.65%;
        margin: 0 auto;
    }
}

/*-----------------------------------------------
    secBnr
-----------------------------------------------*/
.secBnr {
    margin: 0.1rem auto;
    display: flex;
    gap: 0.1rem;
}

.secBnr .bnrLink {
    width: 50%;
    overflow: hidden;
}

.secBnr .bnrLink:nth-child(2n) {
    width: calc(50% - 0.1rem);
}

@media only screen and (max-width:1215px) {
    .secBnr .bnrLink:nth-child(2n) {
        width: 50%;
    }

    .secBnr {
        background: #fff;
        gap: 0.1rem;
        position: relative;
        z-index: 2;
    }
}

/*-----------------------------------------------
    secSun
-----------------------------------------------*/
.secSun {
    position: relative;
    padding: 15rem 0 16.7rem;
    overflow: hidden;
}

.secSun.lazyloaded {
    background: url(../img/index/bgSun.jpg) center top / cover no-repeat;
}

.secSun .innerSun {
    display: flex;
    gap: 7.4rem;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    max-width: 142rem;
    margin: 0 auto;
}

.secSun .imgSun {
    margin-top: 3rem;
}

.secSun .txtSun {
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing40_50);
    color: var(--whiteColor);
    text-shadow:
        0 0 1rem rgba(217, 185, 140, 0.6),
        0 0 2rem rgba(217, 185, 140, 0.6),
        0 0 3rem rgba(217, 185, 140, 0.6);
    display: inline;
}

.secSun .titSun {
    font-size: var(--pcFontSize60);
    letter-spacing: var(--pcLetterSpacing60_100);
    color: var(--whiteColor);
    text-shadow:
        0 0 1rem rgba(217, 185, 140, 0.6),
        0 0 2rem rgba(217, 185, 140, 0.6),
        0 0 3rem rgba(217, 185, 140, 0.6);
    display: inline;
    margin-top: 2.6rem;
}

.secSun .titSun.spNone {
    display: inline;
}

.secSun .titSun.spOnly {
    display: none;
}

.secSun .linkSun {
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing20_100);
    color: var(--whiteColor);
    padding: 3rem 20.4rem 3rem 3.5rem;
    width: 74.5rem;
    height: 8rem;
    position: relative;
    border-radius: 0 4rem 4rem 0;
    margin-top: 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: background-color 1s;
}

.secSun .linkSun:before {
    content: '';
    position: absolute;
    border-radius: 0 4rem 4rem 0;
    background: #242423;
    mix-blend-mode: overlay;
    width: 74.5rem;
    height: 8rem;
    top: calc(50% - 4rem);
    left: 0;
    opacity: 1;
}

.secSun .linkSun::after {
    content: '';
    position: absolute;
    background: url(../img/index/iconArrow.png) center right / cover no-repeat;
    width: 3rem;
    height: 1.4rem;
    top: calc(50% - 0.7rem);
    right: 4.8rem;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.secSun .linkSun:hover::after {
    transform: translateX(0.8rem);
}

.secSun .boxTxt {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.secSun .boxImg {
    position: relative;
}

.secSun .imgRightUtoria {
    position: absolute;
    top: calc(50% - 50.6rem);
    right: -19rem;
    mix-blend-mode: overlay;
}

@media only screen and (max-width:1215px) {
    .secSun {
        padding: 4.4rem 0 9.8rem;
        z-index: 2;
    }

    .secSun.lazyloaded {
        background: url(../img/index/bgSun_sp.jpg) center bottom / cover no-repeat;
    }

    .secSun .txtSun {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_50);
        text-align: center;
        display: block;
    }

    .secSun .boxTxt {
        display: block;
    }

    .secSun .innerSun {
        display: block;
        max-width: 40rem;
    }

    .secSun .titSun {
        font-size: var(--spFontSize30);
        letter-spacing: var(--spLetterSpacing30_100);
        margin-top: 0;
        text-align: center;
        line-height: var(--spLineHeight30_40);
    }

    .secSun .titSun.spOnly {
        display: block;
        margin-top: 0.2rem;
    }

    .secSun .titSun.spNone {
        display: none;
    }

    .secSun .imgSun {
        margin-top: 0;
    }

    .secSun .linkSun {
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing14_150);
        line-height: var(--spLineHeight14_22);
        padding: 0;
        width: 89.336%;
        height: 6rem;
        position: absolute;
        bottom: 4rem;
        border-radius: 3rem;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .secSun .linkSun:before {
        border-radius: 3rem;
        width: 100%;
        height: 6rem;
        top: 0;
        left: 0;
    }

    .secSun .linkSun::after {
        display: none;
    }

    .secSun .imgRightUtoria {
        display: none;
    }

    .secSun .imgRight {
        max-width: 32.5rem;
        width: 97.015%;
        margin: 2.2rem auto 3.2rem;
    }
}

/*-----------------------------------------------
    secYutori
-----------------------------------------------*/
.secYutori {
    overflow: hidden;
}

.secYutori .titYutori {
    font-size: var(--pcFontSize35);
    letter-spacing: 0.05em;
    line-height: var(--spLineHeight80_35);
    color: #3b2e2e;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcd3ca;
}

.secYutori .listHover {
    display: flex;
}

.secYutori .itemHover {
    width: calc((100% - 0.2rem) / 3);
    height: 96rem;
    position: relative;
    transition: width 0.8s ease;
}

.secYutori.lazyloaded .itemHover:nth-child(1) {
    background: url(../img/index/bgHover01.jpg) center center / cover no-repeat;
}

.secYutori.lazyloaded .itemHover:nth-child(2) {
    background: url(../img/index/bgHover02.jpg) center center / cover no-repeat;
}

.secYutori.lazyloaded .itemHover:nth-child(3) {
    background: url(../img/index/bgHover03.jpg) center center / cover no-repeat;
}

.secYutori .itemHover:nth-child(n + 2) {
    margin-top: 0.1rem;
}

.secYutori .linkHover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; 
}

.secYutori .itemHover:hover {
    width: 96rem;
    flex-shrink: 0;
}

.secYutori .itemHover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* transition: background 0.3s ease; */
    z-index: 0;
}

.secYutori .itemHover:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.secYutori .itemHover .txtCircle {
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: rgba(101, 94, 83, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: var(--whiteColor);
    position: relative;
    z-index: 1;
    font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.secYutori .itemHover .txtCircle::before {
    content: '';
    position: absolute;
    background: url(../img/index/iconArrow.png) center right / cover no-repeat;
    width: 3rem;
    height: 1.4rem;
    bottom: 3.2rem;
    left: calc(50% - 1.4rem);
}

.secYutori .itemHover .tit {
    font-size: var(--pcFontSize28);
    line-height: var(--pcLineHeight28_55);
    letter-spacing: var(--pcLetterSpacing28_200);
    font-weight: bold;
}

.secYutori .itemHover .txt {
    font-size: var(--pcFontSize15);
    line-height: var(--pcLineHeight15_30);
    letter-spacing: var(--pcLetterSpacing15_100);
    margin-top: 1.6rem;
}

@media only screen and (max-width:1215px) {
    .secYutori {
        position: relative;
        z-index: 2;
    }

    .secYutori .titYutori {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_50);
        width: 100%;
        height: 5rem;
    }

    .secYutori .listHover {
        flex-direction: column;
    }

    .secYutori .itemHover {
        width: 100%;
        height: 37.5rem;
    }

    .secYutori .itemHover .txtCircle {
        width: 27.5rem;
        height: 27.5rem;
        padding-bottom: 4rem;
    }

    .secYutori .itemHover .tit {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing18_200);
        line-height: var(--spLineHeight18_34);
    }

    .secYutori .itemHover .txt {
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_26);
        letter-spacing: var(--spLetterSpacing12_100);
        margin-top: 0.4rem;
    }

    .secYutori .itemHover .txtCircle::before {
        width: 3rem;
        height: 1.4rem;
        bottom: 6.8rem;
        left: calc(50% - 1.4rem);
    }

    .secYutori .itemHover:nth-child(2) .txtCircle::before {
        bottom: 4.8rem;
    }

    .secYutori .itemHover:hover {
        width: 100%;
    }
}

/*-----------------------------------------------
    secLineup
-----------------------------------------------*/
.secLineup {
    background: #d4c9bf;
    padding: 12.5rem 0;
    overflow: hidden;
    position: relative;
}

.secLineup .titLineup {
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_36);
    letter-spacing: var(--pcLetterSpacing18_100);
    font-weight: bold;
    margin-top: 2.5rem;
    font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #55483c;
}

.secLineup.lazyloaded::before {
    content: '';
    background: url(../img/index/iconLineup.png) center top / cover no-repeat;
    width: 93.6rem;
    /* width: 48.75%; */
    height: 31.7rem;
    position: absolute;
    top: 12.7rem;
    left: calc(50% - 14rem);
    mix-blend-mode: hard-light;
}

.secLineup .itemLineup.new {
    position: relative;
}

.secLineup .itemLineup .linkLineup {
    display: flex;
    gap: 10rem;
    align-items: flex-end;
}

.secLineup .itemLineup.new::before {
    content: '';
    width: 15rem;
    height: 15rem;
    position: absolute;
    top: -3.5rem;
    left: 4rem;
    z-index: 5;
}

.secLineup.lazyloaded .itemLineup.new::before {
    background: url(../img/index/iconNew.png) center center / cover no-repeat;
}

.secLineup .itemLineup:nth-child(n+2) {
    margin-top: 15rem;
}

.secLineup .itemLineup .boxImg {
    overflow: hidden;
}

.secLineup .txtMore {
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing13_250);
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin-top: 4rem;
}

.secLineup .boxArrow {
    position: relative;
    width: 10rem;
    /* ???? */
    height: 0.1rem;
    /* ???? */
    background: #988c84;
    /* ????aaaあああ */
    display: block;
}

.secLineup .boxArrow::after {
    content: "";
    position: absolute;
    right: -0.1rem;
    top: -0.4rem;
    width: 1.2rem;
    height: 0.1rem;
    background: #988c84;
    transform: rotate(45deg);
}

.secLineup .boxTxt .tit {
    font-size: var(--pcFontSize30);
    line-height: var(--pcLineHeight30_70);
    letter-spacing: var(--pcLetterSpacing30_200);
    font-weight: bold;
    font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.secLineup .boxTxt .txtNum {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing18_200);
    font-weight: bold;
    margin-top: 1.8rem;
    font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.secLineup .boxTxt .imgNoto {
    margin-top: 3.7rem;
}

.secLineup .boxTxt .imgPrice {
    margin-top: 5.4rem;
}

.secLineup .boxTxt {
    padding-bottom: 5rem;
}

.secLineup .listLineup {
    margin-top: 9.5rem;
}


@media only screen and (max-width:1215px) {
    .secLineup {
        padding: 4.6rem 0;
        position: relative;
        z-index: 2;
    }

    .secLineup .titImg {
        width: 12.4rem;
        margin: 0 auto;
    }

    .secLineup.lazyloaded::before {
        display: none;
    }

    .secLineup .listLineup {
        margin-top: 2.2rem;
    }

    .secLineup .titLineup {
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing13_200);
        margin-top: 0.5rem;
        text-align: center;
    }

    .secLineup .itemLineup .linkLineup {
        display: flex;
        gap: 1.7rem;
        align-items: center;
        flex-direction: column;
        margin: 0 auto;
    }

    .secLineup .boxTxt .imgNoto {
        display: none;
    }

    .secLineup .boxTxt .tit {
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_36);
        letter-spacing: var(--spLetterSpacing20_150);
        text-align: center;
        padding: 0 2rem;
    }

    .secLineup .boxTxt .txtNum {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_100);
        margin-top: 2.1rem;
        text-align: center;
        padding: 0 2rem;
    }

    .secLineup .itemLineup .boxImg {
        padding: 0 2rem;
    }

    .secLineup .boxTxt .imgPrice {
        width: 88.06%;
        margin: 2rem auto 0;
    }

    .secLineup .txtMore {
        font-size: var(--spFontSize11);
        letter-spacing: var(--spLetterSpacing11_150);
        gap: 0.6rem;
        margin: 3rem auto 0;
        width: calc(100% - 4rem);
        height: 5.4rem;
        border: 0.1rem solid #55483c;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .secLineup .itemLineup:nth-child(n+2) {
        margin-top: 5rem;
    }

    .secLineup .boxTxt {
        padding-bottom: 0;
    }

    .secLineup .itemLineup.new::before {
        width: 6rem;
        height: 6rem;
        top: -1rem;
        left: 3rem;
    }
}

/*-----------------------------------------------
    secBnr02
-----------------------------------------------*/
.secBnr02 .bnrLink:nth-child(n+2) {
    margin-top: 0.1rem;
}

.secBnr02 .bnrLink {
    overflow: hidden;
    width: 100%;
    display: block;
    height: 100%;
    position: relative;
    pointer-events: none;
}

.secBnr02 .bnrLink.active {
    pointer-events: auto;
}

.secBnr02 .scrollBox {
    position: absolute;
    top: calc(50% - 11.4rem);
    left: 9.4%;
}

.scrollBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--whiteColor);
    font-size: var(--pcFontSize16);
    letter-spacing: 2px;
    gap: 2.4rem;
}

.scrollText {
    margin-bottom: 1rem;
}

.scrollIndicator {
    position: relative;
    width: 0.1rem;
    height: 7.3rem;
    background: var(--whiteColor);
}

.scrollIndicator::before,
.scrollIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border: 0.1rem solid #fff;
    border-radius: 50%;
    background: transparent;
}

.scrollIndicator::before {
    top: -1.5rem;
}

.scrollIndicator::after {
    bottom: -1.5rem;
}

.scrollIndicator span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.9rem;
    height: 0.9rem;
    background: #fff;
    border-radius: 50%;
    animation: moveDown 3s infinite;
}

@keyframes moveDown {
    0% {
        top: -1.2rem;
        opacity: 1;
    }

    50% {
        top: 7.5rem;
        opacity: 0.4;
    }

    100% {
        top: -1.2rem;
        opacity: 1;
    }
}

@media only screen and (max-width:1215px) {
    .secBnr02 {
        position: relative;
        z-index: 2;
    }
}

/*-----------------------------------------------
    secBnr02：全画面固定→フェード切替
-----------------------------------------------*/
#container {
    overflow: visible;
}

.secBnr02 {
    position: relative;
    height: 200vh;
    /* 2画面分 */
    /* overflow: hidden; */
}

.secBnr02 .bnrWrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.secBnr02 .bnrLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* transform: scale(1.05); */
    transition: opacity 1s ease, transform 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secBnr02.lazyloaded .bnrLink:nth-child(1) {
    background: url(../img/index/bgReserveBnr.png) center top / cover no-repeat;
}

.secBnr02.lazyloaded .bnrLink:nth-child(2) {
    background: url(../img/index/bgCatalogBnr.png) center top / cover no-repeat;
}

.secBnr02 .bnrLink.active {
    opacity: 1;
    transform: scale(1);
}

.secBnr02 .scrollBox {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 5;
}


@media only screen and (max-width:1215px) {
    .secBnr02.lazyloaded .bnrLink:nth-child(1) {
        background: url(../img/index/bgReserveBnr_sp.png) center top / cover no-repeat;
    }

    .secBnr02 .bnrWrapper img {
        max-width: 40rem;
    }
}

/*-----------------------------------------------
    secConsultation
-----------------------------------------------*/
.secConsultation {
    height: 96rem;
    background: #d4c9bf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secConsultation .innerLineup {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: clip;
    clip-path: inset(0);
    height: 66rem;
    background: #c3c3c3;
}

.secConsultation .innerLineup::before {
    content: '';
    position: absolute;
    background: rgba(85, 72, 60, 0.85);
    width: 100%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: multiply;
}

.boxAbout {
    position: sticky;
    top: 0;
    left: 0;
    height: 127.6rem;
    width: 217.6rem;
}

.bgAbout {
    width: 100%;
    position: relative;
    top: calc(50% - 61.8rem);
    left: calc(50% - 118.8rem);
    z-index: 1;
    -webkit-transform: translate(-10%, -25%) rotate(-12deg);
    transform: translate(-10%, -25%) rotate(-12deg);
}

.bgAbout .boxBg {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: #fff;
}

.bgAbout .list {
    position: relative;
    transition: all 0.3s ease-out;
    transform: translate3d(0px, 0, 0px);
    gap: 0.2rem;
    display: flex;
}

.bgAbout .list:nth-child(1) {
    transform: translate3d(125px, 0, 0);
    justify-content: flex-start;
}

.bgAbout .list:nth-child(2) {
    transform: translate3d(55px, 0, 0);
    justify-content: flex-start;
}

.bgAbout .list:nth-child(3) {
    transform: translate3d(0, 0, 0);
    justify-content: flex-start;
}

.bgAbout .list:nth-child(4) {
    transform: translate3d(300px, 0, 0);
    justify-content: flex-start;
}

.bgAbout .list:nth-child(5) {
    transform: translate3d(1325px, 0, 0);
    justify-content: flex-start;
}

.bgAbout .item {
    width: 36.3rem;
    height: 24.2rem;
}

.secConsultation .txtAbout {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    z-index: 3;
}

.secConsultation .boxAboutTxt .tit {
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing30_250);
    color: var(--whiteColor);
    font-weight: bold;
}

.secConsultation .boxAboutTxt .tit+.tit {
    margin-top: 5.2rem;
}

.secConsultation .boxAboutTxt .txtSmall {
    font-size: var(--pcFontSize24);
}

.secConsultation .boxAboutTxt .txtInner {
    margin-top: 6rem;
}

.secConsultation .boxAboutTxt .titBig {
    margin-top: 5rem;
    font-size: var(--pcFontSize48);
    letter-spacing: var(--pcLetterSpacing48_250);
    color: var(--whiteColor);
    font-weight: bold;
}

.secConsultation .txtMore {
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing13_250);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 4rem auto 0;
    width: 25rem;
    height: 6rem;
    color: #55483c;
    background: rgba(255, 255, 255, 0.6);
    justify-content: center;
    position: relative;
    padding-right: 4rem;
}

.secConsultation .txtMore::before {
    content: '';
    position: absolute;
    background: url(../img/index/iconArrowBrown.png) center right / cover no-repeat;
    width: 3rem;
    height: 1.4rem;
    bottom: calc(50% - 0.7rem);
    right: 5.8rem;
}

@media only screen and (max-width:1215px) {
    .secConsultation {
        height: auto;
        padding: 5rem 0;
        position: relative;
        z-index: 2;
    }

    .secConsultation .innerLineup {
        height: 33.5rem;
    }

    .boxAbout {
        position: sticky;
        top: 0;
        left: 0;
        height: 108.2rem;
        width: 154.7rem;
    }

    .secConsultation .boxAboutTxt .tit {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_250);
        line-height: var(--spLineHeight16_30);
    }

    .secConsultation .boxAboutTxt .txtSmall {
        font-size: var(--spFontSize13);
    }

    .secConsultation .boxAboutTxt .txtInner {
        width: 15.4rem;
        margin: 2.3rem auto 0;
    }

    .secConsultation .boxAboutTxt .titBig {
        margin-top: 2.6rem;
        font-size: var(--spFontSize26);
    }

    .secConsultation .boxAboutTxt .tit+.tit {
        margin-top: 1.4rem;
    }

    .secConsultation .txtMore {
        font-size: var(--spFontSize11);
        gap: 0;
        margin: 2rem auto 0;
        width: 20.5rem;
        height: 4rem;
        padding-right: 2rem;
    }

    .bgAbout .item {
        width: 15.5rem;
        height: 10.3rem;
    }

    .bgAbout {
        width: 100%;
        position: relative;
        top: calc(50% - 47rem);
        left: calc(50% - 58.7rem);
        z-index: 1;
        -webkit-transform: translate(-10%, -25%) rotate(-12deg);
        transform: translate(-10%, -25%) rotate(-12deg);
    }

    .secConsultation .txtMore::before {
        right: 3rem;
    }

    .secConsultation .innerLineup::before {
        mix-blend-mode: multiply;
    }

    .bgAbout .list:nth-child(1) {
        transform: translate3d(50px, 0, 0);
    }

    .bgAbout .list:nth-child(2) {
        transform: translate3d(25px, 0, 0);
    }

    .bgAbout .list:nth-child(4) {
        transform: translate3d(130px, 0, 0);
    }

    .heroBgLayer {
        position: absolute;
        top: 0;
        right: 50%;
        transform: translateX(50%);
        max-width: 400px;
        margin: 0 auto;
        background: no-repeat center bottom / cover;
    }
}



/*-----------------------------------------------
    secLife
-----------------------------------------------*/
.secLife {
    position: relative;
    overflow: hidden;
}

.secLife .txtLife {
    position: absolute;
    top: 22.5rem;
    left: 9.375%;
}

.secLife .lifeInner {
    position: absolute;
    top: 0;
    left: 0;
}

/* secTicker */
.secLife .secTicker {
    overflow: hidden;
}

.secLife .secTicker .boxTicker {
    display: flex;
}

.secLife .secTicker .itemTicker:nth-child(odd) {
    animation: loop 400s -200s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.secLife .secTicker .itemTicker:nth-child(even) {
    animation: loop2 400s linear infinite;
}


@keyframes loop {
    0% {
        transform: translateX(100%);
    }

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

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

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

@media only screen and (max-width:1215px) {
    .secLife {
        position: relative;
        margin-top: 0;
        z-index: 2;
    }

    .secLife .secTicker .itemTicker {
        animation: none !important;
    }

    .secLife .txtLife {
        position: absolute;
        top: -4.5rem;
        left: -5.2rem;
        width: 25.9rem;
    }

    .secLife .boxTicker {
        display: flex;
        width: 100%;
        /* 3枚分の幅 */
        animation: slideLoop 30s linear infinite;
    }

    .secLife .itemTicker {
        flex: 0 0 100%;
        /* 1枚 = 画面幅 */
    }

    .secLife .itemTicker img {
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 650;
        object-fit: cover;
    }

    @keyframes slideLoop {
        from {
            transform: translateX(0);
        }

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

        /* 3枚ぶん動かす */
    }
}


/* ===============================
    背景をぼかす層
================================= */
.page-blur {
    position: fixed;
    inset: 0;
    z-index: 9997;
    /* ← 背景より前、オーバーレイより後ろ */
    backdrop-filter: blur(2.5rem);
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.page-blur.is-clear {
    opacity: 0;
    pointer-events: none;
}

/* ===============================
    白いベール＋ロゴ
================================= */
.page-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
    pointer-events: none;
}

/* 白いベール（上に抜ける） */
.page-overlay__white {
    position: absolute;
    inset: 0;
    background: #dcd3ca;
    opacity: 1;
    /* フェードアウトに変更 */
    animation: overlayFadeOut 2.6s cubic-bezier(0.55, 0, 0.45, 1) 0.5s forwards;
}

@keyframes overlayUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes overlayFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ロゴ（中央配置） */
.page-overlay__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    animation:
        logoFadeIn 0.8s ease-out forwards,
        logoFadeOutSoft 2s ease-in-out 0.5s forwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

@keyframes logoFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

@keyframes logoFadeOutSoft {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

/* ブラー層 */
.page-blur {
    position: fixed;
    inset: 0;
    z-index: 9997;
    backdrop-filter: blur(2.5rem);
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.page-blur.is-clear {
    opacity: 0;
    pointer-events: none;
}


/*  */
.headline {
    text-align: center;
    color: rgb(14, 16, 15);
    font-size: clamp(2rem, 6rem, 4.5vw);
    letter-spacing: 0.05rem;
    will-change: transform;
    position: relative;
    z-index: 3;
}

.headline * {
    will-change: transform;

}