/*
Theme Name: Hoshino Suu
Theme URI: https://hoshinosuu.com/
Author: 星野スウ
Author URI: https://hoshinosuu.com/
Description: イラストレーター・星野スウ公式サイト用のオリジナルテーマ。HOME、WORKS、STYLE、ご依頼ページを専用デザインで実装。
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hoshino-suu
Tags: portfolio, illustration, custom-menu, custom-logo, translation-ready
*/

/* =========================================================
   00. Design tokens
   ========================================================= */
:root {
	/* --- Color ---------------------------------------- */
	--hs-bg:          #fffefc; /* 白〜ごく薄いアイボリー */
	--hs-bg-soft:     #fbf7f2; /* STYLE セクション */
	--hs-navy:        #1f3a5c; /* メイン：ルークのネイビー */
	--hs-navy-deep:   #0d264b; /* ボタン */
	--hs-pink:        #e27081; /* アクセント */
	--hs-pink-strong: #e2425c; /* キャッチコピーの強調 */
	--hs-pink-pale:   #fbf0f2; /* ご依頼CTA 背景 */
	--hs-green:       #6e9c86; /* サブ：エプロングリーン */
	--hs-mint:        #e5efea; /* 喫茶シロクロ 背景 */
	--hs-blue:        #7cb6df; /* ライトブルー */
	--hs-yellow:      #f0d9a3; /* 淡いイエロー */
	--hs-gray:        #9aa7b2; /* ライトグレー */

	--hs-text:        #2f4459;
	--hs-muted:       #7c8a97;
	--hs-line:        #e9e5e0;
	--hs-line-soft:   #f2eee9;

	/* --- Type ----------------------------------------- */
	--hs-font: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN",
		"Hiragino Sans", Meiryo, system-ui, sans-serif;

	/* --- Layout --------------------------------------- */
	--hs-content: 1280px;
	--hs-side: clamp(24px, 5.5vw, 80px);
	--hs-header-h: 96px;
	--hs-gap-section: clamp(64px, 7.2vw, 104px);
	--hs-radius-card: 16px;
	--hs-radius-block: 24px;

	--hs-ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   01. Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--hs-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	color: var(--hs-text);
	background: var(--hs-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-wrap: break-word;
	word-break: normal;
	line-break: strict;
}

/* 日本語の改行を文節単位に寄せる（対応ブラウザのみ） */
h1, h2, h3,
.hs-hero__lead,
.hs-sechead__lead,
.hs-stylecard__desc,
.hs-shirokuro__desc,
.hs-request__desc,
.hs-work__title {
	word-break: auto-phrase;
}

h1, h2, h3, h4, p, figure, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
img { border: 0; }
a { color: inherit; text-decoration: none; transition: color .25s var(--hs-ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.hs-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 12px 20px;
	background: var(--hs-navy-deep);
	color: #fff;
	font-size: 14px;
}
.hs-skip-link:focus { left: 8px; top: 8px; }

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

/* =========================================================
   02. Layout
   ========================================================= */
.hs-container {
	width: 100%;
	max-width: calc(var(--hs-content) + var(--hs-side) * 2);
	margin-inline: auto;
	padding-inline: var(--hs-side);
}

/* 装飾（点・点線） */
.hs-deco {
	position: absolute;
	pointer-events: none;
	background-image: radial-gradient(currentColor 1.3px, transparent 1.4px);
	background-size: 12px 12px;
	opacity: .5;
}

/* =========================================================
   03. Buttons / links
   ========================================================= */
.hs-btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 15px 32px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.5;
	transition: transform .3s var(--hs-ease), box-shadow .3s var(--hs-ease), background-color .3s var(--hs-ease);
}
.hs-btn--lg { padding: 17px 40px; font-size: 16px; }

.hs-btn__arrow { flex: none; width: 22px; transition: transform .3s var(--hs-ease); }
.hs-btn:hover { transform: translateY(-2px); }
.hs-btn:hover .hs-btn__arrow { transform: translateX(5px); }

.hs-btn--pink {
	background: var(--hs-pink);
	color: #fff;
	box-shadow: 0 6px 18px rgba(226, 112, 129, .26);
}
.hs-btn--pink:hover { background: #d9616f; box-shadow: 0 10px 24px rgba(226, 112, 129, .32); }

.hs-btn--navy {
	background: var(--hs-navy-deep);
	color: #fff;
	box-shadow: 0 6px 18px rgba(13, 38, 75, .2);
}
.hs-btn--navy:hover { background: #17386b; }

.hs-arrowlink {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 1.6;
}
.hs-arrowlink .hs-btn__arrow { width: 24px; }
.hs-arrowlink:hover .hs-btn__arrow { transform: translateX(6px); }
.hs-arrowlink--navy { color: var(--hs-navy); }
.hs-arrowlink--pink { color: var(--hs-pink); }

/* =========================================================
   04. Section heading
   ========================================================= */
.hs-sechead { text-align: center; }

.hs-sechead__title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: var(--hs-navy);
	font-weight: 700;
	line-height: 1.3;
}
.hs-sechead__en {
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: .14em;
}
.hs-sechead__ja {
	font-size: 15px;
	letter-spacing: .08em;
	position: relative;
	top: 2px;
}
.hs-sechead__mark { flex: none; width: 22px; color: #d9c3ad; }
.hs-sechead__mark--r { transform: scaleX(-1); }

.hs-sechead__lead {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.9;
	color: var(--hs-text);
}

/* =========================================================
   05. Header
   ========================================================= */
.hs-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 254, 252, .93);
	backdrop-filter: saturate(1.3) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s var(--hs-ease), box-shadow .3s var(--hs-ease);
}
.hs-header.is-stuck {
	border-bottom-color: var(--hs-line-soft);
	box-shadow: 0 4px 20px rgba(31, 58, 92, .05);
}
.hs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: var(--hs-header-h);
}

/* --- ブランド --- */
.hs-brand { display: inline-flex; align-items: center; gap: 14px; }
.hs-brand__text { display: block; line-height: 1; }
.hs-brand__name {
	display: block;
	color: var(--hs-navy);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .1em;
}
.hs-brand__sub {
	display: block;
	margin-top: 7px;
	color: var(--hs-navy);
	font-size: 10.5px;
	font-weight: 400;
	letter-spacing: .14em;
	opacity: .8;
}
.hs-brand__mark { flex: none; width: 46px; }
.hs-brand img.custom-logo { width: auto; max-height: 56px; }

/* --- ナビゲーション --- */
.hs-nav__list { display: flex; align-items: center; gap: 30px; }
.hs-nav__link {
	display: block;
	position: relative;
	text-align: center;
	color: var(--hs-navy);
	line-height: 1.4;
}
.hs-nav__label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .06em;
}
.hs-nav__desc {
	display: block;
	margin-top: 3px;
	font-size: 10.5px;
	font-weight: 400;
	letter-spacing: .02em;
	color: var(--hs-muted);
}
.hs-nav__link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: var(--hs-pink);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width .3s var(--hs-ease);
}
.hs-nav__link:hover::after,
.current-menu-item > .hs-nav__link::after { width: 24px; }

