/* ==========================================================================
   tabinoyado 2026 — main stylesheet
   Two Thousand Inc.
   ========================================================================== */

:root {
	--navy: #27567f;
	--navy-dark: #1b3f5e;
	--navy-soft: #e8eef4;
	--mist: #b2c0cb;
	--accent: #e0662f;
	--accent-dark: #c4521f;
	--star: #e0a526;

	--text: #1f2a33;
	--muted: #62707c;
	--line: #e1e7ec;
	--bg: #ffffff;
	--surface: #f5f7f9;

	--radius: 10px;
	--radius-lg: 16px;
	--shadow: 0 1px 2px rgba(20, 40, 60, .06), 0 4px 16px rgba(20, 40, 60, .06);
	--shadow-hover: 0 2px 4px rgba(20, 40, 60, .08), 0 10px 28px rgba(20, 40, 60, .12);

	--font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--font-en: "Helvetica Neue", Arial, var(--font);
	--container: 1200px;
	--gutter: 16px;
	--header-h: 64px;
}

@media (min-width: 768px) {
	:root { --gutter: 24px; --header-h: 72px; }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: .02em;
	overflow-wrap: anywhere;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) { body { font-size: 16px; } }
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dark); text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(39, 86, 127, .45); outline-offset: 2px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto; z-index: 1000; top: 8px; left: 8px;
	background: #fff; padding: 8px 16px; border-radius: var(--radius); box-shadow: var(--shadow);
}

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }

.icon { flex: none; vertical-align: middle; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .4em;
	min-height: 44px; padding: .55em 1.3em; border-radius: 999px;
	border: 1px solid transparent; font-weight: 700; font-size: .95rem; line-height: 1.3;
	cursor: pointer; text-decoration: none; transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(224, 102, 47, .3); }
.btn--accent:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--mist); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy-dark); }
.btn--block { display: flex; width: 100%; }

/* ---------- header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: saturate(160%) blur(10px);
	-webkit-backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.admin-bar .site-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .site-header { top: 32px; } }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { margin: 0; line-height: 1; }
.brand a { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand__logo { max-height: 44px; width: auto; }
.brand__mark {
	display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
	background: var(--navy); color: #fff; font-weight: 700; font-size: 18px;
}
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__name { font-size: 19px; font-weight: 700; letter-spacing: .06em; }
.brand__sub { font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; }

.global-nav { margin-left: auto; }
.global-nav__list { display: flex; gap: 4px; }
.global-nav__list a, .global-nav__sub a {
	display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px;
	color: var(--text); font-size: 14px; font-weight: 500; text-decoration: none;
}
.global-nav__list a:hover, .global-nav__sub a:hover { background: var(--navy-soft); color: var(--navy); }
.global-nav__list .icon { color: var(--navy); width: 18px; height: 18px; }
.global-nav__sub { display: flex; gap: 4px; }

.nav-toggle {
	display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: none;
	border-radius: 10px; cursor: pointer; place-items: center; color: var(--text);
}
.nav-toggle__close { display: none; }

@media (max-width: 899px) {
	.nav-toggle { display: grid; }
	.global-nav {
		position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; padding: 12px var(--gutter) 20px;
		background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
		transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s;
	}
	.admin-bar .global-nav { top: calc(var(--header-h) + 46px); }
	.nav-open .global-nav { transform: none; opacity: 1; visibility: visible; }
	.nav-open .nav-toggle__open { display: none; }
	.nav-open .nav-toggle__close { display: block; }
	.global-nav__list, .global-nav__sub { flex-direction: column; }
	.global-nav__list a, .global-nav__sub a { display: flex; padding: 12px 8px; border-radius: 8px; font-size: 15px; }
	.global-nav__sub { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 8px; }
}

/* ---------- breadcrumbs / page head ---------- */
.breadcrumbs { padding: 14px 0 0; font-size: 12px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px 0; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin: 0 8px; color: var(--mist); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs [aria-current] { color: var(--text); }

.page-head { background: var(--surface); border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 24px; }
.page-head__title { font-size: 22px; margin-top: 12px; letter-spacing: .04em; }
@media (min-width: 768px) { .page-head__title { font-size: 28px; } .page-head { padding-bottom: 32px; margin-bottom: 32px; } }
.page-head__desc { margin-top: 12px; color: var(--muted); font-size: 14px; }
.page-head__date { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-family: var(--font-en); }
.page-head .chips { margin-top: 16px; }

/* ---------- chips / badges / stars ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
	display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px;
	background: var(--surface); border: 1px solid var(--line); font-size: 13px; line-height: 1.5;
}
.chips--small li { padding: 2px 10px; font-size: 12px; }
.chips--links li { padding: 0; background: none; border: 0; }
.chips--links a {
	display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
	background: #fff; border: 1px solid var(--line); color: var(--text); font-size: 13px; text-decoration: none;
}
.chips--links a:hover { border-color: var(--navy); color: var(--navy); }
.chips--links a span { color: var(--muted); font-size: 11px; font-family: var(--font-en); white-space: nowrap; }
@media (max-width: 767px) {
	/* スマホではエリアのリンクを横スクロールの1行に */
	.page-head .chips--links {
		flex-wrap: nowrap; overflow-x: auto; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter);
		scrollbar-width: none; -webkit-overflow-scrolling: touch;
	}
	.page-head .chips--links::-webkit-scrollbar { display: none; }
	.page-head .chips--links a { white-space: nowrap; }
}

