/**
 * main.css — セクションごとの装飾をここに集約する。
 * セクション単位のブロックをコメントで区切り、上から順に並べる。
 */

/* ==========================================================================
 * Shared section heading
 * ======================================================================== */
.section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	width: 100%;
	text-align: center;
}

.section-heading__title {
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-section-heading-title);
	line-height: var(--line-height-tight);
	color: var(--color-text-inverse);
	margin: 0;
}

.section-heading__subtitle {
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-lg);
	color: var(--color-text-inverse);
	letter-spacing: var(--letter-spacing-base);
}

/* Dark heading variant (on light backgrounds) */
.section-heading--dark .section-heading__title,
.section-heading--dark .section-heading__subtitle {
	color: var(--color-text-default);
}

/* ==========================================================================
 * Shared sub-heading (yellow label)
 * ======================================================================== */
.subheading {
	display: flex;
	justify-content: flex-start;
	margin: 0;
}

.subheading__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-bg-subtitle);
	color: var(--color-text-default);
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-lg);
	line-height: var(--line-height-solid);
	padding: var(--space-3) var(--space-4) calc(var(--space-3) + 3px);
}


.illust-step-rotate {
	animation: illust-step-rotate 1s steps(1, end) infinite;
	transform-origin: center center;
}

@keyframes illust-step-rotate {
	0%,
	49% {
		transform: rotate(0deg);
	}

	50%,
	100% {
		transform: rotate(10deg);
	}
}

/* ==========================================================================
 * Shared button
 * ======================================================================== */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	width: 100%;
	padding: 12px var(--space-5);
	border-radius: var(--radius-pill);
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-md);
	text-align: center;
	text-decoration: none;
	transition: background-color var(--transition-base), color var(--transition-base);
	box-sizing: border-box;
}

.button--primary {
	background-color: var(--color-bg-brown-dark);
	color: var(--color-text-inverse) !important;
}

.button--primary:hover,
.button--primary:focus-visible {
	background-color: var(--color-bg-brown);
	color: var(--color-text-inverse);
}

.button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: var(--line-height-solid);
}

/* Font Awesome 7（CDN）— ボタン内アイコンは本文フォントに引っ張られないよう分離 */
.button__icon .fa-solid {
	font-size: 1em;
	line-height: var(--line-height-solid);
}


/* ==========================================================================
 * Shared section scaffolding
 * ======================================================================== */
.site-header, .section-footer, .section {
	position: relative;
	width: 100%;
	background-image: url("../images/texture.png");
	background-position: top left;
	background-size: 14.286vw 14.286vw;
	background-repeat: repeat;
	background-blend-mode: multiply;
}

.section__inner {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	padding-inline: var(--space-section-x);
}

@media (min-width: 600px) {
	.section__inner {
		max-width: var(--layout-max-md);
	}
}

@media (min-width: 1200px) {
	.section__inner {
		max-width: var(--layout-max-lg);
	}
}

/* ==========================================================================
 * Site header — Figma node 199:57
 * ======================================================================== */
.site-header {
	background-color: var(--color-bg-beige);
	text-align: center;
}

.site-header__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: var(--space-6) var(--space-section-x) 0;
}

.site-header__link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
	color: inherit;
	text-decoration: none;
}

.site-header__link:hover,
.site-header__link:focus-visible {
	color: inherit;
}

.site-header__illust {
	display: block;
	width: clamp(120px, 15vw, 180px);
	height: clamp(40px, 5vw, 60px);
}

.site-header__illust img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header__title {
	font-family: var(--font-family-sans);
	font-size: var(--font-size-site-header-title);
	font-weight: 900;
	color: var(--color-text-default);
	letter-spacing: var(--letter-spacing-wide);
	line-height: var(--line-height-tight);
}

/* ==========================================================================
 * KV section — Figma node 4:3
 * ======================================================================== */
.section-kv {
	background-color: var(--color-bg-beige);
	padding: clamp(100px, 12.5vw, 150px) 0 calc(clamp(133px, 16.666vw, 200px) + 10vw);
}

