@charset "utf-8";

html {
    scrollbar-gutter: stable;
}

/*-----------------------------------------------
    secCmnTop
-----------------------------------------------*/
.secCmnTop {
    background: url(../img/concept/design/bgTop.jpg) center / cover no-repeat;
    position: relative;
    z-index: 2;
}

.pnkzWrapper {
    position: relative;
    z-index: 2;
}

@media only screen and (max-width:1215px) {
    .secCmnTop {
        background: url(../img/concept/design/bgTop_sp.jpg) center / cover no-repeat;
    }
}

/* スマホ: パンくず（.pnkzWrapper）を .secLogin の下へ（#container を flex + order で入れ替え） */
@media only screen and (max-width: 1215px) {
    #container {
        display: flex;
        flex-direction: column;
    }

    #container>header.cmnHeader {
        order: 1;
    }

    #container>.secCmnTop {
        order: 2;
    }

    #container>.main {
        order: 3;
    }

    #container>.pnkzWrapper {
        order: 4;
        height: 3.5rem;
    }

    #container>footer.cmnFooter {
        order: 6;
    }

    /* <?parts_footer?> 等で #container 直下に追加される要素（フッター直前など） */
    #container>*:not(header.cmnHeader):not(.secCmnTop):not(.main):not(.pnkzWrapper):not(footer.cmnFooter) {
        order: 5;
    }
}


/*-----------------------------------------------
    secConceptHero（Brand Concept スクロール）
-----------------------------------------------*/
.secConceptHero {
    position: relative;
    overflow: visible;
    --concept-bg-fade: 0;
}

.secConceptHero:after,
.secConceptHero:before {
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 12rem;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    background: #fff;
    z-index: 1;
}

.secConceptHero:after {
    bottom: -12rem;
    height: 12.2rem;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 100%);
    background: #fff;
}

.secConceptHero.is-inview {
    z-index: 1;
}

/* ピン離脱中：文言より次セクションを前面に */
.secConceptHero.is-past.is-releasing {
    z-index: 0;
}

.secConceptHero.is-past.is-releasing .hero2Inner,
.secConceptHero.is-past.is-releasing .boxHeroLogo {
    z-index: 0;
    pointer-events: none;
}

.secConceptHeroBg {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: url(../img/concept/design/bgHero.jpg) top center / cover no-repeat;
    will-change: opacity, filter;
}

.secConceptHero.is-past .secConceptHeroBg {
    position: absolute;
    filter: blur(0px) !important;
    background-position: bottom;
    height: 100vh;
    bottom: 0;
    top: auto;
}

@media only screen and (min-width: 1216px) {
    .secConceptHero.is-past .secConceptHeroBg {
        opacity: 1 !important;
    }
}

.secConceptHeroBgFog {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    background: rgba(207, 195, 184, 0.72);
    filter: blur(1.4rem);
    backdrop-filter: brightness(1.7);
    -webkit-backdrop-filter: brightness(1.7);
    opacity: 0;
    transition: none;
}

@media only screen and (min-width: 1216px) {
    /* opacity は JS のスクロール連動で制御するため transition なし */
    .secConceptHero .boxTxtPhase1,
    .secConceptHero .boxTxtPhase2 {
        transition: none;
    }
}

.secConceptHeroScroll {
    position: relative;
    z-index: 2;
}

.secConceptHero .heroInner01.hero2 {
    min-height: 100vh;
    height: 250rem;
    display: flex;
    align-items: flex-start;
}

.secConceptHero .heroInner01.hero2.is-end {
    align-items: flex-end;
}

@media only screen and (min-width: 1216px) {
    .secConceptHero .heroInner01.hero2.is-end {
        align-items: flex-end;
    }

    .secConceptHero .heroInner01.hero2.is-end .hero2Inner {
        align-items: flex-start;
        padding-bottom: 6rem;
    }
}

.secConceptHero .hero2Inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    z-index: 3;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 6rem;
}

.secConceptHero .hero2Inner.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140rem;
    max-width: calc(100% - 10rem);
    box-sizing: border-box;
    will-change: transform;
}

.secConceptHero .boxHeroLogo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 140rem;
    max-width: calc(100% - 10rem);
    height: 100vh;
    z-index: 3;
    box-sizing: border-box;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0;
    will-change: opacity, filter, transform;
    transition: opacity 0.3s, filter 0.3s;
}

.secConceptHero .boxHeroLogo img {
    width: 100%;
    height: auto;
}

.secConceptHero .boxHeroLogo.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140rem;
    max-width: calc(100% - 10rem);
    height: 100vh;
    box-sizing: border-box;
    will-change: transform;
}

