/* ===================================
   CSS Variables
   =================================== */
:root {
	/* 標準変数（components.md 準拠） */
	--color-black-txt:    #1e1e1e;
	--color-black-obj:    #1e1e1e;
	--color-black-border: #dcdcdc;
	--color-white:        #ffffff;
	--color-white-bg:     #f5f0e3;

	/* ブランドカラー */
	--color-primary:      #003005;
	--color-gold:         #c4a030;
	--color-gold-dark:    #b09432;

	/* フォント */
	--font-family-primary:   'Noto Sans JP', sans-serif;
	--font-family-secondary: 'Noto Serif JP', serif;
	--font-family-tertiary:  'Oswald', sans-serif;
	--font-family-quaternary: 'Cormorant Garamond', serif;

	/* フォントウェイト */
	--font-weight-300: 300;
	--font-weight-400: 400;
	--font-weight-500: 500;
	--font-weight-600: 600;
	--font-weight-700: 700;
	--font-weight-900: 900;

	/* フォントサイズ */
	--font-size-x-small: 0.75rem;
	--font-size-small:   0.875rem;
	--font-size-regular: 1rem;
	--font-size-medium:  1.125rem;
	--font-size-large:   1.25rem;
	--font-size-x-large: 1.5rem;
}

@media only screen and (max-width: 480px) {
	:root {
		--font-size-x-small: 0.625rem;
		--font-size-small:   0.75rem;
		--font-size-regular: 0.875rem;
		--font-size-medium:  1rem;
		--font-size-large:   1.125rem;
		--font-size-x-large: 1.25rem;
	}
}

/* ===================================
   Reset
   =================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,del, dfn, em, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, picture, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
}
*, *::before, *::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
}
body {
	color: var(--color-black-txt);
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-400);
	font-size: var(--font-size-regular);
	line-height: 2;
	letter-spacing: 0.06rem;
	line-break: strict;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	background-color: var(--color-white-bg);
	background-image: url(img/bg-natural.png);
	background-repeat: repeat;
}
article, aside, figcaption, figure, picture, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
figure,
picture {
	line-height: 0;
}
figure img,
picture img {
	width: 100%;
	height: auto;
}
img, fieldset {
	border: 0;
}
a, a:visited, a:hover {
	text-decoration: none;
}
a:hover img {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}
strong {
	font-weight: var(--font-weight-600);
}
button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	outline: 0;
	border-radius: 0;
	text-align: inherit;
}
button {
	border: none;
	cursor: pointer;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

a {
	color: inherit;
}

/* ===================================
   Layout Utilities（Component 12）
   =================================== */
.container,
.flexbox {
	width: 87.5%;
	margin-right: auto;
	margin-left: auto;
}

.flexbox {
	display: flex;
	flex-wrap: wrap;
}

.lg {
	max-width: 1200px;
}

.md {
	max-width: 1000px;
}

.sm {
	max-width: 800px;
}

/* ===================================
   Visual Heading（Component 03）
   =================================== */
.visual-hd {
	margin-bottom: 30px;
}

.visual-hd-en {
	display: block;
	color: var(--color-gold);
	font-family: var(--font-family-quaternary);
	font-weight: var(--font-weight-600);
	letter-spacing: 0.26em;
	line-height: 1;
    margin-bottom: 12px;
}

.visual-hd-ja {
	display: block;
	color: var(--color-primary);
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-900);
	font-size: clamp(2rem, 3.5vw, 3.875rem);
    line-height: 1.4;
}

/* ===================================
   Base Heading（Component 02）
   =================================== */
.base-hd {
	margin-bottom: 30px;
}

.base-hd-en {
	display: block;
	font-weight: var(--font-weight-400);
	font-size: var(--font-size-x-small);
	letter-spacing: 0.32em;
	margin-bottom: 4px;
}

.base-hd-ja {
	display: block;
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.5rem, 2vw, 2.25rem);
	line-height: 1;
}