.section-kv__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	/* Figma: Noto Serif JP Bold（data-node-id 6:43） */
	font-family: var(--font-family-serif);
	font-weight: 700;
	font-size: var(--font-size-kv-copy);
	color: var(--color-text-default);
	letter-spacing: 0.05em;
	line-height: var(--line-height-tight);
}

.section-kv__copy-line {
	margin: 0;
}

.section-kv__copy-line[data-aos="fade-up"] {
	transform: translate3d(0, 10px, 0);
}

.section-kv__illust {
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 145px;
	height: 132px;
	transform: translateX(-50%);
	pointer-events: none;
}

.section-kv__illust img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-about::before,
.section-activity::before,
.section-festival::before,
.section-information::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -10vw;
	height: 10vw;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	pointer-events: none;
}

.section-about::before,
.section-festival::before {
	background-image: url("../images/wave-green-double.png");
}

.section-activity::before {
	background-image: url("../images/wave-beige.png");
}

.section-information::before {
	background-image: url("../images/wave-brown-double.png");
}

@media (min-width: 600px) {
	.section-kv__copy {
		gap: var(--space-5);
	}

	.section-kv__illust {
		width: 160px;
		height: 144px;
		bottom: 3vw;
	}
}

@media (min-width: 1200px) {
	.section-kv__copy {
		gap: var(--space-6);
	}

	.section-kv__illust {
		width: 200px;
		height: 180px;
	}
}

/* ==========================================================================
 * About section — Figma node 73:2
 * ======================================================================== */
.section-about {
	background-color: var(--color-section-about-bg);
	color: var(--color-text-inverse);
	padding: var(--space-10) 0 calc(var(--space-10) + 10vw);
	overflow: visible;
}

.section-about__inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.section-about__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
	width: 100%;
}

.section-about__content p {
	font-family: var(--font-family-sans);
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
	color: var(--color-text-inverse);
}

.section-about__photo-wrapper {
	position: relative;
	margin: 0 auto;
	max-width: 850px;
}

.section-about__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 14 / 9;
	object-fit: cover;
	display: block;
	-webkit-mask-image: url("../images/shape-rice.svg");
	mask-image: url("../images/shape-rice.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.section-about__photo--mask-flip {
	-webkit-mask-image: url("../images/shape-rice-flip.svg");
	mask-image: url("../images/shape-rice-flip.svg");
}

.section-about__photo-illust {
	position: absolute;
	pointer-events: none;
	display: block;
}

.section-about__photo-illust img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-about__photo-illust--right {
	left: -10px;
	bottom: 0;
	width: 114px;
	height: 90px;
}

.section-about__photo-illust--left {
	right: -10px;
	bottom: 0;
	width: 107px;
	height: 184px;
}

.section-about__statement {
	background-color: var(--color-bg-green-dark);
	border-radius: var(--radius-md);
	padding: var(--space-12) var(--space-4);
	margin: var(--space-4) 0 0;
	text-align: center;
}

.section-about__statement p {
	font-family: var(--font-family-sans);
	font-size: var(--font-size-lg);
	font-weight: 700;
	line-height: var(--line-height-expressive);
	color: var(--color-text-inverse);
	margin: 0;
}

.section-about__statement-highlight {
	color: var(--color-text-highlight);
}

@media (min-width: 600px) {
	.section-about__inner {
		gap: var(--space-12);
	}

	.section-about__content {
		gap: var(--space-6);
	}


	.section-about__photo-illust--right {
		width: 140px;
		height: 110px;
	}

	.section-about__photo-illust--left {
		width: 130px;
		height: 224px;
	}
}

@media (min-width: 1200px) {
	.section-about__content {
		max-width: var(--layout-max-md);
		margin-inline: auto;
	}

	.section-about__photo-illust--right {
		left: 20px;
		bottom: 40px;
	}
}

/* ==========================================================================
 * Activity section — Figma node 4:4
 * ======================================================================== */
