@charset "UTF-8";
/* CSS Document */


/* =========================================================
   全体スタイル
========================================================= */

body {
  background-color: #ffffff;
  margin: 0;
}


/* =========================================================
   メインビジュアル
========================================================= */

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.image-wrapper h1 {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;
  max-width: 90%;

  margin: 0;

  color: 111;

  font-size: clamp(24px, 4vw, 50px);

  text-align: center;
  white-space: normal;

  box-sizing: border-box;
}


/* =========================================================
   メインビジュアル：スマホ
========================================================= */

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

  .image-wrapper h1 {
    top: 64%;
    left: 75%;

    transform: translate(-50%, -50%);

    width: 55%;
    max-width: none;

    padding: 10px 0;

    font-size: 5vw;
	background-color: white;

  }

}


/* =========================================================
   INTRO 見出し
========================================================= */

.responsive-h2 {
  font-size: 15px;
  line-height: 2.5;
  text-align: center;

  margin: 5rem 2rem 0rem 2rem;
}

.mobile-break {
  display: none;
}


/* ---------------------------------------------------------
   INTRO 見出し：スマホ
--------------------------------------------------------- */

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

  .mobile-break {
    display: block;
    height: 0;
  }

  .responsive-h2 {
    font-size: 12px;
    margin: 10rem 1rem 5rem 1rem;
  }

}


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

.intro {
  position: relative;

  padding: 50px 20px 120px;

  overflow: hidden;
}


/* ---------------------------------------------------------
   INTRO コピー
--------------------------------------------------------- */

.intro-copy {
  position: relative;

  z-index: 2;

  opacity: 0;

  margin: 0;

  animation: copyFade 1s ease forwards;
}


/* コピー フェードアニメーション */

@keyframes copyFade {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* ---------------------------------------------------------
   INTRO ボックス
--------------------------------------------------------- */

.intro-box {
  position: relative;

  padding: 20px 0;

  width: 80%;

  margin: 0 auto;
}


/* ---------------------------------------------------------
   INTRO 枠線
--------------------------------------------------------- */

.intro-box::before {
  content: "";

  position: absolute;

  inset: 0;

  border: 1px solid #111;

  clip-path: polygon(
    0 0,
    0 0,
    0 0,
    0 0
  );

  animation: borderDraw 1.5s ease forwards;

  animation-delay: 1s;
}


/* 枠線アニメーション */

@keyframes borderDraw {

  0% {
    clip-path: polygon(
      0 0,
      0 0,
      0 0,
      0 0
    );
  }

  25% {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 0,
      0 0
    );
  }

  50% {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  75% {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  100% {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }

}


/* =========================================================
   ステッカー
========================================================= */

.sticker {
  position: absolute;

  opacity: 0;

  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, .12));
}


/* ---------------------------------------------------------
   フーディー
--------------------------------------------------------- */

.hoodie {
  width: 80px;

  top: 20px;
  right: 5%;

  animation: stickerPopHoodie .6s ease forwards;
  animation-delay: 1.2s;
}


