:root {
	--toms-bg: #141414;
	--toms-bg-elev: #1c1c1c;
	--toms-bg-deep: #0c0c0c;
	--toms-bg-image: #f5f5f5;
	--toms-border: #2a2a2a;
	--toms-border-strong: #3a3a3a;
	--toms-text: #ececec;
	--toms-bright: #ffffff;
	--toms-muted: #9a9a9a;
	--toms-dim: #6b6b6b;
	--toms-accent: #e60019;
	--toms-accent-hover: #ff1f3a;
	--toms-placeholder-dark: #181818;
	--toms-placeholder-line: #2b2b2b;
	--toms-radius: 0;
	--toms-card-radius: 0;
	--toms-gutter: 21px;
	--toms-font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
	--toms-font-jp: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
	scroll-behavior: smooth;
	background: var(--toms-bg);
}

body {
	margin: 0;
	background: var(--toms-bg);
	color: var(--toms-text);
	font-family: var(--toms-font-jp);
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

::selection {
	background: var(--toms-accent);
	color: var(--toms-bright);
}

.toms-theme-root {
	min-height: 100vh;
	background: var(--toms-bg);
}

.toms-lp-page,
.toms-default-page {
	width: 100%;
	background: var(--toms-bg);
}

.toms-lp-article {
	width: 100%;
	margin: 0;
}

.toms-lp {
	width: min(100%, 430px);
	margin: 0 auto;
	padding-top: 64px;
	overflow: hidden;
	background: var(--toms-bg);
	color: var(--toms-text);
	font-family: var(--toms-font-jp);
	font-size: 15px;
	line-height: 1.7;
	box-shadow: 0 0 0 1px var(--toms-border);
}

.toms-lp *,
.toms-lp *::before,
.toms-lp *::after {
	box-sizing: border-box;
}

.toms-lp :where(h1, h2, h3, p, figure) {
	margin: 0;
}

.toms-lp :where(a) {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.toms-lp :where(.wp-block-group, .wp-block-cover, .wp-block-buttons) {
	margin-block-start: 0;
	margin-block-end: 0;
}

.toms-lp-header {
	position: fixed;
	top: var(--wp-admin--admin-bar--height, 0px);
	left: 50%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 430px);
	height: 64px;
	padding: 0 var(--toms-gutter);
	border-bottom: 1px solid var(--toms-border);
	background: var(--toms-bg);
	transform: translateX(-50%);
}

.toms-lp-header::after {
	content: "";
	display: none;
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 80px;
	height: 3px;
	background: var(--toms-accent);
}

.toms-logo,
.toms-footer-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	color: var(--toms-bright);
	font-family: var(--toms-font-display);
	font-size: 20px;
	font-weight: 900;
	font-style: italic;
	font-stretch: 110%;
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.toms-logo {
	width: clamp(210px, 58vw, 280px);
	height: clamp(24px, 6.5vw, 32px);
	overflow: hidden;
	background: url("../images/logo-inte_acce.png") left center / contain no-repeat;
	color: transparent;
	letter-spacing: 0;
	text-indent: -9999px;
}

.toms-logo::after {
	content: none;
}

.toms-menu-button {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: transparent;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}

.toms-menu-button::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 5px;
	width: 20px;
	height: 14px;
	background:
		linear-gradient(var(--toms-bright), var(--toms-bright)) 0 0 / 20px 2px no-repeat,
		linear-gradient(var(--toms-bright), var(--toms-bright)) 0 6px / 20px 2px no-repeat,
		linear-gradient(var(--toms-bright), var(--toms-bright)) 0 12px / 20px 2px no-repeat;
}

.toms-menu-button span {
	display: none;
}

.toms-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 9990;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 24px;
	background: rgba(8, 8, 8, 0.92);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.toms-menu-panel.is-open {
	opacity: 1;
	pointer-events: auto;
}

body.toms-menu-open {
	overflow: hidden;
}

