@charset "UTF-8";
/* CSS Document */
    body {
      margin: 0;
      background: #fff;
    }







* {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}


.border{
  text-align:center;
  margin:60px 0;
}

.store-btn{
  display:inline-block;

  padding:14px 60px;

  border:1px solid #000;

  color:#000;
  text-decoration:none;

  font-size:11px;
  letter-spacing:0.25em;

  transition:.3s ease;
}

.store-btn:hover{
  background:#000;
  color:#fff;
}



.footer {
  position: absolute;/*②絶対位置*/
  bottom: 0; /*下に固定*/
}





a:link {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:visited {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:active {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}




.divlogo {
	width:	250px;
     height: 25px;
	margin-bottom: 20px;
	}





@charset "UTF-8";

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#fff;
  color:#111;
  font-family:  "Times New Roman", Times, serif;

}

.vertical-number {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* ==========================
   HERO IMAGE
========================== */

.hero{
  position:sticky;
  top:0;

  min-height:110vh; /* ←少し余裕を持たせる */
  padding-bottom:10vh;

  display:flex;
  justify-content:center;
  align-items:center;
	
}

.hero img{
  width:min(30vw, 550px);
  aspect-ratio:auto;
  height:auto;
  display:block;
}
/* ==========================
   CONTENT
========================== */

.content{
  position:relative;
  z-index:2;
  margin-top:-10vh;
  border-radius:0px 0px 0 0;
  background:#fff;
  padding:4vw 12vw;
	
}

.content-inner{
  max-width:1400px;
  margin:0 auto;
}

/* ==========================
   SINGLE IMAGE
========================== */

.look-single{
  margin-bottom:10vw;
}

.look-single img{
  width:100%;
  display:block;
  aspect-ratio:3/4;
  object-fit:cover;
}

/* ==========================
   2 COLUMN GRID
========================== */

.look-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10vw;
}

.look-grid img {
  width: 80%;
  display: block;

  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* 左画像 */
.look-grid > :nth-child(odd) img {
  margin-left: auto;
  margin-right: 0;
}

/* 右画像 */
.look-grid > :nth-child(even) img {
  margin-left: 0;
  margin-right: auto;
}

/* ==========================
   CREDIT
========================== */


.credit h2{
  font-size:18px;
  font-weight:400;
  letter-spacing:.15em;

  margin-bottom:10px;
}

.credit{
  margin-top:16px;
  display:flex;
  justify-content:flex-end;
}

.credit p{
  font-size:9px;
  line-height:1.9;
  text-align:right;
  letter-spacing:0.1em;
}

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

/* ==========================
   TEXT BLOCK
========================== */

.text-block{
  max-width:700px;
  margin:0 auto 10vw;
}

.text-block h2{
  font-size:24px;
  font-weight:400;
  letter-spacing:.15em;

  margin-bottom:25px;
}

.text-block p{
  font-size:14px;
  line-height:2.4;
  letter-spacing:.08em;
}
/* ==========================
   look-large
========================== */

.look-large{
  width:min(30vw, 550px);
  margin:8vw auto 0;
}

.look-large img{
  width:100%;
  display:block;
}

.look-large .credit{
  margin-top:16px;
  margin-bottom:-16px;
  text-align:right;
}


/* ==========================
   SPACER
========================== */

.space{
  height:10vw;
}


/* ==========================
   INTRO
========================== */

.intro{
  background:#fff;
  position:relative;
  z-index:10;
}

.intro-banner{
  position:relative;
  width:100%;
   height:90vw; /* 好きな高さ */
  aspect-ratio:16/9;
  overflow:hidden;

}


.fade-grid{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0px;
  opacity:0;
  transition:opacity 1s ease;
}

.fade-grid.active{
  opacity:1;
  z-index:2;
}

.fade-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.intro-text{
  max-width:700px;
  margin:0 auto;
  padding:80px 30px 60px;
  text-align:left;
}

.intro-text h1{
  font-size:28px;
  font-weight:400;
  letter-spacing:.2em;
  margin-bottom:40px;
}

.intro-text p{
  font-size:13px;
  line-height:1.5;
  letter-spacing:.08em;
}

.sub-title{
  font-size:10px;
  letter-spacing:0.3em;
  margin-bottom:15px;
  text-transform:uppercase;
}




.staff-credit{
  text-align:center;
  margin:100px 0 50px;
}

.staff-credit p{
  font-size:10px;
  line-height:2.2;
  letter-spacing:0.15em;
  font-weight:400;
}


.fade-image{
  position:relative;
}

.fade-image img{
  position:absolute;
  inset:0;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.5s ease;
}

.fade-image img.active{
  opacity:1;
}


/* ==========================
   SP
========================== */

@media screen and (max-width: 767px){

  .content{
    padding:8vw 5vw;
    margin-top:-5vh;
  }

  .intro-banner{
    height:70vw;
  }

  .fade-grid{
    gap:5px;
  }

  .intro-text{
    max-width:100%;
    padding:50px 25px 70px;
  }

  .intro-text h1{
    font-size:22px;
    margin-bottom:25px;
  }

  .sub-title{
    font-size:9px;
    letter-spacing:0.2em;
  }

  .intro-text p{
    font-size:11px;
    line-height:2.2;
  }



  .look-grid{
    gap:15px;
    margin-bottom:15vw;
  }

  .look-grid img{
    aspect-ratio:auto;
    height:auto;
  }

  .look-large{
    width:70vw;
    margin:15vw auto 0;
  }

  .credit{
    margin-top:10px;
  }

  .credit p{
    font-size:8px;
    line-height:1.8;
    letter-spacing:0.08em;
  }

  .staff-credit{
    margin:80px 0 40px;
  }

  .staff-credit p{
    font-size:9px;
    line-height:2;
  }

  .store-btn{
    width:100%;
    max-width:280px;
    padding:14px 20px;
    font-size:10px;
  }

  .text-block{
    margin-bottom:15vw;
  }

  .text-block h2{
    font-size:18px;
    margin-bottom:15px;
  }

  .text-block p{
    font-size:12px;
    line-height:2.2;
  }

  .divlogo{
    width:180px;
    height:auto;
    margin-bottom:15px;
  }

}




.look-section {
  position: relative;
  padding: 150px 0;
}


.look-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}









.small-center {
  display: block;
  width: 30%;
  margin: 0 auto;
}



.slide-text {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: #fff;
}





.number {
  display: inline-block;
  transform: rotate(-90deg); /* 回転を打ち消す */
  font-size: 30px;
  font-weight: 700;
  margin-right: 8px;
}



.split-layout {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* =========================
   LEFT
========================= */

.split-left {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.fade-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-images img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;
  animation: fadeImage 6s infinite;
}

.fade-images img:first-child {
  animation-delay: 0s;
}

.fade-images img:nth-child(2) {
  animation-delay: 3s;
}

@keyframes fadeImage {

  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }

}


/* =========================
   RIGHT
========================= */

.split-right {
  width: 50%;
  height: 100%;
  position: relative;
  background: #fff;
}


/* 中央タイトル */

.vertical-title {
  position: absolute;

  top: 45%;
  left: 10%;

  transform: translateY(-50%);

  writing-mode: horizontal-tb;
  text-orientation: mixed;

  height: auto;

  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;

  margin: 0;
  padding: 0;
}

.title {
  font-size: 18px;
}

.catch {
  font-size: 15px;
}

.text {
  font-size: 11px;
  line-height: 2;
}


/* =========================
   右上
========================= */

.right-top {
  position: absolute;
  top: 20px;
  right: 30px; /* ← さらに右へ */
  
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.right-top img {
  width: 50px;
  height: 150px;
  object-fit: contain;
}


/* =========================
   右下
========================= */
.right-bottom {
  position: absolute;
  right: 25px;
  bottom: 25px;

  display: flex;
  align-items: flex-end;
  gap: 18px;

  font-family: "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.graphic-arrow {
  position: relative;
  width: 45px;
  height: 55px;
}

/* 縦線 */
.graphic-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 55px;
  background: #000;
}

/* 横に伸びるライン */
.graphic-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 1px;
  background: #000;
}

