@charset "UTF-8";

/* common */
:root {
    --primary-Black: #000000;
    --primary-gray: #D0CDC9;
    --primary-key: #393855;
    --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;
}

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 #393855;

}

.btn__detail:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid --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;
}


* アニメーションスタートの遅延時間を決めるCSS*/
.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; /* アニメーションの時間と動き方を指定 */
}

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



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

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

.mainVisual {
    background-image: url(../img/topSp.jpg);
    background-size: cover;
    background-position: center;
    animation: fadeIn 3s forwards;
    height: 100vh;
}

.mainVisual__text--pc {
    display: none;
}


.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 {
        background-image: url(../img/topPc.jpg);
    }

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

    .mainVisual__text--sp {
        display: none;
    }

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

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

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

.nav {
    background-color: #e6e7ebcc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}


.nav__title {
    color: var(--primary-Black);
    text-align: center;
    font-family: "Bodoni Moda";
    font-size: calc(18/375 * 100vw);
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 1.2px;
    margin: 0;
    padding: 24px 0;
}

.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(0, 0, 0, 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 {
        font-size: 2.4rem;
        line-height: 1.5; /* 36px */

    }

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

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

    .nav__maskTxt {
        font-size: 1.4rem;
    }
}

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

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

.section__title {
    position: relative;
    padding: 24px ver(--contentPadding);
    width: 100%;
}

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



.section__title::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 1px solid #c8c7d7;
    width: 100%;
    bottom: 12px;
    left: 0;
    animation: animate1 3s forwards;
}


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


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


.section__titleEn {
    color: #393855;
    font-family: "Bodoni Moda";
    font-size: calc(24 / 375 * 100vw);
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: 1.5;
}

.section__titleEn--number {
    font-size: calc(24 / 375 * 100vw);
}

.number {
    color: #c8c7d7;
    font-size: calc(48 / 375 * 100vw);
}


.section__titleJp {
    color: var(--primary-key);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: calc(18 / 375 * 100vw);
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: 0.6px;
}

.img_01 {
    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: #393855;
    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;
}


/* 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 {
        padding: 48px ver(--contentPadding);
        width: 60%;
    }

    .section__title::after {
        width: 100%;
        left: 0;
        bottom: 0;
        animation: animate1 3s forwards;
    }

    .number {
        font-size: 6rem;
    }

    .section__titleEn {
        font-size: 3rem;
        line-height: 1.5; /* 48px */
    }
   
    .layout01 {
        display: grid;
        height: 1100px;
        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: 24px 0;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        align-self: end;
    }

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

}



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


}


