@charset "UTF-8";
/*
CSS変数・共通設定
-----------------------------------------------------------*/
:root {
    --noir: #0e0d0c;
    --noir-soft: #17140f;
    --ivoire: #f3efe7;
    --ivoire-soft: #ece5d8;
    --taupe: #8f8578;
    --bordeaux: #6e1423;
    --or: #b79a6b;
    --ease: cubic-bezier(.19, 1, .22, 1);
    --font: 'Noto Sans JP', sans-serif;
}

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--font);
    color: var(--ivoire);
    background-color: var(--noir);
    font-feature-settings: "palt";
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
}

/* 画像ホバーズーム
-----------------------------------------------------------*/
.c-img-hover {
    overflow: hidden;
    margin-bottom: 0;
}

.c-img-hover img {
    transition: transform 1.5s var(--ease);
}

.c-img-hover:hover img {
    transform: scale(1.06);
}

/* スクロールフェードアップ
-----------------------------------------------------------*/
.fadeUpTrigger {
    opacity: 0;
    transform: translateY(40px);
}

.fadeUpTrigger.fadeUp {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

/* ヘッダー
-----------------------------------------------------------*/
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.l-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(14, 13, 12, .35);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity .8s var(--ease);
    pointer-events: none;
}

.l-header.is-scrolled::before {
    opacity: 1;
}

.l-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 22px;
    padding-inline: 30px;
    z-index: 160;
}

.l-header-logo {
    font-family: var(--font);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .12em;
    color: var(--ivoire);
    transition: color .8s var(--ease);
}

.l-header-logo span {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: .55rem;
    letter-spacing: .5em;
    color: var(--or);
    margin-top: 2px;
}

.l-header.is-light .l-header-logo {
    color: var(--noir);
}

.l-header-burger {
    position: relative;
    width: 28px;
    height: 14px;
    z-index: 200;
}

.l-header-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ivoire);
    transition: background-color .8s var(--ease), transform .6s var(--ease), top .6s var(--ease);
}

.l-header.is-light .l-header-burger span {
    background-color: var(--noir);
}

.l-header-burger span:nth-child(1) {
    top: 0;
}

.l-header-burger span:nth-child(2) {
    top: 13px;
}

.l-header-burger.is-active span {
    background-color: var(--ivoire);
}

.l-header-burger.is-active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.l-header-burger.is-active span:nth-child(2) {
    top: 6px;
    transform: rotate(-45deg);
}

/* ドロワー
-----------------------------------------------------------*/
.l-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 84vw);
    height: 100vh;
    background-color: var(--noir);
    border-left: 1px solid rgba(183, 154, 107, .25);
    padding: 110px 44px;
    z-index: 150;
    transform: translateX(100%);
    transition: transform .9s var(--ease);
}

.l-drawer.is-active {
    transform: translateX(0);
}

.l-drawer-nav-list li {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(243, 239, 231, .1);
    margin-bottom: 26px;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.l-drawer.is-active .l-drawer-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.l-drawer.is-active .l-drawer-nav-list li:nth-child(1) {
    transition-delay: .08s;
}

.l-drawer.is-active .l-drawer-nav-list li:nth-child(2) {
    transition-delay: .16s;
}

.l-drawer.is-active .l-drawer-nav-list li:nth-child(3) {
    transition-delay: .24s;
}

.l-drawer.is-active .l-drawer-nav-list li:nth-child(4) {
    transition-delay: .32s;
}

.l-drawer-nav-list a {
    font-family: var(--font);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .16em;
}

.l-drawer-nav-en {
    color: var(--or);
}

.l-drawer-nav-jp {
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .08em;
    color: var(--taupe);
    margin-top: 8px;
}

.l-drawer-note {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .1em;
    line-height: 2;
    color: var(--taupe);
    padding-top: 20px;
}

.l-drawer-bg {
    position: fixed;
    inset: 0;
    background-color: rgba(14, 13, 12, .6);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s var(--ease), visibility .9s var(--ease);
}

.l-drawer-bg.is-active {
    opacity: 1;
    visibility: visible;
}

/* ローディング
-----------------------------------------------------------*/
.loading {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.loading.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-inner {
    text-align: center;
}

.loading-logo {
    font-family: var(--font);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: .2em;
}

.loading-sub {
    font-family: var(--font);
    font-size: .65rem;
    letter-spacing: .6em;
    color: var(--or);
    padding-top: 8px;
}

/* 見出し系共通
-----------------------------------------------------------*/
.sec-01-eyebrow,
.sec-03-cite,
.sec-04-eyebrow,
.sec-05-eyebrow,
.sec-08-eyebrow {
    font-family: var(--font);
    font-size: .72rem;
    letter-spacing: .32em;
    color: var(--or);
    padding-bottom: 18px;
}

/* 01. ヒーロー
-----------------------------------------------------------*/
.sec-01 {
    position: relative;
    display: flex;
    height: 100svh;
    min-height: 560px;
}

.sec-01-visual {
    width: 46%;
    height: 100%;
    overflow: hidden;
}

.sec-01-visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.sec-01-visual-slide {
    position: absolute;
    inset: 0;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 1.6s var(--ease);
}

.sec-01-visual-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.sec-01-visual-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05);
    transform: scale(1.18);
}

