@charset "UTF-8";
/* ============================================================
   HitotubuVintage Theme
   ヴィンテージビーズを楽しむ小さなお店「ヒトツブヴィンテージ」

   - クリーム × ウッドブラウン × ディープグリーンの配色
   - 見出し：Zen Old Mincho ／ 本文：Zen Kaku Gothic New
   - 英字あしらい：Cormorant Garamond
============================================================ */

/* ------------------------------------------------------------
   デザイントークン
------------------------------------------------------------ */
:root {
	/* 色 */
	--c-bg: #F9F5EE;
	--c-bg-alt: #F1EADA;
	--c-white: #FFFDF8;
	--c-ink: #2E2620;
	--c-ink-soft: #6B5F53;
	--c-amber: #A9772F;
	--c-caramel: #C09159;
	--c-karashi: #C9A227; /* 芥子色 */
	--c-navy: #1F3A5F; /* 紺色 */
	--c-green: #39584A;
	--c-green-dark: #2C443A;
	--c-red: #AE3B32;
	--c-line: #E3D9C6;
	--c-dark: #241D17;
	/* 緑・濃色の背景上で使う白ベースの文字色（未来喫茶ボックスと同じ） */
	--c-cream-soft: rgba(255, 253, 248, .92);

	/* 書体 */
	--font-serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
	--font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-en: "Cormorant Garamond", Georgia, serif;

	/* レイアウト */
	--header-h: 84px;
	--radius: 6px;
	--shadow: 0 12px 40px rgba(46, 38, 32, .10);
	--shadow-soft: 0 6px 24px rgba(46, 38, 32, .07);
}

/* ------------------------------------------------------------
   リセット・ベース
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body.hv {
	margin: 0;
	background-color: var(--c-bg);
	background-image: radial-gradient(rgba(169, 119, 47, .05) 1px, transparent 1px);
	background-size: 26px 26px;
	color: var(--c-ink);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 2;
	letter-spacing: .06em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.hv.is-nav-open { overflow: hidden; }

.hv img { max-width: 100%; height: auto; vertical-align: bottom; }
/* 緑ボタンは別途白文字を指定するため、通常リンク色から除外する */
.hv a:not(.hv-btn) { color: var(--c-ink); transition: color .3s, opacity .3s; }
.hv a:not(.hv-btn):hover { color: var(--c-amber); }
.hv figure { margin: 0; }
.hv h1, .hv h2, .hv h3, .hv h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: .1em; }
.hv em { font-style: normal; }

.pc-only { display: inline; }
@media (max-width: 767px) { .pc-only { display: none; } }

.js-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .9s ease, transform .9s ease;
}
.js-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js-reveal { opacity: 1; transform: none; transition: none; }
	.hv-marquee__track { animation: none !important; }
	.hv-hero__motif { animation: none !important; }
}

/* ------------------------------------------------------------
   共通パーツ：ビーズモチーフ（ロゴの○◆□）
------------------------------------------------------------ */
.hv-motif { display: inline-block; width: 9px; height: 9px; }
.hv-motif--circle { border-radius: 50%; background: var(--c-amber); }
.hv-motif--diamond { transform: rotate(45deg); background: var(--c-green); }
.hv-motif--square { background: var(--c-red); }
.hv-motif--triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 9px 5px;
	border-color: transparent transparent var(--c-navy) transparent;
	background: transparent;
}

/* ------------------------------------------------------------
   共通パーツ：ボタン
------------------------------------------------------------ */
/* 緑ボタンの文字色は「未来喫茶」見出しと同じクリームホワイト（#FFFDF8） */
.hv-btn,
.hv a.hv-btn,
.hv a.hv-btn:link,
.hv a.hv-btn:visited,
.hv a.hv-btn:hover,
.hv a.hv-btn:focus,
.hv a.hv-btn:active,
.hv button.hv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 16px 36px;
	border: 1px solid var(--c-green);
	border-radius: 999px;
	background: var(--c-green);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .12em;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: color .35s, background-color .35s, border-color .35s, transform .35s, box-shadow .35s, -webkit-text-fill-color .35s;
}
.hv-btn__label {
	position: relative;
	z-index: 1;
	color: inherit;
	-webkit-text-fill-color: inherit;
}
.hv-btn::after {
	content: "→";
	position: relative;
	z-index: 1;
	font-family: var(--font-en);
	color: inherit;
	-webkit-text-fill-color: inherit;
	transition: transform .35s;
}
.hv-btn:hover,
.hv a.hv-btn:hover,
.hv a.hv-btn:focus,
.hv a.hv-btn:active,
.hv button.hv-btn:hover {
	background: var(--c-green-dark);
	border-color: var(--c-green-dark);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
}
.hv-btn:hover::after { transform: translateX(5px); }

.hv-btn--outline,
.hv a.hv-btn--outline,
.hv a.hv-btn--outline:link,
.hv a.hv-btn--outline:visited,
.hv a.hv-btn--outline:hover,
.hv a.hv-btn--outline:focus {
	background: transparent;
	border-color: var(--c-ink);
	color: var(--c-ink);
	-webkit-text-fill-color: var(--c-ink);
}
.hv-btn--outline:hover,
.hv a.hv-btn--outline:hover,
.hv a.hv-btn--outline:focus,
.hv a.hv-btn--outline:active {
	background: var(--c-ink);
	border-color: var(--c-ink);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}

.hv-btn--back,
.hv a.hv-btn--back {
	background: transparent;
	border-color: var(--c-ink-soft);
	color: var(--c-ink-soft);
	-webkit-text-fill-color: var(--c-ink-soft);
}
.hv-btn--back::after { content: none; }
.hv-btn--back:hover,
.hv a.hv-btn--back:hover {
	background: var(--c-ink-soft);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}

.hv-btn--small { min-width: 180px; padding: 12px 28px; font-size: 13px; }
.hv-btn-wrap { display: flex; }

.hv-textlink {
	color: var(--c-amber);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: opacity .3s;
}
.hv-textlink:hover { opacity: .65; color: var(--c-amber); }

/* ------------------------------------------------------------
   ヘッダー
------------------------------------------------------------ */
.hv-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(249, 245, 238, .92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--c-line);
	transition: box-shadow .3s;
}
.hv-header.is-scrolled { box-shadow: 0 4px 24px rgba(46, 38, 32, .08); }

.hv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 28px;
	height: var(--header-h);
}

.hv-header__logo-link {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}
.hv-header__logo-mark {
	width: 52px;
	height: 52px;
	transition: transform .4s;
}
.hv-header__logo-link:hover .hv-header__logo-mark { transform: rotate(-6deg); }
.hv-header__logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.hv-header__logo-jp {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--c-ink);
}
.hv-header__logo-en {
	font-family: var(--font-en);
	font-size: 10px;
	letter-spacing: .32em;
	color: var(--c-amber);
}

/* グローバルナビ（PC） */
.hv-gnav {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hv-gnav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	padding: 8px 13px;
	text-decoration: none;
	position: relative;
	flex-shrink: 0;
}
.hv-gnav__jp { font-size: 13.5px; font-weight: 500; letter-spacing: .1em; white-space: nowrap; }
.hv-gnav__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 10.5px;
	letter-spacing: .18em;
	color: var(--c-amber);
	white-space: nowrap;
}
.hv-gnav__link::after {
	content: "";
	position: absolute;
	left: 50%; bottom: -2px;
	width: 0; height: 2px;
	background: var(--c-amber);
	transition: width .3s, left .3s;
}
.hv-gnav__link:hover::after { width: 60%; left: 20%; }

.hv-gnav__link--shop .hv-gnav__jp::after {
	content: "↗";
	font-size: 11px;
	margin-left: 4px;
	color: var(--c-amber);
}