.hs-nav__item.is-contact .hs-nav__link {
	padding: 11px 28px;
	border-radius: 999px;
	background: var(--hs-navy-deep);
	color: #fff;
	box-shadow: 0 4px 14px rgba(13, 38, 75, .18);
	transition: background-color .25s var(--hs-ease), transform .25s var(--hs-ease);
}
.hs-nav__item.is-contact .hs-nav__desc { color: rgba(255, 255, 255, .82); }
.hs-nav__item.is-contact .hs-nav__link::after { display: none; }
.hs-nav__item.is-contact .hs-nav__link:hover { background: #17386b; transform: translateY(-2px); }

/* --- ハンバーガー --- */
.hs-navtoggle {
	display: none;
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 10px;
}
.hs-navtoggle__bar {
	position: absolute;
	left: 12px;
	width: 22px;
	height: 2px;
	background: var(--hs-navy);
	border-radius: 2px;
	transition: transform .3s var(--hs-ease), opacity .2s var(--hs-ease);
}
.hs-navtoggle__bar:nth-child(1) { top: 16px; }
.hs-navtoggle__bar:nth-child(2) { top: 22px; }
.hs-navtoggle__bar:nth-child(3) { top: 28px; }
.hs-navtoggle[aria-expanded="true"] .hs-navtoggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hs-navtoggle[aria-expanded="true"] .hs-navtoggle__bar:nth-child(2) { opacity: 0; }
.hs-navtoggle[aria-expanded="true"] .hs-navtoggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   06. Hero
   ========================================================= */
.hs-hero {
	position: relative;
	overflow: hidden;
	padding-block: 48px 64px;
}
.hs-hero__dots-l { left: -18px; top: 60px; width: 96px; height: 320px; color: #ccd5dd; }
.hs-hero__dots-r { right: 3%; top: 30px; width: 120px; height: 76px; color: #eeb8c2; transform: rotate(-8deg); }

.hs-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 36% 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas:
		"copy art"
		"notice art";
	column-gap: clamp(20px, 3vw, 44px);
	align-items: start;
	min-height: 560px;
}

.hs-hero__copy { grid-area: copy; padding-top: 28px; }
.hs-hero__art { grid-area: art; }
.hs-hero__notice { grid-area: notice; align-self: start; margin-top: 40px; }

.hs-hero__title {
	color: var(--hs-navy);
	font-size: clamp(30px, 3.4vw, 52px);
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.5;
}
.hs-hero__title .is-accent { color: var(--hs-pink-strong); }

.hs-hero__lead {
	margin-top: 26px;
	font-size: 15px;
	line-height: 2.1;
	color: var(--hs-text);
}
.hs-hero__cta { margin-top: 32px; }

/* アニメーション告知 */
.hs-hero__notice-inner { display: inline-flex; align-items: center; gap: 16px; }
a.hs-hero__notice-inner:hover .hs-hero__notice-en { color: var(--hs-pink); }
.hs-hero__notice-icon { flex: none; width: 44px; color: var(--hs-navy); }
.hs-hero__notice-text { line-height: 1.6; }
.hs-hero__notice-en {
	display: block;
	color: var(--hs-navy);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	transition: color .25s var(--hs-ease);
}
.hs-hero__notice-soon {
	display: block;
	margin-top: 3px;
	color: var(--hs-pink);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
}

/* --- コラージュ（位置はデザイン画に合わせて固定指定） --- */
.hs-hero__art {
	position: relative;
	width: 100%;
	aspect-ratio: 13 / 9;
}
.hs-hero__piece {
	position: absolute;
	display: block;
	width: 100%;
	animation: hs-float 8s ease-in-out infinite;
}
.hs-hero__piece img { display: block; width: 100%; }

/* Desktop（1280px以上想定） */
.hs-hero__piece--01 { left: 7.7%;  top: 3.7%;  width: 24.4%; animation-delay: -0.3s; }
.hs-hero__piece--04 { left: 36.5%; top: 2.2%;  width: 21.2%; animation-delay: -3.4s; }
.hs-hero__piece--05 { left: 63.4%; top: 0.9%;  width: 15.0%; animation-delay: -1.9s; }
.hs-hero__piece--06 { left: 81.8%; top: 8.3%;  width: 18.0%; animation-delay: -4.6s; }
.hs-hero__piece--03 { left: 32.1%; top: 32.4%; width: 32.1%; animation-delay: -1.2s; }
.hs-hero__piece--02 { left: 0;     top: 58.3%; width: 33.3%; animation-delay: -2.5s; }
.hs-hero__piece--07 { left: 41.0%; top: 68.5%; width: 21.8%; animation-delay: -3.0s; }
.hs-hero__piece--08 { left: 75.6%; top: 55.6%; width: 21.2%; animation-delay: -0.8s; }

@keyframes hs-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-7px); }
}

/* =========================================================
   07. WORKS
   ========================================================= */
.hs-works { padding-block: var(--hs-gap-section) 0; }

.hs-works__head { position: relative; margin-bottom: 44px; }
.hs-works__more { position: absolute; right: 0; bottom: 2px; }

.hs-works__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hs-work__link { display: block; }

.hs-work__thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius-card);
	background: #fff;
	transition: box-shadow .35s var(--hs-ease), transform .35s var(--hs-ease);
}
.hs-work__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--hs-ease);
}
.hs-work__link:hover .hs-work__thumb {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(31, 58, 92, .1);
}
.hs-work__link:hover .hs-work__thumb img { transform: scale(1.05); }

.hs-work__thumb.is-empty {
	display: grid;
	place-items: center;
	border-style: dashed;
	background: #fcfaf8;
}
.hs-work__placeholder {
	padding: 20px;
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--hs-muted);
	text-align: center;
}

/* PCのみ hover で抜粋を表示 */
.hs-work__hover {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(31, 58, 92, .84);
	color: #fff;
	opacity: 0;
	transition: opacity .35s var(--hs-ease);
}
.hs-work__hover-text {
	font-size: 13px;
	line-height: 1.85;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hs-work__cat {
	position: relative;
	z-index: 2;
	display: block;
	width: max-content;
	max-width: 92%;
	margin: -19px auto 0;
	padding: 8px 22px;
	border-radius: 999px;
	background: var(--hs-cat, var(--hs-navy));
	color: #fff;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.5;
	text-align: center;
	box-shadow: 0 4px 12px rgba(31, 58, 92, .13);
}

.hs-work__title {
	margin-top: 16px;
	color: var(--hs-navy);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

.hs-works__note {
	margin-top: 40px;
	font-size: 12.5px;
	line-height: 1.8;
	color: var(--hs-muted);
}

/* =========================================================
   08. STYLE
   ========================================================= */
.hs-style-wrap { padding-block: var(--hs-gap-section) 0; }

.hs-style {
	background: var(--hs-bg-soft);
	border-radius: var(--hs-radius-block);
	padding: clamp(32px, 3.6vw, 52px) clamp(20px, 3vw, 40px);
}
.hs-style .hs-sechead { margin-bottom: 40px; }

.hs-style__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hs-stylecard {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--hs-radius-card);
	padding: 28px 26px 30px;
	transition: transform .35s var(--hs-ease), box-shadow .35s var(--hs-ease);
}
.hs-stylecard:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(31, 58, 92, .08);
}

.hs-stylecard__title {
	color: var(--hs-navy);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .03em;
	line-height: 1.6;
	text-align: center;
}
.hs-stylecard__rule {
	display: block;
	width: min(80%, 200px);
	height: 3px;
	margin: 10px auto 0;
	border-radius: 3px;
	background: var(--hs-uline, var(--hs-line));
}