.section-activity {
	background-color: var(--color-page-bg);
	color: var(--color-text-default);
	padding: var(--space-10) 0;
	/* スライダーは 100vw ブレイクアウトするため hidden にしない */
	overflow: visible;
}

.section-activity__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-8);
}

.section-activity__illust {
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-activity__illust img {
	object-fit: contain;
}

.section-activity__illust--top img {
	max-width: 247px;
	max-height: 82px;
	width: 80%;
}

.section-activity__illust--mid {
	position: relative;
	min-height: 90px;
	gap: var(--space-2);
}

.section-activity__illust-mid-a {
	width: 146px;
	height: 90px;
}

.section-activity__illust-mid-b {
	width: 82px;
	height: auto;
	transform: rotate(26.71deg);
	margin-left: var(--space-2);
}

.section-activity__overview {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.section-activity__overview p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
}

.section-activity__details,
.section-activity__schedule {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
	width: 100%;
}

.section-activity__details-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.section-activity__details-content p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
}

.section-activity__slides {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: var(--space-4) 0;
	position: relative;
	left: 0;
	box-sizing: border-box;
}

.section-activity__marquee {
	--activity-marquee-gap: var(--space-5);
	--marquee-offset: 0px;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
}

/* 1周 = 1列＋列間ギャップ。等速のため JS が --marquee-tx / --marquee-duration を付与 */
.section-activity__marquee-track {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	width: max-content;
	column-gap: var(--activity-marquee-gap);
	will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
	.section-activity__marquee.is-ready .section-activity__marquee-track {
		animation: section-activity-marquee var(--marquee-duration, 40s) linear infinite;
	}
}

.section-activity__marquee.is-dragging {
	cursor: grabbing;
}

.section-activity__marquee.is-dragging .section-activity__marquee-track {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
	/* 2列目を隠し、1列分だけ横スクロールで閲覧可に */
	.section-activity__marquee .section-activity__marquee-group:last-of-type {
		display: none;
	}
	.section-activity__marquee {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.section-activity__marquee-track {
		width: max-content;
	}
}

@keyframes section-activity-marquee {
	from {
		transform: translate3d(var(--marquee-offset, 0px), 0, 0);
	}

	to {
		transform: translate3d(calc(var(--marquee-tx) + var(--marquee-offset, 0px)), 0, 0);
	}
}

.section-activity__marquee-group {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	flex-shrink: 0;
	gap: var(--activity-marquee-gap);
}

.section-activity__slide {
	box-sizing: border-box;
	width: 276px;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-md);
	overflow: hidden;
	background-color: var(--color-text-inverse);
	flex-shrink: 0;
}

.section-activity__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-activity__schedule-flow {
	margin: 0;
}

.section-activity__schedule-image {
	width: 100%;
	max-width: var(--layout-max-md);
	height: auto;
	display: block;
	margin-inline: auto;
}

.section-activity__join {
	width: 100%;
}

.section-activity__join-cards {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.section-activity__card {
	background-color: var(--color-text-inverse);
	border-radius: var(--radius-md);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	color: var(--color-text-default);
}

.section-activity__card-title {
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-lg);
	line-height: var(--line-height-tight);
	margin: 0;
	margin-bottom: -0.2em;
}

.section-activity__card p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
	margin: 0;
}

.section-activity__card-inline-link {
	font-weight: 700;
	text-decoration: underline;
	color: inherit;
}

.section-activity__card-cta-wrapper {
	margin-top: var(--space-2);
	display: flex;
	justify-content: center;
}

@media (min-width: 600px) {
	.section-activity {
		padding: var(--space-16) 0;
	}

	.section-activity__inner {
		gap: var(--space-12);
	}


	.section-activity__marquee {
		--activity-marquee-gap: var(--space-8);
	}

	.section-activity__join-cards {
		gap: var(--space-6);
	}

	.section-activity__card {
		padding: var(--space-6);
	}

	.button {
		width: auto;
		min-width: 320px;
	}
}