.hv-header__nav-foot { display: none; }

.hv-header__actions { display: flex; align-items: center; gap: 16px; }
.hv-header__reserve { min-width: 0; }
.hv-header__reserve-sp { display: none; }

/* ハンバーガー（SP用） */
.hv-header__toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	width: 52px;
	padding: 8px 4px;
	background: none;
	border: none;
	cursor: pointer;
}
.hv-header__toggle-line {
	display: block;
	width: 26px; height: 1.5px;
	background: var(--c-ink);
	transition: transform .35s, opacity .35s;
}
.hv-header__toggle-label {
	font-family: var(--font-en);
	font-size: 9px;
	letter-spacing: .2em;
	color: var(--c-ink-soft);
}
.is-nav-open .hv-header__toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.is-nav-open .hv-header__toggle-line:nth-child(2) { opacity: 0; }
.is-nav-open .hv-header__toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* メイン領域はヘッダー分下げる */
.hv-main { padding-top: var(--header-h); }

/* ------------------------------------------------------------
   セクション共通
------------------------------------------------------------ */
.hv-section { padding: 110px 0; position: relative; }
.hv-section--cream { background: var(--c-bg-alt); }
.hv-section__inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 28px;
}
.hv-section__inner--narrow { max-width: 860px; }

.hv-section__header { text-align: center; margin-bottom: 56px; }
.hv-section__header--left { text-align: left; }
.hv-section__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 17px;
	letter-spacing: .24em;
	color: var(--c-amber);
	margin: 0 0 6px;
}
.hv-section__title {
	font-size: 32px;
	line-height: 1.6;
	margin: 0;
	position: relative;
}
.hv-section__title--small { font-size: 24px; }
.hv-section__header:not(.hv-section__header--left) .hv-section__title::after {
	content: "";
	display: block;
	width: 48px; height: 1px;
	background: var(--c-amber);
	margin: 22px auto 0;
}
.hv-section__lead { margin: 24px 0 0; color: var(--c-ink-soft); }

.hv-section__more { text-align: center; margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hv-section__more--left { align-items: flex-start; }

/* 汎用見出し（英字ラベル付き h2） */
.hv-heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 26px;
	line-height: 1.6;
	margin: 0 0 28px;
}
.hv-heading__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 15px;
	letter-spacing: .22em;
	color: var(--c-amber);
	font-weight: 400;
}

/* 定義リスト */
.hv-dl { margin: 0; }
.hv-dl__row { display: flex; gap: 20px; padding: 14px 0; }
.hv-dl__row dt {
	flex: 0 0 110px;
	font-weight: 700;
	color: var(--c-green);
}
.hv-dl__row dd { margin: 0; flex: 1; }
.hv-dl--bordered .hv-dl__row { border-bottom: 1px solid var(--c-line); padding: 20px 0; }
.hv-dl--bordered .hv-dl__row:first-child { border-top: 1px solid var(--c-line); }

/* お知らせボックス */
.hv-notice-box {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-amber);
	border-radius: var(--radius);
	padding: 28px 32px;
	margin-top: 28px;
}
.hv-notice-box__title {
	font-size: 17px;
	margin: 0 0 10px;
	color: var(--c-green);
}
.hv-notice-box p { margin: 0 0 16px; }
.hv-notice-box p:last-of-type { margin-bottom: 0; }
.hv-notice-box .hv-btn-wrap { margin-top: 18px; }

.hv-cafe-inline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 18px;
}
.hv-cafe-inline__logo img {
	display: block;
	width: 88px;
	height: 88px;
	object-fit: cover;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: #fff;
}

/* ------------------------------------------------------------
   下層ページ共通ヘッダー
------------------------------------------------------------ */
.hv-page-header {
	padding: 92px 28px 84px;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(169, 119, 47, .06), transparent 70%),
		var(--c-bg);
	border-bottom: 1px solid var(--c-line);
}
.hv-page-header__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 19px;
	letter-spacing: .26em;
	color: var(--c-amber);
	margin: 0 0 8px;
}
.hv-page-header__title {
	font-size: 38px;
	margin: 0;
	line-height: 1.5;
}
.hv-page-header__motif {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}
.hv-page-header__lead {
	margin: 26px auto 0;
	max-width: 720px;
	color: var(--c-ink-soft);
}

/* ------------------------------------------------------------
   トップ：ヒーロー
------------------------------------------------------------ */
.hv-hero { padding: 40px 0 0; overflow: hidden; }
.hv-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 28px 90px;
	display: grid;
	grid-template-columns: 47% 53%;
	align-items: center;
	gap: 20px;
}

.hv-hero__copy { display: flex; gap: 36px; }
.hv-hero__tate {
	writing-mode: vertical-rl;
	font-family: var(--font-serif);
	font-size: 15px;
	letter-spacing: .42em;
	color: var(--c-amber);
	border-right: 1px solid var(--c-line);
	padding-right: 22px;
	margin: 6px 0 0;
	height: 300px;
}
.hv-hero__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 16px;
	letter-spacing: .2em;
	color: var(--c-amber);
	margin: 0 0 14px;
}
.hv-hero__title {
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 1.7;
	margin: 0 0 26px;
	font-weight: 700;
}
.hv-hero__title em {
	color: var(--c-green);
	position: relative;
}
.hv-hero__title em::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 4px;
	height: 8px;
	background: rgba(169, 119, 47, .22);
	z-index: -1;
}
.hv-hero__lead { color: var(--c-ink-soft); margin: 0 0 34px; }
.hv-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hv-hero__note { font-size: 12.5px; color: var(--c-ink-soft); margin: 0; }

.hv-hero__visual { position: relative; min-height: 560px; }
.hv-hero__photo { position: absolute; overflow: hidden; border-radius: var(--radius); }
.hv-hero__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}
.hv-hero__photo--main {
	top: 0; right: 0;
	width: 74%;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow);
	z-index: 1;
}
.hv-hero__photo--main::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 253, 248, .55);
	border-radius: 3px;
	pointer-events: none;
}
.hv-hero__photo--sub {
	left: 0; bottom: -30px;
	width: 42%;
	aspect-ratio: 3 / 4;
	border: 6px solid var(--c-white);
	box-shadow: var(--shadow-soft);
	z-index: 2;
}

.hv-hero__motif {
	position: absolute;
	display: block;
	z-index: 3;
	pointer-events: none;
	opacity: .85;
	animation: hv-float 8s ease-in-out infinite;
}
.hv-hero__motif--circle { border-radius: 50%; background: var(--c-caramel); }
.hv-hero__motif--diamond { background: var(--c-green); transform: rotate(45deg); }
.hv-hero__motif--square { background: var(--c-red); }
.hv-hero__motif--triangle {
	width: 0;
	height: 0;
	background: transparent;
	border-style: solid;
	border-color: transparent transparent var(--c-navy) transparent;
}

/* サイズ */
.hv-hero__motif--p1,
.hv-hero__motif--p10 { width: 22px; height: 22px; }
.hv-hero__motif--p2,
.hv-hero__motif--p7,
.hv-hero__motif--p9 { width: 16px; height: 16px; }
.hv-hero__motif--p3,
.hv-hero__motif--p5,
.hv-hero__motif--p6,
.hv-hero__motif--p11,
.hv-hero__motif--p13 { width: 11px; height: 11px; }

.hv-hero__motif--triangle.hv-hero__motif--p4 { border-width: 0 8px 14px 8px; width: 0; height: 0; }
.hv-hero__motif--triangle.hv-hero__motif--p8 { border-width: 0 6px 11px 6px; width: 0; height: 0; }
.hv-hero__motif--triangle.hv-hero__motif--p12 { border-width: 0 9px 16px 9px; width: 0; height: 0; }
.hv-hero__motif--triangle.hv-hero__motif--p14 { border-width: 0 5px 9px 5px; width: 0; height: 0; }

