@charset "UTF-8";
/*
Theme Name: Lightning Child
Theme URI: https://animal-meeting.com/
Template: lightning
Description: 「どうぶつ会議室」 Lightning 子テーマ
Author: 小林まさこ
Version: 0.1.4
*/

/* =========================================
   デザイントークン（CSS変数）
   ========================================= */
:root {
  /* ブランドカラー */
  --pk-blue: #1B3FA0;
  --pk-blue-mid: #2550C8;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-accent: #f39700;
  --pk-accent-dark: #ff9500;
  --pk-navy: #1A2340;
  --pk-white: #FFFFFF;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  --pk-teal: #0D5C63;
  --pk-teal-mid: #17A2B0;

  /* フォント */
  --pk-font-base: 'Noto Sans JP', sans-serif;
  --pk-font-display: 'Outfit', sans-serif;
}

/* =========================================
   ベーススタイル
   ========================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pk-font-base);
  color: var(--pk-navy);
  background: var(--pk-white);
  overflow-x: hidden;
}

/* =========================================
   ユーティリティクラス
   ========================================= */
.pk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .pk-container {
    padding: 0 56px;
  }
}

/* =========================================
   ヘッダー（共通ナビゲーション）
   ========================================= */
.pk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pk-gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .pk-nav {
    padding: 0 56px;
  }
}

.admin-bar .pk-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .pk-nav {
    top: 46px;
  }
}

/* ロゴ */
.pk-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pk-navy);
}

.pk-nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden; /* これが白をカットしてくれる */
  box-shadow: 0 2px 4px rgba(27, 63, 160, 0.2);
}

.pk-nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.8); /* ← 白余白を内側に押し込む */
}

.pk-nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pk-nav-logo-sub {
  font-family: var(--pk-font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--pk-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pk-nav-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-navy);
}

/* メニュー（PCのみ） */
.pk-nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1024px) {
  .pk-nav-links {
    display: flex;
  }
}

.pk-nav-links li {
  margin: 0;
  padding: 0;
}

.pk-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--pk-navy);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}

.pk-nav-links a:hover {
  color: var(--pk-blue);
}

.pk-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pk-accent);
  transition: width 0.3s;
}

.pk-nav-links a:hover::after {
  width: 100%;
}

/* 予約ボタン */
.pk-nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-mid));
  color: var(--pk-white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(27, 63, 160, 0.25);
  white-space: nowrap;
}

.pk-nav-reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 63, 160, 0.35);
  color: var(--pk-white);
}

@media (max-width: 480px) {
  .pk-nav-reserve {
    padding: 8px 14px;
    font-size: 12px;
  }
}

body {
  padding-top: 70px;
}

/* =========================================
   Lightning標準ヘッダー・フッターを非表示
   ========================================= */
#site-header {
  display: none;
}

.site-footer {
  display: none;
}

/* =========================================
   フッター
   ========================================= */
.pk-footer {
  background: var(--pk-navy);
  color: var(--pk-white);
  padding: 60px 0 0;
  margin-top: 80px;
}

.pk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .pk-footer-inner {
    padding: 0 56px;
  }
}

.pk-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .pk-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.pk-footer-column {
  min-width: 0;
}

.pk-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pk-footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pk-footer-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-white);
}

.pk-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.pk-footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--pk-accent);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
  font-family: var(--pk-font-display);
}

.pk-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pk-footer-list li {
  margin: 0;
  padding: 0;
}

.pk-footer-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.pk-footer-list a:hover {
  color: var(--pk-accent);
}

.pk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.pk-footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.05em;
}

/* =========================================
   モバイル固定バー
   ========================================= */
.pk-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pk-white);
  border-top: 1px solid var(--pk-gray-border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 90;
  padding: 8px;
  gap: 8px;
}

@media (max-width: 767px) {
  .pk-mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

.pk-mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  text-decoration: none;
  color: var(--pk-navy);
  font-size: 11px;
  border-radius: 8px;
  transition: background 0.2s;
}

.pk-mobile-bar-item:hover {
  background: var(--pk-gray-light);
}

.pk-mobile-bar-icon {
  font-size: 20px;
  line-height: 1;
}

.pk-mobile-bar-label {
  font-size: 11px;
  font-weight: 600;
}

.pk-mobile-bar-primary {
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-mid));
  color: var(--pk-white);
}

.pk-mobile-bar-primary:hover {
  background: linear-gradient(135deg, var(--pk-blue-mid), var(--pk-blue));
  color: var(--pk-white);
}

.pk-mobile-bar-primary .pk-mobile-bar-label {
  color: var(--pk-white);
}

/* =========================================
   Lightningのモバイルナビ非表示
   ========================================= */
#vk-mobile-nav-menu-btn,
.vk-mobile-nav-menu-btn,
#vk-mobile-nav,
.vk-mobile-nav {
  display: none !important;
}

/* =========================================
   ハンバーガーボタン
   ========================================= */
.pk-nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--pk-gray-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  transition: background 0.2s, border-color 0.2s;
}

@media (max-width: 1023px) {
  .pk-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .pk-nav-reserve {
    display: none;
  }
}

