/* ==========================================================================
   ニゲコム — nigecom.jp デザイン準拠
   ========================================================================== */

/* Material Symbols ヘルパー */
.material-symbols {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: inherit;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
}

:root {
	--color-yellow: #f2e02e;
	--color-red: #ed1c24;
	--color-text: #333333;
	--color-muted: #7b7b7b;
	--color-cream: #fefcea;
	--color-link-blue: #0087cc;
	--color-link-bg: #f3fbff;
	--color-white: #ffffff;
	--color-border: #e8e8e8;
	--color-line: #222222;
	--font-ja: "Noto Sans JP", "Hiragino Sans", sans-serif;
	--font-heading: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	--font-en: "Roboto Mono", monospace;
	--font-mono: "Roboto Mono", monospace;
	--font-condensed: "Roboto Condensed", sans-serif;
	--content-width: 540px;
	--sidebar-width: 350px;
	--layout-gap: 60px;
	--frame-border: 12px;
	--space-section: 40px;
	--space-section-lg: 50px;
	--space-block: 40px;
	--space-block-md: 30px;
	--space-block-sm: 20px;
	--space-block-xs: 10px;
	--content-column-width: calc(var(--content-width) + var(--frame-border) * 2);
	--site-width: calc(var(--sidebar-width) + var(--layout-gap) + var(--content-column-width));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-yellow);
	color: var(--color-text);
	font-family: var(--font-ja);
	font-size: 14px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

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

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

.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

/* ブログ: ::before 擬似要素の Material アイコン共通 */
.entry-content--blog :is(
	.blog-summary__label,
	.blog-summary__list > li,
	.blog-list--check > li,
	.blog-list--icon > li,
	.blog-list--link > li,
	.blog-pros-cons__label,
	.blog-readmore__label,
	.blog-toc__head,
	.blog-faq__q,
	.blog-faq__body,
	.blog-affiliate__highlight,
	.blog-type-pick__label,
	.blog-product-pick__label,
	.blog-reminder,
	.blog-timeline__label,
	.blog-print-checklist__label
)::before,
.entry-content--blog .blog-toc__head::after,
.entry-content--blog .blog-faq summary::after {
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 28;
	-webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   モバイルヘッダー
   -------------------------------------------------------------------------- */

.mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	background: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: transform 0.25s ease;
	will-change: transform;
}

.mobile-header--hidden {
	transform: translateY(-100%);
	pointer-events: none;
}

.mobile-header__logo img {
	width: 200px;
	height: auto;
}

.mobile-header__menu {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	line-height: 0;
}

.mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(0, 0, 0, 0.4);
}

.mobile-drawer[hidden] {
	display: none;
}

.mobile-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	background: var(--color-white);
	padding: 25px 15px;
	overflow-y: auto;
}

.mobile-drawer__close {
	position: absolute;
	top: 12px;
	right: min(320px, 85vw);
	margin-right: 10px;
	background: none;
	border: none;
	color: var(--color-white);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 5px 10px;
}

/* --------------------------------------------------------------------------
   レイアウト
   -------------------------------------------------------------------------- */

.site-wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-sidebar {
	display: none;
}

.site-column {
	flex: 1;
	min-width: 0;
}

.site-main {
	display: block;
}

.site-content-frame {
	background: var(--color-white);
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   サイドバーナビ
   -------------------------------------------------------------------------- */

.sidebar-nav {
	display: flex;
	flex-direction: column;
}

.sidebar-nav__item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 0;
	border-bottom: 1px solid #222222;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #222222;
	transition: opacity 0.2s;
}

.sidebar-nav__item:hover {
	opacity: 0.75;
}

.sidebar-nav__icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 0px;
	color: #222222;
}

.sidebar-nav__arrow {
	display: block;
	width: 18px;
	height: 18px;
}

/* --------------------------------------------------------------------------
   セクション見出し
   -------------------------------------------------------------------------- */

.section-heading {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
	text-align: left;
}

.section-heading--center {
	text-align: center;
	margin: 30px 0;
}

.section-heading__en {
	margin: 0 0 0;
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.section-heading__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-text);
}

.section-heading__sub {
	font-size: 16px;
	font-weight: 500;
}

.section-heading__lead {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--color-text);
}

.section-heading:has(.section-heading__lead) {
	gap: 16px;
}

.home-section--type .section-heading__lead {
	font-size: 16px;
}

.divider {
	display: block;
	width: 100%;
	margin: 0;
}

/* --------------------------------------------------------------------------
   トップ KV
   -------------------------------------------------------------------------- */

.home-kv {
	line-height: 0;
}

.home-kv__img {
	width: 100%;
	display: block;
}

/* --------------------------------------------------------------------------
   トップ セクション共通
   -------------------------------------------------------------------------- */

.home-section {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.home-section--about {
	margin-top: var(--space-section);
	padding: 50px 30px;
	gap: var(--space-block);
	background: var(--color-cream);
}

.home-section--type {
	margin-top: var(--space-section);
	padding: 50px 30px 0;
	gap: var(--space-block);
	background: var(--color-white);
}

.home-section--type > .divider:last-child {
	margin-top: var(--space-block-sm);
}

.home-section--place {
	margin-top: var(--space-section-lg);
	padding: 50px 30px;
	gap: var(--space-block);
	background: var(--color-cream);
}

.home-section--news {
	margin-top: 0;
	padding: 0 30px 50px;
	gap: var(--space-section-lg);
	background-color: transparent;
}

.home-news {
	margin-top: var(--space-section);
}

.home-news__lead {
	padding: 20px 30px 50px;
	background: var(--color-white);
}

.home-section--links {
	margin-top: var(--space-section);
	margin-bottom: var(--space-section);
	padding: 20px 0 0;
	gap: var(--space-section-lg);
	background: var(--color-white);
}

.home-related-links {
	padding: 0 30px;
}

.home-text {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: left;
}

.home-about-img {
	width: 100%;
	margin: 0;
}

/* --------------------------------------------------------------------------
   アイコンカード
   -------------------------------------------------------------------------- */

.icon-card-row {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 25px;
}

.icon-card-row--case {
	gap: 16px;
}

.icon-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	max-width: 120px;
}

.icon-card:hover {
	color: var(--color-red);
}

.icon-card__img {
	width: 75px;
	height: 75px;
}

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

.icon-card-grid--prepare .icon-card {
	max-width: none;
}

/* --------------------------------------------------------------------------
   赤ボタン
   -------------------------------------------------------------------------- */

.btn-red {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-height: 72px;
	padding: 20px 25px;
	margin: 0;
	background: var(--color-red);
	color: var(--color-white);
	border-radius: 128px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	transition: opacity 0.2s;
}

.btn-red:hover {
	opacity: 0.88;
	color: var(--color-white);
}

.btn-red__label {
	flex: 1;
	text-align: center;
}

.btn-red__icon {
	flex-shrink: 0;
	font-size: 24px;
}

/* --------------------------------------------------------------------------
   CASE 見出し
   -------------------------------------------------------------------------- */

.home-case {
	display: flex;
	flex-direction: column;
	gap: var(--space-block-md);
	margin: 0;
}

.home-case + .home-case {
	margin-top: var(--space-block-md);
}

.home-case--last {
	margin-bottom: 0;
}

.case-heading {
	display: flex;
	flex-direction: column;
	gap: var(--space-block-xs);
	margin: 0;
}

.case-heading__nums {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0;
	margin: 0;
	line-height: 0.9;
}

.case-heading__case {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--color-yellow);
	letter-spacing: -0.02em;
}

.case-heading__no {
	font-family: var(--font-mono);
	font-size: 64px;
	font-weight: 600;
	color: var(--color-yellow);
	letter-spacing: -0.05em;
	line-height: 0.85;
}

.case-heading__bubble {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 59px;
	margin: 0;
	padding: 10px 20px 20px;
}

.case-heading__bubble-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: fill;
	z-index: 0;
}

.case-heading__bubble-text {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: var(--color-text);
}

.case-heading__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

/* --------------------------------------------------------------------------
   NEWS
   -------------------------------------------------------------------------- */

.home-section--news {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}

.home-section--news .section-heading {
	margin-bottom: 0;
}

.home-section--news .section-heading__en {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 600;
	line-height: 1;
	color: var(--color-text);
	letter-spacing: -0.02em;
}

.home-section--news .section-heading__title {
	font-size: 22px;
	margin-bottom: 0;
}

.newslist-section {
	background: var(--color-cream);
	padding: 30px;
	margin: 40px 0 60px;
}

.news-list-box {
	background: var(--color-white);
	border-radius: 12px;
	padding: 20px;
	margin: 0;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-item__link {
	display: flex;
	flex-direction: column;
	padding: 0 0 20px;
	margin: 0 0 20px;
	border-bottom: 1px solid #d5d5d5;
	text-decoration: none;
	color: var(--color-text);
	transition: opacity 0.2s;
}

.news-item__link:hover {
	opacity: 0.85;
	color: var(--color-text);
}

.news-item__meta {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	margin: 0 0 5px;
	font-family: var(--font-heading);
	font-size: 16px;
	color: #666666;
}

.news-item__meta time {
	margin-right: 15px;
}

.news-item__category {
	font-family: var(--font-heading);
	font-size: 16px;
	color: #666666;
}

.news-item__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.64;
	color: var(--color-text);
}

.news-list__empty {
	text-align: center;
	color: var(--color-muted);
	padding: 25px 0;
}

/* --------------------------------------------------------------------------
   ブログ（note風）
   -------------------------------------------------------------------------- */

.blog-section {
	padding: 0 30px 50px;
}

.blog-section__title {
	margin: 0 0 20px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.blog-category-nav {
	margin: 0 0 24px;
}

.blog-category-nav__viewport {
	width: 100%;
}

.blog-category-nav__viewport--two-lines {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.blog-category-nav__viewport--two-lines::-webkit-scrollbar {
	display: none;
}

.blog-category-nav__rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.blog-category-nav__rows--two-lines {
	width: max-content;
	min-width: 100%;
}

.blog-category-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-category-nav__rows--two-lines .blog-category-nav__list {
	flex-wrap: nowrap;
}

.blog-category-nav__link {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 16px;
	border: 1px solid #dddddd;
	border-radius: 999px;
	background: var(--color-white);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.blog-category-nav__link:hover {
	border-color: #41c9b4;
	color: #41c9b4;
	opacity: 1;
}

.blog-category-nav__link.is-active {
	border-color: #41c9b4;
	background: #41c9b4;
	color: var(--color-white);
}

.blog-keywords {
	/* 全幅ではなく、左右30px空けて配置（blog-section の padding 30px を利用） */
	margin: 32px 0 0;
	padding: 24px 30px;
	background: var(--color-cream);
}

.blog-keywords__title {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #333333;
}

.blog-keywords__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-keywords__link {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid #dddddd;
	border-radius: 999px;
	background: var(--color-white);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 500;
	color: #333333;
	text-decoration: none;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.blog-keywords__link:hover {
	border-color: #41c9b4;
	color: #41c9b4;
	opacity: 1;
}

.blog-keywords__link.is-active {
	border-color: #41c9b4;
	background: #f0fbf9;
	color: #41c9b4;
	font-weight: 700;
}

.blog-featured {
	margin: 0 -30px 28px;
	padding: 24px 0 8px;
}

.blog-featured__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 30px 16px;
}

.blog-featured__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.blog-featured__arrows {
	display: flex;
	flex-shrink: 0;
	gap: 8px;
}

.blog-featured__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background: var(--color-white);
	color: var(--color-text);
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, opacity 0.2s;
}

.blog-featured__arrow:hover:not(:disabled) {
	border-color: #41c9b4;
	color: #41c9b4;
}

.blog-featured__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.blog-featured__arrow .material-symbols {
	font-size: 24px;
	line-height: 1;
}

.blog-featured__viewport {
	overflow: hidden;
	padding: 0 30px;
}

.blog-featured__track {
	display: flex;
	gap: 16px;
	width: 100%;
	min-width: 0;
	overflow-x: auto;
	padding: 0 0 12px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	cursor: grab;
}

.blog-featured__track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	user-select: none;
}

.blog-featured__track::-webkit-scrollbar {
	display: none;
}

.blog-card--featured {
	flex: 0 0 280px;
	min-width: 280px;
	max-width: 280px;
	scroll-snap-align: start;
}

.blog-card--featured .blog-card__title {
	/* 全ての記事と同じタイトルサイズに揃える */
	font-size: 16px;
	-webkit-line-clamp: 3;
}

.blog-card--featured:hover {
	transform: none;
}

.blog-section__empty {
	padding: 30px 30px 50px;
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid #ececec;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.blog-card__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: var(--color-text);
	text-decoration: none;
}

.blog-card__link:hover {
	color: var(--color-text);
	opacity: 1;
}

.blog-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f0f0;
}

.blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
}

.blog-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 12px;
	color: #666666;
}

.blog-card__labels {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 16px 16px;
}

.blog-card__category {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f3f3f3;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 500;
	color: #666666;
	text-decoration: none;
	transition: background-color 0.2s;
}

.blog-card__category:hover {
	background: #e8e8e8;
	color: #666666;
	opacity: 1;
}

.blog-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-card__tag {
	font-family: var(--font-heading);
	font-size: 12px;
	color: #41c9b4;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-card__tag:hover {
	color: #2fa892;
	opacity: 1;
}

.blog-pagination {
	margin-top: 30px;
	text-align: center;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	margin: 0 4px;
	padding: 0 10px;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-size: 14px;
	color: var(--color-text);
	text-decoration: none;
}

.blog-pagination .page-numbers.current {
	background: var(--color-line);
	color: var(--color-white);
}

.single-article--blog {
	padding: 0;
	background: var(--color-white);
}

.single-article--blog .single-article__inner {
	padding: 28px 0 56px;
}

.single-article--blog .single-article__thumb--hero {
	margin: 24px 0 0;
}

.single-article__thumb--hero {
	margin: 0;
	border-radius: 0;
	overflow: hidden;
}

.single-article__thumb--hero img {
	width: 100%;
	height: auto;
	display: block;
}

.single-article--blog .single-article__header--blog {
	margin-bottom: 0;
	padding: 0 0 20px;
	border-bottom: 1px solid #e9e9e9;
	background: transparent;
}

.single-article--blog .single-article__eyebrow {
	margin: 0 0 10px;
}

.single-article--blog .single-article__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	color: #1e1e1e;
}

.single-article--blog .single-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 14px 0 0;
	padding-top: 0;
	border-top: 0;
	font-size: 13px;
	color: #666666;
}

.single-article--blog .single-article__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #777777;
}

.single-article--blog .single-article__date::before {
	content: "schedule";
	font-family: "Material Symbols Outlined";
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: #41c9b4;
}

.single-article--blog .single-article__category {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f5f5f5;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	color: #1e1e1e;
	text-decoration: none;
	transition: background-color 0.2s;
}

.single-article--blog .single-article__category:hover {
	background: #eaeaea;
	color: #1e1e1e;
	opacity: 1;
}

.entry-content--blog {
	max-width: 100%;
	font-family: var(--font-heading);
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #1e1e1e;
}

.entry-content--blog > * + *:not(p) {
	margin-top: 2.5rem;
}

.entry-content--blog > h2 + *:not(p),
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + *:not(p),
.entry-content--blog > .blog-table-block + *:not(p),
.entry-content--blog > figure + *:not(p) {
	margin-top: 3rem;
}

.entry-content--blog > * + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title),
.entry-content--blog.entry-content--affiliate > * + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
	margin-top: 2.5rem;
}

.entry-content--blog > h2 + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title),
.entry-content--blog.entry-content--affiliate > h2 + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
	margin-top: 3rem;
}

.entry-content--blog > *:first-child,
.entry-content--blog > .blog-pr-note + * {
	margin-top: 0;
}

.entry-content--blog > * + h2,
.entry-content--blog.entry-content--affiliate > * + h2 {
	margin-top: 2.5rem;
}

.entry-content--blog .blog-toc + h2,
.entry-content--blog > .blog-table-block + h2,
.entry-content--blog > .blog-product-index + h2,
.entry-content--blog.entry-content--affiliate .blog-toc + h2,
.entry-content--blog.entry-content--affiliate > .blog-table-block + h2,
.entry-content--blog.entry-content--affiliate > .blog-product-index + h2 {
	margin-top: 2.5rem;
}

.entry-content--blog > * + .blog-table-block,
.entry-content--blog > h2 + .blog-table-block,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-table-block,
.entry-content--blog > * + .blog-checkpoints,
.entry-content--blog > h2 + .blog-checkpoints,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-checkpoints,
.entry-content--blog > * + .blog-item-cards,
.entry-content--blog > h2 + .blog-item-cards,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-item-cards,
.entry-content--blog > * + .blog-timeline,
.entry-content--blog > h2 + .blog-timeline,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-timeline,
.entry-content--blog > * + .blog-print-checklist,
.entry-content--blog > h2 + .blog-print-checklist,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-print-checklist,
.entry-content--blog > * + .blog-prep-groups,
.entry-content--blog > h2 + .blog-prep-groups,
.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-prep-groups {
	margin-top: 20px;
}

.entry-content--blog > * + .blog-affiliate,
.entry-content--blog > h2 + .blog-affiliate,
.entry-content--blog > p + .blog-affiliate {
	margin-top: 2.5rem;
}

.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + .blog-affiliate {
	margin-top: 3rem;
}

.entry-content--blog > * + p {
	margin-top: 0;
}

.entry-content--blog p {
	margin: 0;
}

.entry-content--blog ul:not(.blog-list):not(.blog-summary__list):not(.blog-readmore__list):not(.blog-toc__list):not(.blog-toc__sublist):not(.blog-pros-cons__list):not(.blog-callout__list),
.entry-content--blog ol {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.entry-content--blog ul:not(.blog-list):not(.blog-summary__list):not(.blog-readmore__list):not(.blog-toc__list):not(.blog-toc__sublist):not(.blog-pros-cons__list):not(.blog-callout__list) > li,
.entry-content--blog ol > li {
	position: relative;
	margin: 0;
	padding-left: 1em;
	line-height: 1.8;
}

.entry-content--blog ul:not(.blog-list):not(.blog-summary__list):not(.blog-readmore__list):not(.blog-toc__list):not(.blog-toc__sublist):not(.blog-pros-cons__list):not(.blog-callout__list) > li + li,
.entry-content--blog ol > li + li {
	margin-top: 0.5rem;
}

.entry-content--blog ul:not(.blog-list):not(.blog-summary__list):not(.blog-readmore__list):not(.blog-toc__list):not(.blog-toc__sublist):not(.blog-pros-cons__list):not(.blog-callout__list) > li::before {
	content: "";
	position: absolute;
	top: calc(1em * 1.8 / 2);
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	transform: translateY(-50%);
}

.entry-content--blog a:where(:not([class]), .blog-list--link a) {
	color: #1b75de;
	text-decoration: underline;
}

.entry-content--blog a:where(:not([class])):hover,
.entry-content--blog .blog-list--link a:hover {
	color: #1b75de;
	opacity: 0.85;
}

.entry-content--blog ul.blog-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.entry-content--blog ul.blog-list li {
	position: relative;
	margin: 0 0 0.75em;
	padding-left: 1.6em;
}

.entry-content--blog ul.blog-list li:last-child {
	margin-bottom: 0;
}

.entry-content--blog ul.blog-list--check li {
	padding-left: 1.85em;
}

.entry-content--blog ul.blog-list--check li::before {
	content: "check_circle";
	font-size: 1.15em;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
	color: #41c9b4;
	position: absolute;
	left: 0;
	top: calc(1em * 1.8 / 2);
	transform: translateY(-50%);
}

.entry-content--blog ul.blog-list--icon li {
	padding-left: 1.85em;
}

.entry-content--blog ul.blog-list--icon li::before {
	content: "check_circle";
	font-size: 1.15em;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
	color: #41c9b4;
	position: absolute;
	left: 0;
	top: calc(1em * 1.8 / 2);
	transform: translateY(-50%);
}

.entry-content--blog ul.blog-list--link li {
	padding-left: 1.6em;
}

.entry-content--blog ul.blog-list--link li::before {
	content: "chevron_right";
	font-size: 1.1em;
	color: #41c9b4;
	position: absolute;
	left: 0;
	top: calc(1em * 1.8 / 2);
	transform: translateY(-50%);
}

/* アフィリエイト記事 */
.entry-content--affiliate {
	color: #1e1e1e;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.entry-content--affiliate p {
	margin: 0;
	color: #1e1e1e;
}

.entry-content--blog .blog-pr-note {
	margin: 0 0 14px;
	font-size: 11px;
	line-height: 1.5;
	font-weight: 400;
	color: #555555;
}

.entry-content--blog .blog-author-note {
	margin: 2.5rem 0;
	padding: 0;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: none;
}

.entry-content--blog .blog-author-note__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.entry-content--blog .blog-author-note__head-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
}

.entry-content--blog .blog-author-note__head-badge {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.entry-content--blog .blog-author-note__body {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 22px;
	background: #f5faff;
}

.entry-content--blog .blog-author-note__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: var(--color-yellow);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.entry-content--blog .blog-author-note__avatar-mark {
	display: block;
	width: 34px;
	height: 30px;
	object-fit: contain;
}

.entry-content--blog .blog-author-note__content {
	flex: 1;
	min-width: 0;
}

.entry-content--blog .blog-author-note__role {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #2196f3;
}

.entry-content--blog .blog-author-note__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #555555;
}

.entry-content--affiliate .blog-author-note:not(:has(.blog-author-note__head)) {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0 0 28px;
	padding: 20px 22px;
	border: 1px solid #d6e8f7;
	border-left: 4px solid #2196f3;
	border-radius: 12px;
	background: #f5faff;
	font-size: 14px;
	line-height: 1.7;
	color: #333333;
}

.entry-content--affiliate .blog-author-note:not(:has(.blog-author-note__head)) p {
	margin: 0;
}

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

.entry-content--affiliate .blog-marker {
	background: linear-gradient(transparent 60%, #d4f5ef 60%);
	font-weight: 700;
	color: #333333;
}

.entry-content--affiliate .blog-lead-box {
	margin: 0 0 28px;
	padding: 18px 22px;
	border-left: 4px solid #41c9b4;
	border-radius: 0 8px 8px 0;
	background: #f0fbf9;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.85;
	color: #333333;
}

.entry-content--affiliate h2 {
	margin-bottom: 0;
	padding: 0 0 0 16px;
	border-left: 4px solid #41c9b4;
	border-bottom: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: #1e1e1e;
}

.entry-content--affiliate h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
	margin-bottom: 1rem;
	padding: 10px 14px;
	border-left: 0;
	background: #f5f5f5;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	color: #1e1e1e;
}

.entry-content--blog h2 {
	margin-bottom: 1rem;
	padding: 0 0 0 16px;
	border-left: 4px solid #41c9b4;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: #1e1e1e;
}

.entry-content--blog h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
	margin-bottom: 1rem;
	padding: 10px 14px;
	border-left: 0;
	background: #f5f5f5;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	color: #1e1e1e;
}

.single-article--blog .entry-content--affiliate {
	padding-top: 0;
}

.single-article--blog .single-article__header--blog + .entry-content--blog,
.single-article--blog .single-article__thumb--hero + .entry-content--blog {
	margin-top: 2.5rem;
}

.single-article--blog .single-article__header--blog + .entry-content--blog > .blog-pr-note:first-child,
.single-article--blog .single-article__header--blog + .entry-content--blog > p:first-of-type,
.single-article--blog .single-article__thumb--hero + .entry-content--blog > .blog-pr-note:first-child,
.single-article--blog .single-article__thumb--hero + .entry-content--blog > p:first-of-type {
	margin-top: 0;
}

.entry-content--blog .blog-summary {
	margin: 2.5rem 0;
	padding: 0;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: none;
}

.entry-content--blog .blog-summary__head {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 20px;
	background: linear-gradient(135deg, #41c9b4 0%, #2db39e 100%);
	box-sizing: border-box;
}

.entry-content--blog .blog-summary__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: left;
}

