@charset "utf-8";
/*==========================
common
==========================*/
:root {
    --primary-white: #FDFDFD;
    --primary-white-rgb: 253, 253, 253; 
    --primary-whiteLow: #FBF8F4;
    --primary-black: #121212;
    --primary-Gray: #333333;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Serif JP',
        Arial,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--primary-white, #FDFDFD);
    letter-spacing: 0.2em;
    background-color: var(--primary-black, #121212);
}

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

.topic {
    color: var(--primary-white, #FDFDFD);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: clamp(4.096rem, 12.8vw, 6.4rem); /* 375px: 4.8rem */
    line-height: 1;
    letter-spacing: 0.1em;
}

.text-animationA{
    opacity: 0;
    transition: opacity 1.6s ease-out;
}

/*text animetions*/
@keyframes showTextFromBottom{
    0%{
      transform: translateY( 100% );
    }
    100%{
      transform: translateY( 0px );
    }
  }
  .text-animationA.displayed {
      opacity: 1;
  }
  
  .text-animationA.displayed span{
    animation: showText 1.2s backwards;
    display: inline-block;
  }

  .text-animationA.displayed > span{
    overflow: hidden;
  }
  .text-animationA.displayed > span > span{
    animation: showTextFromBottom 1.3s backwards;
  }

.aboutUs .topic,
.brandsArtists .topic {
    font-size: clamp(4.266rem, 13.333vw, 6.666rem); /* 375px: 5rem */
    line-height: 1.2;
}

/* common pc */
@media screen and (min-width:769px) {
    body {
        background-image: url("../images/icon/bg_all.png");
        background-position: top center;
        background-size: 100% auto;
        background-attachment: scroll;
    }
    
    .topic {
        font-size:  clamp(5rem, 7vw, 11rem); /* 375px: 11rem */
    }

    .aboutUs .topic,
    .brandsArtists .topic {
        font-size:  clamp(5.34rem, 6.944vw, 11.111rem); /* 375px: 10rem */;
    }

    .spacePc {
        display: block;
    }

}/* pc 769px */


/*==========================
header
==========================*/
.header {
    padding: 50px 4.8% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 50;
    width: 100%;
}

.header__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* .nav */
.header__btn {
    color: var(--primary-white, #FDFDFD);
    width: 35px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    z-index: 200;
    transition: border-color 0.2s ease;
}

.header__btn span {
    display: block;
    width: 100%;
    height: 1.8px;
    background-color: white;
    border-radius: 6px;
    transition: all 0.4s ease-in-out;
    position: absolute;
    clip-path: ellipse(50% 95% at center);
}

.header__btn span:nth-child(1) { top: 0; }
.header__btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__btn span:nth-child(3) { bottom: 0; }

.header__btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.header__btn.active span:nth-child(2) {
    opacity: 0;
}

.header__btn.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

.header__btn.active span {
    animation: fadeOutIn 1s ease forwards;
}

.header__btn:not(.active) span {
    animation: fadeOutInReverse 1s ease forwards;
}

@keyframes fadeOutIn {
    0% { background-color: rgba(var(--primary-white-rgb), 1); }
    20% { background-color: rgba(var(--primary-white-rgb), 0); }
    50% { background-color: rgba(var(--primary-white-rgb), 0); }
    70% { background-color: rgba(var(--primary-white-rgb), 0.7); }
    100% { background-color: rgba(var(--primary-white-rgb), 1); }
}

@keyframes fadeOutInReverse {
    0%, 20% { background-color: rgba(var(--primary-white-rgb), 1); }
    50%, 70%, 80% { background-color: rgba(var(--primary-white-rgb), 0); }
    100% { background-color: rgba(var(--primary-white-rgb), 1); }
}

.nav {
    background: var(--primary-Gray, #333333);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 1.2s;
    padding: 50px 4.8% 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.nav.active {
    transform: translateX(0);
    opacity: 1;
}


.nav__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nav__list {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
    overflow-x: hidden;
    padding-left: unset;
}

.nav__item {
    color: var(--primary-white, #FDFDFD);
    font-family: "Cormorant Garamond";
    font-size: clamp(1.8rem, 5.5vw, 2.8rem);
    line-height: 1.4;
    letter-spacing: 0.08em;
    width: 100%;
    white-space: normal;
    word-break: break-word;
}

.nav__item a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.nav__item:last-child {
    padding-bottom: 40px;
}

.nav__item.brands_artists {
    font-size: clamp(1.8rem, 5.1vw, 2.6rem);
    margin-left: 1em;
    padding-bottom: unset;
}

.with-line__h {
    padding-bottom: 15px;
}

.with-line__h:first-child {
    padding-top: 20px;
}

.with-line__h:last-child {
    padding-bottom: 0;
}

.nav__item.jp,
.with-line__h.jp {
    font-family: "Noto Serif JP", Arial;
    font-size: clamp(1.35rem, 3.6vw, 1.9rem);
}

.with-line__h::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: var(--primary-white);
    margin-right: 0.5em;
    vertical-align: middle;
}

/* nav hover */
.text-animationB a span {
    display: inline-block;
    opacity: 1;
}

@keyframes fadeOutIn-text-animationB {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader__logo img {
    width: 100px;
    height: auto;
}

.loader__logo {
    display: none;
}


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

    .header {
        padding: 50px 8.3% 0;
    }

    .nav {
        width: 50%;
        height: 100vh;
        transform: translateX(200%);
        transition: transform 1.5s;
        padding: 50px 4.8% 0 6.8vw;
        align-items: flex-start;
    }

    .nav.active {
        transform: translateX(100%);
    }

    .nav__list {
        padding-top: 80px;
        gap: 45px;
    }

    .nav__item {
        font-size: clamp(2.136rem, 2.777vw, 4.444rem); /* 375px: 4rem */
    }

    .nav__item.brands_artists {
        font-size: clamp(2.136rem, 2.5vw, 3.5rem);
        letter-spacing: 0.1em;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: unset;
    }
    
    .nav__item.brands_artists.jp,
    .with-line__h.jp {
        font-size: clamp(1.6rem, 1.9vw, 2.8rem);
    }

    .with-line__h::before {
        width: 10px;
        margin-right: 0.5em;
    }
}/* pc 769px */


/*==========================
First View
==========================*/
.firstView {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.mainTxt {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(1.706rem, 5.333vw, 1.869rem); /* 375px: 2rem */
    line-height: 2;
    letter-spacing: 1.2em;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    align-items: center;
    bottom: 50%;
    white-space: nowrap;
}

.aboutUs .mainTxt,
.brandsArtists .mainTxt {
    writing-mode: unset;
    font-size: clamp(4.266rem, 13.333vw, 6.666rem); /* 375px: 5rem */
    font-family: "Cormorant Garamond";
    letter-spacing: 0.1em;
}

.top .mainTxt {
    left: 12%;
    bottom: 48%;
    color: var(--primary-black, #121212);
    opacity: 1;
    transition: opacity 1s ease;
}

.top .mainTxt.is-hidden {
    opacity: 0;
}

.ba .mainTxt {
    width: 100%;
    writing-mode: unset;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.2em;
    text-align: center;
}

.brandsArtists .mainTxt {
    line-height: 1.2em;
    text-align: center;
}

.mainTxt__s {
    font-size: clamp(1.194rem, 3.733vw, 1.176rem); /* 375px: 1.4rem */
    line-height: 2.14;
}

.video__items_top {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    z-index:-2;
}

.gradationOverlay {
    position: absolute;
    top: 50vh;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.7), transparent);
    z-index: -1;
  }


/* .firstView pc */
@media screen and (min-width:769px) {
    .mainTxt {
        font-size: clamp(1.869rem, 2.43vw, 3.888rem); /* 375px: 3.5rem */
    }

    .aboutUs .mainTxt,
    .brandsArtists .mainTxt {
        font-size: clamp(6.408rem, 8.333vw, 13.333rem); /* 375px: 12rem */

    }
    .ba .mainTxt {
        font-size: clamp(1.602rem, 2.083vw, 3.333rem); /* 1440px: 3rem */;
    }

    .mainTxt__s {
        font-size:  clamp(1.174rem, 1.527vw, 2.444rem); /* 375px: 2.2rem */
    }
}/* pc 769px */


/*==========================
Swiper
==========================*/

.swiper-container {
    width: unset;
    margin: 70px 0 50px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.image-wrapper {
    display: inline-block;
    max-width: 100%;
    text-align: center;
}

.image-wrapper img {
    height: 200px;
    width: auto;
    object-fit: cover;
    display: block;
}

/* About Us */
.swiper-container.swiper-container_ourMission {
    margin: 120px 0 0px;
    width: unset;
    overflow: hidden;
}

.image-wrapper.image-wrapper_ourMission img {
    height: 250px; 
    width: auto;
    object-fit: cover;
    display: block;
}

@media screen and (min-width:769px) {
    .swiper-container {
        margin: 180px 0 50px;
    }
    
    .image-wrapper img {
        height: 450px;
    }
    
    .swiper-container.swiper-container_ourMission {
        margin: 130px 0 0;
    }
    
    .image-wrapper.image-wrapper_ourMission img {
        height: 400px;
    }
}

/*==========================
More
==========================*/
.more__container {
    position: relative;
    display: inline-flex;
    padding-bottom: 10px;
    justify-content: flex-end;
    flex-direction: column;
    padding-left: 52vw;
}

.more__txt {
    color: var(--primary-white, #FDFDFD);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: clamp(1.621rem, 5.066vw, 2.533rem); /* 375px: 1.9rem */
    line-height: 1;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    padding-bottom: 12px;
    transition-delay: 1.5s;
}

.line {
    width: 0;
    height: 1px;
    background-color: var(--primary-white, #FDFDFD);
    transition: width 1.5s ease-out 0.1s;
}

.line2 {
    width: 0;
    height: 1px;
    background-color: var(--primary-white, #FDFDFD);
    transition: width 1.5s ease-out;
    position: relative;
    top: 8px;
}

.line.line::after {
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background-color: var(--primary-white, #FDFDFD);
    transform-origin: left center;
    transform: rotate(-120deg);
    position: absolute;
    left: 100%;
    transition: width 1s ease-out 1.5s;
}

.line.line2::after {
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    opacity: 0;
    background-color: var(--primary-white, #FDFDFD);
    transform-origin: left center;
    transform: rotate(-120deg);
    position: absolute;
    top: 0;
    left: 100%;
    transition: width 1s ease-out 1.5s;
}

.more__container.active .more__txt {
    opacity: 1;
    transform: translateY(0);
}

.more__container.active .line {
    width: clamp(0px, 37vw, 200px);
}

.more__container.active .line.line2 {
    width: clamp(0px, 37vw, 200px);
}

.more__container.active .line.line::after {
    opacity: 1;
    width: 20px; 
}

.more__container.active .line.line2::after {
    width: 20px;
}
.more__container.active .line.line2::before {
    opacity: 1; 
}

@media screen and (min-width:769px) {
    .more__container {
        padding-left: 80vw;
        transform: translateX(-100px);
    }
}

/*=================================
fadeIn transformY
=================================*/
.topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container),
.delayFadeIn,
.brandsArtists__item{
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.9s linear,transform 1.9s ease-out;
    transform: translateY(20px);
}

.topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container).active,
.delayFadeIn.active,
.brandsArtists__item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.ba .topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container),
body.ba .delayFadeIn,
body.ba .brandsArtists__item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease-out,transform 1.9s ease-out;
    transform: translateY(20px);
}

body.ba .topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container).active,
body.ba .delayFadeIn.active,
body.ba .brandsArtists__item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.delayFadeIn_mainT {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.9s linear,transform 1.9s ease-out;
    transform: translate(-50%, 64%);
}

.delayFadeIn_mainT.active {
    opacity: 1;
    visibility: visible;
    transform:  translate(-50%, 50%);
}

.loadFadeIn_mainT {
    opacity: 0;
    visibility: hidden;
    animation: fadeInAnimation 4s linear forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        visibility: visible;
    }
    60% {
        opacity: 0;
    }

    90% {
        opacity: 0.85;
    }

        100% {
        opacity: 1;
    }
}


@media screen and (min-width:769px) {
    body.ba .topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container),
    body.ba .delayFadeIn,
    body.ba .brandsArtists__item {
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.9s linear,transform 1.9s ease-out;
        transform: translateY(50px);
    }

    .topic:not(.topic__aboutUs):not(.topic__pc):not(.more__container),
    .delayFadeIn,
    .brandsArtists__item{
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.9s linear,transform 1.9s ease-out;
        transform: translateY(50px);
    }
}



/*==========================
footer
==========================*/
.nav__list--footer--pc {
    display: none;
}

.footer {
    padding: 0 4.8vw 25px;
}

.footer__line {
    margin-bottom: 30px;
    height: 0.5px;
    background-color: var(--primary-white);
}

.footer__logo {
    width: 21.3vw;
}

.nav__list--footer{
    margin-top: 20px;
}

.nav__item__footer{
    color: var(--primary-white, #FDFDFD);
    font-family: "Cormorant Garamond";
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.2em;
    align-items: center;
    padding-bottom: 17px;
}

.nav__item__footer.brands_artists {	
    padding-bottom: unset;
}

.with-line__f {
    padding-bottom: 12px;
    padding-left: 10px;
}

.with-line__f:first-child {
    padding-top: 10px;
}

.with-line__f:last-child {
    padding-bottom: unset;
}

.nav__item__footer.jp,	
.nav__item__footer .with-line__f.jp {
    font-family: "Noto Serif JP", Arial;	
    font-size: 1.4rem;
}

.with-line__f::before {	
    content: "";
    display: inline-block;	
    width: 10px;
    height: 1px;
    background-color: var(--primary-white);
    margin-right: 0.5em;
    vertical-align: middle;
}

.contact__items {
    padding: 30px 0 0;
}

.contact__items > *:first-child {
    align-self: flex-start;
    text-align: left;
}

a.footer__sns-link {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(0px 0px 0px 0px);
    border: 0;
}

.btn--contact {
    display: flex;
    width: 100%;
    margin-top: 10px;
    color: var(--primary-white, #FDFDFD);
    font-size: 1.6rem;
    background-color: var(--primary-Gray, #333333);
    border: solid 0.3px var(--primary-white, #FDFDFD);
    align-items: center;
    justify-content: center;
    padding: 5.4vw 0;
    font-size: 1.8rem;
    line-height: 12.5px; /* 125% */
    letter-spacing: 0.2em;
    transition: background-color 0.3s;
}

.btn--contact:hover {
    background-color: #AEAEAE;
    background-image: url(../images/icon-arrow--grn.svg);
}

.footer__sns-icon {
    max-width: 7%;
}

.nav__list2 {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
    padding-left: unset;
}

.nav__item__list2 {
    font-size: clamp(0.853rem, 2.666vw, 1.333rem); /* 375px: 1rem */
    line-height: 1.3;
    letter-spacing: 0.2em;
}

/* リンク */
a {
    position: relative;
    text-decoration: none;
}

a:hover::after {
    transform: scaleX(0); 
    transform-origin: bottom right;
}

.copy {
    text-align: center;
    padding-top: 20px;
}

.copy small {
    font-family: "Cormorant Garamond";
    font-size: 1.1rem;
    line-height: 1.5;
}


/* .footer pc */
@media screen and (min-width:769px) {
    .footer__logo,
    .contact__items {
        display: none;
    }

    .footer {
        padding: 0 6.67% 50px;
    }

    .footer__line {
        margin-bottom: 80px;
        height: 0.5px;
        background-color: var(--primary-white);
    }

    .nav__list--footer--pc  {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer__logo--pc {
        width: 9.17vw;
    }

    .footer__item{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 1.63% 0;
        align-items: stretch;
    }

    .nav__list--contacts_pc {
        display: flex;;
    }

    .nav__list--footer {
        display: flex;
        margin-top: 0px;
        gap: 39px;
    }

    .nav__list--footer--container {
        display: flex;
        gap: 27px;
        flex-direction: column;
    }

    .nav__item__footer {
        font-size: clamp(1rem, 2vw, 3rem); /* 375px: 3rem */
        letter-spacing: 0.1em;
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
        padding: unset;
    }

    .nav__item__footer.brands_artists {
        gap: 5px;
    }
    
    .nav__item__footer.jp,	
    .nav__item__footer .with-line__f.jp {
        font-size: clamp(1rem, 1.4vw, 2.5rem);
    }

    .with-line__f::before {
        width: 10px;
        margin-right: 0.5em;
    }

    a.footer__sns-link {
        font-size: clamp(0.5rem, 1.5vw, 2.5rem);
        gap: 15px;
    }

    .btn--contact {
        margin-top: 20px;
        padding: 40px 50px;
        font-size: clamp(1rem, 1.8vw, 2rem)
    }

    .footer__sns-icon {
        max-width: 10%;
    }

    .copy {
        text-align: center;
        padding-top: 80px;
    }

    .copy small {
        font-size: clamp(0.694rem, 0.902vw, 1.444rem); /* 375px: 1.3rem */
    }
}/* pc 769px */