/* Generated by tools/build-renewal-chrome.sh — do not edit by hand */
/* Edit css/src/ and run: tools/build-all-css.sh */
/* === renewal/02-tokens.css === */
:root {
	--header-height: 0px;
	--gradient01: linear-gradient(90deg, #005fb9 0%, #00cade 100%);
	--kr-blue: #009adb;
	--kr-blue-deep: #005fb9;
	--kr-cyan: #00cade;
	--kr-sky: #39bcdd;
	--kr-pink: #ff6c75;
	--kr-orange: #ffab7f;
	--kr-green: #00cb42;
	--kr-text: #212121;
	--kr-muted: #5c6670;
	--kr-bg: #fff;
	--kr-bg-soft: #f2fafe;
	--kr-line: rgba(0, 154, 219, .16);
	--kr-shadow: 0 2px 15px rgba(57, 188, 222, .25);
	--kr-shadow-lg: 0 22px 70px rgba(0, 95, 185, .14);
	--kr-radius-sm: 5px;
	--kr-radius-md: 10px;
	--kr-radius-lg: 15px;
	--kr-radius-xl: 24px;
	--kr-figma-blue: #009adb;
	--kr-figma-blue-deep: #005fb9;
	--kr-figma-cyan: #00cade;
	--kr-figma-sky: #39bcdd;
	--kr-figma-pink: #ff6c75;
	--kr-figma-orange: #ffab7f;
	--kr-figma-green: #00cb42;
	--kr-figma-text: #212121;
	--kr-footer-accent: #4ab8d8;
	--kr-footer-border: #d6edf5;
	--kr-footer-border-sp: #e4eff4;
	--kr-footer-text: #333;
	--kr-footer-muted: #666;
	--kr-footer-copy: #999;
	--kr-footer-bar-bg: #eaf5f9;
	--kr-footer-rsv-bg: #e4f3fa;
	--kr-footer-arrow-bg: #ddf0f8;
	--kr-footer-social: #3a3a3a;
	--kr-footer-max: 1500px;
	--kr-footer-bar-max: 1180px;
	--kr-footer-transition: .15s;
	--kr-footer-transition-slow: .2s;

}

/* === renewal/04-chrome-fonts.css === */
.kr-home-renewal,
.kr-top-renewal,
.kr-top-header,
.kr-top-drawer,
.kr-footer-top {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
}

/* === renewal/08-chrome-body-lock.css === */
body.is-popup-open {
	overflow: hidden;
}

body.is-drawer-open {
	overflow: hidden;
}

/* === renewal/10-chrome-header-shell.css === */
.kr-top-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 20;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	border-top: 0;
	border-bottom: 0;
	padding: 15px 20px;
	box-sizing: border-box;
}

.kr-top-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	/* width: min(100%, 1600px); */
	margin: 0 auto;
}

.kr-top-header__logo img {
	display: block;
	width: 282px;
	height: 66px;
	object-fit: contain;
}

.kr-top-header__actions {
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 10px;
}

.kr-top-header__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 56px;
	padding: 15px clamp(16px, 1.8vw, 30px);
	border-radius: 5px;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	text-decoration: none !important;
	box-shadow: none;
	cursor: pointer;
}

.kr-top-header__btn--member,
.kr-top-header__btn--contact,
.kr-top-header__btn--reserve {
	color: #fff !important;
}

.kr-top-header__btn--member {
	background: linear-gradient(90deg, var(--kr-blue-deep), var(--kr-cyan));
}

.kr-top-header__btn--contact {
	background: var(--kr-sky);
}

.kr-top-header__btn--reserve {
	background: linear-gradient(180deg, var(--kr-pink), var(--kr-orange));
}

.kr-top-header__btn--menu {
	min-width: 129px;
	background: #fff;
	border: 1px solid var(--kr-blue);
	color: var(--kr-text);
}

.kr-top-header__btn-label {
	display: inline-block;
	line-height: 1.25;
	font-weight: 500;
	white-space: nowrap;
}

.kr-top-header__btn-icon {
	display: inline-block;
	position: relative;
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
}

.kr-top-header__btn-icon--member::before {
	content: "";
	position: absolute;
	inset: 2px;
	border: 2px solid #fff;
	border-radius: 2px;
	transform: rotate(45deg);
}

.kr-top-header__btn-icon--member::after {
	content: "";
	position: absolute;
	inset: 7px;
	background: #fff;
	border-radius: 50%;
}

.kr-top-header__btn-icon--contact {
	border: 2px solid #fff;
	border-radius: 3px;
}

.kr-top-header__btn-icon--contact::after {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	top: 4px;
	height: 7px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) skewX(10deg);
}

.kr-top-header__btn-icon--reserve {
	width: 18px;
	height: 18px;
	border: 2px solid #fff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.kr-top-header__btn-icon--reserve::before,
.kr-top-header__btn-icon--reserve::after {
	content: "";
	position: absolute;
	top: -4px;
	width: 2px;
	height: 6px;
	background: #fff;
	border-radius: 2px;
}

.kr-top-header__btn-icon--reserve::before {
	left: 4px;
}

.kr-top-header__btn-icon--reserve::after {
	right: 4px;
}

.kr-top-header__menu-dots {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.kr-top-header__menu-dots i {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #42bddf;
}

.kr-top-drawer {
	position: fixed;
	inset: 0;
	z-index: 80;
	visibility: hidden;
	pointer-events: none;
}

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

.kr-top-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(18, 18, 18, .1);
	opacity: 0;
	transition: opacity .42s ease;
}

.kr-top-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(677px, calc(100vw - 64px));
	height: 100dvh;
	min-height: 100vh;
	background: #fff;
	box-shadow: -18px 0 48px rgba(0, 0, 0, .06);
	opacity: 0;
	transform: translate3d(54px, 0, 0);
	transition: opacity .48s cubic-bezier(.22, 1, .36, 1), transform .58s cubic-bezier(.22, 1, .36, 1);
}