.pk-nav-toggle:hover {
  background: var(--pk-gray-light);
  border-color: var(--pk-blue);
}

.pk-nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pk-navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.pk-nav-toggle[aria-expanded="true"] .pk-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pk-nav-toggle[aria-expanded="true"] .pk-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.pk-nav-toggle[aria-expanded="true"] .pk-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   ドロワーメニュー
   ========================================= */
.pk-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 35, 64, 0.5);
  z-index: 105;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pk-drawer-overlay:not([hidden]) {
  display: block;
}

.pk-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: var(--pk-white);
  z-index: 110;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.pk-drawer:not([hidden]) {
  display: flex;
}

.pk-drawer.is-open {
  transform: translateX(0);
}

.admin-bar .pk-drawer {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .pk-drawer {
    top: 46px;
  }
}

.pk-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pk-gray-border);
}

.pk-drawer-title {
  font-family: var(--pk-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--pk-accent);
  letter-spacing: 0.15em;
}

.pk-drawer-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--pk-gray-border);
  border-radius: 50%;
  font-size: 20px;
  color: var(--pk-navy);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.pk-drawer-close:hover {
  background: var(--pk-gray-light);
  border-color: var(--pk-blue);
}

.pk-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pk-drawer-links li {
  margin: 0;
  padding: 0;
}

.pk-drawer-links a {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--pk-navy);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.pk-drawer-links a:hover {
  background: var(--pk-blue-ghost);
  color: var(--pk-blue);
}

.pk-drawer-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-mid));
  color: var(--pk-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(27, 63, 160, 0.25);
}

.pk-drawer-reserve:hover {
  color: var(--pk-white);
  box-shadow: 0 4px 12px rgba(27, 63, 160, 0.35);
}

body.pk-drawer-is-open {
  overflow: hidden;
}

/* =========================================
   Pechakucha FAQ プラグイン 表示カスタマイズ
   ========================================= */
.pcfaq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

/* カテゴリ見出し */
.pcfaq-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1B3FA0;
  letter-spacing: normal;
  text-transform: none;
  margin: 28px 0 12px;
  padding: 0 0 0 4px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pcfaq-cat::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: #1B3FA0;
  border-radius: 2px;
}

/* 質問カード */
.pcfaq-item {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1.5px solid #E8EDF5;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.pcfaq-item:hover {
  border-color: #D6E8F7;
}
.pcfaq-item[open] {
  border-color: #D6E8F7;
  box-shadow: 0 2px 12px rgba(27, 63, 160, 0.08);
}

/* 質問（summary） */
.pcfaq-q {
  padding: 18px 50px 18px 44px;
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1A2340;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  background: #FFFFFF;
  display: block;
}
.pcfaq-q::-webkit-details-marker { display: none; }
.pcfaq-q::marker { display: none; }

.pcfaq-q::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1B3FA0;
  line-height: 1.5;
}

.pcfaq-q::after {
  content: '＋';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 300;
  color: #6B7280;
  transition: color 0.2s;
}
.pcfaq-item[open] .pcfaq-q::after {
  content: '−';
  color: #1B3FA0;
}

/* 回答 */
.pcfaq-a {
  padding: 0 20px 18px 44px;
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.85;
  border-top: none;
  background: #FFFFFF;
}
.pcfaq-a p { margin: 0.6rem 0; }
.pcfaq-a p:first-child { margin-top: 0; }
.pcfaq-a a {
  color: #1B3FA0;
  text-decoration: underline;
}
.pcfaq-a a:hover { text-decoration: none; }

/* =========================================
   FAQページ：お知らせボックス（折りたたみ式）
   ========================================= */
.pk-faq-notice {
  background: #f5f7fc;
  border-left: 4px solid #1B3FA0;
  padding: 12px 16px;
  margin: 0 0 20px;
  border-radius: 4px;
  font-size: 0.9em;
}

.pk-faq-notice summary {
  font-weight: 700;
  color: #1B3FA0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  outline: none;
}

.pk-faq-notice summary::-webkit-details-marker { display: none; }

.pk-faq-notice summary::after {
  content: "＋";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  font-weight: 400;
  transition: transform 0.2s;
}

.pk-faq-notice[open] summary::after {
  content: "−";
}

.pk-faq-notice ul {
  margin: 12px 0 0 !important;
  padding-left: 1.2em !important;
  line-height: 1.7 !important;
}

.pk-faq-notice li {
  margin-bottom: 4px !important;
  line-height: 1.7;
}

.pk-faq-notice li:last-child { margin-bottom: 0 !important; }

.pk-faq-notice strong { color: #1B3FA0; }

.pk-faq-notice-footnote {
  margin: 12px 0 0 !important;
  font-size: 0.9em;
  color: #555;
}

/* コアラ用バリエーション */
.pk-faq-notice--koala {
  border-left-color: #F0A500;
}
.pk-faq-notice--koala summary,
.pk-faq-notice--koala strong {
  color: #B8780C;
}

/* FAQ 空メッセージ */
.pk-faq-empty-message {
  padding: 40px 20px;
  text-align: center;
  color: #6B7280;
  font-size: 0.9rem;
  background: #F7F9FC;
  border: 1px solid #E8EDF5;
  border-radius: 14px;
}

/* =========================================
   FAQ トップ：部屋別ナビ
   ========================================= */
.pk-faq-room-nav {
  margin-top: 3rem;
}

.pk-faq-room-nav__title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #1B3FA0 !important;
  margin: 28px 0 12px !important;
  padding: 0 0 0 4px !important;
  border: none !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}
