@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");

/* =========================
   base
========================= */

:root {
  --max-width: 1180px;
  --narrow-width: 1100px;

  --color-text: #f2f2f2;
  --color-white: #ffffff;
  --color-yellow: #fff100;

  --color-red-1: #ff2a2a;
  --color-red-2: #c11717;
  --color-red-3: #3a0f0f;

  --color-blue-1: #5d8fff;
  --color-blue-2: #2f63dd;
  --color-blue-3: #1a47c7;

  --color-label-1: #29b3ff;
  --color-label-2: #1586e0;
  --color-label-3: #0f58c9;
}

html,
body {
  overflow-x: hidden;
}

.page {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0.02em;
  background-color: #050505;
  background-image: url("../image/zoa_gpc-koba260401/zoa_gpc_main_koba-2nd_bg2.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: clip; 
}

/* PCだけ fixed を使う */
@media (min-width: 769px) {
  .page {
    background-attachment: fixed;
  }
}

/* スマホは fixed を切る */
@media (max-width: 768px) {
  .page {
    background-attachment: scroll;
  }
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 2px,
      transparent 2px,
      transparent 6px
    );
  pointer-events: none;
  z-index: 0;
}

.page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page a {
  text-decoration: none;
}

.page .container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page .container--narrow {
  max-width: var(--narrow-width);
}

/* =========================
   section
========================= */

.page .section {
  padding: 40px 0 72px;
}

.page .section--compact {
  padding-top: 2px;
  padding-bottom: 56px;
}

/* =========================
   hero
========================= */

.page .hero-band {
  padding: 16px 0 0;
  text-align: center;
}

.page .hero-band__main {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--color-white);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.03);
}

.page .hero-band__sub {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--color-yellow);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 230, 0, 0.08);
}

.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }

  .hero-band__main {
    line-height: 1.4;
  }

  .hero-band__sub {
    line-height: 1.15;
    font-size: 30px;
  }
}

/* =========================
   トップ画像
========================= */

.hero-image {
  width: 100%;
  margin-bottom: 40px;
  height: auto;
  overflow: hidden;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image img {
  object-fit: cover;
}

/* スマホ */
@media (max-width: 768px) {
  .hero-image {
    margin-bottom: 10px; 
  }

  .page .hero-band {
    padding-top: 6px;
  }
}

/* =========================
   headings
========================= */

.page .section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(44px, 4vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0.015em;
  color: var(--color-white);
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(255, 255, 255, 0.05);
}

.page .subsection-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.04);
}

.page .parts-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.28;
  font-weight: 900;
  color: var(--color-white);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.04);
}

/* =========================
   divider
========================= */

.page .section-divider {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 18px auto 42px;
}

.page .section-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 210, 220, 0.4) 10%,
    rgba(235, 245, 255, 0.95) 50%,
    rgba(200, 210, 220, 0.4) 90%,
    transparent 100%
  );
  box-shadow: 0 0 4px rgba(160, 210, 255, 0.18);
}

.page .section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  opacity: 0.5;
}

.page .hero-band + .section .section-divider,
.page .hero-band + section .section-divider {
  margin-top: 8px;
}

/* =========================
   concept
========================= */

.page .concept {
  display: grid;
  grid-template-columns: 1.08fr 0.66fr;
  gap: 34px;
  align-items: start;
}

.page .concept__text p {
  margin: 0 24px;
  text-align: left;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: var(--color-text);
}

.page .concept__text p,
.concept__text p {
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.page .concept__text p:last-child {
  margin-bottom: 0;
}

.page .concept__card {
  background: #e7e7e7;
  padding: 14px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* =========================

========================= */

.page .concept,
.concept {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.66fr;
  gap: 34px;
  align-items: start;
}

.page .concept__text,
.concept__text {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.page .concept__text p,
.concept__text p {
  margin: 0 0 24px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  text-align: left;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}

.page .concept__card,
.concept__card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* =========================
   lineup
========================= */

.page #lineup {
  padding: 48px 0 72px;
}

.page #lineup .container {
  max-width: 1120px;
  padding: 0 16px;
}

.page .lineup {
  position: relative;
  padding-left: 0;
}

.page .lineup__side-text,
.page .product-card__ribbon {
  display: none;
}

.page .lineup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.page .product-card {
  position: relative;
  padding: 16px 16px 28px;
  background: linear-gradient(180deg, #4a4a4a 0%, #2c2c2c 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2);
}

.page .product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}

.page .product-card__image {
  padding: 0 8px;
}

.page .product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.25))
    drop-shadow(0 0 24px rgba(90, 180, 255, 0.18))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45));
}

