/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress
Author: もみじば
Template: generatepress
Version: 1.0
*/

:root {
	--main-color: #03162f;
	--main-color-dark: #02101f;
	--accent-color: #ffba0a;
	--accent-color: #c90c3b;
	--main-bg: #f9fbff;
	--card-bg: #fff;
	--accent-blue: #6a61bc;
	--accent-yellow: #ffd249;
	--accent-coral: #ff8585;
	--neutral-gray: #e8ebf0;
	--font-dark: #1a2233;
	--shadow: 0 3px 14px rgba(80,100,140,0.08);
	--border-radius: 1.1em;
}

html, body {
	max-width: 100vw;
	overflow-x: hidden;
}

body {
	font-family:
		'Noto Sans JP',  /* Google Fonts日本語推奨 */
		'BIZ UDPGothic', /* UDフォントも強い */
		'Meiryo',
		'Hiragino Kaku Gothic ProN',
		'Yu Gothic',
		'Arial',
		sans-serif;
	background: #f3f5f6;
}
/* 主要コンテナを100%幅に */
#primary,
main,
article,
.entry-content {
	width: 100%;
	width: 950px;
	max-width: 100%;
}

/* 全体のベースレイアウト調整 */
.site-content .content-area {
	width: 100%;
	margin: 0 auto;
}
/* 主要コンテナを100%幅に */
#primary,
main,
article,
.entry-content {
	width: 100%;
	max-width: 100%;
}
.separate-containers.right-sidebar .site-main {
	margin: 20px;
}
.site-content, .entry-content, .main-content {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
	margin-top: 0.8em;
}
.entry-content {
	line-height: 1.8;
	font-size: 1.05em;
	color: #222;
	padding: .5em 0;
}

.main-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.2em;
	color: #03162f;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.entry-content strong {
	color: var(--main-color);
	font-weight: 600;
}

/* 各セクションを区切る */
.entry-content hr {
	border: none;
	border-top: 1px solid #ccc;
	margin: 2em 0 1.5em;
}

/* セクションタイトルと内容の余白調整 */
.entry-content p {
	margin-bottom: 1.5em;
}

.site-header {
	background-color: var(--accent-blue);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 6px 12px rgba(0, 0, 0, 0.08);
}

h1 {
	font-size: 1.6em;
	font-weight: bold;
}

.entry-title {
	font-size: 2.1em;
	font-weight: 900;
	line-height: 1.4;
	margin-top: .8em;
	margin-bottom: .3em;
}
/* レスポンシブ調整 */
@media (max-width: 640px) {
	.entry-title {
		font-size: 1.9em;
	}
}

.entry-title .h1-prefix,
.entry-title .h1-suffix {
	display: block;
	font-size: 0.55em;
	color: var(--main-color);
	font-weight: normal;
	margin: 0.2em 0;
}

.main-navigation .main-nav ul li a {
	color: #555;
	font-weight: bold;
}
.main-navigation .main-nav ul li a:hover {
	color: #372356!important;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
	color: #372356;
}

/* === WebKit系ブラウザ（Chrome, Safari, Edge） === */
::-webkit-scrollbar {
	width: 6px;    /* 垂直スクロールバーの幅 */
	height: 6px;   /* 水平スクロールバーの高さ */
}
::-webkit-scrollbar-track {
	background: transparent;  /* トラックを透明に */
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3); /* サムの色 */
	border-radius: 3px;                   /* 角丸 */
	border: 2px solid transparent;        /* 内側余白で細く見せる */
	background-clip: content-box;
}

/* === Firefox === */
* {
	scrollbar-width: thin;                             /* 全体を“thin”に */
	scrollbar-color: #a7aaad transparent;
}


/* 英訳セクション：目立たせる装飾 */
.english-translation-box {
	font-size: 1.2em;
	font-weight: bold;
	background-color: #f7f4ff;
	padding: 1em 1.2em;
	border-left: 5px solid #7873a2;
	margin-bottom: 1.2em;
	border-radius: 4px;
	color: #222;
}
.english-translation-box strong {
	display: block;
	font-size: 0.9em;
	color: #223366;
	margin-bottom: 0.4em;
	font-weight: 600;
}
.english-translation-box p {
	font-style: italic;	
	color: #7973aa;
	font-family:
		"Inter", "Quicksand", "Segoe UI",
		"Nunito", Arial, "Noto Sans JP", sans-serif;
}


/* === 関連投稿リスト全体 === */
.related-posts {
	margin-top: 1em;
	padding-top: 2em;
}
/* 最初の .related-posts にだけ border-top を付与 */
.related-posts:first-of-type {
	border-top: 2px solid #223366;
}

.related-quote-carousel {
	overflow-x: auto;
	padding: 0.7em;
	padding-bottom: 1.1em;
	max-width: 100vw;
	box-sizing: border-box;
}

/* 見出し */
.related-posts h2 {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 1.18em;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: 0.03em;
	margin-bottom: 1em;
}

/* リスト全体 */
.related-quote-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.1em;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
}
.related-quote-list::after {
	content: "";
	flex: 0 0 30px;
}

