/* トップページ。ヒーロー（hilton/hero）と各セクション。 */

/* トップページのみ、セクション見出しを1段大きく見せる（h2→h1相当、h3→h2相当）。
   下層ページの基準サイズ（h1=clamp(24,2.6vw,30) / h2=clamp(20,2vw,23)）に合わせる。
   対象: ピークカルーセル（客室・レストラン=h2／プラン=h3）、ホテル情報（h2＋施設/アクセス=h3）、お知らせ(h2)。 */
.home .peek-carousel-section .peek-carousel-head h2,
.home .about-wrap .sec-head h2,
.home .news-archive .news-head h2 {
	font-size: clamp(24px, 2.6vw, 30px);
	line-height: 1.3;
}
.home .peek-carousel-section .peek-carousel-head h3,
.home .about-wrap__inner > h3.wp-block-heading {
	font-size: clamp(20px, 2vw, 23px);
	line-height: 1.4;
}
/* トップの h2 セクション見出しは上下 56px の余白で区切る。
   上はセクションの padding-top（56px）、下は見出し帯の margin-bottom で確保する。 */
.home .peek-carousel-section .peek-carousel-head:has(h2),
.home .about-wrap .sec-head,
.home .news-archive .news-head {
	margin-bottom: 56px;
}

/* ヒーロー: 前景は 16:9・最大1320×560 中央配置。外側は同メディアのぼかしを全幅に敷く。 */
.hilton-hero {
	position: relative;
	overflow: hidden;
	background: #000;
}
.hilton-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(20px);
	transform: scale(1.08);
	z-index: 0;
}
.hilton-hero--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--hilton-hero-bg) center / cover no-repeat;
	filter: blur(20px);
	transform: scale(1.08);
	z-index: 0;
}
.hilton-hero__frame {
	position: relative;
	z-index: 1;
	aspect-ratio: 16 / 9;
	max-width: 1320px;
	max-height: 560px;
	margin: 0 auto;
	overflow: hidden;
}
.hilton-hero__fg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* KV 最小プレイヤー（再生/一時停止・音声オンオフ）。フレーム内右下に重ねる。 */
.hilton-hero__controls {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: flex;
	gap: 10px;
}
.hilton-hero__ctrl {
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	transition: background 0.2s ease;
}
.hilton-hero__ctrl:hover {
	background: rgba(0, 0, 0, 0.62);
}
.hilton-hero__ctrl .ic {
	display: block;
}
/* 状態でアイコンを切替: 初期は pause / sound-off。 */
.hilton-hero__playpause .ic-play,
.hilton-hero__sound .ic-on {
	display: none;
}
.hilton-hero.is-paused .hilton-hero__playpause .ic-pause {
	display: none;
}
.hilton-hero.is-paused .hilton-hero__playpause .ic-play {
	display: block;
}
.hilton-hero.is-sound .hilton-hero__sound .ic-off {
	display: none;
}
.hilton-hero.is-sound .hilton-hero__sound .ic-on {
	display: block;
}
/* 素材未設定時のダミー枠。 */
.hilton-hero--placeholder {
	background: var(--wp--preset--color--surface, #f4f2f3);
}
.hilton-hero--placeholder .hilton-hero__frame {
	display: grid;
	place-items: center;
	background: var(--wp--preset--color--surface, #f4f2f3);
}
.hilton-hero__dummy {
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 14px;
	letter-spacing: 0.2em;
	color: #999;
}

/* 先頭セクションがカルーセルのときは上罫線を消す（カルーセル側の上余白で足りる）。 */
.home main > .peek-carousel-section:first-child {
	border-top: 0;
}

/* ホテル情報（誘導カード）。背景 off-white(surface)・4列カード（狭幅で2列）。 */
.about-wrap {
	background: var(--wp--preset--color--surface, #f4f2f3);
	padding: 56px 0;
}
.about-wrap__inner {
	padding-left: max(32px, calc(50vw - 628px));
	padding-right: max(32px, calc(50vw - 628px));
}
.about-wrap .sec-head {
	margin-bottom: 40px;
	text-align: center;
}
/* ホテル情報内のサブ見出し（施設・サービス／アクセス）も中央寄せに揃える。 */
.about-wrap__inner > h3.wp-block-heading {
	text-align: center;
}
.about-wrap .sec-head h2 {
	margin: 0;
	font-family: var(--wp--custom--brand-heading);
	font-weight: 700;
	font-size: clamp(18px, 2vw, 24px);
	letter-spacing: 0.04em;
}
.about-grid {
	display: grid;
	grid-template-columns: repeat(var(--about-cols, 4), 1fr);
	gap: 24px;
}
.about-card {
	display: block;
	color: inherit;
	text-decoration: none;
}
.about-card .ph {
	aspect-ratio: 485 / 245;
	overflow: hidden;
}
.about-card .ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.about-card:hover .ph img {
	transform: scale(1.04);
}
.about-card .body {
	margin-top: 10px;
}
.about-card__title {
	margin: 0;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-weight: 700;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0.06em;
	color: #000;
}
.about-card__desc {
	margin: 8px 0 0;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 12px;
	line-height: 1.7;
	color: #555;
}
a.about-card:hover .about-card__title {
	color: var(--wp--preset--color--brand-primary, #b89766);
}
@media (max-width: 860px) {
	.about-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-wrap__inner {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ホテル情報内のサブ見出し（施設・サービス／アクセス）。 */
.about-wrap .sub-head {
	margin: 48px 0 16px;
}
/* 見出し（ホテル情報）直後にサブ見出し（施設・サービス）が来る場合は、間の余白を詰める。 */
.about-wrap .sec-head:has(+ .sub-head) {
	margin-bottom: 24px;
}
.about-wrap .sec-head + .sub-head {
	margin-top: 0;
}
.about-wrap .sub-head h3 {
	margin: 0;
	font-family: var(--wp--custom--brand-heading);
	font-weight: 700;
	font-size: clamp(16px, 1.6vw, 18px);
	letter-spacing: 0.12em;
	color: var(--wp--preset--color--brand-primary, #b89766);
}
/* チェックイン/アウト。 */
.about-wrap .check-times {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin-bottom: 28px;
}
.about-wrap .check-time-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 13px;
	color: #000;
	font-variant-numeric: tabular-nums;
}
.about-wrap .check-time-item svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--wp--preset--color--brand-primary, #b89766);
}
.about-wrap .check-time-item .label {
	color: var(--wp--preset--color--brand-primary, #b89766);
	letter-spacing: 0.08em;
}
.about-wrap .check-time-item .time {
	font-weight: 400;
}
/* アメニティ（アイコングリッド）。 */
.about-wrap .amen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 18px 20px;
}
.about-wrap .amen-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 13px;
	color: #000;
	line-height: 1.4;
}
.about-wrap .amen-item svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--wp--preset--color--brand-primary, #b89766);
}
/* アクセス（地図＋住所＋経路）。 */
.about-access-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: stretch;
}
/* 地図 iframe を absolute で住所列の高さに伸ばす。 */
.about-access-grid .map {
	position: relative;
	overflow: hidden;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.about-access-grid .map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.about-access-grid .map--dummy {
	display: grid;
	place-items: center;
	min-height: 280px;
	color: #999;
	letter-spacing: 0.2em;
}
.about-access-grid .access-info .addr {
	margin: 0 0 4px;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: #000;
}
.about-access-grid .access-info .tel {
	margin: 0 0 22px;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 14px;
	line-height: 1.7;
	color: #000;
}
.about-access-grid .access-info .tel-link {
	color: inherit;
	text-decoration: none;
}
/* 経路 dl の上に区切り罫線（住所／TEL との分離）。 */
.about-access-grid .access-info dl {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 14px 24px;
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid var(--wp--preset--color--line, #d8d0cc);
	/* ラベル（dt）と内容（dd）を各行の先頭で上揃えにする（内容が複数行でもラベルは1行目に揃う）。 */
	align-items: start;
}
.about-access-grid .access-info dt {
	margin: 0;
	/* dd と同じ行高にして1行目どうしを揃える（旧 padding-top 4px のズレを解消）。 */
	line-height: 1.8;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.about-access-grid .access-info dd {
	margin: 0;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 14px;
	line-height: 1.8;
	color: #000;
}
.about-access-grid .access-more {
	margin-top: 24px;
}
/* アクセス詳細ボタン（セカンダリー: 透明＋枠線）。ヘッダー外でも効くようここで定義。 */
.about-access-grid .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.18em;
	padding: 9px 24px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.about-access-grid .btn-secondary {
	background: transparent;
	color: var(--wp--preset--color--brand-primary, #b89766);
	box-shadow: inset 0 0 0 1.5px var(--wp--preset--color--brand-primary, #b89766);
}
.about-access-grid .btn-secondary:hover {
	background: var(--wp--preset--color--brand-primary, #b89766);
	color: #fff;
}
.about-access-grid .btn .arrow {
	font-weight: 400;
	font-size: 16px;
}
@media (max-width: 860px) {
	.about-wrap .amen-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px 14px;
	}
	.about-access-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ホテル情報・アクセス（カルーセルでないセクション）。h2＝罫線あり、h3サブ＝罫線なし。 */
.top-section {
	padding: 56px 0;
}
.top-section--bordered {
	border-top: 1px solid var(--wp--preset--color--line, #ececec);
}
.top-section__title {
	margin: 0 0 24px;
	font-family: var(--wp--custom--brand-heading);
	font-weight: 700;
	font-size: clamp(18px, 2vw, 24px);
	letter-spacing: 0.04em;
}
.top-section__subtitle {
	margin: 0 0 16px;
	font-family: var(--wp--custom--brand-heading);
	font-weight: 700;
	font-size: clamp(15px, 1.5vw, 18px);
	letter-spacing: 0.04em;
}
/* h2 → h3 サブセクションの間は詰める（罫線あり境界は通常余白のまま）。 */
.top-section--bordered:has(+ .peek-carousel-section--no-border) {
	padding-bottom: 24px;
}
.top-section + .peek-carousel-section--no-border,
.peek-carousel-section + .top-section:not(.top-section--bordered),
.news-archive + .top-section:not(.top-section--bordered) {
	padding-top: 0;
}
.peek-carousel-section--no-border:has(+ .top-section) {
	padding-bottom: 24px;
}
