/*
 * FILE_NAME
 * - home.css
 *
 * CHANGELOG
 * 2026-07-22
 * - Added responsive public home page styling.
 * - Displayed the complete hero mosaic within one-third of the viewport height.
 * - Reduced vertical whitespace across sections, cards, reserved areas and footer.
 * - Tightened the vertical rhythm further while preserving the page structure and hero display.
 */

:root {
	--home-blue-900: #063f8f;
	--home-blue-800: #0755b8;
	--home-blue-700: #0a67d8;
	--home-blue-600: #1877e8;
	--home-blue-100: #eaf4ff;
	--home-blue-050: #f5faff;
	--home-ink: #17324f;
	--home-muted: #65758a;
	--home-line: #d8e5f3;
	--home-surface: #ffffff;
	--home-shadow: 0 14px 38px rgba(20, 82, 145, 0.11);
	--home-radius: 18px;
	--home-content-width: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--home-surface);
	color: var(--home-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1em;
	line-height: 1.65;
}

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

img {
	display: block;
	max-width: 100%;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 9999;
	padding: 10px 16px;
	background: #ffffff;
	border: 2px solid var(--home-blue-700);
	border-radius: 8px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(216, 229, 243, 0.85);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) auto auto;
	align-items: center;
	gap: 24px;
	width: min(var(--home-content-width), calc(100% - 40px));
	min-height: 72px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.brand__mark {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
}

.brand__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.brand__text strong {
	color: var(--home-blue-800);
	font-size: clamp(1.15em, 1.8vw, 1.55em);
	font-weight: 800;
	letter-spacing: 0.045em;
	white-space: nowrap;
}

.brand__text small {
	overflow: hidden;
	color: var(--home-muted);
	font-size: 0.72em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 0.9em;
	font-weight: 700;
	white-space: nowrap;
}

.primary-navigation a {
	position: relative;
	padding: 8px 0;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	background: var(--home-blue-600);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
	transform: scaleX(1);
}


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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.9em;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--outline {
	border-color: var(--home-blue-600);
	background: #ffffff;
	color: var(--home-blue-700);
}

.button--primary {
	background: linear-gradient(135deg, var(--home-blue-700), var(--home-blue-900));
	box-shadow: 0 8px 22px rgba(10, 103, 216, 0.25);
	color: #ffffff;
}

.mobile-menu-button {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--home-line);
	border-radius: 12px;
	background: #ffffff;
	cursor: pointer;
}

.mobile-menu-button span {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--home-blue-800);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
	background: #ffffff;
}

.hero__slogan {
	margin: 0;
	padding: 12px 20px;
	background: linear-gradient(90deg, var(--home-blue-900), var(--home-blue-600), var(--home-blue-900));
	color: #ffffff;
	font-size: clamp(1.08em, 2vw, 1.75em);
	font-weight: 800;
	letter-spacing: 0.035em;
	line-height: 1.35;
	text-align: center;
	white-space: nowrap;
}

.hero__image-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(var(--home-content-width), calc(100% - 40px));
	height: auto;
	margin: 0 auto;
	padding: 0;
	overflow: visible;
	background: transparent;
}

.hero__image {
	display: block;
	width: auto;
	max-width: none;
	height: 360px;
	max-height: none;
	margin: 0 auto;
	object-fit: contain;
}

.section {
	padding: 28px 0;
}

.section__inner {
	width: min(var(--home-content-width), calc(100% - 40px));
	margin: 0 auto;
}

.section--intro {
	background: linear-gradient(180deg, #ffffff 0%, var(--home-blue-050) 100%);
}

.section-heading {
	margin: 0 0 14px;
	color: var(--home-blue-800);
	font-size: clamp(1.45em, 2.4vw, 2em);
	font-weight: 800;
	letter-spacing: 0.035em;
	line-height: 1.35;
	text-align: center;
}

.section-heading--compact {
	margin-bottom: 11px;
	font-size: clamp(1.25em, 2vw, 1.65em);
}

.feature-summary {
	max-width: 1180px;
	margin: 0 auto 22px;
	color: var(--home-blue-800);
	font-size: clamp(1.02em, 1.45vw, 1.24em);
	font-weight: 650;
	letter-spacing: 0.015em;
	line-height: 1.8;
	text-align: center;
}

.feature-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.feature-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 102px;
	padding: 16px;
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	background: #ffffff;
	box-shadow: var(--home-shadow);
}

