/*
Theme Name: EIGOBA
Theme URI: https://eigoba.xyz/
Author: EIGOBA編集部
Author URI: https://eigoba.xyz/
Description: 子ども向けオンライン英会話専門メディア「EIGOBA」の専用WordPressテーマです。「サービスから選ぶのではなく、子どもから選ぶ。」というコンセプトのもと、年齢・性格・英語経験・目的からオンライン英会話を比較・検討できる記事メディアを、投稿・固定ページ・カテゴリー・タグ・Gutenbergブロックエディターだけで運用できるように設計しています。
Version: 2.4.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eigoba
Tags: blog, education, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready, responsive-layout

EIGOBA is a bespoke, standalone WordPress theme (not a child theme) built for
a Japanese children's online-English-conversation comparison media site.
All original CSS below. No third-party frameworks (Bootstrap etc.) are used.
*/

/* ==========================================================================
   0. RESET / BASE
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--c-white);
	color: var(--c-ink);
	font-family: var(--font-jp);
	font-size: 16px;
	line-height: 1.85;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

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

figure {
	margin: 0;
}

ul,
ol {
	padding-left: 1.3em;
}

a {
	color: var(--c-deep);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(22, 127, 174, 0.35);
}

a:hover {
	text-decoration-color: currentColor;
}

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

button {
	cursor: pointer;
}

table {
	border-collapse: collapse;
	width: 100%;
}

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

/* WordPress standard accessible hidden text (skip links, form labels) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--c-white);
	border-radius: 6px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
	clip: auto !important;
	clip-path: none;
	color: var(--c-ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 12px 18px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
}

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
	/* Brand colors */
	--c-sky: #46B9E8;
	--c-deep: #167FAE;
	--c-sky-light: #EDF9FE;
	--c-sun: #FFD45C;
	--c-mint: #CDEFE4;
	--c-peach: #FFE1D7;
	--c-ink: #253640;
	--c-subtext: #667780;
	--c-border: #E1EDF2;
	--c-section-bg: #F8FCFD;
	--c-white: #FFFFFF;

	/* Radius */
	--r-sm: 8px;
	--r-btn: 12px;
	--r-card: 16px;
	--r-card-lg: 24px;
	--r-bg: 32px;

	/* Shadow */
	--shadow-card: 0 8px 30px rgba(33, 91, 116, 0.08);
	--shadow-pop: 0 14px 40px rgba(22, 61, 82, 0.14);

	/* Layout */
	--w-max: 1180px;
	--w-container: 1120px;
	--w-content: 760px;

	/* Spacing */
	--space-section: 64px;
	--gutter: 18px;

	/* Fonts */
	--font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--font-accent: "Nunito", var(--font-jp);

	/* Type scale — mobile first */
	--fs-h1: 32px;
	--fs-h2: 26px;
	--fs-h3: 21px;
	--fs-body: 16px;
	--fs-small: 14px;

	--admin-bar-h: 0px;
}

@media (min-width: 600px) {
	:root {
		--fs-h1: 34px;
		--fs-h2: 28px;
		--fs-h3: 22px;
	}
}

@media (min-width: 1024px) {
	:root {
		--fs-h1: 44px;
		--fs-h2: 32px;
		--fs-h3: 24px;
		--fs-body: 17px;
		--space-section: 120px;
	}
}

/* ==========================================================================
   2. ADMIN BAR OFFSET (keep sticky header correct when logged in)
   ========================================================================== */

body.admin-bar {
	--admin-bar-h: 46px;
}

@media screen and (min-width: 783px) {
	body.admin-bar {
		--admin-bar-h: 32px;
	}
}

body.admin-bar .site-header {
	top: var(--admin-bar-h);
}

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */

.container {
	max-width: var(--w-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.container--narrow {
	max-width: var(--w-container);
}

.container--content {
	max-width: var(--w-content);
}

.section {
	padding-top: var(--space-section);
	padding-bottom: var(--space-section);
}

.section--sm {
	padding-top: calc(var(--space-section) * 0.55);
	padding-bottom: calc(var(--space-section) * 0.55);
}

.section--alt {
	background: var(--c-section-bg);
}

.section--sky {
	background: var(--c-sky-light);
}

.section-head {
	max-width: 640px;
	margin: 0 0 32px;
}

.section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-accent);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--c-deep);
	background: var(--c-sky-light);
	border-radius: 999px;
	padding: 6px 14px;
	margin: 0 0 14px;
}

.section-title {
	font-size: var(--fs-h2);
	line-height: 1.4;
	font-weight: 800;
	color: var(--c-ink);
	margin: 0 0 12px;
}

.section-lead {
	color: var(--c-subtext);
	font-size: var(--fs-body);
	line-height: 1.8;
	margin: 0;
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 12px;
	z-index: 100000;
	background: var(--c-ink);
	color: var(--c-white);
	padding: 12px 20px;
	border-radius: var(--r-btn);
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 12px;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	line-height: 1.45;
	color: var(--c-ink);
	margin: 0 0 0.6em;
}

h1 { font-size: var(--fs-h1); line-height: 1.35; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 18px; }

p {
	margin: 0 0 1.4em;
}

.text-sub {
	color: var(--c-subtext);
}

.nums {
	font-family: var(--font-accent);
	font-weight: 800;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 12px 26px;
	border-radius: var(--r-btn);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--c-deep);
	color: var(--c-white);
	box-shadow: 0 10px 24px rgba(22, 127, 174, 0.25);
}

.btn--primary:hover {
	background: #126f99;
	color: var(--c-white);
	text-decoration: none;
}

.btn--sky {
	background: var(--c-sky);
	color: var(--c-white);
	box-shadow: 0 10px 24px rgba(70, 185, 232, 0.28);
}

.btn--sky:hover {
	background: var(--c-deep);
	color: var(--c-white);
	text-decoration: none;
}

.btn--outline {
	background: var(--c-white);
	color: var(--c-deep);
	border-color: var(--c-border);
}

.btn--outline:hover {
	border-color: var(--c-deep);
	text-decoration: none;
}

.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	border-color: transparent;
	text-decoration: underline;
	min-height: auto;
	padding: 8px 4px;
}

.btn--block {
	width: 100%;
}

.btn--lg {
	min-height: 56px;
	padding: 14px 32px;
	font-size: 17px;
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Quick chip links (age / beginner / eiken / siblings ...) */
.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	color: var(--c-ink);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.chip:hover {
	border-color: var(--c-sky);
	color: var(--c-deep);
	text-decoration: none;
}

/* ==========================================================================
   6. CARDS / TAGS
   ========================================================================== */

.card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	padding: 28px;
}

.card--lg {
	border-radius: var(--r-card-lg);
	padding: 32px;
}

.card--shadow {
	border-color: transparent;
	box-shadow: var(--shadow-card);
}

.tag {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--c-sky-light);
	color: var(--c-deep);
	line-height: 1.6;
}