.entry-content--blog .blog-summary__label::before {
	content: "summarize";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 28px;
	line-height: 1;
	color: #ffffff;
}

.entry-content--blog .blog-summary__body {
	padding: 20px 22px;
	background: #f0fbf9;
}

.entry-content--blog .blog-toc {
	margin: 2.5rem 0;
	padding: 0;
}

.entry-content--blog .blog-toc__head {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 14px 15px;
	border: 0;
	background: #eaeaea;
	font: inherit;
	text-align: left;
	cursor: pointer;
	position: relative;
}

.entry-content--blog .blog-toc__head::before {
	content: "format_list_bulleted";
	flex-shrink: 0;
	margin-right: 10px;
	font-size: 22px;
	color: #808080;
}

.entry-content--blog .blog-toc__head::after {
	content: "keyboard_arrow_down";
	position: absolute;
	top: 50%;
	right: 15px;
	font-size: 24px;
	color: #1b75de;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}

.entry-content--blog .blog-toc.is-open .blog-toc__head::after {
	transform: translateY(-50%) rotate(180deg);
}

.entry-content--blog .blog-toc__label {
	margin: 0;
	padding-right: 28px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: #1e1e1e;
}

.entry-content--blog .blog-toc__list {
	--blog-toc-max-height: 0;
	margin: 0;
	padding: 16px 24px 20px;
	list-style: none;
	max-height: 10em;
	overflow: hidden;
	background: #f5f5f5;
	transition: max-height 0.4s ease-in-out;
	position: relative;
}

.entry-content--blog .blog-toc.is-open .blog-toc__list {
	max-height: var(--blog-toc-max-height);
}

.entry-content--blog .blog-toc__list::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, #f7f7f7 100%);
	pointer-events: none;
}

.entry-content--blog .blog-toc.is-open .blog-toc__list::after {
	display: none;
}

.entry-content--blog .blog-toc__list > li + li {
	margin-top: 10px;
}

.entry-content--blog .blog-toc__list > li > a {
	--blog-toc-font-size: 16px;
	--blog-toc-line-height: 1.7;
	display: inline-block;
	position: relative;
	padding-left: 1.1em;
	font-size: var(--blog-toc-font-size);
	font-weight: 700;
	line-height: var(--blog-toc-line-height);
	color: #1b75de;
	text-decoration: none;
}

.entry-content--blog .blog-toc__list > li > a::before {
	content: "■";
	position: absolute;
	top: calc(var(--blog-toc-font-size) * var(--blog-toc-line-height) / 2);
	left: 0;
	font-size: 0.5em;
	line-height: 1;
	color: currentColor;
	transform: translateY(-50%);
}

.entry-content--blog .blog-toc__list > li > a:hover {
	text-decoration: underline;
}

.entry-content--blog .blog-toc__list > li > .blog-toc__sublist {
	margin: 6px 0 2px;
	padding: 0 0 0 0.85em;
	list-style: none;
}

.entry-content--blog .blog-toc__sublist > li {
	margin: 0;
	padding-left: 0;
	line-height: 1;
}

.entry-content--blog .blog-toc__sublist > li + li {
	margin-top: 6px;
}

.entry-content--blog .blog-toc__sublist a {
	display: inline-block;
	position: relative;
	padding-left: 1.35em;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: #1b75de;
	text-decoration: none;
}

.entry-content--blog .blog-toc__sublist a::before {
	content: "└";
	position: absolute;
	top: 0;
	left: 0.1em;
	font-size: 13px;
	line-height: 1.6;
	color: #7aa3d4;
}

.entry-content--blog .blog-toc__sublist a:hover {
	text-decoration: underline;
}

.entry-content--blog h2[id],
.entry-content--blog h3[id] {
	scroll-margin-top: 96px;
}

.entry-content--blog .blog-summary__list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.entry-content--blog .blog-summary__list li {
	position: relative;
	margin: 0 0 12px;
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.7;
	color: #333333;
}

.entry-content--blog .blog-summary__list li:last-child {
	margin-bottom: 0;
}

.entry-content--blog .blog-summary__list li::before {
	content: "check";
	position: absolute;
	left: 0;
	top: calc(1em * 1.7 / 2);
	font-size: 18px;
	font-weight: 700;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
	color: #41c9b4;
	transform: translateY(-50%);
}

.entry-content--blog .blog-type-picks {
	display: grid;
	gap: 16px;
	margin: 1.5rem 0;
}

.entry-content--blog .blog-type-pick {
	padding: 20px 22px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fafafa;
}

.entry-content--blog .blog-type-pick__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	color: #333333;
}

.entry-content--blog .blog-type-pick--beginner .blog-type-pick__label::before {
	content: "star";
	font-size: 28px;
	color: #2e7d32;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-type-pick--family .blog-type-pick__label::before {
	content: "family_restroom";
	font-size: 28px;
	color: #ef6c00;
}

.entry-content--blog .blog-type-pick--solo .blog-type-pick__label::before {
	content: "home";
	font-size: 28px;
	color: #1565c0;
}

.entry-content--blog .blog-type-pick--senior .blog-type-pick__label::before {
	content: "elderly";
	font-size: 28px;
	color: #ad1457;
}

.entry-content--blog .blog-type-pick--featured .blog-type-pick__label::before {
	content: "workspace_premium";
	font-size: 28px;
	color: #f9a825;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-type-pick--featured-alt .blog-type-pick__label::before {
	content: "military_tech";
	font-size: 28px;
	color: #757575;
}

.entry-content--blog .blog-type-pick--tip .blog-type-pick__label::before {
	content: "lightbulb";
	font-size: 28px;
	color: #f9a825;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-type-pick--default .blog-type-pick__label::before {
	content: "person";
	font-size: 28px;
	color: #616161;
}

.entry-content--blog .blog-type-pick > :last-child {
	margin-bottom: 0;
}

.entry-content--blog .blog-type-pick > p:not(.blog-type-pick__label) {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.75;
	color: #333333;
}

.entry-content--blog .blog-type-pick > ul {
	margin: 0 0 12px;
	padding-left: 1.2em;
}

.entry-content--blog .blog-type-pick > .blog-affiliate-btn,
.entry-content--blog .blog-type-pick > a.blog-affiliate-btn {
	margin-top: 16px;
	width: 100%;
	min-height: 58px;
	font-size: 16px;
}

.entry-content--blog .blog-type-pick > :is(p, div):has(> .blog-affiliate-btn) {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.entry-content--blog .blog-type-pick__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

.entry-content--blog .blog-type-pick__actions .blog-affiliate-btn {
	width: auto;
	min-height: 44px;
	font-size: 14px;
}

.entry-content--blog .blog-type-pick__product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	background: #ffffff;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entry-content--blog .blog-type-pick__product:hover {
	border-color: #f0c14b;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	opacity: 1;
}

.entry-content--blog .blog-type-pick__product-thumb {
	flex-shrink: 0;
	display: block;
	width: 56px;
	height: 56px;
	overflow: hidden;
	border: 1px solid #ececec;
	border-radius: 6px;
	background: #f7f7f7;
}

.entry-content--blog .blog-type-pick__product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.entry-content--blog .blog-type-pick__product-thumb--empty {
	background: linear-gradient(135deg, #f3f3f3, #e8e8e8);
}

.entry-content--blog .blog-type-pick__product-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.entry-content--blog .blog-type-pick__product-name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #222222;
}

.entry-content--blog .blog-type-pick__product-cta {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	color: #b87800;
}

.entry-content--blog .blog-type-pick--beginner {
	border-color: #c8e6c9;
	background: #e8f5e9;
}

.entry-content--blog .blog-type-pick--family {
	border-color: #ffe0b2;
	background: #fff3e0;
}

.entry-content--blog .blog-type-pick--solo {
	border-color: #bbdefb;
	background: #e3f2fd;
}

.entry-content--blog .blog-type-pick--senior {
	border-color: #f8bbd0;
	background: #fce4ec;
}

.entry-content--blog .blog-type-pick--featured {
	border-color: #a5d6a7;
	background: #e8f5e9;
}

.entry-content--blog .blog-type-pick--featured-alt {
	border-color: #90caf9;
	background: #e3f2fd;
}

.entry-content--blog .blog-type-pick--tip {
	border-color: #e0e0e0;
	background: #f5f5f5;
}

.entry-content--blog .blog-product-picks {
	display: grid;
	gap: 14px;
	margin: 1.5rem 0;
}

.entry-content--blog .blog-product-pick {
	padding: 20px 22px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fafafa;
}

.entry-content--blog .blog-product-pick--gold {
	border-color: #c8e6c9;
	background: #e8f5e9;
}

.entry-content--blog .blog-product-pick--silver {
	border-color: #bbdefb;
	background: #e3f2fd;
}

.entry-content--blog .blog-product-pick__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	color: #333333;
}

.entry-content--blog .blog-product-pick--gold .blog-product-pick__label::before {
	content: "looks_one";
	font-size: 28px;
	color: #f9a825;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-product-pick--silver .blog-product-pick__label::before {
	content: "looks_two";
	font-size: 28px;
	color: #757575;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-product-pick--default .blog-product-pick__label::before {
	content: "emoji_events";
	font-size: 28px;
	color: #616161;
}

.entry-content--blog .blog-product-pick__body > :last-child {
	margin-bottom: 0;
}