.hs-stylecard__figure {
	display: block;
	margin: 16px 0 18px;
	aspect-ratio: 4 / 3;
	max-height: 210px;
}
.hs-stylecard__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hs-stylecard__desc {
	flex: 1 1 auto;
	font-size: 13.5px;
	line-height: 1.95;
	color: var(--hs-text);
}
.hs-stylecard__link { margin-top: 20px; }

/* =========================================================
   09. 喫茶シロクロ
   ========================================================= */
.hs-shirokuro-wrap { padding-block: var(--hs-gap-section) 0; }

.hs-shirokuro {
	display: grid;
	grid-template-columns: 32% 1fr;
	overflow: hidden;
	border-radius: var(--hs-radius-block);
	background: var(--hs-mint);
	min-height: 260px;
}
.hs-shirokuro__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px clamp(24px, 2.8vw, 40px);
}
.hs-shirokuro__eyebrow {
	color: var(--hs-navy);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .2em;
	line-height: 1.6;
}
.hs-shirokuro__title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
	color: var(--hs-navy);
	font-size: clamp(26px, 2.6vw, 34px);
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.4;
}
.hs-shirokuro__paw { flex: none; width: 26px; color: var(--hs-navy); }
.hs-shirokuro__desc {
	margin-top: 18px;
	font-size: 14px;
	line-height: 2;
	color: var(--hs-text);
}
.hs-shirokuro__cta { margin-top: 26px; align-self: flex-start; }

.hs-shirokuro__figure { position: relative; }
.hs-shirokuro__figure img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* =========================================================
   10. ご依頼CTA
   ========================================================= */
.hs-request-wrap { padding-block: clamp(40px, 4.5vw, 64px) var(--hs-gap-section); }

.hs-request {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 56px);
	min-height: 200px;
	padding: 40px clamp(28px, 4vw, 64px);
	border-radius: var(--hs-radius-block);
	background: var(--hs-pink-pale);
}
.hs-request__dots { right: 24px; top: 20px; width: 92px; height: 56px; color: #efc3cb; }
.hs-request__body { position: relative; z-index: 1; }
.hs-request__title {
	color: var(--hs-navy);
	font-size: clamp(21px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.55;
}
.hs-request__desc {
	margin-top: 14px;
	font-size: 14.5px;
	line-height: 2;
}
.hs-request__cta { position: relative; z-index: 1; flex: none; }

/* =========================================================
   11. Footer
   ========================================================= */
.hs-footer {
	border-top: 1px solid var(--hs-line-soft);
	padding-block: 34px 26px;
}
.hs-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.hs-footer__nav .hs-nav__list { gap: 28px; }
.hs-footer .hs-brand__name { font-size: 21px; }
.hs-footer .hs-brand__mark { width: 38px; }
.hs-footer__copy {
	margin-top: 28px;
	text-align: center;
	font-size: 11.5px;
	letter-spacing: .04em;
	color: var(--hs-muted);
}

/* =========================================================
   12. Scroll reveal
   ========================================================= */
.hs-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s var(--hs-ease), transform .8s var(--hs-ease);
}
.hs-reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   13. Responsive — Tablet（768〜1279px）
   ========================================================= */
@media (hover: hover) and (min-width: 1025px) {
	.hs-work__hover { display: flex; }
	.hs-work__link:hover .hs-work__hover { opacity: 1; }
}

@media (max-width: 1279px) {
	:root { --hs-header-h: 80px; }

	/* ナビをドロワー化 */
	.hs-navtoggle { display: block; }
	.hs-nav {
		position: fixed;
		inset: var(--hs-header-h) 0 auto;
		max-height: calc(100dvh - var(--hs-header-h));
		overflow-y: auto;
		background: var(--hs-bg);
		border-top: 1px solid var(--hs-line-soft);
		box-shadow: 0 18px 32px rgba(31, 58, 92, .08);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s var(--hs-ease), transform .3s var(--hs-ease), visibility .3s;
	}
	.hs-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.hs-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px var(--hs-side) 28px;
	}
	.hs-nav__item + .hs-nav__item { border-top: 1px solid var(--hs-line-soft); }
	.hs-nav__link { text-align: left; padding: 18px 4px; }
	.hs-nav__link::after { display: none; }
	.hs-nav__label { font-size: 16px; }
	.hs-nav__desc { font-size: 11.5px; }
	.hs-nav__item.is-contact { border-top: 0; margin-top: 20px; }
	.hs-nav__item.is-contact .hs-nav__link { text-align: center; padding: 15px 28px; }

	/* フッターナビはドロワー化しない */
	.hs-footer__nav .hs-nav {
		position: static; max-height: none; overflow: visible;
		background: none; border: 0; box-shadow: none;
		opacity: 1; visibility: visible; transform: none;
	}
	.hs-footer__nav .hs-nav__list {
		flex-direction: row; flex-wrap: wrap; justify-content: center;
		padding: 0; gap: 22px;
	}
	.hs-footer__nav .hs-nav__item + .hs-nav__item { border-top: 0; }
	.hs-footer__nav .hs-nav__link { text-align: center; padding: 0; }
	.hs-footer__nav .hs-nav__label { font-size: 14px; }
	.hs-footer__nav .hs-nav__item.is-contact { margin-top: 0; }

	/* HERO：イラストを6点に絞り、位置を組み直す */
	.hs-hero__inner { min-height: 0; column-gap: 24px; }
	.hs-hero__art { aspect-ratio: 13 / 10.6; }
	.hs-hero__dots-l { left: -46px; width: 74px; height: 260px; }
	.hs-hero__piece--05,
	.hs-hero__piece--06 { display: none; }

	.hs-hero__piece--01 { left: 3%;    top: 4%;  width: 26%; }
	.hs-hero__piece--04 { left: 36%;   top: 0;   width: 24%; }
	.hs-hero__piece--08 { left: 71%;   top: 3%;  width: 26%; }
	.hs-hero__piece--03 { left: 25%;   top: 36%; width: 34%; }
	.hs-hero__piece--02 { left: 0;     top: 62%; width: 36%; }
	.hs-hero__piece--07 { left: 47%;   top: 64%; width: 26%; }

	/* Tablet：カードを大きくしすぎない */
	.hs-works__list { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
	.hs-style__list { grid-template-columns: repeat(4, 1fr); gap: 18px; }
	.hs-stylecard { padding: 22px 18px 24px; }
	.hs-stylecard__figure { margin: 16px 0; }

	/* 喫茶シロクロ：文章 → 画像 の1カラム。画像高は抑える */
	.hs-shirokuro { grid-template-columns: 1fr; min-height: 0; }
	.hs-shirokuro__figure { aspect-ratio: 16 / 4.5; }
}

@media (max-width: 899px) and (min-width: 768px) {
	/* iPad縦・Customizer内でもカードが巨大化しないよう密度を維持 */
	.hs-works__list { grid-template-columns: repeat(3, 1fr); gap: 26px 16px; }
	.hs-work__cat { font-size: 12px; padding: 7px 14px; }
	.hs-work__title { font-size: 13px; margin-top: 12px; }

	.hs-style { padding: 34px 22px 32px; }
	.hs-style__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
	.hs-stylecard { padding: 18px 14px 20px; }
	.hs-stylecard__title { font-size: 14px; }
	.hs-stylecard__rule { margin-top: 8px; }
	.hs-stylecard__figure { margin: 12px 0 14px; max-height: 155px; }
	.hs-stylecard__desc { font-size: 12px; line-height: 1.8; }
	.hs-stylecard__link { margin-top: 14px; font-size: 12px; }

	.hs-shirokuro__body { padding: 28px 28px 26px; }
	.hs-shirokuro__figure { aspect-ratio: 16 / 4.2; }
}

/* =========================================================
   14. Responsive — Mobile（767px以下）
   ========================================================= */
@media (max-width: 767px) {
	body { font-size: 15px; }

	:root {
		--hs-header-h: 72px;
		--hs-side: 22px;
		--hs-radius-block: 20px;
	}

	.hs-brand__name { font-size: 20px; }
	.hs-brand__sub { font-size: 9.5px; margin-top: 5px; }
	.hs-brand__mark { width: 38px; }

	/* HERO：コピー → 説明 → CTA → イラスト → GIF告知 */
	.hs-hero { padding-block: 40px 48px; }
	.hs-hero__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"copy"
			"art"
			"notice";
		row-gap: 8px;
	}
	.hs-hero__copy { padding-top: 8px; }
	.hs-hero__title { font-size: clamp(27px, 7.4vw, 34px); line-height: 1.55; }
	.hs-hero__lead { margin-top: 20px; font-size: 14px; }
	.hs-hero__cta { margin-top: 26px; }
	.hs-hero__notice { margin-top: 12px; }
	.hs-hero__dots-l { display: none; }
	.hs-hero__dots-r { right: -10px; top: 8px; width: 84px; height: 54px; }

	/* イラストは4点のみ */
	.hs-hero__art { aspect-ratio: 4 / 3; margin-top: 24px; }
	.hs-hero__piece { display: none; }
	.hs-hero__piece--02,
	.hs-hero__piece--03,
	.hs-hero__piece--06,
	.hs-hero__piece--07 { display: block; }

	.hs-hero__piece--06 { left: 2%;  top: 3%;  width: 24%; }
	.hs-hero__piece--03 { left: 38%; top: 0;   width: 48%; }
	.hs-hero__piece--02 { left: 0;   top: 52%; width: 50%; }
	.hs-hero__piece--07 { left: 60%; top: 52%; width: 36%; }

	/* WORKS */
	.hs-works__head { text-align: center; margin-bottom: 34px; }
	.hs-works__more { position: static; display: inline-flex; margin-top: 20px; }
	.hs-sechead__lead { font-size: 13.5px; }
	.hs-works__list { gap: 30px 16px; }
	.hs-work__cat { font-size: 12px; padding: 7px 14px; margin-top: -17px; }
	.hs-work__title { margin-top: 12px; font-size: 13px; }
	.hs-works__note { margin-top: 30px; font-size: 11.5px; }

	/* STYLE */
	.hs-style { padding: 34px 18px 32px; }
	.hs-style .hs-sechead { margin-bottom: 28px; }
	.hs-style__list { grid-template-columns: 1fr; gap: 18px; }
	.hs-stylecard { padding: 22px 20px 24px; }
	.hs-stylecard__figure { margin: 14px 0 16px; max-height: 220px; }

	/* 喫茶シロクロ */
	.hs-shirokuro__body { padding: 32px 24px 30px; }
	.hs-shirokuro__figure { aspect-ratio: 2 / 1; }

	/* ご依頼CTA */
	.hs-request {
		flex-direction: column;
		align-items: flex-start;
		gap: 26px;
		min-height: 0;
		padding: 32px 24px 34px;
	}
	.hs-request__dots { right: 14px; top: 14px; width: 70px; height: 44px; }
	.hs-request__desc { font-size: 13.5px; }
	.hs-request__cta { align-self: stretch; }
	.hs-request__cta .hs-btn { width: 100%; justify-content: center; }

	/* Footer */
	.hs-footer__inner { flex-direction: column; text-align: center; gap: 24px; }
	.hs-footer__nav .hs-nav__list { gap: 16px 20px; }
	.hs-footer__copy { margin-top: 22px; }
}

