@charset "UTF-8";
/*
 * 有名人レビュー サイト共通スタイル
 *
 * 配色は :root のカスタムプロパティに集約し、
 * prefers-color-scheme でダークモードへ自動追従する。
 * 色を変えたいときは基本的にこのトークンだけを触ればよい。
 */

/* =========================================================
   1. デザイントークン
   ========================================================= */
:root {
	/* 面と背景 */
	--bg:            #f4f5f7;
	--surface:       #ffffff;
	--surface-2:     #f9fafb;
	--surface-hover: #f2f4f7;
	--border:        #e4e7ec;
	--border-strong: #d0d5dd;

	/* 文字 */
	--text:        #2c313a;
	--text-sub:    #5a6472;
	--text-muted:  #8a94a3;

	/* アクセント（ハートのピンク） */
	--accent:        #ff4d8d;
	--accent-hover:  #f03b7c;
	--accent-weak:   #fff1f6;
	--accent-border: #ffd3e3;
	--on-accent:     #ffffff;

	/* 評価ハート */
	--heart-on:  #ff4d8d;
	--heart-off: #d9dde3;

	/* 性別 */
	--male:   #3b7fd4;
	--female: #e0417c;

	/* 状態色 */
	--danger:      #e5484d;
	--danger-weak: #fff0f0;
	--success:     #0f9d76;
	--info-weak:   #fff8e6;
	--info-border: #f2e2b8;

	/* 影・角丸 */
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
	--shadow:    0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
	--shadow-md: 0 4px 12px rgba(16, 24, 40, .08);
	--radius:    14px;
	--radius-sm: 9px;

	/* 寸法 */
	--header-h:    60px;
	--content-max: 680px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg:            #14161a;
		--surface:       #1e2128;
		--surface-2:     #23272f;
		--surface-hover: #272b34;
		--border:        #2f343d;
		--border-strong: #3c424d;

		--text:        #e6e9ee;
		--text-sub:    #b3bbc7;
		--text-muted:  #8b94a1;

		/* 暗い背景では彩度を落とし、明度を上げる */
		--accent:        #ff6fa3;
		--accent-hover:  #ff87b3;
		--accent-weak:   #2a1d25;
		--accent-border: #4a2a38;
		--on-accent:     #1a1013;

		--heart-on:  #ff6fa3;
		--heart-off: #3b414b;

		--male:   #6ba5f0;
		--female: #ff7aab;

		--danger:      #ff7b7f;
		--danger-weak: #2b1b1c;
		--success:     #3ecfa5;
		--info-weak:   #2a2519;
		--info-border: #453d27;

		--shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
		--shadow:    0 1px 3px rgba(0, 0, 0, .45);
		--shadow-md: 0 6px 18px rgba(0, 0, 0, .5);
	}
}

/* =========================================================
   2. リセットと基本
   ========================================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	list-style: none;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	/* 日本語が読みやすい OS 標準フォントを優先する */
	font-family: system-ui, -apple-system, "Hiragino Sans",
	             "Hiragino Kaku Gothic ProN", "Noto Sans JP",
	             "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.bold { font-weight: 700; }

/* =========================================================
   3. ヘッダー / ナビゲーション
   ========================================================= */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-h);
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	/* 半透明＋ぼかしは環境によって描画されないことがあるため、
	   確実に表示される不透明な背景にする。 */
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; line-height: 0; }

.logo img {
	width: auto;
	height: 30px;
	display: block;
}

/* ロゴPNGは背景が白のため、そのままダークモードに置くと白い箱になる。
   反転させると今度は黒い箱になるので、反転したうえで screen 合成し、
   黒くなった背景を透過させて文字だけを残す。 */
@media (prefers-color-scheme: dark) {
	.logo img {
		filter: invert(1);
		mix-blend-mode: screen;
	}
}

.nav-menu ul {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-menu a {
	display: block;
	padding: 8px 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-sub);
	border-radius: 999px;
	transition: background-color .15s, color .15s;
}