/* 各関連セリフカード */
.related-quote-card {
	flex: 0 0 auto;
	width: 250px;
	max-width: 90vw;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 1em 1.2em 0.8em;
	box-sizing: border-box;
	background: var(--card-bg, #fafbff);
	border: 1.5px solid var(--neutral-gray, #e6e8f7);
	border-radius: 1em;
	box-shadow: var(--shadow, 0 2px 14px rgba(79,140,255,0.08));
	text-decoration: none;
	font-size: 1em;
	transition: box-shadow 0.18s, transform 0.16s, background 0.16s;
}
.related-quote-card:hover {
	box-shadow: 0 8px 28px rgba(79,140,255,0.20);
	transform: translateY(-2px) scale(1.03);
	border-color: var(--accent-blue, #4f8cff);
}

/* テキストの見切れ制御 */
.quote-jp,
.quote-en {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.quote-jp {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", Arial, sans-serif;
	font-weight: 600;
	font-size: 1.06em;
	line-height: 1.4;
	margin-bottom: 0.45em;
	color: #03162f;
}
.quote-en {
	font-size: 0.96em;
	font-style: italic;
	line-height: 1.45;
	color: #777;
	margin-top: 0.05em;
}

/* 全体横スクロール抑制 */
html,
body {
	max-width: 100vw;
	overflow-x: hidden;
}

/* レスポンシブ調整 */
@media (max-width: 600px) {
	.related-quote-card {
		width: 160px;
		max-width: 85vw;
		font-size: 0.96em;
		padding: 0.8em 0.7em 0.7em;
	}
	.related-quote-list {
		gap: 0.6em;
	}
}


/* 前後ナビ */
.quote-navigation {
	margin-top: 3em;
	display: flex;
	justify-content: space-between;
	font-size: 0.95em;
}

.quote-navigation a {
	color: var(--main-color);
	text-decoration: none;
}

.quote-navigation a:hover {
	text-decoration: underline;
}

.scene-context-box {
	border: 2px solid var(--main-color);
	background-color: #f9f9f9;
	padding: 1em;
	margin: 1.5em 0;
	border-radius: 6px;
	font-size: 0.95em;
	line-height: 1.6;
}
.scene-context-box strong {
	color: var(--main-color);
	display: block;
	margin-bottom: 0.5em;
}

/* 例文ブロックスタイル */
.example-block strong {
	display: block;
	font-size: 1.1em;
	margin-bottom: 0.5em;
	color: var(--main-color);
}
.example-block p {
	margin: 0.2em 0;
	line-height: 1.6;
}
.example-block .translation {
	color: #777;
	font-style: italic;
}
.quote-card-main .example-block p {
	font-size: .95em;
}


/* セクション化された各ブロックにスタイルを適用 */
section.quote-header-block,
section.learning-points,
section.example-block {
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
		0 6px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	padding: 2.6em;
	margin-bottom: 2em;
}
section.quote-header-block {
	padding-top: 1.5em;
}
@media (max-width: 600px) {
	section.quote-header-block,
	section.learning-points,
	section.example-block {
		padding: 1.3em;
	}
}

/* セクションの見出し */
.quote-header-block h2,
.learning-points h2,
.example-block h2 {
	margin-top: 0;
	color: var(--main-color);
	font-size: 1.6em;
	font-weight: bold;
	/*
	margin-top: 0;
	color: var(--main-color);
	font-size: 1.2em;
	border-bottom: 1px solid #ddd;
	padding-bottom: 0.3em;
	margin-bottom: 1em;
	*/
}

/* セクションの小見出し */
.quote-header-block h3,
.learning-points h3,
.example-block h3,
.english-translation-box h2 {
	font-size: 1.1em;
	color: var(--main-color);
	margin-top: 1em;
	margin-bottom: 0.5em;
	border-bottom: 1px solid #ddd;
	padding-bottom: 0.2em;
}
.english-translation-box h2 {
	color: var(--main-color);
	font-weight: normal;
}
.scene-context-box h3 {
	font-size: inherit;
	font-weight: bold;
	margin: 0;
	padding: 0;
	display: inline;
	border: none;
	color: #223366;
}

/* 読み（ローマ字）スタイル */
.romaji-reading {
	font-size: 0.95em;
	margin-top: 0.8em;
	color: #6e6a82;
	font-style: normal;
	line-height: 1.6;
}

.romaji-reading strong {
	font-style: normal;
	color: var(--main-color);
}

/* タクソノミースタイル */
.taxonomy-inline {
	margin-top: 1em;
	font-size: 0.9em;
	color: #333;
}

.taxonomy-inline .term-group {
	margin-right: 1.5em;
	display: inline-block;
}

.play-audio {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.3em;
	color: var(--main-color);
	margin-left: 0.1em;
	line-height: 1;
	display: inline-block;
	vertical-align: baseline;
	border: 1px solid #a7aaad;
	border-radius: 50px;
	padding: 7px;
	transition: background .13s;
	cursor: pointer;
	padding: 0.11em;
	line-height: 1;
}
.play-audio:hover,.play-audio:focus {
	background: var(--main-color);
}
.quote-card-title-row .play-audio {
	width: 1.4em;
	height: 1.4em;
	min-width: 1.4em;
	min-height: 1.4em;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background .14s;
}
.quote-card-title-row .play-audio:hover,
.quote-card-title-row .play-audio:focus {
	background: var(--main-color);
}
.quote-card-title-row .play-audio img,
.quote-card-title-row .play-audio .emoji {
	width: 1em;
	height: 1em;
	display: block;
	background: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
.audio-radio-select {
	text-align: left;
	margin-bottom: 0.5em;
	padding-left: 0.3em;
	font-size: 0.92em; /* ラベル文字サイズを小さく */
	line-height: 1.1;
	align-items: center;
}

.audio-radio-select label {
	font-size: 0.8em;
	cursor: pointer;
	margin-right: 0.45em;
	color: #223366;
}

.audio-radio-select input[type="radio"] {
	accent-color: #223366;
	vertical-align: middle;
	margin-right: 0.15em;
	transform: scale(0.9); /* ラジオボタン自体を小さく */
}
.audio-radio-label {
	font-size: 0.8em;
	color: #223366;
}


/* 例文ラベル */
.example-label {
	padding: 2px 8px;
	margin-bottom: 0.5em;
	color: #03162f;
	font-weight: 600;
	border-left: 3px solid;
}

.img-source-text {
	font-size: 0.75em;
	color: #888;
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 1.4;
}
.img-source-text a {
	color: #888;
	text-decoration: underline;
}

.jp-context-note {
	font-style: italic;
	color: #888;
	font-size: 0.8em;
}


/* パンくず */
.breadcrumb {
	font-size: 0.8em;
	color: #555;
	margin-bottom: 0.8em;
	line-height: 1.2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4em;
}
.breadcrumb a {
	color: var(--main-color);
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb span {
	color: #888;
	font-weight: normal;
}
.breadcrumb-separator {
	margin: 0 0.2em;
	color: #bbb;
}



/* 一覧のカード */
.quote-archive-list {
	display: flex;
	flex-direction: column;
	gap: .5em;
	margin: .5em 0;
}
.quote-card {
	background: #fff;
	border: 1.5px solid #e8e3f2;
	border-radius: 18px;
	box-shadow: 0 2px 12px 0 rgba(120,110,180,0.07);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: box-shadow 0.14s, border 0.13s, transform 0.10s;
}
.quote-card:hover {
	border: 1.5px solid #ab95da;
	box-shadow: 0 6px 24px 0 rgba(120,110,180,0.16);
	transform: translateY(-2px) scale(1.01);
	/* background: #f6f2fd; */
}
.quote-card-title {
	font-family: 'Noto Sans JP', 'BIZ UDPGothic', sans-serif;
	font-weight: 900;
	font-size: 1.64em;
	line-height: 1.26;
	color: var(--main-color);
	margin-bottom: 0.4em!important;
	letter-spacing: 0.01em;
}
.quote-card-title a {
	font-weight: 900;
	color: inherit;
	text-decoration: none;
	transition: color 0.07s, border-color 0.08s;
}
.quote-card-title a:hover {
	color: #E54B4B;
	transition: color 0.07s, border-color 0.08s;
}

/* 画像＋吹き出しの横並び */
.quote-card-bubble-with-img {
  display: flex;
  align-items: center;
  gap: 0.8em; /* 画像と吹き出しの間隔 */
}

/* 丸くトリミングするアバター */
.quote-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 56px; /* レイアウトの安定化 */
}

.quote-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画面が広いとき少しだけ大きく */
@media (min-width: 768px) {
  .quote-card-avatar {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}

.quote-card-bubble {
	/* 吹き出し全体のラッパー */
	display: inline-block;
	background: #f1eef5;
	border-radius: 2em 2em 2em 0.3em / 2em 2em 2em 0.3em;
	padding: 1.1em 1.3em 0.4em 0.9em;
	margin-bottom: 0.65em;
	position: relative;
	min-width: 160px;
	max-width: 100%;
}
/* 吹き出しの尻尾
.quote-card-bubble::after {
content: '';
position: absolute;
left: 2.3em;
bottom: -0.65em;
width: 1.15em;
height: 1.15em;
background: #e3e3e3;
border-radius: 45% 35% 65% 0% / 40% 65% 50% 35%;
transform: rotate(-15deg);
z-index: 0;
}
*/

/* 読み・音声部分 */
.quote-card-reading {
	margin-bottom: 0;
	margin-top: 0.13em;
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.98em;
	color: #777;
	font-family: 'Noto Sans JP', 'Inter', sans-serif;
}
.quote-card-title-row {
	display: flex;
	align-items: baseline;
	gap: 0.5em;
	margin-bottom: 0.1em;
}
.quote-card-reading {
	margin-top: 0.13em;
	font-size: 1em;
	color: #777;
	font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

.reading-text {
	font-size: .9em;
	color: #777;
	letter-spacing: 0.01em;
	margin-bottom: 0.2em;
}

@media (max-width: 640px) {
	.quote-card-title-row{
		gap: 0.2em;
	}
	.quote-card-bubble {
		padding: 0.77em 1.1em 0.53em 0.5em;
		min-width: 110px;
	}
	.quote-card-bubble::after {
		left: 1.2em;
		bottom: -0.45em;
		width: 0.7em;
		height: 0.7em;
	}
	.quote-card-title {
		font-size: 1.3em;
	}
	.quote-card-reading {
		font-size: 0.93em;
	}
}

.quote-card-translation {
	font-size: 1.3rem;
	font-weight: bold;
	font-style: italic;
	color: #7973aa;
	margin-bottom: 1.5em;
	line-height: 1.6;
	font-family:
		"Inter", "Quicksand", "Segoe UI",
		"Nunito", Arial, "Noto Sans JP", sans-serif;
}
@media (max-width: 600px) {
	.quote-card-translation {
		font-size: 1.1rem;
	}
}
.quote-detail-link-row {
	margin-top: 0.7em;
	text-align: right;
}
.quote-detail-link {
	color: #223366;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px solid #03162f;
	transition: color .17s, border .13s;
	font-size: 1em;
	padding-bottom: 2px;
}
.quote-detail-link:hover {
	color: #E54B4B;
	border-color: #E54B4B;
}
.quote-card-main {
	padding: 2.5em 2.5em 1.2em 2.5em;
}
@media (max-width: 600px) {
	.quote-card-main {
		padding: 1.3em 1.3em 1.0em 1.3em;
	}
}

.hide-translations .quote-card-translation,
.hide-translations .translation {
	display: none !important;
}
.hide-hiragana .reading-hiragana { display: none !important; }
.hide-romaji .reading-romaji { display: none !important; }

.quote-card-meta {
	margin-top: 1em;
	font-size: 0.9em;
	color: #555;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
}

.quote-card-meta .quote-tax strong {
	color: var(--main-color);
	margin-right: 0.3em;
}

.quote-card-link {
	display: inline-block;
	margin-top: 1em;
	font-size: 0.9em;
	color: var(--main-color);
	text-decoration: underline;
}

/* タクソノミー表示ブロック */
.taxonomy-display-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4em;
	margin-top: 1em;
	font-size: 0.9em;
	color: #555;
}
@media (max-width: 600px) {
	.taxonomy-display-block {
		font-size: 0.85em;
	}
}
/* 各 tax ブロック（1セットごと） */
.taxonomy-display-block .quote-tax {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-right: .5em;
}
/* アイコン右の隙間 */
.taxonomy-display-block .quote-tax i {
	margin-right: 0.4em;
	color: var(--main-color);
	font-size: 0.85em;
}
/* 各 a のマージンを制御 */
.taxonomy-display-block .quote-tax a {
	margin-left: 0.4em;
}
/* 最初の a だけ margin-left をゼロにする */
.taxonomy-display-block .quote-tax a:first-of-type {
	margin-left: 0;
}
/* タグスタイル（共通） */
.taxonomy-display-block a {
	display: inline-block;
	padding: 3.5px 9px;
	background-color: #eaf2fa;
	background-color: #e9f4e7;
	color: #416e5b;
	text-decoration: none;
	font-size: 0.75em;
	border: 1px solid #7cd6bc;
	border-radius: 9999px;
	font-weight: 500;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.taxonomy-display-block a:hover {
	background-color: #cde9ff;
	background-color: #d6e8d2;
	color: #163d50;
}
.quote-tag, .quote-emotion-link {
	margin-bottom: 0.38em;
}
/* Emotionリンク（文字リンク風）だけ別扱い
.taxonomy-display-block .quote-emotion-link {
background: none;
border: none;
padding: 0;
text-decoration: underline;
font-size: 0.85em;
font-weight: normal;
color: #555;
}
.taxonomy-display-block .quote-emotion-link:hover {
color: #a00826;;
background: none;
}
*/
.quote-card-tags {
	margin-top: 1em;
	font-size: 0.85em;
	color: #555;
	line-height: 1.6;
}
.quote-tax .fa-book ~ .quote-tag {
	background: #FFD700;
	background: #3c508d;
	color: #fff;
	border: none;
}
.quote-tax .fa-user ~ .quote-tag {
	background: #E54B4B;
	background: #4ca98c;
	color: #fff;
	border: none;
}
.quote-tax .fa-face-smile ~ .quote-emotion-link {
	background: #1A9B84;
	color: #fff;
	background: #d4c7e8;
	background: none;
	color: var(--main-color);
	border: none;
	padding: 0;
}
.quote-tax .fa-clapperboard ~ .quote-emotion-link {
	background: #223366;
	color: #fff;
	background: #d4c7e8;
	background: none;
	color: var(--main-color);
	border: none;
	padding: 0;
}
.quote-tax .fa-face-smile ~ .quote-emotion-link:hover,
.quote-tax .fa-clapperboard ~ .quote-emotion-link:hover {
	opacity: 0.85;
	text-decoration: underline;
}
.quote-tax .quote-tag:hover {
	opacity: 0.85;
	text-decoration: none;
}
.quote-detail-link-row {
	text-align: right;
	margin: 0.5em 0 0 0;
}
/* 開閉部分 */
.quote-card-extra {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.2s ease, opacity 0.2s ease;
}
.quote-card-extra.open {
	max-height: 1000px; /* 十分な高さにしておく */
	opacity: 1;
}
/* トグルボタン：カード幅いっぱい */
.example-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
	background: none !important;
	border: none;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	font-size: 0.95em;
	font-weight: 600;
	padding: 0.8em 1em;
	color: #222!important;
	cursor: pointer;
	border-top: 1px solid #eee;
	transition: background-color 0.2s ease;
	gap: 0.5em; /* テキストと矢印の間隔 */
}
.example-toggle:hover {
	background-color: #f6f2fd!important;
}
.example-arrow {
	transition: transform 0.3s ease;
}
.example-toggle[aria-expanded="true"] .example-arrow {
	transform: rotate(180deg);
}


/* 検索フォーム */
.wp-block-search__inside-wrapper {
	display: flex;
	border: 2px solid #ccc;
	border-radius: 30px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
	gap: 0;
}
.wp-block-search__input,
.wp-block-search__button {
	margin: 0;
	border: none;
	background: var(--main-color);
}
.wp-block-search__button {
	border-left: 1px solid #ccc;
}
input[type="search"],input[type="search"]:focus,input[type="search"]:focus-visible {
	border: none;
	outline-offset: 4px;
}

/* ====== 検索フォーム全体 ====== */
.search-form-stacked {
	display: flex;
	flex-direction: column;
	gap: 1em;
	width: 90%;
	max-width: 800px;
	margin: 2.5em auto 1.5em auto;
	padding: 1.6em 2em 1.3em 2em;
	background: var(--main-bg);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	border: 1.5px solid var(--neutral-gray);
}

/* ====== 検索キーワード行 ====== */
.search-keyword-row {
	display: flex;
	align-items: center;
	gap: 0;
	width: 100%;
}

.category-dropdown .dropdown-toggle {
	min-width: 116px;
	height: 46px;
	border-radius: 0.9em 0 0 0.9em;
	background: var(--accent-blue);
	color: #fff;
	font-weight: 600;
	border: none;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	padding: 0 16px;
	transition: background 0.18s;
	box-shadow: 0 1px 6px rgba(79,140,255,0.09);
	cursor: pointer;
}
.category-dropdown .dropdown-toggle.open,
.category-dropdown .dropdown-toggle:hover {
	background: #504ca5;
}

.search-keyword-row input[type="text"] {
	flex: 1 1 0%;
	width: 100%;
	height: 46px;
	border-radius: 0 0.9em 0.9em 0;
	border: 2px solid #ccc;
	border-left: none;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.03);
	font-size: 1.1rem;
	padding: 0 18px;
	box-sizing: border-box;
}

.search-keyword-row button {
	margin-left: 0.4em;
	width: 48px;
	height: 46px;
	border-radius: 50%;
	background: var(--accent-yellow);
	border: none;
	box-shadow: 0 2px 10px rgba(255,217,91,0.12);
	transition: box-shadow 0.15s, transform 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.search-keyword-row button:hover {
	box-shadow: 0 4px 22px rgba(255,217,91,0.23);
	transform: scale(1.08);
}
.search-keyword-row button svg {
	stroke: #222;
}

/* ====== フィルター行 ====== */
.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1.2em;
	align-items: flex-start;
	margin-top: 0.4em;
	width: 100%;
}
.filter-row > .dropdown-filter {
	min-width: 120px;
}

/* ====== ドロップダウンフィルター共通 ====== */
.dropdown-filter {
	position: relative;
}
.dropdown-toggle {
	background: var(--card-bg);
	border: 1px solid var(--neutral-gray);
	border-radius: 0.7em;
	padding: 7px 18px;
	font-size: 1.04em;
	color: var(--font-dark);
	cursor: pointer;
	position: relative;
	box-shadow: 0 1px 6px rgba(100,100,100,0.06);
	transition: background 0.16s;
	font-weight: 500;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 0.3em;
}
.dropdown-toggle:hover, .dropdown-toggle.open {
	background: var(--accent-coral);
	color: #fff;
}
.dropdown-toggle .icon {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.15em;
	opacity: 0.66;
}
.dropdown-arrow {
	display: inline-block;
	vertical-align: middle;
	transition: transform 0.3s;
}
.dropdown-toggle.open .dropdown-arrow {
	transform: rotate(180deg);
}

/* ▼ ドロップダウン展開 */
.dropdown-options {
	display: none;
	position: absolute;
	top: 2.8em;
	left: 0;
	z-index: 21;
	width: 180px;
	background: var(--card-bg);
	border: 1.5px solid var(--neutral-gray);
	box-shadow: var(--shadow);
	border-radius: 0.8em;
	padding: 10px 0 8px 0;
	animation: fadeIn 0.19s;
	max-height: 250px;
	overflow-y: auto;
}
.category-dropdown .dropdown-options { width: 210px; }
.emotion-dropdown .dropdown-options,
.scene-dropdown .dropdown-options { width: 210px; }
.work-dropdown .dropdown-options,
.char-dropdown .dropdown-options { width: 275px; }

.dropdown-filter .dropdown-options label {
	display: block;
	padding: 7px 16px;
	font-size: 1em;
	border-radius: 0.6em;
	cursor: pointer;
	transition: background 0.12s;
}
.dropdown-filter .dropdown-options label:hover {
	background: #e8ecfa;
}
.dropdown-options input[type="checkbox"] {
	margin-right: 7px;
	accent-color: var(--accent-blue);
}

/* ====== アニメーション ====== */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(9px);}
	to   { opacity: 1; transform: translateY(0);}
}

/* ====== レスポンシブ ====== */
@media (max-width: 640px) {
	.search-form-stacked {
		width: 100%;
		padding: 0.8em 0.6em 1em 0.6em;
	}
	.filter-row {
		flex-wrap: wrap;
		gap: 0.7em 0.25em;
	}
	.dropdown-filter { min-width: 100px;}
	.search-keyword-row input[type="text"] {
		height: 40px;
		font-size: 1rem;
		padding: 0 10px;
	}
	.category-dropdown .dropdown-toggle,
	.search-keyword-row button {
		height: 40px;
		font-size: 1rem;
	}
}


/* ページネーション */
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 2em;
	font-family: "Segoe UI", sans-serif;
	flex-wrap: wrap;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4em 0.9em!important;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
	background-color: #f9f9f9;
	font-weight: 500;
}
.page-numbers:hover {
	color: #fff;
	background-color: #372356;
}
.page-numbers.current,
.page-numbers[aria-current="page"] {
	background-color: #372356;
	color: #fff;
	font-weight: bold;
	cursor: default;
	pointer-events: none;
	border-color: #372356;
}
.page-numbers.dots {
	border: none;
	background: none;
	color: #999;
	cursor: default;
	padding: 0.4em 0.6em;
}
.page-numbers:has(.pagination-arrow) {
	padding: 0!important;
}
.page-numbers svg.pagination-arrow {
	width: 1.5em;
	height: 1.5em;
	stroke-width: 2.5;
	color: #333;
	transition: color 0.2s ease;
}
.page-numbers:hover .pagination-arrow {
	color: #fff;
}


/* 一覧ページの説明文 */
.archive-description {
	margin-top: 1em;
	font-size: 0.95em;
	color: #555;
	line-height: 1.6;
}


/* トップページ */
body.home .container {
	max-width: 1080px;
	margin: 0 auto;
	/* padding: 0 1em; */
}

.hero-section {
	background: #f4f7fb;
	padding: 3em 0 2em;
	text-align: center;
}
.hero-section h1 {
	font-size: clamp(2.3rem, 4vw, 3.6rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	margin-bottom: 1.2rem;
	color: #03162f;
	text-shadow: 0 2px 8px rgba(180,160,220,0.10);
}
.hero-section p {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: #6d6680;
	line-height: 1.7;
	margin-bottom: 2.4rem;
}

.hero-section {
	/*width: 100vw;                           横幅いっぱい */
	min-height: 50vh;                      /* ファーストビュー高さ調整 */
	background: linear-gradient(110deg, #f3f7ff 60%, #e8ddff 100%);
	padding: 4.5rem 0 2.5rem 0;            /* 上下余白（左右はcontainer） */
	text-align: center;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 6px 30px 0 rgba(80,80,180,0.10);
	margin-bottom: 36px;
	position: relative;
	overflow: hidden;                      /* 子要素のはみ出し防止 */
}

.hero-section .container {
	max-width: 980px;                      /* テキストブロック幅 */
	margin: 0 auto;
	padding: 0 1.5rem;                     /* 画面端との余白 */
}

.search-section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 32px;
}
.search-form {
	padding: 1.3em 1em;
	display: flex;
	max-width: 450px;
	width: 100%;
}
.search-field {
	flex: 1 1 auto;
	font-size: 1.08rem;
	padding: 0.7em 1em;
	border: 1px solid #b9c7e2;
	border-radius: 10px;
	outline: none;
	background: #f7fafc;
	transition: border-color 0.15s;
}
.search-field:focus {
	border-color: #9d6ad9;
	background: #f4f0fc;
}
.search-submit {
	background: var(--accent-yellow);
	color: #fff;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	padding: 0.7em 1.5em;
	cursor: pointer;
	font-size: 1.08rem;
	box-shadow: 0 2px 4px 0 rgba(130,210,180,0.08);
	transition: background 0.16s, color 0.14s;
}
.search-submit:hover,
.search-submit:focus {
	background: #ffc32e;
}
.search-form input[type="search"] {
	width: 340px;
	max-width: 90%;
	padding: 0.8em 1em;
	background: #fff;
	border: 3px solid #ccc;
	border-right: none;
	border-radius: 6px 0 0 6px;
	font-size: 1em;
}
.search-form .search-submit {
	padding: 0.82em 1.4em;
	border: none;
	border-radius: 0 6px 6px 0;
	font-weight: bold;
	font-size: 1em;
	cursor: pointer;
}

.category-links .section-title {
	font-size: 2rem;           /* 通常h2よりやや大きめ */
	font-weight: 900;
	color: #223366;
	text-align: center;
	letter-spacing: 0.02em;
	margin-bottom: 1.6em;
	margin-top: 0.2em;
	line-height: 1.2;
}
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1.5em;
}
.category-link-card {
	min-width: 25%;
	text-align: center;
	color: var(--accent-blue);
	box-shadow: 0 2px 10px 0 rgba(120,110,180,0.06);
	position: relative;
	background: #fff;
	border: 1.5px solid #ddd;
	border-radius: 12px;
	padding: 1em 1.8em;
	font-size: 1.05em;
	font-weight: bold;
	text-decoration: none;
	transition: box-shadow 0.13s, border 0.13s, transform 0.10s;
}
.category-link-card:hover,
.category-link-card:focus {
	border: 1.5px solid #ad9ddb;
	transform: translateY(-3px) scale(1.03);
	background: #f5f4fb;
	color: #e54b4b;
	box-shadow: 0 2px 8px rgba(201, 12, 59, 0.1);
}

.new-quotes-section .section-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #223366;
	text-align: center;
	position: relative;
}
.new-quotes-section {
	/*
	background: #f9fafd;
	border-radius: 18px;
	margin: 0 auto 48px auto;
	max-width: 820px;
	box-shadow: 0 3px 14px 0 rgba(70,80,120,0.04);
	padding: 2.2rem 1.3rem 2.4rem 1.3rem;
	*/
}
.section-title {
	font-size: 1.45rem;
	color: #46377e;
	font-weight: 800;
	margin-bottom: 1.7rem;
	text-align: left;
	letter-spacing: 0.01em;
}
.new-quotes-section.quote-archive-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4em;
	justify-content: center;
}
.new-quotes-section.quote-card {
	background: #fff;
	border: 1.5px solid #e8e3f2;
	border-radius: 18px;
	box-shadow: 0 2px 12px 0 rgba(120,110,180,0.07);
	padding: 1.3em 1em 1em 1.2em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: box-shadow 0.14s, border 0.13s, transform 0.10s;
}
.new-quotes-section.quote-card:hover {
	border: 1.5px solid #ab95da;
	box-shadow: 0 6px 24px 0 rgba(120,110,180,0.16);
	transform: translateY(-2px) scale(1.04);
	background: #f6f2fd;
}
.new-quotes-section.quote-card-title {
	font-size: 1.1rem;
	color: #593a91;
	font-weight: 700;
	margin-bottom: 0.7em;
	letter-spacing: 0.01em;
}
.new-quotes-section.quote-card-title a {
	color: inherit;
	text-decoration: none;
}
.new-quotes-section.quote-card-title a:hover {
	text-decoration: underline;
}
.new-quotes-section.quote-card-reading {
	font-size: 0.97rem;
	color: #8e7fb2;
	margin-bottom: 0.5em;
}
.new-quotes-section.quote-card-translation {
	font-size: 1rem;
	color: #416e5b;
	margin-bottom: 0.7em;
}
.new-quotes-section.quote-detail-link-row {
	margin-top: 0.7em;
	text-align: right;
}
.new-quotes-section.quote-detail-link {
	font-size: 0.97rem;
	color: #51bc98;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px dashed #7cd6bc;
	transition: color 0.14s, border-color 0.15s;
}
.new-quotes-section.quote-detail-link:hover {
	color: #257e60;
	border-color: #41be91;
}
.view-all-link {
	display: inline-block;
	margin-bottom: 0.5em;
	padding: 0.4em 1.2em;
	background: #e54b4b;
	color: #fff;
	border-radius: 2em;
	text-decoration: none;
	font-weight: 500;
	box-shadow: 0 2px 12px rgba(0,0,0,0.09);
	transition: transform 0.13s, box-shadow 0.13s, filter 0.18s;
}
.view-all-link:hover {
	opacity: .85;
	color: #fff;
	transform: scale(1.045);
	filter: brightness(0.95);
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.view-all-link:focus {
	opacity: .85;
	color: #fff;
}

.site-intro-article {
	background: #f7f6fc;                /* 淡い紫系 or お好みのやさしい色 */
	border: 2px solid #d6d4eb;          /* しっかりめのラウンド枠 */
	border-radius: 18px;
	padding: 2.5rem 1.5rem;
	margin: 48px auto 40px auto;
	max-width: 760px;
	box-shadow: 0 4px 16px 0 rgba(120,90,180,0.04);
}
.site-intro-article h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #52449a;
	text-align: center;
	position: relative;
}
.site-intro-article h2::before {
	content: "📝 ";
	font-size: 1.2em;
}
.site-intro-article h3 {
	margin-top: 2rem;
	font-size: 1.15rem;
	color: var(--accent-blue);
	font-weight: bold;
	border-left: 5px solid #d6d4eb;
	padding-left: 0.7em;
}
.site-intro-article p {
	margin: 0.8em 0 0 0;
	color: #50495c;
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.01em;
}
.how-to-use-section {
	background: #e5faf3;                 /* 淡いミントグリーンで実践感・親しみやすさ */
	border: 2px dashed #73e1b8;          /* 点線で「ガイド感」 */
	border-radius: 18px;
	padding: 2.2rem 1.5rem;
	margin: 48px auto 48px auto;
	max-width: 760px;
	box-shadow: 0 4px 12px 0 rgba(100,200,170,0.04);
}
.how-to-use-section h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.3rem;
	color: #1e6c54;
	text-align: left;
}
.how-to-use-section ol {
	padding-left: 1.1em;
	margin: 0;
}
.how-to-use-section li {
	margin-bottom: 1.2em;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 4px 0 rgba(60,120,100,0.06);
	padding: 1em 1.2em;
	border-left: 5px solid #73e1b8;
	font-size: 1.08rem;
	color: #255748;
	position: relative;
	transition: box-shadow 0.15s;
}
.how-to-use-section li strong {
	color: #1e6c54;
	font-size: 1.07em;
	font-weight: 600;
	margin-right: 0.4em;
}
.how-to-use-section li::before {
	/* ナンバーバッジを左上に */
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: -2em;
	top: 0.9em;
	background: #73e1b8;
	color: #fff;
	border-radius: 50%;
	width: 2em;
	height: 2em;
	line-height: 2em;
	font-weight: bold;
	text-align: center;
	font-size: 1.1em;
	display: inline-block;
}
.how-to-use-section ol {
	counter-reset: item;
}