/* 配置 */
.hv-hero__motif--p1 { top: -14px; left: 12%; animation-duration: 7s; }
.hv-hero__motif--p2 { right: -8px; top: 46%; animation-duration: 9s; animation-direction: reverse; }
.hv-hero__motif--p3 { left: 38%; bottom: -46px; animation-duration: 8s; animation-delay: -2s; }
.hv-hero__motif--p4 { top: 7%; right: 16%; animation-duration: 10s; animation-delay: -1s; }
.hv-hero__motif--p5 { top: 30%; left: 6%; animation-duration: 6.5s; animation-delay: -3s; }
.hv-hero__motif--p6 { bottom: 16%; right: 5%; animation-duration: 8.5s; animation-delay: -4s; }
.hv-hero__motif--p7 { top: -10px; right: 30%; animation-duration: 7.5s; animation-delay: -1.5s; }
.hv-hero__motif--p8 { left: 24%; top: 54%; animation-duration: 9.5s; animation-delay: -2.5s; }
.hv-hero__motif--p9 { bottom: 6%; left: -4px; animation-duration: 7s; animation-delay: -5s; }
.hv-hero__motif--p10 { top: 20%; right: -12px; animation-duration: 11s; animation-direction: reverse; }
.hv-hero__motif--p11 { right: 34%; bottom: 10%; animation-duration: 8s; animation-delay: -3.5s; }
.hv-hero__motif--p12 { left: 46%; top: -12px; animation-duration: 9s; animation-delay: -.8s; }
.hv-hero__motif--p13 { left: 3%; bottom: 38%; animation-duration: 6.8s; animation-delay: -4.2s; }
.hv-hero__motif--p14 { right: 8%; top: 70%; animation-duration: 10.5s; animation-delay: -6s; }
@keyframes hv-float {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -14px; }
}

/* マーキー */
.hv-marquee {
	overflow: hidden;
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
	padding: 16px 0;
	background: var(--c-white);
}
.hv-marquee__track {
	display: flex;
	white-space: nowrap;
	width: max-content;
	animation: hv-marquee 36s linear infinite;
}
.hv-marquee__text {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 20px;
	letter-spacing: .22em;
	color: var(--c-caramel);
}
@keyframes hv-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   トップ：お知らせ
------------------------------------------------------------ */
.hv-news-list { list-style: none; margin: 0; padding: 0; max-width: 860px; margin-inline: auto; }
.hv-news-list__item { border-bottom: 1px solid var(--c-line); }
.hv-news-list__item:first-child { border-top: 1px solid var(--c-line); }
.hv-news-list__link {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 22px 14px;
	text-decoration: none;
	transition: background-color .3s;
	position: relative;
}
.hv-news-list__link:hover { background: rgba(169, 119, 47, .06); }
.hv-news-list__date {
	font-family: var(--font-en);
	font-size: 15px;
	letter-spacing: .12em;
	color: var(--c-amber);
	flex-shrink: 0;
}
.hv-news-list__category,
.hv-blog-list__category,
.hv-article__category {
	display: inline-block;
	flex-shrink: 0;
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--c-green);
	border: 1px solid var(--c-green);
	border-radius: 999px;
	padding: 2px 12px;
	line-height: 1.6;
	text-decoration: none;
}
.hv-news-list__title { flex: 1; font-weight: 500; }
.hv-news-list__arrow {
	flex-shrink: 0;
	width: 34px; height: 34px;
	border: 1px solid var(--c-line);
	border-radius: 50%;
	position: relative;
	transition: background-color .3s, border-color .3s;
}
.hv-news-list__arrow::after {
	content: "→";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--font-en);
	font-size: 14px;
	color: var(--c-amber);
	transition: color .3s;
}
.hv-news-list__link:hover .hv-news-list__arrow { background: var(--c-green); border-color: var(--c-green); }
.hv-news-list__link:hover .hv-news-list__arrow::after { color: var(--c-white); }
.hv-top-news__empty { text-align: center; color: var(--c-ink-soft); }

/* ------------------------------------------------------------
   トップ：スタンプカードバナー
------------------------------------------------------------ */
.hv-stamp-banner {
	padding: 0 0 56px;
}
.hv-stamp-banner__link {
	display: block;
	max-width: 500px;
	margin: 0 auto;
	line-height: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform .35s ease, box-shadow .35s ease;
}
.hv-stamp-banner__link:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}
.hv-stamp-banner__img {
	width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------------------------------
   スタンプカードページ
------------------------------------------------------------ */
.hv-stamp__intro {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 48px;
}
.hv-stamp__phone {
	margin: 0;
	text-align: center;
}
.hv-stamp__phone img {
	width: 100%;
	max-width: 220px;
	height: auto;
}
.hv-stamp__compare {
	margin: 0 0 48px;
	text-align: center;
}
.hv-stamp__compare img {
	width: 100%;
	height: auto;
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}
.hv-stamp__notes {
	margin: 0 0 20px;
	padding-left: 1.4em;
	line-height: 2;
}
.hv-stamp__member {
	margin: 0;
	line-height: 1.9;
}

/* ------------------------------------------------------------
   トップ：コンセプト
------------------------------------------------------------ */
.hv-top-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}
.hv-top-about__desc { color: var(--c-ink-soft); margin: 0 0 20px; }
.hv-top-about__photos { position: relative; min-height: 480px; }
.hv-top-about__photo { position: absolute; overflow: hidden; border-radius: var(--radius); }
.hv-top-about__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}
.hv-top-about__photo--1 {
	top: 0; left: 0;
	width: 72%;
	aspect-ratio: 1 / 1;
	box-shadow: var(--shadow);
}
.hv-top-about__photo--2 {
	right: 0; bottom: 0;
	width: 48%;
	aspect-ratio: 4 / 5;
	border: 6px solid var(--c-white);
	box-shadow: var(--shadow-soft);
}

.hv-stats {
	list-style: none;
	margin: 90px 0 0;
	padding: 44px 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
}
.hv-stats__item {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-right: 1px solid var(--c-line);
}
.hv-stats__item:last-child { border-right: none; }
.hv-stats__num {
	font-family: var(--font-en);
	font-size: 46px;
	line-height: 1.2;
	color: var(--c-green);
}
.hv-stats__num small {
	font-family: var(--font-serif);
	font-size: 15px;
	margin-left: 4px;
	color: var(--c-ink);
}
.hv-stats__label { font-size: 13px; color: var(--c-ink-soft); }

/* ------------------------------------------------------------
   トップ：体験プランカード
------------------------------------------------------------ */
.hv-plan-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.hv-plan-card {
	display: flex;
	flex-direction: column;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	transition: transform .4s, box-shadow .4s;
}
.hv-plan-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	color: var(--c-ink);
}
.hv-plan-card__photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.hv-plan-card__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform .6s;
}
.hv-plan-card:hover .hv-plan-card__photo img { transform: scale(1.06); }
.hv-plan-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
	padding: 26px 26px 30px;
}
.hv-plan-card__title { font-size: 18px; margin: 0; }
.hv-plan-card__desc { font-size: 13.5px; color: var(--c-ink-soft); margin: 0; flex: 1; }
.hv-plan-card__meta {
	display: flex;
	gap: 14px;
	margin: 0;
	font-size: 13px;
	color: var(--c-green);
	font-weight: 700;
}
.hv-plan-card__meta span::before { content: "◆"; font-size: 8px; vertical-align: 2px; margin-right: 6px; color: var(--c-caramel); }
.hv-plan-card__more {
	align-self: flex-start;
	font-size: 13px;
	letter-spacing: .12em;
	color: var(--c-amber);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}

