@charset "UTF-8";
/**
 * Yumeido — テック／モダンダーク
 *
 * 1.  トークン
 * 2.  ベース
 * 3.  レイアウト（shell / section）
 * 4.  パーツ（btn / tag / meta / icon）
 * 5.  ヘッダー・ナビ
 * 6.  ヒーロー
 * 7.  カード
 * 8.  お知らせ
 * 9.  CTA
 * 10. 下層ページ（page-head / entry-content）
 * 11. 一覧・ページネーション・検索
 * 12. フォーム・コメント
 * 13. フッター
 * 14. アニメーション
 * 15. レスポンシブ
 */

/* ==========================================================================
   1. トークン
   ========================================================================== */

:root {
	--bg: #080C15;
	--bg-2: #0C1220;
	--surface: #141D31;
	--surface-2: #16203607;
	--surface-hi: #1D2846;
	--line: rgba(150, 175, 220, 0.14);
	--line-hi: rgba(150, 175, 220, 0.32);

	--text: #E9EEF9;
	/* --text-dim は UI ラベル向け。読ませる本文には明るい --text-body を使う。 */
	--text-dim: #A6B3CC;
	--text-body: #D6DFF0;
	--text-faint: #78879F;

	--accent: #FF9000;
	--accent-hi: #FFB03D;
	--accent-deep: #F26A00;
	--cyan: #4FD1F5;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;

	--shell: 1200px;
	--shell-narrow: 860px;
	--shell-article: 1060px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
		"Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
		"Yu Gothic UI", Meiryo, sans-serif;
	--font-mono: "SF Mono", ui-monospace, "Roboto Mono", Menlo, Consolas, monospace;
}

/* ==========================================================================
   2. ベース
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* 画面全体にうっすら光を敷いて、真っ黒な平面に見えないようにする。 */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(60vw 50vh at 82% -8%, rgba(255, 144, 0, 0.1), transparent 65%),
		radial-gradient(52vw 46vh at 6% 12%, rgba(79, 209, 245, 0.07), transparent 62%);
}

.site {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.site-main {
	flex: 1 0 auto;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--accent-hi);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

a:hover {
	color: var(--accent);
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0 0 0.6em;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1.4em;
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	padding-left: 1.3em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 999;
	padding: 10px 18px;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	background: var(--accent);
	color: #10131C;
	font-weight: 700;
}

.skip-link:focus {
	top: 0;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ==========================================================================
   3. レイアウト
   ========================================================================== */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: clamp(20px, 5vw, 40px);
}

.shell--narrow {
	max-width: var(--shell-narrow);
}

.shell--article {
	max-width: var(--shell-article);
}

.section {
	position: relative;
	padding-block: clamp(56px, 7vw, 96px);
}

.section--services {
	padding-top: clamp(64px, 8vw, 112px);
}

.section--news {
	background:
		linear-gradient(180deg, transparent, rgba(12, 18, 32, 0.85) 12%, rgba(12, 18, 32, 0.85) 88%, transparent);
}

.section__head {
	margin-bottom: clamp(36px, 5vw, 60px);
	max-width: 720px;
}

.section__head--row {
	display: flex;
	max-width: none;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.section__label {
	margin: 0 0 12px;
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.section__title {
	margin: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	letter-spacing: -0.02em;
}

.section__title::after {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	margin-top: 18px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}

.section__head--row .section__title::after {
	margin-top: 14px;
}

.section__lead {
	margin: 18px 0 0;
	color: var(--text-dim);
}

/* ==========================================================================
   4. パーツ
   ========================================================================== */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
		background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s var(--ease);
}

.btn .icon {
	width: 17px;
	height: 17px;
	transition: transform 0.25s var(--ease);
}

.btn:hover .icon {
	transform: translateX(4px);
}

.btn--accent {
	background: linear-gradient(135deg, var(--accent-hi), var(--accent-deep));
	color: #14161E;
	box-shadow: 0 10px 30px -12px rgba(255, 144, 0, 0.75);
}

.btn--accent:hover {
	color: #14161E;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px -14px rgba(255, 144, 0, 0.9);
}

.btn--ghost {
	border-color: var(--line-hi);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	backdrop-filter: blur(8px);
}

.btn--ghost:hover {
	border-color: var(--accent);
	background: rgba(255, 144, 0, 0.1);
	color: var(--text);
	transform: translateY(-2px);
}

.btn--sm {
	padding: 10px 18px;
	font-size: 13.5px;
}

.btn--lg {
	padding: 17px 34px;
	font-size: 16px;
}

.icon {
	width: 22px;
	height: 22px;
	flex: none;
	vertical-align: middle;
}

.tag {
	display: inline-block;
	padding: 3px 10px;
	border: 1px solid rgba(255, 144, 0, 0.32);
	border-radius: 999px;
	background: rgba(255, 144, 0, 0.1);
	color: var(--accent-hi);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.6;
	white-space: nowrap;
}

.meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.meta__date {
	color: var(--text-faint);
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: 0.1em;
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-dim);
	font-size: 14px;
	font-weight: 600;
}

.link-more .icon {
	width: 16px;
	height: 16px;
	transition: transform 0.25s var(--ease);
}

.link-more:hover {
	color: var(--accent);
}

.link-more:hover .icon {
	transform: translateX(4px);
}

/* ==========================================================================
   5. ヘッダー・ナビ
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
		backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	background: rgba(8, 12, 21, 0.82);
	backdrop-filter: blur(16px) saturate(150%);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 74px;
}

.site-brand {
	display: flex;
	align-items: center;
}

.site-brand img,
.custom-logo {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}

.site-brand__text {
	color: var(--text);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list a {
	display: block;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	color: var(--text-dim);
	font-size: 14.5px;
	font-weight: 600;
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav__list a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--accent);
}

/* サブメニュー */
.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 20;
	min-width: 210px;
	padding: 8px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(16, 24, 42, 0.97);
	box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.9);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	backdrop-filter: blur(14px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下に開くことが分かるように、子を持つ項目には矢印を出す。 */
.site-nav__list .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-left: 7px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	opacity: 0.65;
	transform: translateY(-2px) rotate(45deg);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
}