/* ===================================
   Base Button（Component 01）
   =================================== */
.base-btn {
	text-align: center;
	margin-top: 30px;
}

.base-btn a {
	display: block;
    width: min(80%, 320px);
    margin: 0 auto;
    padding: 10px 30px;
    color: var(--color-white);
    font-weight: var(--font-weight-500);
    font-family: var(--font-family-secondary);
    text-align: center;
	-webkit-border-radius: 26px;
	border-radius: 26px;
	background-color: var(--color-primary);
	position: relative;
}

.base-btn a:hover {
	opacity: 0.8;
}

.base-btn a::after {
	content: '';
	display: block;
	width: 6px;
	height: 12px;
	background: url(img/angle-right-white.svg) no-repeat center right;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

/* ===================================
   Hero (#hero)
   =================================== */
#hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-illust {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-illust img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-logo {
	width: min(300px, 60vw);
    margin: 0 auto 40px;
}

.hero-title {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-900);
	font-size: clamp(2.5rem, 5vw, 3.875rem);
	color: var(--color-primary);
	line-height: 1;
}

.hero-tagline {
	display: inline-block;
	margin-bottom: 50px;
    padding: 8px 42px;
	color: var(--color-white);
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-500);
    font-size: var(--font-size-x-large);
	-webkit-border-radius: 8px;
    border-radius: 8px;
	background: var(--color-primary);
}

.hero-tagline-inner {
	color: var(--color-gold);
}

.hero-date {
	font-family: var(--font-family-tertiary);
	font-weight: var(--font-weight-600);
	font-size: clamp(2.5rem, 4vw, 5rem);
	color: var(--color-primary);
	letter-spacing: 0.04em;
	line-height: 1;
}

.hero-date span {
	font-size: 0.6em;
    color: var(--color-gold-dark);
}

@media only screen and (max-width: 768px) {

#hero {
	aspect-ratio: 768 / 1024;
	min-height: unset;
}
.hero-logo {
	width: clamp(7.5rem, 2.729rem + 20.36vw, 12.5rem);
    margin: 0 auto 20px;
}
.hero-title {
	font-size: clamp(1.5rem, 0.546rem + 4.07vw, 2.5rem);
}
.hero-tagline {
	margin-bottom: 30px;
    padding: 8px 20px;
	font-size: clamp(0.75rem, 0.273rem + 2.04vw, 1.25rem);
}
.hero-date {
	font-size: clamp(1.75rem, 1.034rem + 3.05vw, 2.5rem);
}

}
@media only screen and (max-width: 480px) {

#hero {
	aspect-ratio: 375 / 812;
}
.hero-tagline {
	margin-bottom: 16px;
	padding: 6px 12px;
	-webkit-border-radius: 4px;
    border-radius: 4px;
}
	
}


/* ===================================
   Event Report (#event-report)
   =================================== */
#event-report {
	padding: 120px 0;
	background-color: var(--color-primary);
	background-image: url(img/bg-green.png);
	background-repeat: repeat;
	color: var(--color-white);
}

#event-report .visual-hd-ja {
	color: var(--color-white);
}

.event-report-txt {
	margin-bottom: 60px;
}

.event-report-photos {
	overflow: hidden;
	width: 100%;
}

.event-report-track {
	display: flex;
	width: max-content;
	animation: slide-photos 100s linear infinite;
}

.event-report-photos:hover .event-report-track {
	animation-play-state: paused;
}

.event-report-track figure {
	flex-shrink: 0;
	width: 520px;
    height: 292px;
	margin: 0 5px;
	overflow: hidden;
	cursor: pointer;
}

.event-report-track img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.event-report-track figure:hover img {
	transform: scale(1.04);
}

@keyframes slide-photos {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.event-report-track {
		animation: none;
	}
}

@media only screen and (max-width: 768px) {
	.event-report-track figure {
		width: 320px;
		height: 180px;
	}
}

