:root {
	--eb-ink: #1f211d;
	--eb-muted: #666b5f;
	--eb-line: #e6e1d7;
	--eb-cream: #faf8f2;
	--eb-green: #6f9c63;
	--eb-deep-green: #2f5d50;
	--eb-brown: #8a6f46;
	--eb-brown-dark: #4d341a;
	--eb-blue: #456f86;
	--eb-shadow: 0 16px 36px rgba(31, 33, 29, 0.12);
	--eb-radius: 8px;
}

.eb-together {
	background: #fff;
	color: var(--eb-ink);
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

.site-header {
	display: none;
}

.site-footer {
	display: none;
}

.eb-primary-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid rgba(230, 225, 215, 0.72);
	background: rgba(250, 248, 242, 0.98);
	box-shadow: none;
}

.eb-primary-header__inner {
	display: flex;
	width: min(1120px, calc(100% - 40px));
	min-height: 58px;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.eb-primary-header__brand {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	color: var(--eb-deep-green);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
	text-decoration: none;
}

.eb-primary-header__brand:hover,
.eb-primary-header__brand:focus {
	color: var(--eb-brown-dark);
	text-decoration: none;
}

.eb-primary-header__nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 24px;
	list-style: none;
}

.eb-primary-header__nav a {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	color: var(--eb-deep-green);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.eb-primary-header__nav a:hover,
.eb-primary-header__nav a:focus {
	color: var(--eb-brown-dark);
	text-decoration: none;
}

.eb-primary-header__nav .is-current a,
.eb-primary-header__nav a[aria-current="page"],
.footer-nav .current-menu-item > a,
.footer-nav .current_page_item > a,
.footer-nav a[aria-current="page"] {
	color: var(--eb-deep-green);
	text-decoration: underline;
	text-decoration-color: rgba(47, 93, 80, 0.42);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.32em;
}

.eb-primary-header__toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(230, 225, 215, 0.9);
	border-radius: var(--eb-radius);
	background: rgba(255, 255, 255, 0.54);
	color: var(--eb-deep-green);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.eb-primary-header__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.eb-primary-header__toggle:focus-visible {
	outline: 2px solid rgba(47, 93, 80, 0.42);
	outline-offset: 3px;
}

.eb-primary-header.is-open .eb-primary-header__toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.eb-primary-header.is-open .eb-primary-header__toggle span:nth-child(2) {
	opacity: 0;
}

.eb-primary-header.is-open .eb-primary-header__toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

#vk-mobile-nav-menu-btn {
	display: none;
	border: 1px solid rgba(230, 225, 215, 0.82);
	border-radius: var(--eb-radius);
	background-color: var(--eb-cream);
	color: var(--eb-deep-green);
}

#vk-mobile-nav-menu-btn:focus-visible {
	outline: 2px solid rgba(47, 93, 80, 0.45);
	outline-offset: 3px;
}

#vk-mobile-nav-menu-btn[aria-expanded="true"] {
	border-color: rgba(47, 93, 80, 0.35);
	background-color: var(--eb-deep-green);
	color: #fff;
}

.eb-container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.eb-section {
	padding: 88px 0;
}

.eb-section--soft {
	background: var(--eb-cream);
}

.eb-section__heading {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

.eb-section__heading--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: none;
	text-align: left;
	align-items: end;
}

.eb-section__heading h2,
.eb-page-hero h1,
.eb-class-hero h1 {
	margin: 0;
	color: var(--eb-ink);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0;
}

.eb-section__heading h2 {
	font-size: 34px;
}

.eb-section__heading p,
.eb-page-hero p,
.eb-class-hero p,
.eb-class-card__excerpt {
	color: var(--eb-muted);
	line-height: 1.9;
}