.kr-top-drawer__scroll {
	height: 100%;
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.kr-top-drawer__content {
	min-height: 100%;
	padding: 52px 50px 68px 30px;
	opacity: 0;
	transform: translate3d(22px, 0, 0);
	transition: opacity .52s ease .17s, transform .64s cubic-bezier(.22, 1, .36, 1) .17s;
}

.kr-top-drawer__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin: 0 0 30px 0;
}

.kr-top-drawer__logo {
	display: block;
	width: min(248px, calc(100% - 76px));
}

.kr-top-drawer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.kr-top-drawer__close {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	margin: 12px -2px 0 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.kr-top-drawer__close span::before,
.kr-top-drawer__close span::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 7px;
	width: 32px;
	height: 2px;
	border-radius: 999px;
	background: var(--kr-footer-accent);
}

.kr-top-drawer__close span::before {
	transform: rotate(45deg);
}

.kr-top-drawer__close span::after {
	transform: rotate(-45deg);
}

.kr-top-drawer__shop-info{
	padding: 0;
}

.kr-top-drawer__nav {
	margin-bottom: 0;
}

.kr-top-drawer__nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kr-top-drawer__nav-list li {
	border-bottom: 1px solid var(--kr-footer-border-sp);
}

.kr-top-drawer__nav-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 48px;
	padding: 10px 16px;
	color: var(--kr-footer-text);
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	transition: color var(--kr-footer-transition);
}

.kr-top-drawer__nav-list a:hover {
	color: var(--kr-footer-accent);
}

.kr-top-drawer__nav-list i {
	position: relative;
	display: block;
	flex: 0 0 9px;
	width: 9px;
	height: 14px;
}

.kr-top-drawer__nav-list i::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 1.6px solid var(--kr-footer-accent);
	border-right: 1.6px solid var(--kr-footer-accent);
	transform: rotate(45deg);
}

.kr-top-drawer__store {
	padding: 0 0 0 0;
}

.kr-top-drawer__store-hd,
.kr-top-drawer__region-hd {
	width: 100%;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	text-align: left;
}

.kr-top-drawer__store-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 68px;
	padding: 20px 16px 18px;
	border-bottom: 1px solid var(--kr-footer-border-sp);
}

.kr-top-drawer__store-title {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--kr-footer-accent);
	font-size: 18px;
	font-weight: 700;
}

.kr-top-drawer__store-title svg {
	flex: 0 0 auto;
}

.kr-top-drawer__store-caret,
.kr-top-drawer__region-hd i {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 15px;
	height: 10px;
	transition: transform .28s ease;
}

.kr-top-drawer__store-caret::before,
.kr-top-drawer__region-hd i::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 2px;
	width: 9px;
	height: 9px;
	border-top: 1.6px solid var(--kr-footer-accent);
	border-left: 1.6px solid var(--kr-footer-accent);
	transform: rotate(45deg);
}

.kr-top-drawer__store-hd[aria-expanded="false"] .kr-top-drawer__store-caret {
	transform: rotate(180deg);
}

.kr-top-drawer__store-body {
	overflow: hidden;
	max-height: 0;
	transition: max-height .42s ease;
}

.kr-top-drawer__store-body.is-open {
	max-height: 2200px;
}

.kr-top-drawer__regions {
	padding: 0;
}

.kr-top-drawer__region {
	padding: 13px 14px 12px;
	border-bottom: 1px solid var(--kr-footer-border-sp);
}

.kr-top-drawer__region-hd {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 0 0 8px;
	color: var(--kr-footer-accent);
	font-size: 16px;
	font-weight: 700;
}

.kr-top-drawer__region-hd i {
	width: 10px;
	height: 8px;
}

.kr-top-drawer__region-hd i::before {
	top: 1px;
	left: 1px;
	width: 6px;
	height: 6px;
	border-width: 1.4px;
	transform: rotate(-135deg);
}

.kr-top-drawer__region-hd[aria-expanded="false"] i {
	transform: rotate(-90deg);
}

.kr-top-drawer__region-body {
	overflow: hidden;
	max-height: 210px;
	transition: max-height .3s ease;
}

.kr-top-drawer__region.is-closed .kr-top-drawer__region-body {
	max-height: 0;
}

.kr-top-drawer__region-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kr-top-drawer__region-body li {
	margin: 0 0 6px;
}

.kr-top-drawer__region-body a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding-right: 24px;
	color: var(--kr-footer-text);
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--kr-footer-transition);
}

.kr-top-drawer__region-body a::before {
	content: "›";
	color: var(--kr-footer-accent);
	font-size: 15px;
	line-height: 1;
}

.kr-top-drawer__region-body a:hover {
	color: var(--kr-footer-accent);
}

.kr-top-drawer__extra-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kr-top-drawer__extra-list li {
	border-bottom: 1px solid var(--kr-footer-border-sp);
}

