/* =========================================================================
   Akqnee Official – main.css
   配信者「あかね」公式サイト
   パステルパープル × Zen Maru Gothic ／ 大人ガーリー・装飾控えめ
   -------------------------------------------------------------------------
   目次
   01. Design Tokens / Base
   02. Utilities
   03. Components（btn / badge / icon / sec-title / card / empty）
   04. Header / Global Nav
   05. Hero
   06. Profile
   07. Fan
   08. News
   09. Schedule / Streaming
   10. Works（タイムライン）
   11. SNS
   12. Contact（Contact Form 7）
   13. Single / Page / Archive / 404 / Pagination
   14. Footer
   15. Prose（Gutenberg本文・ブロックスタイル）
   16. Motion / Focus / Responsive
   ========================================================================= */

/* -------------------------------------------------------------------------
   01. Design Tokens / Base
   ------------------------------------------------------------------------- */
:root {
	/* Color（本文・ボタン文字はWCAG 4.5:1以上を確保） */
	--c-white: #ffffff;
	--c-base: #fcfafe;        /* 白藤：ベース背景 */
	--c-soft: #f4eefb;        /* 淡藤：セクション交互背景 */
	--c-pastel: #d9c8ef;      /* 藤霞：装飾用パステル紫 */
	--c-primary: #6c51ac;     /* 桔梗：リンク・ボタン（白地で約5.9:1） */
	--c-primary-dark: #5b4397;
	--c-deep: #55428a;        /* 深藤：見出し（白地で約7.4:1） */
	--c-text: #4a4258;        /* 墨藤：本文（白地で約9:1） */
	--c-text-weak: #6e6480;   /* 補足テキスト（白地で約5.5:1） */
	--c-line: #e7ddf3;
	--c-pink: #f6d9e7;        /* 桜貝：装飾専用（文字色には使わない） */

	/* Shape / Shadow */
	--radius-l: 24px;
	--radius-m: 18px;
	--radius-s: 14px;
	--shadow-1: 0 6px 24px rgba(108, 81, 172, 0.08);
	--shadow-2: 0 12px 34px rgba(108, 81, 172, 0.14);

	/* Layout */
	--w-content: 1080px;
	--w-narrow: 760px;
	--header-h: 68px;

	/* Type */
	--font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;

	/* 丸ドットの区切り線（シグネチャ装飾） */
	--dot-line: radial-gradient(circle, var(--c-pastel) 1.7px, transparent 1.9px);
}

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

html {
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	background: var(--c-base);
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--c-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--c-primary-dark);
}

::selection {
	background: var(--c-pastel);
	color: var(--c-deep);
}

/* アンカーリンク着地位置（固定ヘッダー分の余白） */
[id] {
	scroll-margin-top: calc(var(--header-h) + 16px);
}

/* -------------------------------------------------------------------------
   02. Utilities
   ------------------------------------------------------------------------- */
.l-container {
	width: min(100% - 48px, var(--w-content));
	margin-inline: auto;
}

.l-container--narrow {
	max-width: var(--w-narrow);
}

.l-section {
	padding-block: clamp(64px, 10vw, 104px);
	background: var(--c-white);
}

.l-section--soft {
	background: var(--c-soft);
}

.l-section__more {
	margin-top: 44px;
	text-align: center;
}

.u-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.c-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 200;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--c-deep);
	color: var(--c-white);
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-200%);
}

.c-skip-link:focus {
	transform: none;
	color: var(--c-white);
}

/* -------------------------------------------------------------------------
   03. Components
   ------------------------------------------------------------------------- */

/* ボタン（ピル型・タップ領域44px以上） */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 10px 30px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.c-btn--primary {
	background: var(--c-primary);
	color: var(--c-white);
	box-shadow: var(--shadow-1);
}

.c-btn--primary:hover {
	background: var(--c-primary-dark);
	color: var(--c-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-2);
}

.c-btn--ghost {
	background: var(--c-white);
	color: var(--c-primary);
	border-color: #cdbbe9;
}

