@charset "UTF-8";

/* ============================================ 
	loading
/* ============================================ */
#loading {
  width: 100%;
  height: 100%;
  transition: all 1s;
  }

/* ============================================ 
	icon
/* ============================================ */

.icon_shop{
  color: var(--primary-black);
}

.icon_menu{
  stroke: var(--primary-black);
}

.scrolled .icon_menu, 
.scrolled .icon_menu_close { 
  stroke: var(--primary-black);
  width: 20px;
  height: 20px;
}
/* ============================================ 
	top
/* ============================================ */
.header-container__pc {
	display: none;
}

.image-fv {
	padding: 0 12% ;
}

.scroll-pc {
	display: none;
}

.scroll,
.scroll-pc
 {
	
	writing-mode: vertical-lr;
	font-size: 1.3rem;
	letter-spacing: 1.56px;
	color: var(--primary-black);
	position: absolute;
	right: 10px;
	top: 300px;
  height: 100%;

	&::after {
		content: '';
		display: inline-block;
		width: 1px;
		height: 115px;
		margin-top: 13px;
		background-color: var(--primary-black);
		animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
	}
}

@keyframes liner {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}

	30% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}

	70% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}

	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

.headline-h2-first {
  padding-bottom: 0.3em;
}

.header__maincopy--sp
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: end;
	margin: 120px 0 0;
	padding: 0 16% 10px;
	gap: 10px;

	h2 {
    font-family: var(--font-jp);
    color: var(--primary-black);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 1; /* 行間をぴったりに */
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: end;
    opacity: 0;
    transform: translateY(10px);
    animation: catch_anime 1s forwards 1s;
    filter: blur(20px);

    /* ✅ 追加で切れ防止 */
    overflow: visible;
    contain: layout paint;
    will-change: transform, opacity, filter;
  }


	p {
		color: var(--primary-black);
		font-family: var(--font-en);
		font-size: 1.2rem;
		font-weight: 400;
		line-height: 1.5;
		letter-spacing: 1.68px;
		opacity: 0;
		transform: translateY(10px);
		animation: catch_anime 1s forwards 1.5s;
		filter: blur(20px);
	}
}

@keyframes catch_anime {
	0% {
		opacity: 0;
		transform: translateY(10px);
		filter: blur(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

.headline-lines {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  height: 100%;
  gap: 5px;
}

.headline-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 3.2em; /* 行の高さ。文字数に応じて調整 */
}

.headline-bracket {
  display: inline-block;
  letter-spacing: -12px; /* 鉤括弧の調整。必要なら */
}


.header__menu--hamburger {
	background-color: var(--primary-white);
}

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

	.header-container__pc {
		display: block;
	}


.scroll-pc
 {	display: block;
	writing-mode: vertical-lr;
	font-size: 1.3rem;
	letter-spacing: 1.56px;
	color: var(--primary-black);
	position: absolute;
	right: 2%;
	top: 800px;

	&::after {
		content: '';
		display: inline-block;
		width: 1px;
		height: 115px;
		margin-top: 13px;
		background-color: var(--primary-black);
		animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
	}
 }

.nav__list--pc {
	.nav__item {
		color: var(--primary-black);
	}
}


.header__maincopy--pc {
	background-image: url(../img/top_fv_pc.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		display: flex;
		flex-direction: column;
		margin: 0 7% 0;
		padding: 484px 13% 138px;
		gap: 15px;

	.headline-lines{
		flex-direction: column;
		}
  .headline-line{
    justify-content: normal;
    letter-spacing: 8px;
    height: 100%;
  }


	h2 {
		font-family: var(--font-jp);
		color: var(--primary-white);
		font-size: 5rem;
		font-weight: 600;
		letter-spacing: -0.6px;
		line-height: 1.3;
		writing-mode: vertical-rl; /* 右から左へ縦書き */
  		text-orientation: upright; /* 縦書きで文字を直立させる */
		text-align: end;
		opacity: 0;
		transform: translateY(10px);
		animation: catch_anime 1s forwards 1s;
		filter: blur(20px);
		margin-top: 14px;
		margin-right: 70px;
	}

	p {
		font-family: var(--font-en);
		color: var(--primary-white);
		font-size: 2rem;
		font-weight: 400;
		letter-spacing: 2.24px;
		line-height: 1.4;
		opacity: 0;
		transform: translateY(10px);
		animation: catch_anime 1s forwards 1.5s;
		filter: blur(20px);
		padding-left: 40px;
		
	}
}

@keyframes catch_anime {
	0% {
		opacity: 0;
		transform: translateY(10px);
		filter: blur(20px)
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0)
	}
}}

/* pc：769px */
/* ============================================ 
	products
/* ============================================ */
.products-wrapper {
  width:100%;
  height:100%;
  padding: 130px 17% 0;
}

.topic__title--sub {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1.2px;
}

.topic__title--txt {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1.2px;
}

.brandName-jp {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 1px;
}

.products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.products__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  
  img {
    width: 260px;
    height: auto; 
  }

  p {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.26px;
    text-align: center;
  }
  
  span {
    font-family: var(--font-en);
    display: inline-block;
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.13px;
    margin-top: 15px;
  }
}

