/*
Theme Name: Yao YEG Festa Marche 2026
Theme URI: https://github.com/Banquet-Office/yao-festa
Author: Banquet Office
Description: 第49回八尾河内音頭まつり（八尾YEGフェスマルシェ2026）出展者募集サイト用テーマ
Version: 1.0
*/

:root {
	--color-primary: #00aaeb;
	--color-primary-dark: #003894;
	--color-accent: #ffa500;
	--color-accent-dark: #ff7d00;
	--color-yellow: #ffd60a;
	--color-dark: #1a2c44;
	--color-ink: #201400;
	--color-bg: #f7f9fb;
	--color-line: rgba(26, 44, 68, 0.1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 19px;
}

body {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--color-ink);
	background: #ffffff;
	line-height: 1.9;
	overflow-x: hidden;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.font-rounded {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ===== スプラッシュ ===== */
.splash {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: linear-gradient(135deg, var(--color-primary-dark), var(--color-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease;
}

.splash__inner {
	text-align: center;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

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

.splash__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.15rem;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	margin: 0 0 1rem;
}

.splash__badge-logo {
	width: 100%;
	height: auto;
}

.splash__title {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 900;
	font-size: 1.8rem;
	color: #ffffff;
	letter-spacing: 0.06em;
	margin: 0 0 0.5rem;
}

.splash__sub {
	font-weight: 700;
	font-size: 0.72rem;
	color: var(--color-accent);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin: 0 0 1.75rem;
}

.splash__bar {
	height: 3px;
	width: 0;
	margin: 0 auto;
	background: linear-gradient(to right, var(--color-accent), var(--color-yellow));
	border-radius: 3px;
	transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.splash__bar.is-visible {
	width: 90px;
}

/* ===== ナビゲーション ===== */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 0;
	background: rgba(0, 56, 148, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: padding 0.3s ease;
}

.site-nav.is-scrolled {
	padding: 0.6rem 0;
}

.site-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-nav__logo {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 900;
	font-size: 1.05rem;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.03em;
}

.site-nav__logo small {
	display: block;
	font-size: 0.6rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.15em;
	margin-top: 0.15rem;
}

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

.site-nav__list a {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.site-nav__list a:hover {
	background: rgba(255, 255, 255, 0.12);
}

.site-nav__cta {
	background: var(--color-accent) !important;
	color: #ffffff !important;
	margin-left: 0.5rem;
}

.site-nav__cta:hover {
	background: var(--color-accent-dark) !important;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	padding: 0.4rem 0.6rem;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffffff;
	margin: 4px 0;
}

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: var(--color-primary-dark);
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

.mobile-nav.is-open {
	transform: translateX(0);
}

.mobile-nav__close {
	align-self: flex-end;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.mobile-nav__list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.mobile-nav__list a {
	display: block;
	padding: 1rem 0;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.15rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== ボタン ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 2.2rem;
	border-radius: 8px;
	font-weight: 800;
	font-size: 1.05rem;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(255, 165, 0, 0.35);
}

.btn-primary:hover {
	background: var(--color-accent-dark);
}

.btn-outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
	background: transparent;
	color: var(--color-primary-dark);
	border: 2px solid var(--color-primary-dark);
}

.btn-outline-dark:hover {
	background: var(--color-primary-dark);
	color: #ffffff;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 20%, rgba(255, 165, 0, 0.25), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(0, 170, 235, 0.35), transparent 50%),
		linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 9rem;
	padding-bottom: 6rem;
	color: #ffffff;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.hero__badge-text {
	font-size: calc(1em - 5px);
}

.hero__badge-logo {
	height: 1.15em;
	width: auto;
}

.hero__title {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: clamp(2.2rem, 5.5vw, 3.8rem);
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 1.4rem;
}

.hero__title em {
	font-style: normal;
	color: var(--color-accent);
}

.hero__lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin: 0 0 2.2rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat-num {
	font-size: 1.6rem;
	font-weight: 900;
}

.hero__stat-label {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.25rem;
}

/* ===== ティッカー ===== */
.ticker {
	background: var(--color-accent);
	overflow: hidden;
	white-space: nowrap;
	padding: 0.75rem 0;
}

.ticker__inner {
	display: inline-flex;
	width: max-content;
	animation: ticker-scroll 24s linear infinite;
}

.ticker__item {
	color: #ffffff;
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	padding: 0 2.5rem;
}

.ticker__item::before {
	content: "✦ ";
}

@keyframes ticker-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ===== 共通セクション ===== */
.section {
	padding: 6rem 0;
}

.section.bg-light {
	background: var(--color-bg);
}

.section.bg-dark {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 1.2rem;
}

.section-label::before {
	content: "";
	width: 2rem;
	height: 2px;
	background: var(--color-accent);
	display: block;
}

.section-title {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--color-primary-dark);
	margin: 0 0 1rem;
	line-height: 1.5;
}

.bg-dark .section-title {
	color: #ffffff;
}

.section-subtitle {
	font-size: 1.05rem;
	color: rgba(32, 20, 0, 0.7);
	max-width: 640px;
}

.bg-dark .section-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

.section-head {
	margin-bottom: 3.5rem;
}

.section-head.center {
	text-align: center;
}

.section-head.center .section-label {
	justify-content: center;
}

.section-head.center .section-label::before {
	display: none;
}

.section-head.center .section-subtitle {
	margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 3.5rem;
	align-items: center;
}

.about-panel {
	background: linear-gradient(150deg, var(--color-primary), var(--color-primary-dark));
	border-radius: 16px;
	padding: 3rem 2rem;
	color: #ffffff;
	text-align: center;
	position: relative;
}

.about-panel__badge {
	display: inline-block;
	background: var(--color-accent);
	color: #ffffff;
	font-weight: 800;
	font-size: 0.85rem;
	padding: 0.5rem 1.2rem;
	border-radius: 6px;
	margin-bottom: 1.5rem;
}

.about-panel__num {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 3rem;
	font-weight: 900;
}

.about-panel__facts {
	margin-top: 2rem;
	text-align: left;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 1.5rem;
}

.about-panel__facts dt {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.05em;
}

.about-panel__facts dd {
	font-weight: 700;
	margin: 0 0 1rem;
	font-size: 1rem;
}

.about-panel__ondo-link {
	display: block;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	text-align: center;
}

.about-panel__ondo-logo {
	max-width: 160px;
	margin: 0 auto;
}

.tag-pill {
	display: inline-block;
	background: rgba(0, 56, 148, 0.06);
	border: 1px solid rgba(0, 56, 148, 0.18);
	color: var(--color-primary-dark);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	margin: 0 0.5rem 0.5rem 0;
}

/* ===== Instagramプレースホルダー ===== */
.instagram-placeholder {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
	background: var(--color-bg);
	border: 1px dashed var(--color-line);
	border-radius: 16px;
	padding: 2.5rem;
	color: rgba(32, 20, 0, 0.55);
}

.instagram-placeholder svg {
	margin: 0 auto 1rem;
}

.instagram-placeholder__text {
	font-weight: 700;
	margin: 0 0 1.2rem;
}

/* ===== 募集ブースカード ===== */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.booth-card {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 14px;
	padding: 2rem 1.6rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booth-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--accent, var(--color-accent));
}

.booth-card--food { --accent: #ff7d00; }
.booth-card--sweets { --accent: #ff5f8f; }
.booth-card--merchandise { --accent: #00aaeb; }

.booth-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(26, 44, 68, 0.1);
}

.booth-card__num {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 2.4rem;
	font-weight: 900;
	color: rgba(26, 44, 68, 0.08);
	position: absolute;
	right: 1.2rem;
	top: 0.6rem;
}

.booth-card__title {
	font-size: 1.15rem;
	font-weight: 900;
	color: var(--color-primary-dark);
	margin: 0 0 0.75rem;
}

.booth-card__row {
	padding-bottom: 0.7rem;
	margin-bottom: 0.7rem;
	border-bottom: 1px solid var(--color-line);
}

.booth-card__row + .booth-card__row {
	border-bottom: none;
}

.booth-card__tag {
	display: inline-block;
	background: rgba(255, 165, 0, 0.12);
	color: var(--color-accent-dark);
	font-size: 0.72rem;
	font-weight: 800;
	padding: 0.25rem 0.7rem;
	border-radius: 4px;
	margin-bottom: 0.75rem;
}

.booth-card__fee {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--color-line);
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--color-primary-dark);
}

/* ===== スケジュール（タイムライン） ===== */
.schedule-list {
	max-width: 720px;
	margin: 0 auto;
}

.schedule-item {
	display: flex;
	gap: 1.5rem;
	position: relative;
	padding-bottom: 2.5rem;
}

.schedule-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 1.5rem;
	top: 3.4rem;
	width: 1px;
	height: calc(100% - 2.5rem);
	background: rgba(255, 255, 255, 0.25);
}

.schedule-item__num {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--color-accent);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.schedule-item--active .schedule-item__num {
	background: var(--color-yellow);
	color: var(--color-ink);
}

.schedule-item__card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 1.4rem 1.6rem;
	flex: 1;
}

.schedule-item__date {
	display: inline-block;
	font-weight: 800;
	color: var(--color-accent);
	font-size: 1rem;
	margin-bottom: 0.4rem;
}

.schedule-item__title {
	font-weight: 900;
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
}

.schedule-item__body {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* ===== 募集要項カード ===== */
.outline-card {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(26, 44, 68, 0.06);
}

.outline-card__header {
	background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
	color: #ffffff;
	padding: 2.5rem 2.5rem;
	text-align: center;
}

.outline-card__eyebrow {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.25em;
	color: var(--color-yellow);
	margin-bottom: 0.6rem;
}

.outline-card__heading {
	font-size: 1.6rem;
	font-weight: 900;
}

.outline-row {
	display: flex;
	gap: 2rem;
	padding: 1.8rem 2.5rem;
	border-bottom: 1px solid var(--color-line);
}

.outline-row:last-child {
	border-bottom: none;
}

.outline-row__label {
	flex-shrink: 0;
	width: 160px;
	font-weight: 800;
	color: var(--color-accent-dark);
}

.outline-row__value {
	flex: 1;
	font-size: 1rem;
}

.outline-row__value strong {
	color: var(--color-primary-dark);
}

.outline-row__note {
	display: block;
	font-size: 0.88rem;
	color: rgba(32, 20, 0, 0.6);
	margin-top: 0.3rem;
}

.badge-open {
	display: inline-block;
	background: #c0392b;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 800;
	padding: 0.25rem 0.8rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.fee-table {
	width: 100%;
	border-collapse: collapse;
}

.fee-table td {
	padding: 0.5rem 1rem 0.5rem 0;
	font-size: 0.98rem;
}

.fee-table td:first-child {
	font-weight: 800;
	color: var(--color-primary-dark);
	white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-list {
	max-width: 780px;
	margin: 0 auto;
}

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

.faq-item__q {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.6rem 0;
	cursor: pointer;
}

.faq-item__badge {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(255, 165, 0, 0.12);
	color: var(--color-accent-dark);
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-item__text {
	flex: 1;
	font-weight: 700;
	color: var(--color-primary-dark);
}

.faq-item__arrow {
	flex-shrink: 0;
	transition: transform 0.25s ease;
	color: rgba(26, 44, 68, 0.4);
}

.faq-item.is-open .faq-item__arrow {
	transform: rotate(180deg);
}

.faq-item__a {
	display: none;
	padding: 0 0 1.6rem 3.2rem;
	color: rgba(32, 20, 0, 0.75);
	font-size: 0.95rem;
}

.faq-item.is-open .faq-item__a {
	display: block;
}

/* ===== エントリーCTA ===== */
.entry-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.entry-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid var(--color-line);
	padding: 2.5rem;
	text-align: center;
}

.entry-card__fee {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: var(--color-accent-dark);
	margin: 0.5rem 0 1.2rem;
}

.entry-card__title {
	font-size: 1.2rem;
	font-weight: 900;
	color: var(--color-primary-dark);
	margin-bottom: 0.5rem;
}

.entry-card__desc {
	font-size: 0.92rem;
	color: rgba(32, 20, 0, 0.65);
	margin-bottom: 1.6rem;
}

/* ===== 会場アクセス ===== */
.access-map {
	width: 100%;
	margin-top: 2rem;
	overflow: hidden;
	line-height: 0;
}

.access-map iframe {
	width: 100%;
	display: block;
}

/* ===== お問い合わせ ===== */
.contact-box {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 2.5rem;
}

.contact-box__line {
	font-size: 1.05rem;
	margin: 0.4rem 0;
}

.contact-box__actions {
	margin-top: 1.6rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ===== フォーム ===== */
.form-card {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 16px;
	padding: 2.5rem;
	max-width: 720px;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(26, 44, 68, 0.06);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-label .required {
	color: #c0392b;
	font-size: 0.75rem;
	font-weight: 800;
	margin-left: 0.4rem;
}

.form-control {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
}

.form-control:focus {
	outline: none;
	border-color: var(--color-primary);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.form-hint {
	font-size: 0.82rem;
	color: rgba(32, 20, 0, 0.55);
	margin-top: 0.3rem;
}

.form-error {
	background: rgba(192, 57, 43, 0.08);
	border: 1px solid rgba(192, 57, 43, 0.3);
	color: #c0392b;
	border-radius: 8px;
	padding: 1rem 1.2rem;
	margin-bottom: 1.5rem;
	font-size: 0.92rem;
}

.form-status {
	text-align: center;
	padding: 3rem 1rem;
}

.form-status__icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.honeypot-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ===== フッター ===== */
.site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.85);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 900;
	font-size: 1.2rem;
	color: #ffffff;
}

.footer-logo small {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.3rem;
	letter-spacing: 0.05em;
}

.footer-desc {
	font-size: 0.88rem;
	margin-top: 1rem;
	max-width: 340px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-sns {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.2rem;
}

.footer-sns__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-sns__icon:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
}

.footer-sns__icon--disabled {
	color: rgba(255, 255, 255, 0.35);
	cursor: default;
}

.footer-sns__icon--disabled:hover {
	background: none;
	border-color: rgba(255, 255, 255, 0.25);
}

.footer-title {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 1rem;
}

.footer-nav a {
	display: block;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	margin-bottom: 0.6rem;
}

.footer-nav a:hover {
	color: #ffffff;
}

.footer-copyright {
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 2rem;
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

/* ===== 出店エントリー固定ボタン ===== */
.floating-entry {
	position: fixed;
	z-index: 950;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: var(--color-accent);
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 1.6rem 0.7rem;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transition: background 0.2s ease, padding 0.2s ease;
}

.floating-entry:hover {
	background: var(--color-accent-dark);
	color: #ffffff;
	padding-right: 1rem;
}

/* ===== スクロールアニメーション ===== */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== ページ／404／アーカイブ ===== */
.page-content {
	max-width: 820px;
	margin: 0 auto;
	padding-top: 8rem;
	padding-bottom: 6rem;
}

.page-content h1 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: var(--color-primary-dark);
}

.not-found {
	text-align: center;
	padding-top: 10rem;
	padding-bottom: 10rem;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
	.site-nav__list,
	.site-nav .btn.site-nav__cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.floating-entry {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		transform: none;
		text-align: center;
		writing-mode: horizontal-tb;
		border-radius: 0;
		padding: 1rem;
	}

	.floating-entry:hover {
		padding: 1rem;
	}

	.about-grid,
	.entry-grid {
		grid-template-columns: 1fr;
	}

	.card-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer {
		padding-bottom: 4.5rem;
	}

	.outline-row {
		flex-direction: column;
		gap: 0.4rem;
	}

	.outline-row__label {
		width: auto;
	}
}

@media (max-width: 600px) {
	html {
		font-size: 18px;
	}

	.section {
		padding: 4rem 0;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.hero__stats {
		gap: 1.5rem;
	}

	.entry-grid {
		gap: 1.2rem;
	}
}
