/* ==========================
   メインビジュアル ローディングアニメーション
========================== */

/* ==========================
   メインビジュアル ローディングアニメーション（繊細な二重リング型）
========================== */
.mainVisual__loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}

.mainVisual__loader.is-hide {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}

.loaderSpinner {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaderSpinner::before,
.loaderSpinner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* 外側リング（淡いベージュ） */
.loaderSpinner::before {
    border-width: 2.5px;
    border-color: #d4cdb7 #ede9e0 #ede9e0 #ede9e0;
    animation: loaderSpinOuter 1.2s linear infinite;
}

/* 内側リング（細い濃いブラウン） */
.loaderSpinner::after {
    border-width: 1.5px;
    border-color: #4d2909 #ede9e0 #ede9e0 #ede9e0;
    width: 70%;
    height: 70%;
    left: 15%;
    top: 15%;
    animation: loaderSpinInner 1.2s linear infinite reverse;
}

@keyframes loaderSpinOuter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes loaderSpinInner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* @charset removed (must be at the top of file); file is UTF-8 by default */

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: #D0CDC9;
    --primary-key: rgb(77, 41, 9);
    --contentPadding: 6.4%;

}

html {
    font-size: 62.5%;
    /* hide any transient horizontal overflow caused by transforms/animations */
    overflow-x: hidden;
}

body {
    font-family: 
        "EB Garamond",
        "Shippori Mincho",
        serif;
    font-style: normal;
    color: #000;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100vw;
    height: auto;
}






/*==========================
common link
==========================*/

.link__area {
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.item__area {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.item__name {
    width: calc(100/375 * 100vw);
    color: #000;
    font-family: "Shippori Mincho";
    font-size: calc(15/375 * 100vw);
    line-height: 100%;
    align-self: stretch;
}

.item__price {
    width: calc(130/375 * 100vw);
    color: #000;
    font-family: "Shippori Mincho";
    font-size: calc(12/375 * 100vw);
    line-height: normal;
    display: flex;
    justify-content: flex-end;
}

.size__area {
    width: calc(100/375 * 100vw);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.size {
    display: flex;
    width: calc(19/375 * 100vw);
    padding: 3px 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #000;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: calc(11/375 * 100vw);
    line-height: 105%;
}

.btn__detail {
    display: flex;
    padding: 0 3.2%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--primary-key);
    color: #FFF;
    font-family: "inter";
    font-size: calc(12/375 * 100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    border: 1px solid #000;

}

.btn__detail:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid var(--primary-key);
}




/* pc */
@media screen and (min-width:834px) {
    .item__name {
        width: 150px;
    }

    .size__area {
        width: 150px;
    }
}

/*==========================
scrollTop
==========================*/
.topBtn {
    position: fixed;
    height: 50px;
    text-decoration: none;
    font-weight: 400;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #000;
    padding: 0 0 0 35px;
    border-top: solid 1px #000;
    right: 4%;
    bottom: 4%;
    font-family: "EB Garamond";
}

.topBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px #000;
    transform: rotate(35deg);
    transform-origin: left top;
}

.delay-time01{
animation-delay: 0.1s;
}

.delay-time02{
animation-delay: 0.5s;
}

.delay-time04{
animation-delay: 1s;
}

/* /*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.img__main {
	opacity: 0;
}


/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0 80px);
    opacity: 0;
    transition: 1s;
}

.fadeIn.animated {
    transform: translate(0 0);
    opacity: 1;
}

/*==========================
slideFromLeft 
==========================*/

.slideFromLeft {
  opacity: 0;
  transform: translateX(-50px); /* 画面左側に50pxずらしておく */
  transition: all 0.8s ease-out; /* アニメーションの時間と動き方を指定 */
}

/* Improve animated element rendering to avoid visual overflow during transitions */
.slideFromLeft,
.slideFromRight,
.fadeIn,
.fadeUp {
        will-change: transform, opacity;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        /* promote to its own layer to reduce repaint overflow artifacts */
        transform-origin: 0 0;
}

/* animatedクラスが付与されたときの表示状態 */
.slideFromLeft.animated {
  opacity: 1;
  transform: translateX(0); /* 元の位置に戻す */
}

/* slideFromRight: 右から入るバリアント（slideFromLeft のミラー） */
.slideFromRight {
    opacity: 0;
    transform: translateX(50px); /* 画面右側に50pxずらしておく */
    transition: all 0.8s ease-out;
}

.slideFromRight.animated {
    opacity: 1;
    transform: translateX(0);
}



/*==========================
TOP
==========================*/

.main {
    display: flex;
    flex-direction: column;
}

/* Ensure any transient horizontal overflow from animated/transformed children is hidden
   at a high container level. This prevents flicker/scroll during entrance animations. */
#container,
.main {
    overflow-x: hidden;
}


.mainVisual {
    position: relative;
    background-color: rgb(212, 205, 183);
}

.mainVisual__img--pc {
    display: none;
}

.mainVisual__img--sp {
    width: calc(188/375*100vw);
    display: block;
    margin: 0 auto;
}

.mainVisual__sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

/* ==========================
   Marquee / infinite horizontal scroll
   - .marquee__inner holds two identical sets of images
   - animation translates the inner wrapper left by 50% to reveal the duplicate
   ========================== */
.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: 0;
    /* ensure the inner width fits contents and can be translated */
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
    /* 初期は停止しておき、JSで画像読み込み完了後に再生（iOSでの起動不良対策） */
    animation-play-state: paused;
    /* hint browser this element will transform to reduce jank */
    will-change: transform;
}