.c-btn--ghost:hover {
	background: var(--c-soft);
	color: var(--c-primary-dark);
	border-color: var(--c-primary);
	transform: translateY(-2px);
}

.c-btn--s {
	min-height: 40px;
	padding: 6px 22px;
	font-size: 13.5px;
}

.c-btn .c-icon {
	width: 17px;
	height: 17px;
}

/* カテゴリバッジ（お知らせ／イベント／グッズ／配信） */
.c-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.8;
	text-decoration: none;
}

.c-badge--info,
.c-badge--default {
	background: #ede5f8;
	color: #55428a;
}

.c-badge--event {
	background: #fbe3ee;
	color: #a03063;
}

.c-badge--goods {
	background: #e2f1e9;
	color: #22684a;
}

.c-badge--stream {
	background: #e2ecf8;
	color: #2c5a8f;
}

a.c-badge:hover {
	filter: brightness(0.96);
}

/* アイコン */
.c-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* セクション見出し（EN＋日本語／丸ドットがシグネチャ） */
.c-sec-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin: 0 0 clamp(36px, 6vw, 56px);
	text-align: center;
}

.c-sec-title::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--c-pastel);
}

.c-sec-title__en {
	color: var(--c-deep);
	font-size: clamp(1.7rem, 4vw, 2.1rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.c-sec-title__ja {
	color: var(--c-text-weak);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
}

/* 投稿カード */
.c-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.c-card {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.c-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-2);
	border-color: var(--c-pastel);
}

.c-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.c-card__thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(160deg, #fbf7fe 0%, #f1e9fa 55%, #ebe0f7 100%);
	overflow: hidden;
}

.c-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.c-card:hover .c-card__thumb img {
	transform: scale(1.045);
}

.c-card__thumb-ph {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(85, 66, 138, 0.32);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.c-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px 24px;
}

.c-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.c-card__date {
	color: var(--c-text-weak);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.c-card__title {
	margin: 0;
	color: var(--c-deep);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
}

/* 空状態 */
.c-empty {
	padding: 44px 28px;
	border: 2px dashed #d9cbea;
	border-radius: var(--radius-m);
	background: var(--c-white);
	text-align: center;
}

.c-empty p {
	margin: 0;
}

.c-empty__hint {
	margin-top: 12px !important;
	color: var(--c-text-weak);
	font-size: 12.5px;
	line-height: 1.8;
}

/* -------------------------------------------------------------------------
   04. Header / Global Nav
   ------------------------------------------------------------------------- */
.l-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.l-header.is-scrolled {
	border-bottom-color: var(--c-line);
	box-shadow: 0 4px 20px rgba(108, 81, 172, 0.06);
}

.l-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: var(--header-h);
}

/* ロゴ（仮：テキストロゴ。カスタムロゴ設定で差し替え可能） */
.c-logo,
.custom-logo-link {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	line-height: 1.2;
}

.c-logo__text {
	color: var(--c-deep);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.c-logo__sub {
	color: var(--c-text-weak);
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.custom-logo {
	max-height: 44px;
	width: auto;
}

/* グローバルナビ */
.c-gnav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.c-gnav__list {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-gnav__list a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.c-gnav__list a:hover {
	background: var(--c-soft);
}

.c-gnav__en {
	color: var(--c-deep);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.c-gnav__ja {
	color: var(--c-text-weak);
	font-size: 9.5px;
	letter-spacing: 0.14em;
}

/* メニュー未設定でwp_nav_menuがli直下にテキストだけ返す場合の保険 */
.c-gnav__list a:not(:has(.c-gnav__en)) {
	color: var(--c-deep);
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
}

.c-gnav__cta {
	margin-left: 10px;
}

/* ハンバーガーボタン */
.c-menu-btn {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.c-menu-btn__bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--c-deep);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-menu-btn__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

body.nav-open .c-menu-btn__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .c-menu-btn__bar:nth-child(2) {
	opacity: 0;
}

body.nav-open .c-menu-btn__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   05. Hero
   ------------------------------------------------------------------------- */
.p-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(540px, 82vh, 780px);
	padding-block: 96px 120px;
	overflow: hidden;
	background:
		radial-gradient(58% 46% at 86% 16%, rgba(246, 217, 231, 0.55) 0%, rgba(246, 217, 231, 0) 62%),
		radial-gradient(52% 44% at 8% 88%, rgba(217, 200, 239, 0.6) 0%, rgba(217, 200, 239, 0) 62%),
		linear-gradient(165deg, #fdfbff 0%, #f5eefb 55%, #efe6f9 100%);
	text-align: center;
}

/* 仮ビジュアル：やわらかい光の玉（ペンギン等のモチーフは使用しない） */
.p-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(56px);
	opacity: 0.75;
	pointer-events: none;
}

.p-hero__orb--1 {
	width: 380px;
	height: 380px;
	top: -90px;
	right: -60px;
	background: #e4d5f6;
}

.p-hero__orb--2 {
	width: 300px;
	height: 300px;
	bottom: -70px;
	left: -50px;
	background: #f3dcea;
}

.p-hero__orb--3 {
	width: 200px;
	height: 200px;
	top: 42%;
	left: 12%;
	background: #ece1fa;
	opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
	.p-hero__orb {
		animation: akq-float 13s ease-in-out infinite alternate;
	}

	.p-hero__orb--2 {
		animation-duration: 17s;
		animation-delay: -4s;
	}

	.p-hero__orb--3 {
		animation-duration: 11s;
		animation-delay: -7s;
	}
}

@keyframes akq-float {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(14px, 22px, 0);
	}
}

/* 正式メインビジュアル設定時 */
.p-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(252, 250, 254, 0.82) 0%, rgba(252, 250, 254, 0.62) 55%, rgba(252, 250, 254, 0.88) 100%);
}

.p-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.p-hero__eyebrow {
	margin: 0;
	color: var(--c-primary);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.p-hero__title {
	margin: 0;
	color: var(--c-deep);
	font-size: clamp(3rem, 9vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.25;
}

.p-hero__catch {
	margin: 0;
	color: var(--c-deep);
	font-size: clamp(1.05rem, 2.4vw, 1.3rem);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.p-hero__lead {
	max-width: 34em;
	margin: 0;
	color: var(--c-text);
	font-size: 15px;
	line-height: 2.1;
}

.p-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 14px;
}

.p-hero__scroll {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--c-text-weak);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-decoration: none;
	text-transform: uppercase;
}

.p-hero__scroll::after {
	content: "";
	width: 2px;
	height: 34px;
	border-radius: 2px;
	background: linear-gradient(180deg, var(--c-pastel), transparent);
}

/* -------------------------------------------------------------------------
   06. Profile
   ------------------------------------------------------------------------- */
.p-profile__grid {
	display: grid;
	grid-template-columns: minmax(260px, 380px) 1fr;
	gap: clamp(36px, 6vw, 72px);
	align-items: start;
}

.p-profile__figure {
	margin: 0;
	position: sticky;
	top: calc(var(--header-h) + 24px);
}

.p-profile__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 36px;
	border: 8px solid var(--c-white);
	box-shadow: var(--shadow-2);
	background: var(--c-soft);
}

.p-profile__role {
	margin: 0 0 6px;
	color: var(--c-primary);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.24em;
}

.p-profile__name {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin: 0 0 20px;
	color: var(--c-deep);
	font-size: clamp(2rem, 5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
}

.p-profile__name-en {
	color: var(--c-text-weak);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.p-profile__text {
	margin-bottom: 30px;
}

.p-profile__text p {
	margin: 0 0 0.9em;
}

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

/* 基本情報：丸ドット罫線（シグネチャ装飾） */
.p-profile__facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 36px;
	margin: 0;
}

.p-profile__fact {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 13px 2px;
	background-image: var(--dot-line);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 12px 4px;
}

.p-profile__fact dt {
	flex-shrink: 0;
	min-width: 6.5em;
	color: var(--c-text-weak);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.p-profile__fact dd {
	margin: 0;
	color: var(--c-deep);
	font-size: 15px;
	font-weight: 700;
}

/* -------------------------------------------------------------------------
   07. Fan
   ------------------------------------------------------------------------- */
.p-fan__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 880px;
	margin-inline: auto;
}

.p-fan__card {
	position: relative;
	padding: 46px 32px 40px;
	background: var(--c-white);
	border-radius: var(--radius-l);
	box-shadow: var(--shadow-1);
	text-align: center;
}

.p-fan__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 7px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--c-pastel), var(--c-pink));
}

