:root {
  --color-main: #e6f0f8;
  --color-sub: #1a5f7a;
  --color-accent: #b8941f;
  --color-font: #2c2c2c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Meiryo", sans-serif;
  background-color: var(--color-main);
  color: var(--color-font);
}

.header {
  background: #fff;
  padding: 15px;
  text-align: center;
}

.header h1 {
  margin: 0;
  color: var(--color-sub);
  letter-spacing: 2px;
  font-size: 22px;
  font-weight: 700;
}

.header .tagline {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.global-nav {
  background-color: var(--color-sub);
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.global-nav a {
  flex: 1;
  min-width: 50px;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.global-nav a:last-child {
  border-right: none;
}

.nav-en {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-ja {
  font-size: 9px;
  opacity: 0.9;
}

.l-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
}

.section-headline {
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-sub);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
}

.note-box {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* パンくずリスト */
.breadcrumb {
  margin: 0 0 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #999;
  font-weight: bold;
}

.breadcrumb-list a {
  color: var(--color-sub);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list [aria-current="page"] {
  color: #444;
  font-weight: bold;
}

/* フッター（サイト内リンク） */
.site-footer {
  margin-top: 56px;
  padding: 0;
  background: linear-gradient(160deg, #2a6f8f 0%, #1a5f7a 55%, #134a5e 100%);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(20, 74, 95, 0.22);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 18px 36px;
  text-align: center;
}

.footer-brand {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
}

.footer-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li::marker {
  content: none;
}

.footer-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease, transform 0.15s ease;
}

.footer-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.footer-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.footer-copy {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ページ個別の `a { ... }` よりフッターリンクを優先 */
body .site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

body .site-footer .footer-nav a:visited {
  color: rgba(255, 255, 255, 0.95);
}

body .site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.72);
}

/* 駅ちか! 公式ページの埋め込み（iframe＝他サイトの画面枠。店舗ID 19772） */
.ekichika-embed-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 12px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 0;
}
.ekichika-embed {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: top;
  background: #f8fafc;
}
.ekichika-embed--compact {
  height: 720px;
  min-height: 420px;
}
.ekichika-embed--girls {
  height: 1500px;
  min-height: 800px;
}
.ekichika-embed--schedule {
  height: 2000px;
  min-height: 900px;
}
.ekichika-embed-fallback {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0 0 24px;
}
.ekichika-embed-fallback a {
  color: var(--color-sub);
}

@media (max-width: 520px) {
  .footer-inner {
    padding: 26px 14px 32px;
  }

  .footer-brand {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav a {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

/* スマホ：右下固定の電話・LINE（PCでは非表示） */
@media (max-width: 767px) {
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  #wg-float-actions {
    display: flex;
  }
}

#wg-float-actions {
  display: none;
  position: fixed;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  z-index: 9990;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

#wg-float-actions a {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 12px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#wg-float-actions a span.wg-float-icon {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 2px;
}

#wg-float-actions .wg-float-tel {
  background: var(--color-sub);
}

#wg-float-actions .wg-float-tel:active {
  filter: brightness(1.08);
}

#wg-float-actions .wg-float-line-mark {
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 800;
}

#wg-float-actions .wg-float-line {
  background: #06c755;
}

#wg-float-actions .wg-float-line:active {
  filter: brightness(1.08);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}