/* 離脱中も is-fixed + translateY で追従するため、非 fixed 時のフォールバック */
.secConceptHero:has(.hero2.is-end) .boxHeroLogo:not(.is-fixed) {
    top: auto;
    bottom: 0;
    opacity: 1 !important;
    filter: blur(0px) !important;
}

.secConceptHero .boxFlex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.secConceptHero .boxHero04 {
    display: flex;
    gap: 5rem;
    z-index: 2;
    position: relative;
    margin-left: auto;
    top: 16rem;
}

.secConceptHero .boxHero04 .boxTxt {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 0 0 auto;
    width: auto;
    min-width: 80rem;
    min-height: 62rem;
    box-sizing: border-box;
}

.secConceptHero .boxTxtPhase1 {
    position: relative;
    top: 0;
    opacity: 1;
    z-index: 2;
}

.secConceptHero .boxTxtPhase1.is-hide {
    pointer-events: none;
}

.secConceptHero .boxTxtPhase2 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.secConceptHero .boxTxtPhase2.is-show {
    pointer-events: auto;
    z-index: 3;
}

.secConceptHero .txtHero {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing30);
    text-align: right;
    white-space: nowrap;
}

.secConceptHero .boxTxtPhase1 .titHero {
    font-size: var(--pcFontSize65);
    letter-spacing: var(--pcLetterSpacing50);
    white-space: nowrap;
    line-height: 1.35;
}

.secConceptHero .boxTxtPhase1 .txtHero+.txtHero {
    margin-top: 2.7rem;
}

.secConceptHero .boxTxtPhase1 .titHero+.titHero {
    margin-top: 2.4rem;
}

.secConceptHero .boxTxtPhase1 .titHero+.txtHero:not(.titHero) {
    margin-top: 5.3rem;
}

.secConceptHero .boxTxtPhase2 .txtHero {
    font-size: var(--pcFontSize16);
    letter-spacing: 0.3rem;
    white-space: normal;
    line-height: 2.48;
}

.secConceptHero .boxTxtPhase2 .titHero {
    font-size: var(--pcFontSize50);
    letter-spacing: var(--pcLetterSpacing100);
    white-space: normal;
    line-height: calc(70 /50);
}

.secConceptHero .boxTxtPhase2 .subtitHero {
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing100);
    white-space: normal;
    line-height: calc(60 /40);
    margin-bottom: 1rem;
}

.secConceptHero .boxTxtPhase2 .txtHero+.txtHero {
    margin-top: 0;
}

.secConceptHero .txtHero+.txtHero {
    margin-top: 1.2rem;
}

.secConceptHero .boxTxtPhase2 .txtHero.txtHeroGap {
    margin-top: 5.2rem;
}

.secConceptHero .boxTxtPhase2 .txtHero.txtHeroTopGap {
    margin-top: 4.6rem;
}

.secConceptHero .boxHero04 .boxTxt::before {
    content: '';
    position: absolute;
    right: -4rem;
    top: 0;
    height: 100%;
    min-height: 40rem;
    width: 0.1rem;
    background: rgba(36, 36, 35, 0.15);
    opacity: var(--concept-bg-fade);
}

.secConceptHero .boxConcept {
    flex-shrink: 0;
    padding-top: 0;
    opacity: var(--concept-bg-fade);
    transform: translateY(calc((1 - var(--concept-bg-fade)) * 0.8rem));
    filter: blur(calc((1 - var(--concept-bg-fade)) * 4px));
    will-change: opacity, transform, filter;
}

.secConceptHero .boxConcept img {
    width: 1.3rem;
    height: auto;
}