.sec-01-visual-slide.is-active img {
    animation: mvZoomDown 8s linear forwards;
}

@keyframes mvZoomDown {
    from { transform: scale(1.18); }
    to { transform: scale(1); }
}

.sec-01-body {
    position: relative;
    width: 54%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 70px;
    padding-right: 40px;
}

.sec-01-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(3.4rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: .04em;
    padding-bottom: 26px;
}

.sec-01-title-cursor {
    display: inline-block;
    width: .045em;
    height: .82em;
    margin-left: .03em;
    background-color: var(--or);
    animation: cursorBlink 1s step-end infinite;
}

.sec-01-season {
    font-family: var(--font);
    font-size: .85rem;
    letter-spacing: .12em;
    color: var(--taupe);
    padding-bottom: 30px;
}

.sec-01-lead {
    font-size: 1.05rem;
    line-height: 2;
    padding-bottom: 60px;
}

.sec-01-lead-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 3px;
    background-color: var(--or);
    vertical-align: -.15em;
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.sec-01-scroll {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sec-01-scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(243, 239, 231, .3);
    position: relative;
    overflow: hidden;
}

.sec-01-scroll-line::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--or);
    animation: scrollLine 2.2s infinite var(--ease);
}

@keyframes scrollLine {
    0% { top: -100%; }
    60% { top: 100%; }
    100% { top: 100%; }
}

.sec-01-scroll-text {
    font-family: var(--font);
    font-size: .62rem;
    letter-spacing: .3em;
    color: var(--taupe);
    writing-mode: vertical-rl;
}

/* 02. コレクションフィルム(ループ動画)
-----------------------------------------------------------*/
.sec-02 {
    position: relative;
    height: 100svh;
    min-height: 480px;
    overflow: hidden;
}

.sec-02-video {
    position: absolute;
    inset: 0;
}

.sec-02-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}

.sec-02-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 90px;
    text-align: center;
    background: linear-gradient(to top, rgba(14, 13, 12, .8) 0%, rgba(14, 13, 12, 0) 50%);
}

.sec-02-eyebrow {
    font-family: var(--font);
    font-size: .72rem;
    letter-spacing: .32em;
    color: var(--or);
    padding-bottom: 16px;
}

.sec-02-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    letter-spacing: .1em;
}

/* 03. ステートメント
-----------------------------------------------------------*/
.sec-03 {
    background-color: var(--ivoire);
    color: var(--noir);
    padding-top: 160px;
    padding-bottom: 160px;
    text-align: center;
}

.sec-03-quote {
    font-family: var(--font);
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    line-height: 1.7;
    letter-spacing: .04em;
    padding-bottom: 34px;
}

.sec-03-cite {
    color: var(--bordeaux);
    padding-bottom: 0;
}

/* 04. コレクション(スティッキー)
-----------------------------------------------------------*/
.sec-04 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.sec-04-head {
    text-align: center;
    padding-bottom: 80px;
}

.sec-04-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: .05em;
}

.sec-04-stage {
    display: flex;
    align-items: flex-start;
}