.nav-toggle__bars {
	display: block;
	position: relative;
	width: 18px;
	height: 12px;
	margin: 0 auto;
}

.nav-toggle__bars span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle__bars span:nth-child(1) {
	top: 0;
}

.nav-toggle__bars span:nth-child(2) {
	top: 5px;
}

.nav-toggle__bars span:nth-child(3) {
	top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

/* ==========================================================================
   6. ヒーロー
   ========================================================================== */

.hero {
	/* 背景写真の沈め具合。文字の可読性と写真の見え方のバランスをここで調整する。 */
	--hero-brightness: 0.78;
	--hero-saturate: 0.88;
	--hero-veil-top: 0.60;
	--hero-veil-mid: 0.26;
	--hero-veil-left: 0.72;
	--hero-veil-left-mid: 0.06;

	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(520px, 78vh, 780px);
	margin-top: -74px;
	padding-top: 74px;
	overflow: hidden;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image: var(--hero-image, none);
	background-size: cover;
	background-position: center;
	filter: saturate(var(--hero-saturate)) contrast(1.08) brightness(var(--hero-brightness));
	transform: scale(1.04);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(180deg, rgba(8, 12, 21, var(--hero-veil-top)) 0%, rgba(8, 12, 21, var(--hero-veil-mid)) 42%, var(--bg) 100%),
		linear-gradient(100deg, rgba(8, 12, 21, var(--hero-veil-left)) 0%, rgba(8, 12, 21, var(--hero-veil-left-mid)) 60%, transparent 100%);
}

/* 技術的な質感を出すための細いグリッド。 */
.hero__grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(150, 175, 220, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(150, 175, 220, 0.07) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(80% 70% at 30% 45%, #000 0%, transparent 78%);
	-webkit-mask-image: radial-gradient(80% 70% at 30% 45%, #000 0%, transparent 78%);
}

.hero__glow {
	position: absolute;
	right: -12%;
	bottom: -35%;
	z-index: -1;
	width: 62vw;
	height: 62vw;
	max-width: 900px;
	max-height: 900px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 144, 0, 0.2), transparent 62%);
	filter: blur(20px);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	padding-block: clamp(60px, 10vh, 110px);
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	padding: 7px 16px 7px 12px;
	border: 1px solid var(--line-hi);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-dim);
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.hero__eyebrow .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(255, 144, 0, 0.6);
	animation: yumeido-pulse 2.6s infinite;
}

@keyframes yumeido-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 144, 0, 0.55);
	}
	70% {
		box-shadow: 0 0 0 9px rgba(255, 144, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 144, 0, 0);
	}
}