.entry-content--blog .blog-product-pick__body:has(> .blog-product-pick__thumb) {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.entry-content--blog .blog-product-pick__thumb {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	background: #ffffff;
}

.entry-content--blog .blog-product-pick__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.entry-content--blog .blog-product-pick__content {
	flex: 1;
	min-width: 0;
}

.entry-content--blog .blog-product-pick__content > :last-child {
	margin-bottom: 0;
}

.entry-content--blog .blog-product-pick__body > p {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.75;
	color: #333333;
}

.entry-content--blog .blog-product-pick__content > p {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.75;
	color: #333333;
}

.entry-content--blog .blog-reminder {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 2em 0 0;
	padding-top: 1em;
	border-top: 1px solid #eeeeee;
	font-size: 0.85rem;
	line-height: 1.7;
	color: #666666;
}

.entry-content--blog .blog-reminder::before {
	content: "event_repeat";
	flex-shrink: 0;
	margin-top: 1px;
	font-size: 24px;
	color: #41c9b4;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ポチップ：本文内で小さく見えないよう調整 */
.entry-content--blog .pochipp-box {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-size: 16px;
}

.entry-content--blog .pochipp-box__title {
	font-size: 16px;
	line-height: 1.6;
}

.entry-content--blog .pochipp-box__image img {
	max-height: 180px;
}

.entry-content--blog .pochipp-box .pochipp-box__btn {
	min-height: 48px;
	padding: 14px 12px;
	font-size: 16px;
}

.entry-content--blog .blog-pros-cons {
	display: grid;
	gap: 12px;
	margin: 1.5rem 0;
}

.entry-content--blog .blog-pros-cons__panel {
	padding: 16px 18px;
	border: 1px solid #e9e9e9;
	background: #ffffff;
}

.entry-content--blog .blog-pros-cons__panel--merit {
	border-left: 4px solid #41c9b4;
	background: #f0fbf9;
}

.entry-content--blog .blog-pros-cons__panel--demerit {
	border-left: 4px solid #f0a050;
	background: #fff8f0;
}

.entry-content--blog .blog-pros-cons__label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-pros-cons__panel--merit .blog-pros-cons__label::before {
	content: "thumb_up";
	font-size: 26px;
	color: #2fa892;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-pros-cons__panel--demerit .blog-pros-cons__label::before {
	content: "info";
	font-size: 26px;
	color: #e08a20;
}

.entry-content--blog .blog-pros-cons__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content--blog .blog-pros-cons__list > li {
	position: relative;
	margin: 0;
	padding-left: 1em;
	line-height: 1.8;
}

.entry-content--blog .blog-pros-cons__list > li + li {
	margin-top: 0.5rem;
}

.entry-content--blog .blog-pros-cons__list > li::before {
	content: "";
	position: absolute;
	top: calc(1em * 1.8 / 2);
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	transform: translateY(-50%);
}

.entry-content--blog .blog-callout {
	margin: 1.5rem 0;
	padding: 0;
	border: 1px solid #e9e9e9;
	background: #ffffff;
	overflow: hidden;
}

.entry-content--blog .blog-callout__head {
	padding: 12px 18px;
	background: #eaeaea;
}

.entry-content--blog .blog-callout__label {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-callout__body {
	padding: 16px 18px;
}

.entry-content--blog .blog-callout__body > :first-child {
	margin-top: 0;
}

.entry-content--blog .blog-callout__body > :last-child {
	margin-bottom: 0;
}

.entry-content--blog .blog-callout__body p {
	margin: 0;
}

.entry-content--blog .blog-callout__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content--blog .blog-callout__list > li {
	position: relative;
	margin: 0;
	padding-left: 1em;
	line-height: 1.8;
}

.entry-content--blog .blog-callout__list > li + li {
	margin-top: 0.5rem;
}

.entry-content--blog .blog-callout__list > li::before {
	content: "";
	position: absolute;
	top: calc(1em * 1.8 / 2);
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #41c9b4;
	transform: translateY(-50%);
}

.entry-content--blog .blog-callout--recommend {
	border-left: 4px solid #41c9b4;
}

.entry-content--blog .blog-callout--recommend .blog-callout__head {
	background: linear-gradient(135deg, #41c9b4 0%, #2db39e 100%);
}

.entry-content--blog .blog-callout--actions {
	border: 1px solid #d7efe9;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
}

.entry-content--blog .blog-callout--actions .blog-callout__head {
	background: linear-gradient(135deg, #41c9b4 0%, #2db39e 100%);
}

.entry-content--blog .blog-callout--actions .blog-callout__label {
	color: #ffffff;
}

.entry-content--blog .blog-callout--actions .blog-callout__body {
	padding: 16px 18px 18px;
	background: #f0fbf9;
}

.entry-content--blog .blog-actions {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: blog-actions;
}

.entry-content--blog .blog-actions__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 14px 14px 14px 52px;
	border: 1px solid #d7efe9;
	border-radius: 10px;
	background: #ffffff;
	position: relative;
}

.entry-content--blog .blog-actions__item + .blog-actions__item {
	margin-top: 10px;
}

.entry-content--blog .blog-actions__item::before {
	counter-increment: blog-actions;
	content: counter(blog-actions);
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #41c9b4;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.entry-content--blog .blog-actions__main {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.entry-content--blog .blog-actions__label {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-actions__text {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #333333;
}

.entry-content--blog .blog-actions__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.entry-content--blog .blog-actions__links .blog-affiliate-btn {
	width: 100%;
	justify-content: center;
}

.entry-content--blog .blog-callout--recommend .blog-callout__label {
	color: #ffffff;
}

.entry-content--blog .blog-callout--recommend .blog-callout__body {
	background: #f0fbf9;
}

.entry-content--blog .blog-callout--point {
	border-left: 4px solid #f0a050;
}

.entry-content--blog .blog-callout--point .blog-callout__head {
	background: #fff3e0;
}

.entry-content--blog .blog-callout--point .blog-callout__body {
	background: #fffaf5;
}

.entry-content--blog .blog-callout--caution {
	border-left: 4px solid #e57373;
}

.entry-content--blog .blog-callout--caution .blog-callout__head {
	background: #ffebee;
}

.entry-content--blog .blog-callout--caution .blog-callout__body {
	background: #fff8f8;
}

.entry-content--blog .blog-callout--info {
	border-left: 4px solid #1b75de;
}

.entry-content--blog .blog-callout--info .blog-callout__body {
	padding: 16px 18px;
	background: #f0f7fb;
}

.entry-content--blog .blog-callout--tip {
	border-left: 4px solid #ff9800;
}

.entry-content--blog .blog-callout--tip .blog-callout__head {
	background: #fff3e0;
}

.entry-content--blog .blog-callout--tip .blog-callout__body {
	background: #fffaf3;
}

.entry-content--blog .blog-checkpoints {
	display: grid;
	gap: 12px;
	margin: 20px 0;
}

.entry-content--blog .blog-checkpoint {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid #e9e9e9;
	border-left: 4px solid #41c9b4;
	background: #ffffff;
}

.entry-content--blog .blog-checkpoint__no {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: start;
	width: 48px;
	height: 48px;
	margin: 0;
	background: #f0fbf9;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #2fa892;
}

.entry-content--blog .blog-checkpoint__body {
	min-width: 0;
}

.entry-content--blog .blog-checkpoint__title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-checkpoint__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #1e1e1e;
}

.entry-content--blog .blog-checkpoint__meta {
	margin: 10px 0 0;
	padding-top: 10px;
	border-top: 1px solid #eaeaea;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
}

.entry-content--blog .blog-timeline {
	display: grid;
	gap: 12px;
	margin: 20px 0;
}

.entry-content--blog .blog-timeline__item {
	display: grid;
	grid-template-columns: minmax(132px, 168px) 1fr;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e9e9e9;
}

.entry-content--blog .blog-timeline__phase {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 16px 14px;
}

.entry-content--blog .blog-timeline__item--early .blog-timeline__phase {
	background: #e8f5e9;
	border-left: 4px solid #4caf50;
}

.entry-content--blog .blog-timeline__item--mid .blog-timeline__phase {
	background: #fff3e0;
	border-left: 4px solid #ff9800;
}

.entry-content--blog .blog-timeline__item--urgent .blog-timeline__phase {
	background: #ffebee;
	border-left: 4px solid #e53935;
}

.entry-content--blog .blog-timeline__item--default .blog-timeline__phase {
	background: #f5f5f5;
	border-left: 4px solid #9e9e9e;
}

.entry-content--blog .blog-timeline__label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-timeline__item--early .blog-timeline__label::before {
	content: "schedule";
	font-size: 26px;
	color: #2e7d32;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-timeline__item--mid .blog-timeline__label::before {
	content: "event";
	font-size: 26px;
	color: #ef6c00;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-timeline__item--urgent .blog-timeline__label::before {
	content: "priority_high";
	font-size: 26px;
	color: #c62828;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-timeline__item--default .blog-timeline__label::before {
	content: "circle";
	font-size: 12px;
	color: #757575;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-timeline__sublabel {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #666666;
}

.entry-content--blog .blog-timeline__tasks {
	margin: 0;
	padding: 16px 18px;
	list-style: none;
	background: #ffffff;
}

.entry-content--blog .blog-timeline__task {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.8;
	color: #1e1e1e;
}

.entry-content--blog .blog-timeline__task:last-child {
	margin-bottom: 0;
}

@media (max-width: 899px) {
	.entry-content--blog .blog-timeline__item {
		grid-template-columns: 1fr;
	}
}

.entry-content--blog .blog-print-checklist {
	margin: 20px 0;
	padding: 20px 18px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #ffffff;
}

.entry-content--blog .blog-print-checklist__title {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #dddddd;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #1e1e1e;
}

.entry-content--blog .blog-print-checklist__sections {
	display: grid;
	gap: 12px;
}

.entry-content--blog .blog-print-checklist__section {
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: #fafafa;
}

.entry-content--blog .blog-print-checklist__section--early {
	border-color: #c8e6c9;
	border-left: 4px solid #4caf50;
	background: #f1f8f1;
}

.entry-content--blog .blog-print-checklist__section--mid {
	border-color: #ffe0b2;
	border-left: 4px solid #ff9800;
	background: #fff8f0;
}

.entry-content--blog .blog-print-checklist__section--urgent,
.entry-content--blog .blog-print-checklist__section--priority {
	border-color: #ffcdd2;
	border-left: 4px solid #e53935;
	background: #fff5f5;
}

.entry-content--blog .blog-print-checklist__section--hygiene {
	border-color: #ffccbc;
	border-left: 4px solid #ff7043;
	background: #fff6f2;
}

.entry-content--blog .blog-print-checklist__section--info {
	border-color: #bbdefb;
	border-left: 4px solid #1e88e5;
	background: #f3f9ff;
}

.entry-content--blog .blog-print-checklist__section--sleep {
	border-color: #e1bee7;
	border-left: 4px solid #8e24aa;
	background: #faf4fc;
}

.entry-content--blog .blog-print-checklist__section--docs {
	border-color: #c8e6c9;
	border-left: 4px solid #43a047;
	background: #f4faf4;
}

.entry-content--blog .blog-print-checklist__section--extra,
.entry-content--blog .blog-print-checklist__section--default {
	border-color: #e0e0e0;
	border-left: 4px solid #757575;
	background: #f7f7f7;
}

.entry-content--blog .blog-print-checklist__label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-print-checklist__section--early .blog-print-checklist__label::before,
.entry-content--blog .blog-print-checklist__section--mid .blog-print-checklist__label::before,
.entry-content--blog .blog-print-checklist__section--urgent .blog-print-checklist__label::before {
	font-size: 26px;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-print-checklist__section--early .blog-print-checklist__label::before {
	content: "schedule";
	color: #2e7d32;
}

.entry-content--blog .blog-print-checklist__section--mid .blog-print-checklist__label::before {
	content: "event";
	color: #ef6c00;
}

.entry-content--blog .blog-print-checklist__section--urgent .blog-print-checklist__label::before,
.entry-content--blog .blog-print-checklist__section--priority .blog-print-checklist__label::before {
	content: "priority_high";
	color: #c62828;
}

.entry-content--blog .blog-print-checklist__section--hygiene .blog-print-checklist__label::before {
	content: "cleaning_services";
	font-size: 26px;
	color: #00838f;
}

.entry-content--blog .blog-print-checklist__section--info .blog-print-checklist__label::before {
	content: "lightbulb";
	font-size: 26px;
	color: #1565c0;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-print-checklist__section--sleep .blog-print-checklist__label::before {
	content: "bed";
	font-size: 26px;
	color: #5e35b1;
}

.entry-content--blog .blog-print-checklist__section--docs .blog-print-checklist__label::before {
	content: "description";
	font-size: 26px;
	color: #6d4c41;
}

.entry-content--blog .blog-print-checklist__section--extra .blog-print-checklist__label::before,
.entry-content--blog .blog-print-checklist__section--default .blog-print-checklist__label::before {
	content: "playlist_add_check";
	font-size: 26px;
	color: #616161;
}

.entry-content--blog .blog-print-checklist__list {
	margin: 0;
	padding: 0;
}

.entry-content--blog .blog-print-checklist__list li {
	margin-bottom: 0.55em;
}

.entry-content--blog .blog-print-checklist__list li:last-child {
	margin-bottom: 0;
}

@media print {
	.entry-content--blog .blog-print-checklist {
		break-inside: avoid;
		border: 1px solid #cccccc;
	}

	.entry-content--blog .blog-print-checklist__section {
		break-inside: avoid;
	}
}

.entry-content--blog .blog-prep-groups {
	display: grid;
	gap: 14px;
	margin: 20px 0;
}

.entry-content--blog .blog-prep-group {
	padding: 16px 18px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #fafafa;
}

.entry-content--blog .blog-prep-group--charge {
	border-color: #bbdefb;
	border-left: 4px solid #1e88e5;
	background: #f3f8ff;
}

.entry-content--blog .blog-prep-group--water {
	border-color: #b2ebf2;
	border-left: 4px solid #00acc1;
	background: #f0fbff;
}

.entry-content--blog .blog-prep-group--default {
	border-color: #e0e0e0;
	border-left: 4px solid #9e9e9e;
	background: #f7f7f7;
}

.entry-content--blog .blog-prep-group__title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-prep-cards {
	display: grid;
	gap: 10px;
}

.entry-content--blog .blog-prep-card {
	padding: 12px 14px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	background: #ffffff;
}

.entry-content--blog .blog-prep-card__title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-prep-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
}

@media (min-width: 900px) {
	.entry-content--blog .blog-prep-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}
}

.entry-content--blog .blog-item-cards {
	display: grid;
	gap: 14px;
	margin: 20px 0;
}

.entry-content--blog .blog-product-index {
	display: grid;
	gap: 10px;
	margin: 1.5rem 0;
}

.entry-content--blog .blog-product-index__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid #e9e9e9;
	border-left: 4px solid #41c9b4;
	background: #ffffff;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s;
}

.entry-content--blog .blog-product-index__item:hover {
	background: #f0fbf9;
	border-color: #41c9b4;
	opacity: 1;
}

.entry-content--blog .blog-product-index__item--static {
	cursor: default;
}

.entry-content--blog .blog-product-index__no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #41c9b4;
	color: #ffffff;
	font-family: var(--font-en);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.entry-content--blog .blog-product-index__body {
	flex: 1;
	min-width: 0;
}

.entry-content--blog .blog-product-index__title {
	display: block;
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-product-index__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.entry-content--blog .blog-product-index__tag {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: #f5f5f5;
	font-size: 12px;
	line-height: 1.4;
	color: #555555;
}

.entry-content--blog .blog-product-index__tag--yes {
	background: #e8f5e9;
	color: #2e7d32;
}

.entry-content--blog .blog-product-index__tag--no {
	background: #fff3e0;
	color: #bf360c;
}

.entry-content--blog .blog-product-index__arrow {
	flex-shrink: 0;
	font-size: 24px;
	color: #41c9b4;
}

.entry-content--blog .blog-product-index__item:hover .blog-product-index__arrow {
	color: #2196f3;
}

.entry-content--blog .blog-item-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 16px;
	align-items: start;
	padding: 18px 20px;
	border: 1px solid #e9e9e9;
	border-left: 4px solid #7e57c2;
	border-radius: 12px;
	background: #ffffff;
}

.entry-content--blog .blog-item-card__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 16px;
	background: linear-gradient(135deg, #f3e5f5 0%, #ede7f6 100%);
}

.entry-content--blog .blog-item-card__visual img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.entry-content--blog .blog-item-card__body {
	min-width: 0;
}

.entry-content--blog .blog-item-card__title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1e1e1e;
}