.page .product-card__body {
  margin-top: 8px;
}

.page .product-card__title {
  margin: 0 0 18px !important;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15 !important;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.page .product-card__name,
.page .product-card__model {
  display: block !important;
}

.page .product-card__name {
  margin-bottom: 8px !important;
  font-size: 1em;
}

.page .product-card__model {
  margin-top: 0 !important;
  font-size: 0.92em;
  letter-spacing: 0.04em;
}

.page .product-card__spec-title {
  background: #d9dde2;
  color: #333333;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border: none;
  box-shadow: none;
}

.page .product-card__spec-text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: #e5e5e5;
}

.page .product-card__button {
  display: block;

  width: min(100% - 32px, var(--max-width)); /* ←メイン幅 */
  margin: 30px auto 0;

  padding: 14px;

  font-size: 18px;
  font-weight: 900;
  text-align: center;

  color: #fff;
  text-decoration: none;

  border-radius: 0;
  border: 2px solid #fff;

  background: #007bff;

  box-shadow: none;
}

.page .product-card__button::before {
  content: none !important;
}

.page .product-card__button:hover {
  filter: brightness(1.1);
  transform: none;
}

.page .product-card__button:visited,
.page .product-card__button:active {
  color: #ffffff;
  text-decoration: none;
}

.page .product-card__body::after {
  content: "";
  display: block;
  height: 10px;
}

/* スペック */
.product-card__spec-list {
  width: 90%;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

/* 共通 */
.product-card__spec-list dt,
.product-card__spec-list dd {
  margin: 0;
  padding: 8px 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #e5e5e5;

  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.product-card__spec-list dt:last-of-type,
.product-card__spec-list dd:last-of-type {
  border-bottom: none;
}

/* =========================
   models
========================= */

.page .model-detail,
.model-detail {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 15px;
}

.page .model-detail:last-child {
  margin-bottom: 0;
}

.page .model-detail__title {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 16px;

  background: linear-gradient(
    90deg,
    rgba(255, 42, 42, 1) 0%,
    rgba(193, 23, 23, 0.95) 45%,
    rgba(120, 10, 10, 0.6) 70%,
    rgba(0, 0, 0, 0) 100%
  );

  color: #ffffff;
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 900;
  letter-spacing: 0.02em;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.page .model-detail__text,
.model-detail__text {
  max-width: 100%;
  margin: 0 0 30px;
  text-align: left;
}

/* =========================
   parts
========================= */

.page .parts-lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: var(--color-text);
}

.parts-lead,

.page .parts-card__text,

.parts-card__text {
  text-align: left;
}
.page .parts-list {
  display: grid;
  gap: 20px;
}

.page .parts-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #0f0f0f;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.page .parts-card__image img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.page .parts-card__content {
  display: flex;
  flex-direction: column;
}

.page .parts-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: #0f1a28;
  border-bottom: 1px solid #2ea6ff;
  padding-right: 16px;
  padding-left: 6px;
}

.page .parts-card__label,
.parts-card__label {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  text-align: left !important;

  min-width: 142px;
  margin-left: -6px;
  padding: 11px 18px 11px 10px; 

  background: linear-gradient(
    135deg,
    var(--color-label-1) 0%,
    var(--color-label-2) 50%,
    var(--color-label-3) 100%
  );

  color: #ffffff;
  font-size: 16px;
  font-weight: 900;

  clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
  box-shadow: 0 0 14px rgba(41, 179, 255, 0.18);
}

.page .parts-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.2;
  font-weight: 900;
}