.tag--mint { background: var(--c-mint); color: #0f6b52; }
.tag--peach { background: var(--c-peach); color: #a5502f; }
.tag--sun { background: #FFF3D6; color: #8a6300; }

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

/* ==========================================================================
   7. GRID
   ========================================================================== */

.grid {
	display: grid;
	gap: 24px;
}

.grid--2 { grid-template-columns: repeat(1, 1fr); }
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 600px) {
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
	.grid--2 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   8. SITE HEADER
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: saturate(140%) blur(6px);
	border-bottom: 1px solid var(--c-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.site-branding img {
	max-height: 40px;
	width: auto;
}

.site-branding .brand-text {
	font-family: var(--font-accent);
	font-weight: 900;
	font-size: 22px;
	color: var(--c-deep);
	letter-spacing: 0.02em;
	text-decoration: none;
}

.site-branding .brand-sub {
	display: none;
}

.main-nav {
	display: none;
}

.main-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.main-nav a {
	color: var(--c-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
	color: var(--c-deep);
}

.main-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 10px;
	position: absolute;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-pop);
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.main-nav li {
	position: relative;
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--r-sm);
	font-weight: 600;
}

.main-nav .sub-menu a:hover {
	background: var(--c-sky-light);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-search-toggle,
.hamburger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--r-btn);
	border: 1px solid var(--c-border);
	background: var(--c-white);
	color: var(--c-ink);
	flex-shrink: 0;
}

.header-actions .btn {
	display: none;
}

.hamburger {
	flex-direction: column;
	gap: 4px;
}

.hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--c-ink);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.header-search {
	position: absolute;
	inset-inline: 0;
	top: 100%;
	background: var(--c-white);
	border-bottom: 1px solid var(--c-border);
	padding: 16px var(--gutter);
	display: none;
}

.header-search.is-open {
	display: block;
}

.header-search .search-form {
	max-width: var(--w-container);
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.main-nav { display: block; }
	.hamburger { display: none; }
	.header-actions .btn { display: inline-flex; }
	.site-branding .brand-sub {
		display: block;
		font-size: 11px;
		color: var(--c-subtext);
		font-weight: 600;
	}
}

/* Mobile nav drawer */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(37, 54, 64, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(86vw, 360px);
	background: var(--c-white);
	padding: 20px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.mobile-nav.is-open .mobile-nav-panel {
	transform: translateX(0);
}

.mobile-nav-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav-close {
	width: 44px;
	height: 44px;
	border-radius: var(--r-btn);
	border: 1px solid var(--c-border);
	background: var(--c-white);
}

.mobile-nav-prompt {
	background: var(--c-sky-light);
	border-radius: var(--r-card);
	padding: 18px;
}

.mobile-nav-prompt p {
	margin: 0 0 10px;
	font-weight: 800;
	color: var(--c-deep);
}

.mobile-nav-prompt ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.mobile-nav-prompt a {
	display: block;
	background: var(--c-white);
	border-radius: var(--r-sm);
	padding: 10px 14px;
	text-decoration: none;
	font-weight: 700;
	color: var(--c-ink);
	border: 1px solid var(--c-border);
}

.mobile-nav ul.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}

.mobile-nav ul.mobile-menu-list a {
	display: block;
	padding: 12px 6px;
	text-decoration: none;
	color: var(--c-ink);
	font-weight: 700;
	border-bottom: 1px solid var(--c-border);
}

.mobile-nav ul.mobile-menu-list ul {
	list-style: none;
	padding-left: 14px;
	margin: 0;
}

.mobile-nav ul.mobile-menu-list ul a {
	font-weight: 500;
	font-size: 14px;
	border-bottom: none;
	padding: 8px 6px;
}

body.mobile-nav-open {
	overflow: hidden;
}

/* ==========================================================================
   9. HERO
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--c-sky-light) 0%, #FFFFFF 78%);
	padding-top: 56px;
	padding-bottom: 56px;
}

.hero-grid {
	display: grid;
	gap: 40px;
	align-items: center;
}

@media (min-width: 1024px) {
	.hero {
		padding-top: 88px;
		padding-bottom: 88px;
	}
	.hero-grid {
		grid-template-columns: 55% 45%;
		gap: 32px;
	}
}

.hero-copy .eyebrow {
	background: var(--c-white);
}

.hero-title {
	font-size: var(--fs-h1);
	line-height: 1.3;
	margin-bottom: 18px;
}

.hero-title .accent {
	color: var(--c-deep);
}

.hero-lead {
	font-size: 17px;
	color: var(--c-subtext);
	max-width: 46ch;
	margin-bottom: 28px;
}

.hero-visual {
	position: relative;
	border-radius: var(--r-bg);
	overflow: hidden;
	background: var(--c-mint);
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-visual .hero-visual-placeholder {
	text-align: center;
	color: #0f6b52;
	padding: 20px;
}

.hero-visual .hero-visual-placeholder svg {
	width: 84px;
	height: 84px;
	margin: 0 auto 12px;
}

.hero-badge {
	position: absolute;
	bottom: 18px;
	left: 18px;
	background: var(--c-white);
	border-radius: var(--r-card);
	padding: 12px 16px;
	box-shadow: var(--shadow-pop);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-sky);
	flex-shrink: 0;
}

/* ==========================================================================
   10. QUICK FIND STRIP
   ========================================================================== */

.quickfind-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 700px) {
	.quickfind-list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.quickfind-item a {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	padding: 18px;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	text-decoration: none;
	height: 100%;
}

.quickfind-item a:hover {
	border-color: var(--c-sky);
}

.quickfind-item .qf-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--c-sky-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-deep);
	flex-shrink: 0;
}

.quickfind-item .qf-label {
	font-weight: 800;
	color: var(--c-ink);
	font-size: 14px;
}

.quickfind-item .qf-desc {
	font-size: 12.5px;
	color: var(--c-subtext);
}

/* ==========================================================================
   11. EIGOBA FINDER
   ========================================================================== */

.finder {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card-lg);
	box-shadow: var(--shadow-card);
	padding: 24px;
	max-width: 880px;
	margin: 0 auto;
}

@media (min-width: 700px) {
	.finder { padding: 40px; }
}

.finder-steps {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	counter-reset: finder-step;
}

.finder-steps li {
	flex: 1;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--c-subtext);
	position: relative;
	padding-top: 30px;
}

.finder-steps li::before {
	counter-increment: finder-step;
	content: counter(finder-step);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--c-border);
	color: var(--c-white);
	font-family: var(--font-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.finder-steps li.is-active {
	color: var(--c-deep);
}

.finder-steps li.is-active::before,
.finder-steps li.is-done::before {
	background: var(--c-deep);
}

.finder-panel {
	display: none;
}

.finder-panel.is-active {
	display: block;
	animation: finder-fade 0.25s ease;
}

@keyframes finder-fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.finder-panel.is-active { animation: none; }
}

.finder-question {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 4px;
}

.finder-question-sub {
	color: var(--c-subtext);
	font-size: 13.5px;
	margin-bottom: 20px;
}

.finder-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

@media (min-width: 620px) {
	.finder-options { grid-template-columns: repeat(4, 1fr); }
}

.finder-options input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.finder-options label {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 64px;
	padding: 12px;
	border: 1.5px solid var(--c-border);
	border-radius: var(--r-btn);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.finder-options input[type="radio"]:checked + label {
	border-color: var(--c-deep);
	background: var(--c-sky-light);
	color: var(--c-deep);
}

.finder-options input[type="radio"]:focus-visible + label {
	outline: 3px solid var(--c-sun);
	outline-offset: 2px;
}

.finder-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.finder-summary {
	background: var(--c-sky-light);
	border-radius: var(--r-card);
	padding: 20px;
	margin-bottom: 24px;
}

.finder-summary dl {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin: 0;
}

@media (min-width: 620px) {
	.finder-summary dl { grid-template-columns: repeat(2, 1fr); }
}

.finder-summary dt {
	font-size: 12px;
	color: var(--c-deep);
	font-weight: 700;
	margin: 0;
}

.finder-summary dd {
	margin: 0;
	font-weight: 700;
}

.finder-result-note {
	font-size: 13px;
	color: var(--c-subtext);
	margin-top: 14px;
}

/* ==========================================================================
   12. HOW-TO / STEP LIST (選び方)
   ========================================================================== */

.step-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
	counter-reset: step;
}

@media (min-width: 860px) {
	.step-list { grid-template-columns: repeat(5, 1fr); }
}

.step-list li {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	padding: 22px 18px;
	counter-increment: step;
	position: relative;
}

.step-list li::before {
	content: counter(step, decimal-leading-zero);
	font-family: var(--font-accent);
	font-weight: 900;
	font-size: 22px;
	color: var(--c-sky);
	display: block;
	margin-bottom: 10px;
}

.step-list h3 {
	font-size: 16px;
	margin-bottom: 6px;
}

.step-list p {
	font-size: 13.5px;
	color: var(--c-subtext);
	margin: 0;
}

/* ==========================================================================
   13. POST / ARCHIVE CARDS
   ========================================================================== */

.post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 620px) {
	.post-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
	.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.post-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	overflow: hidden;
	height: 100%;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.post-card:hover {
	border-color: var(--c-sky);
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.post-card-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--c-sky-light);
	overflow: hidden;
}

.post-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-thumb .thumb-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-sky);
}

.post-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.post-card-cat {
	font-size: 11.5px;
	font-weight: 800;
	color: var(--c-deep);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.post-card-title {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
	color: var(--c-ink);
	text-decoration: none;
}

.post-card-excerpt {
	font-size: 13.5px;
	color: var(--c-subtext);
	line-height: 1.7;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card-meta {
	margin-top: auto;
	font-size: 12px;
	color: var(--c-subtext);
	padding-top: 6px;
}

.section-foot {
	margin-top: 32px;
	text-align: center;
}

/* ==========================================================================
   14. COMPARISON GROUPS (条件別に探す)
   ========================================================================== */

.condition-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 700px) {
	.condition-grid { grid-template-columns: repeat(4, 1fr); }
}

.condition-card {
	display: block;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	padding: 20px 16px;
	text-decoration: none;
	color: var(--c-ink);
}

.condition-card:hover {
	border-color: var(--c-sky);
}

.condition-card .cc-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--c-mint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: #0f6b52;
}