.hv-plan-mini {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.hv-plan-mini a {
	display: block;
	padding: 16px 24px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	transition: border-color .3s, background-color .3s;
}
.hv-plan-mini a::after {
	content: "→";
	position: absolute;
	right: 22px; top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-en);
	color: var(--c-amber);
}
.hv-plan-mini a:hover { border-color: var(--c-amber); background: rgba(169, 119, 47, .05); }

/* ------------------------------------------------------------
   トップ：ネットショップ・カフェ
------------------------------------------------------------ */
.hv-top-shop__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.hv-top-shop__box {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 44px 46px;
}
.hv-top-shop__box .hv-section__title--small { margin-bottom: 16px; }
.hv-top-shop__desc { color: var(--c-ink-soft); margin: 0 0 24px; }
.hv-top-shop__shop-row { display: flex; align-items: center; gap: 24px; }
.hv-top-shop__qr,
.hv-top-shop__cafe-logo { flex-shrink: 0; }
.hv-top-shop__qr img {
	display: block;
	width: 110px;
	height: 110px;
	object-fit: contain;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: #fff;
	padding: 8px;
}
.hv-top-shop__qr-note { font-size: 12px; color: var(--c-ink-soft); margin: 10px 0 0; }

.hv-top-shop__box--cafe {
	background: var(--c-green);
	border-color: var(--c-green);
	color: rgba(255, 253, 248, .92);
}
.hv-top-shop__box--cafe .hv-section__en { color: var(--c-caramel); }
.hv-top-shop__box--cafe .hv-section__title--small { color: var(--c-white); }
.hv-top-shop__box--cafe .hv-top-shop__desc { color: rgba(255, 253, 248, .78); }
.hv-top-shop__cafe-note { font-size: 12.5px; margin: 10px 0 0; color: var(--c-caramel); }
.hv-top-shop__cafe-logo img {
	display: block;
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: var(--radius);
	background: #000;
}
.hv-top-shop__box--cafe .hv-btn--outline,
.hv-top-shop__box--cafe a.hv-btn--outline,
.hv-top-shop__box--cafe a.hv-btn--outline:link,
.hv-top-shop__box--cafe a.hv-btn--outline:visited {
	border-color: rgba(255, 253, 248, .7);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}
.hv-top-shop__box--cafe .hv-btn--outline:hover,
.hv-top-shop__box--cafe a.hv-btn--outline:hover,
.hv-top-shop__box--cafe a.hv-btn--outline:focus {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-dark);
	-webkit-text-fill-color: var(--c-dark);
}

.hv-tag {
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
	padding: 2px 12px;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .12em;
	color: var(--c-white);
	background: var(--c-red);
	border-radius: 999px;
}

/* ------------------------------------------------------------
   トップ：アクセス
------------------------------------------------------------ */
.hv-top-access__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 56px;
	align-items: start;
}
.hv-top-access__map iframe,
.hv-access__map iframe {
	width: 100%;
	height: 550px;
	border: none;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	filter: sepia(.14);
}
.hv-top-access__name {
	font-family: var(--font-serif);
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 14px;
}
.hv-top-access__note {
	font-size: 13px;
	color: var(--c-red);
	background: rgba(174, 59, 50, .07);
	border-radius: var(--radius);
	padding: 14px 18px;
	margin: 20px 0 24px;
}

/* ------------------------------------------------------------
   トップ：Works
------------------------------------------------------------ */
.hv-top-works .hv-section__header { margin-bottom: 44px; }
.hv-works-strip {
	overflow: hidden;
	padding: 0;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}
.hv-works-strip.is-dragging { cursor: grabbing; }
.hv-works-strip__track {
	display: flex;
	gap: 16px;
	width: max-content;
	will-change: transform;
}
.hv-works-strip figure {
	flex: 0 0 auto;
	height: 240px;
	overflow: hidden;
	border-radius: var(--radius);
	margin: 0;
}
.hv-works-strip img {
	height: 100%;
	width: auto;
	display: block;
	pointer-events: none;
	-webkit-user-drag: none;
}

/* ------------------------------------------------------------
   共通CTA
------------------------------------------------------------ */
.hv-cta { padding: 110px 28px; background: var(--c-dark); position: relative; overflow: hidden; }
.hv-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(192, 145, 89, .12) 1px, transparent 1px);
	background-size: 22px 22px;
}
.hv-cta__inner {
	position: relative;
	max-width: 1060px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.hv-cta__box {
	text-align: center;
	padding: 52px 40px;
	border: 1px solid rgba(227, 217, 198, .25);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, .03);
}
.hv-cta__en {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 15px;
	letter-spacing: .24em;
	color: var(--c-caramel);
	margin: 0 0 6px;
}
.hv-cta__title { font-size: 24px; color: var(--c-white); margin: 0 0 18px; }
.hv-cta__text { color: rgba(255, 253, 248, .72); font-size: 13.5px; margin: 0 0 28px; }
.hv-cta__box a.hv-btn--outline,
.hv-cta__box a.hv-btn--outline:link,
.hv-cta__box a.hv-btn--outline:visited,
.hv-cta__box a.hv-btn--outline:focus {
	background: transparent;
	border-color: rgba(255, 253, 248, .8);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}
.hv-cta__box a.hv-btn--outline:hover,
.hv-cta__box a.hv-btn--outline:active {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-dark);
	-webkit-text-fill-color: var(--c-dark);
}
.hv-cta__box a.hv-cta__tel,
.hv-cta__box a.hv-cta__tel:link,
.hv-cta__box a.hv-cta__tel:visited {
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.hv-cta__box a.hv-cta__tel:hover {
	color: var(--c-caramel);
	-webkit-text-fill-color: var(--c-caramel);
}

/* ------------------------------------------------------------
   SNSリスト
------------------------------------------------------------ */
.hv-sns-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.hv-sns-list__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	text-decoration: none;
	font-size: 13px;
	transition: border-color .3s, background-color .3s, color .3s;
}
.hv-sns-list__link:hover {
	border-color: var(--c-green);
	background: var(--c-green);
	color: var(--c-white);
}
.hv-sns-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hv-sns-list--compact,
.hv-sns-list--footer {
	justify-content: center;
	flex-wrap: nowrap;
}
.hv-sns-list--compact .hv-sns-list__item,
.hv-sns-list--footer .hv-sns-list__item {
	flex: 0 0 auto;
}
.hv-sns-list--compact { margin-top: 24px; }
.hv-sns-list--footer {
	margin: 0 0 20px;
}
.hv-sns-list--footer .hv-sns-list__link {
	background: transparent;
	font-size: 12.5px;
	padding: 8px 12px;
}
.hv-footer__bottom {
	border-top: 1px solid var(--c-line);
	padding: 28px 22px 22px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ------------------------------------------------------------
   店舗情報（店舗案内ページ）
------------------------------------------------------------ */
.hv-site-info { background: var(--c-white); }
.hv-site-info__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px 48px;
}
.hv-site-info__block--wide { grid-column: 1 / -1; }
.hv-site-info__heading {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 14px;
	letter-spacing: .08em;
}
.hv-site-info__lead {
	font-size: 14px;
	color: var(--c-ink-soft);
	margin: 0 0 16px;
}
.hv-site-info__block p {
	margin: 0 0 14px;
	font-size: 14.5px;
	line-height: 1.9;
}
.hv-site-info__block p:last-child { margin-bottom: 0; }
.hv-site-info__note {
	font-size: 13.5px;
	color: var(--c-ink-soft);
}
.hv-site-info__block--cafe {
	background: var(--c-green);
	color: var(--c-white);
	padding: 28px 32px;
	border-radius: var(--radius);
}
.hv-site-info__block--cafe .hv-site-info__heading { color: var(--c-white); }
.hv-site-info__block--cafe .hv-site-info__note { color: rgba(255, 253, 248, .85); }
.hv-site-info__block--cafe .hv-sns-list__link {
	border-color: rgba(255, 253, 248, .3);
	background: rgba(255, 253, 248, .1);
	color: var(--c-white);
}
.hv .hv-site-info__block--cafe a.hv-btn--outline,
.hv .hv-site-info__block--cafe a.hv-btn--outline:link,
.hv .hv-site-info__block--cafe a.hv-btn--outline:visited,
.hv .hv-site-info__block--cafe a.hv-btn--outline:hover,
.hv .hv-site-info__block--cafe a.hv-btn--outline:focus,
.hv .hv-site-info__block--cafe a.hv-btn--outline:active {
	background: transparent;
	border-color: var(--c-white);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}