.sec-04-visual {
    position: sticky;
    top: 0;
    width: 46%;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-04-visual-frame {
    position: relative;
    width: 82%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.sec-04-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s var(--ease);
}

.sec-04-visual-img.is-active {
    opacity: 1;
}

.sec-04-list {
    width: 54%;
    padding-left: 50px;
    padding-right: 30px;
}

.sec-04-item {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: .3;
    transition: opacity .8s var(--ease);
}

.sec-04-item.is-active {
    opacity: 1;
}

.sec-04-item-num {
    font-family: var(--font);
    font-size: .75rem;
    letter-spacing: .28em;
    color: var(--bordeaux);
    padding-bottom: 14px;
}

.sec-04-item-name {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: .05em;
    padding-bottom: 22px;
}

.sec-04-item-text {
    font-size: .96rem;
    line-height: 2;
    max-width: 34em;
    color: var(--ivoire-soft);
}

/* 05. ギャラリー(Swiper 流れるループ)
-----------------------------------------------------------*/
.sec-05 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.sec-05-eyebrow {
    padding-bottom: 50px;
}

.sec-05-swiper {
    width: 100%;
}

.sec-05-slide {
    width: 340px !important;
    height: 440px !important;
}

.sec-05-slide .c-img-hover {
    width: 100%;
    height: 100%;
}

.sec-05-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 06. ルックブック(メンズ / レディース ギャラリー)
-----------------------------------------------------------*/
.sec-06 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.sec-06-head {
    text-align: center;
    padding-bottom: 60px;
}

.sec-06-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: .12em;
}

.sec-06-subtitle {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .32em;
    color: var(--taupe);
    padding-top: 16px;
}

.sec-06-tabs {
    display: flex;
    justify-content: center;
    gap: 34px;
    padding-top: 30px;
}

.sec-06-tab {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .22em;
    color: var(--taupe);
    padding-bottom: 8px;
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: color .6s var(--ease), border-color .6s var(--ease);
}

.sec-06-tab.is-active {
    color: var(--ivoire);
    border-color: var(--or);
}

.sec-06-split {
    display: flex;
    align-items: flex-start;
}

.sec-06-split.is-reverse {
    flex-direction: row-reverse;
}

.sec-06-video-panel {
    position: sticky;
    top: 0;
    width: 46%;
    height: 100svh;
    flex-shrink: 0;
    overflow: hidden;
}

.sec-06-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    opacity: 0;
    transition: opacity .9s var(--ease);
}

.sec-06-video-el.is-visible {
    opacity: 1;
}

.sec-06-grid-wrap {
    position: relative;
    flex-grow: 1;
    padding-inline: 40px;
    container-type: inline-size;
}

.sec-06-canvas-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

#js-gallery-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.sec-06-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 列幅(コンテナ幅の約1/4)に対して常に4:5の縦長比率を保つ(cqwなので画面幅が変わっても崩れない) */
    grid-auto-rows: 30cqw;
    grid-auto-flow: dense;
    gap: 16px;
}

.sec-06-item {
    position: relative;
    overflow: hidden;
    display: none;
}

.sec-06-item.is-visible {
    display: block;
}

.sec-06-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.sec-06-item.is-tall {
    grid-row: span 2;
}

.sec-06-item.is-offset {
    margin-top: 56px;
}

.sec-06-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s var(--ease);
}

/* 07. フィロソフィー(リバース スプリット)
-----------------------------------------------------------*/
.sec-07 {
    background-color: var(--ivoire);
    color: var(--noir);
    padding-top: 140px;
    padding-bottom: 140px;
}

.sec-07-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sec-07-body {
    width: 44%;
}

.sec-07-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: .14em;
}

.sec-07-subtitle {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .32em;
    color: var(--bordeaux);
    padding-top: 14px;
    padding-bottom: 30px;
}

.sec-07-text {
    font-size: .96rem;
    line-height: 2.1;
    color: #3a352d;
    padding-bottom: 26px;
}

.sec-07-visual {
    width: 56%;
    aspect-ratio: 4 / 5;
}

.sec-07-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 08. デザイナープロフィール
-----------------------------------------------------------*/
.sec-08 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.sec-08-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sec-08-visual {
    width: 44%;
    aspect-ratio: 4 / 5;
}

.sec-08-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-08-body {
    width: 56%;
}

.sec-08-name {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: .1em;
    padding-top: 14px;
}

.sec-08-role {
    font-family: var(--font);
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--or);
    padding-top: 20px;
}

.sec-08-location {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--taupe);
    padding-top: 6px;
    padding-bottom: 30px;
}

.sec-08-text {
    font-size: .94rem;
    line-height: 2.1;
    color: var(--ivoire-soft);
    padding-bottom: 22px;
}

.sec-08-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-family: var(--font);
    font-size: .76rem;
    letter-spacing: .16em;
    color: var(--or);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--or);
    transition: gap .5s var(--ease);
}