.kr-top-drawer__extra-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 48px;
	padding: 10px 16px;
	color: var(--kr-footer-text);
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	transition: color var(--kr-footer-transition);
}

.kr-top-drawer__extra-list a:hover {
	color: var(--kr-footer-accent);
}

.kr-top-drawer__extra-list i {
	position: relative;
	display: block;
	flex: 0 0 9px;
	width: 9px;
	height: 14px;
}

.kr-top-drawer__extra-list i::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 1.6px solid var(--kr-footer-accent);
	border-right: 1.6px solid var(--kr-footer-accent);
	transform: rotate(45deg);
}

.kr-top-drawer__info {
	padding: 0 16px;
}

.kr-top-drawer__info-row {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	min-height: 52px;
	padding: 14px 0 12px;
	border-bottom: 1px solid var(--kr-footer-border-sp);
}

.kr-top-drawer__info-row--tel {
	align-items: center;
}

.kr-top-drawer__info-row > svg,
.kr-top-drawer__reserve > svg {
	display: block;
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	margin-top: 1px;
}

.kr-top-drawer__info-detail {
	display: flex;
	align-items: flex-start;
	flex: 1 1 auto;
	gap: 20px;
	min-width: 0;
}

.kr-top-drawer__info-label {
	flex: 0 0 96px;
	padding-top: 2px;
	color: var(--kr-footer-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .08em;
}

.kr-top-drawer__info-value {
	color: var(--kr-footer-text);
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: .05em;
}

.kr-top-drawer__tel {
	color: var(--kr-footer-text);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .12em;
}

.kr-top-drawer__reserve {
	display: flex;
	align-items: center;
	gap: 21px;
	min-height: 78px;
	margin: 16px 0 18px;
	padding: 17px 24px;
	border-radius: 8px;
	background: linear-gradient(90deg, #e5f5fb 0%, #eaf6fb 100%);
}

.kr-top-drawer__reserve p {
	margin: 0;
	color: var(--kr-footer-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .07em;
}

.kr-top-drawer__reserve a {
	color: var(--kr-footer-accent);
	font-weight: 700;
	text-decoration: none;
}

.kr-top-drawer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	padding: 0 0 18px;
}

.kr-top-drawer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
}

.kr-top-drawer__social svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--kr-footer-text);
}

.kr-top-drawer__bar {
	padding: 0 16px 4px;
	text-align: center;
}

.kr-top-drawer__bar ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 15px 0 11px;
	border-top: 1px solid var(--kr-footer-border-sp);
	list-style: none;
}

.kr-top-drawer__bar li {
	display: flex;
	align-items: center;
}

.kr-top-drawer__bar li + li::before {
	content: "";
	display: block;
	width: 1px;
	height: 20px;
	margin: 0 30px;
	background: var(--kr-footer-accent);
}

.kr-top-drawer__bar a {
	color: var(--kr-footer-muted);
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: .08em;
	text-decoration: none;
}

.kr-top-drawer__bar p {
	margin: 0;
	color: var(--kr-footer-muted);
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: .08em;
}

.kr-top-drawer.is-open,
.kr-top-drawer.is-closing {
	visibility: visible;
	pointer-events: auto;
}

.kr-top-drawer.is-open .kr-top-drawer__backdrop,
.kr-top-drawer.is-closing .kr-top-drawer__backdrop {
	opacity: 1;
}