/* pc：products */
@media screen and (min-width:769px) {
  .products-wrapper {
    padding: 160px 0 0;
  }

  .topic__title--sub {
    margin-top: 50px;
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .topic__title--txt {
    margin-top: 18px;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 2px;
  }

  .brandName-jp {
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1.5px;
  }

  .products__list {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    width: 100%;
  }
  
  .products__item img {
    width: 100%;
	  height: 300px;
	  object-fit: cover;
  }
  
  .products__item p {
    font-size: 1.6rem;
    font-weight: 300;
  }
  
  .products__item span {
    font-size: 1.8rem;
    font-weight: 300;
  }
}

/* pc：769px */
/* ============================================ 
	story
/* ============================================ */
.story-wrapper {
	width: 100%;
	height: 100%;
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.story-content {
	display: contents;
}

.story__message {
	margin: 0 auto 60px;
	text-align: center;
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	font-weight: 300;
	letter-spacing: 1.5px;
	line-height: 3;
}

.btn {
  font-family: var(--font-en);
  font-size: clamp(1.3rem, 1.5vw, 1.6rem); 
  letter-spacing: 0.6px;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:20px 40px;
  border: 1px solid #aeaeae;
  border-radius: 50px;
  width: 100%;
  max-width: 200px;
}


.btn:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease;
}

.banner-wrapper{
  position: relative;
  background-image: url(../img/banner_crowdfunding.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 70%;
  margin-top: 100px;

}


.crowdfunding-content {
  width: 100%;
  height: auto;
  padding: 7em 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }

  h2{
    margin-top: 20px;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 2.5vw, 2.2rem);
    color: var(--primary-white);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    z-index: 2;
  }
  
  p {
    margin-top: 50px;
    color: var(--primary-white);
    font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    line-height: 2.3;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  h2, p{
    letter-spacing: 1.5px;
  }

  img {
    z-index: 2;
    max-width: 200px;
    width: 100%;
  }
}

.btn__shop {
  margin-top: 50px;
  background-color: #fff;
  border: #000 1px solid;
  z-index: 3;
}



.brPc {
	display: none;
}

/* pc：769px */
@media screen and (min-width:769px) {
  .story-wrapper{
    margin-top: 100px;
  }



	.brSp {
		display: none;
	}

	.brPc {
		display: block;
	}

.crowdfunding-content {
  align-items: center;
  width: 60%;

  h2, p{
    color: var(--primary-black);
    text-align: center;
  }

  &::before {
    content: none;
  }
 }
}



/* ============================================ 
	about
/* ============================================ */
.about-wrapper {
  width:100%;
  height:100%;
  padding: 147px 7% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-container {
  max-width: 1300px;
  width: 100%;
}

.about__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;

}

.about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__image__thum01, 
.about__image__thum02, 
.about__image__thum03
 {
  width: 100%;
  height: 457px;
  object-fit: cover;
  object-position: 0 80%;
}

.about__item:nth-of-type(3) img{
  object-position: 30% 80%;
}

.about__content {
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: right;
}

  .brandName {
  font-size: 1.2rem;
  line-height: normal;
  letter-spacing: 3.12px;
}

  .about__content--mainTitle {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.64px;
  margin-top: 43px;
  text-align: left;
}

 .about__content--txt {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.36px;
  margin-top: 45px;
  line-height: 1.9;
}


.btn__more--about {
  margin-top: 40px;  
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.66px;
  text-align: center;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.about-image__thum02--pc {
  display: none;
}

/* pc：about */
@media screen and (min-width:1200px) {
  .about-wrapper {
    padding: 233px 5% 0;
  }
  
  .about__list {
    margin-top: 150px;
    gap: 180px;
  }
  
  .about__item {
    flex-direction: row;
    width: 100%;
  }

  
  .about__item:nth-child(2) {
    flex-direction: row-reverse;
  }
  
  .about-image__thum01 {
    object-fit: contain;
    width: 621px;
    height: 755px;
  }

  .about-image__thum02--pc {
    display: block;
    width: 624px;
    height: 470px;
    object-fit: cover;
    object-position: 0 80%;
  }

  .about-image__thum02{
    display: none;
  }

  .about-image__thum03 {
    object-fit: contain;
    width: 580px;
    height: 755px;
  }
  
  .about__content {
    padding: 0 100px;
    /* max-width: 500px; */
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-self: stretch;
  }
  
    .brandName {
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: 3.12px;
  }
  
    .about__content--mainTitle {
    font-size: 4.8rem;
    line-height: 0.93;
    letter-spacing: -0.48px;
  }
  
   .about__content--txt {
    font-size: 1.5rem;
    letter-spacing: 0.45px;
    line-height: 2.4;
  }
  
  .btn__more--about {
    margin-top: 50px;  
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.78px;
    text-align: right;
  }
}  
/* pc：769px */

/* ============================================ 
	look
/* ============================================ */
/* セクション全体 */
.look-wrapper__pc{
	display: none;
}

.look-wrapper__sp {
	padding: 130px 8% 0;
	width: 100%;
	height: auto;
  }
  
  /* スライダーコンテナ */
  .look-container__sp {
	position: relative; /* 矢印の基準になる */
  }


  /* 各スライドを包むラッパー */
  .slide-item {

	height: auto;
	overflow: hidden;
  }
  
  /* スライド内の画像 */
  .slide-item img {
	margin: 50px auto;
	width: 200px;
	height: 350px;
	object-fit: cover;
	display: block;
  }

  
  /* 矢印ボタン共通 */
  .slick-prev,
  .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
  }
  
  /* 左矢印：画像の外側に */
  .slick-prev {
	left: 0; /* 必要に応じて -60px など調整 */
  }
  
  /* 右矢印：画像の外側に */
  .slick-next {
	right: 0;
  }
  
  /* 矢印の中の画像サイズ */
  .slick-prev img,
  .slick-next img {
	width: 35px;
	height: auto;
  }

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

	.look-wrapper__pc {
		display: block;
	  padding: 320px 7% 0;
	}
	
	.look-container__pc{
	  margin: 100px auto;
	  display: grid;
	  grid-template: 
	  "01 02 02 02 02 03 03 04" 255px 
	  "01 05 05 05 06 06 06 04" 255px 
	  / 4fr 1fr 1fr 1fr 1fr 1fr 1fr 2fr;
	  gap: 10px;
	  max-width: 1300px;
	}
	
	.look-container__pc img {
	  width: 100%;
	  aspect-ratio: 1/1;
	  height: 100%;
	  object-fit: cover;
	  display: block; /* 画像をブロック要素に */
	}
	
	.look01__pc { grid-area: 1 / 1 / 3 / 1; } /* 1行目から3行目まで縦に大きく配置 */
	.look04__pc { grid-area: 1 / 2 / 1 / 6; } /* 右上 */
	.look05__pc { grid-area: 1 / 6 / 1 / 8; } /* 右中央 */
	.look02__pc { grid-area: 2 / 5 / 2 / 8; } /* 左下 */
	.look03__pc { grid-area: 2 / 2 / 2 / 5; } /* 右下 */
	.look06__pc { grid-area: 1 / 8 / 3 / 8; } /* 右下 */
  }
  /* pc：769px */
