@charset "UTF-8";
/* ==============
メインビジュアル 
=================*/

.about-hero{
display:flex;
flex-direction:column;
}

/* --- 初期状態：すべて透明 --- */
.mainimg img,
.catchcopy h1,
.catchcopy p {
    opacity: 0;
    /* 3.5秒かけて、極めて滑らかに現れる設定 */
    transition: opacity 3.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainimg {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* はみ出し防止 */
    background: #000;
}

.mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;

    transform: scale(1.05);
    transition: opacity 3s ease, transform 10s ease-out;
}

/* --- 表示された時（is-visible） --- */

/* 1. 画像：真っ先に動き出す */
.catchcopy.is-visible .mainimg img {
    opacity: 1;
    transform: scale(1);
}

/* 2. タイトルと説明文：画像が動き出して 1.2秒後に「同時」に浮かび上がる */
.catchcopy.is-visible h1,
.catchcopy.is-visible p {
    opacity: 1;
    /* 同じ遅延時間にすることで、セットで現れます */
    transition-delay: 1.5s; 
}

/* キャッチコピー */

.catchcopy{
    background: #000;
    text-align: center;
    display:flex;
    flex-direction:column;
    align-items: center;
}

.catchcopy h1{
    font-family: "Noto Serif JP", serif;
     font-size: clamp(20px, 4.2vw, 64px);
    font-weight: 300;
    padding: clamp(120px, 14vw, 209px) 0 clamp(60px, 7vw, 109px);
    letter-spacing: 2px;
    line-height:1.4;
    order:2;
}

.catchcopy p{
    font-family: "Noto Serif JP", serif;
     font-size: clamp(12px, 2vw, 32px);
    line-height: 2;
    color: #fff;
    padding: 0 0 clamp(120px, 18vw, 268px);
    order:3;
}

/* --- JSで .is-visible が付いた時の動き --- */

/* 画像：表示 ＆ ズーム開始 */
.catchcopy.is-visible .mainimg img {
    opacity: 1;
    transform: scale(1);
}

/* タイトル：0.8秒遅れて左から登場 */
.catchcopy.is-visible h1 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

/* 説明文：さらに遅れて表示 */
.catchcopy.is-visible p {
    opacity: 1;
    transition-delay: 1.5s;
}

/*メインビジュアルのモバイル*/

@media (max-width: 768px){

.catchcopy h1{
    order:1;
}

.mainimg{
    width: 100%;
    height: auto;
    object-fit:cover;
    order:2;
}

.mainimg img {
        height: auto; /* 縦横比を元に戻す */
    }

.catchcopy p{
    order: 3;
    line-height: 25px;
    padding-top: 36px;
    padding-bottom: 79px;
}

}

/* =========================
COLLECTION
========================= */

.about-collection{
    text-align: center;
    padding: 0;
}

/* 横線 */
.about-collection .title-wrapper::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    z-index: -1;
} 
/* 丸タイトルの領域 */
.about-collection .title-wrapper{
    position: relative;
    width: 100%;
   
    display: flex;
    flex-direction: column;
     margin-bottom: 80px;

}
/* 丸タイトル */
.about-collection .collection-title{
    background-color: #000;
    /* 円大きさは画面幅に応じて変更 */
    width:clamp(130px,40vw,350px);
    /* 円が正円になるように */
    aspect-ratio: 1/1;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    /* フォントサイズ */
    font-size: clamp(0.9rem, 3vw, 2rem);
    font-family: "Noto Serif JP", serif;
    /* 行間はフォントサイズの2倍 */
    line-height:2;
    letter-spacing: 2px;
}

/* =========================
SLIDER
========================= */

/* 全体を縦並びにする */
.collection-slider {
    width: 100%;
    display: flex;
    flex-direction: column; /* 子要素を縦に並べる */
    align-items: center;    /* 中央揃え */
    background-color: #000;
}

.slider-main {
   width: 100%;
    overflow: hidden; /* 画面外へのはみ出しを防ぐ */
}