@media (min-width: 1200px) {
	.section-activity {
		padding: var(--space-20) 0;
	}

	.section-activity__slide {
		width: 420px;
	}

	.section-activity__join-cards {
		flex-direction: row;
		align-items: stretch;
	}

	.section-activity__join-cards > .section-activity__card {
		flex: 1 1 0;
	}
}

/* ==========================================================================
 * Photo section — Figma node 203:75
 * ======================================================================== */
.section-photo {
	background-color: var(--color-page-bg);
	overflow: visible;
	line-height: var(--line-height-none);
}

.section-photo__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	-webkit-mask-image: url("../images/shape-semicircle.svg");
	mask-image: url("../images/shape-semicircle.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center top;
	mask-position: center top;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.section-photo__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 600px) {
	.section-photo__image {
		aspect-ratio: 16 / 9;
	}

	.section-photo__image img {
		object-position: center 80%;
	}
}

@media (min-width: 1200px) {
	.section-photo__image {
		aspect-ratio: 2 / 1;
	}

	.section-photo__image img {
		object-position: center 80%;
	}
}

/* ==========================================================================
 * Festival section — Figma node 87:29
 * ======================================================================== */
.section-festival {
	background-color: var(--color-section-festival-bg);
	color: var(--color-text-inverse);
	padding: var(--space-10) 0 calc(var(--space-20) + 10vw);
	overflow: visible;
}

.section-festival__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-8);
}

.section-festival__illust-top {
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-festival__illust-top img {
	width: 135px;
	height: auto;
}

.section-festival__overview {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

.section-festival__overview p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
}

.section-festival__photo-wrapper {
	position: relative;
	margin: 0 auto;
	max-width: 850px;
}

.section-festival__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 14 / 9;
	object-fit: cover;
	display: block;
	-webkit-mask-image: url("../images/shape-rice.svg");
	mask-image: url("../images/shape-rice.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.section-festival__photo-illust {
	position: absolute;
	left: -20px;
	bottom: 0;
	width: 119px;
	height: 105px;
	pointer-events: none;
}

.section-festival__photo-illust img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-festival__term,
.section-activity__term {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.section-festival__term-item,
.section-activity__term-item {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.section-festival__term-content,
.section-activity__term-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

.section-festival__term-content p,
.section-activity__term-content p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
}

.section-festival__term-content a,
.section-activity__term-content a {
	color: inherit;
	font-weight: 700;
}

.section-festival__term-content a:hover,
.section-festival__term-content a:focus-visible,
.section-activity__term-content a:hover,
.section-activity__term-content a:focus-visible {
	color: inherit;
}

.section-festival__event {
	background-color: var(--color-bg-green-dark);
	border-radius: var(--radius-md);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.section-festival__event-title {
	margin: 0;
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-md);
	color: var(--color-text-inverse);
	line-height: var(--line-height-tight);
}

.section-festival__event-body {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.section-festival__event-body p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
	margin: 0;
}

.section-festival__event-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.section-festival__event-list li {
	font-size: var(--font-size-md);
	line-height: var(--line-height-prose);
	padding-left: 1.25em;
	position: relative;
}

.section-festival__event-list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.section-festival__event-list li.section-festival__event-list-etc::before {
	content: "";
}

.section-festival__event-list li.section-festival__event-list-etc {
	padding-left: 1.5em;
}

@media (min-width: 600px) {
	.section-festival {
		padding: var(--space-16) 0 calc(var(--space-20) + 10vw);
	}

	.section-festival__inner {
		gap: var(--space-12);
	}

	.section-festival__illust-top img {
		width: 180px;
	}

	.section-festival__photo-illust {
		width: 150px;
		height: 130px;
	}
}

@media (min-width: 1200px) {
	.section-festival {
		padding: var(--space-20) 0 calc(var(--space-24) + 10vw);
	}

	.section-festival__photo-illust {
		left: 40px;
		bottom: 40px;
	}

	.section-festival__term,
	.section-activity__term {
		gap: var(--space-12);
	}

	/* 「内容」内の2つの .section-festival__event だけ横並び（導入文 <p> は全幅） */
	.section-festival__term-content:has(> .section-festival__event + .section-festival__event) {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--space-6);
		align-items: stretch;
	}

	.section-festival__term-content:has(> .section-festival__event + .section-festival__event) > p {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
 * Information section — Figma node 6:33
 * ======================================================================== */
.section-information {
	background-color: var(--color-bg-brown);
	color: var(--color-text-inverse);
	padding: var(--space-10) 0 var(--space-5);
}

.section-information__inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.section-information__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
	margin: 0;
	padding: 0;
}

.section-information__row {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
}

.section-information__term {
	flex: 0 0 50px;
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-md);
	line-height: var(--line-height-tight);
	margin: 0;
	padding: 0;
}

.section-information__desc {
	flex: 1 1 auto;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.section-information__name {
	font-weight: 700;
	font-size: var(--font-size-md);
	line-height: var(--line-height-tight);
	margin: 0;
}

.section-information__address,
.section-information__url {
	font-size: var(--font-size-md);
	line-height: var(--line-height-tight);
	margin: 0;
}

.section-information__url a {
	color: var(--color-text-inverse);
	text-decoration: underline;
	font-weight: 700;
}

@media (min-width: 600px) {
	.section-information {
		padding: var(--space-16) 0;
	}

	.section-information__list {
		gap: var(--space-8);
	}

	.section-information__term {
		flex-basis: 80px;
	}
}

@media (min-width: 1200px) {
	.section-information {
		padding: var(--space-20) 0;
	}
}

/* ==========================================================================
 * Site footer — Figma node 21:97
 * ======================================================================== */
.section-footer {
	background-color: var(--color-bg-brown);
	color: var(--color-text-inverse);
	padding: var(--space-5) var(--space-section-x);
	text-align: center;
}

.section-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
}

.section-footer__copyright {
	font-size: var(--font-size-xs);
	line-height: var(--line-height-tight);
	color: var(--color-text-inverse);
	margin: 0;
}

@media (min-width: 600px) {
	.section-footer {
		padding: var(--space-6) var(--space-section-x);
	}

}

/* ==========================================================================
 * Floating navigation — Figma node 23:143
 * ======================================================================== */
.floating-nav {
	position: fixed;
	bottom: var(--space-2);
	right: var(--space-2);
	z-index: var(--z-floating-nav);
	transform: translateY(calc(-1 * var(--floating-nav-shift, 0px)));
	transition: transform var(--transition-base);
	pointer-events: none;
}

.floating-nav__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	list-style: none;
	margin: 0;
	padding: 0;
}