/* ========================================
   LEFT : SVG固定
======================================== */

.fixed-text {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 9999;

  font-family: "Noto Serif JP", serif;
  color: #053924 !important;
}

.fixed-title {
  display: block;
  font-size: 23px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.fixed-catch {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
}


/* ========================================
   RIGHT : テキスト切り替え
======================================== */

.fixed-label {
  position: fixed;
  top: 40%;
  right: 40px;
  z-index: 9999;
  opacity: 1;
  transform: translateY(-50%);
  text-align: left;
}


.left-label {
  left: 40px;
  right: auto;
  text-align: left;
    font-size: 11px;
}

.left-label .label {
  left: 0;
  right: auto;
  text-align: left;
}


/* 左は今のまま */
.left-label {
  /* 既存の設定をそのまま */
}

/* 右だけ下合わせ */
.fixed-label:not(.left-label) {
  top: auto;
  bottom: 15%;
  transform: none;
}


/* 各テキスト */
.label {
  position: absolute;
  color: #000;
  top: 0;
  right: 80px;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  white-space: nowrap;
  /* 90度回転を完全に解除 */
  transform: none;
   text-align: right;
}

.label.active {
  opacity: 1;
}


.fixed-svg {
  position: fixed;
  top: 30px;
  right: 40px;

  z-index: 9999;
}

.fixed-svg img {
  display: block;

  width: 50px;
  height: 150px;

  object-fit: contain;
}







/* 番号 */
.number {
  font-weight: 700;
  margin-right: 8px;
}

body.intro-active .fixed-svg,
body.intro-active .fixed-label {
  display: none;
}

  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;


.product-check {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 24px;

  border: 1px solid #000;
  background: #fff;

  color: #000;
  text-decoration: none;

  font-family: inherit;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.25em;

  white-space: nowrap;
}


.product-check:hover {
  background: #000;
  color: #fff;
}

.label .product-check {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
}



.label.active .product-check {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;

  margin-top: 14px !important;
  padding: 8px 24px !important;

  border: 1px solid #000 !important;
  background: #fff !important;

  color: #000 !important;
  text-decoration: none !important;

  font-family: inherit !important;
  font-size: 9px !important;
  line-height: 1 !important;
  letter-spacing: 0.25em !important;

  white-space: nowrap !important;
}

.label.active .product-check:hover {
  background: #000 !important;
  color: #fff !important;
}


.left-label .label {
  width: 420px;
  white-space: normal;
  line-height: 1.8;
}



/* =========================
   MENU BUTTON
========================= */

.fixed-menu {
  position: fixed;
  left: 35px;
  bottom: 30px;
  z-index: 10000;

  display: flex;
  align-items: center;
  gap: 9px;

  cursor: pointer;
}

.menu-line {
  position: relative;

  display: block;

  width: 28px;
  height: 28px;

  border: 1px solid #000;
  border-radius: 50%;

  transition: background 0.35s ease;
}

.menu-line::before,
.menu-line::after {
  content: "";

  position: absolute;
  left: 7px;

  width: 12px;
  height: 1px;

  background: #000;

  transition: transform 0.35s ease;
}

.menu-line::before {
  top: 10px;
}

.menu-line::after {
  top: 15px;
}

.menu-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #000;
}