.sec-08-more:hover {
    gap: 16px;
}

/* 09. プライベートアポイントメント
-----------------------------------------------------------*/
.sec-09 {
    padding-top: 160px;
    padding-bottom: 180px;
    text-align: center;
}

.sec-09-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2.4rem, 4.6vw, 3.4rem);
    letter-spacing: .14em;
}

.sec-09-subtitle {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .32em;
    color: var(--or);
    padding-top: 16px;
    padding-bottom: 26px;
}

.sec-09-text {
    font-size: .98rem;
    line-height: 2;
    color: var(--taupe);
    padding-bottom: 46px;
}

.sec-09-btn {
    position: relative;
    z-index: 0;
    display: inline-block;
    font-family: var(--font);
    font-size: .8rem;
    letter-spacing: .24em;
}

.sec-09-btn::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: -7px;
    bottom: -7px;
    border-right: 1px solid var(--or);
    border-bottom: 1px solid var(--or);
    z-index: -1;
    pointer-events: none;
}

.sec-09-btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 19px 46px;
    border: 1px solid var(--or);
    background-color: var(--noir);
    transition: transform .9s var(--ease), background-color .9s var(--ease), color .9s var(--ease), gap .7s var(--ease);
}

.sec-09-btn i {
    font-size: .68rem;
    transition: transform .7s var(--ease);
}

.sec-09-btn:hover .sec-09-btn-inner {
    gap: 26px;
    color: var(--noir);
    background-color: var(--or);
    transform: translate(7px, 7px);
}

.sec-09-btn:hover i {
    transform: translateX(4px);
}

/* 10. モデル(横一列 伸縮パネル)
-----------------------------------------------------------*/
.sec-10 {
    padding-top: 140px;
    padding-bottom: 160px;
}

.sec-10-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    letter-spacing: .14em;
    text-align: center;
}

.sec-10-subtitle {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .32em;
    color: var(--taupe);
    text-align: center;
    padding-top: 16px;
    padding-bottom: 70px;
}

.sec-10-row {
    display: flex;
    height: 64vh;
    min-height: 420px;
    gap: 4px;
    overflow: hidden;
}

.sec-10-panel {
    position: relative;
    flex: 1 1 0%;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow .8s var(--ease);
}

.sec-10-panel:hover,
.sec-10-panel.is-open {
    flex-grow: 4;
}

.sec-10-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 1.2s var(--ease);
}

.sec-10-panel:hover img,
.sec-10-panel.is-open img {
    transform: scale(1.05);
}

.sec-10-panel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: linear-gradient(to top, rgba(14, 13, 12, .85) 0%, rgba(14, 13, 12, 0) 55%);
}

.sec-10-panel-name {
    font-family: var(--font);
    font-size: 1.05rem;
    letter-spacing: .14em;
    color: var(--ivoire);
    white-space: nowrap;
    transition: color .5s var(--ease);
}

.sec-10-panel:hover .sec-10-panel-name,
.sec-10-panel.is-open .sec-10-panel-name {
    color: var(--or);
}

.sec-10-panel-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .6s var(--ease);
}

.sec-10-panel:hover .sec-10-panel-detail,
.sec-10-panel.is-open .sec-10-panel-detail {
    grid-template-rows: 1fr;
}

.sec-10-panel-detail-inner {
    overflow: hidden;
    min-height: 0;
    white-space: nowrap;
}

.sec-10-panel-detail-inner p {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--taupe);
    padding-top: 12px;
}

.sec-10-panel-detail-inner p:first-child {
    padding-top: 16px;
}

/* フッター
-----------------------------------------------------------*/
.l-footer {
    padding-top: 70px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(183, 154, 107, .2);
}

.l-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 50px;
}

.l-footer-logo {
    font-family: var(--font);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: .1em;
}

.l-footer-logo span {
    font-family: var(--font);
    font-size: .5rem;
    letter-spacing: .4em;
    color: var(--or);
    margin-left: 8px;
}

.l-footer-nav-list {
    display: flex;
    gap: 30px;
}

.l-footer-nav-list a {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .16em;
    color: var(--taupe);
}

.l-footer-sns {
    display: flex;
    gap: 14px;
}

.l-footer-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--taupe);
    border-radius: 50%;
    font-size: .82rem;
    color: var(--taupe);
    transition: border-color .8s var(--ease), color .8s var(--ease);
}