.pk-faq-room-nav__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 20px;
  background: #1B3FA0;
  border-radius: 2px;
  flex-shrink: 0;
}

.pk-faq-room-nav__lead {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pk-faq-room-nav__location {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1B3FA0 !important;
  margin: 28px 0 12px !important;
  padding: 0 0 0 4px !important;
  border: none !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}
.pk-faq-room-nav__location::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: #1B3FA0;
  border-radius: 2px;
  flex-shrink: 0;
}

.pk-faq-room-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pk-faq-room-card {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #fff;
  border: 1px solid var(--pk-accent);
  border-radius: 8px;
  color: var(--pk-blue);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pk-faq-room-card:hover {
  background: var(--pk-accent);
  color: #fff;
}

/* 共通FAQへの導線帯 */
.pk-faq-common-link {
  background: #F7F9FC;
  border-left: 4px solid var(--pk-accent);
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.pk-faq-common-link a {
  color: var(--pk-blue);
  font-weight: 700;
  text-decoration: underline;
}

/* =========================================
   料金ページ（/price/）専用スタイル
   ========================================= */
.pk-price-page {
  --pk-blue: #1B3FA0;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-accent: #f39700;
  --pk-navy: #1A2340;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  color: var(--pk-navy);
}

.pk-price-page * { box-sizing: border-box; }

.pk-price-page .pk-section {
  padding: 56px 24px;
  background: #fff;
}
.pk-price-page .pk-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-accent);
  margin-bottom: 10px;
}
.pk-price-page .pk-section-title {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 800;
  color: var(--pk-navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.pk-price-page .pk-section-desc {
  font-size: 0.85rem;
  color: var(--pk-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pk-price-page .pk-price-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pk-price-page .pk-price-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pk-gray-border);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}
.pk-price-page .pk-price-card:hover { border-color: var(--pk-blue-pale); }
.pk-price-page .pk-price-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pk-price-page .pk-price-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.pk-price-page .pk-price-room-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 0 0 3px;
}
.pk-price-page .pk-price-room-sub {
  font-size: 0.75rem;
  color: var(--pk-gray);
  margin: 0;
}
.pk-price-page .pk-price-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pk-blue);
  background: var(--pk-blue-ghost);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 4px;
}
.pk-price-page .pk-floor-badge {
  background: var(--pk-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
}
.pk-price-page .pk-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pk-blue);
  text-align: right;
  white-space: nowrap;
}
.pk-price-page .pk-price-amount small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--pk-gray);
  display: block;
}

.pk-price-page .pk-price-note {
  background: var(--pk-blue-ghost);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.78rem;
  color: var(--pk-navy);
  line-height: 1.8;
  margin-top: 20px;
}
.pk-price-page .pk-price-note strong { color: var(--pk-blue); }

.pk-price-page .pk-other-section { background: #fff; }
.pk-price-page .pk-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pk-price-page .pk-other-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid var(--pk-gray-border);
  text-align: center;
}
.pk-price-page .pk-other-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.pk-price-page .pk-other-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin-bottom: 4px;
}
.pk-price-page .pk-other-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pk-blue);
}
.pk-price-page .pk-other-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--pk-gray);
}

.pk-price-page .pk-cta-band {
  background: var(--pk-navy);
  padding: 48px 24px;
  text-align: center;
}
.pk-price-page .pk-cta-title {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.pk-price-page .pk-cta-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.pk-price-page .pk-btn-gold {
  background: var(--pk-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(43,176,195,0.35);
}
.pk-price-page .pk-cta-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .pk-price-page .pk-section { padding: 72px 56px; }
  .pk-price-page .pk-price-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .pk-price-page .pk-other-grid { grid-template-columns: repeat(4, 1fr); }
  .pk-price-page .pk-cta-band { padding: 64px 56px; }
}

/* 料金ページ：カード写真対応 */
/* 会議室カード → 縦並びに変更 */
.pk-price-page .pk-price-card {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.pk-price-page .pk-price-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 160px;
  object-fit: cover;
}

.pk-price-page .pk-price-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

/* その他スペースカード */
.pk-price-page .pk-other-card {
  padding: 0;
  overflow: hidden;
}

.pk-price-page .pk-other-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 120px;
  object-fit: cover;
}

.pk-price-page .pk-other-card-body {
  padding: 14px 12px;
  text-align: center;
}


/* =========================================
   TOPページ専用スタイル
   ========================================= */
.pk-top-page {
  --pk-blue: #1B3FA0;
  --pk-blue-mid: #2550C8;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-catch:  #FFFFFF;
  --pk-accent: #f39700;
  --pk-accent-dark: #ff9500;
  --pk-navy: #1A2340;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  color: var(--pk-navy);
}
.pk-top-page * { box-sizing: border-box; }