.p-fan__label {
	margin: 0 0 14px;
	color: var(--c-primary);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.p-fan__value {
	margin: 0 0 18px;
	color: var(--c-deep);
	font-size: clamp(1.9rem, 4vw, 2.4rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
}

.p-fan__value--mark {
	font-size: clamp(2.4rem, 5vw, 3rem);
	letter-spacing: 0.12em;
}

.p-fan__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 2.1;
}

/* -------------------------------------------------------------------------
   09. Schedule / Streaming
   ------------------------------------------------------------------------- */
.p-schedule__grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}

.p-schedule__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-schedule__link {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 64px;
	padding: 14px 22px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-s);
	color: inherit;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.p-schedule__link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-1);
	border-color: var(--c-pastel);
	color: inherit;
}

.p-schedule__date {
	flex-shrink: 0;
	padding: 3px 14px;
	border-radius: 999px;
	background: #ede5f8;
	color: var(--c-deep);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.p-schedule__title {
	flex: 1;
	color: var(--c-deep);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}

.p-schedule__link .c-icon--arrow {
	width: 18px;
	height: 18px;
	color: var(--c-primary);
	transition: transform 0.25s ease;
}

.p-schedule__link:hover .c-icon--arrow {
	transform: translateX(4px);
}

.p-schedule__side {
	padding: 30px 26px;
	background: var(--c-white);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-1);
	text-align: center;
}