/* =========================
   SERIES MENU
========================= */

.series-menu {
  position: fixed;
  inset: 0;

  z-index: 20000;

  background: #fff;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.series-menu.active {
  opacity: 1;
  visibility: visible;
}

.series-menu-inner {
  width: 80%;
  max-width: 1100px;

  margin: 0 auto;
  padding-top: 12vh;
}

.series-label {
  margin: 0 0 70px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
}


/* =========================
   SERIES ITEM
========================= */

.series-item {
  display: flex;
  align-items: baseline;

  width: 100%;

  padding: 22px 0;

  border-bottom: 1px solid #ddd;

  color: #000;
  text-decoration: none;

  transition: padding-left 0.35s ease;
}

.series-number {
  width: 60px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
	
  color: #000;
}

.series-title {
  font-family: "Times New Roman", serif;
font-size: clamp(24px, 3.5vw, 52px);
line-height: 1;
  letter-spacing: 0.02em;
}

.series-item:hover {
  padding-left: 20px;
	
  color: #000;
}


/* =========================
   CLOSE
========================= */

.series-close {
  position: absolute;

  top: 30px;
  right: 40px;

  padding: 0;

  border: 0;
  background: none;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;

  cursor: pointer;
	
  color: #000;
}

.series-close::before {
  content: "×";
  margin-right: 8px;

  font-size: 15px;
  vertical-align: -1px;
}


.fixed-title {
  display: block;
}

.fixed-catch {
  display: block;
  padding-top: 14px;
  border-top: 1px solid #000;
  margin-top: 12px;
}


.staff-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 5px;

  color: #000;
  text-decoration: none;

  font-size: 10px;
  letter-spacing: 0.12em;

  transition: opacity 0.3s ease;
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 12px;
  height: 12px;

  border: 1px solid #000;
  border-radius: 3px;

  font-size: 8px;
  line-height: 1;
}

.staff-instagram:hover {
  opacity: 0.5;
}


.small-center {
  border: 2px solid #000;
}

.fixed-check {
  position: fixed;
  right: 125px;
  bottom: 30px;
  z-index: 10001;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 90px;
  height: 26px;

  border: 1px solid #000;
  color: #000 !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-decoration: none;
}

.fixed-check:hover {
  background: #000;
  color: #fff !important;
}