.toms-menu-panel-inner {
	display: grid;
	gap: 22px;
	width: min(100%, 420px);
	border: 1px solid var(--toms-border-strong);
	background: var(--toms-bg-elev);
	padding: 28px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.toms-menu-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.toms-menu-panel-title {
	margin: 0;
	width: clamp(220px, 62vw, 311px);
	height: clamp(25px, 7vw, 35px);
	overflow: hidden;
	background: url("../images/logo-inte_acce.png") left center / contain no-repeat;
	color: transparent;
	text-indent: -9999px;
}

.toms-menu-close {
	display: inline-grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--toms-border-strong);
	background: transparent;
	color: var(--toms-bright);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.toms-menu-links {
	display: grid;
	gap: 0;
}

.toms-menu-links a {
	display: grid;
	grid-template-columns: minmax(118px, 34%) minmax(0, 1fr) 24px;
	column-gap: clamp(24px, 5vw, 56px);
	align-items: center;
	border-top: 1px solid var(--toms-border);
	padding: 16px 0;
	color: var(--toms-bright);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.toms-menu-links a:last-child {
	border-bottom: 1px solid var(--toms-border);
}

.toms-menu-links a::after {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--toms-red);
	justify-self: end;
}

.toms-menu-links span {
	display: block;
	color: var(--toms-muted);
	font-family: var(--toms-font-display);
	font-size: 11px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.toms-hero {
	background:
		linear-gradient(180deg, rgba(20, 20, 20, 0) 0, var(--toms-bg) 94%),
		var(--toms-bg);
}

.toms-hero-text {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 28px var(--toms-gutter) 0;
	background: var(--toms-bg);
}

.toms-hero-text::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: var(--toms-gutter);
	width: 44px;
	height: 2px;
	background: var(--toms-accent);
}

.toms-eyebrow,
.toms-kicker,
.toms-card-label,
.toms-point-label,
.toms-coming-label,
.toms-bottom-label {
	font-family: var(--toms-font-display);
	font-weight: 800;
	font-style: italic;
	font-stretch: 108%;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.toms-eyebrow {
	color: var(--toms-muted);
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
}

.toms-hero-title {
	color: var(--toms-bright);
	font-size: 27px;
	font-weight: 800;
	line-height: 1.26;
	letter-spacing: 0.02em;
}

.toms-lead,
.toms-copy {
	color: var(--toms-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.85;
}

.toms-lead {
	padding-top: 12px;
	color: #d8d8d8;
}

.toms-section {
	display: grid;
	gap: 16px;
	padding: 56px var(--toms-gutter) 28px;
	border-top: 1px solid var(--toms-border);
	background: var(--toms-bg);
	scroll-margin-top: calc(var(--wp-admin--admin-bar--height, 0px) + 84px);
}

.toms-section:nth-of-type(odd) {
	background: #111111;
}

.toms-concept {
	gap: 22px;
	padding-bottom: 40px;
}

.toms-kicker {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--toms-muted);
	font-size: 13px;
	line-height: 1.25;
	white-space: nowrap;
}

.toms-kicker::before {
	content: "";
	width: 44px;
	height: 2px;
	background: var(--toms-accent);
}

.toms-section-title {
	color: var(--toms-bright);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.03em;
}

.toms-card-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	padding: 26px var(--toms-gutter) 32px;
	background: var(--toms-bg);
}

.toms-category-card,
.toms-product-card,
.toms-concept-card {
	border: 1px solid var(--toms-border);
	border-radius: var(--toms-card-radius);
	background: var(--toms-bg-elev);
}

.toms-category-card {
	display: grid;
	gap: 2px;
	padding: 12px 12px 16px;
	cursor: pointer;
	overflow: hidden;
}

.toms-category-card:focus-visible {
	outline: 2px solid var(--toms-accent);
	outline-offset: 4px;
}

.toms-card-label {
	padding-top: 10px;
	color: var(--toms-muted);
	font-size: 11px;
	line-height: 1.2;
	white-space: nowrap;
}

.toms-card-title {
	color: var(--toms-bright);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	white-space: nowrap;
}

.toms-concept-cards {
	display: grid;
	gap: 12px;
	padding-top: 12px;
}

.toms-concept-card {
	position: relative;
	display: grid;
	gap: 10px;
	padding: 18px 18px 20px;
	overflow: hidden;
}

.toms-concept-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--toms-accent);
	opacity: 0.9;
}

