@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ（GamaQ）
    Version: 2.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =============================================================
   GamaQ Design Tokens
   - 色・フォント・インナー幅・ブレイクポイントはここで一括管理。
   - ブレイクポイントは --gq-bp（= 834px）。値を変える場合は
     このファイル末尾「===== SP (<= 834px) =====」ブロックの
     @media 条件 834px も合わせて置換してください（CSSの仕様で
     @media 内では var() を使えないため、SP定義は1ブロックに集約）。
   ============================================================= */
:root {
	/* Brand palette（仕様書のカラーパレット準拠） */
	--gq-ink: #222b3a;        /* 基調の黒紺（テキスト） */
	--gq-orange: #ff4700;     /* メインオレンジ（CTA・価格） */
	--gq-orange-d: #e83f00;   /* オレンジ hover */
	--gq-amber: #ffad46;      /* アンバー（小見出し） */
	--gq-yellow: #ffc312;     /* 黄（ヒーロー/帯背景） */
	--gq-cream: #fff6d3;      /* クリーム（淡背景・カード） */
	--gq-peach: #fdddbf;      /* ピーチ */
	--gq-gray: #8b8786;       /* グレー（補足テキスト） */
	--gq-gray-l: #f3f3f3;     /* 薄グレー */
	--gq-line: #ececec;       /* 罫線 */
	--gq-white: #fff;

	/* Layout */
	--gq-inner: 960px;        /* コンテンツ最大幅 */
	--gq-gutter: 20px;        /* 左右余白（SP） */
	--gq-pad: 60px;           /* 白カード内側パディング → 本文840px */
	--gq-radius: 16px;
	--gq-bp: 834px;           /* ブレイクポイント（SPデザイン基準幅750px） */
	--gq-header-h: 64px;      /* 共通ヘッダー高さ */

	/* Type */
	--gq-font: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

/* =============================================================
   Base / reset（SWELL本体には影響しない設計）
   ============================================================= */
.gamaq {
	color: var(--gq-ink);
	font-family: var(--gq-font);
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 1.8;
	overflow-x: hidden; /* 長い機種名等での横スクロール防止 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.gamaq *,
.gamaq *::before,
.gamaq *::after { box-sizing: border-box; }

.gamaq img { max-width: 100%; height: auto; vertical-align: bottom; }
.gamaq a { color: inherit; text-decoration: none; transition: opacity .2s ease, background-color .2s ease, color .2s ease; }
.gamaq a:hover { opacity: .85; }
.gamaq h1, .gamaq h2, .gamaq h3, .gamaq h4, .gamaq p, .gamaq ul, .gamaq ol { margin: 0; padding: 0; }
.gamaq ul, .gamaq ol { list-style: none; }
.gamaq :where(h1, h2, h3, h4, p, b, span) { overflow-wrap: anywhere; }

/* SWELLのコンテンツ幅制限を解除して全幅セクションを可能にする */
.single-game_console #content.l-container,
.page-gq-reference #content.l-container,
.single-game_console .l-mainArea,
.page-gq-reference .l-mainArea {
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.single-game_console #main,
.page-gq-reference #main { padding: 0; }

/* 全幅セクション内の中央寄せインナー */
.gq-inner {
	width: min(var(--gq-inner), calc(100% - var(--gq-gutter) * 2));
	margin-inline: auto;
}

/* 共通：セクション小見出し（GamaQの / Price 等） */
.gq-eyebrow {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding-inline: 16px;
	overflow-wrap: anywhere;
}
.gq-eyebrow--amber { color: var(--gq-amber); }
.gq-heading {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
	padding-inline: 16px;
	overflow-wrap: anywhere;
}
.gq-section { padding: 72px 0; }

/* 共通：オレンジCTAピルボタン */
.gq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 64px;
	padding: 0 56px;
	border-radius: 999px;
	background: var(--gq-orange);
	box-shadow: 0 8px 20px rgba(255, 71, 0, .28);
	color: var(--gq-white);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: .04em;
	text-align: center;
}
.gq-btn:hover { background: var(--gq-orange-d); opacity: 1; }
.gq-btn__now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--gq-white);
	color: var(--gq-ink);
	font-size: 13px;
	font-weight: 700;
}