.nav-menu a:hover { background: var(--surface-hover); color: var(--text); }

/* 「レビューする」だけは行動を促すボタンにする */
.nav-menu li:first-child a {
	background: var(--accent);
	color: var(--on-accent);
	box-shadow: var(--shadow-sm);
}

.nav-menu li:first-child a:hover { background: var(--accent-hover); color: var(--on-accent); }

/* ---- ハンバーガー（スマートフォン） ---- */
.checkbox { display: none; }

.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	position: relative;
	cursor: pointer;
	border-radius: 10px;
	flex: 0 0 auto;
}

.hamburger .bar {
	position: absolute;
	left: 11px;
	top: 50%;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform .25s, opacity .2s;
}

.hamburger .bar-top    { transform: translateY(-7px); }
.hamburger .bar-middle { transform: translateY(0); }
.hamburger .bar-bottom { transform: translateY(5px); }

@media screen and (max-width: 760px) {
	.hamburger { display: block; }

	.checkbox:checked ~ .hamburger .bar-middle { opacity: 0; }
	.checkbox:checked ~ .hamburger .bar-top    { transform: rotate(45deg) translateY(-1px); }
	.checkbox:checked ~ .hamburger .bar-bottom { transform: rotate(-45deg) translateY(-1px); }

	.nav-menu {
		position: fixed;
		top: var(--header-h);
		right: 0;
		width: min(78vw, 300px);
		height: calc(100dvh - var(--header-h));
		padding: 20px 16px;
		background: var(--surface);
		border-left: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		transform: translateX(100%);
		transition: transform .28s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
	}

	.checkbox:checked ~ .nav-menu { transform: translateX(0); }

	.nav-menu ul { display: block; }
	.nav-menu li { margin-bottom: 10px; }

	.nav-menu a {
		padding: 14px 16px;
		font-size: 16px;
		border-radius: var(--radius-sm);
		background: var(--surface-2);
		text-align: center;
	}

	.nav-menu li:first-child a { background: var(--accent); }
}

/* =========================================================
   4. レイアウト
   ========================================================= */
.contentsArea {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 14px;
}

main { width: 100%; }

.mainContents { padding: 20px 0 40px; }

/* 見出し */
.h1_simple1 {
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: .02em;
	margin: 8px 0 20px;
	color: var(--text);
}

.midashi-1 {
	position: relative;
	padding: 8px 0 18px;
	text-align: center;
	font-size: 21px;
	font-weight: 700;
}

.midashi-1::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: calc(50% - 22px);
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: var(--accent);
}

.personaNameTitle {
	padding: 14px 0 6px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.dashed-border {
	border-bottom: 1px dashed var(--border-strong);
	margin: 4px 0;
}

/* =========================================================
   5. レビュー一覧（カード）
   ========================================================= */
.commentList {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 0;
}

.commentList > li {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 16px 16px 12px;
	overflow: hidden;
}

/* 人物名（バッジ） */
.comment-personaName {
	margin-bottom: 10px;
	font-size: 0;
}

.comment-personaName a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent);
	background: var(--accent-weak);
	border: 1px solid var(--accent-border);
	border-radius: 999px;
	transition: background-color .15s;
}

.comment-personaName a:hover { background: var(--accent-border); }