.toms-concept-heading {
	display: flex;
	align-items: baseline;
	gap: 16px;
	color: var(--toms-bright);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.toms-concept-heading span {
	color: var(--toms-muted);
	font-family: var(--toms-font-display);
	font-size: 17px;
	font-weight: 900;
	font-style: italic;
}

.toms-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 120px;
	overflow: hidden;
	border: 1px solid var(--toms-border);
	border-radius: var(--toms-radius);
	background: var(--toms-placeholder-dark);
	color: var(--toms-muted);
}

.toms-media.wp-block-image {
	display: block;
	margin: 0;
}

.toms-media > img {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.toms-media-kv.has-toms-product-image > img,
.toms-media-product.has-toms-product-image > img,
.toms-media-point.has-toms-product-image > img {
	object-fit: contain;
}

.toms-media.wp-block-image:not(.toms-media-hero) {
	min-height: 0 !important;
	overflow: visible;
	background: transparent;
}

.toms-media.wp-block-image:not(.toms-media-hero) > img {
	position: static;
	inset: auto;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.toms-media.wp-block-image:not(.toms-media-hero)::before,
.toms-media.wp-block-image:not(.toms-media-hero)::after {
	display: none;
}

.toms-media::before,
.toms-media::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 144%;
	height: 1px;
	background: var(--toms-placeholder-line);
	transform-origin: center;
	pointer-events: none;
}

.toms-media::before {
	transform: translate(-50%, -50%) rotate(29deg);
}

.toms-media::after {
	transform: translate(-50%, -50%) rotate(-29deg);
}

.toms-media .wp-block-cover__background {
	z-index: 1;
	background:
		repeating-linear-gradient(45deg, #181818, #181818 10px, #141414 10px, #141414 20px) !important;
	opacity: 1 !important;
}

.toms-media .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	width: 100%;
	color: var(--toms-muted);
}

.toms-media:has(img) .wp-block-cover__background {
	opacity: 0 !important;
}

.toms-media-hero .wp-block-cover__background {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(20, 20, 20, 0.2)) !important;
}

.toms-media-hero::before,
.toms-media-hero::after {
	display: none;
}

.toms-media-thumb .wp-block-cover__background,
.toms-media-product .wp-block-cover__background {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
		var(--toms-bg-image) !important;
}

.toms-media-thumb::before,
.toms-media-thumb::after,
.toms-media-product::before,
.toms-media-product::after {
	background: #d9d9d9;
}

