@charset "UTF-8";


* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: #0b0710;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}

a { color: #ff5cb0; text-decoration: none; }
a:hover { color: #ffa3d4; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; }

/* 画像プレースホルダー（差し替え用） */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0b14;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
}

/* ===== ページタイトル ===== */
.page-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 26px 20px;
  background: linear-gradient(90deg, #e9edf7 0%, #f6f4fb 50%, #e9edf7 100%);
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #dfe4f2 0 18px, #eaeef8 18px 36px);
  opacity: .7;
}
.page-title__text {
  position: relative;
  margin: 0;
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #8b3ff0;
}

/* ===== ヒーロー ===== */

:root {
  --mv-w: 1920;  
  --mv-h: 900;
  --sp-mv-w: 750; 
  --sp-mv-h: 1572;
  --sp-mv-copy-bottom: 5%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: #07060a;
  border-bottom: 5px solid;
  border-image: linear-gradient(90deg, #8b3ff0, #e0388f, #ff7a3d) 1;
}
.hero::before {
  content: "";
  grid-area: 1 / 1;
  width: 100%;
  padding-top: calc(var(--mv-h) / var(--mv-w) * 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/mv.webp) no-repeat center top / 100% auto;
}
.hero__inner {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.hero__body { width: 100%; max-width: 42%; }
.hero__title { margin: 0; }
.hero__title img { width: min(430px, 30vw); display: block; }

.hero__ph {
  width: min(58%, 760px);
  aspect-ratio: 16 / 10;
  border: 1px dashed rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: none;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.hero__eyebrow {
  margin: 0 0 clamp(8px, 1.5vw, 16px);
  font-size: clamp(15px, 2.1vw, 28px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.hero__title {
  margin: 0;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1.05;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .65);
}
.hero__period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* margin-top: clamp(16px, 2.5vw, 28px); */
}
.hero_btn{
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 30px;
}
.hero__mark { color: #ff3d3d; font-size: clamp(14px, 1.6vw, 20px); }
.hero__date {
  margin: 0;
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .02em;
  color: white !important;
}
.hero__note {
  margin: clamp(14px, 2vw, 22px) 0 0;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: .06em;
  color: #E3A5F0;
}

/* ===== ボタン（ホバーでふわっと浮く） ===== */
.btn_top {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b3ff0, #FA583F);
  color: #fff;
  font-weight: 700;
  will-change: transform;
  transition:
    transform .5s cubic-bezier(.2, .9, .25, 1),
    box-shadow .5s cubic-bezier(.2, .9, .25, 1),
    filter .5s ease;
}
.btn:hover { color: #fff; }

.btn--hero {
  gap: 24px;
  margin-top: clamp(18px, 3vw, 32px);
  padding: clamp(13px, 1.6vw, 18px) clamp(20px, 2.4vw, 30px);
  min-width: min(100%, 320px);
  font-size: clamp(15px, 1.7vw, 20px);
  box-shadow: 0 8px 28px rgba(224, 56, 143, .35);
}
.btn--hero:hover {
  transform: translateY(-9px) scale(1.02);
  box-shadow: 0 26px 54px rgba(224, 56, 143, .5), 0 0 52px rgba(139, 63, 240, .42);
  filter: brightness(1.1);
}

.btn--card {
  gap: 18px;
  margin-top: auto;
  align-self: center;
  width: min(100%, 240px);
  padding: 12px 22px;
  font-size: clamp(13px, 1.4vw, 15px);
  box-shadow: 0 6px 18px rgba(224, 56, 143, .25);
  text-decoration: none;
}
.btn--card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 20px 42px rgba(224, 56, 143, .45), 0 0 40px rgba(139, 63, 240, .38);
  filter: brightness(1.1);
}
.cards--gaming .btn--card { width: min(100%, 230px); padding: 12px 20px; }
/* .cards--gaming .btn--card span{
      text-align: center;
    margin: 0 auto;
} */

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  /* border: 1.5px solid rgba(255, 255, 255, .9); */
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 255, 255, .3);
}
.btn__arrow--sm { width: 24px; height: 24px; font-size: 12px; }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

/* ===== 共通見出し ===== */
.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: .02em;
}
.section-label {
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  text-align: center;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: .42em;
  color: white;
}

/* ===== REASONS ===== */
.reasons {
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, #120b18 0%, #1a1020 60%, #241430 100%);
}
.reasons h2{
    color: white !important;
        font-size: 65px;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(28px, 4vw, 48px);
}
.reason {
  padding: clamp(22px, 2.6vw, 32px);
  background: linear-gradient(160deg, #1d1226, #241531);
  border: 1px solid rgba(243, 84, 70, .3);
  border-radius: 12px;
}
.reason__num {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 60px);
  font-weight: 900;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reason__num--01 { background-image: linear-gradient(90deg, #ff4f9a, #a24ff0); }
.reason__num--02 { background-image: linear-gradient(90deg, #8b6bff, #3ea8ff); }
.reason__num--03 { background-image: linear-gradient(90deg, #ff7a3d, #ff3d6e); }
.reason__title {
  margin: clamp(10px, 1.4vw, 16px) 0 0;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color:white !important;
}
.reason__text {
  margin: clamp(10px, 1.4vw, 16px) 0 0;
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
  text-wrap: pretty;
}

/* ===== LINEUP ===== */
.lineup {
  padding: clamp(44px, 6vw, 88px) clamp(16px, 4vw, 40px);
  text-align: center;
  /* background: linear-gradient(105deg, #6b2fd6 0%, #a12fc0 45%, #e0388f 100%); */
  background:url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/sec03bg.webp);
  background-size: cover;
  background-position: center;
}
.lineup__rule {
  width: 1px;
  height: clamp(28px, 4vw, 52px);
  margin: 0 auto;
  background: rgba(255, 255, 255, .7);
}
.lineup .section-label { margin-top: clamp(14px, 2vw, 24px); color: rgba(255, 255, 255, .9); }
.lineup__title {
  margin: clamp(14px, 2vw, 24px) 0 0;
  font-size: clamp(23px, 4.4vw, 46px);
  font-weight: 700;
  letter-spacing: .01em;
}
.lineup__title img {
    margin:0 auto;
}

/* ===== カテゴリ見出し ===== */
.cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 22px);
}
.cat-head__name {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: .16em;
}
.cat-head__name--standard { color: #860AAF; }
.cat-head__name--gaming { color: #ff6a2e; }
.cat-head__sub {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .8);
}

/* ===== 商品カード ===== */
.pclist{
    background: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/back.webp),black;
    background-size: contain;
}

.standard {
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px) clamp(28px, 4vw, 48px);
  /* background: linear-gradient(180deg, #1b1122 0%, #231631 55%, #1a1022 100%); */
}
.gaming {
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 80px);
  /* background: linear-gradient(180deg, #1a1022 0%, #241533 40%, #170e1e 100%); */
}

.cards {
  display: grid;
  margin-top: clamp(20px, 3vw, 36px);
}
.cards--standard {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.cards--gaming {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(134,10,175,.6);
  border-radius: 10px;
  background: linear-gradient(170deg, #221630, #1a1024);
}
.card--cyan {    position: relative; border: 1px solid #3fd8d0; background: linear-gradient(170deg, #1d1428, #150e1d); }
.card--green {  position: relative;border: 1px solid #4bd46a; background: linear-gradient(170deg, #1d1428, #150e1d); }
.card--red {  position: relative; border: 1px solid #ff4b3d; background: linear-gradient(170deg, #1d1428, #150e1d); }

.card__ph {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.card__ph img{
    width: 70% !important;
}
.card__ph--gaming {
  /* margin-top: 12px; */
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.card__badge-wrap { position: absolute;
    top: 7px;
    left: 7px;}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
}
.badge--cyan { background: rgba(0,235,255,.6); border-radius: 30px; color: white;  }
.badge--green { background: rgba(49,255,0,.6);border-radius: 30px; color: white;  }
.badge--red { background: rgba(255,34,0,.6); border-radius: 30px; color: white; }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  color: white !important;
}
.card__body--gaming { gap: 11px; padding: clamp(16px, 2vw, 24px); }

.card__title {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}
.card__title--gaming { font-size: clamp(15px, 1.7vw, 19px); }

.card__price {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -.01em;
}
.card__price--gaming { font-size: clamp(22px, 3vw, 31px); }
.card__tax {
  margin-left: 6px;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(51, 221, 239, .08);
  border-color: rgba(51, 221, 239,.31);
  font-size: clamp(10px, 1.05vw, 12px);
  text-align: center;
  color:#33DDEF;
}
.tag--block {
  display: block;
  padding: 6px 12px;
  background: rgba(51, 221, 239, .08);
  border-color: rgba(51, 221, 239,.31);
  font-size: clamp(10px, 1.05vw, 12px);
  text-align: center;
  color:#33DDEF;
}

.spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px clamp(14px, 2vw, 28px);
  margin: 8px 0 0;
  font-size: clamp(11px, 1.2vw, 13px);
      text-align: left;
}
.spec--gaming { gap: 7px clamp(12px, 1.8vw, 24px); margin-top: 6px; font-size: clamp(11px, 1.15vw, 13px); }
.spec dt { margin: 0; color: rgba(255, 255, 255, .55); }
.spec dd { margin: 0; font-weight: 700; color: #33DDEF; }

.card__lead {
  margin: 6px 0 0;
  font-size: clamp(10px, 1.1vw, 12px);
  color:rgba(255, 255, 255, .6);
      text-align: left;
}
.card__lead::before{
  content:'';
  background:url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/check.svg);
    width: 14px;
    height: 17px;
    display: inline-block;
    background-repeat: no-repeat;
}
.card__body--gaming .card__lead { margin-top: 4px; font-size: clamp(10px, 1.05vw, 12px);    display: flex; }

/* ===== 注記 ===== */
.notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: clamp(24px, 3.5vw, 44px);
      text-align: left;
}
.notes p {
  margin: 0;
  font-size: clamp(10px, 1.05vw, 12px);
  line-height: 1.8;
  color: #BFBFBF;
}

/* ===== SP 調整 ===== */
@media (max-width: 768px) {
  /* .hero__bg { justify-content: center; padding-right: 0;  background: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/sp_mv.webp); } */

  .hero::before {
    padding-top: calc(var(--sp-mv-h) / var(--sp-mv-w) * 100%);
  }
  .hero__title { display: none; }
  .hero__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--sp-mv-copy-bottom);
    align-items: flex-end;
    padding: 0 !important;
  }
  .hero__bg {
    background: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/sp_mv2.webp) no-repeat center top / 100% auto;
  }
  .hero__body { max-width: 100%; }
  .hero__period { justify-content: center; }
  .hero_btn { align-items: center; }
  .hero__note { text-align: center; }
.hero_btn {
    width: 90%;
    margin: 0 auto;
}
.hero__body { max-width: 100%; }
  .hero__ph { width: 86%; opacity: .6; }
  .cards--standard,
  .cards--gaming { grid-template-columns: 1fr; }
  .btn--hero,
  .btn--card { width: 100%;text-decoration: none; }

  /* .hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
  background: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/mv.webp);
  background-size: cover;
} */

.reasons h2{
    color: white !important;
        font-size: 32px;
}


}


/* ===== MV 重ねテキスト：画像と同じく幅に比例させる ===== */
@media (min-width: 768px) {
  .hero__period { justify-content: flex-start; gap: .6vw; margin: 1.4vw 0 0; }
  .hero__mark { font-size: 1.1vw; }
  .hero__date { font-size: 1.7vw; }
  .hero_btn { align-items: flex-start; margin-top: 1.4vw; padding-bottom: 0; }

  
  .btn--hero {
    margin-top: 0;
    gap: 1.4vw;
    min-width: 0;
    width: 22vw;
    padding: 1vw 1.6vw;
    font-size: 1.05vw;
            text-decoration: none;
  }
  .btn__arrow { width: 1.8vw; height: 1.8vw; font-size: .9vw; }
  .hero__note { margin-top: 1vw; font-size: .85vw; }
}
@media (min-width: 1920px) {
  .hero__title img { width: 661px; }
  .hero__period { gap: 12px; margin-top: 27px; }
  .hero__mark { font-size: 21px; }
  .hero__date { font-size: 33px; }
  .hero_btn { margin-top: 27px; }
  .btn--hero { width: 422px; padding: 19px 31px; font-size: 20px; gap: 27px;text-decoration: none;}
  .btn__arrow { width: 35px; height: 35px; font-size: 17px; }
  .hero__note { margin-top: 19px; font-size: 16px; }
}

/* ===== 日付＋ボタンの寄せ（hero__body の中で） ===== */
/* 広い：左寄せ */
@media (min-width: 1400px) {
  .hero__period { justify-content: flex-start; }
  .hero_btn { align-items: flex-start; }
  .hero__note { text-align: left; }
}
/* 中間：中央寄せ */
@media (min-width: 1000px) and (max-width: 1400px) {
  .hero__period { justify-content: center; }
  .hero_btn { align-items: center; }
  .hero__note { text-align: center; }
}
/* SP切り替え直前：左寄せ */
@media (min-width: 768px) and (max-width: 1000px) {
  .hero__period { justify-content: flex-start; }
  .hero_btn { align-items: flex-start; }
  .hero__note { text-align: left; }
}

/* ===== 768〜1400px：mv2.webp（コピー入り1枚絵）===== */
@media (min-width: 768px) and (max-width: 1400px) {
  :root { --mv-w: 3840; --mv-h: 1766; }
  .hero__bg { background-image: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/mv2.webp); }
  /* コピーは画像内にあるので見出しは非表示。日付＋ボタンは画像下部に重ねる */
  .hero__title { display: none; }
  .hero__inner { align-self: end; padding-bottom: 2.5%; }
  .hero__body { max-width: 42%; }
  /* ボタンを約2倍に（高さを増やす） */
  .btn--hero { width: 38vw; padding: 1.4vw 2.4vw; font-size: 1.7vw; gap: 1.6vw; white-space: nowrap; }
  .btn__arrow { width: 3.2vw; height: 3.2vw; font-size: 1.6vw; flex: none; }
}

/* ===== 1400px以上：mv.webp（コピーなし・mv_ttl.webp を重ねる）===== */
@media (min-width: 1400px) {
  :root { --mv-w: 1920; --mv-h: 900; }
  .hero__bg { background-image: url(https://gigaplus.makeshop.jp/pasoul/files/img/page/summer26_v3/mv.webp); }
  .hero__title { display: block; }
  .hero__title img { width: min(661px, 38.5vw); }
  .hero__inner { align-self: center; padding-bottom: 0; max-width: 1600px; }
  .hero__body { max-width: 56%; }
}

/* ===== SP：画面下に追従するCTA ===== */
.fixed-cta { display: none; }
@media (max-width: 768px) {
  .fixed-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
    background: #7b1f6a;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .45);
  }
  .fixed-cta__link {
    display: block;
    transition: filter .3s ease, transform .3s ease;
  }
  .fixed-cta__link:hover,
  .fixed-cta__link:active { filter: brightness(1.1); }
  .fixed-cta img { width: 100%; height: auto; display: block; }
  /* 追従ボタンぶんの余白を確保（画像は 750:150 ＝ 高さ 20vw） */
  body { padding-bottom: calc(20vw + env(safe-area-inset-bottom)); }

}



/* ============================================================
   Normal Model
   ============================================================ */
.normal-model {
  background: #fff;
  padding: 80px 24px;
  border-left: 3px solid #00c8cc;
  border-right: 3px solid #00c8cc;
}

.normal-model-head {
  text-align: center;
  margin-bottom: 48px;
}

.normal-model-eyebrow {
  font-size: 24px;
  letter-spacing: 0.1em;
  /* color: rgba(10, 31, 61, 0.6); */
  font-weight: 600;
  margin-bottom: 8px;
}

.normal-model-title {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.3;
}

.normal-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.normal-model-card {
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.normal-model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.1);
}

.normal-model-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 980px) { 

  .normal-model {
    padding: 60px 20px;
    border-left: none;
    border-right: none;
  }
  .normal-model-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .normal-model-eyebrow {
    font-size: 18px;
    margin-bottom: 0;
  }
}