.entry-content--blog .blog-item-card__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #1e1e1e;
}

.entry-content--blog .blog-faq-list {
	margin: 0;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: none;
}

.entry-content--blog .blog-faq {
	margin: 0;
	border: 0;
	border-bottom: 1px solid #ececec;
	border-radius: 0;
	background: #ffffff;
}

.entry-content--blog .blog-faq:last-child {
	border-bottom: 0;
}

.entry-content--blog .blog-faq summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	color: #333333;
	cursor: pointer;
	list-style: none;
}

.entry-content--blog .blog-faq summary::-webkit-details-marker {
	display: none;
}

.entry-content--blog .blog-faq__q {
	display: none;
}

.entry-content--blog .blog-faq__question {
	flex: 1;
	min-width: 0;
	padding-right: 8px;
}

.entry-content--blog .blog-faq summary::after {
	content: "keyboard_arrow_down";
	font-size: 24px;
	color: #666666;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.entry-content--blog .blog-faq[open] summary {
	background: #f0fbf9;
}

.entry-content--blog .blog-faq[open] summary::after {
	content: none;
	display: none;
}

.entry-content--blog .blog-faq__body {
	position: relative;
	padding: 4px 20px 20px;
	font-size: 16px;
	line-height: 1.85;
	color: #333333;
}

.entry-content--blog .blog-faq__body::before {
	content: none;
	display: none;
}

.entry-content--blog .blog-faq__body p {
	margin: 0;
}

.entry-content--blog .blog-readmore {
	margin: 2.5rem 0 0;
	border: 1px solid #e9e9e9;
	background: #ffffff;
	box-shadow: none;
}

.entry-content--blog .blog-readmore__head {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 20px;
	background: #333333;
	box-sizing: border-box;
}

.entry-content--blog .blog-readmore__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.entry-content--blog .blog-readmore__label::before {
	content: "menu_book";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 26px;
	line-height: 1;
	color: #ffffff;
}

.entry-content--blog .blog-readmore__body {
	background: #fafafa;
}

.entry-content--blog .blog-readmore__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content--blog .blog-readmore__list li {
	margin: 0;
	border-bottom: 1px dashed #dddddd;
}

.entry-content--blog .blog-readmore__list li:last-child {
	border-bottom: 0;
}

.entry-content--blog .blog-readmore__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
	color: #333333;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.entry-content--blog .blog-readmore__list a::after {
	content: "chevron_right";
	font-family: "Material Symbols Outlined";
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	color: #41c9b4;
	flex-shrink: 0;
}

.entry-content--blog .blog-readmore__list a:hover {
	background: #f0fbf9;
	color: #2196f3;
}

.entry-content--blog .blog-readmore__list a:hover::after {
	color: #2196f3;
}

.entry-content--blog .blog-table-block {
	position: relative;
	margin: 1.5rem 0;
}

.entry-content--blog .blog-table-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 20px 0 12px;
	font-size: 14px;
	color: #666666;
}

.entry-content--blog .blog-table-scroll-hint[hidden] {
	display: none;
}

.entry-content--blog .blog-table-scroll-hint__icons {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #41c9b4;
}

.entry-content--blog .blog-table-scroll-hint__icon {
	font-size: 28px;
	line-height: 1;
}

.entry-content--blog .blog-table-scroll-hint__icon--swipe {
	font-size: 26px;
	animation: blog-table-scroll-nudge 1.6s ease-in-out infinite;
}

.entry-content--blog .blog-table-scroll-hint__icon--left {
	animation: blog-table-scroll-fade-left 1.6s ease-in-out infinite;
}

.entry-content--blog .blog-table-scroll-hint__icon--right {
	animation: blog-table-scroll-fade-right 1.6s ease-in-out infinite;
}

@keyframes blog-table-scroll-nudge {
	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(4px);
	}
}

@keyframes blog-table-scroll-fade-left {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.35;
	}
}

@keyframes blog-table-scroll-fade-right {
	0%,
	100% {
		opacity: 0.35;
	}

	50% {
		opacity: 1;
	}
}

.entry-content--blog .blog-table-block.is-scrollable .blog-table-wrap {
	cursor: grab;
}

.entry-content--blog .blog-table-wrap {
	position: relative;
	overflow-x: auto;
	margin: 0;
	max-width: 100%;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.entry-content--blog .blog-table-wrap.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.entry-content--blog .blog-table-wrap::-webkit-scrollbar {
	display: none;
}

.entry-content--blog .blog-table {
	width: max-content;
	min-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #1e1e1e;
	background: #ffffff;
}

.entry-content--blog .blog-table th,
.entry-content--blog .blog-table td {
	min-width: 120px;
	padding: 13px 20px;
	border: 1px solid #e9e9e9;
	text-align: left;
	vertical-align: top;
	font-size: 14px;
}

.entry-content--blog .blog-table th {
	white-space: nowrap;
	font-weight: 600;
}

.entry-content--blog .blog-table td {
	white-space: normal;
	word-break: break-word;
}

.entry-content--blog .blog-table th:first-child,
.entry-content--blog .blog-table td:first-child {
	min-width: 140px;
}

.entry-content--blog .blog-table thead th {
	background: #333333;
	color: #ffffff;
	border-color: #333333;
	font-size: 14px;
	letter-spacing: 0.02em;
}

.entry-content--blog .blog-table tbody tr:nth-child(even) {
	background: #fafafa;
}

.entry-content--blog .blog-table tbody tr:hover {
	background: #f3faf8;
}

.entry-content--blog .blog-table:not(:has(thead)) td:first-child {
	width: 30%;
	min-width: 120px;
	background: #f5f7f6;
	font-weight: 600;
	color: #333333;
}

.entry-content--blog .blog-table:not(:has(thead)) tr:nth-child(even) td:first-child {
	background: #eef3f1;
}

.entry-content--blog .blog-table__price {
	color: #41c9b4;
	font-weight: 700;
}

.entry-content--blog .blog-affiliate {
	margin-bottom: 0;
	padding: 24px;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: none;
}

.entry-content--blog .blog-affiliate__badge {
	display: inline-block;
	margin: 0 0 18px;
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
}

.entry-content--blog .blog-affiliate__badge--primary {
	background: #41c9b4;
}

.entry-content--blog .blog-affiliate__badge--dark {
	background: #333333;
}

.entry-content--blog .blog-affiliate__badge--blue {
	background: #3b82f6;
}

.entry-content--blog .blog-affiliate__head {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin: 0 0 20px;
}

.entry-content--blog .blog-affiliate__thumb {
	flex-shrink: 0;
	width: 104px;
	height: 104px;
	overflow: hidden;
	border: 1px solid #ececec;
	border-radius: 8px;
	background: #f3f3f3;
}

.entry-content--blog .blog-affiliate__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	background: #ffffff;
}

.entry-content--blog .blog-affiliate__thumb--placeholder {
	background: linear-gradient(135deg, #f3f3f3, #e8e8e8);
}

.entry-content--blog h3.blog-affiliate__title {
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: #222222;
}

.entry-content--blog .blog-affiliate__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #666666;
}

.entry-content--blog .blog-affiliate__highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 20px;
}

.entry-content--blog .blog-affiliate__highlight {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.55;
}

.entry-content--blog .blog-affiliate__highlight::before {
	flex-shrink: 0;
	margin-top: 1px;
	font-size: 18px;
}

.entry-content--blog .blog-affiliate__highlight--pro::before {
	content: "thumb_up";
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.entry-content--blog .blog-affiliate__highlight--con::before {
	content: "info";
}

.entry-content--blog .blog-affiliate__highlight--pro {
	background: #e8f5e9;
	color: #2e7d32;
}

.entry-content--blog .blog-affiliate__highlight--con {
	background: #fff3e0;
	color: #bf360c;
}

.entry-content--blog .blog-affiliate__reasons {
	margin: 0 0 20px;
	padding: 18px 20px;
	border: 1px solid #d4f5ef;
	border-radius: 8px;
	background: #f0fbf9;
}

.entry-content--blog .blog-affiliate__reasons-title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	color: #222222;
}

.entry-content--blog .blog-affiliate__reasons ul {
	margin: 0;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.7;
	color: #444444;
}

.entry-content--blog .blog-affiliate__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.entry-content--blog .blog-affiliate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 24px;
	border: 0;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.entry-content--blog .blog-affiliate-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	text-decoration: none;
}

.entry-content--blog .blog-affiliate-btn--amazon {
	background: #ff9900;
	color: #111111;
}

.entry-content--blog .blog-affiliate-btn--amazon:hover {
	background: #e88b00;
	color: #111111;
}

.entry-content--blog .blog-affiliate-btn--rakuten {
	background: #bf0000;
	color: #ffffff;
}

.entry-content--blog .blog-affiliate-btn--rakuten:hover {
	background: #a80000;
	color: #ffffff;
}

.entry-content--blog .blog-affiliate-btn--yahoo {
	background: #e60033;
	color: #ffffff;
}

.entry-content--blog .blog-affiliate-btn--yahoo:hover {
	background: #cc002d;
	color: #ffffff;
}

.entry-content--blog .blog-affiliate-btn--compact {
	display: inline-flex;
	min-height: 44px;
	padding: 0 18px;
	font-size: 14px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
	vertical-align: middle;
}

.entry-content--blog .blog-affiliate-btn--large {
	min-height: 62px;
	font-size: 17px;
}

.entry-content--blog p:has(> .blog-affiliate-btn),
.entry-content--blog div:has(> .blog-affiliate-btn):not(.blog-affiliate):not(.blog-affiliate__actions):not(.blog-type-pick):not(.blog-actions__links) {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 1.5rem 0;
}

.entry-content--blog p:has(> .blog-affiliate-btn) .blog-affiliate-btn,
.entry-content--blog div:has(> .blog-affiliate-btn):not(.blog-affiliate):not(.blog-affiliate__actions):not(.blog-type-pick):not(.blog-actions__links) .blog-affiliate-btn,
.entry-content--blog .blog-affiliate__actions .blog-affiliate-btn,
.entry-content--blog .blog-type-pick :is(p, div):has(> .blog-affiliate-btn) .blog-affiliate-btn {
	width: 100%;
	min-height: 58px;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.entry-content--affiliate .blog-faq {
	margin: 0;
	border: 0;
	border-bottom: 1px solid #ececec;
	border-radius: 0;
	background: #ffffff;
}

.entry-content--affiliate .blog-faq:last-child {
	border-bottom: 0;
}

.entry-content--affiliate .blog-faq summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	color: #333333;
	cursor: pointer;
	list-style: none;
}

