@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Roboto+Mono:wght@500;700&display=swap');

/* =========================================
   sQuare mAze LP - style.css
   width: 750px fixed (PC/SP 共通固定幅)
   ========================================= */

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  color: #f5f5f5;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  overflow-y: scroll;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Variables ---------- */
:root {
  --color-bg: #1a1a1a;
  --color-bg-alt: #2a2a2a;
  --color-text: #f5f5f5;
  --color-text-sub: #c5c5c5;
  --color-accent: #5fb6cf;
  --color-accent-yellow: #f5d23a;
  --color-border: #3a3a3a;
}

/* ---------- Wrapper ---------- */
#wrapper {
  width: 750px;
  margin: 0 auto;
  background-color: #35383A;
  overflow: hidden;
  position: relative;
}

/* ---------- Section common ---------- */
.section {
  padding: 80px 50px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 20px;
}

.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 18px auto 0;
}

/* ---------- HERO ---------- */
.hero {
  background-color: #35383A;
  background-image: url("../img/hero_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding: 140px 50px 60px;
  text-align: center;
  position: relative;
}

.hero__catch {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: normal;
  color: #F5F5F5;
  margin-bottom: 38px;
  letter-spacing: 0.08em;
}

.hero__badge {
  margin-bottom: 40px;
}

.hero__badge img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hero__visual {
  margin: 0 auto 30px;
  max-width: 540px;
  border-radius: 8px;
  position: relative;
}

.hero__visual img {
  width: 100%;
  display: block;
}


/* 自動右スクロールギャラリー (無限ループ) */
.hero__gallery {
  margin: 50px -50px 36px 0px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.hero__gallery-list {
  display: flex;
  gap: 50px;
  list-style: none;
  width: max-content;
  animation: hero-gallery-scroll 28s linear infinite;
}

.hero__gallery-list li {
  flex: 0 0 auto;
  width: 105px;
  height: 105px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.hero__gallery-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 半分の幅(=1セット分)だけ右に動かして無限ループ
   gap分(24px)も考慮: 6枚 * (105 + 24) = 774px */
@keyframes hero-gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-774px); }
}

/* ホバーで一時停止 (PC用のみ。タッチデバイスでは止めない) */
@media (hover: hover) and (pointer: fine) {
  .hero__gallery:hover .hero__gallery-list {
    animation-play-state: paused;
  }
}

/* アクセシビリティ: 動きの抑制設定をしているユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .hero__gallery-list {
    animation: none;
  }
}

.hero__cta {
  display: block;
  margin: 30px auto 0;
  max-width: 460px;
}

.btn-primary.hero__cta img {
  width: 100%;
  max-width: 100%;
}

/* ---------- VOICE ---------- */
.voice {
  background: #35383A;
}

.voice__heading {
  margin: 0 -50px 36px;
}

.voice__heading img {
  width: 100%;
  display: block;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.voice__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: linear-gradient(
    to bottom,
    #D9E6EE 0,
    #D9E6EE 14px,
    #fff 14px,
    #fff calc(100% - 56px),
    #D9E6EE calc(100% - 56px),
    #D9E6EE 100%
  );
  border: 1px solid #C2CAD0;
  padding: 34px 28px 14px;
}

.voice__icon {
  flex-shrink: 0;
  width: 95px;
  text-align: center;
  margin-bottom: 0;
}

.voice__icon img {
  width: 100%;
  display: block;
  margin-bottom: 6px;
}

.voice__author {
  font-size: 16px;
  color: #3D779E;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 700;
}

.voice__text {
  flex: 1;
  min-width: 0;
  font-size: 21px;
  line-height: 1.7;
  color: #3D779E;
  margin: 0;
  font-weight: 500;
}

