@charset "UTF-8";

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: #e9e5e4;
    --contentPadding: 6.4%;
    --lightblue: #eef4f5;
    --Beige: #eeede7;
    --lightyellow: #fcf9f1;
    --lightpink: #f3eceb;
    --btnmain: #562b07;
    --btnsub: #eef4f5;
}

html {
    font-size: 62.5%
}

body {
    font-family: 
        "EB Garamond",
        "Shippori Mincho",
        "Bodoni Moda",
        "Jost",
        "Noto Sans JP",
        serif;
    font-style: normal;
    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;
}

.delay-time05{
animation-delay: 2s;
}

.delay-time06{
animation-delay: 2.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);
    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(--btnsub);
    color: #000000;
    font-family: "jost";
    font-size: calc(12/375 * 100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    border: 1px solid #311f08;

}

.btn__detail--main {
    background-color: var(--btnmain);
    color: #fff;
}

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

.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: 0 24px;
    position: relative;
    z-index: 2;
}


.pcBr {
    display: none;
}

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

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

.imgSlide:first-child {
    animation-delay: -3s;
}

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

@keyframes imgSlideFromRightLoop {
    0%, 40% {
        transform: translateX(100%);
        opacity: 0;
    }
    50%, 90% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}





/* 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;
        width: 382px;
        padding: 0;
        line-height: 2.5;
    }


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

    .pcBr {
        display: block;
    }

}


  

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

.main {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}


.mainVisual {
    background: #cddde0;
    background: linear-gradient(to bottom right, #fff 0%, #cddde0 100%);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
}

.mainVisual__pc,
.mainVisual__title--main.pc {
    display: none;
}

.mainVisual__SP {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mainVisual__img {
    width: calc(100vw / 3);
}

.mainVisual__titlesec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: var(--contentPadding);
    width: 95%;
    margin: 0 auto;
}



.logo {
    width: calc(70/375 * 100vw);
    padding: 0 0 12px;
}



.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: var(--primary-Black);
    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:768px) {

    .mainVisual__SP,
    .mainVisual__title--main.sp {
        display: none;
    }

    .mainVisual__pc,
    .mainVisual__title--main.pc {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .mainVisual {
        height: 100vh;
    }
    

 
    .mainVisual__titlesec {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 48px;
        align-items: baseline;
    }

    .mainVisual__title--main {
        width: 70%;
    }

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

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

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

    .scroll-line {
        height: 120px;
    }


    .main__txtSub {
        font-size: 2rem;
    }

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

}


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

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    position: relative;
    overflow: hidden;
    background-color: var(--lightblue);
}

.nav__titlearea {
    margin-top: 24px;
}

.nav__title--sp {
    width: calc(250/375*100vw);
    position: relative;
    z-index: 2;
}

.nav__title--pc {
    display: none;
}


.nav__list {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    padding: 0 24px 24px;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    box-sizing: border-box;
}

.nav__item {
    flex: 0 0 auto;
    width: clamp(86px, 24vw, 116px);
    max-width: none;
    position: relative;
    overflow: hidden;
}

.nav__list::-webkit-scrollbar {
    display: none;
}

.nav__img {
    display: block;
    width: 100%;
    object-fit: cover;
}

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

}

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

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

.spNavTrigger {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.spNavTrigger__icon {
    height: auto;
    display: block;
}

.spNavTrigger.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.spNavPanel {
    position: fixed;
    inset: 0;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.spNavPanel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.spNavPanel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.26);
}

.spNavPanel__window {
    position: absolute;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100%;
    background: rgba(239, 242, 243, 0.7);
    padding: 56px 16px 20px;
    overflow-y: auto;
}

.spNavPanel__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    padding: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}

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

.spNavPanel__heading {
    margin: 0 0 12px;
    text-align: center;
}

.spNavPanel__headingImg {
    width: min(70%, 180px);
    height: auto;
    display: inline-block;
}

.spNavPanel__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.spNavPanel__item {
    width: clamp(56px, 18vw, 80px);
}

.spNavPanel__item a {
    display: block;
}

.spNavPanel__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.3;
}

body.sp-nav-open {
    overflow: hidden;
}



/* pc */
@media screen and (min-width:834px) {
    .nav {
        display: grid;
        grid-template-columns: minmax(280px, 320px) 1fr;
        align-items: center;
        gap: calc(24px/1440 * 100vw);
        padding: 48px 3.5vw;
        margin-top: 48px;
    }

    .nav__titlearea {
        margin-top: 0;
        text-align: center;
        min-width: 280px;
    }

    .nav__title--pc {
        display: block;
        width: clamp(280px, calc(300/1440 * 100vw), 320px);
    }

    .nav__title--sp {
        display: none;
    }


    .nav__list {
        flex-wrap: nowrap;
        overflow-x: hidden;
        justify-content: flex-start;
        padding: 0;
        gap: calc(20px/1440 * 100vw);
    }

    .nav__img {
        width: 100%;
        padding: 0;
    }

    .nav__item {
        width: calc(150/1440 * 100vw);
        max-width: none;
    }

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

    .spNavTrigger {
        top: 30px;
        right: 50px;
        width: 44px;
        height: 44px;
    }

    .spNavTrigger__icon {
        width: 70px;
    }
}



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