.kr-top-drawer.is-open .kr-top-drawer__panel {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.kr-top-drawer.is-open .kr-top-drawer__content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.kr-top-drawer.is-closing .kr-top-drawer__backdrop {
	opacity: 0;
}

.kr-top-drawer.is-closing .kr-top-drawer__panel {
	opacity: 0;
	transform: translate3d(0, 0, 0);
	transition-duration: .32s;
}

.kr-top-drawer.is-closing .kr-top-drawer__content {
	opacity: 0;
	transform: translate3d(0, 0, 0);
	transition: opacity .24s ease;
}

/* --- Responsive: header --- */

@media (max-width: 1240px) {
	.kr-top-header {
		height: auto;
	}

	.kr-top-header__logo img {
		width: clamp(180px, 19vw, 220px);
		height: auto;
	}

	.kr-top-header__btn {
		min-width: 0;
		min-height: 50px;
		padding: 12px 14px;
		font-size: 13px;
	}

	.kr-top-header__btn--member {
		min-width: 0;
	}

	.kr-top-header__btn--menu {
		min-width: 96px;
	}
}

@media (max-width: 960px) and (min-width: 768px) {
	.kr-top-header__inner {
		flex-wrap: nowrap;
		gap: 12px;
		width: 100%;
	}

	.kr-top-header__logo img {
		width: 170px;
		height: auto;
	}

	.kr-top-header__actions {
		justify-content: flex-end;
		gap: 6px;
	}

	.kr-top-header__btn {
		min-width: 46px;
		min-height: 46px;
		padding: 10px 12px;
		font-size: 12px;
	}

	.kr-top-header__btn--member .kr-top-header__btn-label,
	.kr-top-header__btn--contact .kr-top-header__btn-label {
		position: absolute;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		width: 1px;
		height: 1px;
		white-space: nowrap;
	}

	.kr-top-header__btn--menu {
		min-width: 80px;
	}

	.kr-top-drawer__panel {
		width: min(100%, 560px);
	}

	.kr-top-drawer__content {
		padding: 28px 28px 48px;
	}

	.kr-top-drawer__head {
		margin-bottom: 28px;
	}
}

@media (max-width: 480px) {
	.kr-top-header__inner {
		justify-content: center;
		width: min(100% - 24px, 620px);
		min-height: 72px;
		padding: 10px 0 12px;
	}

	.kr-top-header__actions {
		justify-content: center;
	}

	.kr-top-header__btn {
		flex: 1 1 calc(50% - 6px);
		min-width: 0;
		padding: 9px 10px;
	}

	.kr-top-header__btn--menu {
		flex-basis: 100%;
	}

	.kr-top-drawer__panel {
		width: calc(100vw - 28px);
	}

	.kr-top-drawer__content {
		padding: 24px 18px 40px;
	}

	.kr-top-drawer__logo {
		width: min(220px, calc(100% - 58px));
	}

	.kr-top-drawer__close {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
		margin-right: -4px;
	}

	.kr-top-drawer__close span::before,
	.kr-top-drawer__close span::after {
		top: 18px;
		left: 8px;
		width: 26px;
	}

	.kr-top-drawer__nav {
		margin: 8px 10px 0;
	}

	.kr-top-drawer__nav-list a {
		min-height: 44px;
		padding: 10px 12px;
		font-size: 14px;
		line-height: 1.5;
	}

	.kr-top-drawer__store-hd {
		padding: 17px 0 15px;
	}

	.kr-top-drawer__nav-list a,
	.kr-top-drawer__extra-list a {
		font-size: 14px;
	}

	.kr-top-drawer__info {
		padding: 0 12px;
	}

	.kr-top-drawer__info-row {
		gap: 10px;
	}

	.kr-top-drawer__info-detail {
		gap: 10px;
	}

	.kr-top-drawer__info-label {
		flex-basis: 72px;
		font-size: 12px;
	}

	.kr-top-drawer__info-value,
	.kr-top-drawer__reserve p {
		font-size: 12px;
	}

	.kr-top-drawer__tel {
		font-size: 17px;
	}

	.kr-top-drawer__reserve {
		gap: 12px;
		padding: 13px 14px;
	}

	.kr-top-drawer__social {
		gap: 25px;
	}

	.kr-top-drawer__social a {
		width: 24px;
		height: 24px;
	}

	.kr-top-drawer__bar {
		padding-right: 12px;
		padding-left: 12px;
	}

	.kr-top-drawer__bar li + li::before {
		margin: 0 14px;
	}

	.kr-top-drawer__bar a {
		font-size: 10px;
	}

	.kr-top-drawer__bar p {
		font-size: 9.5px;
	}
}

@media (max-width: 767px) {
	body {
		padding-bottom: calc(58px + env(safe-area-inset-bottom));
	}

	.kr-top-header {
		padding: 9px 14px;
	}

	.kr-top-header__inner {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 54px;
		padding: 0;
	}

	.kr-top-header__logo {
		flex: 0 1 176px;
		min-width: 0;
	}

	.kr-top-header__logo img {
		width: min(176px, 100%);
		height: auto;
	}

	.kr-top-header__actions {
		flex: 0 0 auto;
		justify-content: flex-end;
		width: auto;
		gap: 0;
	}

	.kr-top-header__btn {
		gap: 5px;
		min-height: 0;
		padding: 8px 5px calc(8px + env(safe-area-inset-bottom));
		border-radius: 0;
		font-size: 11px;
		white-space: nowrap;
	}

	.kr-top-header__btn--member,
	.kr-top-header__btn--contact,
	.kr-top-header__btn--reserve {
		position: fixed;
		bottom: 0;
		z-index: 70;
		display: flex;
		flex-direction: column;
		width: 25vw;
		height: calc(58px + env(safe-area-inset-bottom));
		min-width: 0;
		border-top: 1px solid rgba(255, 255, 255, .46);
		box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
	}

	.kr-top-header__btn--member {
		left: 0;
	}

	.kr-top-header__btn--contact {
		left: 25vw;
	}

	.kr-top-header__btn--reserve {
		left: 50vw;
		width: 50vw;
		flex-direction: row;
		gap: 7px;
		font-size: 14px;
	}

	.kr-top-header__btn--menu {
		flex: 0 0 auto;
		min-width: 76px;
		min-height: 40px;
		padding: 10px 10px;
		border-radius: 5px;
		gap: 7px;
		font-size: 12px;
	}

	.kr-top-header__btn-icon {
		flex-basis: 16px;
		width: 16px;
		height: 16px;
	}

	.kr-top-header__btn--contact .kr-top-header__btn-icon {
		width: 17px;
		height: auto;
	}

	.kr-top-header__btn--reserve .kr-top-header__btn-icon {
		flex-basis: 17px;
		width: 17px;
		height: 17px;
	}

	.kr-top-header__btn-icon--member::before {
		inset: 2px;
		border-width: 1.5px;
	}

	.kr-top-header__btn-icon--member::after {
		inset: 6px;
	}

	.kr-top-header__menu-dots {
		gap: 3px;
	}

	.kr-top-header__menu-dots i {
		width: 3px;
		height: 3px;
	}

	.kr-top-drawer__panel {
		width: 100vw;
		max-width: none;
		box-shadow: none;
	}

	.kr-top-drawer__content {
		padding-bottom: calc(40px + env(safe-area-inset-bottom));
	}

	.kr-top-drawer__shop-info li {
		font-size: 12px;
		line-height: 1.55;
	}

	.kr-top-drawer__action {
		min-height: 48px;
		font-size: 13.5px;
	}
}

/* --- Store drawer: Figma node 1:891 --- */

.kr-top-drawer__panel {
	width: min(390px, 100vw);
	background: #fff;
	box-shadow: -10px 0 30px rgba(24, 61, 88, .08);
}

.kr-top-drawer__content {
	display: flex;
	flex-direction: column;
	min-height: max(693px, 100%);
	padding: 0;
	color: #15283d;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.kr-top-drawer__head {
	align-items: center;
	min-height: 72px;
	margin: 0;
	padding: 14px 20px 10px;
}

.kr-top-drawer__logo {
	display: flex;
	align-items: flex-end;
	gap: 7px;
	width: auto;
	max-width: calc(100% - 52px);
	color: #080808;
	text-decoration: none;
}

.kr-top-drawer__logo img {
	width: 150px;
	height: auto;
	margin-left: -10px;
}

.kr-top-drawer__logo span {
	flex: 0 0 auto;
	padding-bottom: 3px;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.15;
	white-space: nowrap;
}

.kr-top-drawer__close {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 7px 20px rgba(44, 85, 112, .12);
}

.kr-top-drawer__close span::before,
.kr-top-drawer__close span::after {
	top: 16px;
	left: 9px;
	width: 17px;
	height: 1.5px;
	background: #078fd4;
}

.kr-top-drawer__shop-info {
	margin: 0 16px;
}

.kr-top-drawer__shop-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kr-top-drawer__shop-info li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 34px;
	padding: 6px 8px;
	border-bottom: 1px solid #d8eaf3;
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.kr-top-drawer__shop-info li:last-child {
	border-bottom: 0;
}

.kr-top-drawer__shop-info svg {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	overflow: visible;
	fill: none;
	stroke: #078fd4;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kr-top-drawer__shop-info a {
	color: inherit;
	text-decoration: none;
}

.kr-top-drawer__nav {
	margin: 8px 12px 0;
	border-top: 1px solid #d8eaf3;
}

.kr-top-drawer__nav-list li {
	border-bottom-color: #d8eaf3;
}

.kr-top-drawer__nav-list a {
	min-height: 42px;
	padding: 9px 14px;
	color: #15283d;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.kr-top-drawer__nav-list i {
	flex-basis: 7px;
	width: 7px;
	height: 11px;
}

.kr-top-drawer__nav-list i::before {
	top: 2px;
	width: 7px;
	height: 7px;
	border-width: 1.5px;
	border-color: #15283d;
}

.kr-top-drawer__actions {
	display: grid;
	gap: 10px;
	margin: 18px 16px 0;
}

.kr-top-drawer__action {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 14px;
	align-items: center;
	min-height: 50px;
	padding: 10px 18px;
	border: 1px solid #078fd4;
	border-radius: 28px;
	color: #078fd4;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.kr-top-drawer__action--reserve {
	border-color: transparent;
	background: linear-gradient(90deg, #087fd3 0%, #18c5d0 100%);
	color: #fff;
	box-shadow: 0 6px 13px rgba(12, 142, 204, .2);
}

.kr-top-drawer__action svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kr-top-drawer__action i {
	position: relative;
	display: block;
	width: 8px;
	height: 12px;
	justify-self: end;
}

.kr-top-drawer__action i::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 7px;
	height: 7px;
	border-top: 1.7px solid currentColor;
	border-right: 1.7px solid currentColor;
	transform: rotate(45deg);
}

.kr-top-drawer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 18px 0 16px;
}