.voice__text mark {
  background: linear-gradient(transparent 60%, #FFF200 60%);
  color: inherit;
  font-weight: 700;
  padding: 0 2px;
}

/* ---------- WORLD ---------- */
.world {
  background-color: #D2DAE1;
  background-image: url("../img/world_bg.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}

.world__heading {
  margin: 0 -50px 36px;
}

.world__heading img {
  width: 100%;
  display: block;
}

.world__gallery {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.world__card {
  width: 104%;
}

.world__card img {
  width: 100%;
  display: block;
}

/* ---------- HOWTO (Try it!!) ---------- */
.howto {
  background: #D2DAE1;
  margin-top: -10px;
}

/* ボックス全体 */
.howto__box {
  background: #323334;
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
}

/* 内側プレイエリア(lead〜カード4枚) */
.howto__play {
  background: #697C87;
  padding: 26px 22px;
  margin: 18px 0 24px;
}

.howto__title {
  margin: 0 0 8px;
  line-height: 1;
}

.howto__title img {
  display: inline-block;
  max-width: 260px;
  width: 60%;
}

.howto__lead {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
}

/* ステージとヒントを横並びにするラッパー */
.howto__stage-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* 3x3 グリッド: 上下左右にドロップ枠、中央にステージ画像 */
.howto__grid {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  grid-template-rows: 70px 1fr 70px;
  gap: 23px;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 460px;
}

/* メインステージ画像(中央) */
.howto__stage {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  position: relative;
}

.howto__stage-img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* CSS製のドア面: 正解時にだけ出現 → 開く */
.howto__door-wrap {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  perspective: 900px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

#howto-stage.is-open .howto__door-wrap {
  opacity: 1;
  visibility: visible;
}

.howto__door-face {
  position: absolute;
  inset: 0;
  background-color: #1e3044;
  background-image:
    linear-gradient(rgba(120, 180, 220, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 220, 0.10) 1px, transparent 1px);
  background-size: 10px 10px;
  transform-origin: left center;
  transform: rotateY(0deg);
  transition: transform 1s cubic-bezier(0.4, 0, 0.15, 1);
  transition-delay: 0.3s;
  backface-visibility: hidden;
  border: 1px solid rgba(120, 180, 220, 0.2);
}

#howto-stage.is-open .howto__door-face {
  transform: rotateY(-110deg);
}

/* ヒンジ(蝶番) */
.howto__door-hinge {
  position: absolute;
  left: 5px;
  width: 7px;
  height: 22px;
  background: linear-gradient(to right, #b0b8c0, #dde4ea, #b0b8c0);
  border-radius: 1px;
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.4);
}

.howto__door-hinge--top { top: 14%; }
.howto__door-hinge--bottom { bottom: 14%; }

/* ドアノブ */
.howto__door-knob {
  position: absolute;
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #dde2e7, #b0b8c0);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* 右下のヒント丸ボタン(画像) */
.howto__hint {
  position: absolute;
  right: 20px;
  bottom: -15px;
  width: 110px;
}

.howto__hint img {
  max-width: 110%;
  width: 110%;
  display: block;
}

/* 4方向のドロップ枠 - グリッドの上下左右外側に配置 */
.howto__slot {
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px dashed #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #aaa;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.howto__slot.is-hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  border-style: solid;
  color: #fff;
}

.howto__slot--top    { grid-column: 2; grid-row: 1; }
.howto__slot--left   { grid-column: 1; grid-row: 2; }
.howto__slot--right  { grid-column: 3; grid-row: 2; }
.howto__slot--bottom { grid-column: 2; grid-row: 3; }

/* スロットに置かれたカード */
.howto__slot .howto__card {
  width: 100%;
  height: 100%;
}

.howto__slot .howto__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 下のドラッグカード4枚 */
.howto__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}

.howto__card {
  cursor: grab;
  touch-action: none;
  transition: transform 0.15s, opacity 0.15s;
  margin: 0;
  padding: 0;
}

.howto__card:active {
  cursor: grabbing;
}

.howto__card.is-dragging {
  opacity: 0.7;
  transform: scale(1.05);
  z-index: 100;
}

.howto__card img {
  width: 100%;
  display: block;
  border-radius: 4px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.howto__card.is-used {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* オーバーレイ - 画面全体を覆う */
.howto__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.howto__overlay.is-show {
  display: block;
}


/* 結果ポップアップ共通 - 画面中央fixed、固定サイズ */
.howto__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #222;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  width: 620px;
  max-width: 92vw;
  max-height: 90vh;
  overflow: hidden;
}

.howto__popup.is-show {
  display: block;
}

.howto__popup-heading {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #213440;
}

.howto__popup-detail {
  font-size: 20px;
  color: #444;
  margin: 0 0 22px;
  line-height: 1.6;
  font-weight: 500;
}

/* 正解ポップアップ専用: 固定サイズで内容物が縦に伸びないように */
.howto__popup--correct {
  padding: 0;
  background: #fff;
  text-align: center;
}

.howto__popup--correct .howto__popup-image {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

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

/* テキストを画像の上部に重ねる */
.howto__popup-textwrap {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  text-align: center;
}

.howto__popup--correct .howto__popup-heading {
  font-size: 38px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: #213440;
}

.howto__popup--correct .howto__popup-detail {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: #213440;
}

/* ボタン部分: 画像の下端と重なる位置に絶対配置(中央寄せ) */
.howto__popup-foot {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 70%;
  max-width: 320px;
}

/* 続きはこちらからボタン(画像) */
.howto__popup-btn {
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.howto__popup-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.howto__popup-btn img {
  width: 110%;
  max-width: 110%;
  display: block;
  margin-left: -5%;
}

/* 不正解ポップアップ */
.howto__popup--incorrect {
  padding: 40px 36px 36px;
}

.howto__popup-close {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
}

.howto__popup-close:hover {
  background: #222;
}

/* ドロップ枠にカードが置かれた時のチップ表示 */
.howto__slot .howto__card {
  width: 100%;
  height: 100%;
}

.howto__slot .howto__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- SITUATION ---------- */
.situation {
  background: #35383A;
}

.situation__heading-img {
  margin: 0 -50px 36px;
}

.situation__heading-img img {
  width: 100%;
  display: block;
}

.situation__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.situation__item {
  width: 85%;
}

.situation__item img {
  width: 100%;
  display: block;
}

/* ---------- INTERVIEW ---------- */
.interview {
  background: #35383A;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
}

.interview__heading {
  margin: 0 -50px 24px;
}

.interview__heading img {
  width: 100%;
  display: block;
}

.interview__lead {
  margin-bottom: 28px;
  background: #000;
  border-radius: 6px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.interview__lead-icon {
  flex-shrink: 0;
  width: 52px;
  height: auto;
  display: block;
  margin-top: 5px;
}

.interview__lead-text {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: left;
}

.interview__card {
  margin-bottom: 34px;
  background: #E9EEF2;
  color: #222;
  padding: 28px 28px 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  text-align: left;
  border-left: 6px solid #00AEFF;
}

.interview__quote {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  color: #213440;
  margin: 0 0 20px;
  padding: 12px 40px 18px 40px;
  text-align: left;
  position: relative;
  border-bottom: 1px solid #C2CAD0;
  line-height: 1.8em;
}

.interview__quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 44px;
  color: var(--color-accent);
  line-height: 1;
  font-family: Georgia, serif;
}

.interview__quote::after {
  content: "”";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 44px;
  color: var(--color-accent);
  line-height: 1;
  font-family: Georgia, serif;
}

.interview__quote-indent {
  display: inline-block;
  padding-left: 10em;
}

.interview__quote-indent2 {
  display: inline-block;
  padding-left: 2em;
}

/* 2つ目の引用(より長文用)は階段状インデントの幅を控えめに */
.interview__quote--2 .interview__quote-indent { padding-left: 2em; }
.interview__quote--2 .interview__quote-indent2 { padding-left: 4em; }

.interview__text {
  font-size: 20px;
  line-height: 1.8;
  color: #213440;
  margin: 0 0 22px;
  font-weight: 700;
}

.interview__profile {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 18px 18px 18px 0;
  background: #fff;
  border-radius: 6px;
  position: relative;
}

.interview__avatar {
  flex-shrink: 0;
  width: 200px;
  margin-left: -20px;
  margin-top: -20px;
  margin-bottom: -20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.interview__avatar img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.interview__bio {
  flex: 1;
  min-width: 0;
}

.interview__role {
  font-size: 19px;
  font-weight: 700;
  color: #213440;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #00AEFF;
}

.interview__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #213440;
  margin: 0;
  font-weight: 700;
}

.interview__cta-wrapper {
  text-align: center;
  margin-top: 100px;
}

.interview__cta {
  display: inline-block;
  max-width: 460px;
  width: 100%;
}

.interview__cta img {
  width: 100%;
  display: block;
}

/* ---------- SPEC ---------- */
.spec {
  background: #35383A;
}

.spec__heading {
  margin: 0 -50px 28px;
}

.spec__heading img {
  width: 100%;
  display: block;
}

/* SALE 黄色帯 (CSSで再現。SALEを横一列に均等表示) */
.spec__sale-banner {
  margin: 0 -50px 0;
  background: #FFF200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 12px;
  overflow: hidden;
}

.spec__sale-banner span {
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  white-space: nowrap;
}

/* メイン商品カード */
.spec__main {
  text-align: center;
  padding: 36px 0 40px;
}

.spec__catch {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 22px;
  text-align: center;
}

.spec__hero-image {
  max-width: 460px;
  margin: 0 auto 24px;
}

.spec__hero-image img {
  width: 100%;
}

.spec__product-name {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.spec__product-kana {
  font-size: 20px;
  color: #c5c5c5;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.spec__price {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.spec__price-note {
  font-size: 20px;
  color: var(--color-text-sub);
  margin-left: 6px;
}

.spec__campaign {
  font-size: 26px;
  color: #00AEFF;
  font-weight: 500;
  margin-bottom: 28px;
}

.purchase {
  text-align: center;
  position: relative;
  z-index: 2;
}

.spec__cta {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.spec__cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.spec__cta img {
  max-width: 460px;
  width: 100%;
  display: block;
}

/* 次弾告知 */
.spec__next {
  padding: 200px 0 60px;
  margin: -150px -50px 0;
  text-align: center;
  background-image: url("../img/spec_next_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 101% auto;
  background-color: #D2DAE1;
  position: relative;
  z-index: 0;
}

.spec__next::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #35383A;
  z-index: 1;
  pointer-events: none;
}

.spec__next > * {
  padding-left: 50px;
  padding-right: 50px;
}

.spec__next-banner {
  margin-bottom: 18px;
}

.spec__next-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.spec__next-headline {
  margin: 0 auto 18px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #213440;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0 8px;
  line-height: 1;
  background: linear-gradient(transparent 55%, #00AEFF 55%, #00AEFF 92%, transparent 92%);
}

.spec__next-subtext {
  margin-bottom: 36px;
  text-align: center;
}

.spec__next-subtext img {
  display: inline-block;
  width: 80%;
  max-width: 80%;
}

/* シリーズラインナップ */
.spec__series {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.spec__series-item {
  background: transparent;
  text-align: center;
}

.spec__series-label {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-align: left;
}

.spec__series-image {
  margin-bottom: 12px;
}

.spec__series-image img {
  width: 100%;
}

.spec__series-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.4;
}

.spec__series-main {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
}

.spec__series-cta {
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

.spec__series-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.spec__series-cta img {
  width: 100%;
  display: block;
}

/* ---------- FAQ ---------- */
.faq {
  background: #35383A;
}

.faq__heading {
  margin: 0 -50px 36px;
}

.faq__heading img {
  width: 100%;
  display: block;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.faq__item {
  padding: 0;
}

.faq__q,
.faq__a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 28px;
  line-height: 1.7;
  margin: 0;
}

.faq__q {
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.faq__a {
  color: #f5f5f5;
  font-weight: 700;
}

.faq__a-main {
  flex: 1 1 0;
  min-width: calc(100% - 66px);
}

.faq__a-note {
  display: block;
  font-size: 16px;
  color: #c5c5c5;
  line-height: 1.6;
  margin-top: -10px;
  font-weight: 400;
  flex-basis: 100%;
  padding-left: 66px;
}

.faq__label {
  flex-shrink: 0;
  width: 56px;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* ---------- NOTICE (FAQセクション内) ---------- */
.notice {
  margin-top: 70px;
}

.notice__heading {
  margin: 0 -50px 36px;
}

.notice__heading img {
  width: 100%;
  display: block;
}

.notice__list {
  list-style: none;
  padding-left: 0;
  color: var(--color-text);
  font-size: 24px;
  line-height: 2.0;
}

.notice__list li {
  margin-bottom: 6px;
  padding-left: 1em;
  text-indent: -1em;
}

.notice__list li::before {
  content: "・";
  display: inline;
}

/* ---------- BUTTON ---------- */
.btn-primary {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-primary img {
  max-width: 460px;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: #C2CAD0;
  background-image: url("../img/footer.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding: 24px 30px 30px;
  text-align: center;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.footer__sns a {
  display: block;
  width: 56px;
  height: 56px;
  transition: transform 0.2s;
}

.footer__sns a:hover {
  transform: scale(1.08);
}

.footer__sns img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__bottom {
  position: relative;
  text-align: center;
}

.footer__logo {
  display: inline-block;
  width: 96px;
  transition: opacity 0.2s;
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo img {
  width: 100%;
  display: block;
}

.footer__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ---------- HAMBURGER & DRAWER ---------- */
.hamburger {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 200;
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 80px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
/* 開閉してもアイコンは3本線のまま固定(×に変形させない) */

/* ドロワー本体 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 520px;
  height: 100%;
  background: #000;
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__inner {
  padding: 100px 50px 60px;
}

.drawer__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 36px;
}

.drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}


.drawer__list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 0 22px 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}

/* 左に水色の線を2本(=記号風) */
.drawer__list-icon {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  width: 45px;
  pointer-events: none;
}

.drawer__list-icon::before,
.drawer__list-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #00AEFF;
}

.drawer__list a:hover {
  color: var(--color-accent);
}

/* オーバーレイ */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* スクロール固定 */
.drawer-locked {
  overflow: hidden;
}

/* ---------- スクロール追従の「購入はこちら」フロートボタン ---------- */
/* 画面の縦中央に固定 → ヒーロー写真の高さに合わせて常に画面中央付近に表示
   ズーム時もビューポート中央基準なので位置がずれにくい */
.float-cta {
  position: fixed;
  right: 10px;
  top: 64%;
  transform: translateY(-50%);
  width: 150px;
  z-index: 100;
  display: block;
  transition: transform 0.2s;
}

.float-cta:hover {
  transform: translateY(-50%) scale(1.06);
}

.float-cta img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* PC版(1281px以上)はサイト本体の右端付近に配置(右のドロワー領域480px+隙間40px分よけて) */
@media (min-width: 1281px) {
  .float-cta {
    top: 56%;
    right: calc(520px + 16px);
    width: 100px;
  }
}

/* ---------- PC版(1281px以上): 左に背景画像、中央にサイト本体(750px固定)、右にドロワー固定 ----------
   1280px以下(スマホ・タブレット・iPad)は通常のレスポンシブ(ハンバーガーメニュー)に戻る */
@media (min-width: 1281px) {
  body {
    background-color: #000;
    /* 左の黒帯幅(0にすると床が画面左端から始まる) */
    --left-black: 0px;
  }

  /* 床背景を画面全幅に表示(ドロワーの黒は別途drawerに指定) */
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: var(--left-black);
    right: 0;
    height: 100vh;
    background-image: url("../img/pc_bg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #D2DAE1;
    pointer-events: none;
    z-index: -1;
  }

  /* 左の余白に pc_visual.png(ドア+ロゴ+カード)を重ねて表示
     右端をサイト本体の左端(画面右から margin-right 800px + 750px*0.65 ≒ 1288px)に揃える */
  body::before {
    content: "";
    position: fixed;
    top: 120px;
    left: var(--left-black);
    right: calc(480px + 750px * 0.65);
    height: calc(150vh - 50px);
    background-image: url("../img/pc_visual.png");
    background-repeat: no-repeat;
    /* この領域内で中央配置(ズーム時に切れないよう小さめに) */
    background-position: center top;
    background-size: min(60%, 600px) auto;
    pointer-events: none;
    z-index: 0;
  }

  /* サイト本体を画面右側へ寄せ、右端のドロワー領域(480px)+ドロワーとの隙間40px=実効520pxを確保 */
  /* zoom:0.65がmarginにも効くため、520÷0.65≒800pxを指定 */
  /* PC版はサイト本体を 650px 相当(約87%)に縮小して表示 */
  #wrapper {
    margin-right: 800px;
    margin-left: auto;
    zoom: 0.65;
  }

  /* ハンバーガーボタンは非表示 */
  .hamburger {
    display: none;
  }

  /* ドロワーは常時開いた状態で右端付近に固定。右端から余白を空けて床を見せる
     高さは内容に追従(auto)、ただしビューポートを超えないよう max-height で抑える
     (top:250px + max-height が 100vh まで届くよう下余白を詰めた) */
  .drawer {
    transform: translateX(0);
    right: 70px;
    width: 640px;
    max-width: 640px;
    height: auto;
    max-height: calc(100vh - 180px);
    top: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #000;
    padding-right: 20px;
    padding-bottom: 100px;
  }

  .drawer__inner {
    padding: 30px 60px;
  }

  /* PC版用のフォントサイズ・余白調整 */
  .drawer__title {
    font-size: 28px;
    margin-bottom: 18px;
    letter-spacing: 0.12em;
  }

  .drawer__list a {
    font-size: 22px;
    padding: 14px 0 14px 16px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* 左に飛び出すアイコン(水色の線)PC版用 */
  .drawer__list-icon {
    left: -40px;
    width: 30px;
    gap: 5px;
  }

  .drawer__list-icon::before,
  .drawer__list-icon::after {
    height: 2px;
  }

  /* オーバーレイは常に非表示(PC版ではドロワー外をクリックする概念がない) */
  .drawer-overlay {
    display: none;
  }
}