.pk-top-page > .pk-hero,
.pk-top-page > .pk-quick-access {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.pk-top-page .pk-hero {
  background: var(--pk-blue);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 80px;
}
.pk-top-page .pk-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.pk-top-page .pk-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}
.pk-top-page .pk-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.pk-top-page .pk-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--pk-accent);
  border-radius: 50%;
  animation: pkPulse 2s ease-in-out infinite;
}
@keyframes pkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.pk-top-page .pk-hero-title {
  font-size: clamp(1.9rem, 7vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.pk-top-page .pk-hero-title .pk-accent { color: var(--pk-accent); }
.pk-top-page .pk-hero-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin: 0 0 32px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.pk-top-page .pk-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pk-top-page .pk-btn-gold {
  background: var(--pk-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(43,176,195,0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pk-top-page .pk-btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pk-top-page .pk-hero-locations {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  z-index: 1;
}
.pk-top-page .pk-hero-loc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hero inner layout */
.pk-top-page .pk-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pk-top-page .pk-hero-text {
  flex: 0 0 52%;
}

.pk-top-page .pk-hero-illust {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pk-top-page .pk-hero-illust img {
  width: 100%;
  display: block;
}

/* モバイル：縦積み */
@media (max-width: 768px) {
  .pk-top-page .pk-hero-inner {
    flex-direction: column;
  }

  .pk-top-page .pk-hero-text,
  .pk-top-page .pk-hero-illust {
    flex: none;
    width: 100%;
  }
}

.pk-top-page .pk-quick-access {
  background: var(--pk-navy);
  padding: 20px 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.pk-top-page .pk-quick-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pk-top-page .pk-quick-chip:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.pk-top-page .pk-section { padding: 64px 24px; }
.pk-top-page .pk-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-accent);
  margin: 0 0 10px;
}
.pk-top-page .pk-section-title {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 800;
  color: var(--pk-navy);
  line-height: 1.35;
  margin: 0 0 8px;
}
.pk-top-page .pk-section-desc {
  font-size: 0.85rem;
  color: var(--pk-gray);
  line-height: 1.8;
  margin: 0 0 36px;
}

.pk-top-page .pk-location-section { background: var(--pk-gray-light); }
.pk-top-page .pk-location-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pk-top-page .pk-location-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--pk-gray-border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pk-top-page .pk-location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27,63,160,0.1);
}
.pk-top-page .pk-location-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pk-top-page .pk-loc-akasaka { background: linear-gradient(135deg, #1A2340 0%, #1B3FA0 100%); }
.pk-top-page .pk-loc-jinbo   { background: linear-gradient(135deg, #1B3FA0 0%, #3567D4 100%); }
.pk-top-page .pk-loc-kannai  { background: linear-gradient(135deg, #0D5C63 0%, #17A2B0 100%); }
.pk-top-page .pk-location-img-text {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.04em;
  position: absolute;
  bottom: -8px;
  right: 16px;
}
.pk-top-page .pk-location-img-main {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pk-top-page .pk-location-img-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 4px;
}
/* アイコン画像 */
.pk-top-page .pk-location-img-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px; /* 完全な四角なら0、少し角丸にするなら8〜12px */
  display: block;
  margin: 0 auto 4px;
}
.pk-top-page .pk-location-img-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.pk-top-page .pk-location-badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.pk-top-page .pk-badge-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.pk-top-page .pk-badge-new {
  background: var(--pk-accent);
  border-color: var(--pk-accent);
}
.pk-top-page .pk-location-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pk-top-page .pk-location-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pk-top-page .pk-location-tag {
  background: var(--pk-blue-ghost);
  color: var(--pk-blue);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pk-top-page .pk-location-tag-new {
  background: #FFF8E7;
  color: var(--pk-accent-dark);
}
.pk-top-page .pk-location-access {
  font-size: 0.8rem;
  color: var(--pk-gray);
  margin: 0 0 16px;
}
.pk-top-page .pk-location-rooms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pk-top-page .pk-room-chip {
  background: var(--pk-gray-light);
  border: 1px solid var(--pk-gray-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--pk-navy);
  display: flex;
  align-items: center;
  gap: 3px;
}
.pk-top-page .pk-location-cta-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.pk-top-page .pk-btn-blue-sm {
  flex: 1;
  background: var(--pk-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}
.pk-top-page .pk-btn-outline-sm {
  flex: 1;
  border: 1.5px solid var(--pk-gray-border);
  color: var(--pk-gray);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}

.pk-top-page .pk-spaces-section { background: #fff; }
.pk-top-page .pk-section-inner-wrap { max-width: 1100px; margin: 0 auto; }
.pk-top-page .pk-space-group { margin-bottom: 40px; }
.pk-top-page .pk-space-group:last-child { margin-bottom: 0; }
.pk-top-page .pk-space-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-top: 10px;        /* ← padding-bottom から変更 */
  border-top: 2px solid var(--pk-blue-pale);   /* ← border-bottom から変更 */
}
.pk-top-page .pk-space-group-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0;
}
.pk-top-page .pk-space-group-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pk-blue);
  background: var(--pk-blue-ghost);
  padding: 3px 10px;
  border-radius: 100px;
}
.pk-top-page .pk-space-group-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-accent);
  text-decoration: none;
  margin-left: auto;
}
.pk-top-page .pk-space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pk-top-page .pk-space-card {
  background: var(--pk-gray-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--pk-gray-border);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.pk-top-page .pk-space-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,63,160,0.08);
}
.pk-top-page .pk-space-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.pk-top-page .pk-sc-blue   { background: linear-gradient(135deg, #1B3FA0, #2550C8); }
.pk-top-page .pk-sc-navy   { background: linear-gradient(135deg, #1A2340, #1B3FA0); }
.pk-top-page .pk-sc-teal   { background: linear-gradient(135deg, #0D7377, #14BDAC); }
.pk-top-page .pk-sc-rose   { background: linear-gradient(135deg, #9B2335, #C0392B); }
.pk-top-page .pk-sc-indigo { background: linear-gradient(135deg, #3B4BC8, #6B7AE8); }
.pk-top-page .pk-sc-amber  { background: linear-gradient(135deg, #C88A00, #F0A500); }
.pk-top-page .pk-sc-ocean  { background: linear-gradient(135deg, #0D5C63, #17A2B0); }
.pk-top-page .pk-space-info { padding: 12px 14px; }
.pk-top-page .pk-space-location-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pk-blue);
  background: var(--pk-blue-ghost);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
}
.pk-top-page .pk-floor-tag {
  background: var(--pk-blue);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.pk-top-page .pk-space-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 0 0 3px;
  line-height: 1.35;
}
.pk-top-page .pk-space-cap {
  font-size: 0.8rem;
  color: var(--pk-gray);
  margin: 0 0 8px;
}
.pk-top-page .pk-space-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pk-blue);
  margin: 0;
}
.pk-top-page .pk-space-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--pk-gray);
}

.pk-top-page .pk-howto-section { background: var(--pk-blue); }
.pk-top-page .pk-howto-section .pk-section-title { color: #fff; }
.pk-top-page .pk-howto-section .pk-section-desc { color: rgba(255,255,255,0.6); }
.pk-top-page .pk-howto-section .pk-section-label { color: rgba(255,255,255,0.5); }
.pk-top-page .pk-howto-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pk-top-page .pk-howto-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px 18px;
}
.pk-top-page .pk-step-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
}
.pk-top-page .pk-step-num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--pk-accent);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pk-top-page .pk-step-text-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.pk-top-page .pk-step-text-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.pk-top-page .pk-features-section { background: var(--pk-gray-light); }
.pk-top-page .pk-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pk-top-page .pk-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  border: 1px solid var(--pk-gray-border);
}
.pk-top-page .pk-feature-emoji {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.pk-top-page .pk-feature-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 0 0 5px;
  line-height: 1.35;
}
.pk-top-page .pk-feature-desc {
  font-size: 0.72rem;
  color: var(--pk-gray);
  line-height: 1.7;
  margin: 0;
}

.pk-top-page .pk-scenes-section { background: #fff; }
.pk-top-page .pk-scenes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pk-top-page .pk-scene-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--pk-gray-light);
  border-radius: 12px;
  border-left: 3px solid var(--pk-blue-pale);
}
.pk-top-page .pk-scene-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pk-top-page .pk-scene-text-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 0 0 2px;
}
.pk-top-page .pk-scene-text-desc {
  font-size: 0.75rem;
  color: var(--pk-gray);
  margin: 0;
}

.pk-top-page .pk-top-faq-section { background: var(--pk-gray-light); }
.pk-top-page .pk-top-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pk-top-page .pk-top-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1.5px solid var(--pk-gray-border);
}
.pk-top-page .pk-top-faq-q {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 0 0 8px;
  display: flex;
  gap: 8px;
}
.pk-top-page .pk-top-faq-q-mark {
  color: var(--pk-blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}
.pk-top-page .pk-top-faq-a {
  font-size: 0.8rem;
  color: var(--pk-gray);
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
}

.pk-top-page .pk-cta-section {
  background: var(--pk-navy);
  padding: 56px 24px;
  text-align: center;
}
.pk-top-page .pk-cta-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.pk-top-page .pk-cta-title {
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 10px;
}
.pk-top-page .pk-cta-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 28px;
  line-height: 1.8;
}
.pk-top-page .pk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pk-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(43,176,195,0.4);
  margin-bottom: 14px;
}
.pk-top-page .pk-cta-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.pk-top-page > .pk-cta-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 768px) {
  .pk-top-page .pk-hero { min-height: 600px; padding: 80px 56px; }
  .pk-top-page .pk-quick-access { padding: 16px 56px; }
  .pk-top-page .pk-section { padding: 80px 56px; }
  .pk-top-page .pk-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .pk-top-page .pk-space-grid { grid-template-columns: repeat(3, 1fr); }
  .pk-top-page .pk-howto-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .pk-top-page .pk-howto-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .pk-top-page .pk-features-grid { grid-template-columns: repeat(4, 1fr); }
  .pk-top-page .pk-scenes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pk-top-page .pk-cta-section { padding: 80px 56px; }
}

.pk-top-page .pk-space-group-footer {
  margin-top: 24px;
  text-align: left;
}
.pk-top-page .pk-space-group-footer-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pk-accent);
  text-decoration: none;
}
.pk-top-page .pk-space-group-footer-link:hover {
  text-decoration: underline;
}

/* =========================================
   拠点ページ共通スタイル
   ========================================= */
.pk-location-page {
  --pk-blue: #1B3FA0;
  --pk-blue-mid: #2550C8;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-accent: #f39700;
  --pk-navy: #1A2340;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  --pk-teal: #0D7377;
  --pk-teal-light: #17A2B0;
  color: var(--pk-navy);
}
.pk-location-page * { box-sizing: border-box; }

.pk-location-page .pk-section { padding: 56px 24px; }
.pk-location-page .pk-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-accent);
  margin: 0 0 10px;
}
.pk-location-page .pk-section-title {
  font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  font-weight: 800;
  color: var(--pk-navy);
  line-height: 1.35;
  margin: 0 0 10px;
}
.pk-location-page .pk-section-desc {
  font-size: 0.85rem;
  color: var(--pk-gray);
  line-height: 1.8;
  margin: 0 0 28px;
}