.floating-nav__item {
	pointer-events: auto;
}

.floating-nav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	width: 100px;
	height: 100px;
	padding: var(--space-2);
	border-radius: var(--radius-pill);
	background-color: var(--color-bg-brown-dark);
	color: var(--color-text-inverse);
	text-decoration: none;
	font-family: var(--font-family-sans);
	font-weight: 700;
	font-size: var(--font-size-floating-nav-link);
	line-height: var(--line-height-tight);
	text-align: center;
	box-shadow: var(--shadow-md);
	transition: transform var(--transition-base), background-color var(--transition-base);
}

.floating-nav__link:hover,
.floating-nav__link:focus-visible {
	background-color: var(--color-bg-brown);
	color: var(--color-text-inverse);
	transform: scale(1.04);
}

.floating-nav__illust {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
}

.floating-nav__illust img {
	max-width: 68px;
	max-height: 28px;
	object-fit: contain;
}

.floating-nav__label {
	display: block;
	white-space: nowrap;
}

@media (min-width: 600px) {
	.floating-nav {
		right: var(--space-5);
		bottom: var(--space-5);
	}

	.floating-nav__link {
		width: 110px;
		height: 110px;
	}
}

@media (min-width: 1200px) {
	.floating-nav {
		right: var(--space-8);
		bottom: var(--space-8);
	}

	.floating-nav__link {
		width: 120px;
		height: 120px;
	}
}