.condition-card .cc-title {
	font-weight: 800;
	font-size: 15px;
	margin-bottom: 4px;
}

.condition-card .cc-desc {
	font-size: 12.5px;
	color: var(--c-subtext);
}

/* ==========================================================================
   15. BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
	font-size: 13px;
	color: var(--c-subtext);
	margin: 0 0 18px;
}

.breadcrumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
	content: "›";
	margin-left: 6px;
	color: var(--c-border);
}

.breadcrumbs a {
	color: var(--c-subtext);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--c-deep);
	text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
	color: var(--c-ink);
	font-weight: 700;
}

/* ==========================================================================
   16. SINGLE POST
   ========================================================================== */

.entry-header {
	max-width: var(--w-content);
	margin: 0 auto 28px;
}

.entry-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.entry-title {
	font-size: var(--fs-h1);
	line-height: 1.4;
	margin-bottom: 14px;
}

.entry-lead {
	font-size: 17px;
	color: var(--c-subtext);
	line-height: 1.8;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	font-size: 13px;
	color: var(--c-subtext);
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--c-border);
}

.entry-meta .author-mini {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--c-ink);
}

.entry-meta .author-mini img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.entry-thumb {
	max-width: var(--w-content);
	margin: 0 auto 32px;
	border-radius: var(--r-card-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--c-sky-light);
}

.entry-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.entry-summary-box {
	max-width: var(--w-content);
	margin: 0 auto 32px;
	background: var(--c-sky-light);
	border-radius: var(--r-card);
	padding: 22px 24px;
}

.entry-summary-box p:last-child {
	margin-bottom: 0;
}