.pk-location-page .pk-coming-soon {
  background: linear-gradient(135deg, var(--pk-teal) 0%, var(--pk-teal-light) 100%);
  border-radius: 24px;
  padding: 56px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.pk-location-page .pk-coming-soon::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -120px;
  right: -100px;
  pointer-events: none;
}
.pk-location-page .pk-coming-soon-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pk-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-coming-soon-title {
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-coming-soon-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-coming-soon-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}

.pk-location-page .pk-other-locations-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pk-navy);
  margin: 32px 0 14px;
  text-align: center;
}
.pk-location-page .pk-other-locations-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pk-location-page .pk-other-loc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--pk-gray-border);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pk-location-page .pk-other-loc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,63,160,0.08);
}
.pk-location-page .pk-other-loc-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}
.pk-location-page .pk-other-loc-body { flex: 1; }
.pk-location-page .pk-other-loc-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0 0 2px;
}
.pk-location-page .pk-other-loc-access {
  font-size: 0.75rem;
  color: var(--pk-gray);
  margin: 0;
}
.pk-location-page .pk-other-loc-arrow {
  font-size: 1.2rem;
  color: var(--pk-blue);
  flex-shrink: 0;
}

.pk-location-page .pk-hero-card {
  background: linear-gradient(135deg, var(--pk-blue) 0%, var(--pk-blue-mid) 100%);
  border-radius: 24px;
  padding: 40px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.pk-location-page .pk-hero-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.pk-location-page .pk-hero-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pk-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-hero-title {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-hero-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  margin: 0;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.pk-location-page .pk-hero-stat {
  flex: 1 1 calc(50% - 7px);
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.pk-location-page .pk-hero-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  line-height: 1.2;
  margin-bottom: 3px;
}
.pk-location-page .pk-hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  display: block;
}

.pk-location-page .pk-access-card {
  background: var(--pk-blue-ghost);
  border: 1px solid var(--pk-gray-border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 32px;
}
.pk-location-page .pk-access-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pk-location-page .pk-access-row:last-child { border-bottom: none; }
.pk-location-page .pk-access-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pk-location-page .pk-access-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pk-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 3px;
}
.pk-location-page .pk-access-text {
  font-size: 0.88rem;
  color: var(--pk-navy);
  font-weight: 600;
  line-height: 1.5;
}

.pk-location-page .pk-equip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.pk-location-page .pk-equip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--pk-gray-border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pk-location-page .pk-equip-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,63,160,0.06);
}
.pk-location-page .pk-equip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pk-blue-ghost);
  border-radius: 10px;
}
.pk-location-page .pk-equip-body { flex: 1; }
.pk-location-page .pk-equip-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0 0 3px;
  line-height: 1.4;
}
.pk-location-page .pk-equip-desc {
  font-size: 0.8rem;
  color: var(--pk-gray);
  margin: 0;
  line-height: 1.55;
}