.kr-top-drawer__social-link {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	text-decoration: none;
}

.kr-top-drawer__social-link--top{
	border: 1px solid #d8eaf3;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 5px 12px rgba(44, 85, 112, .08);

}

.kr-top-drawer__social-link svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kr-top-drawer__social-link img {
	display: block;
	width: 23px;
	height: 23px;
	margin: 0;
	object-fit: contain;
}

.kr-top-drawer__social-link--top svg {
	stroke: #078fd4;
}

.kr-top-drawer__bar {
	margin-top: auto;
	padding: 14px 12px 18px;
	background: #f1fbff;
	text-align: center;
}

.kr-top-drawer__bar ul {
	flex-wrap: wrap;
	gap: 8px 0;
	padding: 0 0 12px;
	border-top: 0;
}

.kr-top-drawer__bar li + li::before {
	height: 13px;
	margin: 0 13px;
	background: #c6e1ed;
}

.kr-top-drawer__bar a {
	color: #15283d;
	font-size: 10.5px;
	line-height: 1.5;
	letter-spacing: 0;
}

.kr-top-drawer__bar p {
	color: #8091a6;
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: 0;
}

@media (max-width: 389px) {
	.kr-top-drawer__head {
		padding-right: 15px;
		padding-left: 15px;
	}

	.kr-top-drawer__logo img {
		width: 165px;
		margin-left: 0;
	}

	.kr-top-drawer__logo span {
		font-size: 18px;
	}

	.kr-top-drawer__shop-info li {
		font-size: 11.5px;
	}

	.kr-top-drawer__nav-list a {
		font-size: 13.5px;
	}

	.kr-top-drawer__action {
		padding-right: 15px;
		padding-left: 15px;
	}
}