/* =============================================================
   First View（機種ページ ヒーロー）
   ============================================================= */
.gq-fv {
	position: relative;
	overflow: hidden;
	padding: 84px 0 0; /* 上部は透過ヘッダー分を確保 */
	background: var(--gq-yellow);
	text-align: center;
}
.gq-fv__bg {
	position: absolute;
	inset: 0;
	background: url(assets/img/fv-cartridge.webp) center / cover;
	z-index: 0;
}
/* 中央を黄色で塗りつぶし、左右だけカートリッジ柄を見せるベール */
.gq-fv__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(255, 195, 18, 0) 0,
		var(--gq-yellow) 19%,
		var(--gq-yellow) 81%,
		rgba(255, 195, 18, 0) 100%);
}
.gq-fv__inner { position: relative; z-index: 1; }
.gq-fv__name {
	font-size: 60px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: .02em;
}
.gq-fv__kana {
	margin-top: 8px;
	font-size: 20px;
	font-weight: 700;
}
.gq-fv__image {
	margin: 18px auto 8px;
	max-width: 320px;
}
.gq-fv__image img { max-height: 160px; width: auto; object-fit: contain; }
.gq-fv__banner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 360px;
	height: 56px;
	margin: 10px auto 0;
	padding: 0 28px;
	background: var(--gq-white);
	border-radius: 999px;
	box-shadow: 0 4px 0 rgba(34, 43, 58, .12);
	font-size: 28px;
	font-weight: 900;
}
.gq-fv__copy {
	margin-top: 16px;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.15;
}
.gq-fv__copy small {
	display: block;
	font-size: 34px;
	font-weight: 900;
}
.gq-fv__lead {
	max-width: 840px;
	margin: 20px auto 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
}
/* FVバッジ（箱なしOK / 付属品なしOK / 故障品OK） */
.gq-fv__badges {
	display: flex;
	gap: 11px;
	justify-content: center;
	max-width: 840px;
	margin: 28px auto 0;
	padding-bottom: 36px;
}
.gq-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 1;
	min-height: 80px;
	background: var(--gq-white);
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(34, 43, 58, .08);
}
.gq-badge img { height: 36px; width: auto; }
.gq-badge b {
	color: var(--gq-orange);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
}
.gq-badge b span { display: block; font-size: 20px; }

/* FV下：段ボール無料 + 査定CTA（クリーム帯） */
.gq-apply {
	padding: 28px 0 56px;
	background: var(--gq-cream);
	text-align: center;
}
.gq-apply__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
}
.gq-apply__note img { height: 28px; }
.gq-apply__note .em { color: var(--gq-orange); }
.gq-apply__note::before,
.gq-apply__note::after {
	content: "";
	width: 2px;
	height: 22px;
	background: var(--gq-orange);
}
.gq-apply__note::before { transform: rotate(-22deg); }
.gq-apply__note::after { transform: rotate(22deg); }

/* =============================================================
   参考買取価格（3パネル：本体 / ソフト / 周辺機器）
   ============================================================= */
.gq-prices { padding: 64px 0; background: var(--gq-white); }
.gq-prices__head { margin-bottom: 28px; text-align: center; }
.gq-panel {
	margin-top: 24px;
	padding: 28px var(--gq-pad);
	background: var(--gq-white);
	border: 1px solid var(--gq-line);
	border-radius: var(--gq-radius);
	box-shadow: 0 2px 12px rgba(34, 43, 58, .05);
}
.gq-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.gq-panel__title { font-size: 13px; font-weight: 700; color: var(--gq-gray); }
.gq-panel__title b { display: block; font-size: 22px; color: var(--gq-ink); }
.gq-sort {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 16px;
	border: 1px solid var(--gq-amber);
	border-radius: 999px;
	background: var(--gq-cream);
	color: var(--gq-ink);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}