/* 追加：スライドの窓 */
.slider-container {
    width: 100%;
    overflow: visible; /* 左右のアイテムを見せるためにvisibleに */
}

/* 追加：スライドの列 */
.slider-wrapper {
    display: flex;
    /* 中央に配置するための調整 */
    padding-left: 10%; /* 左右のチラ見せ具合を調整 */
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
}

/* 修正：1枚のスライド */
.slider-item {
    flex: 0 0 88%; /* 1枚の幅を80%にすることで、左右に10%ずつ余白を作る */
    width: 88%;
    opacity: 0.3;  /* 通常時はうっすらさせる */
    transition: all 1s ease;
    cursor: pointer;
    /* 画像同士がくっつきすぎないよう調整 */
    padding: 0 10px; 
    box-sizing: border-box;
}

:root {
  --slide-width: 85%; 
}

@media (min-width: 1024px) {
  :root {
    --slide-width: 60%; 
  }
}

.slider-main {
    width: 100%;
    overflow: hidden;
    background: #000;
}


.slider-item {
    flex: 0 0 var(--slide-width);
    width: var(--slide-width);
    /* 隙間はここ（padding）だけで作ります */
    padding: 0 10px; 
    box-sizing: border-box;
    
    opacity: 0.3;
    filter: brightness(0.4);
    transition: filter 1s ease, opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
    filter: brightness(1);
}

/* Coming Soonなどの空画像対策 */
img:not([src]), img[src=""], img[src="#"] {
    display: none;
}

.slider-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 auto;
    background-color: #111;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
    /* 枠自体のサイズが変わらないように固定 */
    transform: translateZ(0);
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 拡大のアニメーション。移動(1.2s)より少し短く(0.8s)するとスッキリします */
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* --- アクティブ時の拡大 --- */
.slider-item.active .slider-image img {
    /* 1.05だと「ぼよん」が目立つので、1.03くらいに抑えるのが今っぽくて上品です */
    transform: scale(1.03); 
}



/* シーズン（画像の下に来る） */
.season {
    padding-top: 60px;
    padding-bottom: 80px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(5px, 6vw, 42px);
    letter-spacing: 2px;
    text-align: center;   /* 中央寄せ */
    width: 100%;          /* 幅いっぱい使う */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    /* 0.8s → 1.8s に変更。余韻を残して現れます */
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* スライドが「アクティブ」になった時の文字の状態 */
.slider-item.active .season {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .slider-main {
        gap: 15px;
    }

    .season{
        padding-top: 40px;
        padding-bottom: 60px;
    }
}


/* =========================
COMPANY
========================= */

.company{
    width:80%;
    margin: auto;
}

.company h2{
    font-size:clamp(30px,4.2vw,50px);
    margin-bottom:40px;
    font-family: "Noto Serif JP", serif;
    opacity: 0;
    /* 最初は 0.8倍（小さめ）にしておく */
    transform: translateY(30px) scale(0.85);
    /* 1.5s（1.5秒）かけて、ゆっくり動かす */
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.company h2 span{
    font-size:clamp(8px,4.2vw,22px);
    margin-left:10px;
    font-family: "Noto Serif JP", serif;
}

/* .company-table{
    /* border-top:1px solid #555; */


.row{
    display:flex;
    padding:20px 0;
    border-bottom:1px solid #333;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(8px,4vw,22px);
}

/* --- 各行（row）の動きもさらにゆっくりに --- */
.company .row {
    opacity: 0;
    transform: translateX(-30px);
    /* ここも 1.5s に合わせてゆったりさせます */
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.company .row.show {
    opacity: 1;
    transform: translateX(0);
}

.company h2.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Companyセクション（ズームインとスライド） --- */
.company h2, 
.company .row {
    /* 1.5s → 2.0s に変更。映画のオープニングのような速度です */
    transition: all 2.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.label{
    width: clamp(105px,20vw,258px);
    color: #aaa;
}

.value{
    flex:1;
}