.l-footer-sns a:hover {
    border-color: var(--or);
    color: var(--or);
}

.l-footer-copyright {
    text-align: center;
    font-family: var(--font);
    font-size: .62rem;
    letter-spacing: .1em;
    color: var(--taupe);
}

/* ページトップへ戻るボタン
-----------------------------------------------------------*/
.c-totop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--or);
    border-radius: 50%;
    background-color: rgba(14, 13, 12, .55);
    backdrop-filter: blur(6px);
    color: var(--ivoire);
    font-size: .82rem;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s var(--ease), background-color .6s var(--ease), color .6s var(--ease);
}

.c-totop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.c-totop:hover {
    background-color: var(--or);
    color: var(--noir);
}

/* 共通:下層ページのページヘッダー
-----------------------------------------------------------*/
.p-page-head {
    padding-top: 200px;
    padding-bottom: 100px;
    text-align: center;
}

.p-page-head-eyebrow {
    font-family: var(--font);
    font-size: .72rem;
    letter-spacing: .32em;
    color: var(--or);
    padding-bottom: 18px;
}

.p-page-head-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: .14em;
    padding-bottom: 26px;
}

.p-page-head-text {
    max-width: 40em;
    margin-inline: auto;
    font-size: .96rem;
    line-height: 2;
    color: var(--ivoire-soft);
}

/* CONTACTページ
-----------------------------------------------------------*/
.contact-main {
    background-color: var(--ivoire);
    color: var(--noir);
    padding-top: 100px;
    padding-bottom: 160px;
}

.contact-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-info {
    position: sticky;
    top: 120px;
    width: 32%;
    flex-shrink: 0;
}

.contact-info-eyebrow {
    font-family: var(--font);
    font-size: .7rem;
    letter-spacing: .28em;
    color: var(--bordeaux);
    padding-top: 40px;
    padding-bottom: 14px;
}

.contact-info-eyebrow:first-child {
    padding-top: 0;
}

.contact-info-address,
.contact-info-text {
    font-size: .92rem;
    line-height: 1.9;
    color: #3a352d;
}

.contact-info-sns {
    display: flex;
    gap: 14px;
    padding-top: 4px;
}

.contact-info-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--taupe);
    border-radius: 50%;
    color: var(--noir);
    transition: border-color .6s var(--ease), color .6s var(--ease);
}

.contact-info-sns a:hover {
    border-color: var(--bordeaux);
    color: var(--bordeaux);
}

.contact-form {
    width: 68%;
}

.contact-form-row {
    padding-bottom: 26px;
}

.contact-form-label {
    display: block;
    font-family: var(--font);
    font-size: .74rem;
    letter-spacing: .12em;
    color: var(--taupe);
    padding-bottom: 10px;
}

.contact-form-label span {
    color: var(--bordeaux);
    font-size: .68rem;
    margin-left: 6px;
}

.contact-form-input {
    width: 100%;
    padding-block: 12px;
    font-family: var(--font);
    font-size: .96rem;
    color: var(--noir);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(14, 13, 12, .2);
    transition: border-color .5s var(--ease);
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--bordeaux);
}

.contact-form-select {
    cursor: pointer;
}

.contact-form-textarea {
    resize: vertical;
}

.contact-form-submit {
    position: relative;
    z-index: 0;
    display: block;
    width: fit-content;
    margin: 10px auto 0;
    font-family: var(--font);
    font-size: .8rem;
    letter-spacing: .24em;
    cursor: pointer;
}

.contact-form-submit::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: -7px;
    bottom: -7px;
    border-right: 1px solid var(--bordeaux);
    border-bottom: 1px solid var(--bordeaux);
    z-index: -1;
    pointer-events: none;
}

.contact-form-submit-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 19px 46px;
    border: 1px solid var(--bordeaux);
    background-color: var(--ivoire);
    color: var(--noir);
    transition: transform .9s var(--ease), background-color .9s var(--ease), color .9s var(--ease), gap .7s var(--ease);
}

.contact-form-submit i {
    font-size: .68rem;
    transition: transform .7s var(--ease);
}

.contact-form-submit:hover .contact-form-submit-inner {
    gap: 26px;
    color: var(--ivoire);
    background-color: var(--bordeaux);
    transform: translate(7px, 7px);
}

.contact-form-submit:hover i {
    transform: translateX(4px);
}