.gq-sort select {
	border: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
}
.gq-price-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 24px;
	max-height: 540px;
	overflow-y: auto;
	padding-right: 4px;
}
.gq-price-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gq-price-item__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	background: var(--gq-gray-l);
	border-radius: 8px;
	overflow: hidden;
}
.gq-price-item__media img { width: 100%; height: 100%; object-fit: contain; }
.gq-price-item__price {
	display: flex;
	align-items: baseline;
	gap: 3px;
	color: var(--gq-orange);
	font-weight: 900;
}
.gq-price-item__price .yen { font-size: 24px; }
.gq-price-item__price .unit { font-size: 14px; }
.gq-price-item__price .num { font-size: 24px; }
.gq-price-item__name { font-size: 13px; font-weight: 700; line-height: 1.5; }
.gq-price-item__acc { font-size: 11px; color: var(--gq-gray); line-height: 1.5; }
.gq-price-item__date { font-size: 10px; color: var(--gq-gray); }
.gq-empty { color: var(--gq-gray); font-weight: 700; }

/* No Image */
.gq-noimage {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--gq-gray);
	font-size: 12px;
	font-weight: 700;
}

/* =============================================================
   買取はこちらCTA帯（黄背景・白カード）
   ============================================================= */
.gq-ctaband { padding: 56px 0; background: var(--gq-yellow); }
.gq-ctaband__card {
	max-width: 720px;
	margin: 0 auto;
	padding: 32px;
	background: var(--gq-white);
	border-radius: var(--gq-radius);
	box-shadow: 0 10px 30px rgba(34, 43, 58, .12);
	text-align: center;
}
.gq-ctaband__lead { font-size: 16px; font-weight: 700; }
.gq-ctaband__title { margin: 6px 0 16px; font-size: 26px; font-weight: 900; }
.gq-ctaband__image { max-width: 240px; margin: 0 auto 16px; }
.gq-ctaband__badges {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 20px;
}
.gq-ctaband__badges .gq-badge { min-height: 60px; }
.gq-ctaband__badges .gq-badge b { font-size: 16px; }
.gq-ctaband__badges .gq-badge b span { font-size: 13px; }

/* =============================================================
   こんな〜でも高く買取できます（訴求3カード）
   ============================================================= */
.gq-reasons { padding: 64px 0; background: var(--gq-white); }
.gq-reasons__lead {
	max-width: 840px;
	margin: 16px auto 0;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}
