@charset "UTF-8";

/* ⑥ Edge等の大画面(1400px以上)でのレイアウト崩れ・巨大化を防止 */
:root {
  --pcVw: calc(min(100vw, 1400px) / 1400);
}

/* 共通設定 */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.l-container {
  width: 100%;
}

.l-footer {
  padding: 0;
}

.pc-footer {
  margin: 0;
}

#feature {
  width: 100%;
  margin: 0 auto;
  color: #333;
  box-sizing: border-box;
  position: relative;
  overflow: clip;
}

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

#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #333;
  text-decoration: none;
}

#feature img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC 3カラム構造＋両側背景色 #f4f2ef */
#feature .contentsWrap {
  display: grid;
  grid-template-columns: 1fr calc(440 * var(--pcVw)) 1fr;
  width: 100%;
  position: relative;
  background-color: #f4f2ef;
}

#feature .mainWrap {
  order: 2;
  background-color: #fff;
}

#feature .mainWrap .inner {
  width: calc(440 * var(--pcVw));
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  overflow: clip;
  z-index: 2;
}

/* PC 左右固定エリア (最初から画面中央位置に配置して追従) */
#feature .leftWrap {
  order: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#feature .leftWrap .leftWrap__logo {
  width: calc(290 * var(--pcVw));
}

#feature .rightWrap {
  order: 3;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#feature .rightWrap .rightWrap__all-btn {
  width: calc(264 * var(--pcVw));
}

/* アニメーション用クラス */
.fade {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade.is-show {
  opacity: 1;
}

.clipRight {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease-out;
}

.clipRight.is-show {
  clip-path: inset(0);
}

.js_anime.is_fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.js_anime.is_fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* PC用 各画像専用クラス設定 */
#feature .img-hero {
  width: 100%;
  margin: 0 auto;
}

#feature .img-lead-title {
  width: calc(230 * var(--pcVw));
  margin: calc(78 * var(--pcVw)) auto 0;
}

#feature .img-lead {
  width: calc(196 * var(--pcVw));
  margin: calc(34 * var(--pcVw)) auto 0;
}

/* ③ 日本語テキストを「ヒラギノ角ゴシック」優先に変更 */
#feature .lead_text {
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Sans", "kozuka-gothic-pr6n", "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", sans-serif;
  font-weight: 400;
  font-size: calc(14 * var(--pcVw));
  line-height: 2.2;
  letter-spacing: 0;
  margin: calc(27 * var(--pcVw)) auto 0;
}

#feature .lead_text p:nth-of-type(2) {
  margin-top: calc(20 * var(--pcVw));
}

#feature .img-lead-date {
  width: calc(218 * var(--pcVw));
  margin: calc(38 * var(--pcVw)) auto 0;
}

#feature .img-01 {
  width: 100%;
  margin: calc(72 * var(--pcVw)) auto 0;
}

#feature .img-credit-01 {
  width: calc(147 * var(--pcVw));
  position: absolute;
  bottom: calc(119 * var(--pcVw));
  right: calc(22 * var(--pcVw));
  z-index: 10;
}

#feature .img-02 {
  width: 84%;
  margin: calc(51 * var(--pcVw)) auto 0 0;
}

#feature .img-03 {
  width: 74.5%;
  margin: calc(24 * var(--pcVw)) calc(14 * var(--pcVw)) 0 auto;
}

#feature .sec04-05 {
  width: 88%;
  margin: calc(115 * var(--pcVw)) auto 0;
}

#feature .img-04,
#feature .img-05 {
  width: 100%;
  margin: 0 auto;
}

#feature .img-credit-02 {
  width: calc(163 * var(--pcVw));
  position: absolute;
  bottom: calc(104 * var(--pcVw));
  left: calc(24 * var(--pcVw));
  z-index: 10;
}

#feature .img-06 {
  width: 88%;
  margin: calc(14 * var(--pcVw)) auto;
}

#feature .img-07 {
  width: 100%;
  margin: calc(116 * var(--pcVw)) auto 0;
}

#feature .img-08 {
  width: 84%;
  margin: calc(51 * var(--pcVw)) 0 0 auto;
}

#feature .img-credit-03 {
  width: calc(148 * var(--pcVw));
  position: absolute;
  bottom: calc(30 * var(--pcVw));
  right: calc(19 * var(--pcVw));
  z-index: 10;
}

#feature .img-09 {
  width: 78%;
  margin: calc(27 * var(--pcVw)) auto 0 calc(13 * var(--pcVw));
}