.entry-content--affiliate .blog-faq__q {
	display: none;
}

.entry-content--affiliate .blog-faq summary::after {
	content: "keyboard_arrow_down";
	font-family: "Material Symbols Outlined";
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #666666;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.entry-content--affiliate .blog-faq[open] summary {
	background: #f0fbf9;
}

.entry-content--affiliate .blog-faq[open] summary::after {
	content: none;
	display: none;
}

.entry-content--affiliate .blog-faq summary::-webkit-details-marker {
	display: none;
}

.entry-content--affiliate .blog-faq__body {
	position: relative;
	padding: 4px 20px 20px;
	font-size: 16px;
	line-height: 1.85;
	color: #333333;
}

.entry-content--affiliate .blog-faq__body p {
	margin: 0;
}

.entry-content--affiliate .blog-affiliate-cta {
	margin: 48px 0 40px;
	padding: 32px 28px;
	border-top: 4px solid #41c9b4;
	border-radius: 12px;
	background: #f0fbf9;
	text-align: center;
}

.entry-content--affiliate .blog-affiliate-cta__title {
	margin: 0 0 20px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 22px;
	color: #333333;
}

.entry-content--affiliate .blog-affiliate-cta p {
	margin: 0 0 20px;
	text-align: left;
	line-height: 1.85;
	color: #333333;
}

.entry-content--affiliate .blog-affiliate-cta__pick {
	margin-bottom: 24px !important;
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	text-align: center !important;
}

.entry-content--affiliate .blog-affiliate-cta__related {
	margin: 24px 0 0;
	font-size: 14px;
	text-align: center !important;
	color: #666666;
}

.entry-content--affiliate .blog-affiliate-cta__related a {
	color: #41c9b4;
	text-decoration: underline;
}

.entry-content--affiliate .blog-supervisor {
	margin: 48px 0 0;
	padding: 32px 28px;
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #fafafa;
	text-align: center;
}

.entry-content--affiliate .blog-supervisor__avatar {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
}

.entry-content--affiliate .blog-supervisor__name {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	color: #333333;
}

.entry-content--affiliate .blog-supervisor__badge {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 999px;
	background: #f0fbf9;
	font-size: 12px;
	font-weight: 700;
	color: #2fa892;
}

/* ブログ：表・枠は角丸なし */
.entry-content--blog :is(
	.blog-author-note,
	.blog-summary,
	.blog-type-pick,
	.blog-product-pick,
	.blog-faq-list,
	.blog-table-wrap,
	.blog-affiliate,
	.blog-affiliate__badge,
	.blog-affiliate__thumb,
	.blog-affiliate__reasons,
	.blog-affiliate-btn,
	.blog-faq__q,
	.blog-lead-box,
	.blog-affiliate-cta,
	.blog-supervisor,
	.blog-readmore,
	.blog-pros-cons,
	.blog-callout,
	.blog-checkpoints,
	.blog-checkpoint,
	.blog-timeline,
	.blog-timeline__item,
	.blog-print-checklist,
	.blog-print-checklist__section,
	.blog-prep-groups,
	.blog-prep-group,
	.blog-prep-card,
	.blog-item-cards,
	.blog-product-index,
	.blog-item-card,
	.blog-item-card__visual
),
.blog-post-nav__link,
.blog-card {
	border-radius: 0;
}

.entry-content--blog .blog-faq__body::before {
	border-radius: 0;
}

.blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 0;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

.blog-tags__item {
	font-family: var(--font-heading);
	font-size: 14px;
	color: #41c9b4;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-tags__item:hover {
	color: #2fa892;
	opacity: 1;
}

.single-article--blog .single-article__footer {
	margin-top: 48px;
}

.blog-post-nav {
	margin: 28px 0 0;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

.blog-post-nav__inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.blog-post-nav__item {
	flex: 1 1 0;
	min-width: 0;
}

.blog-post-nav__item:not(:has(.blog-post-nav__link)) {
	display: none;
}

.blog-post-nav__item--next {
	display: flex;
	justify-content: flex-end;
}

.blog-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	padding: 16px 18px;
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #ffffff;
	color: #333333;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-post-nav__link:hover {
	border-color: #41c9b4;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	color: #333333;
	opacity: 1;
}

.blog-post-nav__item--next .blog-post-nav__link {
	align-items: flex-end;
	text-align: right;
}

.blog-post-nav__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: #41c9b4;
}

.blog-post-nav__icon {
	font-size: 20px;
	line-height: 1;
}

.blog-post-nav__title {
	display: -webkit-box;
	overflow: hidden;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #333333;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-related {
	margin: 48px 0 0;
	padding-top: 32px;
	border-top: 1px solid #ececec;
}

.blog-related__title {
	margin: 0 0 20px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #333333;
}

.blog-related__grid {
	margin: 0;
}

/* --------------------------------------------------------------------------
   関連リンク
   -------------------------------------------------------------------------- */

.link-cards {
	display: flex;
	flex-direction: column;
	gap: var(--space-block-md);
	margin: 0;
}

.link-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 30px 20px;
	background: var(--color-cream);
	border: 1px solid var(--color-line);
	border-radius: 10px;
	text-align: center;
	transition: opacity 0.2s;
}

.link-card:hover {
	opacity: 0.9;
}

.link-card--featured .link-card__logo {
	display: block;
	width: 60%;
	height: auto;
	margin: 0;
}

.link-card--featured .link-card__logo--tall {
	width: 123px;
}

.link-card__desc {
	margin: 0;
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

.link-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-text);
	text-decoration: underline;
}

.link-card__cta-icon {
	display: block;
	width: 18px;
	height: auto;
	flex-shrink: 0;
}

.link-card--banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--color-yellow);
}

.link-card__banner-text {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	flex: 1;
}

.link-card__banner-illust {
	flex-shrink: 0;
	width: 74px;
}

.link-groups {
	display: flex;
	flex-direction: column;
	gap: var(--space-block-md);
	margin: 0;
}

.link-group--box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding: 40px 30px;
	background: var(--color-link-bg);
	border-radius: 12px;
}

.link-group .link-group__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	color: var(--color-text);
}

.link-group__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.link-group__list li {
	width: 100%;
}

.link-group__list a,
.link-group__text-only {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-link-blue);
}

.link-group__list a {
	transition: opacity 0.2s;
}

.link-group__list a:hover {
	opacity: 0.75;
}

.link-group__arrow {
	display: block;
	flex-shrink: 0;
	width: 24px;
	font-size: 24px;
	color: var(--color-link-blue);
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.link-group__label {
	flex: 1;
	text-align: left;
}

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */

.site-footer {
	line-height: 0;
}

.site-footer__body {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	padding: 30px 30px 25px;
	text-align: center;
	line-height: normal;
}

.site-footer__top {
	display: inline-block;
	margin-bottom: 20px;
}

.site-footer__top img {
	width: 60px;
	height: auto;
}

.site-footer__logo {
	display: block;
	margin: 0 auto 15px;
}

.site-footer__logo img {
	width: 280px;
	max-width: 100%;
}

.site-footer__copy {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--color-muted);
}

.site-footer__wave {
	width: 100%;
	display: block;
}

/* --------------------------------------------------------------------------
   下層ページ
   -------------------------------------------------------------------------- */

.page-content {
	padding: 30px 0 50px;
}

.page-content:has(.page-article--hero) {
	padding-top: 0;
}

.breadcrumb {
	margin: 10px 0 20px;
	font-size: 12px;
}

.breadcrumb__list {
	display: inline;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb__list li {
	display: inline;
}

.breadcrumb__list li:not(:last-child)::after {
	content: ">";
	margin-left: 5px;
	color: var(--color-muted);
}

.page-article__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
}

.page-article__lead {
	margin: 0 0 25px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	color: #222;
}

@media (min-width: 768px) {
	.page-article__lead {
		font-size: 20px;
	}
}

.entry-content:not(.entry-content--blog):not(.entry-content--affiliate) h2 {
	margin: 25px 0 10px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
}

.entry-content:not(.entry-content--blog):not(.entry-content--affiliate) h3 {
	margin: 20px 0 10px;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
}

.entry-content--evacuation .evacuation-section__title {
	margin: 25px 0;
	font-size: 34px;
	font-weight: 600;
	color: #222;
	text-align: center;
}

.entry-content--evacuation .evacuation-card__name {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.entry-content p {
}

/* --------------------------------------------------------------------------
   下層ページヒーロー
   -------------------------------------------------------------------------- */

.page-hero {
	margin: 0 -25px;
	padding: 30px 30px 15%;
	text-align: center;
	background-image: url("../images/about-hero-bg.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.page-hero__body {
	padding: 0;
}

.page-hero__label {
	margin: 0 0 10px;
	font-family: var(--font-mono);
	font-size: 4.44vw;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-text);
	text-transform: uppercase;
}

.page-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 6.67vw;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-text);
}

.page-article--hero .page-article__lead {
	margin: 25px 0;
	padding: 0 30px;
}

.page-article--hero .page-article__body {
	margin-top: 0;
}

/* --------------------------------------------------------------------------
   About（重要性）ページ
   -------------------------------------------------------------------------- */

.entry-content--about {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--color-text);
}

.entry-content--about .about-page {
}

.entry-content--about .about-world {
	background: var(--color-cream);
	padding: 40px 30px;
	margin-bottom: 60px;
}


.entry-content--about .about-world .about-divider {
	margin: 0;
}

.entry-content--about .about-page__label,
.entry-content--about .about-reason-intro__label {
	margin: 0 0 10px;
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-muted);
	text-align: center;
	text-transform: uppercase;
}

.entry-content--about .about-page__heading {
	margin: 20px 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.entry-content--about .about-reason-intro__title {
	margin: 20px 0 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.entry-content--about .about-page__figure,
.entry-content--about .about-step__figure,
.entry-content--about .about-outro__figure {
	margin: 0 0 25px;
	text-align: center;
}

.entry-content--about .about-page__image,
.entry-content--about .about-step__image {
	width: 100%;
	height: auto;
}

.entry-content--about .about-outro__image {
	width: 80%;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.entry-content--about .about-page__cite {
	font-size: 14px;
	color: var(--color-muted);
	text-align: left;
}

.entry-content--about .about-page__cite a {
	color: var(--color-link-blue);
	text-decoration: underline;
}

.entry-content--about .about-divider {
	display: block;
	width: 100%;
	margin: 40px auto;
}

.entry-content--about .about-reason-section {
	padding: 0 30px;
}

.entry-content--about .about-reason-intro {
	margin: 0 0;
	text-align: center;
}

.entry-content--about .about-reason-intro .about-divider {
	display: block;
	width: 100%;
	margin: 0 0 40px;
}

.entry-content--about .about-step {
	margin-bottom: 0;
	padding: 40px 0;
	border-bottom: 1px dashed #333;
}

.entry-content--about .about-step:last-child {
	border-bottom: none;
}

.entry-content--about .about-step__meta {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0;
	margin: 0 auto 10px;
	line-height: 1;
	color:#f2e02e;
}

.entry-content--about .about-step__label {
	flex: 0 0 82px;
	margin: 0;
	font-family: var(--font-condensed);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.6;
	text-align: right;
	text-transform: uppercase;
}

.entry-content--about .about-step__no {
	font-family: var(--font-mono);
	font-size: 64px;
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.85;
}

.entry-content--about .about-step__title {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.entry-content--about .about-step p {
	text-align: left;
}

.entry-content--about .about-outro {
	margin: 40px 0 60px;
}

.entry-content--about .about-outro__inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--color-cream);
}

.entry-content--about .about-outro__tape {
	display: block;
	width: 100%;
	margin: 0;
}

.entry-content--about .about-outro__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 40px;
	padding: 50px 30px;
	text-align: left;
}

.entry-content--about .about-outro__headline {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.entry-content--about .about-outro__lead {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-text);
	text-align: center;
}

.entry-content--about .about-outro__title {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-red);
	text-align: center;
}