.toms-placeholder-title {
	color: var(--toms-muted);
	font-family: var(--toms-font-display);
	font-size: 13px;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.toms-placeholder-note {
	margin-top: 4px;
	color: var(--toms-dim);
	font-size: 11px;
	line-height: 1.4;
}

.toms-media-hero {
	min-height: 0 !important;
	aspect-ratio: 430 / 343;
	border-right: 0;
	border-left: 0;
	background-image: url("../images/hero-tb.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.toms-media-hero > img,
.toms-media-hero .wp-block-cover__image-background {
	display: none !important;
}

.toms-media-hero .toms-placeholder-title,
.toms-media-hero .toms-placeholder-note {
	display: none;
}

.toms-media-thumb {
	min-height: 120px !important;
}

.toms-media-kv,
.toms-media-point {
	min-height: 200px !important;
}

.toms-media-product {
	min-height: 100px !important;
}

@supports selector(:has(*)) {
	.toms-media:has(img)::before,
	.toms-media:has(img)::after {
		display: none;
	}
}

.toms-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding-top: 8px;
}

.toms-feature {
	--toms-feature-icon: url("../icons/feature-default.svg");
	position: relative;
	display: flex;
	min-height: 98px;
	align-items: flex-end;
	justify-content: center;
	border: 1px solid var(--toms-border);
	background: var(--toms-bg-elev);
	padding: 66px 3px 14px;
	color: var(--toms-text);
	font-size: 11px;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
}

.toms-feature::before {
	content: "";
	display: none;
}

.toms-feature::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	width: 48px;
	height: 48px;
	background-image: var(--toms-feature-icon);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateX(-50%);
}

.toms-feature-icon-fit {
	--toms-feature-icon: url("../icons/feature-fit.svg");
}

.toms-feature-icon-domestic {
	--toms-feature-icon: url("../icons/feature-domestic.svg");
}

.toms-feature-icon-waterproof {
	--toms-feature-icon: url("../icons/feature-waterproof.svg");
}

.toms-feature-icon-heat {
	--toms-feature-icon: url("../icons/feature-heat.svg");
}

.toms-feature-icon-grip {
	--toms-feature-icon: url("../icons/feature-grip.svg");
}

.toms-feature-icon-uv {
	--toms-feature-icon: url("../icons/feature-uv.svg");
}

.toms-feature-icon-install {
	--toms-feature-icon: url("../icons/feature-install.svg");
}

.toms-feature-icon-storage {
	--toms-feature-icon: url("../icons/feature-storage.svg");
}

.toms-feature-icon-wash {
	--toms-feature-icon: url("../icons/feature-wash.svg");
}

.toms-feature-icon-logo {
	--toms-feature-icon: url("../icons/feature-logo.svg");
}

.toms-feature-icon-scratch {
	--toms-feature-icon: url("../icons/feature-scratch.svg");
}

.toms-feature-icon-edge {
	--toms-feature-icon: url("../icons/feature-edge.svg");
}

.toms-feature-icon-silence {
	--toms-feature-icon: url("../icons/feature-silence.svg");
}

.toms-feature-icon-cushion {
	--toms-feature-icon: url("../icons/feature-cushion.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(1),
#rubber-mat .toms-feature-grid .toms-feature:nth-child(1) {
	--toms-feature-icon: url("../icons/feature-fit.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(2) {
	--toms-feature-icon: url("../icons/feature-domestic.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(3),
#rubber-mat .toms-feature-grid .toms-feature:nth-child(7) {
	--toms-feature-icon: url("../icons/feature-waterproof.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(4) {
	--toms-feature-icon: url("../icons/feature-heat.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(5) {
	--toms-feature-icon: url("../icons/feature-grip.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(6) {
	--toms-feature-icon: url("../icons/feature-uv.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(7) {
	--toms-feature-icon: url("../icons/feature-install.svg");
}

#sunshade .toms-feature-grid .toms-feature:nth-child(8) {
	--toms-feature-icon: url("../icons/feature-storage.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(2) {
	--toms-feature-icon: url("../icons/feature-wash.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(3) {
	--toms-feature-icon: url("../icons/feature-logo.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(4) {
	--toms-feature-icon: url("../icons/feature-scratch.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(5) {
	--toms-feature-icon: url("../icons/feature-edge.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(6) {
	--toms-feature-icon: url("../icons/feature-silence.svg");
}

#rubber-mat .toms-feature-grid .toms-feature:nth-child(8) {
	--toms-feature-icon: url("../icons/feature-cushion.svg");
}

.toms-points {
	display: grid;
	gap: 34px;
	padding: 16px 0 22px;
}

.toms-point {
	display: grid;
	gap: 14px;
}

.toms-point-label {
	color: var(--toms-accent);
	font-size: 12px;
	line-height: 1.25;
}

.toms-point-title {
	color: var(--toms-bright);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
}

.toms-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	justify-content: center;
	gap: 12px;
	padding-top: 8px;
}

.toms-detail-gallery {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px !important;
	margin: 8px 0 0 !important;
}

.toms-detail-gallery.wp-block-gallery.has-nested-images {
	align-items: stretch;
}

.toms-detail-gallery .wp-block-image,
.toms-detail-gallery.wp-block-gallery.has-nested-images figure.wp-block-image {
	position: relative;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border: 1px solid var(--toms-border);
	background: var(--toms-bg-elev);
	flex: none !important;
}

.toms-detail-gallery .wp-block-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	cursor: zoom-in;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.toms-detail-gallery .toms-media-gallery-item > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.toms-detail-gallery .wp-block-image:hover img {
	transform: scale(1.035);
	opacity: 0.92;
}

.toms-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: clamp(18px, 3vw, 48px);
	background: rgba(0, 0, 0, 0.9);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.toms-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

body.toms-lightbox-open {
	overflow: hidden;
}

.toms-lightbox-frame {
	position: relative;
	display: grid;
	width: min(92vw, 1680px);
	height: min(86vh, 1040px);
	max-width: none;
	max-height: none;
	place-items: center;
}

.toms-lightbox-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border: 1px solid var(--toms-border-strong);
	background: var(--toms-bg);
	object-fit: contain;
}

.toms-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--toms-border-strong);
	background: var(--toms-bg-elev);
	color: var(--toms-bright);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.toms-lightbox-nav {
	position: absolute;
	top: 50%;
	display: inline-grid;
	width: 54px;
	height: 72px;
	place-items: center;
	border: 1px solid var(--toms-border-strong);
	background: rgba(28, 28, 28, 0.82);
	color: var(--toms-bright);
	font-size: 44px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.toms-lightbox-nav:hover,
.toms-lightbox-close:hover {
	border-color: var(--toms-red);
	background: var(--toms-bg-elev);
}

.toms-lightbox-prev {
	left: clamp(10px, 2vw, 28px);
}

.toms-lightbox-next {
	right: clamp(10px, 2vw, 28px);
}

@media (max-width: 759px) {
	.toms-lightbox-frame {
		width: 100%;
		height: min(78vh, 720px);
	}

	.toms-lightbox-nav {
		width: 42px;
		height: 56px;
		font-size: 34px;
	}
}

.toms-product-card {
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 14px 14px 16px;
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.toms-product-card > * {
	min-width: 0;
}

.toms-product-card .toms-media-product {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	min-height: 0 !important;
	height: auto;
	overflow: hidden;
	background: var(--toms-bg-elev);
}

.toms-product-card .toms-media-product.wp-block-image > img,
.toms-product-card .toms-media-product img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.toms-product-card .toms-media-product .wp-block-cover__inner-container {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 12px;
}

.toms-product-card:hover {
	border-color: var(--toms-border-strong);
}

.toms-product-card .toms-card-label {
	font-size: 10px;
	line-height: 1.25;
	white-space: normal;
	word-break: normal;
	overflow-wrap: anywhere;
}

.toms-product-title {
	color: var(--toms-bright);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.toms-price {
	color: var(--toms-bright);
	font-size: 15px;
	line-height: 1.25;
	white-space: nowrap;
}

.toms-sku {
	color: var(--toms-muted);
	font-size: 11px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.toms-product-end-note {
	color: var(--toms-muted);
	font-size: 11px;
	line-height: 1.45;
	word-break: normal;
	overflow-wrap: anywhere;
}

.toms-note,
.toms-product-note,
.toms-product-spec-note {
	color: var(--toms-muted);
	font-size: 11px;
	line-height: 1.65;
	word-break: normal;
	overflow-wrap: anywhere;
}

.toms-product-status {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	border: 1px solid var(--toms-border-strong);
	padding: 5px 9px;
	color: var(--toms-muted);
	font-family: var(--toms-font-display);
	font-size: 11px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.toms-product-card-disabled {
	opacity: 0.72;
}

.toms-product-actions {
	width: 100%;
}

.toms-product-button,
.toms-product-button .wp-block-button__link {
	width: 100%;
}

.toms-product-button .wp-block-button__link {
	position: relative;
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--toms-accent);
	border-radius: 0;
	background: transparent;
	color: var(--toms-accent);
	font-family: var(--toms-font-display);
	font-size: 12px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.08em;
	line-height: 1.2;
	padding: 9px 10px;
	text-transform: uppercase;
}

.toms-product-button .wp-block-button__link:hover {
	border-color: var(--toms-accent);
	background: var(--toms-accent);
	color: var(--toms-bright);
}

.toms-coming {
	display: grid;
	gap: 18px;
	justify-items: center;
	margin-top: 16px;
	border: 1px solid var(--toms-border);
	background: var(--toms-bg-elev);
	padding: 30px 20px 34px;
	text-align: center;
}

.toms-coming-label,
.toms-bottom-label {
	color: var(--toms-muted);
	font-size: 13px;
	line-height: 1.25;
}

.toms-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	color: var(--toms-text);
	font-size: 14px;
	line-height: 1.25;
}

.toms-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	border: 1px solid var(--toms-border-strong);
	background: var(--toms-bg);
	padding: 10px 16px;
	white-space: nowrap;
}

.toms-coming-title {
	color: var(--toms-bright);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.toms-coming-date {
	color: var(--toms-muted);
	font-size: 14px;
	line-height: 1.3;
}

.toms-faq {
	padding-bottom: 28px;
}

.toms-faq-group {
	display: grid;
	gap: 8px;
	padding-top: 12px;
}

.toms-faq-heading {
	color: var(--toms-bright);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.toms-faq-item {
	border: 1px solid var(--toms-border);
	background: var(--toms-bg-elev);
	color: var(--toms-bright);
}

.toms-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 12px 44px 12px 16px;
	list-style: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.35;
}

.toms-faq-item summary::-webkit-details-marker {
	display: none;
}

.toms-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 16px;
	color: var(--toms-accent);
	font-family: var(--toms-font-display);
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

.toms-faq-item[open] summary::after {
	content: "-";
}

.toms-faq-item p {
	padding: 0 16px 14px;
	color: var(--toms-text);
	font-size: 13px;
	line-height: 1.75;
}

.toms-bottom-cta {
	display: grid;
	gap: 16px;
	justify-items: center;
	border-top: 1px solid var(--toms-border);
	background: var(--toms-bg-elev);
	padding: 32px var(--toms-gutter);
}

.toms-bottom-buttons {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	padding-top: 6px;
}

.toms-outline-button,
.toms-outline-button .wp-block-button__link {
	width: 100%;
}

.toms-outline-button .wp-block-button__link {
	display: flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--toms-border-strong);
	border-radius: 0;
	background: transparent;
	color: var(--toms-bright);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	padding: 12px 8px;
	white-space: nowrap;
}

.toms-outline-button .wp-block-button__link:hover {
	border-color: var(--toms-accent);
	background: var(--toms-accent);
	color: var(--toms-bright);
}

.toms-footer {
	display: grid;
	gap: 8px;
	justify-items: center;
	align-content: center;
	min-height: 80px;
	border-top: 1px solid var(--toms-border);
	background: var(--toms-bg-deep);
	padding: 18px var(--toms-gutter);
	color: var(--toms-bright);
}

.toms-footer-logo {
	color: var(--toms-bright);
	font-size: 19px;
}

.toms-copyright {
	color: var(--toms-dim);
	font-family: var(--toms-font-display);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
	white-space: nowrap;
}

.toms-default-article {
	width: min(100% - 32px, 720px);
	margin: 0 auto;
	padding: 48px 0;
	font-family: var(--toms-font-jp);
}

.toms-default-article h1 {
	margin: 0 0 24px;
	color: var(--toms-bright);
	font-size: 28px;
	line-height: 1.4;
}

.editor-styles-wrapper .toms-lp {
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 760px) {
	.toms-lp {
		width: 100%;
		max-width: none;
		padding-top: 64px;
		box-shadow: none;
	}

	.toms-media-hero {
		min-height: 0 !important;
		aspect-ratio: 16 / 9;
	}

	.toms-hero-text,
	.toms-section,
	.toms-bottom-cta,
	.toms-footer {
		padding-right: 32px;
		padding-left: 32px;
	}

	.toms-card-row {
		padding-right: 32px;
		padding-left: 32px;
	}

	.toms-hero-title {
		font-size: 36px;
	}

	.toms-section-title {
		font-size: 32px;
	}

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

@media (min-width: 1200px) {
	:root {
		--toms-gutter: clamp(48px, 5vw, 96px);
		--toms-content-max: 1320px;
	}

	.toms-lp {
		width: 100%;
		max-width: none;
		padding-top: 84px;
		box-shadow: none;
	}

	.toms-lp-header {
		left: 0;
		height: 84px;
		width: 100%;
		padding-right: max(var(--toms-gutter), calc((100% - 1560px) / 2));
		padding-left: max(var(--toms-gutter), calc((100% - 1560px) / 2));
		transform: none;
	}

	.toms-lp-header::after {
		left: max(var(--toms-gutter), calc((100% - 1560px) / 2));
		width: 128px;
	}

	.toms-logo,
	.toms-footer-logo {
		gap: 12px;
		font-size: 25px;
	}

	.toms-logo {
		width: 311px;
		height: 35px;
	}

	.toms-logo::after {
		content: none;
	}

	.toms-menu-button {
		width: 32px;
		height: 32px;
	}

	.toms-menu-button::before {
		left: 4px;
		width: 24px;
		top: 8px;
		height: 16px;
		background:
			linear-gradient(var(--toms-bright), var(--toms-bright)) 0 0 / 24px 2px no-repeat,
			linear-gradient(var(--toms-bright), var(--toms-bright)) 0 7px / 24px 2px no-repeat,
			linear-gradient(var(--toms-bright), var(--toms-bright)) 0 14px / 24px 2px no-repeat;
	}

	.toms-hero {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: minmax(24px, 1fr) auto clamp(24px, 3vw, 42px) auto minmax(24px, 1fr);
		align-items: stretch;
		min-height: 0;
		aspect-ratio: 2.35 / 1;
		border-bottom: 1px solid var(--toms-border);
		background:
			linear-gradient(90deg, rgba(230, 0, 25, 0.06), rgba(20, 20, 20, 0) 38%),
			var(--toms-bg);
	}

	.toms-media-hero {
		grid-column: 1 / -1;
		grid-row: 1 / -1;
		height: 100%;
		min-height: 0 !important;
		aspect-ratio: auto;
		border: 0;
		background-image: url("../images/hero-pc.jpg");
	}

	.toms-media-hero .wp-block-cover__background {
		background:
			linear-gradient(90deg, rgba(10, 10, 10, 0.06) 0%, rgba(12, 12, 12, 0.12) 42%, rgba(20, 20, 20, 0.72) 68%, rgba(20, 20, 20, 0.92) 100%) !important;
	}

	.toms-hero-text {
		position: relative;
		z-index: 4;
		grid-column: 2;
		grid-row: 2;
		width: min(94%, 760px);
		justify-self: center;
		align-self: center;
		align-content: end;
		gap: 14px;
		padding: 0;
		border-left: 0;
		background: transparent;
	}

	.toms-hero-text::before {
		display: block;
		top: -36px;
		left: 0;
		width: 72px;
		height: 3px;
		transform: none;
	}

	.toms-eyebrow {
		font-size: 14px;
	}

	.toms-hero-title {
		max-width: none;
		font-size: clamp(38px, 3vw, 52px);
		line-height: 1.16;
		white-space: nowrap;
	}

	.toms-lead {
		max-width: 680px;
		padding-top: 10px;
		font-size: 15px;
		line-height: 2;
	}

	.toms-card-row {
		position: relative;
		z-index: 4;
		grid-column: 2;
		grid-row: 4;
		width: min(90%, 700px);
		justify-self: center;
		align-content: start;
		padding: 0;
		border-left: 0;
		background: transparent;
	}

	.toms-category-card {
		gap: 6px;
		padding: 16px 16px 18px;
	}

	.toms-media-thumb {
		min-height: 168px !important;
	}

	.toms-card-title {
		font-size: 18px;
	}

	.toms-section {
		gap: 22px;
		padding: clamp(92px, 8vw, 136px) max(var(--toms-gutter), calc((100% - var(--toms-content-max)) / 2)) clamp(64px, 6vw, 96px);
		border-top-color: rgba(255, 255, 255, 0.08);
	}

	.toms-section-title {
		max-width: 860px;
		font-size: clamp(40px, 3.6vw, 56px);
		line-height: 1.22;
	}

	.toms-copy {
		max-width: 860px;
		font-size: 16px;
		line-height: 2;
	}

	.toms-product-section > .toms-copy {
		max-width: none;
	}

	.toms-concept {
		padding-bottom: 72px;
	}

	.toms-concept-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(18px, 2vw, 28px);
		padding-top: 24px;
	}

	.toms-concept-card {
		min-height: 190px;
		align-content: space-between;
		padding: 30px 30px 32px;
	}

	.toms-media-kv {
		min-height: clamp(420px, 38vw, 560px) !important;
	}

	.toms-feature-grid {
		grid-template-columns: repeat(8, minmax(0, 1fr));
		gap: 12px;
		padding-top: 14px;
	}

	.toms-feature {
		min-height: 136px;
		padding-top: 92px;
		padding-bottom: 18px;
		font-size: 12px;
	}

	.toms-feature::before {
		display: none;
	}

	.toms-feature::after {
		top: 18px;
		width: 64px;
		height: 64px;
	}

	.toms-points {
		gap: 0;
		padding-top: 24px;
	}

	.toms-point {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: 10px clamp(48px, 6vw, 96px);
		align-items: start;
		padding: clamp(44px, 5vw, 76px) 0;
		border-top: 1px solid var(--toms-border);
	}

	.toms-point:first-child {
		border-top: 0;
	}

	.toms-point .toms-media-point {
		grid-row: 1 / span 12;
		align-self: center;
		min-height: clamp(360px, 34vw, 520px) !important;
	}

	.toms-point .toms-media-point.wp-block-image {
		min-height: 0 !important;
	}

	.toms-point-label,
	.toms-point-title,
	.toms-point .toms-copy {
		grid-column: 2;
	}

	.toms-point .toms-copy {
		min-width: 0;
		max-width: 100%;
		font-size: clamp(14px, 1vw, 16px);
		line-height: 1.9;
		white-space: normal;
		word-break: normal;
		overflow-wrap: break-word;
	}

	.toms-point:nth-child(even) {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	}

	.toms-point:nth-child(even) .toms-media-point {
		grid-column: 2;
	}

	.toms-point:nth-child(even) .toms-point-label,
	.toms-point:nth-child(even) .toms-point-title,
	.toms-point:nth-child(even) .toms-copy {
		grid-column: 1;
	}

	.toms-point-title {
		max-width: 640px;
		font-size: clamp(30px, 2.7vw, 42px);
		line-height: 1.38;
	}

	.toms-product-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
		justify-content: center;
		gap: clamp(18px, 2vw, 28px);
		padding-top: 20px;
	}

	.toms-detail-gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(18px, 1.8vw, 28px) !important;
		padding-top: 16px;
	}

	.toms-product-card {
		padding: 22px 22px 24px;
	}

	.toms-product-card:hover {
		transform: translateY(-2px);
	}

	.toms-media-product {
		min-height: clamp(170px, 15vw, 230px) !important;
	}

	.toms-coming {
		gap: 22px;
		margin-top: 28px;
		padding: clamp(48px, 4.5vw, 72px) 40px;
	}

	.toms-coming-label {
		font-size: 14px;
	}

	.toms-tags {
		gap: 12px;
		font-size: 16px;
	}

	.toms-tags span {
		min-height: 44px;
		padding: 12px 20px;
	}

	.toms-coming-title {
		font-size: clamp(32px, 2.4vw, 44px);
	}

	.toms-coming-date {
		font-size: 16px;
	}

	.toms-faq-group {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		padding-top: 18px;
	}

	.toms-faq-heading {
		grid-column: 1 / -1;
		font-size: 16px;
	}

	.toms-bottom-cta {
		gap: 20px;
		padding: 64px max(var(--toms-gutter), calc((100% - var(--toms-content-max)) / 2)) 70px;
	}

	.toms-bottom-buttons {
		max-width: 520px;
	}

	.toms-footer {
		min-height: 112px;
	}
}

@media (max-width: 360px) {
	:root {
		--toms-gutter: 18px;
	}

	.toms-logo::after {
		display: none;
	}

	.toms-hero-title,
	.toms-section-title {
		font-size: 22px;
	}

	.toms-feature {
		font-size: 10px;
	}

	.toms-product-card {
		padding-right: 10px;
		padding-left: 10px;
	}

	.toms-product-title {
		font-size: 15px;
	}

	.toms-outline-button .wp-block-button__link {
		font-size: 12px;
	}
}
