.ebtr-site {
	--ebtr-ink: #0d0e11;
	--ebtr-ink-soft: #282d33;
	--ebtr-smoke: #15181d;
	--ebtr-paper: #efede7;
	--ebtr-bone: #fbf8f0;
	--ebtr-line: rgba(13, 14, 17, 0.12);
	--ebtr-line-light: rgba(251, 248, 240, 0.16);
	--ebtr-red: #dd3b34;
	--ebtr-red-dark: #b82a25;
	--ebtr-gold: #d0ac62;
	--ebtr-teal: #49c7ba;
	--ebtr-shadow: 0 24px 60px rgba(13, 14, 17, 0.22);
	background: var(--ebtr-bone);
	color: var(--ebtr-ink);
	font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	text-rendering: optimizeLegibility;
	width: 100vw;
}

.ebtr-site *,
.ebtr-site *::before,
.ebtr-site *::after {
	box-sizing: border-box;
	letter-spacing: 0;
}

.ebtr-site a {
	color: inherit;
	text-decoration: none;
}

.ebtr-container {
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 28px;
	width: 100%;
}

.ebtr-enabled .main-nav,
.ebtr-enabled #page-header,
.ebtr-enabled .site-header {
	background: rgba(255, 250, 241, 0.96);
	border-bottom: 1px solid var(--ebtr-line, rgba(17, 17, 17, 0.14));
	box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
	backdrop-filter: blur(12px);
}

.ebtr-enabled .main-menu > li > a,
.ebtr-enabled .header-logo a,
.ebtr-enabled .site-title a {
	color: #111111;
	font-weight: 800;
}

.ebtr-enabled .main-menu > li > a:hover,
.ebtr-enabled .main-menu > li.current-menu-item > a {
	color: #c7332f;
}

.ebtr-eyebrow {
	align-items: center;
	color: var(--ebtr-gold);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 10px;
	line-height: 1.4;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.ebtr-eyebrow::before {
	background: currentColor;
	content: "";
	height: 3px;
	width: 38px;
}

.ebtr-hero {
	background: #08090b;
	color: var(--ebtr-bone);
	min-height: 760px;
	position: relative;
}

.ebtr-hero__media,
.ebtr-hero__shade {
	inset: 0;
	position: absolute;
}

.ebtr-hero__media img {
	filter: saturate(0.9) contrast(1.08) brightness(0.9);
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
	opacity: 0.56;
	transform: scale(1.02);
	width: 100%;
}

.ebtr-hero__shade {
	background:
		linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.68) 48%, rgba(8, 9, 11, 0.2) 100%),
		linear-gradient(180deg, rgba(8, 9, 11, 0.08) 0%, rgba(8, 9, 11, 0.9) 100%),
		repeating-linear-gradient(135deg, rgba(251, 248, 240, 0.055) 0, rgba(251, 248, 240, 0.055) 1px, transparent 1px, transparent 14px);
}

.ebtr-hero::after {
	background: linear-gradient(90deg, var(--ebtr-red) 0 34%, var(--ebtr-gold) 34% 68%, var(--ebtr-teal) 68% 100%);
	bottom: 0;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
}

.ebtr-hero__inner {
	align-items: end;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(0, 1fr) 360px;
	min-height: 760px;
	padding-bottom: 72px;
	padding-top: 118px;
	position: relative;
	z-index: 1;
}

.ebtr-hero__copy {
	max-width: 820px;
}

.ebtr-hero h1 {
	color: #ffffff;
	font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 68px;
	font-weight: 900;
	line-height: 1.02;
	margin: 0;
	max-width: 850px;
}

.ebtr-hero__lead {
	color: rgba(255, 250, 241, 0.88);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.9;
	margin: 26px 0 0;
	max-width: 690px;
}

.ebtr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ebtr-button {
	align-items: center;
	border: 2px solid transparent;
	border-radius: 5px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	gap: 10px;
	justify-content: center;
	line-height: 1.2;
	min-height: 50px;
	padding: 0 22px;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ebtr-button::after {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	height: 8px;
	transform: rotate(45deg);
	width: 8px;
}

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

.ebtr-button--primary {
	background: var(--ebtr-red);
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(221, 59, 52, 0.24);
}

.ebtr-button--primary:hover,
.ebtr-button--primary:focus-visible {
	background: var(--ebtr-red-dark);
	color: #ffffff;
}

.ebtr-button--ghost {
	background: rgba(17, 17, 17, 0.36);
	border-color: rgba(255, 250, 241, 0.72);
	color: #ffffff;
}

.ebtr-button--ghost:hover,
.ebtr-button--ghost:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--ebtr-ink);
}