.secConceptHero .jsConceptLine {
    opacity: 0;
    transform: translateY(0.8rem);
    filter: blur(4px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out, filter 0.55s ease-out;
}

.secConceptHero .jsConceptLine.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media only screen and (max-width: 1215px) {
    .secConceptHero {
        --concept-sp-bg-top: 0;
    }

    .secConceptHeroBg {
        /* 初期は absolute、ピン／解除時のみ fixed。
           高さは lvh（アドレスバー非表示時の安定値）で固定し、
           スクロール中の dvh / inset:0 伸縮で cover が拡大しないようにする */
        position: absolute;
        inset: auto;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        height: 100vh;
        height: 100lvh;
        background-image: url(../img/concept/design/bgHero_sp.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        opacity: 1;
        filter: none;
        will-change: auto;
        transition: none;
        clip-path: none;
    }

    .secConceptHero:not(.is-inview) .secConceptHeroBg {
        opacity: 0;
    }

    .secConceptHero.is-scrolling .secConceptHeroBg,
    .secConceptHero.is-past .secConceptHeroBg {
        position: fixed;
        inset: auto;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        /* absolute 時と同じ高さに揃え、fixed 切替・アドレスバー変化でも cover を維持 */
        height: 100vh;
        height: 100lvh;
        min-height: 0;
        width: auto;
        clip-path: none;
        background-position: center top;
        filter: none;
    }

    .secConceptHero .heroInner01.hero2 {
        height: calc(150rem + var(--concept-hero-track-extra, 0px));
    }

    .secConceptHero .hero2Inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        height: var(--concept-hero-inner-h, 100vh);
        height: var(--concept-hero-inner-h, 100lvh);
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding-top: 0;
        padding-bottom: 0;
    }

    .secConceptHero .hero2Inner.is-fixed {
        position: fixed;
        top: 0;
        /* translateX(-50%) は実機で文字が滲む／ふらつくため左右 auto で中央寄せ */
        left: 0;
        right: 0;
        transform: none;
        margin-left: auto;
        margin-right: auto;
        width: calc((335 / 375) * 100%);
        max-width: none;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        will-change: auto;
        /* ヘッダー実測高さ + デザイン40（4rem）。JS が --concept-header-h を更新 */
        padding-top: calc(var(--concept-header-h, 6.5rem) + 4rem);
        padding-bottom: 2rem;
        box-sizing: border-box;
    }

    .secConceptHero .boxHeroLogo {
        width: 60%;
        max-width: none;
        padding-top: 0;
        box-sizing: border-box;
        justify-content: center;
    }

    .secConceptHero .boxHeroLogo.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        margin-left: auto;
        margin-right: auto;
        width: 60%;
        max-width: none;
        will-change: auto;
    }

    .secConceptHero .boxHeroLogo .boxImg {
        width: 29.6rem;
    }

    .secConceptHero .heroInner01.hero2.is-end {
        align-items: flex-end;
        padding-bottom: 0;
    }

    .secConceptHero .heroInner01.hero2.is-end .hero2Inner {
        justify-content: flex-start;
        align-items: center;
        padding-top: calc(var(--concept-header-h, 6.5rem) + 4rem);
        padding-bottom: 0;
        box-sizing: border-box;
    }

    .secConceptHero .boxHero04 {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        padding-bottom: 0;
        top: 0;
    }

    .secConceptHero .boxHero04 .boxTxt {
        position: relative;
        width: 100%;
        min-width: 0;
        min-height: 42rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    /* コンセプトTOP（boxHeroLogoあり）のみ：Phase1初期表示＋ロゴとのスタック */
    .secConceptHero:has(.boxHeroLogo) {
        /* ロゴを中央より下へ。低い画面では pad を増やして Phase1 との隙間を確保 */
        --hero-intro-logo-pad: clamp(9rem, calc(9rem + (667px - 100vh) * 0.15), 14rem);
        /* Phase1 の押し下げ。狭い幅では弱めてロゴとの重なりを防ぐ */
        --hero-intro-phase1-top: clamp(5rem, 22vw, 10rem);
        /* boxTxt 全体の上方向オフセット。375/667付近で約-7rem */
        --hero-intro-shift: clamp(7rem, calc(7rem + (667px - 100vh) * 0.15), 11rem);
    }

    .secConceptHero:has(.boxHeroLogo) .boxHeroLogo.is-fixed {
        width: auto;
        max-width: calc(100% - 4rem);
    }

    .secConceptHero:has(.boxHeroLogo) .boxHeroLogo .boxImg {
        width: clamp(24rem, 79vw, 29.6rem);
        flex-shrink: 0;
        max-width: 80%;
    }

    .secConceptHero:has(.boxHeroLogo) .boxHero04 .boxTxt {
        transform: translateY(calc(-1 * var(--hero-intro-shift)));
    }

    .secConceptHero .boxTxtPhase1 {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        text-align: center;
        opacity: 1;
        z-index: 2;
        transition: opacity 0.45s ease;
    }

    .secConceptHero .boxTxtPhase1 .jsConceptLine {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .secConceptHero .boxTxtPhase1 .txtHero {
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(26 / 13);
        text-align: center;
        white-space: normal;
    }

    .secConceptHero .boxTxtPhase1 .titHero {
        font-size: var(--spFontSize28);
        letter-spacing: 0;
        line-height: calc(45 / 28);
        text-align: center;
        white-space: normal;
    }

    .secConceptHero .boxTxtPhase1 .txtHero+.txtHero {
        margin-top: 0.4rem;
    }

    .secConceptHero .boxTxtPhase1 .titHero+.txtHero:not(.titHero) {
        margin-top: 1.6rem;
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase1 {
        top: var(--hero-intro-phase1-top);
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase1 .titHero {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase1 .txtHero+.txtHero {
        margin-top: 0.4rem;
    }

    .secConceptHero .boxTxtPhase2 {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        transition: opacity 0.45s ease;
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase2 {
        top: 10.4rem;
    }

    .secConceptHero .txtHero {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2.4;
    }

    .secConceptHero .boxTxtPhase2 .txtHero {
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(26 / 13);
        text-align: center;
        font-feature-settings: "palt";
        white-space: normal;
    }

    .secConceptHero .boxTxtPhase2 .titHero {
        font-size: var(--spFontSize24);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(38 / 24);
        white-space: normal;
    }

    .secConceptHero .boxTxtPhase2 .subtitHero {
        font-size: var(--spFontSize20);
        letter-spacing: 0;
        line-height: calc(38 / 20);
        text-align: center;
        white-space: normal;
        margin-bottom: 0;
    }

    .secConceptHero .boxTxtPhase2 .txtHero+.txtHero {
        margin-top: 0;
    }

    .secConceptHero .boxTxtPhase2 .txtHero.txtHeroGap {
        margin-top: 2.6rem;
    }

    .secConceptHero .boxTxtPhase2 .txtHero.txtHeroTopGap {
        margin-top: 2.2rem;
    }

    .secConceptHero .boxTxtPhase2 .txtHero.txtHeroTopGap {
        margin-top: 1.1rem;
    }

    .secConceptHero .boxHero04 .boxTxt::before {
        display: none;
    }

    .secConceptHero .boxConcept {
        display: none;
    }
}

@media (max-width: 1215px) and (max-height: 670px) {
    .secConceptHero:has(.boxHeroLogo) .boxHeroLogo .boxImg {
        max-width: 70%;
    }

    .secConceptHero:has(.boxHeroLogo) .boxHeroLogo.is-fixed {
        padding-top: 30%;
    }

    .secConceptHero .heroInner01.hero2 {
        height: calc(160rem + var(--concept-hero-track-extra, 0px));
    }
}

/* 短高さSP（横向き等）：ピン留めをやめ通常縦スクロール */
@media (max-width: 1215px) and (max-height: 500px) {

    .secConceptHeroBg,
    .secConceptHero.is-past .secConceptHeroBg {
        position: absolute;
        inset: 0;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1 !important;
        filter: none !important;
        background-size: cover;
        background-position: center top;
        clip-path: none;
    }

    .secConceptHero:not(.is-inview) .secConceptHeroBg {
        opacity: 1 !important;
    }

    .secConceptHeroBgFog {
        opacity: 1;
    }

    .secConceptHero .heroInner01.hero2 {
        height: auto;
        min-height: 0;
        padding: 4rem 0 6rem;
        align-items: flex-start;
    }

    .secConceptHero .hero2Inner,
    .secConceptHero .hero2Inner.is-fixed {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        height: auto;
        will-change: auto;
        justify-content: flex-start;
    }

    .secConceptHero .boxHeroLogo,
    .secConceptHero .boxHeroLogo.is-fixed {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        max-width: calc(100% - 4rem);
        height: auto;
        margin: 0 auto 2rem;
        padding-top: 0;
        opacity: 1;
        filter: none;
        will-change: auto;
        justify-content: center;
        display: none;

    }

    .secConceptHero:has(.boxHeroLogo) .boxHeroLogo .boxImg {
        width: clamp(18rem, 50vw, 24rem);
        max-width: 60%;
    }

    .secConceptHero:has(.boxHeroLogo) .boxHero04 .boxTxt {
        transform: none;
        min-height: 0;
        flex-direction: column;
    }

    .secConceptHero .boxTxtPhase1 {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }

    .secConceptHero .boxTxtPhase2 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase1 {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }

    .secConceptHero:has(.boxHeroLogo) .boxTxtPhase2 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
    }

    .secConceptHero .jsConceptLine {
        opacity: 1;
        transform: none;
        filter: none;
    }
}


/*-----------------------------------------------
    secLifestyle
-----------------------------------------------*/
.secLifestyle {
    margin-top: 10rem;
}

.secLifestyle .secLifestyleInner {}

.secLifestyle .topTit {
    font-size: var(--pcFontSize35);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(55 /35);
    text-align: center;
}

.secLifestyle .list {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 4.8rem;
    margin-top: 6rem;
}

.secLifestyle .iconCircle {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--colorBgLightGrey);
    margin: 8rem auto 2.2rem;
    position: relative;
}

.secLifestyle .iconCircle::before,
.secLifestyle .iconCircle::after {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: var(--colorBgLightGrey);
    border-radius: 50%;
    left: calc(50% - 1.2rem/2);
}

.secLifestyle .iconCircle::before {
    top: -2.2rem;
}

.secLifestyle .iconCircle::after {
    bottom: -2.2rem;
}

.secLifestyle .list .item {
    width: calc((100% - 9.6rem)/3);
}

.secLifestyle .list .item .boxImg {
    margin-bottom: 2.4rem;
}

.secLifestyle .list .item .boxTxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.secLifestyle .list .item .txt {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(32 /18);
    text-align: center;
}

.secLifestyle .list .item .tit {
    font-size: var(--pcFontSize24);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(34 /24);
    text-align: center;
    position: relative;
    display: inline-block;
}

.secLifestyle .list .item .tit::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: -0.6rem;
    width: 100%;
    height: 0.1rem;
    background-color: var(--colorBrown);
}

@media only screen and (max-width: 1215px) {
    .secLifestyle {
        margin-top: 0;
        position: relative;
        z-index: 2;
    }

    .secLifestyle .topTit {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(32 / 18);
    }

    .secLifestyle .list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 2rem;
    }

    .secLifestyle .list .item {
        width: 100%;
    }

    .secLifestyle .list .item+.item {
        margin-top: 2.7rem;
    }

    .secLifestyle .list .item .boxImg {
        margin: 0 auto 1.7rem;
        width: 94.03%;
    }

    .secLifestyle .list .item .txt {
        font-size: var(--spFontSize15);
        letter-spacing: var(--spLetterSpacing100);
        line-height: calc(24 / 15);
    }

    .secLifestyle .list .item .tit {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing100);
        line-height: calc(34 / 18);
    }

    .secLifestyle .list .item .tit::before {
        bottom: 0.3rem;
    }

    .secLifestyle .iconCircle {
        margin: 4.9rem auto 4rem;
    }
}

/*-----------------------------------------------
    secTeam
-----------------------------------------------*/
.secTeam {
    position: relative;
    padding: 11.7rem 0;
}

.secTeam::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 12rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.secTeam.lazyloaded {
    background: url(../img/concept/design/bgTeam.jpg) center / cover no-repeat;
}

.secTeam .secTeamInner,
.secTeam .boxRole {
    position: relative;
    z-index: 2;
}

.secTeam .boxContent {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.secTeam .boxTxt {
    flex: 0 0 auto;
    color: var(--colorBrown);
}

.secTeam .txtSub,
.secTeam .tit,
.secTeam .boxLead .txt {
    text-shadow: 0 0 1.4rem rgba(255, 255, 255, 0.8), 0 0 1.6rem rgba(255, 255, 255, 0.45), 0 0 1.8rem rgba(255, 255, 255, 0.35);
}

.secTeam .txtSub {
    font-size: var(--pcFontSize24);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(50 / 24);
    font-feature-settings: "palt";
}

.secTeam .tit {
    font-size: var(--pcFontSize55);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(75 / 55);
    font-feature-settings: "palt";
    margin-top: 2rem;
}

.secTeam .boxLead {
    margin-top: 4.8rem;
}

.secTeam .boxLead .txt {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing50);
    line-height: calc(50 / 18);
    font-feature-settings: "palt";
}

.secTeam .boxLead .txt+.txt {
    margin-top: 2.4rem;
}

.secTeam .boxImg {
    flex: 0 1 88.2rem;
    max-width: 88.2rem;
}

@media only screen and (max-width: 1215px) {
    .secTeam {
        padding: 1.5rem 0 4rem;
    }

    .secTeam::after {
        height: 4rem;
    }

    .secTeam.lazyloaded {
        background: url(../img/concept/design/bgTeam_sp.jpg) center top / 100% auto no-repeat;
    }

    .secTeam .boxContent {
        flex-direction: column;
        gap: 2.7rem;
    }

    .secTeam .boxTxt {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .secTeam .txtSub {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(30 / 16);
    }

    .secTeam .tit {
        font-size: var(--spFontSize26);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(38 / 26);
        margin-top: 0.3rem;
    }

    .secTeam .boxLead {
        margin-top: 0.8rem;
    }

    .secTeam .boxLead .txt {
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(28 / 14);
    }

    .secTeam .boxLead .txt+.txt {
        margin-top: 2rem;
    }

    .secTeam .boxImg {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .secTeam .boxRole {
        padding: 2.7rem 0 0;
    }

    .secTeam .boxRoleInner {
        margin: 0 auto;
    }

    .secTeam .roleItem+.roleItem {
        border-top: 0.1rem solid var(--colorBorderGray03);
        margin-top: 1.6rem;
        padding-top: 1.7rem;
    }

    .secTeam .roleTit {
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing50);
        line-height: 1.5;
        color: var(--orangeColor);
        margin-bottom: 0.4rem;
    }

    .secTeam .roleTxt {
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(22 / 12);
    }
}

/*-----------------------------------------------
    secPoint
-----------------------------------------------*/
.secPoint {
    padding: 6rem 0 0;
    margin-top: 0;
}

.secPoint .txtBox {
    text-align: center;
    color: var(--colorBrown);
}

.secPoint .txtBox .subTit {
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 1.5;
    font-feature-settings: "palt";
}

.secPoint .txtBox .txt {
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(50 / 28);
    font-feature-settings: "palt";
    margin-top: 3.1rem;
}

.secPoint .txtBox .tit {
    font-size: var(--pcFontSize50);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 1.4;
    font-feature-settings: "palt";
    margin-top: 0.3rem;
}

.secPoint .txtBox .tit .accent {
    display: inline;
    vertical-align: baseline;
    font-size: var(--pcFontSize80);
    line-height: 1;
}

.secPoint .list {
    list-style: none;
    margin: 8rem 0 0;
    padding: 0;
}

.secPoint .list .item {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.secPoint .list .item+.item {
    margin-top: 0;
}

.secPoint .list .item.isPoint01.lazyloaded {
    background: url(../img/concept/design/bgPoint01.jpg) center / cover no-repeat;
}

.secPoint .list .item.isPoint02.lazyloaded {
    background: url(../img/concept/design/bgPoint02.jpg) center / cover no-repeat;
}

.secPoint .list .item.isPoint03.lazyloaded {
    background: url(../img/concept/design/bgPoint03.jpg) center / cover no-repeat;
}

.secPoint .list .item.isPoint04.lazyloaded {
    background: url(../img/concept/design/bgPoint04.jpg) center / cover no-repeat;
}

.secPoint .list .item.isPoint05.lazyloaded {
    background: url(../img/concept/design/bgPoint05.jpg) center / cover no-repeat;
}

.secPoint .list .item .itemInner {
    display: flex;
    align-items: center;
    min-height: 90rem;
    padding: 8rem 0;
    box-sizing: border-box;
}

.secPoint .list .item .boxContent {
    display: grid;
    grid-template-columns: 58rem 61rem;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 3rem 4rem;
    width: 100%;
    font-feature-settings: "palt";
}

.secPoint .list .item:nth-child(even) .boxContent {
    grid-template-columns: 61rem 58rem;
}

.secPoint .list .item.isPoint03 .boxContent {
    justify-content: unset;
    width: 100%;
}

.secPoint .list .item .boxLead {
    grid-column: 1;
    grid-row: 1;
    color: var(--whiteColor);
}

.secPoint .list .item .boxFeature {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    padding: 3.5rem 4rem 3.1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--colorBrown);
    margin-bottom: 0.5rem;
}

.secPoint .list .item .boxImg {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    mix-blend-mode: multiply;
}

.secPoint .list .item.isTextRight .boxContent {
    justify-content: end;
    align-items: unset;
}

.secPoint .list .item.isTextRight .boxLead {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
}

.secPoint .list .item.isTextRight .boxFeature {
    grid-column: 2;
    grid-row: 2;
}

.secPoint .list .item.isPoint03 .boxImg {
    width: 82.4rem;
    mix-blend-mode: normal;
}

.secPoint .list .item .pointLabel {
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 1.5;
    white-space: nowrap;
    position: relative;
}

.secPoint .list .item .pointLabel .small {
    font-size: var(--pcFontSize24);
}

.secPoint .list .item .pointLabel .pointTxt {
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing30);
    line-height: 1.5;
    font-weight: 300;
    margin-right: 5.8rem;
}

.secPoint .list .item .pointLabel .pointTxt::after {
    content: '';
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    display: inline-block;
    width: 3rem;
    height: 0.1rem;
    margin: 0 1.4rem;
    background-color: var(--whiteColor);
}

.secPoint .list .item .pointTit {
    font-size: var(--pcFontSize50);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(75 / 50);
    margin-top: 1.6rem;
    white-space: nowrap;
}

.secPoint .list .item .pointLead {
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(50 / 18);
    font-feature-settings: "palt";
    margin-top: 1.9rem;
}

.secPoint .list .item .featureList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secPoint .list .item .featureItem {
    position: relative;
    padding-left: 1.6rem;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: calc(26 / 16);
    font-feature-settings: "palt";
}

.secPoint .list .item .featureItem::before {
    content: '';
    position: absolute;
    top: 0.9rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--orangeColor);
}