.contact-form-done {
    display: none;
    margin-top: 20px;
    font-size: .88rem;
    letter-spacing: .04em;
    color: var(--bordeaux);
}

.contact-form.is-sent .contact-form-done {
    display: block;
}

.contact-form.is-sent .contact-form-row,
.contact-form.is-sent .contact-form-submit {
    display: none;
}

/* ATELIERページ
-----------------------------------------------------------*/
.atelier-profile {
    padding-top: 20px;
    padding-bottom: 140px;
}

.atelier-profile-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.atelier-profile-visual {
    position: sticky;
    top: 120px;
    width: 38%;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
}

.atelier-profile-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atelier-profile-body {
    width: 62%;
}

.atelier-profile-name {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: .1em;
}

.atelier-profile-role {
    font-family: var(--font);
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--or);
    padding-top: 20px;
}

.atelier-profile-location {
    font-family: var(--font);
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--taupe);
    padding-top: 6px;
    padding-bottom: 30px;
}

.atelier-profile-text {
    font-size: .94rem;
    line-height: 2.1;
    color: var(--ivoire-soft);
    padding-bottom: 22px;
}

.atelier-work {
    position: relative;
    height: 70svh;
    min-height: 420px;
    overflow: hidden;
}

.atelier-work-visual {
    position: absolute;
    inset: 0;
    margin-bottom: 0;
}

.atelier-work-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atelier-work-caption {
    position: absolute;
    left: 0;
    bottom: 30px;
    padding-inline: 40px;
    font-family: var(--font);
    font-size: .76rem;
    letter-spacing: .06em;
    color: var(--ivoire);
    background-color: rgba(14, 13, 12, .55);
    padding-block: 10px;
}

.atelier-history {
    padding-top: 140px;
    padding-bottom: 140px;
}

.atelier-history-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    letter-spacing: .12em;
    text-align: center;
}

.atelier-history-subtitle {
    font-family: var(--font);
    font-size: .76rem;
    letter-spacing: .3em;
    color: var(--taupe);
    text-align: center;
    padding-top: 14px;
    padding-bottom: 70px;
}

.atelier-history-list {
    max-width: 760px;
    margin-inline: auto;
}

.atelier-history-item {
    display: flex;
    gap: 40px;
    padding-block: 26px;
    border-top: 1px solid rgba(243, 239, 231, .12);
}

.atelier-history-list li:last-child {
    border-bottom: 1px solid rgba(243, 239, 231, .12);
}

.atelier-history-year {
    flex-shrink: 0;
    width: 90px;
    font-family: var(--font);
    font-size: .85rem;
    letter-spacing: .1em;
    color: var(--or);
}

.atelier-history-text {
    font-size: .92rem;
    line-height: 1.9;
    color: var(--ivoire-soft);
}

.atelier-cta {
    padding-top: 20px;
    padding-bottom: 160px;
    text-align: center;
}

.atelier-cta-text {
    font-size: .94rem;
    color: var(--taupe);
    padding-bottom: 34px;
}

.atelier-cta-btn {
    position: relative;
    z-index: 0;
    display: inline-block;
    font-family: var(--font);
    font-size: .8rem;
    letter-spacing: .24em;
}

.atelier-cta-btn::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: -7px;
    bottom: -7px;
    border-right: 1px solid var(--or);
    border-bottom: 1px solid var(--or);
    z-index: -1;
    pointer-events: none;
}

.atelier-cta-btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 19px 46px;
    border: 1px solid var(--or);
    background-color: var(--noir);
    transition: transform .9s var(--ease), background-color .9s var(--ease), color .9s var(--ease), gap .7s var(--ease);
}

.atelier-cta-btn i {
    font-size: .68rem;
    transition: transform .7s var(--ease);
}

.atelier-cta-btn:hover .atelier-cta-btn-inner {
    gap: 26px;
    color: var(--noir);
    background-color: var(--or);
    transform: translate(7px, 7px);
}

.atelier-cta-btn:hover i {
    transform: translateX(4px);
}

/* LOOKBOOKページ
-----------------------------------------------------------*/
.lookbook-main {
    padding-top: 20px;
    padding-bottom: 140px;
}

