/* コーポレート（グループ）サイト専用のヘッダー／フッター。
   ホテルサイトの site-header/site-footer は使わず、独自のシンプルな構成。 */

:root { --hl-blue: var(--wp--preset--color--brand-primary, #002F61); }

/* このサイトでは固定ヘッダーが無いため、一覧のジャンプナビはビューポート上端に吸着 */
.wp-block-hilton-hotel-list { --hotels-nav-top: 0; }

/* ヘッダー: コーポレートロゴのみのバー */
.corp-bar { background: #fff; }
.corp-bar .wrap { padding-top: 28px; padding-bottom: 16px; }
.corp-bar .brand-logo { margin: 0; display: inline-flex; }
.corp-bar .brand-logo img { display: block; height: 56px; width: auto; }

/* フッター: ロゴ / SNS / 企業リンク / コピーライト / 商標表記。
   上下 padding はホテルサイトのフッター（32px / 18px）に合わせる。 */
.corp-footer { padding: 32px 0 18px; }
.corp-footer .wrap { display: block; }
.corp-footer a { color: #fff; }
.corp-footer .pre {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
	gap: 20px 40px; padding-bottom: 24px; margin-bottom: 22px;
	border-bottom: 1px solid color-mix(in srgb, #fff 22%, transparent);
}
.corp-footer .pre .brand-mark { display: inline-flex; align-items: center; }
.corp-footer .pre .brand-mark img { height: 40px; width: auto; display: block; }
.corp-footer .pre .social { display: flex; gap: 10px; flex-wrap: wrap; }
.corp-footer .pre .social a {
	width: 34px; height: 34px; display: grid; place-items: center;
	border: 1px solid color-mix(in srgb, #fff 40%, transparent); border-radius: 50%; color: #fff;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.corp-footer .pre .social a:hover { background: #fff; color: var(--hl-blue); border-color: #fff; }

.corp-footer .nav-corp { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 24px; }
.corp-footer .nav-corp .links { display: flex; flex-wrap: wrap; gap: 10px 24px; }
/* core/navigation はリンクを <ul.wp-block-navigation__container> でラップするため、
   実リンクの間隔はコンテナ側に当てる（旧 .links 直下 <a> 構造からの移行）。 */
.corp-footer .nav-corp .links .wp-block-navigation__container { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.corp-footer .nav-corp .links .wp-block-navigation-item__content { padding: 0; }
.corp-footer .nav-corp a { font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; opacity: 0.85; transition: opacity 0.15s; }
.corp-footer .nav-corp a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.corp-footer .nav-corp .copyright { font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: #fff; white-space: nowrap; margin-left: auto; text-align: right; opacity: 0.85; }
.corp-footer .trademark-notice { font-family: var(--sans); font-size: 10px; line-height: 1.6; color: #fff; margin-top: 12px; letter-spacing: 0.02em; text-align: right; opacity: 0.7; }