.entry-summary-box .es-title {
	font-weight: 800;
	color: var(--c-deep);
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Table of contents */
.toc {
	max-width: var(--w-content);
	margin: 0 auto 40px;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	padding: 4px 22px 6px;
}

.toc summary {
	cursor: pointer;
	font-weight: 800;
	padding: 16px 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.toc summary::-webkit-details-marker { display: none; }

.toc summary::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--c-subtext);
	border-bottom: 2px solid var(--c-subtext);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.toc[open] summary::after {
	transform: rotate(-135deg);
}

.toc ol {
	margin: 0 0 16px;
	padding-left: 1.2em;
	font-size: 14.5px;
}

.toc ol ol {
	font-size: 13.5px;
	margin-top: 6px;
}

.toc li {
	margin-bottom: 8px;
}

.toc a {
	color: var(--c-ink);
	text-decoration: none;
}

.toc a:hover {
	color: var(--c-deep);
	text-decoration: underline;
}

.entry-content {
	max-width: var(--w-content);
	margin: 0 auto;
	font-size: var(--fs-body);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2 {
	font-size: var(--fs-h2);
	margin-top: 2.1em;
	margin-bottom: 0.8em;
	padding-left: 16px;
	border-left: 6px solid var(--c-sky);
	line-height: 1.5;
}

.entry-content h2:first-child {
	margin-top: 0;
}

.entry-content h3 {
	font-size: var(--fs-h3);
	margin-top: 1.8em;
	margin-bottom: 0.7em;
	padding-left: 12px;
	border-left: 4px solid var(--c-sun);
}

.entry-content h4 {
	margin-top: 1.6em;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content dl {
	margin-bottom: 1.5em;
}

.entry-content li {
	margin-bottom: 0.4em;
}

.entry-content a {
	font-weight: 600;
}

.entry-content strong {
	color: var(--c-ink);
}

.entry-content blockquote {
	margin: 1.8em 0;
	padding: 18px 22px;
	border-left: 4px solid var(--c-border);
	background: var(--c-section-bg);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	color: var(--c-subtext);
}

.entry-content blockquote p:last-child { margin-bottom: 0; }

.entry-content hr {
	border: none;
	border-top: 1px solid var(--c-border);
	margin: 2.4em 0;
}

.entry-content figure {
	margin: 1.8em 0;
}

.entry-content figcaption {
	font-size: 13px;
	color: var(--c-subtext);
	text-align: center;
	margin-top: 8px;
}

.entry-content img {
	border-radius: var(--r-card);
}

.entry-content table {
	width: 100%;
	margin-bottom: 1.6em;
	font-size: 14.5px;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--c-border);
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
}

.entry-content thead th {
	background: var(--c-sky-light);
	color: var(--c-deep);
	font-weight: 800;
}

.entry-content code {
	background: var(--c-section-bg);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.92em;
}

/* alignwide / alignfull inside constrained entry-content */
.entry-content .alignwide {
	max-width: min(100%, 980px);
	margin-left: calc(50% - min(50%, 490px));
	margin-right: auto;
	width: 100%;
}

.entry-content .alignfull {
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.entry-content .alignleft { float: left; margin: 0.4em 1.4em 1em 0; }
.entry-content .alignright { float: right; margin: 0.4em 0 1em 1.4em; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }

/* Buttons block */
.entry-content .wp-block-button__link {
	border-radius: var(--r-btn);
	font-weight: 700;
	padding: 12px 26px;
}

.entry-content .wp-block-buttons {
	margin-bottom: 1.6em;
}

/* ==========================================================================
   17. COMPARISON TABLE WRAPPER (horizontal scroll + sticky first col)
   ========================================================================== */

.eigoba-compare-wrap {
	max-width: 100%;
	margin: 2em 0;
}

.eigoba-compare-hint {
	display: none;
	font-size: 12.5px;
	color: var(--c-subtext);
	text-align: center;
	margin: 0 0 8px;
}

@media (max-width: 780px) {
	.eigoba-compare-hint { display: block; }
}

.eigoba-compare-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	scrollbar-width: thin;
}

.eigoba-compare-scroll table {
	margin: 0;
	min-width: 640px;
}

.eigoba-compare-scroll th,
.eigoba-compare-scroll td {
	border-top: none;
	border-right: none;
	border-bottom: 1px solid var(--c-border);
	white-space: normal;
}

.eigoba-compare-scroll tr > *:first-child {
	position: sticky;
	left: 0;
	background: var(--c-white);
	border-right: 1px solid var(--c-border);
	font-weight: 700;
}

.eigoba-compare-scroll thead tr > *:first-child {
	background: var(--c-sky-light);
	z-index: 2;
}

/* ==========================================================================
   18. EIGOBA NOTE
   ========================================================================== */

.eigoba-note {
	margin: 1.8em auto;
	padding: 20px 22px;
	border-radius: var(--r-card);
	border: 1px solid var(--c-border);
	background: var(--c-section-bg);
	display: flex;
	gap: 14px;
}

.eigoba-note .note-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 900;
	color: var(--c-white);
	background: var(--c-sky);
}

.eigoba-note .note-body p:last-child { margin-bottom: 0; }

.eigoba-note .note-label {
	font-weight: 800;
	font-size: 13.5px;
	margin: 0 0 6px;
	color: var(--c-deep);
}

.eigoba-note--point { background: var(--c-sky-light); }
.eigoba-note--point .note-icon { background: var(--c-sky); }

.eigoba-note--parent { background: var(--c-peach); }
.eigoba-note--parent .note-icon { background: #E8825C; }
.eigoba-note--parent .note-label { color: #a5502f; }

.eigoba-note--suited { background: var(--c-mint); }
.eigoba-note--suited .note-icon { background: #2FA98A; }
.eigoba-note--suited .note-label { color: #0f6b52; }

.eigoba-note--check { background: #FFF3D6; }
.eigoba-note--check .note-icon { background: var(--c-sun); color: var(--c-ink); }
.eigoba-note--check .note-label { color: #8a6300; }

.eigoba-note--beginner { background: var(--c-white); border-color: var(--c-sky); }
.eigoba-note--beginner .note-icon { background: var(--c-deep); }

/* ==========================================================================
   19. CONCLUSION BOX
   ========================================================================== */

.eigoba-conclusion {
	margin: 1.8em auto;
	padding: 26px 26px;
	border-radius: var(--r-card-lg);
	background: linear-gradient(180deg, var(--c-sky-light), #ffffff);
	border: 1px solid var(--c-border);
}

.eigoba-conclusion .ec-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 800;
	font-size: 13px;
	color: var(--c-deep);
	background: var(--c-white);
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 12px;
}

.eigoba-conclusion p:last-child { margin-bottom: 0; }

/* ==========================================================================
   20. SUITED / NOT SUITED
   ========================================================================== */

.eigoba-fit-row {
	display: grid;
	gap: 16px;
	margin: 1.8em 0;
}

@media (min-width: 620px) {
	.eigoba-fit-row { grid-template-columns: repeat(2, 1fr); }
}

.eigoba-suited,
.eigoba-not-suited {
	border-radius: var(--r-card);
	padding: 20px 22px;
	border: 1px solid var(--c-border);
}

.eigoba-suited {
	background: var(--c-mint);
}

.eigoba-not-suited {
	background: var(--c-section-bg);
}

.eigoba-suited > :first-child,
.eigoba-not-suited > :first-child {
	margin-top: 0;
}

.eigoba-suited h3,
.eigoba-not-suited h3,
.eigoba-suited h4,
.eigoba-not-suited h4 {
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	border: none;
	padding: 0;
}

.eigoba-suited h3::before,
.eigoba-suited h4::before {
	content: "◎";
	color: #0f6b52;
}

.eigoba-not-suited h3::before,
.eigoba-not-suited h4::before {
	content: "△";
	color: var(--c-subtext);
}

.eigoba-suited ul,
.eigoba-not-suited ul {
	margin: 0;
	padding-left: 1.1em;
}

.eigoba-suited li,
.eigoba-not-suited li {
	margin-bottom: 6px;
}

/* ==========================================================================
   21. CTA BOX
   ========================================================================== */

.eigoba-cta {
	margin: 2.2em 0;
	padding: 30px 28px;
	border-radius: var(--r-card-lg);
	background: var(--c-deep);
	color: var(--c-white);
	text-align: center;
}

.eigoba-cta h2,
.eigoba-cta h3 {
	color: var(--c-white);
	border: none;
	padding: 0;
	margin-bottom: 10px;
}

.eigoba-cta p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 46ch;
	margin: 0 auto 20px;
}

.eigoba-cta .wp-block-button__link,
.eigoba-cta .btn {
	background: var(--c-sun);
	color: #4a3600;
	box-shadow: none;
}

.eigoba-cta .wp-block-button__link:hover,
.eigoba-cta .btn:hover {
	background: #ffcb33;
	color: #4a3600;
}

.eigoba-cta--light {
	background: var(--c-sky-light);
	color: var(--c-ink);
}

.eigoba-cta--light h2,
.eigoba-cta--light h3 { color: var(--c-ink); }
.eigoba-cta--light p { color: var(--c-subtext); }

/* ==========================================================================
   22. SERVICE CARD
   ========================================================================== */

.service-card {
	border: 1px solid var(--c-border);
	border-radius: var(--r-card-lg);
	padding: 26px;
	margin: 2em 0;
	background: var(--c-white);
}

.service-card-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.service-card-logo {
	width: 64px;
	height: 64px;
	border-radius: var(--r-card);
	border: 1px solid var(--c-border);
	background: var(--c-white);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-card-name {
	font-size: 19px;
	font-weight: 800;
	margin: 0 0 6px;
}

.service-card-spec {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 16px;
	margin: 18px 0;
	padding: 18px;
	background: var(--c-section-bg);
	border-radius: var(--r-card);
}

@media (min-width: 560px) {
	.service-card-spec { grid-template-columns: repeat(4, 1fr); }
}

.service-card-spec dt {
	font-size: 11.5px;
	color: var(--c-subtext);
	font-weight: 700;
	margin: 0 0 3px;
}

.service-card-spec dd {
	margin: 0;
	font-weight: 800;
	font-size: 14px;
}

.service-card-summary {
	color: var(--c-ink);
	margin-bottom: 18px;
}

.service-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* ==========================================================================
   23. FAQ ACCORDION
   ========================================================================== */

.eigoba-faq {
	margin: 2em 0;
	display: grid;
	gap: 10px;
}

.eigoba-faq-item {
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	overflow: hidden;
	background: var(--c-white);
}

.eigoba-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	text-align: left;
	background: none;
	border: none;
	padding: 18px 20px;
	font-weight: 800;
	font-size: 15.5px;
	color: var(--c-ink);
}

.eigoba-faq-q::before {
	content: "Q";
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: var(--c-sky-light);
	color: var(--c-deep);
	font-family: var(--font-accent);
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.eigoba-faq-q-text {
	flex: 1;
}

.eigoba-faq-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
}

.eigoba-faq-icon::before,
.eigoba-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--c-subtext);
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.eigoba-faq-icon::before {
	width: 14px;
	height: 2px;
}

.eigoba-faq-icon::after {
	width: 2px;
	height: 14px;
	transition: transform 0.2s ease;
}

.eigoba-faq-q[aria-expanded="true"] .eigoba-faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.eigoba-faq-a {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease, padding 0.25s ease;
}

.eigoba-faq-a > .eigoba-faq-a-inner {
	padding-bottom: 20px;
	padding-top: 0;
	color: var(--c-subtext);
}

.eigoba-faq-a > .eigoba-faq-a-inner > *:last-child { margin-bottom: 0; }

/* ==========================================================================
   24. AUTHOR BOX / RELATED POSTS
   ========================================================================== */

.author-box {
	max-width: var(--w-content);
	margin: 3em auto 0;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: var(--c-section-bg);
	border-radius: var(--r-card);
	padding: 22px;
}

.author-box img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
}

.author-box-name {
	font-weight: 800;
	margin: 0 0 2px;
}

.author-box-role {
	font-size: 12.5px;
	color: var(--c-deep);
	font-weight: 700;
	margin: 0 0 8px;
}

.author-box-bio {
	font-size: 13.5px;
	color: var(--c-subtext);
	margin: 0;
}

.related-posts {
	max-width: var(--w-container);
	margin: 4em auto 0;
}

.related-posts h2 {
	font-size: 20px;
	border: none;
	padding: 0;
	margin-bottom: 18px;
	text-align: center;
}

/* ==========================================================================
   25. FOOTER
   ========================================================================== */

.site-footer {
	background: var(--c-ink);
	color: rgba(255, 255, 255, 0.82);
	margin-top: var(--space-section);
}

.footer-cta {
	background: var(--c-sky-light);
}

.footer-top {
	padding: 64px 0 40px;
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
	.footer-top { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
	.footer-top { grid-template-columns: 1.3fr repeat(4, 1fr); }
}

.footer-brand .brand-text {
	color: var(--c-white);
	font-family: var(--font-accent);
	font-weight: 900;
	font-size: 22px;
}

.footer-brand p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 10px;
	max-width: 30ch;
}

.footer-col h3 {
	color: var(--c-white);
	font-size: 13px;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 13.5px;
}

.footer-col a:hover {
	color: var(--c-white);
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
}

.footer-bottom nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   26. STICKY MOBILE FIND BAR
   ========================================================================== */

.sticky-find-bar {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 14px;
	z-index: 400;
	display: flex;
	justify-content: center;
}

.sticky-find-bar .btn {
	box-shadow: var(--shadow-pop);
}

@media (min-width: 1024px) {
	.sticky-find-bar { display: none; }
}

/* ==========================================================================
   27. PAGINATION
   ========================================================================== */

.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 48px 0 0;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: var(--r-btn);
	border: 1px solid var(--c-border);
	color: var(--c-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
}

.pagination .current {
	background: var(--c-deep);
	border-color: var(--c-deep);
	color: var(--c-white);
}

.pagination a:hover {
	border-color: var(--c-sky);
	color: var(--c-deep);
}

/* ==========================================================================
   28. SEARCH FORM / 404
   ========================================================================== */

.search-form {
	display: flex;
	gap: 10px;
}

.search-form .search-field-wrap {
	position: relative;
	flex: 1;
}

.search-form label {
	display: block;
}

.search-form input[type="search"] {
	width: 100%;
	height: 48px;
	border-radius: var(--r-btn);
	border: 1px solid var(--c-border);
	padding: 0 16px;
	background: var(--c-white);
}

.search-form input[type="search"]:focus {
	border-color: var(--c-sky);
	outline: none;
}

.search-form .search-submit {
	height: 48px;
	padding: 0 22px;
	border-radius: var(--r-btn);
	border: none;
	background: var(--c-deep);
	color: var(--c-white);
	font-weight: 700;
}

.error-404 {
	text-align: center;
	padding: 80px 0;
}

.error-404 .error-code {
	font-family: var(--font-accent);
	font-weight: 900;
	font-size: 84px;
	color: var(--c-sky);
	line-height: 1;
	margin-bottom: 16px;
}

.error-404 .search-form {
	max-width: 480px;
	margin: 28px auto 0;
}

/* ==========================================================================
   29. COMMENTS
   ========================================================================== */

.comments-area {
	max-width: var(--w-content);
	margin: 3em auto 0;
}

.comments-title {
	font-size: 19px;
}

.comment-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	padding-left: 24px;
}

.comment-body {
	border: 1px solid var(--c-border);
	border-radius: var(--r-card);
	padding: 18px;
	margin-bottom: 14px;
}

.comment-author {
	font-weight: 800;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata {
	font-size: 12px;
	color: var(--c-subtext);
	margin-bottom: 8px;
}

.comment-metadata a {
	color: inherit;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--c-border);
	border-radius: var(--r-btn);
	padding: 12px 14px;
	margin-bottom: 14px;
}

.comment-form label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}

.comment-reply-title {
	font-size: 18px;
}

/* ==========================================================================
   30. WP CORE STATES (galleries, captions, alignment helpers)
   ========================================================================== */

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--c-subtext); text-align: center; }