.feature-card h3 {
	margin: 0 0 4px;
	color: var(--home-blue-800);
	font-size: 1.12em;
}

.feature-card p {
	margin: 0;
	color: var(--home-muted);
	font-size: 0.92em;
}

.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--home-blue-600), var(--home-blue-900));
	box-shadow: 0 8px 18px rgba(10, 103, 216, 0.22);
}

.icon-circle img {
	width: 23px;
	height: 23px;
}

.section--dashboard {
	background: var(--home-blue-050);
}

.dashboard-grid {
	display: grid;
	grid-template-columns: minmax(230px, 0.8fr) minmax(420px, 1.25fr) minmax(280px, 0.95fr);
	align-items: stretch;
	gap: 12px;
}

.card-panel {
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	background: #ffffff;
	box-shadow: var(--home-shadow);
}

.smartphone-panel {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: linear-gradient(160deg, var(--home-blue-700), var(--home-blue-900));
	color: #ffffff;
}

.smartphone-panel__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 230px;
	padding: 14px 18px 0;
}

.smartphone-panel__visual img {
	width: min(100%, 235px);
	max-height: 225px;
	object-fit: contain;
}

.smartphone-panel__copy {
	padding: 10px 18px 15px;
	text-align: center;
}

.smartphone-panel__copy h2 {
	margin: 0 0 4px;
	font-size: 1.25em;
}

.smartphone-panel__copy p {
	margin: 0 0 4px;
}

.smartphone-panel__copy small {
	display: block;
	opacity: 0.78;
	font-size: 0.74em;
}

.dashboard-center {
	display: grid;
	grid-template-rows: auto auto;
	gap: 12px;
}

.calendar-panel,
.news-panel,
.service-panel {
	padding: 16px;
}

.panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 9px;
}

.panel-heading > div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.panel-heading img {
	width: 23px;
	height: 23px;
	padding: 4px;
	border-radius: 8px;
	background: var(--home-blue-700);
}

.panel-heading h2 {
	margin: 0;
	color: var(--home-blue-800);
	font-size: 1.2em;
}

.panel-heading strong {
	color: var(--home-muted);
	font-size: 0.88em;
}

.calendar {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 5px;
	margin-bottom: 9px;
}

.calendar__cell {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 68px;
	padding: 5px;
	border-radius: 9px;
	font-size: 0.82em;
	min-width: 0;
}

.calendar__cell--header {
	align-items: center;
	justify-content: center;
	padding: 0;
}

.calendar__date {
	font-weight: 800;
	line-height: 1.2;
}

.calendar__event-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 100%;
	margin-top: 3px;
	min-width: 0;
}

.calendar__event-title {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.76em;
	line-height: 1.25;
}

.calendar-panel[role="link"] {
	cursor: pointer;
}

.calendar-panel[role="link"]:focus-visible {
	outline: 3px solid var(--home-blue-700);
	outline-offset: 3px;
}

.calendar__cell--header {
	min-height: 24px;
	color: var(--home-muted);
	font-size: 0.72em;
	font-weight: 800;
}

.calendar__cell--outside {
	color: #b3c0cd;
}

.calendar__cell--today {
	background: var(--home-blue-700);
	box-shadow: 0 6px 16px rgba(10, 103, 216, 0.24);
	color: #ffffff;
	font-weight: 800;
}

.calendar__cell--sunday:not(.calendar__cell--today) {
	color: #de4f5e;
}

.calendar__cell--saturday:not(.calendar__cell--today) {
	color: var(--home-blue-700);
}

.text-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid #bbd7f6;
	border-radius: 10px;
	color: var(--home-blue-700);
	font-size: 0.86em;
	font-weight: 800;
}

.text-link span {
	margin-left: 8px;
	font-size: 1.25em;
}