.page .parts-card__text {
  margin: 0;
  padding: 18px 16px 20px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  color: var(--color-text);
}

.parts-card {
  box-shadow:
  0 12px 28px rgba(0, 0, 0, 0.35),
  inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* =========================
   スマホ・タブレット ラベル修正
========================= */

@media (max-width: 768px) {

  .page .parts-card__label,
  .parts-card__label {
    /* 矢印削除 */
    clip-path: none !important;

    /* 形を整える */
    border-radius: 6px;

    /* レイアウト */
    display: flex !important;
    align-items: center;
    justify-content: flex-start;

    /* 余白 */
    padding: 10px 12px;
    margin-left: 0 !important;
    min-width: auto;
    width: auto;

    /* 文字 */
    text-align: left !important;

    /* 軽めの影（安全） */
    box-shadow: 0 0 8px rgba(41, 179, 255, 0.12);
  }

  .page .parts-card__head,
  .parts-card__head {
    padding: 10px 12px;
    gap: 8px;
  }

  .page .parts-card__title,
  .parts-card__title {
    padding: 0;
    font-size: 18px;
    line-height: 1.3;
  }

}

@media (max-width: 768px) {

  .page .parts-card__label,
  .parts-card__label {
    display: inline-flex !important;

    width: auto !important;  
    max-width: fit-content;   

    margin-left: 0 !important;
    padding: 10px 14px 10px 12px;
    justify-content: flex-start;
    text-align: left;
  }

}

/* =========================
   staff
========================= */

.page .staff {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto;
}

.page .staff__row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}

.page .staff__row--reverse {
  grid-template-columns: 320px 1fr;
}

.page .staff__row--reverse .staff__text {
  order: 2;
}

.page .staff__row--reverse .staff__image {
  order: 1;
}

.page #staff-creator .section-title,
.page #staff-store .section-title {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 6px rgba(255, 255, 255, 0.04);
}

.page #staff-creator .section-divider,
.page #staff-store .section-divider {
  margin: 10px auto 28px;
}

.page .staff__text {
  padding-left: 0;
}

.page .staff__text p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: var(--color-text);
}

.page .staff__image {
  background: #d9d9d9;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.page .staff__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff__highlight {
  display: block;
  font-weight: 900;
  color: #fff;
  margin: 10px 0;
  padding-left: 8px;
  border-left: 3px solid #5d8fff;
}

.staff__label {
  display: inline-block;
  padding: 4px 12px;
  margin-right: 10px;
  font-weight: 900;
  color: #fff;

  border-left: 3px solid #5d8fff;
  border-right: 3px solid #5d8fff;

  background: none;
  box-shadow: none;
}

.staff__highlight {
  border-left: none !important;
  display: block;
  margin: 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}

.store-button {
  width: 40% !important;
}

/* =========================
   profile
========================= */

.page .profile {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.page #profile .section-title {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 6px rgba(255, 255, 255, 0.04);
}

.page #profile .section-divider {
  margin: 10px auto 28px;
}

.page .profile__name {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.page .profile__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: var(--color-text);
}

.page .profile__list {
  margin: 0 0 20px;
  padding-left: 1.2em;
}

.page .profile__list li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-text);
}

.page .profile__sns {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-text);
}

.page .profile__sns a {
  color: #ffffff;
  text-decoration: underline;
}