@media (min-width: 481px) and (max-width: 767px) {
	.hs-works__list { grid-template-columns: repeat(2, 1fr); }
	.hs-style__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.hs-stylecard { padding: 16px 14px 18px; }
	.hs-stylecard__title { font-size: 13px; }
	.hs-stylecard__figure { max-height: 150px; margin: 10px 0 12px; }
	.hs-stylecard__desc { font-size: 11.5px; line-height: 1.7; }
	.hs-stylecard__link { font-size: 11.5px; margin-top: 12px; }
}

@media (max-width: 480px) {
	.hs-works__list { grid-template-columns: 1fr; gap: 34px; }
}

/* =========================================================
   15. Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.hs-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   16. 管理バー
   ========================================================= */
.admin-bar .hs-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .hs-header { top: 46px; }
}

/* =========================================================
   12. WORKS Archive
   ========================================================= */
.hs-archive {
	padding-block: clamp(64px, 7vw, 100px) clamp(80px, 8vw, 120px);
}

.hs-archive__header {
	max-width: 900px;
	margin: 0 auto clamp(44px, 5vw, 68px);
	text-align: center;
}

.hs-archive__eyebrow {
	margin: 0 0 10px;
	color: var(--hs-pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
}

.hs-archive__title {
	margin: 0;
	color: var(--hs-navy);
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.35;
}

.hs-archive__lead {
	margin: 18px auto 0;
	color: var(--hs-text);
	font-size: 15px;
	line-height: 1.9;
}

.hs-archive__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.hs-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 17px;
	border: 1px solid var(--hs-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hs-navy);
	font-size: 12.5px;
	line-height: 1.4;
	transition: background-color .25s var(--hs-ease), color .25s var(--hs-ease), border-color .25s var(--hs-ease), transform .25s var(--hs-ease);
}

.hs-filter:hover,
.hs-filter.is-current {
	border-color: var(--hs-navy);
	background: var(--hs-navy);
	color: #fff;
	transform: translateY(-1px);
}

.hs-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(40px, 4vw, 58px) 28px;
}

.hs-archive-card__link {
	display: block;
}

.hs-archive-card__thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius-card);
	background: #fff;
	transition: transform .35s var(--hs-ease), box-shadow .35s var(--hs-ease);
}

.hs-archive-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s var(--hs-ease);
}

.hs-archive-card__link:hover .hs-archive-card__thumb {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(31, 58, 92, .10);
}

.hs-archive-card__link:hover .hs-archive-card__thumb img {
	transform: scale(1.035);
}

.hs-archive-card__thumb.is-empty {
	display: grid;
	place-items: center;
	border-style: dashed;
	background: var(--hs-bg-soft);
}

.hs-archive-card__placeholder {
	color: var(--hs-muted);
	font-size: 12px;
	letter-spacing: .14em;
}

.hs-archive-card__cat {
	margin-top: -18px;
}

.hs-archive-card__title {
	margin: 15px 8px 0;
	color: var(--hs-navy);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
}

.hs-archive__pagination {
	margin-top: clamp(64px, 7vw, 96px);
}

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

.hs-archive__pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 10px;
	border: 1px solid var(--hs-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hs-navy);
	font-size: 13px;
}

.hs-archive__pagination .page-numbers.current,
.hs-archive__pagination a.page-numbers:hover {
	border-color: var(--hs-navy);
	background: var(--hs-navy);
	color: #fff;
}