.secPoint .list .item .featureItem+.featureItem {
    margin-top: 0.9rem;
}

@media only screen and (max-width: 1215px) {
    .secPoint {
        padding: 1.6rem 0 0;
    }

    .secPoint .txtBox .subTit {
        font-size: var(--spFontSize20);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(38/20);
    }

    .secPoint .txtBox .txt {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(30 / 16);
        margin-top: 1.2rem;
    }

    .secPoint .txtBox .tit {
        font-size: var(--spFontSize22);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(34/22);
        margin-top: 0.7rem;
    }

    .secPoint .txtBox .tit .accent {
        display: inline;
        vertical-align: baseline;
        font-size: var(--spFontSize30);
    }

    .secPoint .list {
        margin-top: 2.6rem;
    }

    .secPoint .list .item {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .secPoint .list .item.isPoint01.lazyloaded {
        background: url(../img/concept/design/bgPoint01_sp.jpg) center top / cover no-repeat;
    }

    .secPoint .list .item.isPoint02.lazyloaded {
        background: url(../img/concept/design/bgPoint02_sp.jpg) center top / cover no-repeat;
    }

    .secPoint .list .item.isPoint03.lazyloaded {
        background: url(../img/concept/design/bgPoint03_sp.jpg) center top / cover no-repeat;
    }

    .secPoint .list .item.isPoint04.lazyloaded {
        background: url(../img/concept/design/bgPoint04_sp.jpg) center top / cover no-repeat;
    }

    .secPoint .list .item.isPoint05.lazyloaded {
        background: url(../img/concept/design/bgPoint05_sp.jpg) center top / cover no-repeat;
    }

    .secPoint .list .item.isTextRight .boxLead {
        text-align: left;
    }

    .secPoint .list .item.isPoint03 .boxImg {
        order: -1;
        width: 114.03%;
        /* margin-top: -20rem; */
        /* margin-bottom: 2.6rem; */
    }

    .secPoint .list .item .itemInner {
        align-items: flex-start;
        min-height: 0;
        padding: 24.5rem 0 4rem;
    }

    .secPoint .list .item .boxContent {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .secPoint .list .item .boxLead {
        color: var(--whiteColor);
    }

    .secPoint .list .item .boxImg {
        order: 2;
        width: 100%;
    }

    .secPoint .list .item .boxFeature {
        order: 3;
        margin-top: 1.5rem;
        padding: 2.2rem 2rem 2rem;
        background: rgba(255, 255, 255, 0.82);
        margin-bottom: 0;
    }

    .secPoint .list .item .pointLabel {
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing50);
    }

    .secPoint .list .item .pointLabel .small {
        font-size: var(--pcFontSize16);
    }

    .secPoint .list .item .pointLabel .pointTxt {
        font-size: var(--pcFontSize17);
        margin-right: 2.6rem;
    }

    .secPoint .list .item .pointLabel .pointTxt::after {
        width: 1.5rem;
        margin: 0 0.5rem;
    }

    .secPoint .list .item .pointTit {
        font-size: var(--spFontSize22);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(34 / 22);
        margin-top: 0.8rem;
    }

    .secPoint .list .item .pointLead {
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing50);
        line-height: 2.2;
        margin-top: 1.1rem;
    }

    .secPoint .list .item .featureItem {
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(22 / 12);
        padding-left: 1.2rem;
    }

    .secPoint .list .item .featureItem::before {
        top: 0.7rem;
        width: 0.6rem;
        height: 0.6rem;
    }

    .secPoint .list .item .featureItem+.featureItem {
        margin-top: 0.7rem;
    }

    .secPoint .list .item.isPoint01 {
        background-position: center top;
    }

    .secPoint .list .item.isPoint01 .itemInner {
        padding-top: 5.8rem;
    }

    .secPoint .list .item.isPoint01 .pointLabel {
        line-height: calc(19 / 12);
    }

    .secPoint .list .item.isPoint01 .pointTit {
        line-height: calc(34 / 22);
        margin-top: 0.6rem;
    }

    .secPoint .list .item.isPoint01 .boxImg {
        order: -1;
        width: 72.84%;
        margin-bottom: 3.4rem;
    }

    .secPoint .list .item.isPoint01 .featureItem {
        line-height: calc(21 / 12);
    }

    .secPoint .list .item.isPoint01 .featureItem+.featureItem {
        margin-top: 0.8rem;
    }

    .secPoint .list .item.isPoint03 .itemInner {
        padding-top: 1rem;
    }
}