.hv .hv-site-info__block--cafe a.hv-btn--outline:hover,
.hv .hv-site-info__block--cafe a.hv-btn--outline:focus,
.hv .hv-site-info__block--cafe a.hv-btn--outline:active {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-green);
	-webkit-text-fill-color: var(--c-green);
}

/* ------------------------------------------------------------
   フッター
------------------------------------------------------------ */
.hv-footer { background: var(--c-bg); border-top: 1px solid var(--c-line); }
.hv-footer__inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 80px 28px 60px;
	display: grid;
	grid-template-columns: 1.4fr 1fr auto;
	gap: 60px;
}
.hv-footer__logo { margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.hv-footer__logo-motif { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hv-footer__logo-jp {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .16em;
}
.hv-footer__logo-en {
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: .34em;
	color: var(--c-amber);
}
.hv-footer__catch { font-size: 13px; color: var(--c-ink-soft); margin: 0 0 20px; }
.hv-footer__address { font-style: normal; font-size: 13.5px; margin: 0 0 14px; }
.hv-footer__address a { text-decoration: none; }
.hv-footer__hours { font-size: 12.5px; color: var(--c-ink-soft); margin: 0; }

.hv-footer__nav { display: flex; gap: 48px; }
.hv-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.hv-footer__menu a {
	text-decoration: none;
	font-size: 13.5px;
	position: relative;
	padding-left: 16px;
}
.hv-footer__menu a::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 6px; height: 1px;
	background: var(--c-amber);
}

.hv-footer__shop-online { text-align: center; }
.hv-footer__qr-title {
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 12px;
}
.hv-footer__qr {
	background: #fff;
	padding: 8px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
}
.hv-footer__qr-note { font-size: 11.5px; color: var(--c-ink-soft); margin: 10px 0 0; }

.hv-footer__legal {
	margin: 0 0 14px;
	font-size: 12.5px;
	letter-spacing: .12em;
}
.hv-footer__legal a {
	color: var(--c-ink-soft);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .3s, border-color .3s;
}
.hv-footer__legal a:hover {
	color: var(--c-ink);
	border-bottom-color: var(--c-ink-soft);
}
.hv-footer__copyright {
	font-family: var(--font-en);
	font-size: 12px;
	letter-spacing: .18em;
	color: var(--c-ink-soft);
	margin: 0;
}

/* ページトップへ戻る */
.hv-pagetop {
	position: fixed;
	right: 26px; bottom: 26px;
	z-index: 90;
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 1px solid var(--c-line);
	background: var(--c-white);
	cursor: pointer;
	box-shadow: var(--shadow-soft);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s, background-color .3s;
}
.hv-pagetop.is-visible { opacity: 1; visibility: visible; }
.hv-pagetop:hover { background: var(--c-green); border-color: var(--c-green); }
.hv-pagetop__arrow {
	position: absolute;
	left: 50%; top: 55%;
	width: 10px; height: 10px;
	border-top: 1.5px solid var(--c-ink);
	border-right: 1.5px solid var(--c-ink);
	transform: translate(-50%, -50%) rotate(-45deg);
	transition: border-color .3s;
}
.hv-pagetop:hover .hv-pagetop__arrow { border-color: var(--c-white); }

/* ------------------------------------------------------------
   店舗案内ページ
------------------------------------------------------------ */
.hv-about-concept__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}
.hv-about-concept__photo {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.hv-about-concept__text p { color: var(--c-ink-soft); margin: 0 0 18px; }

.hv-service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.hv-service-card {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 40px 34px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
}
.hv-service-card__num {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 38px;
	color: var(--c-caramel);
	line-height: 1;
}
.hv-service-card__title { font-size: 19px; margin: 0; }
.hv-service-card__desc { font-size: 13.5px; color: var(--c-ink-soft); margin: 0; flex: 1; }

/* ギャラリー */
.hv-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.hv-gallery__item { overflow: hidden; }
.hv-gallery__item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	transition: transform .6s;
}
.hv-gallery__item--tall img { aspect-ratio: 3 / 3.4; }
.hv-gallery__item--wide img { aspect-ratio: 16 / 9; }
.hv-gallery__item:hover img { transform: scale(1.03); }
.hv-gallery__item figcaption {
	font-size: 12.5px;
	color: var(--c-ink-soft);
	margin-top: 12px;
	padding-left: 16px;
	position: relative;
}
.hv-gallery__item figcaption::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 8px; height: 1px;
	background: var(--c-amber);
}

.hv-about-copy { max-width: 760px; margin: 0 auto 36px; }
.hv-about-copy p { margin: 0 0 18px; }
.hv-about-copy p:last-child { margin-bottom: 0; }

.hv-otukuri-table {
	margin: 0 auto 28px;
	text-align: center;
}
.hv-otukuri-table img {
	width: 100%;
	max-width: 560px;
	height: auto;
	background: var(--c-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}
.hv-otukuri-table figcaption {
	font-size: 12.5px;
	color: var(--c-ink-soft);
	margin-top: 12px;
}

.hv-pay { display: flex; flex-direction: column; gap: 22px; margin-top: 16px; }
.hv-pay__item { margin: 0; }
.hv-pay__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	margin: 0 0 10px;
}
.hv-pay__item img {
	width: 100%;
	max-width: 520px;
	height: auto;
	background: var(--c-white);
	border-radius: 8px;
	padding: 10px 12px;
	box-sizing: border-box;
}
.hv-pay__item figcaption {
	font-size: 12px;
	color: var(--c-ink-soft);
	margin-top: 8px;
	line-height: 1.7;
}

/* ------------------------------------------------------------
   体験プランページ
------------------------------------------------------------ */
.hv-flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	counter-reset: flow;
}
.hv-flow__step {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 36px 28px;
	text-align: center;
	position: relative;
}
.hv-flow__step:not(:last-child)::after {
	content: "→";
	position: absolute;
	right: -22px; top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-en);
	font-size: 18px;
	color: var(--c-caramel);
	z-index: 1;
}
.hv-flow__num {
	display: inline-grid;
	place-items: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-family: var(--font-en);
	font-size: 20px;
	margin-bottom: 14px;
}
.hv-flow__title { font-size: 17px; margin: 0 0 10px; }
.hv-flow__desc { font-size: 13px; color: var(--c-ink-soft); margin: 0; text-align: left; }

/* プラン詳細 */
.hv-plan-detail { scroll-margin-top: calc(var(--header-h) + 10px); }
.hv-plan-detail__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: start;
}
.hv-plan-detail--reverse .hv-plan-detail__grid { direction: rtl; }
.hv-plan-detail--reverse .hv-plan-detail__grid > * { direction: ltr; }

.hv-plan-detail__main-photo {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	position: relative;
}
.hv-plan-detail__main-photo img { width: 100%; display: block; }
.hv-plan-detail__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.hv-plan-detail__thumbs figure { overflow: hidden; border-radius: 4px; }
.hv-plan-detail__thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform .5s;
}
.hv-plan-detail__thumbs figure:hover img { transform: scale(1.08); }