.hs-archive__empty {
	padding: 80px 20px;
	border-radius: var(--hs-radius-block);
	background: var(--hs-bg-soft);
	color: var(--hs-muted);
	text-align: center;
}

@media (max-width: 960px) {
	.hs-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 20px;
	}
}

@media (max-width: 600px) {
	.hs-archive {
		padding-block: 54px 84px;
	}
	.hs-archive__header {
		margin-bottom: 38px;
	}
	.hs-archive__title {
		font-size: 28px;
	}
	.hs-archive__lead {
		font-size: 14px;
	}
	.hs-archive__filters {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}
	.hs-filter {
		flex: none;
	}
	.hs-archive__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.hs-archive-card__title {
		font-size: 14px;
	}
}


/* =========================================================
   13. STYLE Category Archive
   ========================================================= */
.hs-style-archive {
	padding-block: clamp(64px, 7vw, 100px) clamp(80px, 8vw, 120px);
}

.hs-style-archive__header {
	max-width: 1040px;
	margin: 0 auto clamp(60px, 6vw, 84px);
	text-align: center;
}

.hs-style-archive__eyebrow {
	margin: 0 0 10px;
	color: var(--hs-pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
}

.hs-style-archive__title {
	margin: 0;
	color: var(--hs-navy);
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.35;
}

.hs-style-archive__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
	align-items: center;
	gap: clamp(36px, 5vw, 72px);
	margin-top: clamp(34px, 4vw, 52px);
	padding: clamp(28px, 3.5vw, 48px);
	border-radius: var(--hs-radius-block);
	background: var(--hs-bg-soft);
	text-align: left;
}

.hs-style-archive__figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	min-height: 0;
}

.hs-style-archive__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hs-style-archive__copy {
	color: var(--hs-text);
	font-size: 15px;
	line-height: 2;
}

.hs-style-archive__copy p { margin: 0; }

.hs-style-archive__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 0 0 22px;
	border-radius: 3px;
	background: var(--hs-uline, var(--hs-line));
}

.hs-style-gallery__title {
	margin: 0 0 clamp(30px, 3.5vw, 46px);
	color: var(--hs-navy);
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
}

.hs-style-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 2.5vw, 34px);
}

.hs-style-gallery__link {
	display: block;
}

.hs-style-gallery__thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius-card);
	background: #fff;
	transition: transform .35s var(--hs-ease), box-shadow .35s var(--hs-ease);
}

.hs-style-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s var(--hs-ease);
}

.hs-style-gallery__link:hover .hs-style-gallery__thumb {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(31, 58, 92, .10);
}

.hs-style-gallery__link:hover .hs-style-gallery__thumb img {
	transform: scale(1.035);
}

.hs-style-gallery__thumb.is-empty {
	display: grid;
	place-items: center;
	border-style: dashed;
	background: var(--hs-bg-soft);
}

.hs-style-gallery__placeholder {
	color: var(--hs-muted);
	font-size: 12px;
	letter-spacing: .14em;
}