.p-schedule__note {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 2;
	text-align: left;
}

.p-schedule__side .c-btn {
	width: 100%;
}

/* -------------------------------------------------------------------------
   10. Works（実績・イベント歴）
   ------------------------------------------------------------------------- */
.p-works__content {
	max-width: var(--w-narrow);
	margin-inline: auto;
}

/* -------------------------------------------------------------------------
   11. SNS
   ------------------------------------------------------------------------- */
.p-sns__lead {
	max-width: 36em;
	margin: -16px auto 40px;
	text-align: center;
	font-size: 15px;
}

.p-sns__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.p-sns__item {
	display: grid;
	grid-template-columns: 52px 1fr;
	grid-template-rows: auto auto;
	column-gap: 16px;
	align-items: center;
	min-height: 92px;
	padding: 18px 22px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	color: inherit;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.p-sns__item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
	border-color: var(--c-pastel);
	color: inherit;
}

.p-sns__item .c-icon {
	grid-row: 1 / 3;
	width: 52px;
	height: 52px;
	padding: 14px;
	border-radius: 50%;
	background: var(--c-soft);
	color: var(--c-primary);
}

.p-sns__name {
	color: var(--c-deep);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.p-sns__desc {
	color: var(--c-text-weak);
	font-size: 12.5px;
	letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   12. Contact（Contact Form 7）
   ------------------------------------------------------------------------- */
.p-contact__lead {
	margin: -12px 0 36px;
	text-align: center;
	font-size: 15px;
}

.p-contact__form,
.p-contact__fallback {
	padding: clamp(28px, 5vw, 48px);
	background: var(--c-white);
	border-radius: var(--radius-l);
	box-shadow: var(--shadow-1);
}

.p-contact__fallback {
	text-align: center;
}

.p-contact__fallback p {
	margin: 0 0 22px;
}

/* CF7 フィールド */
.wpcf7 .cf7-field {
	margin-bottom: 24px;
}

.wpcf7 label {
	display: block;
	margin-bottom: 8px;
	color: var(--c-deep);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
	display: block;
	width: 100%;
	min-height: 50px;
	margin-top: 8px;
	padding: 12px 16px;
	border: 1.5px solid #d9cbea;
	border-radius: var(--radius-s);
	background: var(--c-white);
	color: var(--c-text);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.6;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.wpcf7 select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 46px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%236c51ac' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 18px;
	cursor: pointer;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--c-primary);
	box-shadow: 0 0 0 4px rgba(108, 81, 172, 0.16);
}

.wpcf7 input[type="submit"] {
	display: block;
	min-width: 240px;
	min-height: 52px;
	margin: 10px auto 0;
	padding: 12px 36px;
	border: 0;
	border-radius: 999px;
	background: var(--c-primary);
	color: var(--c-white);
	font-family: inherit;
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	box-shadow: var(--shadow-1);
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
	background: var(--c-primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-2);
}

.wpcf7 input[type="submit"]:disabled {
	opacity: 0.6;
	cursor: wait;
	transform: none;
}

.wpcf7 .wpcf7-spinner {
	display: block;
	margin: 12px auto 0;
}

/* バリデーション・送信結果（コントラスト確保） */
.wpcf7 .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: #b23557;
	font-size: 13px;
	font-weight: 700;
}