.marquee__inner img {
    display: block;
    flex: 0 0 auto;
    width: auto;
    max-width: 100vw; /* keep images responsive */
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* shorter animation on small screens */
@media screen and (max-width: 480px) {
    .marquee__inner {
        animation-duration: 14s;
    }
}

/* Note: intentionally not pausing on hover/focus so marquee keeps moving.
   If you want to pause on user interaction, re-enable the rule above. */

/* --- Responsive hero layout adjustments --- */
@media screen and (min-width:834px) {
    /* Desktop: two-column hero */
    .mainVisual {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: 100vh;
    }

    .mainVisual__sec {
        width: 75%;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .marquee {
        height: 100%;
        z-index: 1;
    }

    .marquee__inner img {
        height: 100vh;
        width: auto;
        object-fit: cover;
    }

    .mainVisual__titleLogo {
        /* keep the left column in the normal flow so images sit to the right */
        position: relative;
        width: 25%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* push title to bottom */
        align-items: flex-start; /* align title to left */
        padding-left: 5vw;
        padding-bottom: 5vh;
        box-sizing: border-box;
        background: transparent;
        z-index: 10; /* ensure title sits above marquee images visually */
        pointer-events: auto;
    }

    .mainVisual__titleImg {
        /* place title inside the left column, aligned bottom */
        position: static;
        width: 40vw;
        max-width: none;
        height: auto;
        z-index: 11;
        margin: 0;
    }

    .mainVisual__logo {
        /* place logo at top-left with original desktop size */
        position: absolute;
        top: 3vh;
        left: 5vw; /* match title left padding */
        width: 8vw;
        height: auto;
        z-index: 12;
    }
}

@media screen and (max-width:833px) {
    /* Mobile: reduce image area so title can sit below image */
    .mainVisual {
        position: relative;
        height: auto;
    }

    .mainVisual__sec {
        width: 100%;
    }

    /* reduce marquee height to reserve space for title/logo below */
    .marquee {
        height: 60vh;
    }

    .marquee__inner img {
        height: 60vh;
        width: auto;
        object-fit: cover;
    }

    /* place title/logo below the image, center-aligned */
    .mainVisual__titleLogo {
        position: static;
        transform: none;
        top: auto;
        left: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
        box-sizing: border-box;
        pointer-events: auto;
        background: transparent;
    }

    .mainVisual__titleImg,
    .mainVisual__logo {
        pointer-events: auto;
        margin: 0 auto;
    }
}

.mainVisual__titleImg {
    display: flex;
    margin: 0 auto;
    padding: 24px 0;
    width: 100%;
}

.mainVisual__logo {
    display: flex;
    width: calc(60/375 * 100vw);
    margin: 0 auto;
    padding-bottom: 24px;
}



.lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    gap: 12px;
    align-self: stretch;
}



.main__txt {
    color: var(--primary-Black);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: calc(14/375 * 100vw);
    line-height: 2;
}


/* pc */
@media screen and (min-width:834px) {

    .mainVisual__sec {
        flex-direction: row;
        justify-content: space-between;
    }

    .mainVisual__img--pc {
        display: block;
        height: 100vh;
    }

    .lead {
        padding: 118px 24px;
        gap: 118px;
    }

    .main__txt {
        font-size: 1.6rem;
        letter-spacing: 0.6px;
    }

    .mainVisual__title {
        bottom: 50%;
        right: calc(96/1440*100vw);
        text-align: right;
    }

    /* Desktop: place logo top-left and title inside left column aligned to bottom */
    .mainVisual__logo {
        position: absolute;
        top: 2.5vh;
        left: 5vw; /* match title left padding */
        width: 8vw;
        height: auto;
        z-index: 12;
    }

    .mainVisual__titleImg {
        position: static;
        width: 40vw;
        max-width: none;
        height: auto;
        z-index: 11;
        margin: 0;
        /* グレージュ系のシャドウ効果 */
        filter: drop-shadow(0 0 8px rgba(212, 205, 183, 0.6))
               drop-shadow(0 0 16px rgba(212, 205, 183, 0.4));
    }


}

/*==========================
nav
==========================*/

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    position: relative;
}