.hv-plan-detail__label {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 16px;
	letter-spacing: .24em;
	color: var(--c-amber);
	margin: 0 0 6px;
}
.hv-plan-detail__title {
	font-size: 28px;
	margin: 0 0 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--c-line);
}
.hv-plan-detail__desc { color: var(--c-ink-soft); margin: 0 0 16px; }
.hv-plan-detail__spec {
	margin: 26px 0 32px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	padding: 8px 26px;
}
.hv-plan-detail__spec > div {
	display: flex;
	gap: 18px;
	padding: 13px 0;
	border-bottom: 1px dashed var(--c-line);
}
.hv-plan-detail__spec > div:last-child { border-bottom: none; }
.hv-plan-detail__spec dt {
	flex: 0 0 84px;
	font-weight: 700;
	color: var(--c-green);
}
.hv-plan-detail__spec dd { margin: 0; }
.hv-plan-detail__spec small { display: block; font-size: 11.5px; color: var(--c-ink-soft); }

/* その他のプラン */
.hv-plans-other__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.hv-plan-simple {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 34px 36px;
	scroll-margin-top: calc(var(--header-h) + 10px);
	position: relative;
}
.hv-plan-simple::before {
	content: "";
	position: absolute;
	top: 0; left: 36px;
	width: 42px; height: 3px;
	background: linear-gradient(90deg, var(--c-amber), var(--c-caramel));
}
.hv-plan-simple__title { font-size: 18px; margin: 0 0 12px; }
.hv-plan-simple__title span {
	font-size: 12px;
	color: var(--c-amber);
	margin-left: 10px;
	font-family: var(--font-sans);
	font-weight: 500;
}
.hv-plan-simple__desc { font-size: 13.5px; color: var(--c-ink-soft); margin: 0 0 16px; }
.hv-plan-simple__meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 16px; font-size: 13px; color: var(--c-green); font-weight: 700; }
.hv-plan-simple__meta span::before { content: "◆"; font-size: 8px; vertical-align: 2px; margin-right: 6px; color: var(--c-caramel); }
.hv-plans-other__note { margin-top: 36px; font-size: 12.5px; color: var(--c-ink-soft); text-align: center; }

/* 注意事項 */
.hv-notes { list-style: none; margin: 0; padding: 0; }
.hv-notes li {
	padding: 16px 0 16px 30px;
	border-bottom: 1px solid var(--c-line);
	position: relative;
}
.hv-notes li:first-child { border-top: 1px solid var(--c-line); }
.hv-notes li::before {
	content: "";
	position: absolute;
	left: 6px; top: 27px;
	width: 9px; height: 9px;
	background: var(--c-caramel);
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
   アクセス（店舗案内ページ内）
------------------------------------------------------------ */
.hv-access { scroll-margin-top: calc(var(--header-h) + 10px); }
.hv-access__map { margin-bottom: 20px; }
.hv-access__map iframe { height: 460px; }
.hv-access__map-link { text-align: center; margin: 0 0 36px; }
.hv-access .hv-notice-box { margin-top: 0; }

/* ------------------------------------------------------------
   ネットショップページ
------------------------------------------------------------ */
.hv-shop__main {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 52px;
	align-items: center;
	margin-bottom: 20px;
}
.hv-shop__photo { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.hv-shop__body p { color: var(--c-ink-soft); margin: 0 0 16px; }
.hv-shop__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.hv-shop__qr { display: flex; align-items: center; gap: 14px; }
.hv-shop__qr img {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 8px;
}
.hv-shop__qr p { font-size: 12px; color: var(--c-ink-soft); margin: 0; }

/* ------------------------------------------------------------
   ブログ（お知らせ）
------------------------------------------------------------ */
.hv-blog-list { list-style: none; margin: 0; padding: 0; }
.hv-blog-list__item { border-bottom: 1px solid var(--c-line); }
.hv-blog-list__item:first-child { border-top: 1px solid var(--c-line); }
.hv-blog-list__link {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 30px;
	align-items: center;
	padding: 28px 10px;
	text-decoration: none;
	transition: background-color .3s;
}
.hv-blog-list__link:hover { background: rgba(169, 119, 47, .05); }
.hv-blog-list__thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 4px;
	background: var(--c-bg-alt);
}
.hv-blog-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hv-blog-list__noimage {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%; height: 100%;
}
.hv-blog-list__meta { display: flex; align-items: center; gap: 14px; margin: 0 0 8px; }
.hv-blog-list__date {
	font-family: var(--font-en);
	font-size: 14px;
	letter-spacing: .12em;
	color: var(--c-amber);
}
.hv-blog-list__title { font-size: 18px; margin: 0 0 6px; }
.hv-blog-list__excerpt { font-size: 13px; color: var(--c-ink-soft); margin: 0; }
.hv-blog__empty { text-align: center; color: var(--c-ink-soft); padding: 40px 0; }

/* 記事詳細 */
.hv-article__header { text-align: center; margin-bottom: 40px; }
.hv-article__meta { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 0 0 14px; }
.hv-article__date {
	font-family: var(--font-en);
	font-size: 15px;
	letter-spacing: .14em;
	color: var(--c-amber);
}
.hv-article__title {
	font-size: 30px;
	line-height: 1.7;
	margin: 0;
	padding-bottom: 26px;
	position: relative;
}
.hv-article__title::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 48px; height: 1px;
	background: var(--c-amber);
}
.hv-article__eyecatch { text-align: center; margin-bottom: 40px; }
.hv-article__eyecatch img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

.hv-article__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 64px;
	padding-top: 30px;
	border-top: 1px solid var(--c-line);
}
.hv-article__nav a { text-decoration: none; font-size: 13.5px; }
.hv-article__nav-index {
	padding: 10px 30px;
	border: 1px solid var(--c-ink);
	border-radius: 999px;
	transition: background-color .3s, color .3s;
}
.hv-article__nav-index:hover { background: var(--c-ink); color: var(--c-white); }

/* エディタ本文（固定ページ・ブログ共通） */
.hv-editor-body { line-height: 2.2; }
.hv-editor-body h2 {
	font-size: 24px;
	margin: 48px 0 20px;
	padding: 12px 0 12px 20px;
	border-left: 4px solid var(--c-amber);
	background: linear-gradient(90deg, rgba(169, 119, 47, .07), transparent);
}
.hv-editor-body h3 {
	font-size: 19px;
	margin: 40px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--c-line);
}
.hv-editor-body p { margin: 0 0 24px; }
.hv-editor-body img { border-radius: var(--radius); }
.hv-editor-body ul, .hv-editor-body ol { padding-left: 24px; margin: 0 0 24px; }
.hv-editor-body blockquote {
	margin: 0 0 24px;
	padding: 20px 28px;
	background: var(--c-white);
	border-left: 4px solid var(--c-caramel);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--c-ink-soft);
}
.hv-editor-body table { border-collapse: collapse; width: 100%; margin: 0 0 24px; }
.hv-editor-body th, .hv-editor-body td { border: 1px solid var(--c-line); padding: 12px 16px; }
.hv-editor-body th { background: var(--c-bg-alt); font-weight: 700; }
.hv-policy__updated {
	margin-top: 48px;
	font-size: 13px;
	color: var(--c-ink-soft);
}