.entry-content--about .about-outro__body {
	margin: 0;
	font-size: inherit;
	font-weight: 500;
	line-height: 1.8;
	text-align: left;
}

.entry-content--about .about-outro__figure {
	margin: 0;
	text-align: center;
}

.info-card-grid {
	display: grid;
	gap: 16px;
}

.info-card {
	padding: 20px;
	background: var(--color-cream);
	border-radius: 8px;
}

.info-card h3 {
	margin: 0 0 10px;
	font-size: 15px;
}

.info-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   種類ページ
   -------------------------------------------------------------------------- */

/* INDEX ナビ */
.types-index {
	padding: 20px 20px 30px;
	background: #fff;
	border: 1px solid #bebebeff;
	border-radius: 12px;
	margin: 0 30px 30px;
}

.types-index__heading {
	margin: 0 0 15px;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.08em;
	color: var(--color-text);
}

.types-index__slash {
	display: inline-block;
	vertical-align: middle;
}

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

.types-index__list li {
	border-bottom: 1px dashed #333;
}

.types-index__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
}

.types-index__list a::after {
	content: 'keyboard_arrow_down';
	font-family: 'Material Symbols Outlined';
	font-size: 20px;
	font-weight: 400;
	color: var(--color-text);
	flex-shrink: 0;
	margin-left: 10px;
}

/* メインタイトルブロック */
.types-title-block {
	margin-bottom: 30px;
	text-align: center;
	padding: 0 30px;
}

.types-stripe {
	display: block;
	width: 100%;
	height: 36px;
	object-fit: fill;
}

.entry-content--types .types-main-title {
	margin: 0 0 15px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.3;
}

.entry-content--types .types-lead {
	margin: 0;
	font-size: 20px;
	line-height: 1.8;
	text-align: center;
}

/* セクション */
.types-section {
	margin-bottom: 30px;
	padding: 40px 30px;
	background: var(--color-cream);
	border-radius: 12px;
}

/* PC: 従来の黄色いピル。SP は吹き出しデザインに上書き */
.entry-content--types .types-section__label {
	display: block;
	position: relative;
	margin: 0 0 40px;
	padding: 15px 30px;
	background: var(--color-yellow);
	color: var(--color-text);
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	border-radius: 50px;
}

.entry-content--types .types-section__label::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 22px;
	background: var(--color-yellow);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.entry-content--types .types-section__label-bg {
	display: none;
}

.entry-content--types .types-section__label-text {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

/* シェルターカード */
.shelter-card {
	padding: 40px 0;
	border-bottom: 1px dashed #333;
}

.shelter-card:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.shelter-card__name {
	margin: 0 0 15px;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	color: var(--color-text);
}

.shelter-card__detail {
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

.shelter-card__detail dt {
	margin: 0 0 10px;
}

.shelter-card__detail dd {
	margin: 0 0 15px;
}

.shelter-card__detail dd:last-child {
	margin-bottom: 0;
}

/* チップ */
.chip {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
}

.chip--feature {
	background: var(--color-text);
	color: #fff;
}

.chip--merit {
	background: var(--color-text);
	color: #fff;
}

/* CTA セクション */
.types-cta-group {
	margin-bottom: 50px;
	padding: 40px 30px;
	background: var(--color-cream);
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.types-cta-section {
	text-align: center;
}

.types-cta-section__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
}

.entry-content--types .types-cta-section__title {
	margin: 0 0 25px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-text);
}

/* ピルボタン（テキストセンター・アイコン右端塗りつぶし） */
.btn-red--pill {
	justify-content: center;
	position: relative;
	padding-left: 30px;
	padding-right: 50px;
}

.btn-red--pill .material-symbols {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* --------------------------------------------------------------------------
   投稿一覧・詳細
   -------------------------------------------------------------------------- */

.post-grid {
	display: flex;
	flex-direction: column;
}

.archive-header {
	padding: 30px 25px 0;
}

.archive-header__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
}

.single-article {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 30px 30px 50px;
}

.single-article__header {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.single-article__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 6.67vw;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-text);
}

.single-article__meta {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	color: var(--color-text);
}

.single-article__date,
.single-article__category {
	font-family: var(--font-heading);
}

.single-article__body {
	font-family: var(--font-heading);
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text);
}

.single-article__body p {
	margin: 0;
}

.single-article--blog .single-article__body {
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #1e1e1e;
}

.single-article__footer {
	width: 100%;
}

.btn-news-back {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	width: 60%;
	height: 60px;
	background: var(--color-line);
	color: var(--color-white);
	border-radius: 128px;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	line-height: 60px;
	text-decoration: none;
	transition: opacity 0.2s;
	margin: 0 auto;
}

.btn-news-back:hover {
	opacity: 0.88;
	color: var(--color-white);
}

.btn-news-back__label {
	flex: 1;
	text-align: center;
}

.btn-news-back__icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.no-posts {
	padding: 30px 25px;
	text-align: center;
	color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   モバイル調整
   SP 文字サイズの目安:
     本文 14–15px / リード・補助 13–14px / 見出し 18–20px / 英字ラベル 12px
   -------------------------------------------------------------------------- */

@media (max-width: 899px) {
	:root {
		--space-section: 24px;
		--space-section-lg: 28px;
		--space-block: 24px;
		--space-block-md: 18px;
		--space-block-sm: 14px;
	}

	body {
		font-size: 16px;
	}

	/* ヘッダーロゴ */
	.mobile-header {
		padding: 8px 12px;
	}

	.mobile-header__logo img {
		width: 140px;
	}

	/* フッターロゴ */
	.site-footer__body {
		padding: 20px 20px 16px;
	}

	.site-footer__top {
		margin-bottom: 12px;
	}

	.site-footer__top img {
		width: 44px;
	}

	.site-footer__logo {
		margin-bottom: 8px;
	}

	.site-footer__logo img {
		width: 160px;
	}

	/* 文字サイズルール（vw廃止・段階を揃える） */
	.page-hero__label,
	.section-heading__en,
	.types-cta-section__eyebrow {
		font-size: 13px;
	}

	/* 下層ページ h1 */
	.page-hero__title,
	.page-article__title,
	.single-article__title,
	.single-article--blog .single-article__title,
	.archive-header__title {
		font-size: 24px;
	}

	.case-heading__title,
	.entry-content--types .types-main-title,
	.entry-content--types .types-cta-section__title {
		font-size: 20px;
	}

	/* トップのセクション見出し */
	.section-heading__title,
	.home-section--news .section-heading__title {
		font-size: 26px;
	}

	/* 下層 h2 */
	.entry-content--blog h2,
	.entry-content--affiliate h2,
	.entry-content:not(.entry-content--blog):not(.entry-content--affiliate) h2 {
		font-size: 22px;
	}

	.home-section--news .section-heading__en {
		font-size: 24px;
	}

	.home-text,
	.section-heading__lead,
	.home-section--type .section-heading__lead,
	.entry-content--types .types-lead,
	.link-group__list a,
	.link-group__text-only {
		font-size: 16px;
	}

	.case-heading__bubble-text {
		font-size: 16px;
	}

	.entry-content--about .about-outro__title {
		font-size: 22px;
		line-height: 1.45;
	}

	.entry-content--about .about-outro__content {
		gap: 16px;
		padding: 28px 16px;
	}

	.entry-content--about .about-outro__headline {
		gap: 6px;
		margin-bottom: 0;
	}

	/* 種類ページ「特徴」「利点」チップ */
	.chip {
		font-size: 12px;
		padding: 3px 10px;
	}

	/* 種類ページ見出し：吹き出しを case-heading と揃える（SPのみ） */
	.entry-content--types .types-section__label {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 68px;
		height: auto;
		margin: 0 0 4px;
		padding: 14px 18px 24px;
		background: none;
		border-radius: 0;
		font-size: inherit;
		font-weight: inherit;
	}

	.entry-content--types .types-section__label::after {
		content: none;
		display: none;
	}

	.entry-content--types .types-section__label-bg {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		display: block;
		object-fit: fill;
		z-index: 0;
	}

	.entry-content--types .types-section__label-text {
		position: relative;
		z-index: 1;
		font-family: var(--font-heading);
		font-size: 16px;
		font-weight: 600;
		line-height: 1.4;
		text-align: center;
		color: var(--color-text);
	}

	.entry-content--types .types-section__label + .shelter-card {
		padding-top: 12px;
	}

	.entry-content--blog {
		font-size: 16px;
		line-height: 1.75;
	}

	.single-article__meta,
	.single-article--blog .single-article__meta {
		font-size: 13px;
	}

	/* トップ新着 */
	.news-item__meta,
	.news-item__category {
		font-size: 13px;
	}

	.news-item__title {
		font-size: 16px;
		line-height: 1.6;
	}

	.btn-red {
		height: 60px;
		min-height: 60px;
		font-size: 18px;
		padding: 0 16px;
		gap: 8px;
	}

	.btn-red__icon,
	.btn-red--pill .material-symbols {
		font-size: 20px;
	}

	.btn-red--pill {
		padding-left: 20px;
		padding-right: 36px;
	}

	.btn-red--pill .material-symbols {
		right: 14px;
	}

	.btn-news-back {
		height: 60px;
		font-size: 18px;
		line-height: 60px;
	}

	.btn-news-back__icon {
		font-size: 18px;
		right: 14px;
	}

	/* 上下余白を詰める */
	.page-hero {
		padding: 20px 20px 12%;
	}

	.page-content {
		padding: 20px 0 32px;
	}

	.breadcrumb {
		padding-left: 30px;
		padding-right: 30px;
	}

	.archive-header {
		padding: 20px 16px 0;
	}

	.single-article {
		gap: 18px;
		padding: 0;
	}

	/* お知らせ詳細：コンテンツ左右 30px */
	.page-article--hero .single-article:not(.single-article--blog) {
		padding: 20px 30px 32px;
	}

	.single-article--blog .single-article__inner {
		padding-left: 30px;
		padding-right: 30px;
	}

	.section-heading--center {
		margin: 16px 0;
	}

	.section-heading:has(.section-heading__lead) {
		gap: 10px;
	}

	.home-section--about,
	.home-section--place {
		padding: 28px 16px;
		gap: var(--space-block);
	}

	.home-section--type {
		padding: 28px 16px 0;
		gap: var(--space-block);
	}

	.home-section--news {
		padding: 0 16px 28px;
		gap: var(--space-section);
	}

	.home-section--links {
		padding: 12px 0 0;
		gap: var(--space-section);
		margin-bottom: var(--space-section);
	}

	.home-section--about,
	.home-section--type,
	.home-section--place,
	.home-section--links,
	.home-section--news,
	.home-news__lead {
		padding-left: 16px;
		padding-right: 16px;
	}

	.home-news {
		margin-top: 20px;
	}

	.home-news__lead {
		padding-top: 14px;
		padding-bottom: 20px;
	}

	.home-related-links {
		padding: 0 16px;
	}

	/* companies / evacuation など下層リード共通 */
	.page-article__lead,
	.page-article--hero .page-article__lead {
		margin: 16px 0;
		padding: 0 30px;
		font-size: 16px;
	}

	.evacuation-card__body {
		padding: 16px 0 24px;
	}

	.entry-content--evacuation .evacuation-card__name,
	.evacuation-card__name {
		font-size: 18px;
	}

	.evacuation-card__desc {
		font-size: 16px;
	}

	.evacuation-section__summary {
		padding: 0;
		font-size: 18px;
	}

	/* ブログ表：大きい文字を抑えて統一 */
	.entry-content--blog .blog-table,
	.entry-content--blog table,
	.entry-content--blog .blog-table th,
	.entry-content--blog .blog-table td,
	.entry-content--blog table th,
	.entry-content--blog table td,
	.entry-content--blog .blog-table :is(p, span, a, strong, b, em, small, li, h1, h2, h3, h4, h5, h6),
	.entry-content--blog table :is(p, span, a, strong, b, em, small, li, h1, h2, h3, h4, h5, h6) {
		font-size: 13px;
		line-height: 1.55;
	}

	.entry-content--blog .blog-table [style*="font-size"],
	.entry-content--blog table [style*="font-size"] {
		font-size: 13px !important;
	}

	.entry-content--blog .blog-table th,
	.entry-content--blog .blog-table td,
	.entry-content--blog table th,
	.entry-content--blog table td {
		padding: 10px 12px;
		min-width: 96px;
	}

	/* トップ・下層とも左右 margin 30px で揃える */
	.home-section--links .link-groups {
		margin-left: -16px;
		margin-right: -16px;
	}

	.link-group--box {
		gap: 16px;
		padding: 20px 16px;
		border-radius: 0;
		margin-left: 30px;
		margin-right: 30px;
	}

	.link-group .link-group__title {
		margin-bottom: 0;
	}

	.case-heading__no {
		font-size: 36px;
	}

	/* 16pxテキストに合わせて吹き出し背景を拡大 */
	.case-heading__bubble {
		min-height: 68px;
		height: auto;
		padding: 14px 18px 24px;
	}

	.case-heading__bubble-bg {
		object-fit: fill;
	}

	.case-heading__bubble-text {
		max-width: 100%;
	}

	.entry-content--blog > * + *:not(p) {
		margin-top: 1.75rem;
	}

	.entry-content--blog > h2 + *:not(p),
	.entry-content--blog > h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) + *:not(p),
	.entry-content--blog > .blog-table-block + *:not(p),
	.entry-content--blog > figure + *:not(p) {
		margin-top: 2rem;
	}

	/* ポチップ SP：タイトル・ボタンを少し大きく */
	.entry-content--blog .pochipp-box {
		width: 100% !important;
		font-size: 15px;
		padding: 18px !important;
	}

	.entry-content--blog .pochipp-box__title {
		font-size: 15px;
	}

	.entry-content--blog .pochipp-box .pochipp-box__btn {
		min-height: 52px;
		font-size: 16px;
		padding: 14px 12px;
	}

	.entry-content--blog .pochipp-box[data-lyt-mb="vrtcl"] .pochipp-box__image img {
		width: 70%;
		max-width: 160px;
	}
}