.page .profile__image {
  background: #d9d9d9;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.page .profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   profile 戦績ロゴ風 + 順位バッジ
========================= */

.page .profile__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.page .profile__category {
  margin-top: 18px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--color-label-1);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.page .profile__list li:first-child.profile__category {
  margin-top: 0;
}

.page .profile__result {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 0;
  padding: 0;
}

.page .profile__event {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 100%
  );
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.page .profile__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
  border-radius: 999px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.page .profile__badge--gold {
  color: #2b2200;
  background: linear-gradient(
    180deg,
    #fff6a8 0%,
    #ffd84d 48%,
    #d8a600 100%
  );
}

.page .profile__badge--silver {
  color: #1f2430;
  background: linear-gradient(
    180deg,
    #f7f9fc 0%,
    #cfd7e3 48%,
    #9ca8b8 100%
  );
}

.page .profile__badge--bronze {
  color: #2d1608;
  background: linear-gradient(
    180deg,
    #f7c29a 0%,
    #d98a52 48%,
    #9c4f20 100%
  );
}

@media (max-width: 768px) {
  .page .profile__result {
    gap: 8px;
  }

  .page .profile__event {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
  }

  .page .profile__badge {
    min-width: 64px;
    font-size: 12px;
    padding: 7px 10px;
  }
}

/* =========================
   profile 実績ラベル
========================= */

.page .profile__label {
  display: inline-block;
  margin: 0 0 12px;

  padding: 8px 18px 8px 12px;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    var(--color-label-1) 0%,
    var(--color-label-2) 50%,
    var(--color-label-3) 100%
  );

  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.25),
    0 0 14px rgba(41, 179, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.page .profile__image {
  aspect-ratio: 3 / 4;
  background: transparent;
}

.page .profile__image img {
  object-fit: contain;
}

/* =========================
   responsive
========================= */

@media (max-width: 768px) {
  .page .staff {
    gap: 32px;
  }

  .page .staff__row,
  .page .staff__row--reverse,
  .page .profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page .staff__row--reverse .staff__text,
  .page .staff__row--reverse .staff__image {
    order: initial;
  }

  .page .profile__name {
    font-size: 18px;
  }
}

/* =========================
   CTAボタン
========================= */

.page .cta-buttons {
  width: 100%;
  margin: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CTAボタン本体 */
.page .cta-buttons .product-card__button {
  display: block;
  width: 40% !important;
  padding: 6px 14px;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  text-align: center;

  color: #fff;
  text-decoration: none;

  border: 2px solid #fff;
  background: #007bff;
}

/* hover */
.page .cta-buttons .product-card__button:hover {
  filter: brightness(1.1);
}

/* スマホ */
@media (max-width: 768px) {
  .page .cta-buttons .product-card__button {
    width: 80%;
    font-size: 22px;
  }
}

/* =========================
   fade
========================= */

.page .fade-in,
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.page .fade-in.show,
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page .fade-in,
  .fade-in,
  .page .fade-in.show,
  .fade-in.show {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*
.page .fade-in,
.fade-in {
  opacity: 1 !important;
  transform: none !important;
}
*/


/* =========================
   page top
========================= */

html {
    scroll-behavior: smooth;
}
.pagetop {
	display: flex;
    justify-content: center;
	z-index: 2;
	opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    height: 50px;
    width: 50px;
    position: fixed;
    right: 50px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    align-items: center;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #3293e7;
    }
}

.pagetop {
  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================
   responsive
========================= */

@media (max-width: 1100px) {
  .page .concept {
    grid-template-columns: 1fr;
  }

  .page .lineup__grid {
    grid-template-columns: 1fr;
  }

  .page .parts-card {
    grid-template-columns: 1fr;
  }

  .page .parts-card__head {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
  }

  .page .parts-card__title {
    padding: 10px 14px 14px;
  }
}

@media (max-width: 900px) {
  .page #lineup .section-title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .page .container {
    width: min(100% - 20px, var(--max-width));
  }

  .page .hero-band {
    padding-top: 18px;
  }

  .page .hero-band__main {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .page .hero-band__sub {
    font-size: 32px;
    white-space: normal;
    line-height: 1.12;
  }

  .page .hero-band__yellow {
    margin-right: 4px;
  }

  .page .section {
    padding: 28px 0 46px;
  }

  .page .section--compact {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .page .section-divider {
    margin-bottom: 22px;
  }

  .page-top {
    width: 62px;
    height: 62px;
    right: 10px;
    bottom: 10px;
  }
}

/* ===== フォントサイズ調整 ===== */
.page .staff__text p,
.page .profile__text,
.page .parts-card__text,
.page .concept__text p {
  font-size: clamp(16px, 1.2vw, 18px);
}

.page .cta-buttons .product-card__button {
  width: 65% !important;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page .cta-buttons .product-card__button {
    width: 90% !important;
  }
}
