@charset "UTF-8";

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: #e9e5e4;
    --contentPadding: 6.4%;
    --pink: #fcf0f4;
    --blue: #e6ebef;
    --midblue: #dbdaf5;
}

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

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


/* pc */
@media screen and (min-width:834px) {
    .spBr {
        display: none;
    }

}


/*==========================
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-time03{
animation-delay: 1s;
}


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



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

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



/*==========================
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);
    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: #727272;
    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 #727272;

}

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

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

.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;
    padding: 24px var(--contentPadding);
}


.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; } /* 中間 */     
}





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

    .size__area {
        width: 150px;
    }

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

    .content__text {
        font-size: 1.6rem;
        padding: 12% var(--contentPadding);
        position: relative;
    }


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



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

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

.mainVisual {
    position: relative;
    background-image: url(../img/topsp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;

}

.mainVisual__title {
    width: 100%;
}

.mainVisual__title--main {
    position: absolute;
    bottom: 10vh;
    width: 100%;
    padding: var(--contentPadding);
}

.mainVisual__title--sub {
    position: absolute;
    top: 6.4%;
    left: 6.4%;
    width: 19%;
}


.logo {
    position: absolute;
    display: block;
    bottom: 24px;
    right: 50%;
    transform: translateX( 50% );
    width: calc(70/375 * 100vw);
}

/* logoのfadeUpアニメーション用にカスタムキーフレームを定義 */
.logo.fadeUp {
    animation-name: logoFadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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



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

/* スクロールインジケーター */
.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;
    }
}


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


    .mainVisual__spimg {
        display: none;
    }

    .mainVisual__pcimg {
        display: flex;
    }

    .mainVisual__pcimg img {
        object-fit: cover;
    }

    .mainVisual {
        height: 100vh;
        background-image: url(../img/toppc.jpg);
        background-size: cover;
        background-position: center;
    }

    .mainVisual__title--main {
        width: 40vw;
        filter: none;
        right: 6.6%;
        bottom: 15%;
        padding: 6.6% 0;  

    }

    .mainVisual__title--sub {
        width: calc(130 / 1440 * 100vw);
        top: 6.4%;
        left: 10%;
    }


    .logo {
        width: calc( 100 / 1440 * 100vw);
        right: 10%;
        bottom: 10%;
        margin-top: 5vh;
        filter: none;
    }

    /* PC版もfadeUpアニメーションをそのまま適用（transform衝突なし） */



    .lead {
        padding: 48px;
        gap: 24px;
        margin-bottom: 48px;
    }

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

    .scroll-line {
        height: 120px;
    }


    .main__txtSub {
        font-size: 2rem;
    }

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


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


.midashi__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--contentPadding);
    align-items: center;
    align-self: stretch;
    position: relative;
    margin: 0px 0 48px;
}

.midashi__area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f6f8fa;
    transition: width 0.8s ease-out;
    z-index: -1;
}


.midashi__area--02::after {
    background-color: #f8f5f5;
}

.midashi__area.animated::after {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.midashi__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(24 / 375 * 100vw);
    position:relative;
}

.midashi__title {
    display: flex;
    justify-content: center;
}


.midashi__titleimg {
    padding-left: 3.3%;
    width: 100%;
    height: auto;
}



.midashi__area.animated .midashi__title {
    opacity: 1;
    transform: translateY(0);
}


.midashi__area.animated  {
    opacity: 1;
    transform: translateY(0);
}

.midashi__butsu {
    display: flex;
    justify-content: center;
    position: relative;
}



.midashi__img {
    width: calc(300/375 * 100vw);
    height: auto;
    filter: drop-shadow(0 4px 4px  rgba(0, 0, 0, 0.5));
}

.midashi__txt {
    color: #000;
    text-align: left;
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -0.01em;
    position: relative;
    padding: 16px;
    background: #ffffff;
    margin-top: 16px;
}



/* pc */
@media screen and (min-width:834px) {
    .midashi__area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding:48px 96px;
        margin: 0px 0px 240px 0;
    }

    .midashi__content{ 
        display: contents;
    }

    .midashi__title {
        grid-area: 1 / 1 / 2 / 2;
    }

    .midashi__titleimg {
        padding: var(--contentPadding);
        width: 90%;
        max-width: 600px;
        height: auto;
    }

    .midashi__butsu {
        grid-area: 1 / 2 / 3 / 3;
    }

    .midashi__textarea {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-area: 2 / 1 / 3 / 2;
    }


    .midashi__img {
        width: auto;
        height: 450px;
    }

    .midashi__txt {
        font-size: 1.4rem;
        width: calc(500/1440 * 100vw);
        margin-top: 0px;
    }


}


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


.section__content {
    display: flex;
    padding: 0 0 48px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 0;
}

.section__content--01 {
    background-color: var(--blue);
}


.section__content--02 {
    background-color: #f2e9e9;
}


.section__titleImg {
    padding: 0 var(--contentPadding);
    align-self: center;
    position: relative;
    width: 100%;
}

.section__titleImg img {
    width: 100%;
    height: auto;
    display: block;
}

.section__titleImg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 70px;
    background: linear-gradient(to right, rgba(245, 245, 245, 0.1), rgba(245, 245, 245, 1));
    transition: width 0.8s ease-out;
    z-index: -1;
    transform: translateY(-50%);
}

.section__titleImg.animated::before {
    width: 100%;
}


.section__imgarea {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    height: auto;
    padding: 24px 0;
}

.section__img-left-wrapper {
    width: 100%;
    height: auto;
}



.img__section {
    width: 100%;
    height: auto;
    max-width: 90%;
}

.section__img {
    width: 100%;
    display: flex;
}

.section__img--01 {
    justify-content: flex-start;
}

.section__img--02 {
    justify-content: flex-end;
}



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

    .section__content--01::after {
        background-size: auto 100%;
    }

    .layout01 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        position: relative;
        padding: 0  6.4%;
    }

    .img__section {
        max-width: 100%;
    }

    .section__titleImg {
        width: auto;
        align-self: flex-end;
    }

    .section__titleImg img {
        height: calc(190/1440 * 100vw);
    }


    .section__imgarea {
        display: flex;
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
    }

    .section__img-left-wrapper {
        width: 45%;
        flex-shrink: 0;
    }

    .section__img-wrapper {
        width: 45%;
        flex-shrink: 0;
    }

    .img__section--01 {
        transform: translateY(-100px);

    }

    .layout01--reverse {
        flex-direction: row-reverse;
    }


    .txtlink {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3.3%;
        gap: 48px;
    }
    
    .txtlink--layout01 {
        display: flex;
        align-self: flex-start;
        padding: 0 0 0 calc(108/1440 * 100vw);
        transform: translateY(-250px);
    }

    .content__text--02 {
        width: calc(500/1440 * 100vw);
    }



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


    .layout02 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 48px;
        position: relative;
    }
    
    .img__section--01,
    .img__section--02 {
        justify-content: center;

    }

    .img__section--03 {
        width: calc(550/1440 * 100vw);
    }

    .layout01--last {
        margin-top: 240px;
    }

}







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

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

}