/* --------------------------------------------------------------------------
   デスクトップ
   -------------------------------------------------------------------------- */

@media (min-width: 900px) {
	.mobile-header,
	.mobile-drawer {
		display: none !important;
	}

	body {
		font-size: 15px;
	}

	/* PC: 本家と同じ固定幅ブロックを画面中央に配置（ブラウザ幅は可変） */
	.site-wrap {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		width: var(--site-width);
		max-width: var(--site-width);
		gap: var(--layout-gap);
		margin: 0 auto;
		padding: 30px 0 60px;
	}

	.site-sidebar {
		display: block;
		flex: 0 0 var(--sidebar-width);
		width: var(--sidebar-width);
		position: sticky;
		top: 20px;
	}

	.site-sidebar__inner {
		background: var(--color-white);
		border-radius: 12px;
		padding: 40px 25px;
		width: var(--sidebar-width);
	}

	.site-sidebar__logo {
		display: block;
		margin-bottom: 40px;
		text-align: center;
	}

	.site-sidebar__logo img {
		width: 200px;
	}

	.site-column {
		flex: 0 0 var(--content-column-width);
		width: var(--content-column-width);
	}

	.site-content-frame {
		width: var(--content-width);
		max-width: var(--content-width);
		margin: 0 auto;
		border: var(--frame-border) solid var(--color-white);
		background: var(--color-white);
	}

	.section-heading__en {
		font-size: 24px;
	}

	.section-heading__title {
		font-size: 36px;
	}

	.section-heading__lead {
		font-size: 20px;
	}

	.home-section--type .section-heading__lead {
		font-size: 24px;
	}

	.home-text {
		font-size: 20px;
	}

	.home-section--news .section-heading__en {
		font-size: 90px;
	}

	.home-section--news .section-heading__title {
		font-size: 28px;
	}

	.link-group .link-group__title {
		font-size: 24px;
	}

	.link-card__desc {
		font-size: 20px;
	}

	.link-card__cta {
		font-size: 18px;
	}

	.link-group__list a,
	.link-group__text-only {
		font-size: 20px;
	}

	.case-heading__no {
		font-size: 80px;
	}

	.case-heading__bubble {
		min-height: 80px;
		padding: 10px 40px 25px;
	}

	.case-heading__bubble-text {
		font-size: 20px;
	}

	.case-heading__title {
		font-size: 30px;
	}

	.btn-red {
		min-height: 101px;
		font-size: 24px;
	}

	.btn-red__icon {
		font-size: 28px;
	}

	.icon-card__img {
		width: 100px;
		height: 100px;
	}

	.icon-card {
		font-size: 14px;
		max-width: 150px;
	}

	.link-groups {
		display: grid;
		grid-template-columns: 1fr;
		gap: 32px;
		padding:0 30px;
	}

	.page-hero__label {
		font-size: 24px;
	}

	.page-hero__title {
		font-size: 36px;
	}

	.single-article__title {
		font-size: 32px;
	}

	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.blog-section {
		padding: 0 30px 60px;
	}

	.blog-featured {
		margin: 0 -30px 32px;
	}

	.blog-featured__header,
	.blog-featured__viewport {
		padding-left: 30px;
		padding-right: 30px;
	}

	.blog-section__title {
		margin-bottom: 24px;
		font-size: 20px;
	}

	.blog-keywords {
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.blog-keywords__title {
		font-size: 18px;
	}

	.blog-related__title {
		font-size: 20px;
	}

	.blog-post-nav__title {
		font-size: 15px;
	}

	.single-article--blog .single-article__inner {
		padding: 36px 0 64px;
	}

	.entry-content--affiliate {
		font-size: 16px;
	}

	.entry-content--affiliate h2 {
		font-size: 25px;
	}

	.entry-content--affiliate h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
		font-size: 22px;
	}

	.entry-content--affiliate h3.blog-affiliate__title {
		font-size: 19px;
	}

	.entry-content--affiliate .blog-affiliate-cta__title {
		font-size: 24px;
	}

	.single-article--blog .single-article__title {
		font-size: 32px;
	}

	.single-article--blog .single-article__header--blog {
		padding-bottom: 24px;
	}

	.entry-content--blog h2,
	.entry-content--affiliate h2 {
		font-size: 22px;
		line-height: 1.7;
	}

	.entry-content--blog > * + h2,
	.entry-content--blog.entry-content--affiliate > * + h2 {
		margin-top: 4rem;
	}

	.entry-content--blog .blog-toc + h2,
	.entry-content--blog > .blog-table-block + h2,
	.entry-content--blog > .blog-product-index + h2,
	.entry-content--blog.entry-content--affiliate .blog-toc + h2,
	.entry-content--blog.entry-content--affiliate > .blog-table-block + h2,
	.entry-content--blog.entry-content--affiliate > .blog-product-index + h2 {
		margin-top: 4rem;
	}

	.entry-content--blog > * + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title),
	.entry-content--blog.entry-content--affiliate > * + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
		margin-top: 2.5rem;
	}

	.entry-content--blog > h2 + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title),
	.entry-content--blog.entry-content--affiliate > h2 + h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
		margin-top: 3rem;
	}

	.entry-content--blog .blog-pros-cons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.entry-content--blog h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title),
	.entry-content--affiliate h3:not(.blog-affiliate__title):not(.blog-affiliate-cta__title) {
		font-size: 18px;
		line-height: 1.7;
		padding: 10px 16px;
	}

	.entry-content--about {
		font-size: 20px;
	}

	.entry-content--about .about-page__heading {
		font-size: 34px;
	}

	.entry-content--about .about-reason-intro__title {
		font-size: 34px;
	}

	.entry-content--about .about-outro__title {
		font-size: 32px;
	}

	.entry-content--about .about-step__title {
		font-size: 30px;
	}

	.entry-content--about .about-step__no {
		font-size: 80px;
	}

	.entry-content--types .types-section__label {
		font-size: 24px;
	}

	.entry-content--types .types-main-title {
		font-size: 36px;
	}

	.entry-content--types .types-lead {
		font-size: 20px;
	}

	.types-cta-section__title {
		font-size: 28px;
	}

	.types-cta-section__eyebrow {
		font-size: 24px;
	}


	.shelter-card__name {
		font-size: 24px;
	}

	.shelter-card__detail {
		font-size: 18px;
	}
}

/* ==========================================================================
   取扱会社一覧ページ
   ========================================================================== */

.company-section {
	margin-bottom: 50px;
	border-radius: 12px;
	overflow: hidden;
}

.company-section__inner {
	padding: 40px 30px;
	background: var(--color-cream);
}

.entry-content--companies .company-section__title {
	margin: 30px 0 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.company-section__lead {
	margin: 0 0 25px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
	color: #222;
}

@media (min-width: 768px) {
	.company-section__lead {
		font-size: 20px;
	}
}

.company-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 8px;
}

.company-card__logo img {
	width: 100%;
	height: auto;
}

.company-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.company-card {
	padding: 0 0 40px;
	border-bottom: 1px dashed #333;
}


.company-list:not(.company-list--more) .company-card:last-child {
	border-bottom: none;
}

.entry-content--companies .company-card__name {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-text);
	text-align: center;
}

.company-card__desc {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text);
}

.company-card .btn-red {
	position: relative;
	margin-top: 5px;
	justify-content: center;
}

.company-card .btn-red__icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* もっと見るボタン */
.company-list-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 25px;
	background: #111;
	color: #fff;
	border: none;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}

.company-list-toggle__icon {
	font-family: 'Material Symbols Outlined';
	font-size: 24px;
	transition: transform 0.3s ease;
}

.company-list-toggle[aria-expanded="true"] .company-list-toggle__icon {
	transform: rotate(180deg);
}

.company-list--more[hidden] {
	display: none;
}

/* 声セクション */
.company-voice-section {
	margin-bottom: 50px;
	padding: 0 30px
}

.company-voice-section__inner {
	padding: 0 0 40px;
	text-align: center;
}

.company-voice-section .company-section__title {
	text-align: center;
	margin-bottom: 30px;
}

.company-voice-section .company-section__lead {
	text-align: center;
}

.voice-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.voice-card {
	padding: 0;
	overflow: hidden;
	padding-bottom: 30px;
		border-bottom: 1px dashed #333;
}


.voice-card__embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.voice-card__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.voice-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	color: #333;
	text-align: left;
}

.voice-card__channel {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.voice-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.voice-card__title {
	padding-top: 20px;
}

.voice-card__title {
	font-weight: 600;
	line-height: 1.6;
}

.voice-card__channel {
	margin: 20px 0 0;
	font-size: 16px;
}

@media (min-width: 900px) {
	.entry-content--companies .company-card__name {
		font-size: 24px;
	}

	.company-card__desc {
		font-size: 16px;
	}

	.entry-content--companies .company-section__title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.voice-list {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.voice-card {
		flex: 1;
		min-width: 280px;
	}
}

/* ========================================
   避難所一覧ページ
   ======================================== */

.evacuation-section {
	margin-bottom: 50px;
	background: var(--color-cream);
	padding: 40px 30px;
}

.evacuation-section--nationwide {
	background: none;
	padding: 0 30px;
}

.evacuation-section__title {
	margin: 25px 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #222;
	text-align: center;
}

.evacuation-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.evacuation-card {
	border-bottom: 1px dashed #333;
}


.evacuation-card__img {
	overflow: hidden;
}

.evacuation-card__img img {
	width: 100%;
	height: auto;
	display: block;
}

.evacuation-card__body {
	padding: 20px 30px 30px;
}

.evacuation-card__name {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.evacuation-card__desc {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

.evacuation-section__summary {
	margin: 30px 0 0;
	padding: 0 30px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.8;
	color: #333;
}

.evacuation-link-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.evacuation-link-card a {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	transition: opacity 0.2s;
}

.evacuation-link-card a:hover {
	opacity: 0.8;
}

.evacuation-link-card img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 900px) {
	.evacuation-card__body {
		padding: 20px 0 30px;
	}
}