/*-----------------------------------------------
    secVr
-----------------------------------------------*/
.secVr {
    padding: 12rem 0 17rem;
    background: #eeecd7 url(../img/concept/design/bgVr.jpg) center top / cover no-repeat;
}

.secVr .boxHead {
    text-align: center;
}

.secVr .boxHead .subTit {
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 2;
    color: var(--colorBrown);
}

.secVr .boxHead .tit {
    margin-top: 1rem;
    font-size: var(--pcFontSize50);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 1.5;
    color: var(--colorBrown);
}

.secVr .boxImg {
    width: 101.858%;
    margin-top: 3rem;
}

.secVr .boxLead {
    margin-top: 2rem;
    text-align: center;
}

.secVr .boxLead .txt {
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing150);
    line-height: calc(38 / 16);
    color: var(--colorBrown);
}

.secVr .boxPoint {
    margin-top: 7.6rem;
    padding: 2.2rem 8rem 6rem;
    background: var(--whiteColor05);
}

.secVr .boxPoint .pointTit {
    width: 100%;
    margin: -5rem auto 0;
    padding: 1.1rem 2rem;
    border-radius: 999.9rem;
    background-color: var(--orangeColor);
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing150);
    line-height: calc(38 / 20);
    color: var(--whiteColor);
    text-align: center;
}