@keyframes stickerPopHoodie {

  0% {
    opacity: 0;
    transform: scale(.5) rotate(-20deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.1) rotate(18deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(12deg);
  }

}


/* ---------------------------------------------------------
   トップス
--------------------------------------------------------- */

.tops {
  width: 80px;

  bottom: 80px;
  left: 2%;

  animation: stickerPopTops .6s ease forwards;
  animation-delay: 1.5s;
}


@keyframes stickerPopTops {

  0% {
    opacity: 0;
    transform: scale(.5) rotate(-25deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.1) rotate(-15deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(-10deg);
  }

}


/* ---------------------------------------------------------
   パンツ
--------------------------------------------------------- */

.pants {
  width: 80px;

  bottom: 15px;
  left: 20%;

  animation: stickerPopPants .6s ease forwards;
  animation-delay: 1.8s;
}


@keyframes stickerPopPants {

  0% {
    opacity: 0;
    transform: scale(.5) rotate(-15deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(5deg);
  }

}


/* ---------------------------------------------------------
   ステッカー：PC
--------------------------------------------------------- */

@media screen and (min-width: 768px) {

  .intro {
    max-width: 1200px;
    margin: 0 auto;

    padding: 100px 80px 140px;
  }


  /* フーディー：右上 */

  .hoodie {
    width: 100px;

    top: 90px;
    right: 18%;
  }


  /* トップス：左下 */

  .tops {
    width: 100px;

    bottom: 80px;
    left: 20%;
  }


  /* パンツ：左下 */

  .pants {
    width: 100px;

    bottom: 5px;
    left: 28%;
  }

}


/* =========================================================
   商品セクション
========================================================= */

.item-section {
  padding: 50px 15px 10px;
}

.item-intro {
  width: min(900px, 90%);

  margin: 0 auto 20px;

  text-align: center;
}

.item-title {
  margin: 12px 0 25px;

  font-size: 42px;
  font-weight: 300;

  letter-spacing: .15em;
}

.item-description {
  max-width: 500px;

  margin: 0 auto;

  line-height: 2;

  color: #555;
}



/* =========================================================
   LOOK ナビゲーション
========================================================= */


/* ---------------------------------------------------------
   PC LOOK メニュー
--------------------------------------------------------- */

.look-side-menu {
  position: fixed;

  left: 30px;
  top: 50%;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;

  gap: 12px;

  z-index: 1000;

  opacity: 0;
  visibility: hidden;

  transition: opacity .3s ease;
}

.look-side-menu.is-visible {
  opacity: 1;
  visibility: visible;
}


/* 丸ボタン */

.look-side-menu a {
  width: 80px;
  height: 80px;

  display: flex;

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

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

  background: #fff;
  color: #111;

  text-decoration: none;
  text-align: center;

  font-size: 9px;
  line-height: 1.3;

  letter-spacing: .08em;

  transition: .3s ease;
}


.look-side-menu a:hover {
  background: #111;
  color: #fff;

  transform: scale(1.08);
}


/* ---------------------------------------------------------
   スマホ LOOK メニュー
--------------------------------------------------------- */

.mobile-look-menu {
  display: none;
}


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

  .look-side-menu {
    display: none;
  }

  .mobile-look-menu {
    display: flex;

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: #757575;

	
  }

  .mobile-look-menu a {
    flex: 1;

    padding: 14px 4px;

    color: white;

    text-decoration: none;
    text-align: center;

    font-size: 9px;

    letter-spacing: .05em;

    white-space: nowrap;
  }

}


/* =========================================================
   LOOK PAGE
========================================================= */

.look-page {
  min-height: auto;

  margin: 0 auto;

  padding: 0;
}


/* ---------------------------------------------------------
   LOOK INNER
--------------------------------------------------------- */

.look-inner {
  width: 100%;
  max-width: 600px;

  padding: 50px 100px 0;

  margin: 0 auto;

  box-sizing: border-box;

  color: #111;
}


/* ---------------------------------------------------------
   LOOK INNER：PC
--------------------------------------------------------- */

@media screen and (min-width: 768px) {

  .look-inner {
    width: 100%;
    max-width: 820px;

    display: flex;

    align-items: flex-end;

    gap: 30px;

    padding: 70px 50px 30px;

    margin: 0 auto;

    box-sizing: border-box;
  }


  /* 写真 */

  .look-inner .look-slider {
    width: 400px;
    max-width: 400px;

    flex: 0 0 400px;
  }


  /* 商品情報 */

  .look-inner .product-info {
    flex: 1;

    min-width: 0;
  }

}


/* =========================================================
   LOOK CAROUSEL
========================================================= */

.look-slider {
  position: relative;

  width: 100%;
}

.look-slides {
  position: relative;

  width: 100%;

  margin: 0 auto;

  aspect-ratio: 3 / 4;

  overflow: hidden;

  border-radius: 16px;
}

.look-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  transition: opacity .8s ease;
}

.look-slide.active {
  opacity: 1;
}

.look-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 16px;
}


/* =========================================================
   MODEL
========================================================= */

.look-model {
  margin: 12px 0 0;

  font-size: 9px;

  letter-spacing: .08em;

  color: #666;
}


/* =========================================================
   LOOK DOTS
========================================================= */

.look-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 18px;
}

.look-dot {
  width: 7px;
  height: 7px;

  background: #e85298;

  opacity: .3;

  border-radius: 50%;

  cursor: pointer;
}

.look-dot.active {
  opacity: 1;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-item {
  padding: 20px 0 30px;
}

.product-item + .product-item {
  border-top: 1px solid rgba(0, 0, 0, .15);

  padding-top: 40px;
}

.product-name {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
}

.product-price {
  margin-top: 2px;
  font-size: 11px;
}


/* ---------------------------------------------------------
   SHOP BUTTON
--------------------------------------------------------- */

.item-link {
  display: inline-block;

  padding: .8rem 1.5rem;

  white-space: nowrap;

  max-width: 100%;

  background: #FF4291;
  color: #fff;

  border-radius: 24rem;

  text-align: center;
  text-decoration: none;

  font-size: 1rem;
  font-weight: bold;

  transition: all .3s ease;
}

.item-link:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 768px) {

  .product-info .item-link {
    width: 100%;
    box-sizing: border-box;
  }

}