.wpcf7 .wpcf7-response-output {
	margin: 26px 0 0 !important;
	padding: 14px 20px !important;
	border: 1.5px solid var(--c-pastel) !important;
	border-radius: var(--radius-s);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #7db89a !important;
	color: #22684a;
	background: #f0f8f4;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #e0a3b6 !important;
	color: #b23557;
	background: #fdf2f6;
}

/* -------------------------------------------------------------------------
   13. Single / Page / Archive / 404 / Pagination
   ------------------------------------------------------------------------- */
.p-single__header,
.p-page__header,
.p-archive__header {
	padding: clamp(48px, 8vw, 76px) 0 clamp(32px, 5vw, 48px);
	background: linear-gradient(180deg, var(--c-soft) 0%, var(--c-base) 100%);
	text-align: center;
}

.p-single__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 16px;
}

.p-single__date {
	color: var(--c-text-weak);
	font-size: 13.5px;
	letter-spacing: 0.08em;
}

.p-single__title,
.p-page__title {
	margin: 0;
	color: var(--c-deep);
	font-size: clamp(1.5rem, 4vw, 2.1rem);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.p-single__thumb {
	margin: 40px 0 0;
}

.p-single__thumb img {
	width: 100%;
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-1);
}

.p-single__content,
.p-page__content {
	padding: clamp(36px, 6vw, 56px) 0 24px;
}

.p-single__nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 44px 0 0;
	padding-top: 28px;
	background-image: var(--dot-line);
	background-repeat: repeat-x;
	background-position: left top;
	background-size: 12px 4px;
}

.p-single__nav a {
	display: inline-block;
	max-width: 22em;
	color: var(--c-primary);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.7;
}