.gq-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	max-width: 960px;
	margin: 32px auto 0;
}
.gq-reason {
	padding: 22px 18px;
	background: var(--gq-cream);
	border-radius: 14px;
	text-align: center;
}
.gq-reason__title {
	margin-bottom: 16px;
	color: var(--gq-orange);
	font-size: 20px;
	font-weight: 700;
}
.gq-reason__icons {
	display: flex;
	justify-content: center;
	gap: 14px;
}
.gq-reason__icon { width: 80px; }
.gq-reason__circle {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin: 0 auto 6px;
	background: var(--gq-ink);
	border-radius: 50%;
}
.gq-reason__circle img { width: 26px; height: 26px; object-fit: contain; }
.gq-reason__icon span { font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.gq-reason__icon--free img { width: 54px; height: auto; } /* キズ・汚れ等 直アイコン */
.gq-inquiry {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin: 28px auto 0;
	padding: 14px 40px;
	width: max-content;
	max-width: 100%;
	background: var(--gq-cream);
	border-radius: 999px;
}
.gq-inquiry small { font-size: 16px; font-weight: 700; }
.gq-inquiry b { font-size: 24px; font-weight: 700; }

/* =============================================================
   買取実績（カルーセル）
   ============================================================= */
.gq-results { padding: 64px 0; background: var(--gq-yellow); }
.gq-results__head { margin-bottom: 28px; }
.gq-carousel { position: relative; }
.gq-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, 1fr);
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px 0 16px;
	scrollbar-width: none;
}
.gq-track::-webkit-scrollbar { display: none; }
.gq-result {
	scroll-snap-align: start;
	background: var(--gq-white);
	border-radius: var(--gq-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(34, 43, 58, .1);
}
.gq-result__media {
	aspect-ratio: 16 / 10;
	background: var(--gq-gray-l);
}
.gq-result__media img { width: 100%; height: 100%; object-fit: cover; }
.gq-result__body { padding: 16px 18px 20px; }
.gq-result__price { color: var(--gq-orange); font-size: 14px; font-weight: 700; }
.gq-result__price b { font-size: 24px; }
.gq-result__title { margin-top: 4px; font-size: 14px; font-weight: 700; line-height: 1.5; }
.gq-result__comment { margin-top: 6px; font-size: 12px; color: var(--gq-gray); }
.gq-carousel__nav {
	position: absolute;
	top: 38%;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--gq-ink);
	color: var(--gq-white);
	font-size: 20px;
	cursor: pointer;
	border: 0;
}
.gq-carousel__nav--prev { left: -10px; }
.gq-carousel__nav--next { right: -10px; }
.gq-carousel__dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
}
.gq-carousel__dots button {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background: rgba(34, 43, 58, .25);
	cursor: pointer;
}
.gq-carousel__dots button.is-active { background: var(--gq-orange); }

/* =============================================================
   宅配買取の流れ（白パネル / 5ステップ）
   ============================================================= */
.gq-flow { padding: 64px 0; background: var(--gq-yellow); }
.gq-flow__panel {
	max-width: 960px;
	margin: 32px auto 0;
	padding: 40px 30px;
	background: var(--gq-cream);
	border-radius: var(--gq-radius);
}
.gq-flow__list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 8px;
}
.gq-step {
	position: relative;
	flex: 1;
	max-width: 150px;
	padding: 30px 8px 18px;
	background: var(--gq-white);
	border-radius: 12px;
	text-align: center;
}
.gq-step__num {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	background: var(--gq-orange);
	color: var(--gq-white);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
}
.gq-step__label { color: var(--gq-orange); font-size: 18px; font-weight: 700; }
.gq-step__icon {
	display: grid;
	place-items: center;
	height: 70px;
	margin-top: 8px;
}
.gq-step__icon img { max-height: 64px; width: auto; }
.gq-step__arrow {
	align-self: center;
	color: var(--gq-orange);
	font-size: 18px;
	font-weight: 900;
}

/* =============================================================
   よくある質問（アコーディオン）
   ============================================================= */
.gq-faq { padding: 64px 0; background: var(--gq-cream); }
.gq-faq__list { max-width: 840px; margin: 28px auto 0; display: grid; gap: 12px; }
.gq-faq details {
	background: var(--gq-white);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(34, 43, 58, .06);
}
.gq-faq summary {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 52px 18px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}
.gq-faq summary::-webkit-details-marker { display: none; }
.gq-faq summary::before { content: "Q."; color: var(--gq-orange); font-weight: 900; }
.gq-faq summary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--gq-gray);
	border-bottom: 2px solid var(--gq-gray);
	transform: translateY(-65%) rotate(45deg);
	transition: transform .2s ease;
}
.gq-faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.gq-faq__body { padding: 0 20px 20px; color: var(--gq-ink); line-height: 1.85; }
.gq-faq__more { display: flex; justify-content: center; margin-top: 22px; }
.gq-faq__more a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 28px;
	border: 1px solid var(--gq-ink);
	border-radius: 999px;
	background: var(--gq-white);
	font-size: 14px;
	font-weight: 700;
}

/* =============================================================
   機種について（説明文）
   ============================================================= */