.entry-content .wp-block-gallery {
	margin-bottom: 1.6em;
}

.entry-content .wp-block-column {
	margin-bottom: 1em;
}

.entry-content .wp-block-quote {
	border-left: 4px solid var(--c-sky);
	padding-left: 18px;
	margin: 1.8em 0;
	font-style: normal;
	color: var(--c-subtext);
}

.entry-content .wp-block-pullquote {
	border-top: 3px solid var(--c-ink);
	border-bottom: 3px solid var(--c-ink);
	padding: 1.4em 0;
	text-align: center;
}

/* ==========================================================================
   31. UTILITIES
   ========================================================================== */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.is-hidden { display: none !important; }

@media (max-width: 1023px) {
	.hide-on-mobile { display: none !important; }
}

@media (min-width: 1024px) {
	.hide-on-desktop { display: none !important; }
}


/* v1.0.1 quality fixes */
.site-branding {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-decoration: none;
}
.site-branding .custom-logo-link,
.site-branding .brand-home-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.service-card-checked,
.service-card-external-note {
	margin: 12px 0 0;
	color: var(--c-sub);
	font-size: 12px;
	line-height: 1.7;
}
.eigoba-noscript-note {
	margin: 0 0 24px;
	padding: 16px 18px;
	border: 1px solid var(--c-border);
	border-radius: 12px;
	background: var(--c-white);
	font-size: 14px;
}
.eigoba-noscript-note p { margin: 0; }
.eigoba-noscript-note p + p { margin-top: 8px; }

/* v1.0.2 — viewport width containment fix
 * Keep the theme shell full-viewport even when WordPress/plugin global styles
 * apply intrinsic/max widths to generic .site/header/footer selectors.
 */
html,
body {
	width: 100%;
	max-width: none;
	min-width: 0;
	overflow-x: clip;
}

#page.site {
	width: 100%;
	max-width: none !important;
	min-width: 0;
	margin: 0;
}

.site-header,
.site-main,
.site-footer,
.footer-cta {
	width: 100%;
	max-width: none !important;
	min-width: 0;
}

.site-header,
.site-footer,
.footer-cta {
	margin-left: 0;
	margin-right: 0;
}

.container,
.header-inner,
.footer-top,
.footer-bottom {
	width: 100%;
	min-width: 0;
}

.header-inner > *,
.footer-top > * {
	min-width: 0;
}

@supports not (overflow: clip) {
	html,
	body {
		overflow-x: hidden;
	}
}