#feature .img-gizmo-charm {
  width: calc(378 * var(--pcVw));
  margin: calc(112 * var(--pcVw)) auto 0;
}

#feature .img-10 {
  width: 100%;
  margin: calc(123 * var(--pcVw)) auto 0;
}

#feature .img-credit-04 {
  width: calc(147 * var(--pcVw));
  position: absolute;
  top: calc(147 * var(--pcVw));
  left: calc(13 * var(--pcVw));
  z-index: 10;
}

/* ITEM 10 & 11 連動せり上がり（CSS sticky） */
#feature .sec10_11_stack {
  position: relative;
  width: 100%;
}

#feature .stack_sticky_item,
#feature .stack_overlay_item {
  position: sticky;
  top: calc(-450 * var(--pcVw));
  width: 100%;
  display: flow-root;
}

#feature .stack_sticky_item {
  z-index: 1;
}

#feature .stack_overlay_item {
  z-index: 2;
}

#feature .sec11_part {
  margin-top: calc(47 * var(--pcVw));
  background-color: #fff;
}

#feature .img-11,
#feature .img-11-2 {
  width: 87%;
  display: block;
  margin: 0 auto;
}

#feature .sec12-13 {
  width: 94%;
  margin: calc(114 * var(--pcVw)) auto 0 calc(25 * var(--pcVw));
}

#feature .img-12,
#feature .img-13 {
  width: 100%;
  margin: 0 auto;
}

#feature .img-credit-05 {
  width: calc(165 * var(--pcVw));
  position: absolute;
  bottom: calc(25 * var(--pcVw));
  right: calc(22 * var(--pcVw));
  z-index: 10;
}

/* sec14-15 チラ見せカルーセルレイアウト */
#feature .sec14-15 {
  width: 100%;
  margin: calc(50 * var(--pcVw)) auto 0;
}

#feature .swiper_peek_14_15 {
  width: 100%;
  overflow: hidden;
}

#feature .swiper_peek_14_15 .swiper-slide {
  width: 68% !important;
}

#feature .img-14,
#feature .img-15 {
  width: 100%;
  height: auto;
  margin: 0;
}

#feature .sec16-17 {
  width: 88%;
  margin: calc(113 * var(--pcVw)) auto 0;
}

#feature .img-16,
#feature .img-17 {
  width: 100%;
  margin: 0 auto;
}

#feature .img-credit-06 {
  width: calc(135 * var(--pcVw));
  position: absolute;
  bottom: calc(219 * var(--pcVw));
  left: calc(18 * var(--pcVw));
  z-index: 10;
}

#feature .img-credit-07 {
  width: calc(160 * var(--pcVw));
  position: absolute;
  bottom: calc(42 * var(--pcVw));
  right: calc(-10 * var(--pcVw));
  z-index: 10;
}

#feature .img-18 {
  width: 88%;
  margin: calc(14 * var(--pcVw)) auto;
}

#feature .img-gizmo-bag {
  width: calc(378 * var(--pcVw));
  margin: calc(100 * var(--pcVw)) auto 0;
}

#feature .parent_overlay {
  position: relative;
  width: 100%;
}

/* ==================================================
   クレジット共通設定 & 個別クラス (credit01 ～ credit12)
================================================== */
#feature .sec__credit,
#feature .lineup_credit {
  box-sizing: border-box;
}

/* フォント設定：italicに変更し、親要素に指定 */
#feature .credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 calc(12 * var(--pcVw));
  font-family: "elza-narrow", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: calc(13.5 * var(--pcVw));
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* 子要素（リンクやテキスト要素）へのフォント継承・上書き防止対策 */
#feature .credit a,
#feature .credit .link,
#feature .credit .txt,
#feature .credit .price {
  font-family: "elza-narrow", sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}

#feature .lineup_credit {
  text-align: center;
}

/* lineup_credit 内のフォント設定 */
#feature .lineup_credit .credit {
  font-size: calc(18 * var(--pcVw));
  line-height: 1.3;
}

#feature .lineup_credit .credit .price {
  font-size: calc(15 * var(--pcVw));
  margin: calc(5.5 * var(--pcVw)) auto 0 calc(1.5 * var(--pcVw));
}

/* credit01: 1行に3itemで2行、右寄せ */
#feature .credit01 {
  width: calc(360 * var(--pcVw));
  margin: calc(21 * var(--pcVw)) 0 0 calc(64 * var(--pcVw));
}
#feature .credit01 .credit {
  justify-content: flex-end;
  text-align: right;
}