/* ページネーション */
.hv-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 56px;
	flex-wrap: wrap;
}
.hv-pagination__numbers { display: flex; gap: 8px; }
.hv-pagination__num,
.hv-pagination__arrow {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--c-line);
	border-radius: 50%;
	background: var(--c-white);
	font-family: var(--font-en);
	font-size: 15px;
	text-decoration: none;
	transition: background-color .3s, color .3s, border-color .3s;
}
.hv-pagination__arrow { border-radius: 999px; font-size: 13px; }
.hv-pagination__num:hover,
.hv-pagination__arrow:hover { background: var(--c-green); border-color: var(--c-green); color: var(--c-white); }
.hv-pagination__num.is-current { background: var(--c-green); border-color: var(--c-green); color: var(--c-white); }
.hv-pagination__arrow.is-disabled { opacity: .35; pointer-events: none; }

/* コンテンツナビ */
.hv-contents-navi {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid var(--c-line);
}
.hv-contents-navi a { text-decoration: none; font-size: 13.5px; color: var(--c-amber); }

/* フォルダ一覧 */
.hv-folder-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hv-folder-list__link {
	display: block;
	padding: 18px 28px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	text-decoration: none;
	transition: border-color .3s;
}
.hv-folder-list__link:hover { border-color: var(--c-amber); }

/* ------------------------------------------------------------
   メールフォーム
------------------------------------------------------------ */
.hv-mail__intro { margin-bottom: 40px; text-align: center; }
.hv-mail__description {
	color: var(--c-ink-soft);
	font-size: 14.5px;
	line-height: 2;
}

.hv-mail-form {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	padding: 12px 48px 48px;
}

.hv-form-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--c-line);
}
.hv-form-row:last-of-type { border-bottom: none; }
.hv-form-row__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	font-weight: 700;
}
.hv-form-row__head label { letter-spacing: .08em; }
.hv-form-row__badge {
	flex-shrink: 0;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: .1em;
	color: var(--c-ink-soft);
	border: 1px solid var(--c-line);
	border-radius: 999px;
	padding: 2px 10px;
	line-height: 1.6;
}
.hv-form-row__badge--required {
	color: var(--c-white);
	background: var(--c-red);
	border-color: var(--c-red);
}
.hv-form-row__body {
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16px;
}
.hv-form-row__control {
	display: flex;
	flex-direction: column;
	flex: 1 1 220px;
	min-width: 0;
	max-width: 100%;
}
.hv-form-row__control:has(textarea) {
	flex: 1 1 100%;
}
.hv-form-row__control .input {
	margin: 0;
	width: 100%;
}
.hv-form-row__description,
.hv-form-row__attention {
	display: block;
	font-size: 12px;
	color: var(--c-ink-soft);
	margin: 0 0 8px;
}
.hv-form-row__before,
.hv-form-row__after {
	display: block;
	font-size: 12.5px;
	color: var(--c-ink-soft);
	margin: 0 0 6px;
}
.hv-form-row__after { margin: 6px 0 0; }
.hv-form-row__description:empty,
.hv-form-row__attention:empty,
.hv-form-row__before:empty,
.hv-form-row__after:empty { display: none; }

/* 入力部品 */
.hv-mail-form input[type="text"],
.hv-mail-form input[type="email"],
.hv-mail-form input[type="tel"],
.hv-mail-form input[type="number"],
.hv-mail-form input[type="date"],
.hv-mail-form select,
.hv-mail-form textarea {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 14px 18px;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--font-sans);
	font-size: 15px;
	letter-spacing: .05em;
	line-height: 1.5;
	transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.hv-mail-form input::placeholder,
.hv-mail-form textarea::placeholder {
	color: #B5A897;
}
.hv-mail-form select { max-width: 320px; }
.hv-mail-form textarea { min-height: 200px; resize: vertical; }
.hv-mail-form input[type="text"]:focus,
.hv-mail-form input[type="email"]:focus,
.hv-mail-form input[type="tel"]:focus,
.hv-mail-form input[type="number"]:focus,
.hv-mail-form input[type="date"]:focus,
.hv-mail-form select:focus,
.hv-mail-form textarea:focus {
	outline: none;
	border-color: var(--c-amber);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(169, 119, 47, .14);
}
.hv-mail-form input[type="radio"],
.hv-mail-form input[type="checkbox"] {
	accent-color: var(--c-green);
	width: 17px; height: 17px;
	margin-right: 6px;
	vertical-align: -3px;
}
.hv-mail-form .hv-form-row__head label { margin-right: 0; }
.hv-mail-form .hv-form-row__body label { margin-right: 16px; }

/* エラーメッセージ */
.hv-mail-form .error-message,
.hv-mail-form .error {
	display: block;
	color: var(--c-red);
	font-size: 12.5px;
	margin-top: 8px;
}

/* 確認画面 */
.hv-mail-form--confirm .hv-form-row__control {
	padding: 12px 16px;
	background: var(--c-bg);
	border-radius: 8px;
	display: block;
	flex: 1 1 100%;
}

/* 送信ボタン */
.hv-mail-form__submit {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 12px;
	padding-top: 28px;
	border-top: 1px solid var(--c-line);
	flex-wrap: wrap;
}
.hv-mail-submit {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	box-sizing: border-box;
	min-width: 260px;
	min-height: 52px;
	padding: 16px 36px;
	margin: 0;
	border: 1px solid var(--c-green);
	border-radius: 999px;
	background: var(--c-green);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .12em;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
}
.hv-mail-submit:hover {
	background: var(--c-green-dark);
	border-color: var(--c-green-dark);
}
.hv-mail-submit:disabled {
	opacity: .55;
	cursor: wait;
}
.hv-mail-submit--back {
	background: transparent;
	border-color: var(--c-ink-soft);
	color: var(--c-ink-soft);
	-webkit-text-fill-color: var(--c-ink-soft);
}
.hv-mail-submit--back:hover {
	background: var(--c-ink-soft);
	color: var(--c-white);
	-webkit-text-fill-color: var(--c-white);
}
.hv-mail-form__captcha {
	margin-top: 8px;
	padding: 28px 20px 8px;
	text-align: center;
}
.hv-mail-form__captcha-inner {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 22px 28px;
	background: var(--c-bg);
	border: 1px solid var(--c-line);
	border-radius: 10px;
}
.hv-mail-form__captcha-image { margin-bottom: 0; }
.hv-mail-form__captcha-image img {
	height: 52px;
	width: auto;
	border-radius: 4px;
	background: #fff;
}
.hv-mail-form__captcha-label {
	font-size: 13px;
	color: var(--c-ink-soft);
	margin: 0;
}
.hv-mail-form__captcha input[type="text"] {
	max-width: 220px;
	text-align: center;
	background: #fff;
}

/* 送信完了 */
.hv-thanks { text-align: center; padding: 30px 0; }
.hv-thanks__motif { display: flex; justify-content: center; gap: 12px; margin-bottom: 26px; }
.hv-thanks__title { font-size: 28px; margin: 0 0 20px; }
.hv-thanks__text { color: var(--c-ink-soft); margin: 0 0 36px; }
.hv-thanks__text.hv-editor-body,
.hv-mail__description.hv-editor-body {
	text-align: center;
}
.hv-thanks__text.hv-editor-body h2 {
	font-size: 28px;
	margin: 0 0 20px;
	color: var(--c-ink);
}
.hv-thanks__text.hv-editor-body p,
.hv-mail__description.hv-editor-body p {
	margin: 0 0 16px;
}
.hv-thanks__text.hv-editor-body p:last-child,
.hv-mail__description.hv-editor-body p:last-child {
	margin-bottom: 0;
}
.hv-thanks__btns { display: flex; justify-content: center; }

/* フラッシュメッセージ */
.hv-flash .message {
	max-width: 860px;
	margin: 20px auto 0;
	padding: 14px 24px;
	background: rgba(57, 88, 74, .08);
	border: 1px solid var(--c-green);
	border-radius: var(--radius);
	color: var(--c-green);
	font-size: 13.5px;
	text-align: center;
}