.p-single__nav a:hover {
	color: var(--c-primary-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.p-single__nav-next {
	margin-left: auto;
	text-align: right;
}

.p-single__back {
	margin: 40px 0 clamp(64px, 9vw, 96px);
	text-align: center;
}

.p-page__content {
	padding-bottom: clamp(64px, 9vw, 96px);
}

/* アーカイブ */
.p-archive__header .c-sec-title {
	margin-bottom: 0;
}

.p-archive__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.p-archive__filters .c-badge {
	min-height: 40px;
	padding: 8px 20px;
	font-size: 13px;
}

.p-archive > .l-container {
	padding-block: clamp(40px, 6vw, 64px) clamp(64px, 9vw, 96px);
}

/* ページネーション */
.pagination {
	margin-top: 52px;
}

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

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 8px;
	border: 1.5px solid var(--c-line);
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-deep);
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pagination .page-numbers:hover {
	background: var(--c-soft);
	border-color: var(--c-pastel);
}

.pagination .page-numbers.current {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: var(--c-white);
}

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

/* 404 */
.p-404 {
	padding: clamp(80px, 14vw, 140px) 0;
	text-align: center;
}

.p-404__code {
	margin: 0 0 8px;
	color: var(--c-pastel);
	font-size: clamp(4rem, 12vw, 6.5rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
}

.p-404__title {
	margin: 0 0 18px;
	color: var(--c-deep);
	font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.p-404__text {
	margin: 0 0 32px;
}

/* -------------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------------- */
.l-footer {
	padding: clamp(56px, 8vw, 80px) 0 36px;
	background: var(--c-soft);
	background-image: var(--dot-line);
	background-repeat: repeat-x;
	background-position: left top;
	background-size: 12px 4px;
	text-align: center;
}

.l-footer__logo {
	margin-bottom: 26px;
}

.l-footer__logo .c-logo,
.l-footer__logo .custom-logo-link {
	align-items: center;
}

.l-footer__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 8px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.l-footer__menu a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
}

.l-footer__menu a:hover {
	background: rgba(255, 255, 255, 0.7);
}

.l-footer__menu .c-gnav__en {
	font-size: 13px;
}

.l-footer__sns {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.l-footer__sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-primary);
	box-shadow: var(--shadow-1);
	transition: transform 0.25s ease, color 0.25s ease;
}

.l-footer__sns a:hover {
	transform: translateY(-3px);
	color: var(--c-primary-dark);
}

.l-footer__note {
	margin: 0 0 6px;
	color: var(--c-text-weak);
	font-size: 12px;
	letter-spacing: 0.06em;
}

.l-footer__copy {
	margin: 0;
	color: var(--c-text-weak);
	font-size: 12.5px;
	letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------------
   15. Prose（Gutenberg本文）＋ブロックスタイル
   ------------------------------------------------------------------------- */
.c-prose {
	font-size: 16px;
	line-height: 2.1;
}

.c-prose > * {
	margin-block: 0 1.4em;
}

.c-prose h2 {
	margin-top: 2.2em;
	padding-bottom: 12px;
	color: var(--c-deep);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.6;
	background-image: var(--dot-line);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 12px 4px;
}

.c-prose h3 {
	position: relative;
	margin-top: 2em;
	padding-left: 22px;
	color: var(--c-deep);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.6;
}

.c-prose h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--c-pastel);
}

.c-prose h4 {
	margin-top: 1.8em;
	color: var(--c-deep);
	font-size: 1.05rem;
	font-weight: 700;
}

.c-prose ul,
.c-prose ol {
	padding-left: 1.5em;
}

.c-prose li {
	margin-bottom: 0.4em;
}

.c-prose li::marker {
	color: var(--c-primary);
}

.c-prose img {
	border-radius: var(--radius-s);
}

.c-prose figcaption {
	margin-top: 8px;
	color: var(--c-text-weak);
	font-size: 12.5px;
	text-align: center;
}

.c-prose blockquote {
	margin-inline: 0;
	padding: 20px 26px;
	border-left: 4px solid var(--c-pastel);
	border-radius: 0 var(--radius-s) var(--radius-s) 0;
	background: var(--c-soft);
}

.c-prose blockquote p:last-child {
	margin-bottom: 0;
}

.c-prose hr,
.c-prose .wp-block-separator {
	height: 4px;
	margin-block: 2.4em;
	border: 0;
	background-image: var(--dot-line);
	background-repeat: repeat-x;
	background-position: center;
	background-size: 12px 4px;
	opacity: 1;
}

.c-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.c-prose th,
.c-prose td {
	padding: 12px 16px;
	border: 1px solid var(--c-line);
	text-align: left;
}

.c-prose th {
	background: var(--c-soft);
	color: var(--c-deep);
	font-weight: 700;
}

.c-prose .wp-block-button__link {
	border-radius: 999px;
	font-weight: 700;
}