.hero__title {
	/* 日本語の禁則処理に折り返しを任せたいので、幅で先に切らない。 */
	max-width: 21em;
	margin: 0 0 24px;
	line-break: strict;
	font-size: clamp(2.1rem, 5.4vw, 3.9rem);
	font-weight: 800;
	line-height: 1.24;
	letter-spacing: -0.03em;
	text-wrap: balance;
	background: linear-gradient(120deg, #FFFFFF 22%, #C9D6EE 78%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	max-width: 46em;
	margin: 0 0 36px;
	/* 写真の明るい部分に重なっても沈まないよう、本文より明るめ＋薄い影を敷く。 */
	color: #DCE4F2;
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.95;
	text-shadow: 0 1px 14px rgba(8, 12, 21, 0.7);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ==========================================================================
   7. カード
   ========================================================================== */

.cards {
	display: grid;
	gap: clamp(16px, 2vw, 24px);
}

.cards--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 30px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)) ,
		var(--surface);
	color: inherit;
	overflow: hidden;
	transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
}

/* ホバー時に上端から差す光。 */
.card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 12%;
	width: 76%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	opacity: 0;
	transition: opacity 0.35s var(--ease);
}

a.card:hover,
.card--post:hover {
	transform: translateY(-5px);
	border-color: var(--line-hi);
	box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.95);
}

a.card:hover::before,
.card--post:hover::before {
	opacity: 1;
}

.card__index {
	position: absolute;
	top: 18px;
	right: 24px;
	color: rgba(150, 175, 220, 0.16);
	font-family: var(--font-mono);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.04em;
	transition: color 0.35s var(--ease);
}

a.card:hover .card__index {
	color: rgba(255, 144, 0, 0.28);
}

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 144, 0, 0.26);
	border-radius: 15px;
	background: linear-gradient(140deg, rgba(255, 144, 0, 0.18), rgba(255, 144, 0, 0.04));
	color: var(--accent);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card__icon .icon {
	width: 24px;
	height: 24px;
}

a.card:hover .card__icon {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px -12px rgba(255, 144, 0, 0.7);
}

.card__title {
	margin: 0 0 12px;
	font-size: 18.5px;
	letter-spacing: -0.01em;
}

.card__text {
	margin: 0;
	color: var(--text-dim);
	font-size: 14.5px;
	line-height: 1.9;
}

.card__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 22px;
	color: var(--accent);
	font-size: 13.5px;
	font-weight: 700;
}

.card__more .icon {
	width: 15px;
	height: 15px;
	transition: transform 0.3s var(--ease);
}

a.card:hover .card__more .icon,
.card--post:hover .card__more .icon {
	transform: translateX(5px);
}

/* 投稿カード */
.card--post {
	padding: 0;
}

.card--post__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.card--post__thumb {
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--bg-2);
}

.card--post__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.card--post:hover .card--post__thumb img {
	transform: scale(1.05);
}

.card--post__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 26px 28px;
}

.card--post__body .card__more {
	margin-top: auto;
	padding-top: 20px;
}

/* ==========================================================================
   8. お知らせ
   ========================================================================== */

.news-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}

.news-item {
	border-bottom: 1px solid var(--line);
}

.news-item__link {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 12px;
	color: var(--text);
	transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}

.news-item__title {
	flex: 1;
}

.news-item__link:hover {
	padding-inline: 20px 4px;
	background: linear-gradient(90deg, rgba(255, 144, 0, 0.07), transparent 70%);
	color: var(--text);
}

.news-item .meta__date {
	color: var(--accent);
	font-size: 13px;
}

.news-item__title {
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.7;
}

.news-item__arrow {
	display: inline-flex;
	color: var(--text-faint);
	transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.news-item__arrow .icon {
	width: 18px;
	height: 18px;
}

.news-item__link:hover .news-item__arrow {
	transform: translateX(4px);
	color: var(--accent);
}

/* ==========================================================================
   9. CTA
   ========================================================================== */

/* クラス名は cta-panel。本文側で使われている .cta と衝突させないため。 */
.cta-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding: clamp(34px, 5vw, 56px) clamp(28px, 5vw, 60px);
	border: 1px solid rgba(255, 144, 0, 0.24);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(120% 160% at 90% 0%, rgba(255, 144, 0, 0.16), transparent 60%),
		linear-gradient(135deg, var(--surface-hi), var(--surface));
	overflow: hidden;
}

.cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(150, 175, 220, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(150, 175, 220, 0.06) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(115deg, #000, transparent 62%);
	-webkit-mask-image: linear-gradient(115deg, #000, transparent 62%);
	pointer-events: none;
}

.cta-panel__body {
	position: relative;
	max-width: 34em;
}

.cta-panel__title {
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 2.6vw, 1.8rem);
	letter-spacing: -0.02em;
}

.cta-panel__text {
	margin: 0;
	color: var(--text-dim);
	font-size: 14.5px;
}

.cta-panel .btn {
	position: relative;
}

/* ==========================================================================
   10. 下層ページ
   ========================================================================== */

.page-head {
	position: relative;
	padding-block: clamp(46px, 7vw, 84px) clamp(30px, 4vw, 48px);
	margin-top: -74px;
	padding-top: calc(74px + clamp(46px, 7vw, 84px));
	/* 帯を本文よりはっきり明るくして、ページに階調をつける。 */
	background: linear-gradient(180deg, #17213A 0%, var(--bg-2) 58%, var(--bg) 100%);
	overflow: hidden;
}

/* 帯と本文の境目に走る光。単なる 1px の罫線より、帯の終わりが立つ。 */
.page-head::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 3%, rgba(255, 144, 0, 0.5) 26%, rgba(79, 209, 245, 0.22) 64%, transparent 97%);
}