@media (max-width: 960px) {
	.hs-style-archive__intro {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
	.hs-style-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.hs-style-archive {
		padding-block: 54px 84px;
	}
	.hs-style-archive__header {
		margin-bottom: 48px;
	}
	.hs-style-archive__title {
		font-size: 28px;
	}
	.hs-style-archive__intro {
		grid-template-columns: 1fr;
		padding: 24px 20px 28px;
		text-align: center;
	}
	.hs-style-archive__copy {
		font-size: 14px;
	}
	.hs-style-archive__rule {
		margin-inline: auto;
	}
	.hs-style-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

/* =========================================================
   14. STYLE archive refinements / Illustration hub (v9)
   ========================================================= */
.hs-style-archive__copy-label {
	margin: 0 0 10px !important;
	color: var(--hs-navy);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.5;
}

.hs-style-archive__copy .hs-style-archive__rule {
	margin-bottom: 18px;
}

.hs-style-gallery__heading {
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 28px;
	margin: 0 0 clamp(30px, 3.5vw, 46px);
	position: relative;
}

.hs-style-gallery__heading .hs-style-gallery__title {
	margin: 0;
}

.hs-style-gallery__all-link {
	position: absolute;
	right: 0;
	bottom: 3px;
	color: var(--hs-navy);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .03em;
	text-decoration: none;
	transition: color .25s var(--hs-ease), transform .25s var(--hs-ease);
}

.hs-style-gallery__all-link:hover {
	color: var(--hs-pink);
	transform: translateX(3px);
}

.hs-illustration-archive {
	padding-block: clamp(64px, 7vw, 100px) clamp(80px, 8vw, 120px);
}

.hs-illustration-archive__header {
	max-width: 760px;
	margin: 0 auto clamp(42px, 5vw, 64px);
	text-align: center;
}

.hs-illustration-archive__title {
	margin: 0;
	color: var(--hs-navy);
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 700;
	letter-spacing: .05em;
}

.hs-illustration-archive__lead {
	margin: 22px 0 0;
	color: var(--hs-text);
	font-size: 15px;
	line-height: 1.9;
}

.hs-illustration-styles {
	margin-bottom: clamp(72px, 7vw, 100px);
	padding: clamp(28px, 3vw, 42px);
	border-radius: var(--hs-radius-block);
	background: var(--hs-bg-soft);
}

.hs-illustration-styles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.hs-illustration-style-card {
	display: block;
	padding: 22px 18px 18px;
	border-radius: var(--hs-radius-card);
	background: #fff;
	color: var(--hs-navy);
	text-align: center;
	text-decoration: none;
	transition: transform .3s var(--hs-ease), box-shadow .3s var(--hs-ease);
}

.hs-illustration-style-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(31, 58, 92, .09);
}

.hs-illustration-style-card__title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.hs-illustration-style-card__rule {
	display: block;
	width: 76px;
	height: 3px;
	margin: 12px auto 14px;
	border-radius: 3px;
	background: var(--hs-uline, var(--hs-line));
}

.hs-illustration-style-card__image {
	aspect-ratio: 4 / 3;
}

.hs-illustration-style-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hs-illustration-all {
	margin-top: 0;
}

@media (max-width: 960px) {
	.hs-illustration-styles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.hs-style-gallery__heading {
		display: block;
		text-align: center;
	}
	.hs-style-gallery__all-link {
		position: static;
		display: inline-block;
		margin-top: 14px;
	}
	.hs-style-archive__copy-label {
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	.hs-illustration-archive {
		padding-block: 54px 84px;
	}
	.hs-illustration-styles {
		padding: 18px;
	}
	.hs-illustration-styles__grid {
		gap: 14px;
	}
	.hs-illustration-style-card {
		padding: 18px 12px 14px;
	}
	.hs-illustration-style-card__title {
		font-size: 13px;
	}
}

/* =========================================================
   15. CONTACT / Request page (v10)
   ========================================================= */
.hs-contact-page {
	padding-bottom: clamp(90px, 9vw, 132px);
}

.hs-contact-hero {
	max-width: 930px;
	padding-top: clamp(72px, 8vw, 118px);
	padding-bottom: clamp(62px, 7vw, 96px);
	text-align: center;
}

.hs-contact-eyebrow,
.hs-contact-sechead__en {
	margin: 0 0 12px;
	color: var(--hs-pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
}

.hs-contact-title {
	margin: 0;
	color: var(--hs-navy);
	font-size: clamp(32px, 3.3vw, 46px);
	line-height: 1.45;
	letter-spacing: .04em;
}

.hs-contact-lead {
	margin: 28px auto 0;
	max-width: 760px;
	font-size: 16px;
	line-height: 2;
}

.hs-contact-section {
	padding-bottom: clamp(76px, 8vw, 112px);
}

.hs-contact-sechead {
	margin-bottom: clamp(30px, 3.5vw, 48px);
	text-align: center;
}

.hs-contact-sechead h2 {
	margin: 0;
	color: var(--hs-navy);
	font-size: clamp(25px, 2.5vw, 34px);
	line-height: 1.5;
	letter-spacing: .04em;
}

.hs-contact-sechead > p:last-child:not(.hs-contact-sechead__en) {
	margin: 16px 0 0;
	font-size: 15px;
}

.hs-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hs-price-card {
	padding: 34px 30px 30px;
	border: 1px solid var(--hs-line-soft);
	border-radius: var(--hs-radius-card);
	background: #fff;
	box-shadow: 0 10px 28px rgba(31, 58, 92, .045);
}

.hs-price-card--main {
	background: var(--hs-pink-pale);
}

.hs-price-card__label {
	margin: 0 0 18px;
	color: var(--hs-navy);
	font-size: 16px;
	font-weight: 700;
}

.hs-price-card__price {
	margin: 0;
	color: var(--hs-navy-deep);
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 700;
	line-height: 1.5;
}

.hs-price-card__price span {
	margin-right: 6px;
	font-size: 14px;
	font-weight: 500;
}

.hs-price-card__price--text {
	font-size: clamp(21px, 2.1vw, 28px);
}

.hs-price-card__note {
	margin: 18px 0 0;
	font-size: 14px;
	line-height: 1.9;
}

.hs-contact-notes {
	margin-top: 24px;
	padding: 20px 24px;
	border-left: 3px solid var(--hs-yellow);
	background: #fffdf8;
	font-size: 13px;
	line-height: 1.9;
}

.hs-contact-notes p {
	margin: 0;
}

.hs-contact-notes p + p {
	margin-top: 8px;
}

.hs-contact-section--soft {
	margin-bottom: clamp(76px, 8vw, 112px);
	padding-block: clamp(62px, 6vw, 86px);
	background: var(--hs-bg-soft);
}

.hs-flow-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hs-flow-card {
	position: relative;
	min-height: 188px;
	padding: 28px 26px 24px;
	border-radius: var(--hs-radius-card);
	background: #fff;
}

.hs-flow-card__num {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--hs-pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
}

.hs-flow-card strong {
	display: block;
	color: var(--hs-navy);
	font-size: 16px;
}

.hs-flow-card p {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.85;
}

.hs-contact-info__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 980px;
	margin-inline: auto;
}

.hs-contact-info__card {
	padding: 34px 34px 30px;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius-card);
	background: #fff;
}

.hs-contact-info__card h3 {
	margin: 0 0 18px;
	color: var(--hs-navy);
	font-size: 18px;
}

.hs-contact-info__card p,
.hs-contact-info__card li {
	font-size: 14px;
	line-height: 1.9;
}

.hs-contact-info__card p {
	margin: 8px 0 0;
}

.hs-contact-info__card ul {
	margin: 0;
	padding-left: 1.35em;
}

.hs-contact-info__small {
	color: var(--hs-muted);
}

.hs-contact-form-section {
	padding-block: clamp(66px, 7vw, 100px);
	background: var(--hs-pink-pale);
}

.hs-contact-form-wrap {
	max-width: 900px;
}

.hs-contact-form {
	padding: clamp(28px, 4vw, 52px);
	border-radius: var(--hs-radius-block);
	background: #fff;
	box-shadow: 0 16px 38px rgba(31, 58, 92, .055);
}

/* Contact Form 7 をテーマに馴染ませる */
.hs-contact-form .wpcf7-form p {
	margin: 0 0 24px;
}

.hs-contact-form label {
	display: block;
	color: var(--hs-navy);
	font-size: 14px;
	font-weight: 600;
}

.hs-contact-form input[type="text"],
.hs-contact-form input[type="email"],
.hs-contact-form input[type="url"],
.hs-contact-form input[type="tel"],
.hs-contact-form input[type="number"],
.hs-contact-form input[type="date"],
.hs-contact-form select,
.hs-contact-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 13px 15px;
	border: 1px solid var(--hs-line);
	border-radius: 10px;
	background: #fff;
	color: var(--hs-text);
	font: inherit;
	font-size: 15px;
	line-height: 1.6;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.hs-contact-form textarea {
	min-height: 180px;
	resize: vertical;
}

.hs-contact-form input:focus,
.hs-contact-form select:focus,
.hs-contact-form textarea:focus {
	border-color: var(--hs-pink);
	box-shadow: 0 0 0 3px rgba(226, 112, 129, .12);
}

.hs-contact-form input[type="radio"],
.hs-contact-form input[type="checkbox"] {
	margin-right: 5px;
}

.hs-contact-form .wpcf7-list-item {
	margin: 8px 18px 0 0;
}

.hs-contact-form input[type="submit"] {
	min-width: 180px;
	padding: 14px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--hs-pink);
	box-shadow: 0 9px 18px rgba(226, 112, 129, .18);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .03em;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.hs-contact-form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(226, 112, 129, .24);
}

.hs-contact-form__notice {
	margin: 0;
	color: var(--hs-muted);
	font-size: 14px;
}

@media (max-width: 900px) {
	.hs-price-grid,
	.hs-flow-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.hs-contact-hero {
		padding-top: 56px;
		padding-bottom: 54px;
	}
	.hs-contact-title {
		font-size: 30px;
	}
	.hs-contact-lead {
		font-size: 14px;
	}
	.hs-pc-only {
		display: none;
	}
	.hs-price-grid,
	.hs-flow-grid,
	.hs-contact-info__grid {
		grid-template-columns: 1fr;
	}
	.hs-price-card,
	.hs-contact-info__card {
		padding: 26px 22px 24px;
	}
	.hs-flow-card {
		min-height: 0;
	}
	.hs-contact-form {
		padding: 24px 18px;
	}
}

/* =========================================================
   ABOUT / PROFILE
   ========================================================= */