.pk-location-page .pk-reserve-band {
  background: linear-gradient(135deg, var(--pk-navy) 0%, #2C3654 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  margin: 32px 0;
}
.pk-location-page .pk-reserve-band-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.pk-location-page .pk-reserve-band-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 18px;
  line-height: 1.7;
}
.pk-location-page .pk-reserve-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pk-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pk-location-page .pk-reserve-band-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(43,176,195,0.4);
  color: #fff;
}

.pk-location-page .pk-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pk-location-page .pk-spec-chip {
  background: var(--pk-gray-light);
  border: 1px solid var(--pk-gray-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pk-navy);
  white-space: nowrap;
}
.pk-location-page .pk-spec-chip strong {
  color: var(--pk-blue);
  font-weight: 700;
}

.pk-location-page .pk-room-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.pk-location-page .pk-room-hero-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .pk-location-page .pk-room-hero-photo img {
    height: 360px;
  }
}

.pk-location-page .pk-room-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pk-blue);
  margin: 16px 0 8px;
}
.pk-location-page .pk-room-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--pk-gray);
}

@media (min-width: 768px) {
  .pk-location-page .pk-section { padding: 72px 56px; }
  .pk-location-page .pk-coming-soon { padding: 72px 40px; }
  .pk-location-page .pk-other-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pk-location-page .pk-hero-card { padding: 56px 40px; }
  .pk-location-page .pk-hero-stat { flex: 1; }
  .pk-location-page .pk-equip-grid { grid-template-columns: 1fr 1fr; }
  .pk-location-page .pk-reserve-band { padding: 48px 32px; }
}

