@charset "UTF-8";

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: #D0CDC9;
    --contentPadding: 6.4%;

}

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: #D3C19B;
    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-self: flex-start;
    width: calc(200/375 * 100vw);
}

.mainVisual__text {
    width: 100%;
}

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


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

.jjLogo.fadeUp {
    animation-name: jjLogoFadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes jjLogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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: "title image";
        align-items: center;
        min-height: 100vh;
        z-index: 1;
    }

    
    .mainVisual__title {
        position: relative;
        width: 100%;
        grid-area: title;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 8%;
        gap: 48px;
        z-index: 2; /* テキストを前面に */
    }
    
    .img__main {
        position: absolute;
        display: block;
        top: 0;
        left: 100%;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        grid-area: image;
        justify-self: end;
        z-index: 0; /* 画像は背面 */
    }
    .mainVisual__subtext {
        align-items: flex-end;
        width: 50%;
        align-self: baseline;
    }

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

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

    .jjLogo {
        top: 30%;
        left: 5%;
        display: block;
        width: 14%;
        height: auto;
        padding: 0;
        z-index: 1; /* PCでは前面に出し過ぎない */
    }

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

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

    .img__section {
    padding: 0;
    }

}

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

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

.section__title {
    color: #311f08;
    text-align: center;
    font-family: "EB Garamond";
    font-size: calc(30 / 375 * 100vw);
    font-weight: 400;
    line-height: 200%; /* 48px */
    letter-spacing: 1.2px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(90deg, #c2b3a1 50%, #311f08 50%);
    background-size: 200% 100%;
    background-position: 100% 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: 0 0;
}

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


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


.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: #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: 6.5rem;
        background: linear-gradient(90deg, #c2b3a1 50%, #311f08 50%);
        background-size: 200% 100%;
        background-position: 100% 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

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

    .txtlink--layout01 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

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

}


/*==========================
item04, 06, 08, 10 stagger layout (PC)
==========================*/
@media screen and (min-width:834px) {
    /* 横並びの2枚をずらして表示 */
    .section__content--04 .section__img--yoko,
    .section__content--06 .section__img--yoko,
    .section__content--08 .section__img--yoko,
    .section__content--10 .section__img--yoko {
        gap: calc(48/1440 * 100vw);            /* 画像間の隙間 */
        align-items: flex-start; /* 上揃え → ずらしに効く */
    }

    .section__content--04 .section__img--yoko .img__section:nth-child(2),
    .section__content--06 .section__img--yoko .img__section:nth-child(2),
    .section__content--08 .section__img--yoko .img__section:nth-child(2),
    .section__content--10 .section__img--yoko .img__section:nth-child(2) {
        margin-top: 80px;      /* 右側(2枚目)を下げる量 */
    }
}
/*==========================
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;
        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;
    }

}