/* ブロックスタイル：ボタン「ソフト（淡色）」 */
.c-prose .wp-block-button.is-style-soft .wp-block-button__link,
.is-style-soft .wp-block-button__link {
	background: var(--c-soft);
	color: var(--c-deep);
	border: 1.5px solid var(--c-pastel);
}

/* ブロックスタイル：グループ「カード」 */
.wp-block-group.is-style-card {
	padding: clamp(22px, 4vw, 34px);
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-1);
}

/* ブロックスタイル：リスト「タイムライン」（実績・イベント歴用） */
ul.is-style-timeline {
	margin: 0;
	padding-left: 6px;
	list-style: none;
}

ul.is-style-timeline > li {
	position: relative;
	margin: 0;
	padding: 0 0 26px 30px;
}

ul.is-style-timeline > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--c-white);
	border: 3.5px solid var(--c-primary);
	box-sizing: border-box;
}

ul.is-style-timeline > li::after {
	content: "";
	position: absolute;
	left: 5.5px;
	top: calc(0.5em + 17px);
	bottom: 2px;
	width: 2px;
	border-radius: 2px;
	background: var(--c-pastel);
}

ul.is-style-timeline > li:last-child {
	padding-bottom: 4px;
}

ul.is-style-timeline > li:last-child::after {
	display: none;
}

/* -------------------------------------------------------------------------
   16. Motion / Focus / Responsive
   ------------------------------------------------------------------------- */

/* ふわっと表示（JSが .js-reveal を付与。動き削減設定時はJS側で無効化） */
.js-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* キーボードフォーカス */
:focus-visible {
	outline: 3px solid rgba(108, 81, 172, 0.55);
	outline-offset: 3px;
	border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

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

/* ---- タブレット以下 ---- */
@media (max-width: 960px) {
	:root {
		--header-h: 60px;
	}

	/* ナビ→ドロワー */
	.c-menu-btn {
		display: flex;
	}

	.c-gnav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 90;
		flex-direction: column;
		justify-content: flex-start;
		gap: 8px;
		padding: 36px 24px 48px;
		background: rgba(252, 250, 254, 0.97);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	}

	body.nav-open .c-gnav {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	body.nav-open {
		overflow: hidden;
	}

	.c-gnav__list {
		flex-direction: column;
		align-items: stretch;
		width: min(100%, 380px);
		margin-inline: auto;
		gap: 6px;
	}

	.c-gnav__list a {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		min-height: 54px;
		padding: 12px 22px;
		background: var(--c-white);
		border: 1px solid var(--c-line);
	}

	.c-gnav__en {
		font-size: 15.5px;
	}

	.c-gnav__ja {
		font-size: 11px;
	}

	.c-gnav__cta {
		width: min(100%, 380px);
		margin: 14px auto 0;
	}

	.c-gnav__cta .c-btn {
		width: 100%;
		min-height: 52px;
		font-size: 15px;
	}

	/* グリッド調整 */
	.c-card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.p-profile__grid {
		grid-template-columns: 1fr;
	}

	.p-profile__figure {
		position: static;
		max-width: 340px;
		margin-inline: auto;
	}

	.p-schedule__grid {
		grid-template-columns: 1fr;
	}

	.p-schedule__side {
		max-width: 480px;
		margin-inline: auto;
	}
}

/* ---- スマホ ---- */
@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.l-container {
		width: min(100% - 40px, var(--w-content));
	}

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

	.p-fan__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.p-profile__facts {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.p-hero {
		min-height: clamp(520px, 88svh, 700px);
		padding-block: 84px 104px;
	}

	.p-hero__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.p-hero__actions .c-btn {
		width: 100%;
	}

	.p-schedule__link {
		flex-wrap: wrap;
		gap: 8px 14px;
		padding: 16px 18px;
	}

	.p-schedule__title {
		flex-basis: 100%;
		order: 3;
	}

	.p-single__nav {
		flex-direction: column;
	}

	.p-single__nav-next {
		margin-left: 0;
		text-align: left;
	}

	.wpcf7 input[type="submit"] {
		width: 100%;
	}
}