/* =========================================
   /rooms/ ・ /other/ ページ共通スタイル
   ========================================= */
.pk-rooms-page {
  --pk-blue: #1B3FA0;
  --pk-blue-mid: #2550C8;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-accent: #f39700;
  --pk-navy: #1A2340;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  color: var(--pk-navy);
}

.pk-rooms-page .pk-section { padding: 40px 0; }
.pk-rooms-page .pk-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-accent);
  margin: 0 0 8px;
  border-bottom: 1px solid var(--pk-gray-border);
  padding-bottom: 8px;
}
.pk-rooms-page .pk-section-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 24px;
}

.pk-rooms-page .pk-room-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.pk-rooms-page .pk-room-card {
  background: #fff;
  border: 1px solid var(--pk-gray-border);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.pk-rooms-page .pk-room-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,63,160,0.08);
  border-color: var(--pk-blue-pale);
}
.pk-rooms-page .pk-room-photo {
  display: block;
  width: calc(100% + 44px); /* 左右padding 22px×2 を打ち消す */
  max-width: calc(100% + 44px);
  margin: -24px -22px 20px; /* 上下padding 24px も打ち消す */
  height: 180px;
  object-fit: cover;
}
.pk-rooms-page .pk-room-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.pk-rooms-page .pk-room-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pk-blue-ghost);
  border-radius: 12px;
}
.pk-rooms-page .pk-room-head-body { flex: 1; min-width: 0; }
.pk-rooms-page .pk-room-loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pk-blue);
  background: var(--pk-blue-ghost);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.pk-rooms-page .pk-room-floor {
  background: var(--pk-blue);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 2px;
}
.pk-rooms-page .pk-room-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0 0 4px;
  line-height: 1.4;
}
.pk-rooms-page .pk-room-catch {
  font-size: 0.82rem;
  color: var(--pk-gray);
  margin: 0;
  line-height: 1.6;
}

.pk-rooms-page .pk-room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.pk-rooms-page .pk-room-spec {
  background: var(--pk-gray-light);
  border: 1px solid var(--pk-gray-border);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--pk-navy);
}

.pk-rooms-page .pk-room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--pk-gray-border);
  flex-wrap: wrap;
}
.pk-rooms-page .pk-room-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pk-blue);
  white-space: nowrap;
}
.pk-rooms-page .pk-room-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--pk-gray);
}
.pk-rooms-page .pk-room-btn {
  background: var(--pk-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.pk-rooms-page .pk-room-btn:hover {
  color: #fff;
  box-shadow: 0 4px 14px rgba(43,176,195,0.35);
}

.pk-rooms-page .pk-reserve-band {
  background: linear-gradient(135deg, var(--pk-navy) 0%, #2C3654 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  margin: 40px 0 16px;
}
.pk-rooms-page .pk-reserve-band-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.pk-rooms-page .pk-reserve-band-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 18px;
  line-height: 1.7;
}

.pk-location-page .pk-rooms-page .pk-section {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .pk-rooms-page .pk-section { padding: 56px 0; }
  .pk-rooms-page .pk-room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pk-rooms-page .pk-reserve-band { padding: 48px 32px; }
  .pk-location-page .pk-rooms-page .pk-section {
    padding-left: 56px;
    padding-right: 56px;
  }
}

/* =========================================
   aboutページ専用スタイル
   ========================================= */
.pk-about-page {
  --pk-blue: #1B3FA0;
  --pk-blue-mid: #2550C8;
  --pk-blue-pale: #D6E8F7;
  --pk-blue-ghost: #EEF4FC;
  --pk-accent: #f39700;
  --pk-navy: #1A2340;
  --pk-gray: #6B7280;
  --pk-gray-light: #F7F9FC;
  --pk-gray-border: #E8EDF5;
  color: var(--pk-navy);
}
.pk-about-page * { box-sizing: border-box; }

/* ヒーロー */
.pk-about-hero {
  background: linear-gradient(135deg, var(--pk-blue) 0%, var(--pk-blue-mid) 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

}
.pk-about-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-accent);
  margin: 0 0 10px;
  display: block;
}
.pk-about-hero .pk-about-label {
  color: rgba(255,255,255,0.6);
}
.pk-about-hero-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.3;
}
.pk-about-hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.8;
}

/* セクション共通 */
.pk-about-section {
  padding: 56px 24px;
  background: #fff;
}
.pk-about-section--gray {
  background: var(--pk-gray-light);
}
.pk-about-section-title {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0 0 28px;
  line-height: 1.35;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
}

/* 会社概要テーブル */
.pk-about-table-wrap {
  max-width: 680px;
}
.pk-about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.pk-about-table th,
.pk-about-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pk-gray-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.pk-about-table th {
  width: 120px;
  font-weight: 700;
  color: var(--pk-blue);
  white-space: nowrap;
  background: var(--pk-blue-ghost);
}
.pk-about-table td {
  color: var(--pk-navy);
}
.pk-about-table tr:last-child th,
.pk-about-table tr:last-child td {
  border-bottom: none;
}

