@charset "UTF-8";

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: rgb(243, 238, 232);
    --contentPadding: 6.4%;
    --bg-light-yellow: #f4f4d9;

}

html {
    font-size: 62.5%
}

body {
    font-family: 
        "EB Garamond",
        "Shippori Mincho",
        serif;
    font-style: nomal;
    color: #000;
    background-color: #fff;
    line-height: 1.5;
    z-index: 10000; /* JJロゴより前面に */
}

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

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

.link__area {
    display: flex;
    padding: 24px var(--contentPadding);
    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: #311f08;
    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 #311f08;

}

.btn__detail:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #311f08;
}




/* 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";
    display: none;
}

.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;
}

/* アニメーションスタートの遅延時間を決めるCSS */
.delay-time01{
animation-delay: 0.1s;
}

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

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



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

.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
==========================*/

/* 横スクロール防止（アニメのはみ出し対策） */
html, body {
    overflow-x: hidden;
}
.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;
}

.mainVisual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: #D3D394;
    position: relative;
}

.mainVisual__title {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    color: #fff;
}

.mainVisual__subtext {
    align-items: center;
    width: calc(200/375 * 100vw);
}

.mainVisual__text {
    width: 100%;
}

.logo {
    width: calc(55/375 * 100vw);
    align-self: start;
}

/* Smooth hero image reveal */
.img__mainSp,
.img__main {
    opacity: 0;
    animation: kvFadeIn 0.9s ease 0.1s forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes kvFadeIn {
    0% { opacity: 0; transform: scale(1.01); }
    100% { opacity: 1; transform: scale(1); }
}


.jjLogo {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 35%;
    height: auto;
    opacity: 0;
    padding: var(--contentPadding);
}



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

.main__txtSub {
    display: flex;
    flex-direction: column;
    color: var(--primary-Black);
    text-align: center;
    font-family: "EB Garamond";
    font-size: calc(16/375 * 100vw);
    line-height: 2;
    letter-spacing: 0.7px;
}


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

/* スクロールインジケーター */
.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background-color: #000;
    position: relative;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.img__main {
    display: none;
}

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

    .img__mainSp {
        display: none;
    }

    .mainVisual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "image title";
        align-items: center;
        min-height: 100vh;
    }

    
    .mainVisual__title {
        position: relative;
        width: 100%;
        grid-area: title;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 8%;
        gap: 48px;
    }
    
    .img__main {
        position: absolute;
        display: block;
        right: 100%;
        top: 0;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        grid-area: image;
    }

    .mainVisual__subtext {
        width: 50%;
        align-self: center;
    }

    .mainVisual__text {
        padding-top: 30vh;
        width: 100%;
    }

    .logo {
        width: 100px;
        align-self: flex-end;
    }


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

    .scroll-indicator {
        padding: 48px 0;
    }

    .scroll-line {
        height: 120px;
    }


    .main__txtSub {
        font-size: 2rem;
    }

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



/*==========================
intro
==========================*/


.img__section {
    padding: 0 var(--contentPadding);
}

.img__section--spimg {        
    display: block;
}

.img__section--pcimg {
    display: none;
}

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

    .img__section--spimg {
        display: none;
    }

    .img__section--pcimg {
        display: block;
        height: 100vh;
    }

}

/*==========================
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;
}



@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;
    border: 4px solid transparent;
    box-sizing: border-box;
}

/* Use section background colors for nav image borders */
.nav__item:nth-child(1) {
    border-color: var(--bg-light-yellow);
}

.nav__item:nth-child(2) {
    border-color: var(--primary-gray);
}

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

.nav__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(185, 185, 182, 0.5);
    opacity: 0;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.85), 0 0 14px rgba(255, 255, 255, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;

}

.nav__maskTxt {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 0 5px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}


.nav__item:hover .nav__mask {
    opacity: 1;
    top: 0;
}

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

.nav__txtimg {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}



/* 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(450/1440 * 100vw);
    }

    .nav__maskTxt {
        font-size: calc(18/1440 * 100vw);
    }

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


    .nav__txtimg {
        height: 50px;
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.55));
    }
}


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

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

/* section backgrounds */
#item01.section__content,
#item02.section__content,
#item03.section__content,
#item04.section__content,
#item05.section__content {
    background-color: var(--bg-light-yellow);
}