.category-links {
	margin: 3em 0;
	text-align: center;
}
.category-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2em;
}

.new-quotes-section .quote-archive-list {
	max-width: 760px;
	margin: 0 auto;
}
.new-quotes-section .quote-card {
	margin-bottom: .5em;
}
.new-quotes-section .quote-card-main {
	padding: 1.7em;
}
.new-quotes-section .quote-card-title {
	font-size: 1.5em;
}
.new-quotes-section .quote-card-translation {
	margin-bottom: 0em;
}

.how-to-use-section {
	background: #f9f9fc;
	border-radius: 10px;
	padding: 2em;
	margin: 3em auto 2em;
	max-width: 740px;
}
.how-to-use-section h2 {
	text-align: center;
	font-size: 1.8em;
	font-weight: bold;
}
.how-to-use-section ol {
	font-size: 1.05em;
	line-height: 1.6;
	padding-left: 1.4em;
	margin: 0;
}
.how-to-use-section li {
	margin-bottom: 0.7em;
}
.how-to-use-section p {
	text-align: center;
	color: #555;
	margin-top: 1.2em;
}

@media (max-width: 600px) {
	.category-grid {
		flex-direction: column;
		gap: 0.8em;
	}
	.search-form input[type="search"] {
		width: 90%;
	}
}