@media only screen and (max-width: 480px) {
	.event-report-track figure {
		width: 240px;
		height: 134px;
	}

	.event-report-txt {
		margin-bottom: 40px;
	}
}

/* ===================================
   Concept (#concept)
   =================================== */
#concept {
	padding: 120px 0;
	text-align: center;
}

.concept-quote {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	color: var(--color-primary);
	margin-bottom: 20px;
	line-height: 1.4;
}

@media only screen and (max-width: 480px) {

#concept {
	text-align: left;
}

.concept-txt {
	text-align: justify;
}

}

/* ===================================
   The Stage (#the-stage)
   =================================== */
#the-stage {
	position: relative;
	overflow: hidden;
}

.the-stage-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.the-stage-bg img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.the-stage-content {
	justify-content: space-between;
    align-items: center;
	position: relative;
	z-index: 1;
	padding: 120px 0;
}

.the-stage-content .visual-hd {
	-ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
	margin-bottom: 0;
}

.the-stage-content .visual-hd-en {
	margin-bottom: 0;
    margin-right: 20px;
}

.the-stage-content .visual-hd-ja {
	color: var(--color-white);
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	letter-spacing: 0.12em;
}

.the-stage-content .visual-hd-ja-inner {
	font-size: 2.25rem;
}

.the-stage-txt {
	color: var(--color-white);
	width: min(80%, 800px);
	text-align: justify;
}

@media only screen and (max-width: 768px) {

.the-stage-content .visual-hd {
	-ms-writing-mode: unset;
    writing-mode: horizontal-tb;
	margin-bottom: 30px;
}

.the-stage-content .visual-hd-en {
	margin-bottom: 12px;
    margin-right: 0;
}

.the-stage-txt {
	width: 100%;
}

}


/* ===================================
   Why Suit (#why-suit)
   =================================== */
#why-suit {
	padding: 120px 0 0;
}

.why-suit-txt {
	max-width: 800px;
    margin: 0 auto;
	text-align: justify;
}

.why-suit-illust {
	margin: 40px auto;
}


/* ===================================
   Event Overview (#event-overview)
   =================================== */
#event-overview {
	padding: 120px 0 0;
}

.event-overview-lead {
	margin-bottom: 50px;
}

/* 情報＋写真 2カラム */
.overview-main {
	justify-content: space-between;
	margin-bottom: 60px;
}

.info-item {
	margin-top: 30px;
}

.info-item:first-child {
	margin-top: 0;
}

.info-label {
	display: inline-block;
	padding: 3px 16px;
	margin-bottom: 10px;
	color: var(--color-white);
	font-size: var(--font-size-small);
    -webkit-border-radius: 4px;
    border-radius: 4px;
	background: var(--color-primary);
}

.info-value {
	font-weight: var(--font-weight-700);
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	line-height: 1.4;
}

.info-value small {
	display: block;
	font-weight: var(--font-weight-400);
	font-size: var(--font-size-small);
	margin-top: 4px;
}

.overview-photo {
	width: 50%;
}

/* 当日の流れ＋参加特典 2カラム */
.overview-sub {
	gap: 60px;
	margin-bottom: 60px;
}

.event-flow,
.event-benefits {
	flex: 1;
	min-width: 0;
}

.overview-sub-hd {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	color: var(--color-black-txt);
	margin-bottom: 24px;
}

/* 当日の流れ ナンバーリスト */
.event-flow-list {
	counter-reset: flow;
	position: relative;
}

.event-flow-list::before {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background-color: var(--color-gold);
	position: absolute;
	left: 26px;
	top: 0;
	z-index: -1;
}

.event-flow-list li {
	counter-increment: flow;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}
.event-flow-list li:first-child {
	margin-top: 0;
}

.event-flow-list li::before {
	content: counter(flow);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
    height: 52px;
	color: var(--color-white);
	font-weight: var(--font-weight-600);
	font-family: var(--font-family-tertiary);
	font-size: var(--font-size-medium);
	background: var(--color-gold);
	border-radius: 50%;
}