/* === renewal/11-chrome-footer.css === */
/* ============================================================
   Footer (.kr-footer-top)
   ============================================================ */

.kr-footer-top {
	padding: 0 !important;
	background: #fff !important;
	color: #343c47;
}

.kr-footer-top::before,
.kr-footer-top::after {
	display: none;
}

.kr-footer-top a {
	color: inherit;
	text-decoration: none;
}

.kr-footer-top__main {
	background: #fff;
}

.kr-footer-top__shop,
.kr-footer-top__access {
	margin: 0;
	padding: 0;
}

.kr-footer-top__grid {
	display: grid;
	grid-template-columns: minmax(280px, .92fr) 1px minmax(280px, 1fr) 1px minmax(320px, 1.18fr);
	gap: 0 32px;
	width: min(calc(100% - 64px), 1360px);
	margin: 0 auto;
	padding: 56px 0 40px;
}

.kr-footer-top__divider {
	width: 1px;
	height: 100%;
	min-height: 360px;
	background: #d1e4f2;
}

.kr-footer-top__logo {
	display: block;
	width: 290px;
	height: 70px;
	object-fit: contain;
	object-position: left center;
}

.kr-footer-top__contact {
	display: grid;
	gap: 12px;
	margin: 29px 0 0;
	padding: 0;
	list-style: none;
}

.kr-footer-top__contact li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: start;
	gap: 8px;
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.kr-footer-top__contact-icon {
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	color: #0b8cd1;
	line-height: 1;
}

.kr-footer-top__contact-icon svg,
.kr-footer-top__button-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kr-footer-top__actions {
	display: grid;
	gap: 11px;
	margin-top: 34px;
}

.kr-footer-top__button {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr) 15px;
	align-items: center;
	gap: 22px;
	width: min(100%, 320px);
	min-height: 52px;
	padding: 11px 18px 11px 22px;
	border: 1px solid #0b8cd1;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.kr-footer-top__button--reserve {
	border: 0;
	background: linear-gradient(90deg, #0a80cc 0%, #33c7db 100%);
	color: #fff !important;
}

.kr-footer-top__button--contact {
	background: #fff;
	color: #0b8cd1 !important;
}

.kr-footer-top__button-icon,
.kr-footer-top__button-arrow {
	display: grid;
	place-items: center;
	font-size: 18px;
	line-height: 1;
}

.kr-footer-top__button-icon svg {
	width: 22px;
	height: 22px;
}

.kr-footer-top__button-arrow {
	font-size: 22px;
}

.kr-footer-top__quick h2,
.kr-footer-top__access h2 {
	/* min-height: 55px; */
	margin: 0;
	padding: 10px 0 19px;
	border-bottom: 1px solid #d1e4f2;
	color: #1d293b;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.kr-footer-top__quick {
	min-width: 0;
}

.kr-footer-top__quick h2 {
	width: 100%;
	padding-left: 12px;
}

.kr-footer-top__quick ul {
	width: 100%;
	margin: 11px 0 0;
	padding: 0;
	list-style: none;
}

.kr-footer-top__quick li {
	border-bottom: 1px solid #d1e4f2;
}

.kr-footer-top__quick a {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 4px 10px 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.kr-footer-top__quick a span:last-child {
	color: #0b8cd1;
	font-size: 21px;
	line-height: 1;
}

.kr-footer-top__access {
	min-width: 0;
}

.kr-footer-top__map {
	width: 100%;
	aspect-ratio: 478 / 303;
	margin-top: 20px;
	overflow: hidden;
}

.kr-footer-top__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.kr-footer-top__legal {
	background: #f4fcff;
}

.kr-footer-top__legal-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"links social"
		"copyright social";
	align-items: center;
	gap: 8px 24px;
	width: min(calc(100% - 64px), 1360px);
	margin: 0 auto;
	padding: 22px 0 20px;
}