.nav__titlearea {
    margin-top: 24px;
}

.nav__title {
    width: calc(200/375*100vw);
    position: relative;
}

.nav::after {
    position: absolute;
    content: "";
    display: block;
    background-color: rgb(244, 243, 237);
    height: 50vh;
    width: 0; /* 初期状態で幅0 */
    bottom: 72px;
    left: 0;
    z-index: -1;
    animation: underlineAnimate 2s ease forwards;
}

@keyframes underlineAnimate {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 24px 48px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.nav__item {
    position: relative;
    overflow: hidden;
}

.nav__img {
    width: calc(80/375 * 100vw);
}

.nav__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 205, 183, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;

}

.nav__maskTxt {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: "Bodoni Moda";
    font-size: calc(14/375 * 100vw);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1.2px;
    text-align: center;
    padding: 0 5px;
}
.nav__item:hover .nav__mask {
    opacity: 1;
    top: 0;
}

.nav__item .nav__mask {
  top: 100%;
  transition: top 0.5s ease, opacity 0.5s ease;
}



/* pc */
@media screen and (min-width:834px) {
    .nav {
        padding: 80px 0 96px;
        gap: 80px;
    }

    .nav__title {
        width: calc(300/1440*100vw);
    }

    .nav__list {
        padding: 0;
        gap: calc(36px/1440 * 100vw);
    }

    .nav__img {
        width: calc(140/1440 * 100vw);
    }

    .nav__maskTxt {
        font-size: 1.4rem;
    }

    .nav::after {
        height: 65vh;
        }
}

/*==========================
section
==========================*/

.section__content {
    display: flex;
    margin-top: 48px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.section__title {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px var(--contentPadding);
    width: 100%;
}

.section__titleInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
}


.section__title::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 300px solid rgb(231, 227, 215);
    width: 100%;
    bottom: 12px;
    left: 0;
    animation: animate1 3s forwards;
    z-index: -1;
}

.butsu__img {
    display: block;
    width: calc(300/375 * 100vw);
    filter: drop-shadow(4px 6px 8px rgb(123, 120, 120));
    margin: 0 auto;


}

.section__title.is-visible::after {
    /* 元の位置に戻す */
    transform: translateX(0);
}


.layout01,
.layout02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.section__titletxt {
    width: 60vw;
}

.section__titleEn {
    text-align: center;
    font-family: "bodoni moda";
    font-size: calc(20 / 375 * 100vw);
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 1.2px;
}