.news-list {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

.news-list li {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	padding: 5px 0;
	border-bottom: 1px solid #edf2f7;
	font-size: 0.84em;
}

.news-list time {
	color: var(--home-muted);
	font-variant-numeric: tabular-nums;
}

.service-panel {
	display: flex;
	flex-direction: column;
}

.service-panel > p {
	margin: 0 0 8px;
	color: var(--home-muted);
	font-size: 0.92em;
}

.map-image-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 165px;
	margin-bottom: 6px;
	overflow: hidden;
	border: 1px dashed #b9cce0;
	border-radius: 14px;
	background: #f9fbfd;
}

.map-image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-panel small {
	margin-bottom: 9px;
	color: var(--home-muted);
	font-size: 0.74em;
}

.button--wide {
	width: 100%;
	margin-top: auto;
	border-color: #b7d6f8;
	border-radius: 11px;
	color: var(--home-blue-700);
}

.section--functions {
	padding-top: 16px;
	padding-bottom: 18px;
	background: #ffffff;
}

.function-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	padding: 13px;
	border: 1px solid var(--home-line);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: var(--home-shadow);
}

.function-grid div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 0;
	font-size: 0.82em;
	font-weight: 800;
	text-align: center;
}

.function-grid img {
	width: 31px;
	height: 31px;
	padding: 6px;
	flex: 0 0 auto;
	border-radius: 9px;
	background: var(--home-blue-700);
}

.section--reserved {
	padding-top: 8px;
	background: var(--home-blue-050);
}

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

.reserved-section {
	overflow: hidden;
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	background: #ffffff;
	box-shadow: var(--home-shadow);
}

.reserved-section h2 {
	margin: 0;
	padding: 10px 16px;
	border-bottom: 1px solid var(--home-line);
	color: var(--home-blue-800);
	font-size: 1.15em;
}

.reserved-content {
	min-height: 68px;
	background: #ffffff;
}