.kr-footer-top__legal-links {
	grid-area: links;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kr-footer-top__legal-links li {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
}

.kr-footer-top__legal-links li + li {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #d1e4f2;
}

.kr-footer-top__copyright {
	grid-area: copyright;
	margin: 0;
	color: #7a8999;
	font-size: 12px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.kr-footer-top__social {
	grid-area: social;
	display: flex;
	gap: 10px;
	margin: 0;
}

.kr-footer-top__social a {
	display: grid;
	place-items: center;
	width: 47px;
	height: 47px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(48, 112, 153, 0.08);
	color: #0b8cd1;
	line-height: 1;
}

.kr-footer-top__social svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kr-footer-top__social img {
	display: block;
	width: 25px;
	height: 25px;
	margin: 0;
	object-fit: contain;
}

@media (max-width: 1180px) and (min-width: 901px) {
	.kr-footer-top__grid {
		grid-template-columns: minmax(280px, .9fr) 1px minmax(300px, 1.1fr);
		grid-template-areas:
			"shop divider quick"
			"access access access";
		gap: 0 28px;
		width: min(calc(100% - 48px), 980px);
	}

	.kr-footer-top__shop {
		grid-area: shop;
	}

	.kr-footer-top__grid > .kr-footer-top__divider:first-of-type {
		grid-area: divider;
	}

	.kr-footer-top__quick {
		grid-area: quick;
	}

	.kr-footer-top__grid > .kr-footer-top__divider:last-of-type {
		display: none;
	}

	.kr-footer-top__access {
		grid-area: access;
		margin-top: 48px;
	}

	.kr-footer-top__map {
		max-height: 380px;
	}
}

@media (max-width: 900px) {
	.kr-footer-top__main {
		height: auto;
	}

	.kr-footer-top__grid {
		grid-template-columns: 1fr;
		display: grid;
		width: min(calc(100% - 28px), 620px);
		padding: 48px 0;
	}

	.kr-footer-top__divider {
		display: none;
	}

	.kr-footer-top__shop,
	.kr-footer-top__quick,
	.kr-footer-top__access {
		width: 100%;
	}

	.kr-footer-top__logo {
		width: min(290px, 100%);
	}

	.kr-footer-top__contact {
		margin-top: 28px;
	}

	.kr-footer-top__contact li {
		font-size: 13px;
		line-height: 1.7;
	}

	.kr-footer-top__button {
		width: 100%;
	}

	.kr-footer-top__quick,
	.kr-footer-top__access {
		margin-top: 52px;
		padding-left: 0;
		padding-top: 0;
	}

	.kr-footer-top__quick h2,
	.kr-footer-top__access h2 {
		height: auto;
		padding: 0 0 14px;
		font-size: 19px;
	}

	.kr-footer-top__quick h2 {
		width: 100%;
		padding-left: 0;
	}

	.kr-footer-top__quick ul {
		width: 100%;
		margin: 8px 0 0;
	}

	.kr-footer-top__quick a {
		min-height: 50px;
		padding: 11px 2px;
		font-size: 14px;
	}

	.kr-footer-top__map {
		width: 100%;
		height: auto;
		aspect-ratio: 478 / 303;
		margin-top: 16px;
	}

	.kr-footer-top__legal {
		height: auto;
	}

	.kr-footer-top__legal-inner {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"social"
			"links"
			"copyright";
		flex-direction: column;
		width: min(calc(100% - 28px), 620px);
		justify-items: center;
		padding: 24px 0 22px;
	}

	.kr-footer-top__legal-links {
		flex-wrap: wrap;
		justify-content: center;
		margin: 0;
	}

	.kr-footer-top__legal-links li {
		font-size: 11px;
	}

	.kr-footer-top__legal-links li + li {
		margin-left: 9px;
		padding-left: 9px;
	}

	.kr-footer-top__social {
		margin: 0 0 20px;
	}

	.kr-footer-top__copyright {
		margin-top: 16px;
		font-size: 10.5px;
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.kr-footer-top__grid {
		width: min(calc(100% - 32px), 620px);
		padding: 40px 0 36px;
	}

	.kr-footer-top__logo {
		width: min(250px, 100%);
		height: auto;
	}

	.kr-footer-top__contact {
		gap: 10px;
		margin-top: 24px;
	}

	.kr-footer-top__contact li {
		grid-template-columns: 19px minmax(0, 1fr);
		gap: 9px;
		font-size: 12.5px;
		line-height: 1.65;
	}

	.kr-footer-top__actions {
		margin-top: 28px;
	}

	.kr-footer-top__button {
		grid-template-columns: 22px minmax(0, 1fr) 14px;
		gap: 12px;
		min-height: 52px;
		padding: 10px 16px;
		font-size: 13.5px;
	}

	.kr-footer-top__quick,
	.kr-footer-top__access {
		margin-top: 44px;
	}

	.kr-footer-top__quick h2,
	.kr-footer-top__access h2 {
		font-size: 18px;
		line-height: 1.4;
	}

	.kr-footer-top__legal-links {
		gap: 8px 0;
	}

	.kr-footer-top__legal-links li {
		font-size: 10.5px;
	}

	.kr-footer-top__legal-links li + li {
		margin-left: 8px;
		padding-left: 8px;
	}
}

/* === src/subpage-layout.css === */
/* 下層ページレイアウト（renewal-chrome.css に結合）
   編集後: tools/build-renewal-chrome.sh を実行 */

/* --- Subpage layout (fixed header offset) --- */
body.kiratt-renewal-chrome--subpage {
	padding-top: var(--header-height);
}

/*
 * The parent theme uses broad element selectors such as `header`, `footer`,
 * `footer .inner` and `header a`. Keep the renewal chrome isolated from them
 * without changing the legacy page content below it.
 */
body.kiratt-renewal-chrome--subpage .kr-top-header,
body.kiratt-renewal-chrome--subpage .kr-footer-top {
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	font-family: var(--kr-font-ja, "Noto Sans JP", sans-serif);
	text-align: left;
}

body.kiratt-renewal-chrome--subpage .kr-top-header {
	position: fixed;
	border-top: 0;
	border-bottom: 0;
	line-height: 1.5;
}

body.kiratt-renewal-chrome--subpage .kr-footer-top {
	position: relative;
	inset: auto;
	padding: 0;
	background: #fff;
	line-height: 1.5;
	overflow: visible;
}

body.kiratt-renewal-chrome--subpage .kr-top-header *,
body.kiratt-renewal-chrome--subpage .kr-top-header *::before,
body.kiratt-renewal-chrome--subpage .kr-top-header *::after,
body.kiratt-renewal-chrome--subpage .kr-top-drawer *,
body.kiratt-renewal-chrome--subpage .kr-top-drawer *::before,
body.kiratt-renewal-chrome--subpage .kr-top-drawer *::after,
body.kiratt-renewal-chrome--subpage .kr-footer-top *,
body.kiratt-renewal-chrome--subpage .kr-footer-top *::before,
body.kiratt-renewal-chrome--subpage .kr-footer-top *::after {
	box-sizing: border-box;
}



body.kiratt-renewal-chrome--subpage .kr-top-header a,
body.kiratt-renewal-chrome--subpage .kr-top-header a:link,
body.kiratt-renewal-chrome--subpage .kr-top-header a:visited,
body.kiratt-renewal-chrome--subpage .kr-top-drawer a,
body.kiratt-renewal-chrome--subpage .kr-top-drawer a:link,
body.kiratt-renewal-chrome--subpage .kr-top-drawer a:visited,
body.kiratt-renewal-chrome--subpage .kr-footer-top a,
body.kiratt-renewal-chrome--subpage .kr-footer-top a:link,
body.kiratt-renewal-chrome--subpage .kr-footer-top a:visited {
	text-decoration: none;
}

body.kiratt-renewal-chrome--subpage .kr-top-header img,
body.kiratt-renewal-chrome--subpage .kr-top-drawer img,
body.kiratt-renewal-chrome--subpage .kr-footer-top img {
	max-width: 100%;
	margin: 0;
	border: 0;
	vertical-align: bottom;
}

body.kiratt-renewal-chrome--subpage .kr-top-header button,
body.kiratt-renewal-chrome--subpage .kr-top-drawer button,
body.kiratt-renewal-chrome--subpage .kr-footer-top button {
	margin: 0;
	font: inherit;
	appearance: none;
}

body.kiratt-renewal-chrome--subpage .kr-footer-top h2{
	background-color: transparent;
}
body.kiratt-renewal-chrome--subpage .kr-footer-top h2::before{
	display: none;
}

body.kiratt-renewal-chrome--subpage .kr-footer-top h2,
body.kiratt-renewal-chrome--subpage .kr-footer-top p,
body.kiratt-renewal-chrome--subpage .kr-footer-top dl,
body.kiratt-renewal-chrome--subpage .kr-footer-top dt,
body.kiratt-renewal-chrome--subpage .kr-footer-top dd {
	margin: 0;
	padding: 0;
	border: 0;
}

/* body.kiratt-renewal-chrome--subpage .kr-footer-top section,
body.kiratt-renewal-chrome--subpage .kr-footer-top nav {
	margin: 0;
	padding: 0;
} */

body.kiratt-renewal-chrome--subpage #page-default,
body.kiratt-renewal-chrome--subpage #single,
body.kiratt-renewal-chrome--subpage main {
	min-height: 0;
	padding-top: 0;
}

/* --- Subpage helpers --- */
body.kiratt-renewal-chrome--subpage #page-default .mainv,
body.kiratt-renewal-chrome--subpage #archive .mainv,
body.kiratt-renewal-chrome--subpage #single .mainv,
body.kiratt-renewal-chrome--subpage .page-content .mainv {
	background-image: none !important;
	background-color: var(--kr-bg-soft, #f2fafe);
	border-bottom: 1px solid var(--kr-line, rgba(0, 154, 219, 0.16));
}

#sidemenu .sm-fb-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px 18px;
	border: 1px solid rgba(18, 155, 185, 0.18);
	border-radius: 12px;
	background: linear-gradient(180deg, #fff 0%, #f2fafe 100%);
	color: #162528;
	text-align: center;
	text-decoration: none !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#sidemenu .sm-fb-card:hover {
	transform: translateY(-2px);
	border-color: rgba(18, 155, 185, 0.35);
	box-shadow: 0 8px 24px rgba(18, 155, 185, 0.12);
	color: #162528;
}

#sidemenu .sm-fb-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #1877f2;
	color: #fff;
}

#sidemenu .sm-fb-card__label {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: #162528;
}

#sidemenu .sm-fb-card__note {
	font-size: 12px;
	line-height: 1.7;
	color: #426068;
}

#sidemenu .sm-fb-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 10px 16px;
	border-radius: 50px;
	background: #1877f2;
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

#sidemenu .sm-fb-card:hover .sm-fb-card__cta {
	background: #166fe5;
}