/* 参加特典 */
.event-benefits-list li {
	margin-top: 40px;
}
.event-benefits-list li:first-child {
	margin-top: 0;
}
.benefit-label {
	display: inline-block;
    color: var(--color-white);
    font-weight: var(--font-weight-700);
    padding: 4px 16px;
    margin-bottom: 6px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: var(--color-gold);
}

/* マップ */
.event-map {
	width: 320px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
	.overview-main,
	.overview-sub {
		flex-direction: column;
	}

	.overview-photo {
		width: 100%;
		margin-top: 40px;
	}
}

@media only screen and (max-width: 480px) {

.event-overview-lead {
	margin-bottom: 30px;
	text-align: justify;
}

.overview-main {
	margin-bottom: 30px;
}

.overview-sub {
	flex-direction: column;
}

.event-flow-list::before {
	width: 1px;
	left: 18px;
}

.event-flow-list li::before {
	width: 36px;
    height: 36px;
	font-size: var(--font-size-small);
}

.event-benefits-list li {
    margin-top: 20px;
}
	
}

/* ===================================
   Organizer (#organizer)
   =================================== */
#organizer {
	padding: 120px 0 0;
}

.organizer-inner {
	justify-content: space-between;
}

/* 左カラム */
.organizer-host {
	margin-bottom: 50px;
}

.organizer-name {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.25rem, 2vw, 2rem);
	margin-bottom: 16px;
	line-height: 1.4;
}

.organizer-support-hd {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.125rem, 1.5vw, 1.75rem);
	margin-bottom: 16px;
}

.organizer-support ul li {
	margin-top: 16px;
}

.organizer-support ul li:first-child {
	margin-top: 0;
}

/* 右カラム（ファウンダー） */
.organizer-founder {
	width: min(50%, 600px);
}

.founder-profile {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.founder-info {
	flex: 1;
}

.founder-name {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-700);
	font-size: clamp(1.75rem, 3vw, 2rem);
	margin-bottom: 12px;
	line-height: 1.4;
}

.founder-name-en {
	display: inline-block;
    margin-left: 20px;
    font-size: var(--font-size-regular);
    font-family: var(--font-family-quaternary);
    letter-spacing: 0.26em;
}

.founder-title {
	font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-700);
}

.founder-photo {
	width: 200px;
}

.founder-bio {
	font-size: var(--font-size-small);
	text-align: justify;
}

@media only screen and (max-width: 1024px) {
	.organizer-inner {
		flex-direction: column;
	}

	.organizer-left {
		width: 100%;
	}

	.organizer-founder {
		width: 100%;
		margin-top: 40px;
	}

	.founder-info {
		flex: unset;
		margin-right: 40px;
	}
}

@media only screen and (max-width: 480px) {

.founder-profile {
	align-items: flex-start;
	flex-direction: column;
}

.founder-info {
	margin-right: 0;
	margin-bottom: 20px;
}

.founder-bio {
	font-size: var(--font-size-regular);
}

}

/* ===================================
   Supporters (#supporters)
   =================================== */
#supporters {
	padding: 120px 0;
}

#supporters .visual-hd-ja {
	font-size: clamp(2rem, 3.5vw, 3.25rem);
}

/* 数値ボックス */
.supporters-stats {
	width: 100%;
	justify-content: space-between;
	margin-bottom: 30px;
}

.stat-box {
	width: min(46.25%, 370px);
    border: 1px solid var(--color-gold-dark);
    padding: 24px 20px;
    font-family: var(--font-family-secondary);
    text-align: center;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #fffaef;
}

.stat-label {
	color: var(--color-gold-dark);
    font-weight: var(--font-weight-700);
    margin-bottom: 6px;
}

.stat-value {
	font-weight: var(--font-weight-900);
    font-size: clamp(2rem, 4vw, 2.625rem);
    line-height: 1;
}