.ebtr-button--light {
	background: #ffffff;
	border-color: rgba(17, 17, 17, 0.18);
	color: var(--ebtr-ink);
}

.ebtr-button--light:hover,
.ebtr-button--light:focus-visible {
	border-color: var(--ebtr-red);
	color: var(--ebtr-red);
}

.ebtr-hero__panel {
	background: rgba(251, 248, 240, 0.095);
	border: 1px solid var(--ebtr-line-light);
	border-radius: 8px;
	box-shadow: var(--ebtr-shadow);
	backdrop-filter: blur(14px);
	overflow: hidden;
}

.ebtr-hero__mark {
	aspect-ratio: 1;
	background: rgba(8, 9, 11, 0.78);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.ebtr-hero__panel dl {
	margin: 0;
}

.ebtr-hero__panel div {
	border-top: 1px solid var(--ebtr-line-light);
	padding: 18px 20px;
}

.ebtr-hero__panel dt {
	color: rgba(255, 250, 241, 0.56);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.ebtr-hero__panel dd {
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
	overflow-wrap: anywhere;
}

.ebtr-strip {
	background: #101216;
	border-bottom: 1px solid rgba(251, 248, 240, 0.08);
	border-top: 1px solid rgba(251, 248, 240, 0.08);
	color: #ffffff;
}

.ebtr-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ebtr-strip__inner div {
	border-left: 1px solid var(--ebtr-line-light);
	min-height: 112px;
	padding: 22px 24px;
}

.ebtr-strip__inner div:last-child {
	border-right: 1px solid var(--ebtr-line-light);
}

.ebtr-strip strong,
.ebtr-strip span {
	display: block;
}

.ebtr-strip strong {
	color: var(--ebtr-gold);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.ebtr-strip span {
	color: rgba(255, 250, 241, 0.76);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
	margin-top: 8px;
}

.ebtr-section {
	padding: 76px 0;
}

.ebtr-section--intro {
	background: var(--ebtr-bone);
}

.ebtr-section--dark {
	background:
		linear-gradient(180deg, #101216 0%, #0d0e11 100%);
	color: #ffffff;
}

.ebtr-section--paper {
	background: var(--ebtr-paper);
	border-bottom: 1px solid var(--ebtr-line);
	border-top: 1px solid var(--ebtr-line);
}

.ebtr-section__head {
	margin-bottom: 28px;
}

.ebtr-section__head--split {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.ebtr-intro,
.ebtr-policy,
.ebtr-access {
	align-items: start;
	display: grid;
	gap: 38px;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.ebtr-intro h2,
.ebtr-section__head h2,
.ebtr-policy h2,
.ebtr-access h2 {
	color: inherit;
	font-size: 38px;
	font-weight: 900;
	line-height: 1.22;
	margin: 0;
}

.ebtr-intro__body p,
.ebtr-access__copy p {
	color: var(--ebtr-ink-soft);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.95;
	margin: 0;
}

.ebtr-text-link {
	align-items: center;
	color: var(--ebtr-red);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	gap: 8px;
	margin-top: 18px;
	text-transform: uppercase;
}

.ebtr-text-link::after {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	height: 7px;
	transform: rotate(45deg);
	width: 7px;
}

.ebtr-text-link--light {
	color: #ffffff;
	margin-top: 0;
	white-space: nowrap;
}

.ebtr-artist-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ebtr-artist {
	background: #ffffff;
	border: 1px solid rgba(255, 250, 241, 0.14);
	border-radius: 8px;
	color: var(--ebtr-ink);
	min-height: 214px;
	overflow: hidden;
	padding: 20px;
	position: relative;
	transition: border-color 180ms ease, transform 180ms ease;
}

.ebtr-section--dark .ebtr-artist {
	background: rgba(251, 248, 240, 0.075);
	border-color: rgba(251, 248, 240, 0.14);
	color: #ffffff;
}

.ebtr-artist::before {
	background: linear-gradient(90deg, var(--ebtr-red), var(--ebtr-gold), var(--ebtr-teal));
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.ebtr-artist:hover {
	border-color: rgba(201, 154, 69, 0.62);
	transform: translateY(-3px);
}

.ebtr-artist__name {
	font-family: Impact, "Arial Black", "Noto Sans JP", sans-serif;
	font-size: 32px;
	font-weight: 900;
	line-height: 0.95;
	margin-top: 14px;
	text-transform: uppercase;
}

.ebtr-artist p {
	color: var(--ebtr-ink-soft);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.6;
	margin: 16px 0 0;
}

.ebtr-section--dark .ebtr-artist p {
	color: rgba(251, 248, 240, 0.7);
}

.ebtr-artist a {
	bottom: 18px;
	color: var(--ebtr-red);
	font-size: 12px;
	font-weight: 900;
	left: 20px;
	line-height: 1.3;
	position: absolute;
	text-transform: uppercase;
}

.ebtr-section--dark .ebtr-artist a {
	color: var(--ebtr-gold);
}

.ebtr-service-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

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

.ebtr-feature {
	background: #ffffff;
	border: 1px solid var(--ebtr-line);
	border-radius: 8px;
	min-height: 274px;
	padding: 22px;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ebtr-feature::before {
	background: linear-gradient(90deg, var(--ebtr-red), var(--ebtr-teal));
	content: "";
	height: 4px;
	left: 22px;
	position: absolute;
	right: 22px;
	top: 0;
}

.ebtr-feature:hover {
	border-color: rgba(199, 51, 47, 0.42);
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
	transform: translateY(-3px);
}

.ebtr-feature span {
	color: var(--ebtr-teal);
	display: block;
	font-family: Impact, "Arial Black", sans-serif;
	font-size: 46px;
	font-weight: 900;
	line-height: 0.95;
}

.ebtr-feature h3 {
	color: var(--ebtr-ink);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
	margin: 24px 0 0;
}

.ebtr-feature p {
	color: var(--ebtr-ink-soft);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	margin: 14px 0 0;
}

.ebtr-policy__list {
	display: grid;
	gap: 10px;
}

.ebtr-policy__list div {
	background: #ffffff;
	border: 1px solid var(--ebtr-line);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	grid-template-columns: 200px minmax(0, 1fr);
	padding: 18px;
}

.ebtr-policy__list strong {
	color: var(--ebtr-red);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.5;
}

.ebtr-policy__list span {
	color: var(--ebtr-ink-soft);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
}

.ebtr-section--instagram {
	padding-bottom: 66px;
}

.ebtr-instagram-feed {
	background: rgba(255, 250, 241, 0.06);
	border: 1px solid var(--ebtr-line-light);
	border-radius: 8px;
	overflow: hidden;
	padding: 12px;
}

.ebtr-instagram-feed #sb_instagram {
	background: transparent;
	color: #ffffff;
}

.ebtr-instagram-feed #sbi_load {
	padding: 16px 0 4px;
}

.ebtr-instagram-feed .sbi_load_btn,
.ebtr-instagram-feed .sbi_follow_btn a {
	border-radius: 5px;
	font-weight: 900;
}

.ebtr-instagram-fallback {
	align-items: center;
	background: rgba(255, 250, 241, 0.08);
	border: 1px solid var(--ebtr-line-light);
	border-radius: 8px;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 22px;
}

.ebtr-instagram-fallback p {
	color: rgba(255, 250, 241, 0.82);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.6;
	margin: 0;
}

.ebtr-access__copy dl {
	border-top: 1px solid var(--ebtr-line);
	display: grid;
	gap: 0;
	margin: 28px 0 0;
}

.ebtr-access__copy dl div {
	border-bottom: 1px solid var(--ebtr-line);
	display: grid;
	gap: 18px;
	grid-template-columns: 140px minmax(0, 1fr);
	padding: 16px 0;
}

.ebtr-access__copy dt {
	color: var(--ebtr-red);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.4;
	margin: 0;
	text-transform: uppercase;
}

.ebtr-access__copy dd {
	color: var(--ebtr-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
	overflow-wrap: anywhere;
}

.ebtr-access__card {
	background:
		linear-gradient(145deg, rgba(221, 59, 52, 0.86), rgba(13, 14, 17, 0.98)),
		repeating-linear-gradient(135deg, rgba(251, 248, 240, 0.08) 0, rgba(251, 248, 240, 0.08) 1px, transparent 1px, transparent 13px),
		var(--ebtr-ink);
	border-radius: 8px;
	box-shadow: var(--ebtr-shadow);
	color: #ffffff;
	display: grid;
	gap: 12px;
	min-height: 360px;
	padding: 32px;
	place-content: end start;
	position: relative;
	overflow: hidden;
}

.ebtr-access__card::before {
	border: 2px solid rgba(255, 250, 241, 0.14);
	content: "";
	inset: 18px;
	position: absolute;
}

.ebtr-access__card span,
.ebtr-access__card strong,
.ebtr-access__card a {
	position: relative;
	z-index: 1;
}

.ebtr-access__card span {
	color: var(--ebtr-gold);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.ebtr-access__card strong {
	font-family: Impact, "Arial Black", "Noto Sans JP", sans-serif;
	font-size: 54px;
	font-weight: 900;
	line-height: 0.95;
	margin-bottom: 14px;
	max-width: 420px;
	text-transform: uppercase;
}

.ebtr-mobile-cta {
	display: none;
}

.ebtr-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.ebtr-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.ebtr-artist-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ebtr-service-grid,
	.ebtr-feature-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 880px) {
	.ebtr-hero,
	.ebtr-hero__inner {
		min-height: 720px;
	}

	.ebtr-hero__inner,
	.ebtr-intro,
	.ebtr-policy,
	.ebtr-access {
		grid-template-columns: 1fr;
	}

	.ebtr-hero h1 {
		font-size: 54px;
	}

	.ebtr-hero__panel {
		display: grid;
		grid-template-columns: 190px minmax(0, 1fr);
	}

	.ebtr-hero__panel dl {
		display: grid;
	}

	.ebtr-strip__inner {
		grid-template-columns: 1fr;
	}

	.ebtr-strip__inner div,
	.ebtr-strip__inner div:last-child {
		border-left: 1px solid var(--ebtr-line-light);
		border-right: 1px solid var(--ebtr-line-light);
		min-height: 88px;
	}

	.ebtr-section__head--split {
		align-items: flex-start;
		flex-direction: column;
	}

	.ebtr-text-link--light {
		white-space: normal;
	}

	.ebtr-intro h2,
	.ebtr-section__head h2,
	.ebtr-policy h2,
	.ebtr-access h2 {
		font-size: 32px;
	}
}

@media (max-width: 680px) {
	.ebtr-enabled {
		padding-bottom: 58px;
	}

	.ebtr-container {
		padding: 0 18px;
	}

	.ebtr-hero,
	.ebtr-hero__inner {
		min-height: 690px;
	}

	.ebtr-hero__inner {
		gap: 28px;
		padding-bottom: 44px;
		padding-top: 82px;
	}

	.ebtr-hero__shade {
		background:
			linear-gradient(180deg, rgba(17, 17, 17, 0.46) 0%, rgba(17, 17, 17, 0.92) 52%, rgba(17, 17, 17, 0.98) 100%),
			repeating-linear-gradient(135deg, rgba(255, 250, 241, 0.07) 0, rgba(255, 250, 241, 0.07) 1px, transparent 1px, transparent 12px);
	}

	.ebtr-hero__media img {
		object-position: center top;
		opacity: 0.5;
	}

	.ebtr-hero h1 {
		font-size: 38px;
		line-height: 1;
	}

	.ebtr-hero__lead {
		font-size: 15px;
		line-height: 1.8;
	}

	.ebtr-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ebtr-button {
		width: 100%;
	}

	.ebtr-hero__panel {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.ebtr-hero__mark {
		height: 100%;
	}

	.ebtr-hero__panel div {
		padding: 13px 14px;
	}

	.ebtr-section {
		padding: 54px 0;
	}

	.ebtr-intro h2,
	.ebtr-section__head h2,
	.ebtr-policy h2,
	.ebtr-access h2 {
		font-size: 27px;
		line-height: 1.28;
	}

	.ebtr-artist-grid {
		grid-template-columns: 1fr;
	}

	.ebtr-artist {
		min-height: 176px;
	}

	.ebtr-policy__list div,
	.ebtr-access__copy dl div {
		grid-template-columns: 1fr;
	}

	.ebtr-instagram-fallback {
		align-items: stretch;
		flex-direction: column;
	}

	.ebtr-access__card {
		min-height: 300px;
		padding: 24px;
	}

	.ebtr-access__card strong {
		font-size: 38px;
	}

	.ebtr-mobile-cta {
		background: rgba(17, 17, 17, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 6px;
		bottom: 10px;
		box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
		backdrop-filter: blur(10px);
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		left: 10px;
		overflow: hidden;
		position: fixed;
		right: 10px;
		z-index: 1003;
	}

	.ebtr-mobile-cta a {
		align-items: center;
		color: #ffffff;
		display: flex;
		font-size: 12px;
		font-weight: 900;
		justify-content: center;
		line-height: 1.2;
		min-height: 46px;
	}

	.ebtr-mobile-cta a + a {
		border-left: 1px solid rgba(255, 255, 255, 0.16);
	}

	.ebtr-mobile-cta a:nth-child(2) {
		color: var(--ebtr-gold);
	}

	.ebtr-mobile-cta a:nth-child(3) {
		background: var(--ebtr-red);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ebtr-site *,
	.ebtr-site *::before,
	.ebtr-site *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