/* 一覧表示件数 */
.result-count {
	display: inline-block;
	background: var(--card-bg, #fff);
	border: 1.5px solid var(--accent-blue, #4f8cff);
	color: var(--font-dark, #1a2233);
	border-radius: 2em;
	box-shadow: 0 2px 8px rgba(79,140,255,0.06);
	font-size: .95em;
	font-weight: 500;
	padding: 0.28em 1.2em 0.28em 1em;
	margin-bottom: 0.6em;
	letter-spacing: 0.01em;
	transition: background 0.2s, border-color 0.2s;
}
.result-count b {
	color: var(--accent-blue, #4f8cff);
	font-weight: 700;
	font-size: 1.1em;
}



/* ───────── バッジ表示エリア ───────── */
.selected-filters-wrapper{ position:relative; }

/* 2 行まで表示
.selected-filters-wrapper:not(.expanded) .selected-filters{
max-height: 4.2em;
overflow:hidden;
}
*/

/* レイアウト */
.selected-filters{
	display:flex; flex-wrap:wrap;
	gap:0.4em 1.2em;
	background: #d3dae3;
	padding: 8px;
	border-radius: 3px;
}
.filter-group{ display:flex; flex-wrap:wrap; align-items:center; font-size:.9rem; }
.filter-group>strong{ margin-right:.5em; color:#333; }
.filter-chip{
	color: #555;
	margin:.15em .3em;
	font-size:.85rem;
	word-break:break-word;
}

/* テキストリンク */
.filters-toggle-text{
	display:inline-block;
	color:#174EA6;
	cursor:pointer;
	font-size:.9rem;
	text-decoration:underline;
}
a.filters-reset-link {
	color: #555;
}

/* 2 行未満ならリンクを隠す */
.selected-filters-wrapper .filters-toggle-text{ display:none; }

/* ─── 開閉トグル & リセット ─── */
.filters-tools{
	margin-top:.6em;   /* 下に余白 */
	display:flex; gap:.6em; flex-wrap:wrap;
}

.filters-toggle-text,
.filters-reset-link{
	color:#174EA6;
	cursor:pointer;
	font-size:.9rem;
	text-decoration:underline;
}


.selected-filters-wrapper {
	align-items: center;
	gap: 0.8em;
	margin-top: 0.6em;
	font-size: 1.05em;
	color: var(--font-dark, #1a2233);
	min-height: 38px;
	min-width: 0;
}

.selected-filters-wrapper .selected-filters {
	align-items: center;
	gap: 0.3em;
}

.selected-filters-wrapper .filter-group {
	padding: 0.15em 0.4em;
	font-size: 0.85em;
	color: var(--accent-blue);
	font-weight: 500;
	margin-right: 0.2em;
}

.selected-filters-wrapper .filter-chip {
	background: #fff;
	color: #7f6ea9;
	border: 1px solid var(--accent-blue);
	border-radius: 0.8em;
	padding: 0.12em 0.9em;
	font-size: 0.85em;
	font-weight: 500;
	display: inline-block;
	box-shadow: 0 1px 4px rgba(79,140,255,0.09);
}

.selected-filters-wrapper .filters-tools {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0.6em;
}

.selected-filters-wrapper .filters-reset-link {
	color: var(--accent-coral, #ff8585);
	text-decoration: none;
	font-size: 0.85em;
	padding: 0.07em 0.85em;
	border-radius: 0.7em;
	background: #fff;
	border: 1px solid var(--accent-coral, #ff8585);
	transition: background 0.17s, color 0.17s;
}
.selected-filters-wrapper .filters-reset-link:hover {
	background: var(--accent-coral, #ff8585);
	color: #fff;
}

.result-row-flex {
	display: flex;
	align-items: center;
	gap: 1.6em;
	margin-top: 1.3em;
	margin-bottom: 0.5em;
	flex-wrap: wrap;
}
.result-row-flex .result-count {
	margin: 0;
	/* display:inline-block指定もOKだがflexで中央寄せしやすく */
}
.result-row-flex .reading-translation-toggles {
	margin-left: auto;
	/* PC時は右端寄せ。必要ならwidth指定も可 */
}

@media (max-width: 700px) {
	.result-row-flex {
		flex-direction: column;
		align-items: stretch;
		gap: 0.6em;
	}
	.result-row-flex .reading-translation-toggles {
		margin-left: 0;
		justify-content: flex-start;
	}
}

.reading-translation-toggles {
	display: flex;
	gap: 0.6em;
	align-items: center;
	justify-content: flex-end; /* 右寄せしたくなければ left/center に */
	margin: 0.5em 0 0.7em 0;
	font-size: .95em;
	background: var(--main-bg, #f9fbff);
	border-radius: 0.7em;
	padding: 0.38em 1.1em 0.38em 1.1em;
}

.reading-translation-toggles label {
	display: flex;
	align-items: center;
	font-weight: 500;
	gap: 0.39em;
	cursor: pointer;
	border-radius: 0.7em;
	padding: 0.09em 0.3em;
	transition: background 0.17s;
}
.reading-translation-toggles label:hover {
	background: var(--accent-blue, #4f8cff);
	color: #fff;
}

.reading-translation-toggles input[type="checkbox"] {
	accent-color: var(--accent-blue, #4f8cff);
	width: 1.08em;
	height: 1.08em;
	margin-right: 0.19em;
	cursor: pointer;
}


/* 前へ・次へリンク */
.quote-nav {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 2vw;
	margin: 2.5em 0 1.5em 0;
}

.quote-nav-link {
	display: flex;
	align-items: center;
	max-width: 45%;
	background: #f7f6ef;
	border: 1px solid #ddd;
	border-radius: 1.5em;
	box-shadow: 0 3px 16px rgba(60, 40, 10, 0.08);
	padding: .1em 1.1em;
	text-decoration: none;
	color: #223366;
	font-weight: 500;
	transition: background 0.2s, box-shadow 0.2s;
	min-width: 0;
	font-size: .8em;
	overflow: hidden;
}
.quote-nav-link:hover {
	background-color: #f6f2fd;
	border-color: var(--accent-blue, #4f8cff);
	box-shadow: 0 2px 16px rgba(200,160,50,0.13);
}

.quote-nav-arrow {
	font-size: 1.7em;
	font-weight: bold;
	margin: 0 0.7em;
}

.quote-nav-label {
	font-size: 0.94em;
	color: #7973aa;
	margin-right: 0.5em;
	margin-left: 0.5em;
}

.quote-nav-title {
	font-size: 1em;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 15em;
	display: inline-block;
	color: #1b2c43;
}

@media (max-width: 700px) {
	.quote-nav {
		flex-direction: column;
		gap: 1.2em;
	}
	.quote-nav-link {
		max-width: 100%;
		justify-content: center;
	}
	.quote-nav-title {
		max-width: 80vw;
	}
}


/* フッター */
.site-footer {
	background-color: #223366;
	background-color: #c3c0dd;
	color: #fff;
	color: #111;
	padding: 2em 1em;
	font-size: 13px;
	line-height: 1.6;
	border-top: 1px solid #ddd;
	text-align: center;
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-top: 30px;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
}

.site-footer a {
	color: #ff8585;
	color: var(--main-color);
	text-decoration: none;
}

.site-footer a:hover {
	color: #E54B4B;;
	text-decoration: underline;
}

.site-footer .inside-site-info {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.site-footer .site-info p {
	margin: 0.3em 0;
}


/* Cookie同意バナー */
#cookie-law-info-bar, .cky-revisit-bottom-left {
  display: none !important;
}