.section__content--01 {
    margin-top: 48px;
}

.midashi__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--contentPadding);
    align-items: flex-start;
    position: relative;
    width: 100vw;
}



.midashi__area::after {
    position: absolute;
    content: "";
    width: 200%;
    height: 1px;
    background-color: rgba(230, 230, 230, 0.7);
    bottom: -10px;
    right: 0;
    z-index: -1;
}

.midashi__img {
    width: 100%;
    align-self: center;
}



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

    .midashi__area {
        padding: 0;
        width: 50vw;
    }

    .midashi__img {
        width: calc(400/1440 * 100vw);
        max-width: 600px;
        padding: 48px 0;
    }

}


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

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

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

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


.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--01,
.img__section--02 {
    height: auto;
    max-width: 90%;
}

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

.section__img--01 {
    justify-content: flex-start;
    margin-top: 24px;
}

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

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

.section__img--01.section__img--slide,
.section__img--02.section__img--slide,
.section__img--03.section__img--slide {
        display: grid;
    }


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


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

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

    .layout01 {
        display: grid;
        grid-template-columns: 1fr 1fr ;
        grid-template-rows: max-content max-content max-content max-content;
        grid-template-areas: "img1 img2"
                             "img3 img4"
                             "img5 img6"
                             "img7 img8";
        gap: 0;
        width: 100%;
        margin-top: 96px;
        margin-bottom: 96px;        
    }

    .midashi__area--01 {
        grid-area: img1;
        align-self: center;
    }

    .content__text {
        width: calc(500/1440 * 100vw);
        max-width: 600px;
        padding: 24px;
        justify-content: flex-end;
        margin: 0 auto;
        z-index: 3;

    }

    .content__text--01 {
        grid-area: img3;
        margin-top: 48px;
    }

    .section__img--01,
    .section__img--02 {
        justify-content: center;
    }

    .section__img-left-wrapper {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
        padding: 48px;
    }

    .section__img-wrapper {
        grid-column: 2 / 3;
        grid-row: 1 / 5;
        align-self: start;
        justify-content: center;
    }

    .txtlink--layout01 {
        grid-area: img8;
        z-index: 2;
        align-self: start;
    }

    .img__section {
        width: 100%;
        max-width: 800px;
    }


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

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

    .section__img-wrapper {
        width: 100%;
        flex-shrink: 0;
        gap: 48px;
        position: relative;
        z-index: 1;
    }

    .txtlink {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3.3%;
        gap: 48px;
    }
    
    .txtlink--layout01 {
        display: flex;
        align-self: end;
        align-items: center;
        margin-top: 48px;
    }

    .layout02 {
        display: grid;
        grid-template-columns: 1fr 1fr ;
        grid-template-rows: max-content max-content max-content;
        grid-template-areas: "area1 area2"
                            "area3 area4"
                            "area5 area6"
                            ;
        align-items: stretch;
        gap: 0;
        margin-top: 96px;
        margin-bottom: 96px;
    }

    .midashi__area--02 {
        grid-area: area1;
        align-self: start;
    }

    .content__text--02 {
        grid-area: area3;
        align-self: center;
        justify-self: start;
        width: calc(500/1440 * 100vw);
        max-width: 600px;
        padding: 24px;
        margin: 2.5% auto 10%;
    }

    .section__img--03 {
        grid-column: 2 / 3;
        grid-row: 1 / 4;
        align-self: start;
        justify-self: end;
    }

    .txtlink--layout02 {
        grid-area: area5;
        align-self: flex-end;
        margin-top: 5%;
    }

    .layout02.section__content--reverse .midashi__area--02 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .layout02.section__content--reverse .content__text--02 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .layout02.section__content--reverse .txtlink--layout02 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .layout02.section__content--reverse .section__img--03 {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        justify-self: center;
    }




}




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

}


