@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: Helvetica, sans-serif;

}

/* ==========================
   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(35vw, 550px);
  aspect-ratio:auto;
  height:auto;
  display:block;
}
/* ==========================
   CONTENT
========================== */

.content{
  position:relative;
  z-index:2;

  margin-top:-10vh;
  border-radius:0px 0px 0 0;

  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:40px;

  margin-bottom:10vw;
}

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

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


/* ==========================
   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(35vw, 550px);
  margin:8vw auto 0;
}

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

.look-large .credit{
  margin-top: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 120px;
  text-align:center;
}

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

.intro-text p{
  font-size:11px;
  line-height:2.4;
  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:0px;
  }

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

  .hero{
    min-height:90vh;
    padding-bottom:5vh;
  }

  .hero img{
    width:70vw;
  }

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

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


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

}


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

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

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

	
  .intro-banner{
    height:70vw;
  }

  .fade-grid{
    gap:0px;
  }

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

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

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

  .intro-text p{
    font-size:9px;
    line-height:2.0;
  }

  .hero{
    min-height:90vh;
    padding-bottom:5vh;
  }

  .hero img{
    width:90vw;
  }

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

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

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

  .credit{
    margin-top:10px;
  }

	
	
  .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:8px;
    line-height:2.2;
  }

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


}

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

.beige1 {
  background: #A5A051;
}

.beige2 {
  background: #A5A051;
}

.black1 {
  background: #1B4960;
}

.blue1 {
  background: #000;
}


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


.fixed-label {
  position: fixed;
  top: 50px;
  left: 10px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;

  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3em !important;
  white-space: nowrap;
}

.number {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  margin-right: 8px;
}



.label.active {
  opacity: 1;
}

.label {
  transform: rotate(90deg) translateY(-100%);
  transform-origin: left top;
}

.label[data-label="2"] {
  color: #fff !important;
}

.look-section.black1,
.look-section.black1 * {
  color: #fff !important;
}

.look-section.beige1,
.look-section.beige1 * {
  color: #fff !important;
}

.look-section.blue1,
.look-section.blue1 * {
  color: #fff !important;
}



.label[data-label="3"] {
  color: #fff !important;
}

.label[data-label="0"] {
  color: #fff !important;
}

.label[data-label="1"] {
  color: #fff !important;
}



.label[data-label="4"] {
  color: #fff !important;
}


.label[data-label="5"] {
  color: #fff !important;
}

.label[data-label="6"] {
  color: #000 !important;
}


.label[data-label="7"] {
  color: #000 !important;
}

.label[data-label="0"],
.label[data-label="1"],
.label[data-label="2"],
.label[data-label="3"],
.label[data-label="4"],
.label[data-label="5"],
.label[data-label="6"],
.label[data-label="7"] {
  font-size: 10px !important;
}



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


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




  .split-layout {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
  }

  .split-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    color: #fff;
  }

  .split-right {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .split-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  /* 2026 AUTUMN */
  .small {
    position: absolute;
    top: 20%;
    left: 5%;
    margin: 0;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.15em;
    font-weight: 700;
  }


  /* ADAM ET ROPÉ JEANS */
  .large {
    position: absolute;
    top: 45%;
    left: 5%;
    margin: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 700;
  white-space: nowrap;
  }


.medium {
  position: absolute;
  bottom: 2%;
  right: 5%;
  margin: 0;
  text-align: right;
  font-size: 30px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.look-title {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .look-list {
    display: none;
  }
}