.butsuarea {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section__titleJp {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: calc(14 / 375 * 100vw);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.01em;
}


.img_02 {
    padding: 0 24px ;
}


.sen {
    border: none;
    border-top: 1px solid var(--primary-gray);
    width: 100%;
}


.section__text {
    display: flex;
    padding: 24px var(--contentPadding);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.content__head {
    color: ver(--primary-key);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    line-height: 200%; /* 48px */
    letter-spacing: 1.2px;
    margin: 0 auto;
}

.content__text {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: calc(14 / 375 * 100vw);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.01em;
}


.section__img--slide {
    display: grid;
    overflow: hidden;
}

.color {
    font-family: "bodoni moda";
    font-weight: 400;
    font-size: calc(48/375 * 100vw);
    text-align: center;
    line-height: 100%;
    margin: 0 auto;
}

.color--ivory {
    color: rgb(202, 200, 195);
}

.color--navy {
    color: rgb(34, 45, 64);
}

.color--brown {
    color: rgb(150, 101, 76);
}

.color--check {
    color : rgb(41, 122, 165);
}

.color--white {
    color : rgb(231, 227, 215)
}

/* pc */
@media screen and (min-width:834px) {

    .section__content {
        margin: 118px 0;
        gap: 118px;
    }

    .img_01 {
        max-width: 572px;
        height: auto;
    }

    .img_02 {
        width: 480px;

    }

    .img_03 {
        height: 100vh;
    }

    .section__title {
        display: flex;
        margin: 0 auto;
    }

    .section__titleInner {
        align-items: center;
        gap: 16px;
        padding-bottom: 32px;
    }

    .section__titletxt {
        width: 20vw;
    }

    .section__title::after {
        width: 100%;
        left: 0;
        bottom: 0;
        animation: animate1 3s forwards;
        border-bottom: 350px solid rgb(203, 197, 186);
    }

    .number {
        font-size: 6rem;
    }

    .section__titleEn {
        font-size: 3.6rem;
        line-height: 1.5; /* 48px */
    }
   
    .butsuarea {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 48px;
        margin: 0 auto;
        align-items: center;
    }

    .butsu__img {
        height:400px;
        width: auto;
    }

    .section__titleJp {
        font-size: 1.6rem;
        line-height: 2; /* 48px */
        padding-top: 96px;
        width: 30vw;
    }

    .layout01 {
        display: grid;
        height: 1200px;
        padding: 48px 108px;
        row-gap: 48px;
        column-gap: 48px;
        flex: 1 0 0;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .layout02 {
        display: flex;
        flex-direction: column;
        gap: 108px;
    }

    .section__img--01 {
        flex-shrink: 0;
        aspect-ratio: 286 / 395;
        grid-row: 1 / span 1;
        grid-column: 1 / span 1;
        align-self: start;
    }

    .section__img--02 {
        flex-shrink: 0;
        aspect-ratio: 286 / 395;
        grid-row: 2 / span 1;
        grid-column: 2 / span 1;
        justify-self: end;
        align-self: end;
    }

    .txtlink {
        display: flex;
        padding: 0 0 24px;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        align-self: end;
    }

    .color {
        font-size: 5rem;
    }

    .txtlink--01 {
        grid-row: 1 / span 1;
        grid-column: 2 / span 1;
        align-self: start;
    }

    .link__area--01 {
        grid-row: 2 / span 1;
        grid-column: 1 / span 1;
        align-self: end;
        padding-bottom: 0;
    }


    .layout02--inner {
        display: flex;
        padding: 0 108px;
        align-items: center;
        gap: 48px;
        align-self: stretch;
    }

    .img--03 {
        height: 100vh;
    }

    .content__head {
        font-size: 2.4rem;
        margin: 0;
        text-align: left;
    }

    .content__text {
        font-size: 1.6rem;
        width: 382px;
    }

    .spBr {
        display: none;
    }
    
    .item__price {
        width: 130px;
        font-size: 1.6rem;
    }

    .item__name {
        width: 150px;
        font-size: 1.6rem;
    }

    .btn__detail {
        padding: 0 24px;
        font-size: 1.3rem;
    }


    .size {
        width: 19px;
        font-size: 1.1rem;
    }

    .color {
        margin: 0;
    }

}



/*==========================
section other link
==========================*/
.other__link {
    display: flex;
    padding: 48px 24px 96px 24px;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.other__item {
    display: flex;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 1px solid var(--primary-Black);
}

.otherItem__txt {
    color: var(--primary-Black);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

/* pc */
@media screen and (min-width:834px) {

    .other__link{
        margin: 0 auto;
        padding: 80px 0 116px;
        gap: 36px;
        align-items: center;
        justify-content: center;
    }

    .other__item {
        width: 350px;
        padding: 12px 0;
    }

    .otherItem__txt {
        font-size: 1.6rem;
    }
}



/*==========================
footer
==========================*/

.footer {
    display: flex;
    padding: 48px 0;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    background: #F6F6F6;
}

.icon__area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20vw;
    gap: 20px;
}

.footer__icon {
    max-width: 218px;
    max-height: 56px;
}

.logo__area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.insta {
    width: 26px;
}

.clossetIcon {
    width: 106px;
}

.footer_block__copy {
    color: #000;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width:834px) {

    .footer {
        padding: 118px 0 60px;
    }

    .icon__area {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
    }


}