.page-head__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(150, 175, 220, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(150, 175, 220, 0.055) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(70% 120% at 20% 0%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(70% 120% at 20% 0%, #000, transparent 75%);
	pointer-events: none;
}

.page-head .shell {
	position: relative;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	color: var(--text-faint);
	font-size: 12.5px;
}

.breadcrumb a {
	color: var(--text-faint);
}

.breadcrumb a:hover {
	color: var(--accent);
}

.breadcrumb__current {
	color: var(--text-dim);
}

.page-head__title {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.page-head__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.section--single {
	padding-block: clamp(48px, 6vw, 76px) clamp(64px, 8vw, 104px);
}

/* --- 記事の 2 カラム（左：日付・カテゴリ／右：本文） --- */

.entry-layout {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}

.entry-side__inner {
	position: sticky;
	top: 104px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding-top: 14px;
	border-top: 2px solid var(--accent);
}

.entry-side .meta__date {
	color: var(--text-dim);
	font-size: 13px;
}

.entry-side__tags {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-side__tags li {
	margin-bottom: 4px;
}

.entry-side__tags a {
	color: var(--text-faint);
	font-size: 12.5px;
}

.entry-side__tags a:hover {
	color: var(--accent);
}

.entry-side__back {
	margin-top: 4px;
	color: var(--text-dim);
	font-size: 13px;
	font-weight: 600;
}

.entry-side__back::before {
	content: "←";
	margin-right: 7px;
}

.entry-side__back:hover {
	color: var(--accent);
}

/* --- 本文 --- */

/* 本文は面に載せず地に直接置く。読みやすさは文字の側（色・大きさ・行間）で作る。 */
.entry-content {
	font-size: 16.5px;
	line-height: 2.05;
	color: var(--text-body);
}

.entry-content > * + * {
	margin-top: 1.5em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--text);
	scroll-margin-top: 100px;
}

.entry-content h2 {
	margin-top: 2.4em;
	padding-left: 16px;
	border-left: 3px solid var(--accent);
	font-size: 1.5rem;
	line-height: 1.5;
}

.entry-content h3 {
	margin-top: 2em;
	font-size: 1.2rem;
}

.entry-content h4 {
	margin-top: 1.8em;
	font-size: 1.05rem;
}

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

.entry-content a {
	color: var(--accent-hi);
	text-decoration: underline;
	text-decoration-color: rgba(255, 176, 61, 0.4);
	text-underline-offset: 3px;
}

.entry-content a:hover {
	text-decoration-color: var(--accent);
}

.entry-content strong,
.entry-content b {
	color: var(--text);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content li::marker {
	color: var(--accent);
}

.entry-content img {
	border-radius: var(--radius);
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 20px 26px;
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: rgba(255, 255, 255, 0.035);
}

.entry-content hr,
.wp-block-separator {
	height: 1px;
	border: 0;
	background: var(--line);
}

.entry-content code,
.entry-content kbd {
	padding: 2px 7px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--accent-hi);
	font-family: var(--font-mono);
	font-size: 0.9em;
}

.entry-content pre {
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #0A0F1C;
	overflow-x: auto;
}

.entry-content pre code {
	padding: 0;
	border: 0;
	background: none;
	color: var(--text-dim);
}

/* テーブル（会社概要などで使われている） */
.entry-content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: 14.5px;
}

.entry-content th,
.entry-content td {
	padding: 15px 18px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.entry-content tr:last-child th,
.entry-content tr:last-child td {
	border-bottom: 0;
}

.entry-content th,
.entry-content tbody tr > td:first-child {
	width: 30%;
	min-width: 8em;
	background: rgba(255, 255, 255, 0.035);
	color: var(--text);
	font-weight: 600;
	white-space: nowrap;
}

.entry-content tbody tr > td:first-child {
	border-right: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
 * 既存コンテンツ互換
 *
 * 記事や固定ページには、明るい背景を前提に付けられた色指定（エディタの
 * カラープリセットや手書きの style 属性）が残っている。暗い背景では読めない
 * ものだけを打ち消し、それ以外の意図的な色は残す。
 * ----------------------------------------------------------------------- */

/* 旧テーマは見出しの上に余白が無く、本文側が <br> で間隔を作っていた。
   その先頭の改行が残っていると、見出し左の線が 2 行分に伸びてしまう。
   間隔はテーマの margin が持つので、先頭の <br> だけ消す。 */
.entry-content h1 > br:first-child,
.entry-content h2 > br:first-child,
.entry-content h3 > br:first-child,
.entry-content h4 > br:first-child,
.entry-content h5 > br:first-child,
.entry-content h6 > br:first-child {
	display: none;
}

.entry-content .has-black-color,
.entry-content .has-black-color a,
.entry-content [style*="color:#000"],
.entry-content [style*="color: #000"],
.entry-content [style*="color:black"] {
	color: var(--text-dim) !important;
}

.entry-content h1.has-black-color,
.entry-content h2.has-black-color,
.entry-content h3.has-black-color,
.entry-content h4.has-black-color {
	color: var(--text) !important;
}

/* 濃い青のリンク指定は、暗い背景ではアクセント色の方が読みやすい。 */
.entry-content [style*="color:#0000ee"],
.entry-content [style*="color: #0000ee"],
.entry-content [style*="color:blue"],
.entry-content [style*="color: blue"] {
	color: var(--accent-hi) !important;
}

.entry-content .has-vivid-red-color {
	color: #FF7B7B !important;
}

.entry-content .has-vivid-cyan-blue-color {
	color: var(--cyan) !important;
}

.entry-content .has-white-background-color,
.entry-content [style*="background:#fff"],
.entry-content [style*="background-color:#fff"] {
	background-color: rgba(255, 255, 255, 0.05) !important;
}

/* マーカー（mark）。透明指定はそのまま透明に、淡いピンクの強調は暗背景向けに置き換える。 */
.entry-content mark[style*="rgba(0, 0, 0, 0)"] {
	background-color: transparent !important;
}

.entry-content [style*="#fdacac"] {
	padding: 1px 6px;
	border-radius: 5px;
	background-color: rgba(255, 122, 122, 0.18) !important;
	color: #FFC9C9 !important;
}

/* --- 固定ページ内に手書きされていたレイアウト（.custom）をテーマ配色に載せ替える --- */
.entry-content .custom .service {
	margin-bottom: 56px;
}

.entry-content .custom .service:last-child {
	margin-bottom: 0;
}

.entry-content .custom .highlight {
	margin-top: 20px;
	padding: 24px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
}

.entry-content .custom .highlight strong {
	display: block;
	margin-bottom: 10px;
	color: var(--accent);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.entry-content .custom .highlight ul {
	margin: 0;
}

.entry-content .custom .cta {
	margin-top: 26px;
	text-align: left;
}

.entry-content .custom .cta a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent-hi), var(--accent-deep));
	color: #14161E !important;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 30px -12px rgba(255, 144, 0, 0.75);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.entry-content .custom .cta a:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px -14px rgba(255, 144, 0, 0.9);
}

.entry-content iframe {
	max-width: 100%;
	border-radius: var(--radius);
}

.entry__thumb {
	margin: 0 0 36px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.entry__tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.entry__tags a {
	display: inline-block;
	padding: 5px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text-dim);
	font-size: 12.5px;
}

.entry__tags a:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* 投稿ナビ */
.post-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
}

.post-nav__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--text);
	transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.post-nav__item:hover {
	border-color: var(--line-hi);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
}