/* =========================================================
   LOOK：スマホ
========================================================= */

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

  .look-inner {
    padding: 30px 20px 70px;
  }

  .look-page {
    scroll-margin-top: 60px;
  }

  .item-section {
    scroll-margin-top: 60px;
  }

}


/* =========================================================
   PC 商品情報：縦並び
========================================================= */

@media screen and (min-width: 768px) {

  .product-info .product-item {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;
  }

  .product-info .product-name {
    margin: 0 0 8px;
  }

  .product-info .product-price {
    margin: 0 0 20px;
  }

}


/* =========================================================
   MOBILE 商品情報
========================================================= */

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

  .product-item {
    display: flex;

    flex-direction: row;

    align-items: center;
    justify-content: space-between;
  }

}


/* =========================================================
   スマホ LOOK メニュー：非表示
========================================================= */

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

  .mobile-look-menu {
    opacity: 1;
    visibility: visible;

    transition:
      opacity .5s ease,
      visibility .5s ease;
  }

  .mobile-look-menu.is-hidden {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
  }

}


/* =========================================================
   PLAYERS
========================================================= */

.player-section {
  width: 100%;
  max-width: 820px;

  margin: 80px auto 0;

  padding: 0 60px 100px;

  box-sizing: border-box;
}


/* ---------------------------------------------------------
   PLAYER LIST
--------------------------------------------------------- */

.player-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 10px 0;
}

/* ---------------------------------------------------------
   PLAYER CARD
--------------------------------------------------------- */

.player-card {
  width: 100%;
  max-width: 240px;
  flex: 1 1 0;
}

/* ---------------------------------------------------------
   PLAYER IMAGE
--------------------------------------------------------- */

.player-image {
  width: 100%;
  max-width: 300px;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  display: block;
}


/* ---------------------------------------------------------
   PLAYER CONTENT
--------------------------------------------------------- */

.player-content {
  padding-top: 15px;
}


/* 名前＋所属 */

.player-name-row {
  display: flex;

  align-items: baseline;

  gap: 10px;
}

.player-name {
  margin: 0 0 8px;

  font-size: 18px;
  font-weight: 700;
}

.team {
  font-size: 12px;
}


/* 生年月日・出身 */

.birth {
  font-size: 11px;
  margin-top: -5px;
}


/* 戦績 */

.player-achievement {
  margin: 5px 0 18px;

  font-size: 11px;
  line-height: 1.5;

  color: #555;
}


/* ---------------------------------------------------------
   PLAYER LINK
--------------------------------------------------------- */

.player-link {
  display: block;

  width: 100%;

  box-sizing: border-box;

  text-align: center;

  padding: 5px 20px;

  border-radius: 30px;

  background: white;
  border: 1px solid #111;
  color: #111;

  text-decoration: none;

  font-size: 12px;

  transition: .3s ease;
}

.player-link:hover {
  background: #111;
  color: #fff;

}


/* =========================================================
   PLAYERS：スマホ
========================================================= */

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


  .player-section {
    width: 100%;
    max-width: none;
    margin: 60px auto 60px;
    padding: 0 5px 10px;
    box-sizing: border-box;
  }

  .player-list {
    width: 100%;
    max-width: none;
    margin: 50px 0 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 30px; 
  }

  /* PLAYER CARD */

  .player-card {
    width: 100%;
    max-width: none;

    flex: none;

    margin: 0;

    display: grid;

    grid-template-columns: 110px auto;

    gap: 15px;

    box-sizing: border-box;
  }


  /* PLAYER IMAGE */

  .player-image {
    width: 110px;
    height: 110px;

    object-fit: cover;

    display: block;

    margin: 0;
  }


  /* PLAYER CONTENT */

  .player-content {
    min-width: 0;

    height: 110px;

    padding: 0;
    margin: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
  }


  /* 名前＋所属 */

  .player-name-row {
    display: flex;

    align-items: baseline;

    gap: 6px;
  }

  .player-name {
    margin: 0;

    font-size: 16px;
  }

  .team {
    margin: 0;

    font-size: 9px;

    color: #777;
  }


  /* 生年月日・出身 */

  .birth {
    margin-top: -5px;

    font-size: 10px;

    line-height: 1.5;
  }


  /* 戦績 */

  .player-achievement {
    margin: 0;

    font-size: 10px;

    line-height: 1.5;
  }


  /* PLAYER LINK */

  .player-link {
    display: block;

    width: 60%;

    box-sizing: border-box;

    padding: 7px 5px;

    text-align: center;

    font-size: 9px;

    margin-top: 0;
  }
	
.small-break {
  display: none;
}


@media screen and (max-width: 420px) {
  .small-break {
    display: inline;
  }
}

}