.secVr .boxPoint .pointList {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.secVr .boxPoint .pointItem {
    padding: 3.2rem 3rem 2rem;
    background-color: var(--whiteColor);
    border-radius: 1rem;
}

.secVr .boxPoint .pointItem .itemTit {
    position: relative;
    padding-left: 4rem;
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing150);
    line-height: 1.5;
    color: var(--colorBrown);
    font-weight: 700;
}

.secVr .boxPoint .pointItem .itemTit::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.4rem;
    background: var(--whiteColor);
    border: 0.1rem solid var(--borderColorLightGrey);
}

.secVr .boxPoint .pointItem .itemTit::after {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0.8rem;
    width: 1.1rem;
    height: 0.7rem;
    border-bottom: 0.3rem solid var(--orangeColor);
    border-left: 0.3rem solid var(--orangeColor);
    transform: rotate(-45deg);
}

.secVr .boxPoint .pointItem .itemTxt {
    margin-top: 0.3rem;
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing150);
    line-height: calc(38 / 18);
    color: var(--colorBrown);
}

@media only screen and (max-width: 1215px) {
    .secVr {
        padding: 4rem 0 6.7rem;
        background: url(../img/concept/design/bgVr_sp.jpg) center top / 100% auto no-repeat;
    }

    .secVr .boxHead .subTit {
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(30 / 18);
    }

    .secVr .boxHead .tit {
        margin-top: 0.8rem;
        font-size: var(--spFontSize26);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(34 / 26);
    }

    .secVr .boxImg {
        margin-top: 1.9rem;
        width: 107.765%;
    }

    .secVr .boxLead {
        margin-top: 1.9rem;
    }

    .secVr .boxLead .txt {
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(22 / 12);
        width: 88.06%;
        text-align: left;
        margin: 0 auto;
    }

    .secVr .boxLead .txt+.txt {
        margin-top: 0.5rem;
    }

    .secVr .boxPoint {
        margin-top: 4.4rem;
        padding: 1.2rem 2rem 3rem;
        border-radius: 0.8rem;
    }

    .secVr .boxPoint .pointTit {
        margin: -3rem auto 0;
        padding: 1rem 1.2rem;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing50);
        line-height: 1.5;
    }

    .secVr .boxPoint .pointList {
        gap: 1rem;
        margin-top: 2rem;
    }

    .secVr .boxPoint .pointItem {
        padding: 1.8rem 1.5rem 1.3rem;
        border-radius: 0.5rem;
    }

    .secVr .boxPoint .pointItem .itemTit {
        padding-left: 3rem;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(26 / 14);
    }

    .secVr .boxPoint .pointItem .itemTit::before {
        top: 1.3rem;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 0.4rem;
    }

    .secVr .boxPoint .pointItem .itemTit::after {
        top: 0.7rem;
        left: 0.45rem;
        width: 1.2rem;
        height: 0.8rem;
    }

    .secVr .boxPoint .pointItem .itemTxt {
        margin-top: 0.7rem;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(26 / 14);
        font-feature-settings: "palt";
    }
}