/* credit02: 1行に2itemで2行、中央寄せ */
#feature .credit02 {
  width: calc(200 * var(--pcVw));
  margin: calc(21 * var(--pcVw)) auto 0 calc(119 * var(--pcVw));
}
#feature .credit02 .credit {
  justify-content: center;
  text-align: center;
}

/* credit03: 1行に3itemで2行、左寄せ */
#feature .credit03 {
  width: calc(280 * var(--pcVw));
  margin: calc(18 * var(--pcVw)) auto 0 calc(15 * var(--pcVw));
}
#feature .credit03 .credit {
  justify-content: flex-start;
  text-align: left;
}

/* credit04: 1行に3item、中央寄せ */
#feature .credit04 {
  width: calc(300 * var(--pcVw));
  margin: calc(18 * var(--pcVw)) auto 0 calc(68 * var(--pcVw));
}
#feature .credit04 .credit {
  justify-content: center;
  text-align: center;
}

/* credit05: 1行に2item、左寄せ */
#feature .credit05 {
  width: calc(480 * var(--pcVw));
  margin: calc(21 * var(--pcVw)) auto 0 calc(17 * var(--pcVw));
}
#feature .credit05 .credit {
  justify-content: flex-start;
  text-align: left;
}

/* credit06: 1行に1item、中央寄せ */
#feature .credit06 {
  width: calc(290 * var(--pcVw));
  margin: calc(19 * var(--pcVw)) auto 0;
}
#feature .credit06 .credit {
  justify-content: center;
  text-align: center;
}

/* credit07～12: 1行に1item、priceクラスで改行（個別位置調整用） */
#feature .credit07 {
  width: calc(490 * var(--pcVw));
  margin: calc(21 * var(--pcVw)) auto 0 calc(-27 * var(--pcVw));
}
#feature .credit07 .credit {
  justify-content: center;
  text-align: center;
}

#feature .credit08 {
  width: calc(207 * var(--pcVw));
  margin: calc(21 * var(--pcVw)) auto 0 calc(112 * var(--pcVw));
}
#feature .credit08 .credit {
  justify-content: center;
  text-align: center;
}

#feature .credit09 {
  margin: calc(-19 * var(--pcVw)) auto 0 calc(-46 * var(--pcVw));
}
#feature .credit09 .credit {
  margin: calc(38 * var(--pcVw)) auto 0 calc(109 * var(--pcVw));
}

#feature .credit10 {
  margin: calc(-19 * var(--pcVw)) auto 0 calc(-31 * var(--pcVw));
}
#feature .credit10 .credit {
  margin: calc(38 * var(--pcVw)) auto 0 calc(65 * var(--pcVw));
}

#feature .credit11 {
  margin: calc(-18 * var(--pcVw)) auto 0 calc(-42 * var(--pcVw));
}
#feature .credit11 .credit {
  margin: calc(38 * var(--pcVw)) auto 0 calc(109 * var(--pcVw));
}

#feature .credit12 {
  margin: calc(-16 * var(--pcVw)) auto 0 calc(-26 * var(--pcVw));
}
#feature .credit12 .credit {
  margin: calc(38 * var(--pcVw)) auto 0 calc(50 * var(--pcVw));
}

#feature .credit07 .price,
#feature .credit07 .credit_price,
#feature .credit08 .price,
#feature .credit08 .credit_price,
#feature .credit09 .price,
#feature .credit09 .credit_price,
#feature .credit10 .price,
#feature .credit10 .credit_price,
#feature .credit11 .price,
#feature .credit11 .credit_price,
#feature .credit12 .price,
#feature .credit12 .credit_price {
  display: block;
  width: 100%;
  margin-top: calc(3 * var(--pcVw));
}

/* Swiper 右上 縦並びインジケーター設定 */
#feature .swiper-v-indicator {
  position: relative;
}

#feature .swiper-v-indicator .swiper-pagination-v {
  position: absolute;
  top: calc(10 * var(--pcVw));
  right: calc(10 * var(--pcVw));
  left: auto;
  bottom: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--pcVw));
  z-index: 20;
}

#feature .swiper-v-indicator .swiper-pagination-bullet {
  width: calc(8 * var(--pcVw));
  height: calc(8 * var(--pcVw));
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #b90224;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
}