/* v1.0.3: Mobile navigation should be a true full-screen menu on phones. */
@media (max-width: 767px) {
	.mobile-nav-panel {
		position: fixed;
		inset: 0;
		width: 100vw;
		max-width: none;
		height: 100dvh;
		min-height: 100vh;
		box-sizing: border-box;
		padding: max(16px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
		border-radius: 0;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.mobile-nav-top {
		position: sticky;
		top: 0;
		z-index: 2;
		background: var(--c-white);
		padding-bottom: 10px;
	}

	.mobile-nav-prompt {
		flex: 0 0 auto;
	}

	.mobile-nav nav {
		padding-bottom: 24px;
	}
}

/* =========================================================
   EIGOBA v2.0 — visual direction based on approved mockup
   ========================================================= */
:root{--e2-navy:#102d4c;--e2-sky:#2ba9df;--e2-deep:#1688c0;--e2-yellow:#ffd65a;--e2-mint:#dff6ed;--e2-peach:#fff0e8;--e2-bluebg:#eef9ff;--e2-paper:#fbfdff;--e2-line:#dbeaf2;--e2-muted:#667985}
body{background:#fff;color:var(--e2-navy);font-family:"Noto Sans JP",-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif}.container{max-width:1180px}.site-header{background:rgba(255,255,255,.97);border-bottom:1px solid #edf3f6;box-shadow:none}.header-inner{min-height:78px}.brand-text{font-size:30px;letter-spacing:.14em;font-weight:900;color:var(--e2-navy)}.brand-sub{font-size:9px;letter-spacing:.06em;color:#567080}.main-nav a{font-size:14px;font-weight:700;color:#18334d}.header-actions .btn{border-radius:9px;background:linear-gradient(90deg,#1696cc,#2eb4e5);box-shadow:none;padding:12px 18px}.hamburger span{background:var(--e2-navy)}
.e2-hero{max-width:1440px;margin:0 auto;min-height:520px;display:grid;grid-template-columns:47% 53%;overflow:hidden;background:linear-gradient(110deg,#f8fdff 0%,#eaf8ff 55%,#fff 100%)}.e2-hero-copy{padding:72px 42px 50px max(42px,calc((100vw - 1180px)/2));position:relative;z-index:2}.e2-kicker{display:inline-block;color:#168fca;font-weight:700;font-size:16px;letter-spacing:.04em;border-bottom:2px solid #54bce7;padding-bottom:7px;transform:rotate(-1deg)}.e2-hero h1{font-family:"Yu Mincho","Hiragino Mincho ProN",serif;font-size:clamp(44px,5vw,70px);line-height:1.3;letter-spacing:.02em;margin:24px 0 18px;color:#0e2c4a}.e2-lead{font-size:17px;line-height:2;font-weight:600;max-width:610px}.e2-main-btn{display:inline-flex;align-items:center;justify-content:center;gap:28px;margin-top:26px;background:var(--e2-yellow);color:#17324b!important;padding:18px 34px;border-radius:40px;font-weight:800;min-width:330px;box-shadow:inset 0 0 0 2px rgba(255,255,255,.7)}.e2-main-btn:hover{transform:translateY(-2px);filter:brightness(1.02)}.e2-doodle{margin:38px 0 0 18px;font-family:cursive;font-size:25px;color:#2aa6dc;transform:rotate(-6deg)}.e2-hero-photo{position:relative;min-width:0}.e2-hero-photo:before{content:"";position:absolute;inset:0 auto 0 -90px;width:190px;background:linear-gradient(90deg,#eefaff,rgba(238,250,255,0));z-index:1;transform:skewX(-10deg)}.e2-hero-photo img{width:100%;height:100%;object-fit:cover;display:block}.e2-handcopy{position:absolute;right:9%;top:12%;z-index:2;font-family:"Yu Mincho",serif;font-size:23px;line-height:1.8;letter-spacing:.08em;transform:rotate(-5deg);text-shadow:0 1px 6px #fff}
.e2-age-nav{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding-top:24px;padding-bottom:24px}.e2-age-card{min-height:128px;display:grid;grid-template-columns:44% 1fr 24px;background:#f8fbfd;border-radius:12px;overflow:hidden;color:var(--e2-navy)!important;position:relative}.e2-age-card:nth-child(1){background:#fff1ed}.e2-age-card:nth-child(2){background:#eaf8ff}.e2-age-card:nth-child(3){background:#fff7e3}.e2-age-card:nth-child(4){background:#eaf9f2}.e2-age-card img{width:100%;height:100%;object-fit:cover}.e2-age-copy{padding:18px 8px 12px 16px;align-self:center}.e2-age-copy strong{display:block;font-size:22px;color:#ef654c;margin-bottom:10px}.e2-age-card:nth-child(2) strong{color:#159bd5}.e2-age-card:nth-child(3) strong{color:#ef9718}.e2-age-card:nth-child(4) strong{color:#22a574}.e2-age-copy small{font-size:13px;line-height:1.6;font-weight:600}.e2-age-card>b{align-self:end;margin:0 10px 12px 0;width:28px;height:28px;border-radius:50%;background:#fff;display:grid;place-items:center;color:#ef654c}.e2-age-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(22,76,110,.09)}
.e2-finder{margin-top:4px;margin-bottom:34px;background:linear-gradient(110deg,#eaf9ff,#dff5ff);border-radius:16px;min-height:210px;padding:38px 46px;display:grid;grid-template-columns:1.35fr .65fr;align-items:center;position:relative;overflow:hidden}.e2-finder-label{display:inline-block;background:#168fc8;color:#fff;padding:7px 16px;border-radius:18px;font-size:12px;font-weight:800;letter-spacing:.12em}.e2-note{position:absolute;left:240px;top:25px;color:#269ed2;font-family:cursive;transform:rotate(-4deg)}.e2-finder h2{font-size:30px;margin:18px 0 7px}.e2-finder p{font-size:14px}.e2-blue-btn{display:inline-flex;gap:40px;align-items:center;background:#199ed7;color:#fff!important;border-radius:28px;padding:13px 28px;margin-top:15px;font-weight:800}.e2-finder-art{color:#168fc8}.e2-finder-art svg{width:100%;max-width:360px}.e2-quiz{padding-top:16px;padding-bottom:42px}.e2-quiz>h2{text-align:center;font-size:24px}.e2-quiz-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.e2-quiz-grid a{padding:20px;border:1px solid var(--e2-line);border-radius:10px;color:var(--e2-navy)!important;background:#fff}.e2-quiz-grid span{color:#159bd5;font-size:12px}.e2-quiz-grid b{display:block;font-size:18px;margin:4px 0}.e2-quiz-grid small{color:var(--e2-muted)}
.e2-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:34px;padding-bottom:70px}.e2-section-title{display:flex;align-items:center;gap:12px;margin:18px 0 22px;border-left:4px solid #159bd5;padding-left:14px}.e2-section-title h2{font-size:25px;margin:0}.e2-section-title>span{font-family:cursive;color:#55add4;font-size:16px;transform:rotate(-5deg)}.e2-worries{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}.e2-worries a{text-align:center;color:var(--e2-navy)!important;font-size:12px;font-weight:700;line-height:1.55}.e2-face{display:block;width:94px;height:74px;margin:0 auto 10px;border-radius:50%;background:#eaf8ff;position:relative}.e2-face:before{content:"";position:absolute;width:34px;height:34px;border:2px solid #315e7d;border-radius:50%;left:29px;top:16px}.e2-face:after{content:"⌒";position:absolute;left:37px;top:29px;color:#315e7d;font-size:18px}.e2-face-1{background:#eef8ff}.e2-face-2{background:#f3f9ff}.e2-face-3{background:#fff7e8}.e2-face-4{background:#e9f9f4}.e2-guide-head{margin-top:46px}.e2-guide{display:grid;grid-template-columns:1.2fr 1fr;gap:16px}.e2-guide-main{border:1px solid var(--e2-line);border-radius:10px;overflow:hidden;background:#fff;display:grid;grid-template-columns:46% 1fr}.e2-guide-main img{width:100%;height:100%;object-fit:cover}.e2-guide-main>div{padding:22px}.e2-guide-main h3{font-size:21px;margin:0 0 10px}.e2-guide-main p{font-size:13px;line-height:1.8}.e2-guide-main a{display:inline-block;border:1px solid #159bd5;color:#159bd5!important;border-radius:24px;padding:9px 18px;font-size:12px;font-weight:700}.e2-guide-links{border:1px solid var(--e2-line);border-radius:10px;overflow:hidden}.e2-guide-links a{display:block;padding:17px 20px;color:var(--e2-navy)!important;border-bottom:1px solid var(--e2-line);position:relative}.e2-guide-links a:last-child{border:0}.e2-guide-links a:after{content:"›";position:absolute;right:18px;top:25px}.e2-guide-links b,.e2-guide-links small{display:block}.e2-guide-links small{color:var(--e2-muted);margin-top:4px}.e2-pick-head{margin-top:48px}.e2-pickups{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.e2-pickups article a{display:block;color:var(--e2-navy)!important;position:relative}.e2-pickups img{width:100%;aspect-ratio:1.7;object-fit:cover;border-radius:7px}.e2-pickups h3{font-size:14px;line-height:1.55;margin:10px 0 6px}.e2-pickups time{font-size:11px;color:#8b9aa3}.e2-chip{position:absolute;left:8px;top:8px;background:#159bd5;color:#fff;border-radius:14px;padding:4px 10px;font-size:10px;font-weight:800}.e2-ranking{padding-top:4px}.e2-ranking .e2-section-title h2{font-size:21px}.e2-ranking ol{list-style:none;margin:0;padding:0;border:1px solid var(--e2-line);border-radius:10px;overflow:hidden}.e2-ranking li{margin:0;border-bottom:1px solid var(--e2-line)}.e2-ranking li:last-child{border:0}.e2-ranking li a{display:grid;grid-template-columns:34px 68px 1fr;align-items:center;gap:10px;padding:11px;color:var(--e2-navy)!important}.e2-ranking li b{width:28px;height:28px;border-radius:4px;background:#eef3f6;display:grid;place-items:center}.e2-ranking li:first-child b{background:#ffd65a}.e2-ranking img{width:68px;height:48px;object-fit:cover;border-radius:4px}.e2-ranking li span{font-size:12px;line-height:1.5;font-weight:700}.e2-side-cta{margin-top:40px;background:#e9f8ff;border-radius:12px;padding:18px;text-align:center;overflow:hidden}.e2-side-cta img{width:100%;aspect-ratio:1.8;object-fit:cover;border-radius:8px}.e2-side-cta p{font-family:"Yu Mincho",serif;font-size:20px;line-height:1.6}.e2-side-cta strong{display:block;font-size:25px;letter-spacing:.12em;margin:10px}.e2-side-cta a{display:block;background:#159bd5;color:#fff!important;border-radius:28px;padding:12px;font-weight:800}
/* Article + child pages: same visual language as homepage */
.single .site-main,.page .site-main,.archive .site-main,.category .site-main,.search .site-main{background:linear-gradient(180deg,#f7fcff 0,#fff 380px)}.single article.section,.page article.section{padding-top:42px}.container--content{max-width:820px}.entry-header{background:#fff;border:1px solid #e4f0f5;border-radius:18px;padding:42px 46px 30px;position:relative;box-shadow:0 16px 50px rgba(24,105,145,.06)}.entry-header:before{content:"EIGOBA JOURNAL";display:block;color:#31a9d9;font-size:11px;font-weight:900;letter-spacing:.18em;margin-bottom:16px}.entry-title{font-family:"Yu Mincho","Hiragino Mincho ProN",serif;font-size:clamp(32px,4vw,48px);line-height:1.45;color:var(--e2-navy)}.entry-lead{font-size:16px;line-height:1.95;color:#526b79}.entry-meta{border-top:1px dashed #dbeaf2;padding-top:16px;margin-top:22px}.entry-thumb{margin:28px 0 34px;border-radius:18px;overflow:hidden;box-shadow:0 18px 45px rgba(21,92,130,.1)}.entry-thumb img{width:100%;max-height:500px;object-fit:cover}.entry-summary-box{background:#eaf9ff;border:0;border-radius:14px;padding:24px 28px;position:relative}.entry-summary-box:after{content:"Hello!";position:absolute;right:24px;top:14px;font-family:cursive;color:#64b7db;transform:rotate(-8deg)}.entry-summary-box .es-title{color:#158ec4}.toc{border:1px solid #dcebf2!important;background:#fff!important;border-radius:14px!important}.entry-content{font-size:16px;line-height:2;color:#263f50}.entry-content h2{font-family:"Yu Mincho",serif;font-size:29px;margin-top:58px;padding:15px 0 15px 20px;border-left:5px solid #2ba9df;border-bottom:1px solid #dcecf3;background:linear-gradient(90deg,#f1fbff,transparent)}.entry-content h3{font-size:21px;margin-top:38px;padding-bottom:10px;border-bottom:2px solid #dff3fb;color:#173b57}.entry-content a{color:#148ec7;text-decoration-thickness:1px;text-underline-offset:3px}.entry-content blockquote{background:#fff8e5;border-left:4px solid #ffd65a;border-radius:0 12px 12px 0;padding:22px 26px}.entry-content table{border-radius:10px;overflow:hidden}.entry-content th{background:#e9f8ff;color:#173b57}.author-box{background:#f0faf7!important;border-color:#d8eee6!important;border-radius:16px!important}.related-posts{background:#f7fcff;padding-top:50px;padding-bottom:60px}.archive-header,.page-header{background:#eaf9ff;border-radius:18px;padding:40px;margin:30px auto}.card-post{border-radius:12px;overflow:hidden;border-color:#e2eef3}.card-post:hover{transform:translateY(-3px);box-shadow:0 15px 35px rgba(22,89,125,.08)}
@media(max-width:900px){.main-nav,.header-actions>.btn{display:none}.e2-hero{grid-template-columns:1fr;min-height:0}.e2-hero-copy{padding:48px 24px 28px}.e2-hero h1{font-size:46px}.e2-hero-photo{height:390px}.e2-hero-photo:before{display:none}.e2-age-nav{grid-template-columns:repeat(2,1fr)}.e2-finder{margin-left:20px;margin-right:20px;grid-template-columns:1fr;padding:30px}.e2-note{position:static;margin:10px 0}.e2-finder-art{display:none}.e2-content-grid{grid-template-columns:1fr}.e2-ranking{max-width:none}.e2-worries{grid-template-columns:repeat(3,1fr)}.e2-pickups{grid-template-columns:repeat(2,1fr)}.e2-quiz-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.header-inner{min-height:66px}.brand-text{font-size:24px}.brand-sub{display:none}.e2-hero{display:flex;flex-direction:column}.e2-hero-copy{padding:34px 20px 24px}.e2-kicker{font-size:12px}.e2-hero h1{font-size:38px;line-height:1.35;margin-top:18px}.e2-lead{font-size:14px;line-height:1.8}.e2-main-btn{min-width:0;width:100%;padding:16px 20px}.e2-doodle{display:none}.e2-hero-photo{height:330px;order:-1}.e2-handcopy{font-size:18px;top:auto;bottom:18px;right:20px;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.5)}.e2-age-nav{padding:14px;gap:8px}.e2-age-card{grid-template-columns:1fr;min-height:0}.e2-age-card img{height:100px}.e2-age-copy{padding:12px}.e2-age-copy strong{font-size:18px;margin-bottom:5px}.e2-age-card>b{position:absolute;right:4px;bottom:4px}.e2-finder{margin:8px 14px 28px;padding:25px 20px}.e2-finder h2{font-size:23px}.e2-blue-btn{width:100%;justify-content:space-between}.e2-quiz{padding:0 14px 30px}.e2-quiz-grid{gap:8px}.e2-quiz-grid a{padding:14px 12px}.e2-content-grid{padding:0 16px 50px}.e2-section-title h2{font-size:21px}.e2-section-title>span{font-size:13px}.e2-worries{grid-template-columns:repeat(2,1fr);gap:18px 8px}.e2-face{width:82px;height:66px}.e2-guide{grid-template-columns:1fr}.e2-guide-main{grid-template-columns:1fr}.e2-guide-main img{height:190px}.e2-pickups{gap:12px}.e2-pickups h3{font-size:13px}.e2-ranking{margin-top:30px}.entry-header{padding:28px 22px 22px;border-radius:14px}.entry-title{font-size:30px}.entry-content h2{font-size:24px;margin-top:45px}.entry-content h3{font-size:19px}.single article.section,.page article.section{padding-top:22px}.container--content{padding-left:16px;padding-right:16px}}

/* EIGOBA v2.1 visual polish — approved homepage */
.e2-hero h1{font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;font-weight:800;letter-spacing:.01em;line-height:1.24}
.e2-section-title{min-width:0;flex-wrap:wrap}.e2-section-title h2{line-height:1.35}.e2-section-title>span{white-space:nowrap}
.e2-guide,.e2-guide-head{display:none!important}
.e2-content-grid{align-items:start}
.e2-pick-head{margin-top:48px}
.e2-pickups{align-items:start}
.e2-pickups article{min-width:0}
.e2-pickups article a{height:100%;text-decoration:none!important}
.e2-pickups img{display:block;width:100%;aspect-ratio:16/9;height:auto;object-fit:cover;object-position:center;border-radius:8px;background:#eef6fa}
.e2-pickups h3{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;min-height:4.65em}
.e2-ranking ol{background:#fff}
.e2-ranking li a{grid-template-columns:34px 92px minmax(0,1fr);min-height:78px;text-decoration:none!important}
.e2-ranking img{display:block;width:92px;height:auto;aspect-ratio:16/9;object-fit:cover;object-position:center;border-radius:6px;background:#eef6fa}
.e2-ranking li span{min-width:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}
.e2-worries a{text-decoration:none!important}.e2-worries a span{text-decoration:none!important}
.e2-main-btn,.e2-blue-btn{text-decoration:none!important}
@media(max-width:900px){.e2-content-grid{grid-template-columns:1fr}.e2-ranking{margin-top:12px}.e2-ranking li a{grid-template-columns:38px 120px minmax(0,1fr)}.e2-ranking img{width:120px}}
@media(max-width:600px){.e2-hero h1{font-size:36px;line-height:1.28}.e2-section-title{gap:8px;margin-bottom:18px}.e2-section-title h2{font-size:20px}.e2-pick-head{margin-top:38px}.e2-pickups{grid-template-columns:1fr 1fr}.e2-pickups img{aspect-ratio:16/9}.e2-pickups h3{min-height:4.5em;line-height:1.5}.e2-ranking li a{grid-template-columns:32px 96px minmax(0,1fr);gap:9px;padding:10px}.e2-ranking img{width:96px}.e2-ranking li span{font-size:12px}}


/* EIGOBA v2.2 visual corrections */
.e2-age-copy small{white-space:normal;word-break:keep-all;overflow-wrap:normal}
.e2-age-copy small br{display:block}
.e2-worries a{text-decoration:none!important}
.e2-worries a>span:last-child{text-decoration:none!important}
.e2-worry-icon{display:grid;place-items:center;width:96px;height:78px;margin:0 auto 12px;border-radius:50%;background:#eaf8ff;color:#315e7d}
.e2-worry-icon svg{width:62px;height:62px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.e2-worry-focus{background:#eef8ff}.e2-worry-siblings{background:#f2f8ff}.e2-worry-wallet{background:#fff6e7}.e2-worry-game{background:#e9f9f4}
.e2-face{display:none!important}
.e2-pickups{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.e2-pickups img{aspect-ratio:16/9;width:100%;height:auto;object-fit:cover;object-position:center}
.e2-ranking li a{grid-template-columns:34px 92px minmax(0,1fr)}
.e2-ranking img{aspect-ratio:16/9;width:92px;height:auto;object-fit:cover}
.e2-side-cta img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;object-position:center 35%;border-radius:10px}
.e2-side-cta p{margin:18px 0 8px}
@media(max-width:900px){.e2-pickups{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:700px){.e2-pickups{grid-template-columns:1fr}.e2-pickups h3{min-height:0}.e2-worry-icon{width:84px;height:70px}.e2-worry-icon svg{width:54px;height:54px}}

/* EIGOBA v2.3 — photo presentation + CTA cleanup */
.e2-hero-photo .e2-handcopy{display:none!important}
.e2-age-nav{gap:18px;padding-top:30px;padding-bottom:34px}
.e2-age-card{display:flex;flex-direction:column;min-height:310px;border-radius:18px;background:#fff!important;box-shadow:0 8px 28px rgba(25,80,110,.07);overflow:hidden}
.e2-age-card img{width:100%;height:172px;object-fit:cover;object-position:center;display:block}
.e2-age-copy{padding:18px 20px 22px;align-self:stretch;flex:1}
.e2-age-copy strong{font-size:22px;margin-bottom:8px;text-decoration:none!important}
.e2-age-copy small{font-size:14px;line-height:1.75;font-weight:650;color:#173650}
.e2-age-card>b{position:absolute;right:16px;bottom:16px;margin:0;width:34px;height:34px;box-shadow:0 5px 14px rgba(25,80,110,.09)}
.e2-age-card:nth-child(1) .e2-age-copy{background:#fff2ef}
.e2-age-card:nth-child(2) .e2-age-copy{background:#edf9ff}
.e2-age-card:nth-child(3) .e2-age-copy{background:#fff8e9}
.e2-age-card:nth-child(4) .e2-age-copy{background:#edf9f4}
.e2-age-card:hover img{transform:scale(1.025)}
.e2-age-card img{transition:transform .35s ease}

.e2-side-cta{padding:0 0 20px;background:#eaf8ff;border-radius:18px;overflow:hidden;text-align:left}
.e2-side-cta img{width:100%;height:190px;aspect-ratio:auto;object-fit:cover;object-position:center 30%;border-radius:0;display:block}
.e2-side-cta p{font-family:"Yu Mincho","Hiragino Mincho ProN",serif;font-size:22px;line-height:1.6;margin:22px 22px 10px;color:#123553}
.e2-side-cta strong{display:block;font-size:25px;letter-spacing:.12em;margin:0 22px 18px;color:#123553}
.e2-side-cta a{margin:0 18px;display:flex;justify-content:center;align-items:center;background:#159bd5;color:#fff!important;border-radius:30px;padding:14px 16px;font-weight:800;text-align:center}

@media(max-width:900px){
 .e2-age-card{min-height:280px}.e2-age-card img{height:155px}
 .e2-side-cta{display:grid;grid-template-columns:42% 1fr;grid-template-rows:auto auto auto;align-items:center}
 .e2-side-cta img{grid-row:1/4;height:100%;min-height:230px}
 .e2-side-cta p{margin:22px 22px 8px}.e2-side-cta strong{margin:0 22px 14px}.e2-side-cta a{margin:0 22px 22px}
}
@media(max-width:600px){
 .e2-age-nav{padding:14px;gap:12px}
 .e2-age-card{min-height:0;border-radius:14px}
 .e2-age-card img{height:125px}
 .e2-age-copy{padding:13px 14px 46px}
 .e2-age-copy strong{font-size:18px}.e2-age-copy small{font-size:12px;line-height:1.65}
 .e2-age-card>b{right:10px;bottom:10px;width:30px;height:30px}
 .e2-side-cta{display:block;text-align:center}
 .e2-side-cta img{height:220px;min-height:0;object-position:center 25%}
 .e2-side-cta p{margin:20px 18px 8px}.e2-side-cta strong{margin:0 18px 16px}.e2-side-cta a{margin:0 16px}
}

/* EIGOBA v2.4 — simplified KURUMO-like homepage */
.e3-hero{min-height:500px}.e3-hero-photo{background:#edf9ff}.e3-hero-photo img{object-position:center center}.e3-hero-photo:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(238,250,255,.3),transparent 24%);pointer-events:none}
.e3-entrances{padding-top:54px}.e3-heading{margin:0 0 24px}.e3-heading p,.e3-en{margin:0 0 5px;color:#159bd5;font-size:11px;font-weight:900;letter-spacing:.16em;text-transform:uppercase}.e3-heading h2{margin:0;font-size:28px;line-height:1.4;color:#102d4c}.e3-entrances .e2-age-nav{padding:0 0 42px}.e3-entrances .e2-age-card{min-height:260px}.e3-entrances .e2-age-card img{height:145px}
.e3-finder{margin-top:0;margin-bottom:72px}.e3-finder .e2-note{left:230px}.e3-editorial{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:42px;align-items:start;padding-bottom:80px}.e3-editorial .e2-pickups{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.e3-editorial .e2-pickups h3{font-size:15px;min-height:3.1em}.e3-ranking{padding:0}.e3-ranking .e3-heading h2{font-size:25px}.e3-ranking ol{border:0;border-top:1px solid #dbeaf2;border-radius:0}.e3-ranking li a{padding:15px 4px;grid-template-columns:32px 96px minmax(0,1fr)}.e3-ranking img{width:96px}.e3-heading-row{display:flex;align-items:end;justify-content:space-between;gap:20px}.e3-heading-row>a{font-size:12px;font-weight:800;color:#168fc8!important;text-decoration:none}
.e3-latest-wrap{background:#f7fbfd;padding:72px 0 78px}.e3-latest{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 28px}.e3-latest article{border-top:1px solid #dce9ef}.e3-latest article:nth-child(-n+3){border-top:0}.e3-latest a{display:grid;grid-template-columns:120px minmax(0,1fr);gap:16px;padding:22px 0;color:#102d4c!important;text-decoration:none!important}.e3-latest img,.e3-noimg{width:120px;aspect-ratio:16/10;object-fit:cover;border-radius:7px;background:#e7f5fb;display:grid;place-items:center;font-size:12px;font-weight:900;letter-spacing:.12em}.e3-latest h3{font-size:14px;line-height:1.6;margin:5px 0 8px}.e3-latest time{font-size:11px;color:#8a9aa3}.e3-cat{font-size:10px;color:#168fc8;font-weight:800}
.e3-philosophy{margin-top:82px;margin-bottom:82px;padding:54px 60px;border-top:1px solid #dceaf1;border-bottom:1px solid #dceaf1;display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:70px;align-items:center}.e3-philosophy h2{font-family:"Yu Mincho","Hiragino Mincho ProN",serif;font-size:34px;line-height:1.6;margin:8px 0 18px}.e3-philosophy p:not(.e3-en){max-width:700px;color:#526b79;line-height:2;font-size:14px}.e3-philosophy-mark{height:180px;border-radius:50%;background:#eaf9ff;display:flex;flex-direction:column;align-items:center;justify-content:center}.e3-philosophy-mark span{font-size:64px;font-weight:900;color:#159bd5}.e3-philosophy-mark small{font-size:10px;font-weight:700;color:#476779}
.e3-final-cta{margin-bottom:82px;background:#e9f8ff;border-radius:18px;padding:38px 42px;display:grid;grid-template-columns:minmax(0,1fr) auto 150px;gap:28px;align-items:center;overflow:hidden}.e3-final-cta>div>span{font-size:11px;font-weight:900;letter-spacing:.14em;color:#159bd5}.e3-final-cta h2{font-size:25px;margin:7px 0}.e3-final-cta p{margin:0;font-size:13px;color:#526b79}.e3-final-cta>a{background:#159bd5;color:#fff!important;border-radius:30px;padding:15px 25px;font-weight:800;text-decoration:none!important;white-space:nowrap}.e3-final-cta>a b{margin-left:18px}.e3-final-cta svg{width:150px;color:#159bd5}
@media(max-width:900px){.e3-editorial{grid-template-columns:1fr}.e3-latest{grid-template-columns:repeat(2,1fr)}.e3-latest article:nth-child(3){border-top:1px solid #dce9ef}.e3-philosophy{grid-template-columns:1fr 220px;gap:35px;padding:44px 30px}.e3-final-cta{grid-template-columns:1fr auto}.e3-final-cta svg{display:none}}
@media(max-width:600px){.e3-hero-photo{order:0;height:280px}.e3-hero-photo img{object-fit:cover}.e3-entrances{padding-top:34px}.e3-heading h2{font-size:23px}.e3-entrances .e2-age-nav{padding:0 14px 32px;grid-template-columns:1fr 1fr}.e3-entrances .e2-age-card{min-height:0}.e3-entrances .e2-age-card img{height:112px}.e3-finder{margin-bottom:48px}.e3-editorial{padding:0 16px 54px;gap:44px}.e3-editorial .e2-pickups{grid-template-columns:1fr}.e3-editorial .e2-pickups h3{min-height:0;font-size:15px}.e3-latest-wrap{padding:48px 0}.e3-latest-wrap .container{padding:0 16px}.e3-latest{grid-template-columns:1fr}.e3-latest article:nth-child(2),.e3-latest article:nth-child(3){border-top:1px solid #dce9ef}.e3-latest a{grid-template-columns:112px 1fr}.e3-latest img,.e3-noimg{width:112px}.e3-philosophy{margin:54px 16px;padding:38px 20px;grid-template-columns:1fr}.e3-philosophy h2{font-size:27px}.e3-philosophy-mark{height:150px}.e3-final-cta{margin:0 16px 58px;padding:30px 22px;grid-template-columns:1fr}.e3-final-cta h2{font-size:22px}.e3-final-cta>a{text-align:center;margin-top:8px}}