/* 評価とタイトル */
.comment-ratingScore {
	display: block;
	font-size: 17px;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.comment-reviewTitle {
	display: block;
	margin: 0 0 10px;
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.55;
	color: var(--text);
}

.comment-rating { font-size: 18px; line-height: 1; }

/* 本文 */
.comment-sentence {
	font-size: 15px;
	line-height: 1.85;
	color: var(--text-sub);
	padding: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

/* 投稿者情報 */
.comment-postArea {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

.comment-postName {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-sub);
	text-align: right;
}

.comment-postTime {
	margin: 0;
	font-size: 12px;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
}

.maleColor   { color: var(--male); }
.femaleColor { color: var(--female); }

/* ハート */
.gray-heart { color: var(--heart-off); }
.pink-heart { color: var(--heart-on); }

/* ---- 長い本文の折りたたみ（一覧のみ） ---- */
.js-clamp { position: relative; }

.js-clamp.is-clamped .comment-sentence {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


.clampToggle {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 7px 12px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--accent);
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 999px;
	cursor: pointer;
	transition: background-color .15s, border-color .15s;
}

.clampToggle:hover {
	background: var(--accent-weak);
	border-color: var(--accent-border);
}

/* =========================================================
   6. 人物ページ
   ========================================================= */
.averageRatingScore {
	text-align: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 18px 16px 14px;
	margin-bottom: 16px;
}

.averageRatingScore p {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: .04em;
	margin-bottom: 6px;
}

.averageRatingScore .scoreValue {
	display: block;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}

.averageRatingScore .scoreUnit {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-muted);
	margin-left: 2px;
}

/* 半端な評価も表せるハート表示 */
.rating-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	margin-top: 8px;
	font-size: 26px;
	line-height: 1;
}

.heart-icon-wrapper {
	position: relative;
	width: 1em;
	height: 1em;
	overflow: hidden;
	display: inline-block;
}

.heart-icon-wrapper .fa-heart {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.heart-icon-wrapper .regular { color: var(--heart-off); z-index: 1; }

.heart-icon-wrapper .solid {
	color: var(--heart-on);
	z-index: 2;
	overflow: hidden;
	white-space: nowrap;
	transition: width .35s ease-out;
}

/* レビュー / 掲示板の切り替え */
.contentsGenreSelect {
	display: flex;
	gap: 6px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 4px;
	margin-bottom: 16px;
}

.contentsGenreSelect > li {
	flex: 1;
	text-align: center;
	padding: 8px 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-muted);
	border-radius: 999px;
	cursor: pointer;
}

.contentsGenreSelect > li:first-child {
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow-sm);
}

/* 人物のカテゴリ */
.personaCategoryList {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 10px 0;
}

.personaCategoryList li {
	padding: 3px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-sub);
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 999px;
}

/* =========================================================
   7. ページャー
   ========================================================= */
.mainContentsListBox { margin-top: 22px; }

.pagerNextPrevButton {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
}

a.pagerButton {
	display: inline-block;
	flex: 1;
	max-width: 200px;
	padding: 13px 16px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	color: var(--on-accent);
	background: var(--accent);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	transition: background-color .15s;
}

a.pagerButton:hover { background: var(--accent-hover); }

ul.pagerListBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

li.etcPage, li.currentPage, li.startEndPage {
	display: inline-block;
	min-width: 38px;
	padding: 7px 10px;
	text-align: center;
	font-weight: 700;
	border-radius: var(--radius-sm);
	font-variant-numeric: tabular-nums;
}

li.etcPage, li.startEndPage {
	color: var(--text-sub);
	background: var(--surface);
	border: 1px solid var(--border);
	transition: background-color .15s, border-color .15s;
}

a:hover > li.etcPage, a:hover > li.startEndPage {
	background: var(--accent-weak);
	border-color: var(--accent-border);
	color: var(--accent);
}

li.currentPage {
	color: var(--on-accent);
	background: var(--accent);
	border: 1px solid var(--accent);
}

/* =========================================================
   8. フォーム
   ========================================================= */
.Form {
	max-width: 100%;
	margin: 0 auto;
}

.Form-Item { padding: 16px 0; }

.Form-Item-Label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
}

.Form-Item-Label.isMsg { margin-top: 0; }

.Form-Item-Label-Required,
.Form-Item-Label-Any {
	display: inline-block;
	width: auto;
	padding: 3px 10px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .04em;
	color: #fff;
	border-radius: 999px;
	margin: 0;
}

.Form-Item-Label-Required { background: var(--accent); color: var(--on-accent); }
.Form-Item-Label-Any      { background: var(--text-muted); }

.Form-Item-Input,
.Form-Item-Textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 16px; /* iOS で拡大されないよう 16px 以上にする */
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	transition: border-color .15s, box-shadow .15s;
	margin: 0;
	height: auto;
}