/* 人物カード */
.pk-about-person-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pk-about-person-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pk-about-person-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pk-blue-pale);
  flex-shrink: 0;
}
.pk-about-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pk-about-person-photo--placeholder {
  background: var(--pk-gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pk-about-person-photo--placeholder span {
  font-size: 2rem;
}
.pk-about-person-photo--placeholder p {
  font-size: 0.7rem;
  color: var(--pk-gray);
  margin: 0;
}
.pk-about-person-meta {
  text-align: center;
}
.pk-about-person-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pk-accent);
  letter-spacing: 0.06em;
  margin: 0 0 4px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}
.pk-about-person-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pk-navy);
  margin: 0;
}
.pk-about-person-message {
  font-size: 0.88rem;
  color: var(--pk-navy);
  line-height: 2;
}
.pk-about-person-message p {
  margin: 0 0 1em;
}
.pk-about-person-message p:last-child {
  margin-bottom: 0;
}
.pk-about-person-quote {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--pk-blue) !important;
  border-left: 3px solid var(--pk-accent);
  padding-left: 14px;
  margin-bottom: 1.4em !important;
  line-height: 1.6 !important;
}

@media (min-width: 768px) {
  .pk-about-hero { padding: 80px 56px; }
  .pk-about-section { padding: 72px 56px; }
  .pk-about-person-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .pk-about-person-photo-wrap {
    flex-shrink: 0;
    width: 180px;
  }
  .pk-about-person-photo {
    width: 180px;
    height: 180px;
  }
}

/* =========================================
   文字サイズ拡大（老眼対応 2026-05）
   ========================================= */
.pk-rooms-page .pk-room-loc-badge { font-size: 0.8rem; }
.pk-rooms-page .pk-room-floor { font-size: 0.7rem; }
.pk-rooms-page .pk-room-name { font-size: 1.15rem; }
.pk-rooms-page .pk-room-catch { font-size: 0.92rem; }
.pk-rooms-page .pk-room-spec { font-size: 0.84rem; }

/* ============================================
   FAQ以外全てのページ：Lightning h2デフォルト線を消す
   ============================================ */
.pk-price-page h2,
.pk-top-page h2,
.pk-location-page h2 {
  border-top: none !important;
  border-bottom: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pk-price-page section,
.pk-top-page section {
  border-top: none !important;
  border-bottom: none !important;
}

.pk-rooms-page h2 {
  border-top: none !important;
  border-bottom: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pk-rooms-page .pk-section-label {
  border-top: none;
  padding-top: 0;
}

.pk-rooms-page .pk-section-title {
  border-top: 2px solid var(--pk-blue) !important;
  padding-top: 16px !important;
}

/* =========================================
   PCアナウンスバー
   ========================================= */
.pk-announce-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pk-navy);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  z-index: 99999;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .pk-announce-bar {
    display: flex;
  }
  .pk-nav {
    top: 40px; /* アナウンスバーの高さ分下げる */
  }
  body {
    padding-top: 110px; /* アナウンスバー40px + ヘッダー70px */
  }
  body.admin-bar .pk-announce-bar {
    top: 32px;
  }
  body.admin-bar .pk-nav {
    top: 72px; /* 管理バー32px + アナウンスバー40px */
  }
  body.admin-bar {
    padding-top: 142px; /* 管理バー32px + アナウンスバー40px + ヘッダー70px */
  }
}

.pk-announce-text {
  font-size: 13px;
}

.pk-announce-highlight {
  color: #f39700;
  font-weight: bold;
}

.pk-announce-btn {
  background: #f39700;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.pk-announce-btn:hover {
  opacity: 0.85;
  color: #fff;
}

/* =========================================
   各拠点のGoogleマップ表示
   ========================================= */
.pk-map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pk-map-open-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  color: #333;
}

/* ===== サブメニュー（ドロップダウン） ===== */
/* 通常時は非表示 */
.pk-nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-radius: 4px;
  z-index: 99999;
  padding: 8px 0;
}

/* 親liをrelativeに */
.pk-nav-links > li {
  position: relative;
}

/* ホバーで表示 */
.pk-nav-links > li:hover > .sub-menu {
  display: block;
}

/* サブメニューのリンク */
.pk-nav-links .sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--pk-navy);
  white-space: nowrap;
  text-align: center;
  position: relative;
  text-decoration: none !important;
  transition: none !important;
}

/* サブメニューのリンクホバー：背景塗りつぶし */
.pk-nav-links .sub-menu li a:hover {
  background: var(--pk-accent) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* サブメニューの::afterは非表示 */
.pk-nav-links .sub-menu a::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  transition: none !important;
}

/* ページトップへ戻るボタン */
.pk-scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 90px; /* モバイル固定バーと被らない高さ */
  width: 50px;
  height: 50px;
  background: rgba(26, 35, 64, 0.7);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}

.pk-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .pk-scroll-top {
    bottom: 24px;
  }
}