.site-footer {
	border-top: 1px solid var(--home-line);
	background: #ffffff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(500px, 1.5fr);
	gap: 28px;
	width: min(var(--home-content-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 22px 0;
}

.footer-brand {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.footer-brand img {
	width: 54px;
	height: 54px;
}

.footer-brand strong {
	color: var(--home-blue-800);
	font-size: 1.2em;
}

.footer-brand p {
	margin: 6px 0 0;
	color: var(--home-muted);
	font-size: 0.86em;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px 22px;
	font-size: 0.82em;
}

.footer-links a {
	color: #425a72;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--home-blue-700);
	text-decoration: underline;
}

.copyright {
	padding: 8px 20px;
	background: var(--home-blue-900);
	color: #ffffff;
	font-size: 0.75em;
	text-align: center;
}

@media (max-width: 1160px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.primary-navigation {
		position: absolute;
		top: 72px;
		right: 20px;
		display: none;
		width: min(360px, calc(100vw - 40px));
		padding: 15px;
		border: 1px solid var(--home-line);
		border-radius: 14px;
		background: #ffffff;
		box-shadow: var(--home-shadow);
		white-space: normal;
	}

	.primary-navigation.is-open {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px 18px;
	}

	.primary-navigation a {
		padding: 8px;
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
		margin-right: 56px;
	}

	.mobile-menu-button {
		position: absolute;
		right: 20px;
		display: block;
	}

	.dashboard-grid {
		grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
	}

	.service-panel {
		grid-column: 1 / -1;
	}

	.map-image-frame {
		min-height: 180px;
	}

	.function-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		border-radius: var(--home-radius);
	}
}

@media (max-width: 820px) {
	.site-header__inner {
		width: calc(100% - 24px);
		min-height: 66px;
	}

	.brand__mark {
		width: 42px;
		height: 42px;
	}

	.brand__text small {
		display: none;
	}

	.header-actions .button--outline {
		display: none;
	}

	.header-actions {
		margin-right: 52px;
	}

	.header-actions .button {
		min-height: 38px;
		padding: 0 13px;
		font-size: 0.76em;
	}

	.primary-navigation {
		top: 66px;
		right: 12px;
	}

	.hero__slogan {
		padding: 10px 14px;
		font-size: clamp(0.68em, 2.8vw, 1em);
		letter-spacing: 0.01em;
	}

	.hero__image-frame {
		width: calc(100% - 24px);
		padding: 0;
	}

	.hero__image {
		display: block;
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: none;
		margin: 0 auto;
		object-fit: contain;
		transform: none;
	}

	.section {
		padding: 22px 0;
	}

	.section__inner {
		width: calc(100% - 24px);
	}

	.feature-card-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		min-height: 0;
	}

	.dashboard-grid {
		grid-template-columns: 1fr;
	}

	.smartphone-panel__visual {
		min-height: 215px;
	}

	.service-panel {
		grid-column: auto;
	}

	.function-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 16px;
	}

	.reserved-grid {
		grid-template-columns: 1fr;
	}

	.reserved-content {
		min-height: 64px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 16px;
		width: calc(100% - 24px);
	}

	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.brand__text strong {
		font-size: 1em;
	}

	.header-actions .button--primary {
		max-width: 112px;
		padding: 0 10px;
	}

	.primary-navigation.is-open {
		grid-template-columns: 1fr;
	}

	.hero__slogan {
		white-space: normal;
	}

	.feature-card {
		padding: 15px;
	}

	.calendar-panel,
	.news-panel,
	.service-panel {
		padding: 15px;
	}

	.news-list li {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.function-grid {
		grid-template-columns: 1fr;
	}

	.function-grid div {
		justify-content: flex-start;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}


/* LCB_HOMEPAGE_EDITOR_260801_V1 */
.homepage-topic {
	margin: 0 0 10px;
	padding: 9px 11px;
	border: 1px solid #dce9f7;
	border-radius: 10px;
	background: #f7fbff;
}

.homepage-topic strong {
	display: block;
	margin-bottom: 4px;
	color: var(--home-blue-700);
	font-size: 0.8em;
}

.homepage-topic p,
.homepage-news-content {
	margin: 0;
	white-space: pre-line;
	font-size: 0.84em;
	line-height: 1.65;
}

.homepage-news-content {
	margin-bottom: 10px;
	padding: 0 3px;
}

/* Homepage template selected by metadata. */
.homepage-template-compact .section { padding-top: 34px; padding-bottom: 34px; }
.homepage-template-compact .hero__image-frame { max-height: 420px; overflow: hidden; }
.homepage-template-compact .feature-card-grid, .homepage-template-compact .dashboard-grid { gap: 16px; }


/* Homepage editable image area */
.section--homepage-images { padding-top: 0; }
.homepage-slider { position: relative; overflow: hidden; border-radius: 18px; }
.homepage-slide { display: none; }
.homepage-slide:first-child, .homepage-slide.is-active { display: block; }
.homepage-slide img { display: block; width: 100%; max-height: 520px; object-fit: cover; }
.homepage-slide a { display: block; }

.homepage-feed-block{margin-top:.75rem}.homepage-feed-block h3{margin:0 0 .45rem;color:#075ab8;font-size:.9rem}.homepage-news-item{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.15rem .6rem;padding:.45rem .2rem;border-bottom:1px dotted #b8c9dd;color:#163451;text-decoration:none}.homepage-news-item strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.homepage-news-text{grid-column:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.82rem}.homepage-news-item time{grid-column:2;grid-row:1/3;align-self:end;color:#76889d;font-size:.72rem}.homepage-topic-item{display:grid;grid-template-columns:76px minmax(0,1fr);gap:.65rem;padding:.55rem 0;border-bottom:1px dotted #b8c9dd;color:#163451;text-decoration:none}.homepage-topic-item img,.homepage-topic-placeholder{display:block;width:76px;height:58px;border-radius:8px;background:#e7f1fc;object-fit:cover}.homepage-topic-item strong{display:block;color:#075ab8}.homepage-topic-item em{display:inline-block;margin-right:.35rem;padding:.08rem .3rem;border-radius:4px;background:#e22;color:#fff;font-size:.65rem;font-style:normal}.homepage-topic-item small{display:-webkit-box;overflow:hidden;margin-top:.2rem;-webkit-box-orient:vertical;-webkit-line-clamp:3;line-height:1.45}.homepage-feed-empty{color:#8a98a8}
/* LCB_TOP_METADATA_LAYOUT_RENDER_260826_V25_START */
/* LCB_TOP_RUNTIME_WINDOW_GRID_260901_V29_START */
.homepage-runtime-layout {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px 0;
	width: 100%;
	max-width: none;
}

.homepage-runtime-module {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	min-width: 0;
	width: 100%;
}

/*
 * Runtime DIV width is always derived from the browser window/grid cell.
 * Do not cap a runtime DIV at --home-content-width, because that makes
 * 100%, 50% and 33% rows look different at wide desktop window sizes.
 */
.homepage-runtime-module .section__inner,
.homepage-runtime-module .hero__image-frame {
	width: calc(100% - 24px);
	max-width: none;
}

.homepage-runtime-module .section__inner {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
}

/* Stretch the visible card to the full size of its runtime DIV. */
.homepage-runtime-module .section__inner > .card-panel,
.homepage-runtime-module .section__inner > .reserved-section {
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-width: 0;
}

.homepage-runtime-module--slide,
.homepage-runtime-module--service {
	overflow: hidden;
}

.homepage-runtime-card {
	width: 100%;
	min-height: 0;
}

.homepage-runtime-module--news,
.homepage-runtime-module--topic {
	padding-top: 12px;
	padding-bottom: 12px;
}

@media (max-width: 900px) {
	.homepage-runtime-layout {
		display: block;
	}

	.homepage-runtime-module {
		width: 100%;
	}

	.homepage-runtime-module .section__inner,
	.homepage-runtime-module .hero__image-frame {
		width: calc(100% - 24px);
	}
}
/* LCB_TOP_RUNTIME_WINDOW_GRID_260901_V29_END */
/* LCB_TOP_METADATA_LAYOUT_RENDER_260826_V25_END */

/* Function DIV advertiser preview/runtime binding */
.homepage-advertiser-list {
	display: grid;
	gap: 14px;
}
.homepage-advertiser-card {
	overflow: hidden;
	border: 1px solid #d6e2ef;
	border-radius: 14px;
	background: #ffffff;
}
.homepage-advertiser-card__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: cover;
}
.homepage-advertiser-card__body {
	padding: 14px;
}
.homepage-advertiser-card__body h3 {
	margin: 0 0 8px;
}
.homepage-advertiser-card__body p {
	margin: 0 0 12px;
	line-height: 1.6;
}
.homepage-advertiser-card__link {
	display: inline-flex;
}
/* LCB_HOMEPAGE_SLIDE_TITLE_DESCRIPTION_V224_260907 */
.homepage-slide-title { margin: 0 0 .35rem; font-size: 1.35rem; line-height: 1.4; }
.homepage-slide-description { margin: 0 0 .8rem; line-height: 1.7; white-space: pre-line; }

/* LCB_HOMEPAGE_SLIDE_TITLE_STYLE_COMMON_V240_260907 */
.tokosui-slide-heading {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 12px;
    text-align: center;
}
.tokosui-slide-heading__title {
    margin: 0;
}
.tokosui-slide-heading__description {
    margin: 6px 0 0;
    text-align: center;
}

/* LCB_HOMEPAGE_SLIDE_TITLE_NO_FRAME_V241_260907 */
.tokosui-slide-heading {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* LCB_HOMEPAGE_SLIDE_TITLE_NO_UNDERLINE_V242_260907 */
.tokosui-slide-heading {
    border-bottom: 0 !important;
}
.tokosui-slide-heading::before,
.tokosui-slide-heading::after {
    content: none !important;
    display: none !important;
}

/* LCB_HOMEPAGE_SLIDE_TITLE_H2_NO_LINE_V243_260907 */
.tokosui-slide-heading__title {
    border: 0 !important;
    border-bottom: 0 !important;
    border-block-end: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
    text-decoration: none !important;
}
.tokosui-slide-heading__title::before,
.tokosui-slide-heading__title::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: none !important;
}

/* LCB_HOMEPAGE_SLIDE_TITLE_FONT_SIZE_V244_260907 */
.tokosui-slide-heading__title {
    font-size: 1.75rem !important;
    line-height: 1.35;
}

/* LCB_HOMEPAGE_COMMERCE_DISCLOSURE_FUNCTION_DIV_V251_260907_CSS_START */
.homepage-runtime-module--commerce-disclosure {
	box-sizing: border-box;
	padding: 0;
}
.tokosui-commerce-disclosure {
	width: 100%;
	box-sizing: border-box;
	padding: clamp(18px, 3vw, 40px);
	background: #fff;
	color: #202735;
}
.tokosui-commerce-disclosure__language {
	width: min(1100px, 100%);
	margin: 0 auto;
}
.tokosui-commerce-disclosure__language + .tokosui-commerce-disclosure__language {
	margin-top: 42px;
	padding-top: 36px;
	border-top: 1px solid #d9e0ea;
}
.tokosui-commerce-disclosure__language h2 {
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.35;
	color: #161b2a;
}
.tokosui-commerce-disclosure__description {
	margin: 0 0 22px;
	line-height: 1.7;
	color: #5a6474;
}
.tokosui-commerce-disclosure__language dl {
	margin: 0;
	border-top: 1px solid #d9e0ea;
}
.tokosui-commerce-disclosure__row {
	display: grid;
	grid-template-columns: minmax(190px, 30%) minmax(0, 1fr);
	border-bottom: 1px solid #d9e0ea;
}
.tokosui-commerce-disclosure__row dt,
.tokosui-commerce-disclosure__row dd {
	box-sizing: border-box;
	margin: 0;
	padding: 13px 15px;
	line-height: 1.65;
	word-break: break-word;
}
.tokosui-commerce-disclosure__row dt {
	font-weight: 700;
	background: #f5f7fa;
}
.tokosui-commerce-disclosure__row dd {
	background: #fff;
}
.tokosui-commerce-disclosure__error {
	box-sizing: border-box;
	width: min(1100px, calc(100% - 32px));
	margin: 24px auto;
	padding: 14px 16px;
	border: 1px solid #d9e0ea;
	background: #fff;
}
@media (max-width: 700px) {
	.tokosui-commerce-disclosure__row {
		grid-template-columns: 1fr;
	}
	.tokosui-commerce-disclosure__row dt {
		padding-bottom: 7px;
	}
	.tokosui-commerce-disclosure__row dd {
		padding-top: 8px;
	}
}
/* LCB_HOMEPAGE_COMMERCE_DISCLOSURE_FUNCTION_DIV_V251_260907_CSS_END */

/* LCB_PUBLIC_HOME_CONTENT_TOP_FOOTER_BOTTOM_V259_START */
/*
 * Common public-page vertical layout.
 *
 * Important:
 * - MAIN itself must NOT grow to fill the viewport.
 *   If a CSS Grid MAIN grows, its grid rows can stretch and page data
 *   moves toward the middle of the screen.
 * - Keep MAIN content-sized at the top.
 * - Use margin-bottom:auto on MAIN only as the remaining-space spacer.
 * - When content exceeds the viewport, the auto margin becomes zero and
 *   the document scrolls normally.
 */
html {
	height: auto;
	min-height: 100%;
	overflow-y: auto;
}

body {
	height: auto;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
}

body > #main-content.homepage-runtime-layout {
	flex: 0 0 auto;
	width: 100%;
	min-height: 0;
	margin-bottom: auto;
	align-content: start;
	overflow: visible;
}

body > .site-header,
body > .site-footer {
	flex: 0 0 auto;
}
/* LCB_PUBLIC_HOME_CONTENT_TOP_FOOTER_BOTTOM_V259_END */

/* LCB_HOMEPAGE_LINE_DECORATION_V262_260908_CSS_START */
.homepage-runtime-decoration--line {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 0 12px;
}
.homepage-line-decoration__line {
	display: block;
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* LCB_HOMEPAGE_LINE_DECORATION_V262_260908_CSS_END */