#feature .swiper-v-indicator .swiper-pagination-bullet-active {
  background-color: #b90224;
  border: none;
}

/* ① sec12-13 インジケーター色変更 */
#feature .sec12-13 .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #fff;
}

#feature .sec12-13 .swiper-pagination-bullet-active {
  background-color: #fff;
  border: none;
}

/* ITEM LINE-UP */
#feature .img-item-lineup-title {
  width: calc(247 * var(--pcVw));
  margin: calc(129 * var(--pcVw)) auto calc(43 * var(--pcVw)) calc(96 * var(--pcVw));
}

#feature .img-item-lineup {
  width: calc(155 * var(--pcVw));
  margin: calc(-14 * var(--pcVw)) auto calc(43 * var(--pcVw)) calc(146 * var(--pcVw));
}

#feature .lineup_block {
  position: relative;
}

#feature .front_back_wrapper {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(368 * var(--pcVw));
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

#feature .img-front,
#feature .img-back {
  width: calc(32 * var(--pcVw));
  height: auto;
}

#feature .slide_2col {
  display: flex;
  gap: calc(18 * var(--pcVw));
  justify-content: center;
}

#feature .slide_2col a {
  width: 38%;
}

#feature .lineup_grid_2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(20 * var(--pcVw));
  margin-bottom: calc(0 * var(--pcVw));
}

/* shirt_01 / shirt_02 左右個別のインジケーターコンテナ */
#feature .lineup_pagination_wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

#feature .lineup_pagination_wrapper .swiper-pagination {
  width: 42%;
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: calc(10 * var(--pcVw));
}

/* カラー弾丸（Swiper Pagination Bullets 7px 正方形） */
#feature .lineup_block .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: calc(7 * var(--pcVw));
  display: flex;
  gap: calc(7 * var(--pcVw));
}

#feature .lineup_block .swiper-pagination-bullet {
  width: calc(10 * var(--pcVw));
  height: calc(10 * var(--pcVw));
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.3s;
  transform: translateZ(0);
}

#feature .lineup_block .swiper-pagination-bullet-active {
  opacity: 1;
}

/* shirt_01 colors: white, red, black */
#feature .swiper-bullets-shirt01 .swiper-pagination-bullet:nth-child(1) {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11'%3E%3Crect x='0.5' y='0.5' width='10' height='10' fill='%23ffffff' stroke='%23e9dedc' stroke-width='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: none;
  border: none;
  width: calc(11 * var(--pcVw));  /* 視覚的サイズを赤・黒(10px)と揃えるため11pxに設定 */
  height: calc(11 * var(--pcVw));
}

#feature .swiper-bullets-shirt01 .swiper-pagination-bullet:nth-child(2) {
  background-color: #ce3d38;
  border: none;
}

#feature .swiper-bullets-shirt01 .swiper-pagination-bullet:nth-child(3) {
  background-color: #333333;
  border: none;
}

/* shirt_02 colors: red, black, white */
#feature .swiper-bullets-shirt02 .swiper-pagination-bullet:nth-child(1) {
  background-color: #ce3d38;
  border: none;
}

#feature .swiper-bullets-shirt02 .swiper-pagination-bullet:nth-child(2) {
  background-color: #333333;
  border: none;
}

#feature .swiper-bullets-shirt02 .swiper-pagination-bullet:nth-child(3) {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11'%3E%3Crect x='0.5' y='0.5' width='10' height='10' fill='%23ffffff' stroke='%23e9dedc' stroke-width='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: none;
  border: none;
  width: calc(11 * var(--pcVw));  /* 視覚的サイズを赤・黒(10px)と揃えるため11pxに設定 */
  height: calc(11 * var(--pcVw));
}

/* knit colors: black, white, red */
#feature .swiper-bullets-knit .swiper-pagination-bullet:nth-child(1) {
  background-color: #333333;
  border: none;
}

#feature .swiper-bullets-knit .swiper-pagination-bullet:nth-child(2) {
  background-color: #e5d8c7;
  border: none;
}

#feature .swiper-bullets-knit .swiper-pagination-bullet:nth-child(3) {
  background-color: #b90224;
  border: none;
}

/* sweat colors: white, gray, black */
#feature .swiper-bullets-sweat .swiper-pagination-bullet:nth-child(1) {
  background-color: #e9dedc;
  border: none;
}

#feature .swiper-bullets-sweat .swiper-pagination-bullet:nth-child(2) {
  background-color: #c5c9cf;
  border: none;
}