/* ------------------------------------------------------------
   レスポンシブ
------------------------------------------------------------ */
@media (max-width: 1320px) {
	.hv .hv-header__actions a.hv-btn.hv-header__reserve,
	.hv .hv-header__actions a.hv-btn.hv-header__reserve:link,
	.hv .hv-header__actions a.hv-btn.hv-header__reserve:visited,
	.hv .hv-header__actions a.hv-btn.hv-header__reserve:hover,
	.hv .hv-header__actions a.hv-btn.hv-header__reserve:focus,
	.hv .hv-header__actions a.hv-btn.hv-header__reserve:active {
		display: none;
	}
}

@media (max-width: 1080px) {
	.hv-gnav__link { padding: 8px 8px; }
	.hv-gnav__jp { font-size: 12.5px; }
	.hv-hero__tate { display: none; }
}

@media (max-width: 960px) {
	:root { --header-h: 68px; }

	/* backdrop-filter があると fixed の基準がヘッダーになるため、モバイルでは無効化 */
	.hv-header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: rgba(249, 245, 238, .98);
	}

	/* ナビをドロワー化 */
	.hv-header__nav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		background: var(--c-bg);
		padding: 40px 28px 60px;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity .35s, visibility .35s, transform .35s;
	}
	.is-nav-open .hv-header__nav {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.hv-gnav { flex-direction: column; align-items: stretch; gap: 0; }
	.hv-gnav__link {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
		padding: 18px 6px;
		border-bottom: 1px solid var(--c-line);
	}
	.hv-gnav__link::after { content: none; }
	.hv-gnav__jp { font-size: 16px; }
	.hv-header__nav-foot { display: block; margin-top: 36px; text-align: center; }
	.hv-header__reserve-sp { display: inline-flex; width: 100%; max-width: 360px; }
	.hv-header__nav-note { font-size: 12px; color: var(--c-ink-soft); margin-top: 16px; }
	.hv-header__toggle { display: flex; }

	/* ヒーロー */
	.hv-hero__inner { grid-template-columns: 1fr; padding-bottom: 70px; gap: 56px; }
	.hv-hero__visual { min-height: 0; height: auto; display: block; position: relative; padding-bottom: 50px; }
	.hv-hero__photo { position: relative; }
	.hv-hero__photo--main { width: 88%; margin-left: auto; }
	.hv-hero__photo--sub {
		position: absolute;
		width: 44%;
		left: 0; bottom: 0;
	}
	.hv-hero__motif--p5,
	.hv-hero__motif--p8,
	.hv-hero__motif--p11,
	.hv-hero__motif--p13,
	.hv-hero__motif--p14 { display: none; }

	.hv-top-about__grid,
	.hv-about-concept__grid,
	.hv-top-access__grid,
	.hv-shop__main,
	.hv-plan-detail__grid { grid-template-columns: 1fr; gap: 44px; }
	.hv-plan-detail--reverse .hv-plan-detail__grid { direction: ltr; }
	.hv-top-about__photos { min-height: 0; height: auto; padding-bottom: 60px; }
	.hv-top-about__photo--1 { position: relative; width: 88%; }
	.hv-top-about__photo--2 { width: 46%; }

	.hv-plan-cards, .hv-service-cards { grid-template-columns: 1fr 1fr; }
	.hv-top-shop__grid, .hv-cta__inner { grid-template-columns: 1fr; }
	.hv-top-shop__shop-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.hv-section__more--left { align-items: center; }
	.hv-btn-wrap { justify-content: center; }
	.hv-plan-simple .hv-textlink {
		display: block;
		text-align: center;
	}
	.hv-cafe-inline {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.hv-shop__actions {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.hv-stamp__intro {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	.hv-stamp__phone img { margin: 0 auto; }
	.hv-site-info__grid { grid-template-columns: 1fr; gap: 32px; }
	.hv-footer__inner { grid-template-columns: 1fr; gap: 44px; }
	.hv-footer__shop-online {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 640px) {
	body.hv { font-size: 14px; }

	.hv-header__inner { padding: 0 16px; gap: 12px; }
	.hv-header__logo-link { gap: 10px; }
	.hv-header__logo-mark { width: 40px; height: 40px; }
	.hv-header__logo-jp { font-size: 14px; white-space: nowrap; letter-spacing: .1em; }
	.hv-header__logo-en { font-size: 8.5px; letter-spacing: .24em; }
	.hv-section { padding: 72px 0; }
	.hv-section__inner { padding: 0 22px; }
	.hv-section__title { font-size: 25px; }
	.hv-page-header { padding: 60px 22px 54px; }
	.hv-page-header__title { font-size: 28px; }

	.hv-hero__inner { padding: 24px 22px 60px; }
	.hv-hero__btns .hv-btn { width: 100%; }
	.hv-marquee__text { font-size: 15px; }

	.hv-plan-cards, .hv-service-cards, .hv-plan-mini,
	.hv-plans-other__grid, .hv-gallery, .hv-flow { grid-template-columns: 1fr; }
	.hv-dl__row--pay {
		flex-direction: column;
		gap: 10px;
	}
	.hv-flow__step:not(:last-child)::after {
		right: 50%;
		top: auto; bottom: -26px;
		transform: translateX(50%) rotate(90deg);
	}
	.hv-stats { grid-template-columns: 1fr; gap: 0; }
	.hv-stats__item {
		border-right: none;
		border-bottom: 1px solid var(--c-line);
		padding: 22px 0;
	}
	.hv-stats__item:last-child { border-bottom: none; }
	.hv-stats { margin-top: 56px; }

	.hv-plan-detail__thumbs { grid-template-columns: repeat(3, 1fr); }
	.hv-top-shop__box { padding: 32px 26px; }
	.hv-cta { padding: 72px 22px; }
	.hv-cta__box { padding: 40px 26px; }
	.hv-sns-list--compact .hv-sns-list__link,
	.hv-sns-list--footer .hv-sns-list__link {
		flex: 0 0 auto;
		padding: 8px 8px;
		font-size: 11px;
		gap: 5px;
	}
	.hv-sns-list--compact .hv-sns-list__icon svg,
	.hv-sns-list--footer .hv-sns-list__icon svg {
		width: 16px;
		height: 16px;
	}
	.hv-site-info__block--cafe { padding: 24px 22px; }

	.hv-news-list__link { flex-wrap: wrap; gap: 10px 14px; padding: 18px 6px; }
	.hv-news-list__title { flex-basis: 100%; order: 3; }
	.hv-news-list__arrow { display: none; }

	.hv-blog-list__link { grid-template-columns: 1fr; gap: 16px; }
	.hv-blog-list__thumb { max-width: 100%; }
	.hv-article__title { font-size: 23px; }

	.hv-mail-form { padding: 8px 22px 36px; }
	.hv-form-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
	.hv-form-row__head { justify-content: flex-start; padding-top: 0; }
	.hv-form-row__control { flex: 1 1 100%; }
	.hv-form-row--group .hv-form-row__control { flex: 1 1 calc(50% - 8px); }
	.hv-mail-form__submit { padding-top: 24px; }
	.hv-mail-submit { width: 100%; }

	.hv-top-access__map iframe, .hv-access__map iframe { height: 300px; }
	.hv-works-strip figure { height: 170px; }
	.hv-pagetop { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

@media (max-width: 520px) {
	.hv-sns-list--compact,
	.hv-sns-list--footer {
		gap: 6px;
	}
	.hv-sns-list--compact .hv-sns-list__label,
	.hv-sns-list--footer .hv-sns-list__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
	.hv-sns-list--compact .hv-sns-list__link,
	.hv-sns-list--footer .hv-sns-list__link {
		padding: 10px;
	}
}