.eb-section__eyebrow {
	margin: 0 0 10px;
	color: var(--eb-brown);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.eb-button {
	display: inline-flex;
	min-height: 50px;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--eb-brown);
	border-radius: var(--eb-radius);
	background: var(--eb-brown);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.eb-button:hover,
.eb-button:focus {
	border-color: var(--eb-brown-dark);
	background: var(--eb-brown-dark);
	color: #fff;
	text-decoration: none;
}

.eb-button--light {
	border-color: rgba(255, 255, 255, 0.82);
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.eb-button--ghost {
	border-color: var(--eb-line);
	background: #fff;
	color: var(--eb-brown-dark);
}

.eb-button--ghost:hover,
.eb-button--ghost:focus {
	border-color: var(--eb-brown);
	background: var(--eb-cream);
	color: var(--eb-brown-dark);
}

.eb-hero {
	position: relative;
	display: grid;
	min-height: 680px;
	overflow: hidden;
	align-items: end;
	background: var(--eb-green);
}

.eb-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26, 32, 21, 0.72), rgba(26, 32, 21, 0.24) 58%, rgba(26, 32, 21, 0.1));
}

.eb-hero__content {
	position: relative;
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 150px 0 96px;
	color: #fff;
}

.eb-hero__label {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 700;
}

.eb-hero__title {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
}

.eb-hero__title-nowrap {
	white-space: nowrap;
}

.eb-hero__lead {
	max-width: 560px;
	margin: 18px 0 0;
	font-size: 18px;
	line-height: 2;
}

.eb-hero__actions {
	display: flex;
	gap: 14px;
	margin-top: 42px;
	flex-wrap: wrap;
}

.eb-type-grid,
.eb-class-grid {
	display: grid;
	gap: 28px;
}

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

.eb-type-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	box-shadow: 0 10px 26px rgba(31, 33, 29, 0.06);
	color: var(--eb-ink);
	text-decoration: none;
}

.eb-type-card:hover,
.eb-type-card:focus {
	color: var(--eb-ink);
	text-decoration: none;
	box-shadow: var(--eb-shadow);
}

.eb-type-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--eb-cream);
}

.eb-type-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease;
	object-fit: cover;
}

.eb-type-card:hover .eb-type-card__media img,
.eb-type-card:focus .eb-type-card__media img {
	transform: scale(1.035);
}

.eb-type-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(209, 125, 91, 0.18) 0%, rgba(255, 255, 255, 0) 44%),
		linear-gradient(155deg, rgba(94, 137, 128, 0.2) 0%, rgba(255, 255, 255, 0) 48%),
		var(--eb-cream);
}

.eb-type-card__body {
	display: grid;
	padding: 24px 26px 26px;
	align-content: start;
	flex: 1;
}

.eb-type-card__label {
	color: var(--eb-brown);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.eb-type-card strong {
	margin-top: 8px;
	font-size: 24px;
}

.eb-type-card small {
	margin-top: 10px;
	color: var(--eb-muted);
	font-size: 14px;
}

.eb-class-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eb-class-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(31, 33, 29, 0.08);
}

.eb-class-card__image-link {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--eb-cream);
}

.eb-class-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.eb-class-card:hover .eb-class-card__image {
	transform: scale(1.04);
}

.eb-class-card__image--placeholder,
.eb-class-hero__image--placeholder {
	background:
		linear-gradient(135deg, rgba(111, 156, 99, 0.22), rgba(138, 111, 70, 0.18)),
		var(--eb-cream);
}

.eb-class-card__body {
	display: flex;
	height: 100%;
	padding: 24px;
	flex-direction: column;
}