.gq-about { padding: 64px 0; background: var(--gq-cream); }
.gq-about__box {
	max-width: 960px;
	margin: 24px auto 0;
	padding: 40px var(--gq-pad);
	background: var(--gq-white);
	border: 2px solid var(--gq-amber);
	border-radius: var(--gq-radius);
}
.gq-about__box h3 {
	margin: 24px 0 10px;
	font-size: 18px;
	font-weight: 800;
}
.gq-about__box p { font-size: 15px; line-height: 1.95; }
.gq-about__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
}
.gq-about__cta p { font-size: 18px; font-weight: 700; }

/* =============================================================
   関連するゲーム
   ============================================================= */
.gq-related { padding: 64px 0; background: var(--gq-white); }
.gq-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 960px;
	margin: 28px auto 0;
}
.gq-related__card {
	background: var(--gq-white);
	border: 1px solid var(--gq-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(34, 43, 58, .06);
}
.gq-related__media { aspect-ratio: 16 / 10; background: var(--gq-gray-l); }
.gq-related__media img { width: 100%; height: 100%; object-fit: cover; }
.gq-related__card b {
	display: block;
	padding: 14px 16px;
	color: var(--gq-orange);
	font-size: 15px;
	font-weight: 700;
}

/* =============================================================
   フッター上（パンくず / ナビピル / 機種一覧）
   ============================================================= */
.gq-foot { padding: 48px 0 8px; background: var(--gq-cream); }
.gq-breadcrumb {
	max-width: 960px;
	margin: 0 auto 18px;
	font-size: 10px;
	color: var(--gq-ink);
}
.gq-breadcrumb a { color: var(--gq-orange); }
.gq-footnav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
}
.gq-footnav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 240px;
	height: 28px;
	padding: 0 16px;
	border: 1px solid var(--gq-ink);
	border-radius: 999px;
	background: var(--gq-white);
	font-size: 14px;
	font-weight: 700;
}
.gq-footnav a::before { content: "›"; color: var(--gq-orange); font-weight: 900; }
.gq-consoles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 30px;
	max-width: 960px;
	margin: 0 auto;
	padding-top: 12px;
}
.gq-consoles ul + ul { border-left: 1px solid rgba(34, 43, 58, .15); padding-left: 30px; }
.gq-consoles li { font-size: 12px; line-height: 2.05; }
.gq-consoles a:hover { color: var(--gq-orange); opacity: 1; }

/* フローティング「買取価格を調べる」ボタン */
.gq-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 26px;
	border-radius: 14px;
	background: var(--gq-orange);
	box-shadow: 0 8px 24px rgba(255, 71, 0, .4);
	color: var(--gq-white);
	text-align: center;
}
.gq-float:hover { background: var(--gq-orange-d); opacity: 1; }
.gq-float b { font-size: 16px; font-weight: 900; }
.gq-float small { font-size: 10px; opacity: .92; }

/* =============================================================
   参考買取価格について（固定ページ）
   ============================================================= */