.hs-about-page { color: var(--hs-navy); }
.hs-about-hero { min-height: 560px; display:grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px,7vw,110px); align-items:center; padding-top:90px; padding-bottom:100px; }
.hs-about-hero__image { display:flex; justify-content:center; align-items:center; }
.hs-about-hero__image img { width:min(100%,390px); max-height:430px; object-fit:contain; }
.hs-about-eyebrow { margin:0 0 14px; color:#e9687e; font-size:13px; font-weight:700; letter-spacing:.22em; }
.hs-about-hero h1 { margin:0; font-size:clamp(34px,4vw,52px); line-height:1.25; letter-spacing:.06em; }
.hs-about-hero h1 span { display:block; margin-top:10px; color:#7b8793; font-size:15px; font-weight:500; letter-spacing:.12em; }
.hs-about-role { margin:20px 0 30px; font-size:17px; letter-spacing:.08em; }
.hs-about-lead { margin:0; max-width:650px; font-size:16px; line-height:2.1; }
.hs-about-section { padding-top:90px; padding-bottom:90px; }
.hs-about-section--soft { background:#fbf8f3; }
.hs-about-sechead { text-align:center; margin-bottom:48px; }
.hs-about-sechead p { margin:0 0 10px; color:#e9687e; font-size:13px; font-weight:700; letter-spacing:.2em; }
.hs-about-sechead h2 { margin:0; font-size:30px; letter-spacing:.06em; }
.hs-about-linkgrid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.hs-about-linkcard { display:block; padding:38px 42px; border:1px solid #ebe5dd; border-radius:22px; background:#fff; color:var(--hs-navy); text-decoration:none; transition:transform .2s ease, box-shadow .2s ease; }
.hs-about-linkcard:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(29,55,82,.08); }
.hs-about-linkcard span { color:#e9687e; font-size:12px; font-weight:700; letter-spacing:.18em; }
.hs-about-linkcard strong { display:block; margin:10px 0 14px; font-size:22px; }
.hs-about-linkcard p { margin:0 0 18px; line-height:1.9; color:#46596a; }
.hs-about-linkcard b { color:#e9687e; font-size:14px; }
.hs-about-original { display:grid; grid-template-columns:.82fr 1.18fr; overflow:hidden; border-radius:24px; background:#e8f3ef; }
.hs-about-original__body { padding:55px 50px; align-self:center; }
.hs-about-original__body h2 { margin:0 0 22px; font-size:34px; }
.hs-about-original__body p { line-height:1.95; }
.hs-about-original__image { min-height:360px; }
.hs-about-original__image img { width:100%; height:100%; object-fit:cover; display:block; }
.hs-about-follow { background:#fff1f3; }
.hs-about-socials { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:850px; margin:0 auto; }
.hs-about-socials a { display:grid; grid-template-columns:auto 1fr; column-gap:20px; align-items:center; padding:30px 34px; border-radius:20px; background:#fff; color:var(--hs-navy); text-decoration:none; }
.hs-about-socials span { grid-row:1/3; display:grid; place-items:center; width:54px; height:54px; border-radius:50%; background:var(--hs-navy); color:#fff; font-weight:700; }
.hs-about-socials strong { font-size:19px; }
.hs-about-socials small { color:#77838e; }
.hs-about-details { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.hs-about-details > div { min-height:180px; padding:32px; border:1px solid #ebe5dd; border-radius:20px; }
.hs-about-details h3 { margin:0 0 16px; font-size:20px; }
.hs-about-details p:last-child { margin-bottom:0; line-height:1.9; color:#46596a; }
.hs-about-cta { margin-bottom:90px; display:flex; justify-content:space-between; align-items:center; gap:40px; padding:44px 52px; border-radius:24px; background:#fbf0f2; }
.hs-about-cta h2 { margin:0 0 10px; font-size:28px; }
.hs-about-cta p:not(.hs-about-eyebrow) { margin:0; }

@media (max-width: 900px) {
  .hs-about-hero { min-height:0; grid-template-columns: .72fr 1.28fr; gap:36px; padding-top:70px; padding-bottom:75px; }
  .hs-about-hero__image img { max-height:330px; }
  .hs-about-original { grid-template-columns:1fr; }
  .hs-about-original__image { min-height:280px; }
  .hs-about-details { grid-template-columns:1fr 1fr; }
  .hs-about-details > div:last-child { grid-column:1/-1; }
}
@media (max-width: 640px) {
  .hs-about-hero { grid-template-columns:1fr; text-align:center; padding-top:54px; padding-bottom:64px; }
  .hs-about-hero__image { order:2; }
  .hs-about-hero__image img { width:230px; max-height:270px; }
  .hs-about-lead { font-size:15px; }
  .hs-about-section { padding-top:64px; padding-bottom:64px; }
  .hs-about-linkgrid, .hs-about-socials, .hs-about-details { grid-template-columns:1fr; }
  .hs-about-details > div:last-child { grid-column:auto; }
  .hs-about-linkcard { padding:28px; }
  .hs-about-original__body { padding:36px 28px; }
  .hs-about-original__image { min-height:220px; }
  .hs-about-cta { margin-bottom:60px; padding:32px 26px; flex-direction:column; align-items:flex-start; }
}

/* 15. Kissa Shirokuro */
.hs-sk{overflow:hidden;background:var(--hs-bg);color:var(--hs-text)}.hs-sk .hs-eyebrow{font-size:12px;font-weight:700;letter-spacing:.18em;color:var(--hs-green);margin:0 0 10px}.hs-sk h1,.hs-sk h2,.hs-sk h3{color:var(--hs-navy);margin-top:0}.hs-sk h1{font-size:clamp(38px,5vw,70px);line-height:1.15;margin-bottom:20px}.hs-sk h2{font-size:clamp(27px,3vw,40px);margin-bottom:22px}.hs-sk p{line-height:1.9}.hs-sk-section{padding:clamp(72px,8vw,120px) 0}
.hs-sk-hero{background:#f8f2ed;padding:clamp(45px,6vw,86px) 0 0}.hs-sk-hero__inner{display:grid;grid-template-columns:.72fr 1.28fr;align-items:center;gap:clamp(30px,5vw,80px)}.hs-sk-hero__copy{padding-bottom:50px}.hs-sk-hero__visual img,.hs-sk-about__image img,.hs-sk-worldcard__image img{width:100%;display:block;border-radius:24px}.hs-sk-about__grid{display:grid;grid-template-columns:1.08fr .92fr;gap:clamp(40px,7vw,100px);align-items:center}.hs-sk-copy p{margin:0 0 15px}.hs-sk-credit{font-size:13px;color:#718293;margin-top:28px!important;padding-top:18px;border-top:1px dashed #d6dde2}.hs-section-heading{text-align:center;max-width:760px;margin:0 auto 48px}
.hs-sk-characters{background:var(--hs-bg-soft)}.hs-sk-mainchars{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}.hs-sk-mainchar{display:grid;grid-template-columns:45% 55%;background:#fff;border-radius:24px;overflow:hidden;min-height:330px;border:1px solid rgba(31,58,92,.06)}.hs-sk-mainchar__image{display:flex;align-items:flex-end;justify-content:center;background:#f7f3ef;padding:20px 10px 0}.hs-sk-mainchar__image img{width:100%;height:100%;max-height:320px;object-fit:contain;object-position:center bottom}.hs-sk-mainchar__body{padding:38px 34px;align-self:center}.hs-sk-mainchar__body h3{font-size:28px;margin-bottom:14px}.hs-sk-mainchar__body p{font-size:14px;margin-bottom:0}.hs-sk-mainchar__role{font-size:11px!important;letter-spacing:.12em;color:var(--hs-pink)!important;font-weight:700;margin-bottom:7px!important}.hs-sk-subheading{text-align:center;margin:90px 0 36px}.hs-sk-townchars{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}.hs-sk-townchar{background:#fff;border-radius:20px;padding:16px 16px 20px;text-align:center;border:1px solid rgba(31,58,92,.06)}.hs-sk-townchar__image{aspect-ratio:1/1;background:#f7f3ef;border-radius:15px;overflow:hidden}.hs-sk-townchar__image img{width:100%;height:100%;object-fit:contain}.hs-sk-townchar h3{font-size:16px;margin:14px 0 0}
.hs-sk-worldcard{display:grid;grid-template-columns:1.35fr .65fr;gap:50px;align-items:center;margin:0 0 70px}.hs-sk-worldcard--reverse{grid-template-columns:.65fr 1.35fr}.hs-sk-worldcard--reverse .hs-sk-worldcard__image{order:2}.hs-sk-worldcard h3{font-size:28px}.hs-sk-inside{background:var(--hs-mint)}.hs-sk-interiors{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.hs-sk-interior{position:relative;background:#fff;border-radius:20px;overflow:hidden}.hs-sk-interior__image{aspect-ratio:3/2;opacity:.35}.hs-sk-interior__image img{width:100%;height:100%;object-fit:cover;filter:grayscale(.3)}.hs-sk-interior span{position:absolute;inset:0;display:grid;place-items:center;font-size:13px;font-weight:700;letter-spacing:.16em;color:var(--hs-navy)}
.hs-sk-read{background:#f8f2ed}.hs-sk-read__inner{max-width:920px;text-align:center}.hs-sk-socials{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:42px 0}.hs-sk-socials a{display:flex;flex-direction:column;gap:4px;padding:23px 15px;border-radius:16px;background:#fff;color:var(--hs-navy);text-decoration:none}.hs-sk-socials strong{font-size:18px}.hs-sk-socials span{font-size:12px;color:#718293}.hs-sk-closing{font-size:18px;font-weight:700;color:var(--hs-navy);margin-top:55px}
@media(max-width:900px){.hs-sk-hero__inner,.hs-sk-about__grid{grid-template-columns:1fr}.hs-sk-hero__copy{padding-bottom:0}.hs-sk-mainchar{grid-template-columns:1fr}.hs-sk-mainchar__image{height:280px}.hs-sk-worldcard,.hs-sk-worldcard--reverse{grid-template-columns:1fr;gap:24px}.hs-sk-worldcard--reverse .hs-sk-worldcard__image{order:0}}
@media(max-width:680px){.hs-sk-section{padding:68px 0}.hs-sk-hero__visual{margin-left:-24px;margin-right:-24px}.hs-sk-hero__visual img{border-radius:0}.hs-sk-mainchars{grid-template-columns:1fr}.hs-sk-mainchar{grid-template-columns:42% 58%;min-height:230px}.hs-sk-mainchar__image{height:auto}.hs-sk-mainchar__body{padding:25px 20px}.hs-sk-mainchar__body h3{font-size:23px}.hs-sk-mainchar__body p{font-size:13px}.hs-sk-townchars{grid-template-columns:repeat(2,1fr);gap:14px}.hs-sk-interiors,.hs-sk-socials{grid-template-columns:1fr}.hs-sk-worldcard{margin-bottom:55px}}


/* v14 — Shirokuro character hierarchy */
@media (min-width: 900px){
  .hs-sk-mainchars{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
  .hs-sk-mainchar{display:flex;flex-direction:column;min-height:0}
  .hs-sk-mainchar__image{height:300px;padding:18px 14px 0}
  .hs-sk-mainchar__image img{max-height:280px;width:100%;height:100%;object-fit:contain;object-position:center bottom}
  .hs-sk-mainchar__body{padding:26px 28px 30px;align-self:auto}
  .hs-sk-mainchar__body h3{font-size:25px}
}
@media (min-width: 640px) and (max-width: 899px){
  .hs-sk-mainchars{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
  .hs-sk-mainchar{display:flex;flex-direction:column;min-height:0}
  .hs-sk-mainchar__image{height:230px;padding:14px 10px 0}
  .hs-sk-mainchar__image img{max-height:215px}
  .hs-sk-mainchar__body{padding:22px 20px 24px}
  .hs-sk-mainchar__body h3{font-size:22px}
}\n
/* =========================================================
   v15 — Shirokuro Comic / Gallery
   ========================================================= */
.hs-comic-archive,
.hs-shiro-gallery {
	padding-top: clamp(72px, 8vw, 118px);
	padding-bottom: clamp(90px, 9vw, 140px);
}
.hs-comic-archive__header,
.hs-shiro-gallery__header {
	max-width: 780px;
	margin: 0 auto clamp(64px, 7vw, 96px);
	text-align: center;
}
.hs-comic-archive__title,
.hs-shiro-gallery__title {
	margin: 10px 0 20px;
	color: var(--hs-navy);
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: .05em;
}
.hs-comic-archive__lead,
.hs-shiro-gallery__lead {
	margin: 0 auto;
	color: var(--hs-text);
	font-size: 15px;
	line-height: 2;
}
.hs-comic-archive__first { margin-top: 30px; }
.hs-comic-list__head { margin-bottom: 42px; }
.hs-comic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 28px;
}
.hs-comic-card__link { display:block; color:var(--hs-navy); text-decoration:none; }
.hs-comic-card__thumb,
.hs-shiro-gallery__thumb {
	overflow:hidden;
	border:1px solid var(--hs-line);
	border-radius:18px;
	background:#fff;
	aspect-ratio:4/3;
}
.hs-comic-card__thumb img,
.hs-shiro-gallery__thumb img,
.hs-sk-preview__thumb img {
	width:100%; height:100%; display:block; object-fit:cover;
	transition: transform .25s ease;
}
.hs-comic-card__thumb.is-empty,
.hs-shiro-gallery__thumb.is-empty { display:grid; place-items:center; color:var(--hs-muted); }
.hs-comic-card__link:hover img,
.hs-shiro-gallery__link:hover img,
.hs-sk-preview a:hover img { transform:scale(1.025); }
.hs-comic-card__title {
	margin:16px 4px 0;
	font-size:15px;
	line-height:1.7;
	text-align:center;
}
.hs-shiro-gallery__grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:22px;
}
.hs-shiro-gallery__link { display:block; text-decoration:none; }

.hs-sk-library { background:#fff; }
.hs-sk-library__block + .hs-sk-library__block { margin-top: clamp(72px, 8vw, 110px); }
.hs-sk-library__head {
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	gap:30px;
	margin-bottom:30px;
}
.hs-sk-library__head h3 { margin:0 0 8px; font-size:clamp(24px,2.7vw,34px); }
.hs-sk-library__head p:not(.hs-eyebrow) { margin:0; color:var(--hs-muted); font-size:14px; }
.hs-sk-previewgrid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.hs-sk-preview a { display:block; color:var(--hs-navy); text-decoration:none; }
.hs-sk-preview__thumb {
	overflow:hidden;
	aspect-ratio:4/3;
	border:1px solid var(--hs-line);
	border-radius:16px;
	background:var(--hs-bg-soft);
}
.hs-sk-preview__thumb span { display:grid; place-items:center; height:100%; color:var(--hs-muted); font-size:12px; }
.hs-sk-preview h4 { margin:12px 4px 0; font-size:13px; line-height:1.65; text-align:center; }
.hs-sk-preview--image h4 { display:none; }
.hs-sk-library__empty { color:var(--hs-muted); font-size:14px; }

@media (max-width: 900px) {
	.hs-comic-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
	.hs-shiro-gallery__grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
	.hs-sk-previewgrid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
	.hs-comic-archive,
	.hs-shiro-gallery { padding-top:58px; padding-bottom:80px; }
	.hs-comic-grid { grid-template-columns:1fr; gap:30px; }
	.hs-shiro-gallery__grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
	.hs-sk-library__head { align-items:flex-start; flex-direction:column; gap:14px; }
	.hs-sk-previewgrid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
	.hs-sk-preview h4 { font-size:12px; }
}