.eb-class-card__meta-row {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.eb-status {
	display: inline-flex;
	min-height: 38px;
	padding: 9px 18px;
	align-items: center;
	border-radius: 999px;
	background: var(--eb-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.15;
}

.eb-status--few-left {
	background: #b9783d;
}

.eb-status--full,
.eb-status--closed {
	background: #777;
}

.eb-class-card__type {
	color: var(--eb-muted);
	font-size: 12px;
	font-weight: 700;
}

.eb-class-card__title {
	margin: 18px 0 0;
	font-size: 22px;
	line-height: 1.35;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.eb-class-card__title a {
	color: var(--eb-ink);
	text-decoration: none;
}

.eb-class-card__excerpt {
	margin: 12px 0 0;
	font-size: 14px;
}

.eb-class-card__details,
.eb-class-summary dl {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
}

.eb-class-card__details div,
.eb-class-summary dl div {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 12px;
}

.eb-class-card__details dt,
.eb-class-summary dt {
	color: var(--eb-brown);
	font-size: 12px;
	font-weight: 700;
}

.eb-class-card__details dd,
.eb-class-summary dd {
	margin: 0;
	color: var(--eb-ink);
	font-size: 14px;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.eb-class-card__cta {
	width: 100%;
	margin-top: auto;
}

.eb-empty-state {
	padding: 32px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-cream);
	color: var(--eb-muted);
	text-align: center;
}

.eb-breadcrumb {
	margin: 0 0 18px;
	color: var(--eb-muted);
	font-size: 13px;
	line-height: 1.7;
}

.eb-breadcrumb ol {
	display: flex;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 4px 8px;
	list-style: none;
}

.eb-breadcrumb li {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 8px;
}

.eb-breadcrumb li:not(:last-child)::after {
	color: currentColor;
	content: ">";
	opacity: 0.55;
}

.eb-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.eb-breadcrumb a:hover,
.eb-breadcrumb a:focus {
	color: var(--eb-brown);
	text-decoration: underline;
}

.eb-breadcrumb [aria-current="page"] {
	color: currentColor;
}

.eb-site-footer {
	border-top: 1px solid var(--eb-line);
	background:
		linear-gradient(135deg, rgba(94, 137, 128, 0.12), rgba(255, 255, 255, 0) 42%),
		var(--eb-cream);
	color: var(--eb-muted);
}

.eb-site-footer__inner {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 58px 0 30px;
}

.eb-site-footer__brand {
	max-width: 620px;
	margin-bottom: 36px;
}

.eb-site-footer__name {
	margin: 0 0 10px;
	color: var(--eb-ink);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

.eb-site-footer__brand p:not(.eb-site-footer__name) {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
}

.eb-site-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.eb-site-footer__group h2 {
	margin: 0 0 14px;
	color: var(--eb-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
}

.eb-site-footer__group ul {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 9px;
	list-style: none;
}

.eb-site-footer__group a {
	color: var(--eb-muted);
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
}

.eb-site-footer__group a:hover,
.eb-site-footer__group a:focus {
	color: var(--eb-brown);
	text-decoration: underline;
}

.eb-site-footer__group .is-current a,
.eb-site-footer__group a[aria-current="page"] {
	color: var(--eb-deep-green);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(47, 93, 80, 0.42);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.28em;
}

.eb-site-footer__copyright {
	margin: 42px 0 0;
	padding-top: 20px;
	border-top: 1px solid rgba(94, 137, 128, 0.2);
	font-size: 12px;
	line-height: 1.6;
}

.eb-class-hero .eb-breadcrumb {
	color: rgba(255, 255, 255, 0.78);
}

.eb-class-hero .eb-breadcrumb a:hover,
.eb-class-hero .eb-breadcrumb a:focus {
	color: #fff;
}

.eb-page-hero {
	padding: 118px 0 70px;
	background: var(--eb-cream);
}

.eb-page-hero h1 {
	font-size: 42px;
}

.eb-page-hero p {
	max-width: 720px;
	margin: 18px 0 0;
}

.eb-archive .eb-page-hero {
	--eb-archive-hero-start: #f0f5ec;
	--eb-archive-hero-end: #fffdf8;
	--eb-archive-hero-accent: rgba(111, 156, 99, 0.16);
	--eb-archive-hero-text: #2f5d50;
	--eb-archive-hero-muted: rgba(47, 93, 80, 0.72);
	position: relative;
	overflow: hidden;
	padding: 86px 0 62px;
	background:
		linear-gradient(135deg, var(--eb-archive-hero-accent), rgba(255, 255, 255, 0) 46%),
		linear-gradient(180deg, var(--eb-archive-hero-start), var(--eb-archive-hero-end));
}

body.term-regular .eb-archive .eb-page-hero {
	--eb-archive-hero-start: #edf4e9;
	--eb-archive-hero-end: #fffdf8;
	--eb-archive-hero-accent: rgba(111, 156, 99, 0.18);
	--eb-archive-hero-text: #2f5d50;
	--eb-archive-hero-muted: rgba(47, 93, 80, 0.72);
}

body.term-one-off .eb-archive .eb-page-hero {
	--eb-archive-hero-start: #eaf5f4;
	--eb-archive-hero-end: #fffdf8;
	--eb-archive-hero-accent: rgba(69, 111, 134, 0.14);
	--eb-archive-hero-text: #335f67;
	--eb-archive-hero-muted: rgba(51, 95, 103, 0.72);
}

body.term-seasonal .eb-archive .eb-page-hero {
	--eb-archive-hero-start: #fff3de;
	--eb-archive-hero-end: #fffdf8;
	--eb-archive-hero-accent: rgba(184, 132, 68, 0.14);
	--eb-archive-hero-text: #7a5a2c;
	--eb-archive-hero-muted: rgba(122, 90, 44, 0.72);
}

.eb-archive .eb-page-hero::after {
	display: none;
}

.eb-archive .eb-page-hero .eb-container {
	position: relative;
	z-index: 1;
}

.eb-archive .eb-page-hero .eb-section__eyebrow {
	color: var(--eb-archive-hero-text);
}

.eb-archive .eb-page-hero .eb-breadcrumb {
	color: var(--eb-archive-hero-muted);
}

.eb-class-hero {
	position: relative;
	display: grid;
	min-height: clamp(460px, 56.25vw, 720px);
	grid-template-columns: minmax(0, 1fr);
	align-items: end;
	overflow: hidden;
	background: var(--eb-green);
}

.eb-class-hero__media,
.eb-class-hero__media::after {
	position: absolute;
	inset: 0;
}

.eb-class-hero__media::after {
	display: block;
	background: linear-gradient(90deg, rgba(31, 33, 29, 0.74), rgba(31, 33, 29, 0.28) 62%, rgba(31, 33, 29, 0.08));
	content: "";
}

.eb-class-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-class-hero__content {
	position: relative;
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 150px 0 78px;
	color: #fff;
}

.eb-class-hero h1 {
	max-width: 720px;
	margin-top: 18px;
	color: #fff;
	font-size: 44px;
	overflow-wrap: anywhere;
}

.eb-class-hero p {
	max-width: 640px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
}

.eb-class-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 56px;
	align-items: start;
}

.eb-class-content h2,
.eb-class-video-gallery h2,
.eb-class-summary h2 {
	margin: 0 0 20px;
	font-size: 26px;
	line-height: 1.35;
	letter-spacing: 0;
}

.eb-entry-content {
	font-size: 16px;
	line-height: 2;
}

.eb-entry-content > *:first-child {
	margin-top: 0;
}

.eb-class-session-plan {
	margin-top: 60px;
}

.eb-class-session-plan h2 {
	margin: 0 0 20px;
	font-size: 26px;
	line-height: 1.35;
	letter-spacing: 0;
}

.eb-class-session-plan__list {
	display: grid;
	gap: 16px;
}

.eb-class-session-plan__item {
	padding: 22px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	box-shadow: 0 10px 26px rgba(31, 33, 29, 0.06);
}

.eb-class-session-plan__head {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.eb-class-session-plan__day,
.eb-class-session-plan__type,
.eb-class-session-plan__final {
	display: inline-flex;
	min-height: 30px;
	padding: 6px 12px;
	align-items: center;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.eb-class-session-plan__day {
	background: var(--eb-cream);
	color: var(--eb-brown-dark);
}

.eb-class-session-plan__type {
	background: rgba(69, 111, 134, 0.12);
	color: var(--eb-blue);
	text-transform: capitalize;
}

.eb-class-session-plan__final {
	background: rgba(111, 156, 99, 0.16);
	color: var(--eb-green);
}

.eb-class-session-plan__item h3 {
	margin: 14px 0 0;
	color: var(--eb-ink);
	font-size: 20px;
	line-height: 1.45;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.eb-class-session-plan__item p {
	margin: 10px 0 0;
	color: var(--eb-muted);
	line-height: 1.85;
}

.eb-class-session-plan__meta {
	font-weight: 700;
	color: var(--eb-ink) !important;
}

.eb-class-session-plan__note {
	padding: 12px 14px;
	border-radius: var(--eb-radius);
	background: var(--eb-cream);
}

.eb-class-video-gallery {
	margin-top: 60px;
}

.eb-class-video-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.eb-class-video-gallery__item {
	min-width: 0;
}

.eb-class-video-gallery__item h3 {
	margin: 0 0 12px;
	color: var(--eb-ink);
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0;
}

.eb-video-frame {
	display: grid;
	min-height: 220px;
	overflow: hidden;
	align-items: center;
	justify-items: center;
	border-radius: var(--eb-radius);
	background: var(--eb-cream);
}

.eb-video-frame iframe,
.eb-video-frame video,
.eb-instagram-embed {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.eb-instagram-embed {
	display: grid;
	margin: 0 !important;
	align-items: center;
	justify-items: center;
	border: 0 !important;
	background: transparent !important;
}

.eb-video-frame--instagram iframe {
	aspect-ratio: 9 / 16;
	max-height: 720px;
}

.eb-video-frame--instagram .eb-instagram-embed {
	aspect-ratio: 9 / 16;
	max-height: 720px;
}

.eb-video-fallback-link {
	display: inline-flex;
	min-height: 48px;
	padding: 0 18px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--eb-brown);
	border-radius: var(--eb-radius);
	background: #fff;
	color: var(--eb-brown-dark);
	font-weight: 700;
	text-decoration: none;
}

.eb-video-fallback-link:hover,
.eb-video-fallback-link:focus {
	background: var(--eb-cream);
	color: var(--eb-brown-dark);
	text-decoration: none;
}

.eb-class-summary {
	position: sticky;
	top: 32px;
	padding: 28px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	box-shadow: var(--eb-shadow);
}

.eb-class-summary__button {
	width: 100%;
	margin-top: 26px;
}

.eb-class-summary__closed {
	margin: 24px 0 0;
	padding: 16px;
	border-radius: var(--eb-radius);
	background: var(--eb-cream);
	color: var(--eb-muted);
	line-height: 1.7;
}

.eb-class-rules {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto 96px;
	padding: 42px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	box-shadow: 0 14px 34px rgba(31, 33, 29, 0.08);
}

.eb-class-rules h2 {
	margin: 0 0 24px;
	color: var(--eb-ink);
	font-size: 28px;
	line-height: 1.35;
	letter-spacing: 0;
}

.eb-class-rules__list {
	display: grid;
	gap: 16px;
}

.eb-general-rules {
	width: 100%;
	margin: 34px 0 56px;
}

.eb-general-rules__empty {
	margin: 0;
	color: var(--eb-muted);
	font-size: 15px;
	line-height: 1.8;
}

.eb-class-rule {
	overflow: hidden;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-cream);
}

.eb-class-rule--open {
	padding: 24px;
	background: #fff;
}

.eb-class-rule h3,
.eb-class-rule summary {
	color: var(--eb-ink);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
}

.eb-class-rule h3 {
	margin: 0 0 14px;
}

.eb-class-rule summary {
	padding: 20px 24px;
	cursor: pointer;
}

.eb-class-rule summary::marker {
	color: var(--eb-brown);
}

.eb-class-rule__content {
	color: var(--eb-muted);
	font-size: 15px;
	line-height: 1.9;
}

.eb-class-rule__content > *:first-child {
	margin-top: 0;
}

.eb-class-rule__content > *:last-child {
	margin-bottom: 0;
}

.eb-class-rule__content h4 {
	margin: 24px 0 10px;
	color: var(--eb-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
}

.eb-class-rule__content table {
	width: 100%;
	border-collapse: collapse;
	overflow-wrap: anywhere;
}

.eb-class-rule__content th,
.eb-class-rule__content td {
	padding: 13px 14px;
	border: 1px solid var(--eb-line);
	text-align: left;
	vertical-align: top;
}

.eb-class-rule__content th {
	background: var(--eb-cream);
	color: var(--eb-ink);
	font-weight: 700;
}

.eb-class-rule__content td {
	background: #fff;
}

.eb-class-rule:not(.eb-class-rule--open) .eb-class-rule__content {
	padding: 0 24px 22px;
}

body.post-name-rules {
	background: var(--eb-cream);
	color: var(--eb-ink);
}

body.post-name-rules .page-header {
	position: relative;
	overflow: hidden;
	min-height: clamp(180px, 15vw, 220px);
	background:
		linear-gradient(90deg, rgba(24, 56, 49, 0.92), rgba(47, 93, 80, 0.78)),
		linear-gradient(145deg, rgba(250, 248, 242, 0.12), rgba(111, 156, 99, 0.1) 42%, rgba(31, 61, 51, 0.18) 74%),
		var(--eb-deep-green);
}

body.post-name-rules .page-header::after {
	position: absolute;
	inset: auto 0 0;
	height: 38%;
	background: linear-gradient(180deg, rgba(250, 248, 242, 0), rgba(250, 248, 242, 0.12));
	content: "";
	pointer-events: none;
}

body.post-name-rules .page-header-inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: clamp(180px, 15vw, 220px);
	padding-top: 26px;
	padding-bottom: 26px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

body.post-name-rules .page-header-inner::before {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.78);
	content: "GUIDE & POLICY";
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

body.post-name-rules .page-header-title {
	max-width: 920px;
	color: #fff;
	font-size: clamp(26px, 2.7vw, 32px);
	line-height: 1.34;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: normal;
}

body.post-name-rules .page-header-title::after {
	display: block;
	max-width: 620px;
	margin-top: 9px;
	color: rgba(255, 255, 255, 0.88);
	content: "お申し込み前にご確認いただきたい内容をまとめています。";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

body.post-name-rules #breadcrumb {
	border-bottom: 1px solid var(--eb-line);
	background: #fff;
	color: var(--eb-muted);
}

body.post-name-rules #breadcrumb a {
	color: var(--eb-deep-green);
	text-decoration: none;
}

body.post-name-rules #breadcrumb a:hover,
body.post-name-rules #breadcrumb a:focus {
	color: var(--eb-brown-dark);
	text-decoration: underline;
}

body.post-name-rules .site-body {
	background:
		linear-gradient(180deg, rgba(250, 248, 242, 0.9), rgba(255, 255, 255, 0.96) 280px),
		#fff;
}

body.post-name-rules .entry-body a {
	color: var(--eb-deep-green);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

body.post-name-rules .entry-body a:hover,
body.post-name-rules .entry-body a:focus {
	color: var(--eb-brown-dark);
}

body.post-name-rules .eb-general-rules {
	border-color: rgba(111, 156, 99, 0.26);
	background: #fff;
	box-shadow: 0 16px 38px rgba(47, 93, 80, 0.1);
}

body.post-name-rules .eb-class-rule {
	border-color: rgba(111, 156, 99, 0.24);
	background: var(--eb-cream);
}

body.post-name-rules .eb-class-rule--open {
	background:
		linear-gradient(180deg, rgba(250, 248, 242, 0.56), rgba(255, 255, 255, 0) 130px),
		#fff;
}

body.post-name-rules .eb-class-rule h3,
body.post-name-rules .eb-class-rule summary,
body.post-name-rules .eb-class-rule__content h4 {
	color: var(--eb-deep-green);
}

body.post-name-rules .eb-class-rule summary::marker {
	color: var(--eb-green);
}

body.post-name-rules .eb-class-rule__content th,
body.post-name-rules .eb-class-rule__content td {
	border-color: rgba(111, 156, 99, 0.24);
}

body.post-name-rules .eb-class-rule__content th {
	background: #eef5e9;
	color: var(--eb-deep-green);
}

body.post-name-rules .eb-class-rule__content td {
	background: #fffdf8;
}

body.post-name-rules .eb-class-rule__content tr:nth-child(even) td {
	background: #faf8f2;
}

body.post-name-rules #toc_container {
	border-color: rgba(111, 156, 99, 0.26);
	background: #fffdf8;
	color: var(--eb-muted);
}

body.post-name-rules #toc_container .toc_title,
body.post-name-rules #toc_container a {
	color: var(--eb-deep-green);
}

@media (max-width: 991px) {
	.eb-section {
		padding: 72px 0;
	}

	.eb-section__heading--split,
	.eb-class-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.eb-site-footer__links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-type-grid,
	.eb-class-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eb-class-summary {
		position: static;
	}

	.eb-class-hero {
		min-height: clamp(430px, 56.25vw, 576px);
	}

	.eb-class-video-gallery__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.eb-primary-header__inner {
		position: relative;
		width: min(100% - 28px, 1120px);
		min-height: 50px;
	}

	.eb-primary-header__brand {
		min-height: 50px;
		font-size: 16px;
	}

	.eb-primary-header__toggle {
		display: inline-flex;
	}

	.eb-primary-header__nav {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		left: 0;
		display: none;
		padding: 10px;
		border: 1px solid rgba(230, 225, 215, 0.9);
		border-radius: var(--eb-radius);
		background: rgba(250, 248, 242, 0.98);
		box-shadow: 0 14px 30px rgba(31, 33, 29, 0.12);
	}

	.eb-primary-header.is-open .eb-primary-header__nav {
		display: block;
	}

	.eb-primary-header__nav ul {
		display: grid;
		gap: 2px;
	}

	.eb-primary-header__nav a {
		min-height: 42px;
		padding: 0 10px;
		border-radius: 6px;
	}

	.eb-primary-header__nav a:hover,
	.eb-primary-header__nav a:focus {
		background: rgba(111, 156, 99, 0.1);
	}

	.eb-primary-header__nav .is-current a,
	.eb-primary-header__nav a[aria-current="page"] {
		background: rgba(111, 156, 99, 0.12);
		text-decoration: none;
	}

	.eb-container,
	.eb-hero__content,
	.eb-class-hero__content {
		width: min(100% - 28px, 1120px);
	}

	.eb-hero {
		min-height: 620px;
	}

	.eb-class-hero {
		min-height: clamp(300px, 68vw, 340px);
	}

	.eb-hero__content,
	.eb-class-hero__content {
		padding: 120px 0 62px;
	}

	.eb-class-hero__content {
		padding: 86px 0 44px;
	}

	.eb-hero__title,
	.eb-class-hero h1 {
		font-size: 31px;
	}

	.eb-hero__lead,
	.eb-class-hero p {
		font-size: 16px;
		line-height: 1.8;
	}

	.eb-hero__actions,
	.eb-type-grid,
	.eb-class-grid {
		grid-template-columns: 1fr;
	}

	.eb-hero__actions {
		display: grid;
	}

	.eb-button {
		width: 100%;
	}

	.eb-section__heading {
		margin-bottom: 30px;
		text-align: left;
	}

	.eb-section__heading h2,
	.eb-page-hero h1 {
		font-size: 28px;
	}

	.eb-site-footer__inner {
		width: min(100% - 28px, 1120px);
		padding: 46px 0 26px;
	}

	.eb-site-footer__brand {
		margin-bottom: 28px;
	}

	.eb-site-footer__links {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.eb-type-grid,
	.eb-class-grid {
		gap: 18px;
	}

	.eb-type-card__body {
		padding: 22px;
	}

	.eb-class-card__body,
	.eb-class-summary {
		padding: 22px;
	}

	.eb-class-rules {
		width: min(100% - 28px, 1120px);
		margin-bottom: 72px;
		padding: 24px;
	}

	.eb-class-rules h2 {
		font-size: 24px;
	}

	.eb-class-rule--open,
	.eb-class-rule summary {
		padding: 20px;
	}

	.eb-class-rule:not(.eb-class-rule--open) .eb-class-rule__content {
		padding: 0 20px 20px;
	}

	body.post-name-rules .page-header,
	body.post-name-rules .page-header-inner {
		min-height: 210px;
	}

	body.post-name-rules .page-header-inner {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	body.post-name-rules .page-header-title {
		max-width: 100%;
		font-size: 23px;
		line-height: 1.44;
	}

	body.post-name-rules .page-header-title::after {
		max-width: 310px;
		margin-top: 8px;
		font-size: 15px;
		line-height: 1.7;
	}

	.eb-page-hero {
		padding: 92px 0 52px;
	}

	.eb-archive .eb-page-hero {
		padding: 58px 0 42px;
	}
}