/*-----------------------------------------------
    secGalleryBnr
-----------------------------------------------*/
.secGalleryBnr {
    padding: 14rem 0 4.3rem;
}

.secGalleryBnr .galleryTopTxt {
    margin: 0 0 4.6rem;
    color: var(--colorBrown);
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing100);
    line-height: 1.5;
    text-align: center;
    font-feature-settings: "palt";
}

.secGalleryBnr .linkGalleryBnr {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1400 / 528;
}

.secGalleryBnr .boxGalleryImg,
.secGalleryBnr .boxGalleryImg picture,
.secGalleryBnr .boxGalleryImg img {
    width: 100%;
    height: 100%;
}

.secGalleryBnr .boxGalleryImg img {
    display: block;
    object-fit: cover;
}

@media only screen and (max-width: 1215px) {
    .secGalleryBnr {
        padding: 3.8rem 0 0;
    }

    .secGalleryBnr .galleryTopTxt {
        margin-bottom: 2.4rem;
        font-size: var(--spFontSize20);
        letter-spacing: var(--pcLetterSpacing50);
        line-height: 1.5;
    }

    .secGalleryBnr .linkGalleryBnr {
        aspect-ratio: 670 / 590;
        color: var(--whiteColor);
    }
}

@media only screen and (max-width: 1215px) {
    .secConcept {
        padding: 4.7rem 0 0;
    }
}