.post-nav__item--next {
	text-align: right;
}

.post-nav__label {
	color: var(--text-faint);
	font-size: 11.5px;
	letter-spacing: 0.12em;
}

.post-nav__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.post-nav__index {
	padding: 12px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text-dim);
	font-size: 13px;
	font-weight: 600;
}

.post-nav__index:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* 404 */
.notfound {
	padding-block: clamp(50px, 8vw, 90px);
	text-align: center;
}

.notfound__code {
	margin: 0;
	font-family: var(--font-mono);
	font-size: clamp(4.5rem, 14vw, 9rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	background: linear-gradient(135deg, var(--accent), rgba(255, 144, 0, 0.1));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.notfound__title {
	margin: 18px 0 10px;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.notfound__text {
	color: var(--text-dim);
}

.notfound .search-form {
	max-width: 460px;
	margin: 28px auto 30px;
}

/* ==========================================================================
   11. 一覧・ページネーション
   ========================================================================== */

.section--archive {
	padding-block: clamp(48px, 6vw, 76px) clamp(64px, 8vw, 104px);
}

.archive-search {
	max-width: 520px;
	margin-bottom: 40px;
}

.empty {
	padding: 60px 0;
	color: var(--text-dim);
	text-align: center;
}

.empty .search-form {
	max-width: 460px;
	margin: 24px auto 0;
}

.pagination {
	margin-top: 56px;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--text-dim);
	font-family: var(--font-mono);
	font-size: 14px;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
		background 0.2s var(--ease);
}

.pagination .page-numbers:hover {
	border-color: var(--line-hi);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
}

.pagination .page-numbers.current {
	border-color: transparent;
	background: linear-gradient(135deg, var(--accent-hi), var(--accent-deep));
	color: #14161E;
	font-weight: 700;
}

.pagination .page-numbers.dots {
	border-color: transparent;
}

.page-links {
	display: flex;
	gap: 8px;
	margin-top: 32px;
}

/* ==========================================================================
   12. フォーム・コメント
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.6;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

input::placeholder,
textarea::placeholder {
	color: var(--text-faint);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.06);
	outline: none;
}

select option {
	background: var(--surface);
	color: var(--text);
}

textarea {
	min-height: 170px;
	resize: vertical;
}

button,
input[type="submit"],
.wpcf7-submit {
	padding: 14px 30px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent-hi), var(--accent-deep));
	color: #14161E;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

input[type="submit"]:hover,
.wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px -14px rgba(255, 144, 0, 0.85);
}

/* Contact Form 7 */
.wpcf7 form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	border-width: 1px;
	font-size: 14px;
}

.wpcf7-not-valid-tip {
	color: #FF8080;
	font-size: 13px;
}

.wpcf7 label {
	display: block;
	margin-bottom: 6px;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
}

.wpcf7 p {
	margin-bottom: 22px;
}

/* 検索フォーム */
.search-form {
	display: flex;
	gap: 10px;
}

.search-form__field {
	flex: 1;
}

.search-form__submit {
	padding-inline: 24px;
	white-space: nowrap;
}

/* コメント */
.comments {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
}

.comments__title {
	font-size: 1.2rem;
}

.comment-list {
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}

.comment-list li {
	margin-bottom: 20px;
	padding: 20px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.comment-list .children {
	margin-top: 18px;
	padding-left: 20px;
	list-style: none;
	border-left: 1px solid var(--line);
}

.comment-meta {
	margin-bottom: 10px;
	font-size: 13px;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
}

.comment-form p {
	margin-bottom: 20px;
}

/* サイドバー・ウィジェット共通 */
.widget {
	margin-bottom: 32px;
}

.widget__title,
.widget h2,
.widget h3 {
	margin: 0 0 16px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	margin-bottom: 10px;
}

/* ==========================================================================
   13. フッター
   ========================================================================== */

.site-footer {
	position: relative;
	margin-top: auto;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, var(--bg-2), #05070C);
}

/* 列数はフッターのウィジェット数に合わせて PHP から --footer-cols で渡す。
   auto-fit と fr の併用はトラック数が解決できず 1 列に潰れるため使わない。 */
.site-footer__widgets {
	display: grid;
	grid-template-columns: 1.5fr repeat(var(--footer-cols, 2), minmax(0, 1fr));
	gap: clamp(28px, 4vw, 56px);
	padding-block: clamp(48px, 6vw, 76px);
}

.site-footer__brand img,
.site-footer__brand .custom-logo {
	max-height: 44px;
	width: auto;
}

.site-footer__name {
	color: var(--text);
	font-size: 18px;
	font-weight: 800;
}

.site-footer__desc {
	margin: 14px 0 0;
	color: var(--text-faint);
	font-size: 13.5px;
	line-height: 1.9;
}

.site-footer__col .widget {
	margin-bottom: 0;
}

.site-footer__col .widget + .widget {
	margin-top: 14px;
}

.site-footer__col h2,
.site-footer__col h3 {
	margin: 0 0 4px;
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: none;
}

.site-footer__col h3::after {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	margin-top: 12px;
	border-radius: 2px;
	background: var(--accent);
}

.site-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__col li {
	margin-bottom: 2px;
}

.site-footer__col li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--text-dim);
	font-size: 14px;
	transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-footer__col li a::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(150, 175, 220, 0.35);
	transition: background 0.2s var(--ease);
}