/* COLLECTIONページ(アーカイブ)
-----------------------------------------------------------*/
.collection-list {
    padding-top: 40px;
    padding-bottom: 160px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

.collection-card {
    display: block;
}

.collection-card-visual {
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
}

.collection-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card-body {
    padding-top: 24px;
}

.collection-card-tag {
    font-family: var(--font);
    font-size: .7rem;
    letter-spacing: .28em;
    color: var(--taupe);
    padding-bottom: 12px;
}

.collection-card.is-current .collection-card-tag {
    color: var(--or);
}

.collection-card-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: .08em;
    padding-bottom: 14px;
}

.collection-card-text {
    font-size: .9rem;
    line-height: 1.9;
    color: var(--ivoire-soft);
    max-width: 30em;
}

.collection-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-family: var(--font);
    font-size: .74rem;
    letter-spacing: .16em;
    color: var(--or);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--or);
    transition: gap .5s var(--ease);
}

.collection-card.is-current:hover .collection-card-link {
    gap: 16px;
}

/* タブレット 1199px以下
-----------------------------------------------------------*/
@media (max-width: 1199px) {
    .sec-01-body {
        padding-left: 50px;
    }

    .sec-06-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 41cqw;
    }

    .sec-07-inner {
        gap: 40px;
    }
}

/* スマートフォン 767px以下
-----------------------------------------------------------*/
@media (max-width: 767px) {
    .l-header-inner {
        padding-block: 16px;
        padding-inline: 20px;
    }

    .p-page-head {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .atelier-profile-inner {
        flex-direction: column;
        gap: 40px;
    }

    .atelier-profile-visual {
        position: static;
        width: 100%;
    }

    .atelier-profile-body {
        width: 100%;
    }

    .atelier-work-caption {
        left: 0;
        right: 0;
        padding-inline: 20px;
    }

    .atelier-history-item {
        gap: 20px;
    }

    .atelier-history-year {
        width: 66px;
    }

    .contact-inner {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info {
        position: static;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .sec-10-row {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .sec-10-panel {
        flex: none;
        height: 150px;
        transition: height .6s var(--ease);
    }

    .sec-10-panel.is-open {
        height: 500px;
    }

    .sec-10-panel-overlay {
        padding: 16px;
    }

    .sec-01 {
        flex-direction: column;
        height: auto;
        min-height: 100svh;
    }

    .sec-01-visual {
        width: 100%;
        height: 65svh;
    }

    .sec-01-body {
        width: 100%;
        padding: 50px 24px 70px;
    }

    .sec-01-title {
        font-size: clamp(2.6rem, 14vw, 3.6rem);
    }

    .sec-01-scroll {
        display: none;
    }

    .sec-03 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sec-02 {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        background-color: var(--noir);
    }

    .sec-02-video-el {
        object-fit: contain;
    }

    .sec-02-overlay {
        padding-bottom: 24px;
        background: linear-gradient(to top, rgba(14, 13, 12, .85) 0%, rgba(14, 13, 12, 0) 40%);
    }

    .sec-06-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 61cqw;
    }

    .sec-06-item.is-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .sec-06-item.is-offset {
        margin-top: 0;
    }

    .sec-06-split {
        flex-direction: column;
    }

    .sec-06-split.is-reverse {
        flex-direction: column;
    }

    .sec-06-video-panel {
        position: relative;
        top: auto;
        width: 100%;
        height: 50svh;
    }

    .sec-06-grid-wrap {
        width: 100%;
        padding-inline: 20px;
        padding-top: 30px;
    }

    .sec-04-stage {
        flex-direction: column;
        position: relative;
    }

    .sec-04-visual {
        position: sticky;
        top: 0;
        width: 100%;
        height: 100svh;
        z-index: 1;
    }

    .sec-04-visual-frame {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .sec-04-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(14, 13, 12, 0) 40%, rgba(14, 13, 12, .85) 100%);
        pointer-events: none;
    }

    .sec-04-list {
        position: relative;
        z-index: 2;
        width: 100%;
        margin-top: -100svh;
        padding-left: 24px;
        padding-right: 24px;
    }

    .sec-04-item {
        min-height: 100svh;
        justify-content: flex-end;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .sec-07-inner {
        flex-direction: column;
    }

    .sec-07-body,
    .sec-07-visual {
        width: 100%;
    }

    .sec-08-inner {
        flex-direction: column;
        gap: 40px;
    }

    .sec-08-visual,
    .sec-08-body {
        width: 100%;
    }

    .l-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .l-footer-nav {
        width: 100%;
    }

    .l-footer-nav-list {
        gap: 15px;
        justify-content: space-between;
    }

    .c-totop {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }
}