:root {
	--oabl-ink: #17172b;
	--oabl-indigo: #1f1e63;
	--oabl-indigo-2: #33318f;
	--oabl-lilac: #eeedff;
	--oabl-border: #e2e3ec;
	--oabl-muted: #6c6d7c;
	--oabl-bg: #f5f6fa;
	--oabl-white: #fff;
	--oabl-green: #16785a;
	--oabl-red: #be3b48;
	--oabl-shadow: 0 18px 55px rgba(25, 26, 57, .09);
}

* {
	box-sizing: border-box;
}

body.oabl-reservation-page {
	margin: 0;
	background: var(--oabl-bg);
	color: var(--oabl-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
	line-height: 1.7;
}

.oabl-reservation-page a {
	color: inherit;
}

.oabl-app {
	min-height: 100vh;
}

.oabl-header {
	align-items: center;
	background: var(--oabl-white);
	border-bottom: 1px solid var(--oabl-border);
	display: flex;
	height: 78px;
	justify-content: space-between;
	padding: 0 42px;
	position: relative;
	z-index: 5;
}

.oabl-brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	text-decoration: none;
}

.oabl-brand-mark {
	align-items: center;
	background: var(--oabl-indigo);
	border-radius: 13px;
	color: #fff;
	display: inline-flex;
	font-family: Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	height: 46px;
	justify-content: center;
	letter-spacing: -.06em;
	width: 46px;
}

.oabl-brand strong,
.oabl-brand small {
	display: block;
	line-height: 1.25;
}

.oabl-brand strong {
	font-size: 16px;
	letter-spacing: .04em;
}

.oabl-brand small {
	color: var(--oabl-muted);
	font-size: 11px;
	letter-spacing: .14em;
	margin-top: 3px;
}

.oabl-header-user {
	align-items: center;
	display: flex;
	font-size: 13px;
	gap: 22px;
}

.oabl-header-user a {
	color: var(--oabl-muted);
}

.oabl-login-shell {
	display: grid;
	grid-template-columns: minmax(420px, .92fr) 1.08fr;
	min-height: calc(100vh - 78px);
}

.oabl-auth-shell {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 78px);
	padding: 50px 20px;
}

.oabl-auth-card {
	background: var(--oabl-white);
	border-radius: 24px;
	box-shadow: var(--oabl-shadow);
	margin: auto;
	max-width: 520px;
	padding: 54px;
	text-align: center;
	width: calc(100% - 60px);
}

.oabl-login-shell > .oabl-auth-card {
	box-shadow: none;
	max-width: 480px;
}

.oabl-register-card {
	max-width: 630px;
}

.oabl-auth-card h1 {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(29px, 4vw, 39px);
	line-height: 1.35;
	margin: 3px 0 14px;
}

.oabl-auth-card > p:not(.oabl-eyebrow) {
	color: var(--oabl-muted);
	font-size: 14px;
	margin: 0 auto 30px;
	max-width: 430px;
}

.oabl-mail-icon {
	align-items: center;
	background: var(--oabl-lilac);
	border-radius: 50%;
	color: var(--oabl-indigo);
	display: inline-flex;
	font-size: 24px;
	height: 58px;
	justify-content: center;
	margin-bottom: 18px;
	width: 58px;
}