.Form-Item-Textarea {
	min-height: 220px;
	line-height: 1.8;
	resize: vertical;
}

.Form-Item-Input:focus,
.Form-Item-Textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-weak);
}

.Form-Item-Input::placeholder,
.Form-Item-Textarea::placeholder { color: var(--text-muted); }

/* 送信ボタン */
.cp_button06 {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	margin: 10px auto;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: var(--on-accent);
	background: var(--accent);
	border: 0;
	border-radius: 999px;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: background-color .15s, transform .1s;
}

.cp_button06:hover  { background: var(--accent-hover); }
.cp_button06:active { transform: translateY(1px); }

/* 名前チェックボタン */
.checkButton {
	display: inline-block;
	width: 100%;
	padding: 13px 18px;
	margin: 12px 0;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	color: var(--text);
	background: var(--surface-2);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background-color .15s, border-color .15s;
}

.checkButton:hover { background: var(--surface-hover); border-color: var(--accent); }

/* 好きレベル（ハートのラジオ） */
.stars span {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap: 2px;
}

.stars input[type='radio'] { display: none; }

.stars label {
	color: var(--heart-off);
	font-size: 40px;
	line-height: 1;
	padding: 0 4px;
	cursor: pointer;
	transition: color .12s, transform .12s;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input[type='radio']:checked ~ label { color: var(--heart-on); }

.stars label:hover { transform: scale(1.12); }

.ratingScoreWord {
	font-weight: 700;
	text-align: center;
	color: var(--accent);
	font-size: 14px;
}

/* 性別（インラインラジオ） */
.radio-inline__input {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.radio-inline__label {
	display: inline-block;
	padding: 10px 22px;
	margin-right: 10px;
	font-weight: 700;
	font-size: 15px;
	color: var(--text-sub);
	background: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	cursor: pointer;
	transition: all .15s;
}

.radio-inline__input:checked + .radio-inline__label {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--on-accent);
}

/* セレクトボックス */
.selectbox-6 { position: relative; display: inline-block; }

.selectbox-6::before,
.selectbox-6::after {
	position: absolute;
	right: 16px;
	width: 9px;
	height: 6px;
	background-color: var(--text-muted);
	content: '';
	pointer-events: none;
}

.selectbox-6::before { top: calc(50% - 8px);    clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.selectbox-6::after  { bottom: calc(50% - 8px); clip-path: polygon(0 0, 50% 100%, 100% 0); }

.selectbox-6 select {
	appearance: none;
	-webkit-appearance: none;
	min-width: 240px;
	height: auto;
	padding: 12px 44px 12px 14px;
	font-size: 16px;
	color: var(--text);
	background-color: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.selectbox-6 select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-weak);
}

/* お問い合わせのラジオ */
.cp_ipradio01 {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cp_ipradio01 input[type=radio] { display: none; }

.cp_ipradio01 label {
	position: relative;
	display: flex;
	align-items: center;
	padding: 11px 14px 11px 42px;
	font-weight: 600;
	font-size: 15px;
	color: var(--text-sub);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background-color .15s, color .15s;
}

.cp_ipradio01 label::before {
	position: absolute;
	left: 14px;
	content: '';
	width: 10px;
	height: 10px;
	border: 2px solid var(--border-strong);
	border-radius: 50%;
	transition: border-color .15s, background-color .15s;
}

.cp_ipradio01 label:hover { background: var(--surface-hover); color: var(--text); }

.cp_ipradio01 input:checked + label { color: var(--accent); font-weight: 700; }

.cp_ipradio01 input:checked + label::before {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: inset 0 0 0 2px var(--surface);
}

.cp_ipradio01 input:disabled + label { color: var(--text-muted); cursor: not-allowed; }

/* =========================================================
   9. 通知・囲み枠
   ========================================================= */
.infoArea {
	padding: 14px 16px;
	margin: 10px 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-sub);
	background: var(--info-weak);
	border: 1px solid var(--info-border);
	border-radius: var(--radius-sm);
}

.info-title { font-weight: 700; color: var(--text); }

.warningArea {
	padding: 14px 16px;
	margin: 12px 0;
	font-weight: 600;
	color: var(--danger);
	background: var(--danger-weak);
	border: 1px solid var(--danger);
	border-radius: var(--radius-sm);
}

.warningTitle {
	color: var(--danger);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 4px;
}

.warningMessage { font-weight: 700; color: var(--danger); }

.trueResult, .falseResult {
	padding: 12px 14px;
	margin: 10px 0;
	font-weight: 700;
	font-size: 14.5px;
	border-radius: var(--radius-sm);
}

.trueResult  { color: var(--success); background: color-mix(in srgb, var(--success) 10%, transparent); }
.falseResult { color: var(--danger);  background: var(--danger-weak); }

.errorMessage, .errorResultMessage {
	padding: 14px 16px;
	font-weight: 700;
	color: var(--danger);
	background: var(--danger-weak);
	border: 1px solid var(--danger);
	border-radius: var(--radius-sm);
}

.successMessage, .successResultMessage {
	padding: 14px 16px;
	text-align: center;
	font-weight: 700;
	color: var(--success);
	background: color-mix(in srgb, var(--success) 10%, transparent);
	border-radius: var(--radius-sm);
}

/* 見出し付きの囲み枠 */
.kakomi-box, .warning-kakomi-box {
	position: relative;
	margin: 26px auto 12px;
	padding: 20px 16px 16px;
	width: 100%;
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-sub);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.warning-kakomi-box { border-color: var(--accent-border); }

.title-box12, .warning-boxTitle {
	position: absolute;
	top: -11px;
	left: 16px;
	padding: 1px 10px;
	font-size: 12px;
	font-weight: 700;
	background: var(--surface);
	border-radius: 999px;
}

.title-box12      { color: var(--success); }
.warning-boxTitle { color: var(--accent); }

.midashiPink { color: var(--accent); font-weight: 700; font-size: 15px; }

.button_solid002 { text-align: center; }

.button_solid002 a {
	display: inline-block;
	margin-top: 14px;
	padding: 13px 26px;
	font-weight: 700;
	color: var(--on-accent);
	background: var(--accent);
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
}

/* 入力補助（jQuery UI オートコンプリート） */
.ui-autocomplete {
	background: var(--surface) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-sm) !important;
	box-shadow: var(--shadow-md) !important;
	padding: 4px !important;
	max-height: 300px;
	overflow-y: auto;
	z-index: 1200 !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
	padding: 9px 12px !important;
	border-radius: 6px !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--text) !important;
	font-size: 15px;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
	background: var(--accent-weak) !important;
	color: var(--accent) !important;
}

.highlight {
	background: color-mix(in srgb, var(--accent) 22%, transparent);
	color: inherit;
	border-radius: 3px;
	padding: 0 1px;
}

/* =========================================================
   10. フッター
   ========================================================= */
.siteFooter {
	margin-top: 40px;
	padding: 26px 0 34px;
	border-top: 1px solid var(--border);
	background: var(--surface);
}

.siteFooter-inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 16px;
	text-align: center;
}

.siteFooter-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 14px;
}

.siteFooter-nav a {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-sub);
	transition: color .15s;
}

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

.siteFooter-copy {
	font-size: 12px;
	color: var(--text-muted);
}

/* =========================================================
   11. 表示調整
   ========================================================= */
@media screen and (max-width: 480px) {
	.h1_simple1, .midashi-1 { font-size: 19px; }
	.commentList > li { padding: 14px 14px 10px; }
	.comment-reviewTitle { font-size: 16px; }
	.stars label { font-size: 34px; }
	a.pagerButton { padding: 12px 10px; font-size: 14px; }
	.selectbox-6, .selectbox-6 select { width: 100%; min-width: 0; }
}

/* 動きを減らす設定を尊重する */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}