.gq-ref-hero {
	padding: 84px 0 64px; /* 上部は透過ヘッダー分を確保 */
	background: var(--gq-yellow);
	text-align: center;
}
.gq-ref-hero__title { font-size: 60px; font-weight: 900; letter-spacing: .02em; }
.gq-ref-hero__en { margin-top: 8px; font-size: 20px; font-weight: 700; }
.gq-ref-hero__card {
	max-width: 960px;
	margin: 32px auto 0;
	padding: 40px var(--gq-pad);
	background: var(--gq-white);
	border-radius: var(--gq-radius);
	box-shadow: 0 10px 30px rgba(34, 43, 58, .1);
	text-align: center;
}
.gq-ref-hero__card img { width: 200px; margin: 0 auto 8px; }
.gq-ref-hero__card h2 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.gq-ref-hero__card p { font-size: 15px; line-height: 1.9; text-align: left; }
.gq-ref-sec { padding: 56px 0; }
.gq-ref-sec:nth-of-type(even) { background: var(--gq-cream); }
.gq-ref-sec__intro {
	max-width: 960px;
	margin: 14px auto 0;
	font-size: 15px;
	line-height: 1.9;
	text-align: center;
}
.gq-notice {
	max-width: 960px;
	margin: 28px auto 0;
	padding: 36px var(--gq-pad);
	background: var(--gq-white);
	border-radius: var(--gq-radius);
	box-shadow: 0 4px 16px rgba(34, 43, 58, .06);
}
.gq-notice__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 900;
}
.gq-notice__head img { width: 28px; }
.gq-notice__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.gq-notice__label {
	display: block;
	height: 28px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--gq-gray-l);
	color: var(--gq-gray);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 28px;
}
.gq-notice ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}
.gq-notice ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .5em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gq-orange);
}
.gq-notice__sub { display: block; font-weight: 500; }
.gq-notice__note { margin-top: 12px; font-size: 12px; color: var(--gq-gray); line-height: 1.7; }
.gq-notice__chips {
	display: inline-block;
	margin: 8px 0;
	padding: 6px 14px;
	background: var(--gq-gray-l);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}
.gq-ref-note { max-width: 960px; margin: 14px auto 0; font-size: 13px; color: var(--gq-orange); }

/* =============================================================
   ===== SP (<= 834px) =====  ※ブレイクポイント変更時はここの 834px を置換
   ============================================================= */
@media (max-width: 834px) {
	.gq-section { padding: 48px 0; }
	.gq-eyebrow { font-size: 15px; }
	.gq-heading { font-size: 24px; }
	.gq-btn { width: 100%; max-width: 420px; min-height: 58px; padding: 0 20px; font-size: 19px; }

	/* FV */
	.gq-fv { padding: 64px 0 0; }
	.gq-ref-hero { padding-top: 64px; }
	.gq-header__inner { padding: 0 18px; }
	.gq-fv__bg::after { background: linear-gradient(90deg, rgba(255,195,18,0) 0, var(--gq-yellow) 12%, var(--gq-yellow) 88%, rgba(255,195,18,0) 100%); }
	.gq-fv__name { font-size: 30px; line-height: 1.2; }
	.gq-fv__kana { font-size: 16px; }
	.gq-fv__banner { min-width: 0; width: calc(100% - 40px); font-size: 20px; height: 48px; }
	.gq-fv__copy { font-size: 34px; }
	.gq-fv__copy small { font-size: 22px; }
	.gq-fv__lead { font-size: 14px; padding: 0 20px; }
	.gq-fv__badges { flex-wrap: wrap; gap: 8px; padding: 0 16px 28px; }
	.gq-badge { min-height: 64px; }
	.gq-badge b { font-size: 18px; }
	.gq-badge b span { font-size: 15px; }

	/* prices */
	.gq-panel { padding: 22px 18px; }
	.gq-panel__head { flex-direction: column; align-items: flex-start; gap: 10px; }
	.gq-price-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-height: 460px; }

	/* CTA band */
	.gq-ctaband__card { padding: 24px 18px; }
	.gq-ctaband__title { font-size: 20px; }
	.gq-ctaband__badges { flex-wrap: wrap; }

	/* reasons */
	.gq-reasons__grid { grid-template-columns: 1fr; gap: 16px; }

	/* results */
	.gq-track { grid-auto-columns: 78%; }
	.gq-carousel__nav--prev { left: 2px; }
	.gq-carousel__nav--next { right: 2px; }

	/* flow：2段折返し */
	.gq-flow__panel { padding: 28px 16px; }
	.gq-flow__list { flex-wrap: wrap; gap: 18px 6px; }
	.gq-step { max-width: none; flex: 0 0 calc(33.333% - 6px); }
	.gq-step__arrow { display: none; }

	/* about / faq / related */
	.gq-about__box,
	.gq-ref-hero__card,
	.gq-notice { padding: 24px 18px; }
	.gq-related__grid { grid-template-columns: 1fr 1fr; gap: 12px; }

	/* footer */
	.gq-consoles { grid-template-columns: 1fr; gap: 0; }
	.gq-consoles ul + ul { border-left: 0; padding-left: 0; border-top: 1px solid rgba(34,43,58,.12); padding-top: 6px; margin-top: 6px; }

	/* reference page */
	.gq-ref-hero__title { font-size: 34px; }
	.gq-notice__cols { grid-template-columns: 1fr; gap: 20px; }
	.gq-ref-hero__card p { font-size: 14px; }
}