.oabl-eyebrow {
	color: var(--oabl-indigo-2);
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .24em;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.oabl-form {
	display: grid;
	gap: 10px;
	margin: 0 auto;
	max-width: 430px;
	text-align: left;
}

.oabl-form label {
	font-size: 13px;
	font-weight: 700;
	margin-top: 8px;
}

.oabl-form input,
.oabl-form select {
	appearance: none;
	background: #fff;
	border: 1px solid #cfd1dd;
	border-radius: 10px;
	color: var(--oabl-ink);
	font: inherit;
	font-size: 16px;
	min-height: 52px;
	padding: 10px 14px;
	width: 100%;
}

.oabl-form input:focus,
.oabl-form select:focus {
	border-color: var(--oabl-indigo-2);
	box-shadow: 0 0 0 3px rgba(51, 49, 143, .13);
	outline: none;
}

.oabl-primary,
.oabl-secondary {
	align-items: center;
	border: 0;
	border-radius: 11px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	text-decoration: none;
}

.oabl-primary {
	background: var(--oabl-indigo);
	color: #fff !important;
	margin-top: 13px;
}

.oabl-primary:hover {
	background: var(--oabl-indigo-2);
}

.oabl-secondary {
	background: var(--oabl-lilac);
	color: var(--oabl-indigo) !important;
}

.oabl-button-link {
	width: fit-content;
}

.oabl-text-link {
	color: var(--oabl-indigo) !important;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	margin-top: 24px;
}

.oabl-fine {
	color: var(--oabl-muted);
	display: block;
	font-size: 11px;
	margin-top: 16px;
}

.oabl-consent {
	align-items: flex-start;
	display: flex;
	font-weight: 400 !important;
	gap: 8px;
}

.oabl-consent input {
	min-height: 18px;
	width: 18px;
}

.oabl-hp {
	height: 0;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

.oabl-login-side {
	align-content: center;
	background:
		radial-gradient(circle at 80% 12%, rgba(255,255,255,.13), transparent 27%),
		linear-gradient(145deg, #292776, #151446);
	color: #fff;
	display: grid;
	padding: 12% 13%;
	position: relative;
}

.oabl-login-side::after {
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 50%;
	content: "";
	height: 370px;
	position: absolute;
	right: -95px;
	top: -70px;
	width: 370px;
}

.oabl-login-side .oabl-eyebrow {
	color: #b9b8e9;
}

.oabl-login-side h2 {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 500;
	line-height: 1.36;
	margin: 13px 0 25px;
}

.oabl-login-side > p:not(.oabl-eyebrow) {
	color: #cfcee9;
	max-width: 520px;
}

.oabl-login-side dl {
	display: grid;
	gap: 24px;
	margin: 56px 0 0;
	max-width: 520px;
}

.oabl-login-side dl div {
	align-items: center;
	border-top: 1px solid rgba(255,255,255,.18);
	display: grid;
	grid-template-columns: 46px 1fr;
	padding-top: 22px;
}

.oabl-login-side dt {
	color: #a7a6dd;
	font-family: Georgia, serif;
	font-size: 18px;
	grid-row: span 2;
}

.oabl-login-side dd {
	margin: 0;
}

.oabl-login-side dd strong,
.oabl-login-side dd span {
	display: block;
}

.oabl-login-side dd span {
	color: #bbbada;
	font-size: 12px;
	margin-top: 2px;
}

.oabl-member-layout {
	display: grid;
	grid-template-columns: 250px 1fr;
	min-height: calc(100vh - 78px);
}

.oabl-sidebar {
	background: var(--oabl-white);
	border-right: 1px solid var(--oabl-border);
	padding: 32px 18px;
}

.oabl-profile {
	align-items: center;
	display: flex;
	gap: 12px;
	padding: 0 10px 28px;
}

.oabl-profile > span {
	align-items: center;
	background: var(--oabl-indigo);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.oabl-profile strong,
.oabl-profile small {
	display: block;
}

.oabl-profile strong {
	font-size: 13px;
}

.oabl-profile small {
	color: var(--oabl-muted);
	font-size: 11px;
}

.oabl-sidebar nav {
	display: grid;
	gap: 5px;
}

.oabl-sidebar nav a {
	align-items: center;
	border-radius: 9px;
	color: #585a69;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 12px;
	padding: 12px 14px;
	text-decoration: none;
}

.oabl-sidebar nav a.is-active {
	background: var(--oabl-lilac);
	color: var(--oabl-indigo);
}

.oabl-sidebar nav a span {
	font-size: 18px;
	width: 20px;
}

.oabl-sidebar-help {
	background: var(--oabl-bg);
	border-radius: 12px;
	display: grid;
	margin-top: 38px;
	padding: 18px;
}

.oabl-sidebar-help small,
.oabl-sidebar-help strong,
.oabl-sidebar-help a {
	display: block;
}

.oabl-sidebar-help small {
	color: var(--oabl-muted);
	font-size: 10px;
}

.oabl-sidebar-help strong {
	font-size: 11px;
	margin: 3px 0 8px;
}

.oabl-sidebar-help a {
	color: var(--oabl-indigo);
	font-size: 15px;
	font-weight: 700;
}

.oabl-main {
	margin: 0 auto;
	max-width: 1200px;
	padding: 52px clamp(24px, 5vw, 72px) 80px;
	width: 100%;
}

.oabl-page-heading {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.oabl-page-heading h1 {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 500;
	line-height: 1.3;
	margin: 2px 0 5px;
}

.oabl-page-heading > div > p:not(.oabl-eyebrow) {
	color: var(--oabl-muted);
	font-size: 13px;
	margin: 0;
}

.oabl-overview {
	display: grid;
	gap: 18px;
	grid-template-columns: 1.15fr .9fr;
}

.oabl-overview article,
.oabl-panel,
.oabl-period {
	background: var(--oabl-white);
	border: 1px solid var(--oabl-border);
	border-radius: 16px;
}

.oabl-quota-card,
.oabl-next-card {
	min-height: 245px;
	padding: 28px;
}

.oabl-quota-card > div:first-child {
	align-items: end;
	display: flex;
	justify-content: space-between;
}

.oabl-quota-card span,
.oabl-next-card > span {
	color: var(--oabl-muted);
	font-size: 12px;
	font-weight: 700;
}

.oabl-quota-card strong {
	color: var(--oabl-indigo);
	font-family: Georgia, serif;
	font-size: 68px;
	line-height: 1;
}

.oabl-quota-card strong small {
	font-family: inherit;
	font-size: 21px;
	margin-left: 5px;
}

.oabl-quota-card > b {
	background: var(--oabl-lilac);
	border-radius: 30px;
	color: var(--oabl-indigo);
	display: inline-block;
	font-size: 11px;
	margin-top: 13px;
	padding: 5px 12px;
}

.oabl-progress {
	background: #ececf2;
	border-radius: 10px;
	height: 6px;
	margin-top: 28px;
	overflow: hidden;
}

.oabl-progress i {
	background: var(--oabl-indigo);
	display: block;
	height: 100%;
}

.oabl-quota-card p {
	color: var(--oabl-muted);
	font-size: 11px;
	margin: 9px 0 0;
}

.oabl-next-card {
	display: flex;
	flex-direction: column;
}

.oabl-next-card > strong {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 25px;
	margin-top: 24px;
}

.oabl-next-card > b {
	color: var(--oabl-indigo);
	font-family: Georgia, serif;
	font-size: 40px;
}

.oabl-next-card > div {
	align-items: center;
	border-top: 1px solid var(--oabl-border);
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
}

.oabl-next-card a,
.oabl-next-card button {
	background: none;
	border: 0;
	color: var(--oabl-indigo);
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
}

.oabl-next-card form {
	margin: 0;
}

.oabl-no-booking > strong {
	color: var(--oabl-muted);
	margin-bottom: 25px;
}

.oabl-no-booking > a {
	margin-top: auto;
	text-decoration: none;
}

.oabl-deadline-card {
	align-items: center;
	display: flex;
	gap: 14px;
	grid-column: span 2;
	min-height: 90px;
	padding: 18px 24px;
}

.oabl-deadline-card i {
	align-items: center;
	background: #fff0f1;
	border-radius: 50%;
	color: var(--oabl-red);
	display: flex;
	font-style: normal;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.oabl-deadline-card span,
.oabl-deadline-card strong {
	display: inline-block;
	font-size: 12px;
	margin-right: 14px;
}

.oabl-deadline-card p {
	color: var(--oabl-muted);
	display: inline;
	font-size: 11px;
}

.oabl-quick {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
	padding: 28px;
}

.oabl-quick h2 {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 25px;
	margin: 1px 0 0;
}

.oabl-period {
	align-items: center;
	display: flex;
	font-size: 12px;
	gap: 10px;
	margin-bottom: 18px;
	padding: 13px 18px;
	width: fit-content;
}

.oabl-period span {
	color: var(--oabl-muted);
}

.oabl-booking-grid {
	display: grid;
	gap: 10px;
}

.oabl-day {
	background: #fff;
	border: 1px solid var(--oabl-border);
	border-radius: 13px;
	overflow: hidden;
}

.oabl-day-toggle {
	align-items: center;
	background: #fff;
	border: 0;
	color: var(--oabl-ink);
	cursor: pointer;
	display: grid;
	font: inherit;
	grid-template-columns: 1fr auto 32px;
	padding: 18px 22px;
	text-align: left;
	width: 100%;
}

.oabl-day-toggle span {
	font-weight: 700;
}

.oabl-day-toggle b {
	background: var(--oabl-lilac);
	border-radius: 20px;
	color: var(--oabl-indigo);
	font-size: 10px;
	padding: 4px 9px;
}

.oabl-day-toggle i {
	font-size: 19px;
	font-style: normal;
	text-align: right;
	transition: transform .2s ease;
}

.oabl-day.is-open .oabl-day-toggle i {
	transform: rotate(45deg);
}

.oabl-slot-list {
	border-top: 1px solid var(--oabl-border);
	display: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 18px;
}

.oabl-day.is-open .oabl-slot-list {
	display: grid;
}

.oabl-slot-list form {
	margin: 0;
}

.oabl-slot {
	align-items: center;
	background: #fff;
	border: 1px solid #d6d8e3;
	border-radius: 10px;
	cursor: pointer;
	display: grid;
	grid-template-columns: auto 1fr auto;
	min-height: 64px;
	padding: 10px 13px;
	text-align: left;
	width: 100%;
}

.oabl-slot:hover:not(:disabled) {
	border-color: var(--oabl-indigo);
	box-shadow: 0 6px 20px rgba(31,30,99,.08);
}

.oabl-slot > strong {
	font-size: 16px;
	margin-right: 10px;
}

.oabl-slot span {
	color: var(--oabl-green);
	font-size: 11px;
	font-weight: 700;
}

.oabl-slot span b {
	font-size: 16px;
	margin-right: 4px;
}

.oabl-slot small {
	color: var(--oabl-muted);
	font-size: 9px;
}

.oabl-slot.is-unavailable {
	background: #f5f5f7;
	color: #9697a1;
	cursor: not-allowed;
}

.oabl-slot.is-unavailable span {
	color: #777986;
}

.oabl-history {
	overflow: hidden;
}

.oabl-history-row {
	align-items: center;
	border-bottom: 1px solid var(--oabl-border);
	display: grid;
	gap: 16px;
	grid-template-columns: 34px 1fr auto;
	padding: 19px 22px;
}

.oabl-history-row:last-child {
	border-bottom: 0;
}

.oabl-history-row > span {
	align-items: center;
	background: var(--oabl-lilac);
	border-radius: 50%;
	color: var(--oabl-indigo);
	display: flex;
	height: 34px;
	justify-content: center;
}

.oabl-history-row strong,
.oabl-history-row small {
	display: block;
}

.oabl-history-row small {
	color: var(--oabl-muted);
	font-size: 11px;
}

.oabl-history-row > b {
	border-radius: 20px;
	font-size: 10px;
	padding: 5px 10px;
}

.oabl-history-row > b.is-booked {
	background: #e7f6f0;
	color: var(--oabl-green);
}

.oabl-history-row > b.is-attended {
	background: var(--oabl-lilac);
	color: var(--oabl-indigo);
}

.oabl-history-row > b.is-cancelled,
.oabl-history-row > b.is-late_cancel {
	background: #f1f1f4;
	color: #747582;
}

.oabl-empty {
	color: var(--oabl-muted);
	margin: 0;
	padding: 30px;
	text-align: center;
}

.oabl-guide {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}

.oabl-guide article {
	padding: 26px;
}

.oabl-guide article > span {
	color: #c2c1dd;
	font-family: Georgia, serif;
	font-size: 26px;
}

.oabl-guide h2 {
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 22px;
	margin: 12px 0 8px;
}

.oabl-guide p {
	color: var(--oabl-muted);
	font-size: 12px;
	margin: 0;
}

.oabl-contact {
	align-items: center;
	background: var(--oabl-indigo);
	border-radius: 16px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	padding: 24px 28px;
}

.oabl-contact span,
.oabl-contact strong {
	display: block;
}

.oabl-contact span {
	color: #bdbce5;
	font-size: 11px;
}

.oabl-contact strong {
	font-family: Georgia, serif;
	font-size: 25px;
}

.oabl-contact a {
	background: #fff;
	border-radius: 9px;
	color: var(--oabl-indigo);
	font-size: 12px;
	font-weight: 700;
	padding: 10px 16px;
	text-decoration: none;
}

.oabl-notice {
	border-radius: 10px;
	box-shadow: 0 7px 22px rgba(25, 26, 57, .1);
	font-size: 13px;
	left: 50%;
	max-width: min(620px, calc(100% - 32px));
	padding: 13px 20px;
	position: fixed;
	top: 92px;
	transform: translateX(-50%);
	width: max-content;
	z-index: 30;
}

.oabl-notice.is-success {
	background: #e5f5ef;
	border: 1px solid #aedcca;
	color: #0d6248;
}

.oabl-notice.is-error {
	background: #fff0f1;
	border: 1px solid #f0bdc2;
	color: #9c2834;
}

.oabl-mobile-nav {
	display: none;
}

@media (max-width: 900px) {
	.oabl-login-shell {
		grid-template-columns: 1fr;
	}

	.oabl-login-side {
		display: none;
	}

	.oabl-member-layout {
		grid-template-columns: 1fr;
	}

	.oabl-sidebar {
		display: none;
	}

	.oabl-main {
		padding-bottom: 100px;
	}

	.oabl-mobile-nav {
		background: #fff;
		border-top: 1px solid var(--oabl-border);
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		left: 0;
		padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
		position: fixed;
		right: 0;
		z-index: 20;
	}

	.oabl-mobile-nav a {
		align-items: center;
		color: #8a8b96;
		display: flex;
		flex-direction: column;
		text-decoration: none;
	}

	.oabl-mobile-nav a.is-active {
		color: var(--oabl-indigo);
	}

	.oabl-mobile-nav span {
		font-size: 19px;
		line-height: 1.2;
	}

	.oabl-mobile-nav small {
		font-size: 9px;
	}
}

@media (max-width: 640px) {
	.oabl-header {
		height: 64px;
		padding: 0 16px;
	}

	.oabl-brand-mark {
		border-radius: 9px;
		font-size: 15px;
		height: 36px;
		width: 36px;
	}

	.oabl-brand strong {
		font-size: 13px;
	}

	.oabl-brand small {
		font-size: 8px;
	}

	.oabl-header-user span {
		display: none;
	}

	.oabl-header-user {
		gap: 0;
	}

	.oabl-header-user a {
		font-size: 11px;
	}

	.oabl-auth-shell,
	.oabl-login-shell {
		min-height: calc(100vh - 64px);
	}

	.oabl-auth-card {
		border-radius: 18px;
		box-shadow: none;
		padding: 32px 22px;
		width: calc(100% - 28px);
	}

	.oabl-login-shell > .oabl-auth-card {
		padding-top: 50px;
	}

	.oabl-auth-card h1 {
		font-size: 28px;
	}

	.oabl-main {
		padding: 34px 15px 98px;
	}

	.oabl-page-heading {
		margin-bottom: 22px;
	}

	.oabl-page-heading h1 {
		font-size: 27px;
	}

	.oabl-overview {
		grid-template-columns: 1fr;
	}

	.oabl-deadline-card {
		align-items: flex-start;
		grid-column: auto;
	}

	.oabl-deadline-card span,
	.oabl-deadline-card strong,
	.oabl-deadline-card p {
		display: block;
	}

	.oabl-quick {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.oabl-quick .oabl-primary {
		width: 100%;
	}

	.oabl-slot-list {
		grid-template-columns: 1fr 1fr;
		padding: 12px;
	}

	.oabl-slot {
		grid-template-columns: 1fr auto;
	}

	.oabl-slot > strong {
		grid-column: span 2;
	}

	.oabl-guide {
		grid-template-columns: 1fr;
	}

	.oabl-contact {
		align-items: stretch;
		flex-direction: column;
		gap: 15px;
	}

	.oabl-contact a {
		text-align: center;
	}

	.oabl-history-row {
		grid-template-columns: 30px 1fr;
		padding: 16px;
	}

	.oabl-history-row > b {
		grid-column: 2;
		justify-self: start;
	}
}