.stat-value span {
	font-size: 0.6em;
	margin-left: 4px;
}

/* 本文 */
.supporters-txt {
	margin: 0 auto 20px;
}

/* 支援者リスト */
.supporters-list {
	border: 1px solid var(--color-gold-dark);
    padding: 30px 50px;
	line-height: 2.6;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #fffaef;
}

.supporters-list li {
	display: inline-block;
    margin-right: 30px;
	font-size: var(--font-size-small);
}

.supporters-list li::before {
	content: '◆';
	display: inline-block;
	margin-right: 4px;
	color: var(--color-gold-dark);
	font-size: var(--font-size-x-small);
}

.supporters-campfire a {
	font-size: var(--font-size-small);
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.supporters-campfire a:hover {
	opacity: 0.7;
}

.supporters-thanks {
	margin: 20px auto;
}

.supporters-campfire {
	text-align: right;
}

@media only screen and (max-width: 480px) {

.supporters-stats {
	flex-direction: column;
}
.stat-box {
	width: 100%;
	margin-top: 20px;
}
.stat-box:first-child {
	margin-top: 0;
}
.supporters-txt,
.supporters-thanks {
	text-align: justify;
}
.supporters-list {
	padding: 20px;
}
.supporters-list li {
	margin-right: 12px;
}

}

/* ===================================
   Next Event / Footer (#next-event)
   =================================== */
#next-event {
	background-color: var(--color-gold-dark);
	background-image: url(img/bg-gold.png);
	background-repeat: repeat;
	color: var(--color-white);
	padding: 120px 0 30px;
	text-align: center;
}

#next-event .visual-hd-en {
	color: var(--color-white);
}

.next-event-title {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-900);
    font-size: clamp(1.75rem, 3.5vw, 2.625rem);
	line-height: 1.4;
	margin-bottom: 16px;
}

.next-event-title span {
	display: block;
}

.next-event-date {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-900);
	font-size: clamp(2rem, 5vw, 3.875rem);
	line-height: 1.2;
	margin-bottom: 40px;
}

#next-event .base-btn a::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 20px;
	vertical-align: sub;
	background: url(img/icon-instagram.svg) no-repeat center right;
	background-size: contain;
}

.copyright {
	display: block;
    margin-top: 60px;
    font-size: var(--font-size-small);
    font-family: var(--font-family-quaternary);
    letter-spacing: 0.26em;
}

/* ===================================
   Responsive（共通）
   =================================== */
@media only screen and (max-width: 768px) {
	#event-report,
	#concept,
	.the-stage-content,
	#supporters {
		padding: 60px 0;
	}

	#why-suit,
	#event-overview,
	#organizer {
		padding: 60px 0 0;
	}

	#next-event {
		padding: 60px 0 30px;
	}
}

/* ===================================
   Photo Modal（ライトボックス）
   =================================== */
.photo-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	pointer-events: none;
}

.photo-modal.is-open {
	visibility: visible;
	pointer-events: auto;
}

.photo-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	transition: opacity 0.3s;
}

.photo-modal.is-open .photo-modal-overlay {
	opacity: 1;
}

.photo-modal-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 0.3s, transform 0.3s;
}

.photo-modal.is-open .photo-modal-inner {
	opacity: 1;
	transform: scale(1);
}

.photo-modal-figure {
	margin: 0;
}

.photo-modal-img {
	display: block;
	max-width: 90vw;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.photo-modal-close {
	position: absolute;
	top: -52px;
	right: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	font-size: var(--font-size-x-large);
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.photo-modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
}

.photo-modal-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.photo-modal-prev,
.photo-modal-next {
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	font-size: var(--font-size-x-large);
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.photo-modal-prev:hover,
.photo-modal-next:hover {
	background: rgba(255, 255, 255, 0.15);
}

.photo-modal-counter {
	font-size: var(--font-size-small);
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.1em;
	min-width: 56px;
	text-align: center;
}
