/* ====== Departures Common (Header / Footer / CTA) ====== */
:root {
  --gold: #b8965a;
  --gold-light: #d4b87c;
  --gold-pale: rgba(184, 150, 90, .12);
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
}

/* Base */
.dpt-front, .dpt-page { font-weight: 600; }

/* Hide ALL SWELL default chrome (we use custom ones) */
.dpt-front #header,
.dpt-front .l-header,
.dpt-front .l-fixHeader,
.dpt-front #fix_header,
.dpt-front .l-footer,
.dpt-front #footer,
.dpt-front #top_title_area,
.dpt-front .l-topTitleArea,
.dpt-front .p-breadcrumb,
.dpt-front #sp_menu,
.dpt-front .p-spMenu,
.dpt-page #header,
.dpt-page .l-header,
.dpt-page .l-fixHeader,
.dpt-page #fix_header,
.dpt-page .l-footer,
.dpt-page #footer,
.dpt-page #top_title_area,
.dpt-page .l-topTitleArea,
.dpt-page .p-breadcrumb,
.dpt-page #sp_menu,
.dpt-page .p-spMenu {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* SWELL MV hidden (using custom slider) */
.dpt-front .p-mainVisual,
.dpt-front #main_visual {
  display: none !important;
}

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 246, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.site-header__inner {
  max-width: var(--container_size, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
}
.site-header__logo img {
  height: 48px;
  width: auto;
  display: block;
}
.site-header__sitename {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--color_main);
  letter-spacing: .04em;
}
.footer-col__sitename {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav a {
  color: var(--color_main);
  text-decoration: none;
  font-size: .85em;
  letter-spacing: .08em;
  font-weight: 500;
  transition: opacity .25s;
  position: relative;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.site-header__nav a:hover::after { transform: scaleX(1); }
.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__tel-label {
  font-size: .7em;
  color: #8a7a80;
  letter-spacing: .06em;
  text-align: right;
  line-height: 1;
  margin-bottom: 4px;
}
.site-header__tel {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--color_main);
  letter-spacing: .06em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header__tel i { font-size: .75em; }

/* ====== CTA BAR ====== */
.cta-bar {
  background: linear-gradient(135deg, #4a2a40 0%, #5a3450 50%, #4a2a40 100%);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  position: relative;
}
.cta-bar::before,
.cta-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold-light);
  opacity: .4;
}
.cta-bar::before { top: 0; }
.cta-bar::after { bottom: 0; }
.cta-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-bar__text {
  font-size: .95em;
  font-weight: 400;
  letter-spacing: .12em;
  opacity: .85;
}
.cta-bar__phone {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.cta-bar__phone a { color: #fff; text-decoration: none; }
.cta-bar__phone i { font-size: .7em; }
.cta-bar__note {
  font-size: .75em;
  opacity: .6;
  margin-top: 4px;
  letter-spacing: .08em;
}
.cta-bar__btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 14px 44px;
  border: 1px solid var(--gold-light);
  text-decoration: none;
  transition: all .35s ease;
  font-size: .9em;
  letter-spacing: .1em;
}
.cta-bar__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ====== FOOTER ====== */
.dpt-footer {
  background: #2d1a26;
  color: rgba(255,255,255,.7);
  padding: 72px 24px 0;
}
.footer-inner {
  max-width: var(--container_size, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col__title {
  font-size: .75em;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-col__logo {
  max-width: 180px;
  margin-bottom: 16px;
}
.footer-col__address {
  font-size: .82em;
  line-height: 2;
  opacity: .6;
}
.footer-col__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col__nav li { margin-bottom: 10px; }
.footer-col__nav a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .85em;
  transition: color .25s;
  letter-spacing: .04em;
}
.footer-col__nav a:hover { color: var(--gold-light); }
.footer-col__tel,
.footer-col__tel a,
.dpt-footer .footer-col__tel,
.dpt-footer a {
  color: #fff !important;
  text-decoration: none;
}
.footer-col__tel {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .06em;
}
.footer-col__tel-note {
  font-size: .78em;
  opacity: .5;
  letter-spacing: .06em;
}
.footer-bottom {
  text-align: center;
  padding: 24px;
  font-size: .75em;
  opacity: .35;
  letter-spacing: .06em;
}

/* ====== HAMBURGER BUTTON ====== */
.site-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  color: var(--color_main, #5a3450);
}
.burger-icon { display: block; width: 24px; height: 24px; }
.burger-icon--close { display: none; }
.site-header__burger.is-open .burger-icon--open { display: none; }
.site-header__burger.is-open .burger-icon--close { display: block; }

/* SP menu close button (fallback) */
.sp-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color_main, #5a3450);
  z-index: 10;
}
.sp-menu__close svg { display: block; width: 24px; height: 24px; }

/* ====== SP MENU OVERLAY ====== */
.sp-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.sp-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.sp-menu__body {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.sp-menu.is-open .sp-menu__body {
  transform: translateX(0);
}
.sp-menu__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.sp-menu__nav li {
  border-bottom: 1px solid var(--color_border, #e0d8d4);
}
.sp-menu__nav a {
  display: block;
  padding: 16px 0;
  color: var(--color_main);
  text-decoration: none;
  font-size: .9em;
  font-weight: 500;
  letter-spacing: .08em;
}
.sp-menu__tel {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--color_border, #e0d8d4);
}
.sp-menu__tel-num {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--color_main);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
a.sp-menu__tel-num { color: var(--color_main); }
.sp-menu__tel-note {
  font-size: .7em;
  color: #8a7a80;
  margin-top: 4px;
}

/* SP-only line break */
.sp-only { display: none; }

/* ====== RESPONSIVE (Common) ====== */
@media (max-width: 959px) {
  .sp-only { display: inline; }
  .site-header__nav { display: none; }
  .site-header__right { display: none; }
  .site-header__burger { display: block; }
  .sp-menu { display: block; }
  .site-header__inner { height: 60px; }
  .site-header__logo img { height: 36px; }
  .cta-bar__inner { flex-direction: column; gap: 20px; }
  .cta-bar__phone { font-size: 1.8em; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