#feature .swiper-bullets-sweat .swiper-pagination-bullet:nth-child(3) {
  background-color: #333333;
  border: none;
}

/* bag colors: red, black, brown */
#feature .swiper-bullets-bag .swiper-pagination-bullet:nth-child(1) {
  background-color: #b90224;
  border: none;
}

#feature .swiper-bullets-bag .swiper-pagination-bullet:nth-child(2) {
  background-color: #333333;
  border: none;
}

#feature .swiper-bullets-bag .swiper-pagination-bullet:nth-child(3) {
  background-color: #935943;
  border: none;
}

/* charm colors: brown, blue, pink */
#feature .swiper-bullets-charm .swiper-pagination-bullet:nth-child(1) {
  background-color: #935943;
  border: none;
}

#feature .swiper-bullets-charm .swiper-pagination-bullet:nth-child(2) {
  background-color: #c6dbe0;
  border: none;
}

#feature .swiper-bullets-charm .swiper-pagination-bullet:nth-child(3) {
  background-color: #e2bac3;
  border: none;
}

#feature .sec_bottom {
  margin: calc(58 * var(--pcVw)) auto 0;
  width: calc(325 * var(--pcVw));
}

#feature .img-check-all {
  width: 100%;
  margin: 0 auto;
}

#feature .img-bottom {
  width: calc(374 * var(--pcVw));
  margin: calc(102 * var(--pcVw)) auto 0;
}

#feature .img-copyright {
  width: calc(328 * var(--pcVw));
  margin: calc(60 * var(--pcVw)) auto;
}

/* Swiper親要素の膨張ガード */
#feature .swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

#feature .swiper-wrapper {
  width: 100%;
  box-sizing: border-box;
}

#feature .swiper-slide {
  max-width: 100%;
  box-sizing: border-box;
}

/* LINE UP エリアのレイアウト防壁 */
#feature .lineup_container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#feature .lineup_block {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

#feature .lineup_block.lineup_shirt_01 {
  margin-bottom: calc(44 * var(--pcVw));
}

#feature .lineup_block.lineup_shirt_02 {
  margin-bottom: calc(46 * var(--pcVw));
}

#feature .lineup_grid_2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(20 * var(--pcVw));
  margin-bottom: calc(46 * var(--pcVw));
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#feature .lineup_grid_2col .lineup_block {
  margin-bottom: 0;
}

/* knit画像サイズ */
#feature .lineup_knit .swiper-slide img {
  width: 77%;
  margin: 0 0 0 calc(42 * var(--pcVw));
}

/* knitのインジケーター位置調整 */
#feature .lineup_knit .swiper-bullets-knit {
  margin: calc(10 * var(--pcVw)) 0 0 calc(103 * var(--pcVw));
}

/* sweat画像サイズ */
#feature .lineup_sweat .swiper-slide img {
  width: 77%;
  margin: 0 calc(41 * var(--pcVw)) 0 auto;
}

/* sweatのインジケーター位置調整 */
#feature .lineup_sweat .swiper-bullets-sweat {
  width: fit-content;
  margin: calc(10 * var(--pcVw)) calc(105 * var(--pcVw)) 0 auto;
}

/* bag画像サイズ */
#feature .lineup_bag .swiper-slide img {
  width: 78%;
  margin: 0 0 0 calc(40 * var(--pcVw));
}

/* bagのインジケーター位置調整 */
#feature .lineup_bag .swiper-bullets-bag {
  margin: calc(7 * var(--pcVw)) 0 0 calc(103 * var(--pcVw));
}

/* charm画像サイズ */
#feature .lineup_charm .swiper-slide img {
  width: 78%;
  margin: 0 calc(19 * var(--pcVw)) 0 0;
}

/* charmのインジケーター位置調整 */
#feature .lineup_charm .swiper-bullets-charm {
  width: fit-content;
  margin: calc(7 * var(--pcVw)) calc(104 * var(--pcVw)) 0 auto;
}

/* 1401px以上 固定表示 */
@media screen and (min-width: 1401px) {
  #feature .contentsWrap {
    grid-template-columns: 1fr 440px 1fr;
  }

  #feature .mainWrap .inner {
    width: 440px;
  }

  #feature .leftWrap .leftWrap__logo {
    width: 290px;
  }

  #feature .rightWrap .rightWrap__all-btn {
    width: 264px;
  }
}

.efs-system-notification { display: none !important; }