@media (max-width: 480px) {
	.gq-related__grid { grid-template-columns: 1fr; }
	.gq-price-list { grid-template-columns: 1fr; }
	.gq-step { flex: 0 0 calc(50% - 6px); }
}

/* =============================================================
   サイト共通ヘッダー / フッター（GamaQ）— SWELL chromeを置換
   ※ wp_head()/wp_footer() は header.php/footer.php で温存（OGP・構造化データ・高速化・SEOは不変）
   ============================================================= */
.gq-header {
	position: absolute;       /* 透過してヒーローに重ねる（白バーではない） */
	inset: 0 0 auto 0;
	z-index: 1000;
	background: transparent;
	font-family: var(--gq-font);
	color: var(--gq-ink);
}
.gq-drawer { font-family: var(--gq-font); }
.gq-header a, .gq-drawer a { color: var(--gq-ink); text-decoration: none; }
.gq-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;              /* 全幅：ロゴは左端・ハンバーガーは右端 */
	height: var(--gq-header-h);
	padding: 0 30px;
}
.gq-header__logo img { display: block; height: 34px; width: auto; }
.gq-header__toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.gq-header__toggle img { width: 26px; height: auto; pointer-events: none; }

.gq-drawer {
	position: fixed;
	inset: var(--gq-header-h) 0 auto 0;
	z-index: 999;
	background: var(--gq-white);
	border-top: 1px solid var(--gq-line);
	box-shadow: 0 16px 28px rgba(34, 43, 58, .14);
	transform: translateY(-12px);
	opacity: 0;
	visibility: hidden;
	transition: transform .22s ease, opacity .22s ease, visibility .22s;
}
.gq-drawer.is-open { transform: none; opacity: 1; visibility: visible; }
.gq-drawer__inner {
	display: flex;
	flex-direction: column;
	width: min(var(--gq-inner), calc(100% - var(--gq-gutter) * 2));
	margin-inline: auto;
	padding: 8px 0 24px;
}
.gq-drawer a {
	padding: 15px 8px;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid var(--gq-line);
}
.gq-drawer a:hover { color: var(--gq-orange); opacity: 1; }
.gq-drawer .gq-btn {
	justify-content: center;
	margin-top: 18px;
	border-bottom: 0;
	color: var(--gq-white);
}
.gq-drawer .gq-btn:hover { color: var(--gq-white); }

/* サイト共通フッター下部（ロゴ・ポリシー・コピーライト） */
.gq-sitefooter { background: var(--gq-cream); }
.gq-sitefooter__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 28px 20px 40px;
	border-top: 1px solid rgba(34, 43, 58, .1);
}
.gq-sitefooter__logo img { height: 46px; width: auto; }
.gq-sitefooter__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	justify-content: center;
}
.gq-sitefooter__links a { font-size: 13px; font-weight: 700; }
.gq-sitefooter__links a:hover { color: var(--gq-orange); opacity: 1; }
.gq-sitefooter__copy { font-size: 12px; color: var(--gq-gray); }

@media (max-width: 834px) {
	:root { --gq-header-h: 56px; }
	.gq-header__logo img { height: 28px; }
	.gq-sitefooter__logo img { height: 40px; }
}