#item06.section__content,
#item07.section__content,
#item08.section__content,
#item09.section__content,
#item10.section__content {
    background-color: var(--primary-gray);
}

.category__img {
   width: calc(250/375 * 100vw);

}

.section__title {
    color: #311f08;
    text-align: center;
    font-family: "Bodoni Moda";
    font-size: calc(16 / 375 * 100vw);
    font-style: italic;
    font-weight: 400;
    line-height: 200%; /* 48px */
    letter-spacing: 1.2px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(90deg, #D3D394 50%, #311f08 50%);
    background-size: 200% 100%;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.8s ease;
}

.section__title.color-change {
    background-position: 100% 0;
}

.section__title.color-reset {
    /* Keep dark state; no second change back to light */
    background-position: 100% 0;
}

.section__title span {
    font-size: calc( 30 / 375 * 100vw );
}

/* Mobile: pin "Looks 01-10" labels over the images, left aligned */
@media screen and (max-width: 833px) {
    .layout01 {
        position: relative;
    }

    .section__title {
        position: absolute;
        top: 16px;
        left: 16px;
        margin: 0;
        text-align: left;
        z-index: 2;
    }
}


.category__title {
    display: flex;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    position: relative;
    overflow: visible;
}

.category__title::before,
.category__title::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    background: linear-gradient(90deg, rgba(211, 211, 148, 0.45), rgba(49, 31, 8, 0.45));
    transition: width 0.6s ease;
}

.category__title::before {
    bottom: -8px;
    left: 10%;
}

.category__title::after {
    bottom: -14px;
    right: 10%;
    background: linear-gradient(90deg, rgba(49, 31, 8, 0.45), rgba(211, 211, 148, 0.45));
}

.category__title:hover::before,
.category__title:hover::after {
    width: 65%;
}

/* Ensure lines show on SP (no hover) but stay subtle */
@media screen and (max-width: 833px) {
    .category__title::before,
    .category__title::after {
        width: 60%;
    }
}


.sen {
    border: none;
    border-top: 1px solid #FFF;
    width: 100%;
}


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

.content__head {
    color: #311f08;
    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: 2;
    letter-spacing: -0.01em;
}


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

.imgSlide {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fade 6s ease-in-out infinite;
}

.imgSlide:nth-child(2) {
    animation-delay: 3s;
}

@keyframes fade {
    0% { opacity: 0; } /* 開始時 */
    50% { opacity: 1; } /* 中間 */     
    100% { opacity: 0; } /* 終了時 */
}


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

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

    .section__img--yoko {
        display: flex;
    }

    .section__tate {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 118px;
    }


    .img__section {
        /* width: 45vw; */
        height: 100vh
    }

    .section__title {
        font-size: calc( 50/1440 * 100vw );
        background: linear-gradient(90deg, #D3D394 50%, #311f08 50%);
        background-size: 200% 100%;
        background-position: 0 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        text-align: center;
        z-index: 0;
    }

    .section__title span {
        font-size: calc( 70 / 1440 * 100vw );
    }

    .txtlink {
        display: flex;
        justify-content: center;
        /* align-items: center; */
        gap: 3.3%;
    }

    .layout01 {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: calc( 48 /1440 * 100vw );
        flex-wrap: wrap;
    }

    /* When the image sits on the left (items 1,3,5,7,9), widen the gutter to match the visual spacing of right-image layouts */
    #item01 .layout01,
    #item03 .layout01,
    #item05 .layout01,
    #item07 .layout01,
    #item09 .layout01 {
        gap: calc( 108 /1440 * 100vw );
    }

    .txtlink--layout01 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    
    #item02 .layout01,
    #item04 .layout01,
    #item06 .layout01,
    #item08 .layout01,
    #item10 .layout01 {
        flex-direction: row-reverse;
    }

    .category__img {
        width: calc(400/1440 * 100vw);
    }

    .img__section--03 {
        width: 62vw;
    }

    .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;
    }

}


/*==========================
section other link
==========================*/
.other__link {
    display: flex;
    padding: 48px 24px 96px 24px;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
    background-color: var(--primary-gray);

}

.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;
        width: 100%;
    }

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

    .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 {
    width: 100%;
    height: auto;
}

.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;
    }

}