.badge {
	display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; line-height: 1.5;
}
.badge--cat { background: var(--navy); color: #fff; }
a.badge--cat:hover { background: var(--navy-dark); color: #fff; text-decoration: none; }

.stars { color: var(--star); letter-spacing: .1em; font-size: 14px; line-height: 1; }

/* ---------- price ---------- */
.price { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: flex-end; gap: 2px 8px; margin: 0; line-height: 1.3; }
.price__off { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.price__base { color: var(--muted); font-size: 12px; }
.price__label { color: var(--muted); font-size: 12px; }
.price__value { color: var(--text); font-size: 22px; font-weight: 700; font-family: var(--font-en); letter-spacing: 0; }
.price__value span { font-size: .7em; margin-right: 1px; }
.price__value small { font-size: 12px; font-weight: 500; font-family: var(--font); color: var(--muted); margin-left: 2px; }
.price--none { display: block; color: var(--muted); font-size: 12px; text-align: right; }
.price-info { margin: 8px 0 0; font-size: 12px; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
	position: relative; overflow: hidden; color: #fff; background: var(--navy-dark);
	padding: 56px 0 48px;
}
@media (min-width: 768px) { .hero { padding: 104px 0 88px; } }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(20, 45, 70, .88) 0%, rgba(27, 63, 94, .62) 55%, rgba(27, 63, 94, .25) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
	display: inline-block; margin-bottom: 16px; padding: 4px 14px; border-radius: 999px;
	background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3); font-size: 13px;
}
.hero__title { font-size: 28px; letter-spacing: .06em; line-height: 1.45; }
@media (min-width: 768px) { .hero__title { font-size: 42px; } }
.hero__lead { margin: 14px 0 28px; max-width: 36em; color: rgba(255, 255, 255, .9); font-size: 14px; }
@media (min-width: 768px) { .hero__lead { font-size: 16px; } }
.hero__more { margin: 16px 0 0; font-size: 14px; }
.hero__more a { color: #fff; display: inline-flex; align-items: center; gap: 2px; }
.hero__more .icon { width: 16px; height: 16px; }

.hero-search {
	display: grid; gap: 8px; max-width: 860px; padding: 8px; border-radius: var(--radius-lg);
	background: #fff; box-shadow: 0 20px 50px rgba(0, 0, 0, .25); color: var(--text);
}
@media (min-width: 768px) { .hero-search { grid-template-columns: 1.4fr 1fr auto; } }
.hero-search__field {
	position: relative; display: flex; align-items: center; gap: 8px; padding: 0 14px;
	background: var(--surface); border-radius: 10px; min-height: 52px;
}
.hero-search__field .icon { color: var(--navy); }
.hero-search__field input, .hero-search__field select {
	flex: 1; min-width: 0; height: 52px; border: 0; background: transparent; outline: none; font-size: 15px;
}
.hero-search__field select { cursor: pointer; }
.hero-search__submit { min-height: 52px; border-radius: 10px; padding: 0 32px; font-size: 16px; }
.notfound .hero-search { margin: 24px 0; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ---------- sections ---------- */
.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 72px 0; } }
.section--tint { background: var(--surface); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section__title { font-size: 22px; letter-spacing: .06em; }
@media (min-width: 768px) { .section__title { font-size: 26px; } }
.section__en {
	display: block; margin-bottom: 4px; font-family: var(--font-en); font-size: 12px; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase; color: var(--navy);
}
.more-link { display: inline-flex; align-items: center; gap: 2px; font-size: 14px; font-weight: 500; white-space: nowrap; }
.more-link .icon { width: 16px; height: 16px; }

/* region */
.region-grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .region-grid { grid-template-columns: repeat(4, 1fr); } }
.region { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.region__name {
	font-size: 15px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 2px solid var(--navy-soft);
	color: var(--navy);
}
.region__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 12px; }
.region__list a { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; color: var(--text); font-size: 14px; }
.region__list a:hover { color: var(--navy); }
.region__list span { color: var(--muted); font-size: 11px; font-family: var(--font-en); }

/* theme / type */
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .theme-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-grid a {
	display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 18px 20px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: .2s;
	border-left: 4px solid var(--navy);
}
.theme-grid a:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.theme-grid__name { font-weight: 700; }
.theme-grid__count { color: var(--muted); font-size: 12px; }

.type-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.type-grid a {
	display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 999px;
	background: #fff; border: 1px solid var(--line); color: var(--text); font-weight: 700; text-decoration: none;
}
.type-grid a:hover { border-color: var(--navy); color: var(--navy); }
.type-grid span { color: var(--muted); font-size: 12px; font-weight: 400; }

/* ---------- hotel card ---------- */
.tile-grid { display: grid; gap: 20px; }
@media (min-width: 600px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }

.hotel-card {
	position: relative; display: grid; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.hotel-card:hover { box-shadow: var(--shadow-hover); }
.hotel-card__photo { position: relative; display: block; aspect-ratio: 3 / 2; background: var(--surface); overflow: hidden; }
.hotel-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hotel-card:hover .hotel-card__photo img { transform: scale(1.04); }
.hotel-card__photo .badge { position: absolute; top: 10px; left: 10px; }
.hotel-card__body { padding: 14px 16px 0; min-width: 0; }
.hotel-card__loc { display: flex; align-items: center; gap: 4px; margin: 0 0 4px; color: var(--muted); font-size: 12px; }
.hotel-card__loc .icon { width: 14px; height: 14px; }
.hotel-card__title { font-size: 16px; line-height: 1.5; margin-bottom: 6px; }
.hotel-card__title a { color: var(--text); }
.hotel-card__title a::after { content: ""; position: absolute; inset: 0; } /* カード全体をクリック可能に */
.hotel-card__title a:hover { text-decoration: none; }
.hotel-card__desc { margin: 8px 0 10px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.hotel-card__side { padding: 10px 16px 16px; align-self: end; }
.hotel-card__side .btn { position: relative; z-index: 1; margin-top: 12px; }

.hotel-card--tile .hotel-card__title { font-size: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.hotel-list { display: grid; gap: 16px; }
@media (min-width: 768px) {
	.hotel-card--row { grid-template-columns: 260px 1fr 190px; }
	.hotel-card--row .hotel-card__photo { aspect-ratio: auto; height: 100%; min-height: 190px; }
	.hotel-card--row .hotel-card__body { padding: 18px 20px; }
	.hotel-card--row .hotel-card__side {
		display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 20px;
		border-left: 1px dashed var(--line);
	}
	.hotel-card--row .hotel-card__title { font-size: 18px; }
}
@media (max-width: 767px) {
	.hotel-card--row .hotel-card__side { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
	.hotel-card--row .hotel-card__side .btn { display: none; }
	.hotel-card--row .price { justify-content: flex-start; }
}

/* ---------- listing ---------- */
.listing { display: grid; gap: 32px; padding-bottom: 72px; }
@media (min-width: 1024px) { .listing { grid-template-columns: 290px 1fr; align-items: start; } }
.listing__main { min-width: 0; }
.listing__bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.listing__count { margin: 0 auto 0 0; color: var(--muted); font-size: 14px; }
.listing__count strong { color: var(--text); font-size: 22px; font-family: var(--font-en); margin-right: 2px; }
.listing__filter-btn { min-height: 40px; padding: 0 16px; }
@media (min-width: 1024px) { .listing__filter-btn { display: none; } }
.sort { display: flex; gap: 8px; }

.input {
	width: 100%; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px;
	background: #fff; font-size: 15px;
}
.input:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(39, 86, 127, .15); }
.input--small { width: auto; min-height: 40px; font-size: 14px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.active-filters a {
	display: inline-flex; align-items: center; gap: 4px; padding: 4px 8px 4px 12px; border-radius: 999px;
	background: var(--navy-soft); color: var(--navy); font-size: 13px; font-weight: 500; text-decoration: none;
}
.active-filters a:hover { background: var(--navy); color: #fff; }
.active-filters .icon { width: 14px; height: 14px; }

/* filter panel */
.filter { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.filter__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.filter__title { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 700; }
.filter__title .icon { color: var(--navy); }
.filter__close { display: none; border: 0; background: none; width: 40px; height: 40px; cursor: pointer; place-items: center; }
.filter__body { padding: 8px 20px; }
.filter__foot { display: flex; gap: 8px; padding: 16px 20px; border-top: 1px solid var(--line); }
.filter__foot .btn { flex: 1; padding: .55em .8em; font-size: 14px; }

.field { border: 0; margin: 0; padding: 14px 0; min-width: 0; }
.field + .field { border-top: 1px solid var(--line); }
.field__label { display: block; margin-bottom: 8px; padding: 0; font-size: 13px; font-weight: 700; color: var(--text); }
.radio-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pill input, .check input { position: absolute; opacity: 0; pointer-events: none; }
.pill span {
	display: inline-block; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px;
	font-size: 13px; cursor: pointer; transition: .15s;
}
.pill--star span { color: var(--star); letter-spacing: .05em; }
.pill input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.pill input:focus-visible + span, .check input:focus-visible + span { outline: 3px solid rgba(39, 86, 127, .45); outline-offset: 2px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.check { position: relative; }
.check span {
	display: flex; align-items: center; gap: 8px; padding: 6px 4px; font-size: 13px; line-height: 1.4; cursor: pointer;
}
.check span::before {
	content: ""; flex: none; width: 18px; height: 18px; border: 1.5px solid var(--mist); border-radius: 5px; background: #fff;
	transition: .15s;
}
.check input:checked + span::before {
	background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
	border-color: var(--navy);
}

@media (min-width: 1024px) {
	.listing__side { position: sticky; top: calc(var(--header-h) + 16px); max-height: calc(100vh - var(--header-h) - 32px); overflow: auto; border-radius: var(--radius-lg); }
	.filter-backdrop { display: none !important; }
}
@media (max-width: 1023px) {
	.listing__side {
		position: fixed; z-index: 100; inset: 0 0 0 auto; width: min(380px, 92vw); background: #fff;
		transform: translateX(100%); transition: transform .25s; overflow: auto; overscroll-behavior: contain;
	}
	.filter-open .listing__side { transform: none; box-shadow: -10px 0 40px rgba(0, 0, 0, .2); }
	.listing__side .filter { border: 0; border-radius: 0; min-height: 100%; display: flex; flex-direction: column; }
	.listing__side .filter__body { flex: 1; }
	.listing__side .filter__foot { position: sticky; bottom: 0; background: #fff; }
	.filter__close { display: grid; }
	.filter-backdrop { position: fixed; inset: 0; z-index: 99; background: rgba(15, 30, 45, .45); }
	.filter-open { overflow: hidden; }
}

.empty { padding: 48px 24px; text-align: center; background: var(--surface); border-radius: var(--radius-lg); }
.empty__title { font-weight: 700; font-size: 18px; }

/* pagination */
.pagination { margin-top: 32px; }
.pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.pagination a, .pagination span.current, .pagination span.dots {
	display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 8px; border-radius: 10px;
	border: 1px solid var(--line); background: #fff; color: var(--text); font-family: var(--font-en); text-decoration: none;
}
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination span.current { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 700; }
.pagination span.dots { border: 0; background: none; }

/* ---------- hotel detail ---------- */
.hotel { padding-bottom: 56px; }
.hotel__head { padding: 16px 0 20px; }
.hotel__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-bottom: 10px; font-size: 13px; }
.hotel__loc { display: inline-flex; align-items: center; gap: 2px; color: var(--muted); }
.hotel__loc .icon { width: 16px; height: 16px; }
.hotel__loc--sub::before { content: "›"; margin-right: 8px; color: var(--mist); }
.hotel__title { font-size: 24px; letter-spacing: .04em; margin-bottom: 8px; }
@media (min-width: 768px) { .hotel__title { font-size: 32px; } }
.hotel__head .stars { font-size: 18px; }

.hotel__layout { display: grid; gap: 32px; }
@media (min-width: 1024px) { .hotel__layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 40px; } }
.hotel__main { min-width: 0; }
@media (max-width: 1023px) {
	.hotel__layout { display: flex; flex-direction: column; }
	.hotel__main { display: contents; }
	.gallery { order: 1; }
	.hotel__side { order: 2; }
	.hotel__section, .map-link { order: 3; }
}

.gallery__main { aspect-ratio: 3 / 2; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.gallery__thumbs button {
	display: block; width: 88px; aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 8px;
	overflow: hidden; cursor: pointer; background: var(--surface); opacity: .7; transition: .15s;
}
.gallery__thumbs button.is-active, .gallery__thumbs button:hover { border-color: var(--navy); opacity: 1; }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.hotel__section { margin-top: 40px; }
.section-title {
	display: flex; align-items: center; gap: 10px; font-size: 19px; margin-bottom: 16px; letter-spacing: .04em;
}
.section-title::before { content: ""; width: 4px; height: 1.1em; border-radius: 2px; background: var(--navy); }

.entry-content { line-height: 1.95; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { font-size: 20px; margin-top: 2em; padding-bottom: 8px; border-bottom: 2px solid var(--navy-soft); }
.entry-content h3 { font-size: 17px; margin-top: 1.8em; }
.entry-content ul { list-style: disc; padding-left: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.4em; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.entry-content th { background: var(--surface); width: 30%; font-weight: 700; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { text-decoration: underline; }

.info-table { margin: 0; border-top: 1px solid var(--line); font-size: 14px; }
.info-table > div { display: grid; grid-template-columns: 7em 1fr; gap: 12px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .info-table > div { grid-template-columns: 9em 1fr; } }
.info-table dt { color: var(--muted); font-weight: 500; }
.info-table dd { margin: 0; }
.info-table small { color: var(--muted); }
.info-table .icon { width: 14px; height: 14px; margin-left: 4px; }

.facilities { display: grid; gap: 20px; }
.facilities__group h3 { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 8px; }

.map { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-link { margin-top: 12px; font-size: 14px; }
.map-link a { display: inline-flex; align-items: center; gap: 6px; }

.hotel__side { position: relative; }
@media (min-width: 1024px) { .hotel__side { position: sticky; top: calc(var(--header-h) + 20px); } }
.booking {
	padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow);
}
.booking__label { margin: 0 0 8px; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .06em; }
.booking .price { justify-content: flex-start; }
.booking .price__value { font-size: 30px; }
.booking > .price, .booking > .price-info { margin-bottom: 20px; }
.booking > .price + .booking__label { margin-top: 20px; }
.booking__links { display: grid; gap: 10px; margin-bottom: 12px; }
.reserve-btn {
	display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 10px; padding: 10px;
	border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--text); text-decoration: none;
	transition: border-color .2s, box-shadow .2s;
}
.reserve-btn:hover { border-color: var(--accent); box-shadow: 0 4px 14px rgba(224, 102, 47, .15); text-decoration: none; color: var(--text); }
.reserve-btn__site { display: grid; place-items: center; min-height: 36px; font-size: 13px; font-weight: 700; text-align: center; }
.reserve-btn__logo { max-height: 36px; width: auto; object-fit: contain; }
.reserve-btn__text {
	display: flex; align-items: center; justify-content: center; gap: 2px; padding: 9px 8px; border-radius: 8px;
	background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; line-height: 1.3; text-align: center;
	letter-spacing: 0; white-space: nowrap;
}
.reserve-btn:hover .reserve-btn__text { background: var(--accent-dark); }
.reserve-btn__text .icon { width: 16px; height: 16px; }
.booking__tel { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; color: var(--text); font-family: var(--font-en); font-size: 15px; }
.booking__note { margin: 14px 0 0; font-size: 11px; color: var(--muted); text-align: center; }

.mobile-cta { display: none; }
@media (max-width: 1023px) {
	.mobile-cta {
		position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px;
		padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97);
		border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(0, 0, 0, .06);
	}
	.mobile-cta__price { font-size: 12px; color: var(--muted); }
	.mobile-cta__price strong { font-size: 20px; color: var(--text); font-family: var(--font-en); }
	.single-hotels .site-footer { padding-bottom: 80px; }
}

/* ---------- news ---------- */
.news-list { border-top: 1px solid var(--line); }
.news-list li { display: flex; flex-wrap: wrap; gap: 4px 20px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.news-list time { color: var(--muted); font-family: var(--font-en); font-size: 13px; min-width: 6.5em; }
.news-list a { color: var(--text); }
.entry-thumb { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.site-main > .container--narrow { padding-bottom: 72px; }

/* 404 */
.notfound { padding-top: 64px; text-align: center; }
.notfound__code { font-family: var(--font-en); font-size: 72px; font-weight: 700; color: var(--navy-soft); line-height: 1; margin: 0; }
.notfound__title { font-size: 22px; margin: 12px 0 16px; }
.notfound .hero-search { margin-left: auto; margin-right: auto; text-align: left; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, .8); padding: 56px 0 24px; font-size: 14px; }
.site-footer a { color: rgba(255, 255, 255, .85); }
.site-footer a:hover { color: #fff; }
.site-footer__top { display: grid; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
@media (min-width: 1024px) { .site-footer__top { grid-template-columns: 280px 1fr; gap: 56px; } }
.site-footer .brand a { color: #fff; }
.site-footer .brand__mark { background: #fff; color: var(--navy-dark); }
.site-footer .brand__sub { color: rgba(255, 255, 255, .55); }
.site-footer .brand__logo { background: #fff; padding: 6px 10px; border-radius: 8px; }
.site-footer__desc { margin: 16px 0; font-size: 13px; line-height: 1.8; }
.sns-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; font-size: 13px; }
.sns-link:hover { text-decoration: none; background: rgba(255, 255, 255, .08); }
.site-footer__areas { display: grid; gap: 20px 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .site-footer__areas { grid-template-columns: repeat(4, 1fr); } }
.footer-region__name { margin: 0 0 6px; color: #fff; font-weight: 700; font-size: 13px; }
.footer-region ul { display: flex; flex-wrap: wrap; gap: 0 12px; }
.footer-region a { font-size: 12px; line-height: 2; }
.site-footer__bottom { padding-top: 24px; text-align: center; }
.footer-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; margin-bottom: 20px; }
.footer-nav a { font-size: 13px; }
.footer-nav br, .footer-nav small { display: none; }
.site-footer__note { max-width: 44em; margin: 0 auto 12px; font-size: 11px; color: rgba(255, 255, 255, .55); }
.copyright { margin: 0; font-size: 12px; font-family: var(--font-en); color: rgba(255, 255, 255, .6); }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