.site-footer__col li a:hover {
	color: var(--accent);
	transform: translateX(3px);
}

.site-footer__col li a:hover::before {
	background: var(--accent);
}

.site-footer__bottom {
	border-top: 1px solid var(--line);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-block: 22px;
}

.site-footer__copy {
	margin: 0;
	color: var(--text-faint);
	font-size: 12.5px;
	letter-spacing: 0.04em;
}

.site-footer__menu {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	color: var(--text-faint);
	font-size: 12.5px;
}

.site-footer__menu a:hover {
	color: var(--accent);
}

/* ==========================================================================
   14. アニメーション
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   15. レスポンシブ
   ========================================================================== */

@media (max-width: 980px) {
	.nav-toggle {
		display: block;
		order: 3;
	}

	.site-nav {
		position: fixed;
		inset: 74px 0 auto;
		z-index: 90;
		display: block;
		max-height: calc(100vh - 74px);
		padding: 20px clamp(20px, 5vw, 40px) 34px;
		border-bottom: 1px solid var(--line);
		background: rgba(8, 12, 21, 0.97);
		backdrop-filter: blur(18px);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-nav__list {
		display: block;
	}

	.site-nav__list a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--line);
		border-radius: 0;
		font-size: 15.5px;
	}

	/* モバイルではサブメニューを最初から開いているので、矢印は出さない。 */
	.site-nav__list .menu-item-has-children > a::after {
		display: none;
	}

	.site-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		padding: 0 0 0 16px;
		border: 0;
		background: none;
		box-shadow: none;
	}

	.site-nav__cta {
		display: inline-flex;
		margin-top: 20px;
	}

	.entry-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.entry-side__inner {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px;
	}

	.entry-side__tags {
		display: flex;
		gap: 10px;
	}

	.entry-side__tags li {
		margin-bottom: 0;
	}

	.entry-side__back {
		margin: 0 0 0 auto;
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.post-nav {
		grid-template-columns: 1fr;
	}

	.post-nav__item--next {
		text-align: left;
	}

	.post-nav__index {
		justify-self: center;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 15.5px;
	}

	.news-item__link {
		flex-wrap: wrap;
		gap: 6px 12px;
		padding-inline: 4px;
	}

	.news-item__title {
		flex: 1 0 100%;
	}

	.news-item__arrow {
		display: none;
	}

	.news-item__link:hover {
		padding-inline: 8px;
	}

	.cta-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.entry-content table,
	.entry-content thead,
	.entry-content tbody,
	.entry-content tr,
	.entry-content th,
	.entry-content td {
		display: block;
		width: 100% !important;
		white-space: normal;
	}

	.entry-content tbody tr > td:first-child {
		border-right: 0;
		border-bottom: 0;
		padding-bottom: 4px;
		font-size: 12.5px;
		color: var(--accent);
		background: none;
	}

	.entry-content tr {
		border-bottom: 1px solid var(--line);
		padding-block: 6px;
	}

	.entry-content tr:last-child {
		border-bottom: 0;
	}

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

	.site-footer__widgets {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