/* --- Subpage layout (content + sidebar) --- */
body.kiratt-renewal-chrome--subpage #page-default .flex.inner.page-under,
body.kiratt-renewal-chrome--subpage #single .flex.inner.page-under,
body.kiratt-renewal-chrome--subpage #archive .flex.inner.page-under {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 8rem;
}

body.kiratt-renewal-chrome--subpage #page-default .page-under .content,
body.kiratt-renewal-chrome--subpage #single .page-under .content,
body.kiratt-renewal-chrome--subpage #archive .page-under .content {
	width: 70%;
}

body.kiratt-renewal-chrome--subpage #sidemenu {
	width: 25%;
}

@media (max-width: 750px) {
	body.kiratt-renewal-chrome--subpage #page-default .flex.inner.page-under,
	body.kiratt-renewal-chrome--subpage #single .flex.inner.page-under,
	body.kiratt-renewal-chrome--subpage #archive .flex.inner.page-under {
		margin-top: 5rem;
	}

	body.kiratt-renewal-chrome--subpage #page-default .page-under .content,
	body.kiratt-renewal-chrome--subpage #single .page-under .content,
	body.kiratt-renewal-chrome--subpage #archive .page-under .content {
		width: 100%;
	}

	body.kiratt-renewal-chrome--subpage #sidemenu {
		width: 100%;
		margin-top: 5rem;
	}
}

