.elementor-7882 .elementor-element.elementor-element-95757da > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body:not(.rtl) .elementor-7882 .elementor-element.elementor-element-95757da{left:0px;}body.rtl .elementor-7882 .elementor-element.elementor-element-95757da{right:0px;}.elementor-7882 .elementor-element.elementor-element-95757da{top:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){body:not(.rtl) .elementor-7882 .elementor-element.elementor-element-95757da{left:-1px;}body.rtl .elementor-7882 .elementor-element.elementor-element-95757da{right:-1px;}.elementor-7882 .elementor-element.elementor-element-95757da{top:0px;}}/* Start custom CSS for html, class: .elementor-element-95757da *//*************************************************************
  ✅ 0) i18n（PC/SP共通：ヘッダー/フッター/SPメニュー全部）
*************************************************************/
/* まず全部隠す */
.bt-i18n { display: none; }

/* 日本語 */
html[lang="ja"] .bt-i18n.bt-ja,
html[lang^="ja"] .bt-i18n.bt-ja { display: inline; }

/* 英語 */
html[lang="en"] .bt-i18n.bt-en,
html[lang^="en"] .bt-i18n.bt-en { display: inline; }

/* 中国語（zh / zh-CN / zh-TWなど） */
html[lang="zh"] .bt-i18n.bt-zh,
html[lang^="zh"] .bt-i18n.bt-zh { display: inline; }

/* 韓国語（ko / ko-KRなど） */
html[lang="ko"] .bt-i18n.bt-ko,
html[lang^="ko"] .bt-i18n.bt-ko { display: inline; }

/* お知らせ：日本語以外で非表示（ヘッダー/SPスライド共通） */
html[lang^="en"] .bt-news,
html[lang^="zh"] .bt-news,
html[lang^="ko"] .bt-news {
  display: none !important;
}

/* 運行会社一覧：トルツメ */
.bt-hide-all {
  display: none !important;
}


/*************************************************************
  🔷 ① サイト全体フッター（PC／SP共通）
*************************************************************/
.bt-footer {
  background-color: #002662;
  color: #fff;
  width: 100vw;                    /* 画面端まで */
  position: relative;
  left: 50%;                       /* 横中央起点 */
  transform: translateX(-50%);     /* フル幅安定方式（余白バグ防止） */
  margin: 0;
  padding: 28px 12px 22px;
  font-size: 13px;
  box-sizing: border-box;
}

.bt-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bt-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.bt-footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.2s ease;
}
.bt-footer-links a:hover {
  opacity: 0.65;
}

.bt-footer-copy {
  text-align: center;
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* 🔽 スマホでは縦並び */
@media (max-width: 768px) {
  .bt-footer {
    padding: 24px 10px 18px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .bt-footer-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .bt-footer-links a {
    font-size: 14px;
  }
  .bt-footer-copy {
    font-size: 11px;
  }
}


/*************************************************************
  🔷 ② 固定SPメニュー（スマホのみ下部追従）
*************************************************************/
.sp-menu-toggle {
  display: none; /* チェックボックス非表示 */
}

@media (max-width: 768px) {
  .sp-fixed-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #002662;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 65px;
    padding-bottom: env(safe-area-inset-bottom);
    align-items: center;
    text-align: center;
    z-index: 999999;
  }

  .sp-fixed-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
  }

  .sp-fixed-menu .icon {
    height: 30px;
    margin-bottom: 3px;
  }

  /* ハンバーガーだけ小さく */
  .menu-toggle-btn .icon {
    height: 22px !important;
  }

  /* (当日) 小文字化 */
  .sp-fixed-menu .menu-item .small-text {
    font-size: 0.7em !important;
    font-weight: 600;
    display: inline-block;
    transform: translateY(-1px);
  }

  /* 🔥 追従フッターにコンテンツが潜らないように */
  body {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }
}

/* PCでは追従フッター非表示 */
@media (min-width: 769px) {
  .sp-fixed-menu {
    display: none !important;
  }
}


/*************************************************************
  🔷 ③ 下からスライドアップのボトムメニュー
*************************************************************/
.sp-bottom-menu-panel {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  max-height: 85vh;
  transition: bottom .35s ease-in-out;
  z-index: 999998;
}

/* 白い板（透過防止） */
.sp-bottom-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  z-index: -1;
}

/* チェックで出現 */
.sp-menu-toggle:checked ~ .sp-bottom-menu-panel {
  bottom: calc(65px + env(safe-area-inset-bottom));
}

/* 背景半透明 */
.sp-bottom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: -1;
}
.sp-menu-toggle:checked ~ .sp-bottom-menu-panel .sp-bottom-overlay {
  display: block;
}

/* メニュー本体 */
.sp-bottom-menu-inner {
  padding: 28px 22px;
  background: white;
}

.sp-bottom-menu-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-bottom-menu-inner ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #002662 !important;
  transition: transform 0.12s ease, background 0.12s ease;
}

.sp-bottom-menu-inner ul li a img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

/* ×閉じるボタン */
.sp-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #002662;
  cursor: pointer;
  z-index: 1001;
}
.sp-close-btn:hover {
  opacity: 0.7;
}

/* 押し込まれアニメーション */
.sp-bottom-menu-inner ul li a:active {
  background: #f2f6ff;
  transform: scale(0.96);
}
.sp-bottom-menu-inner ul li a:hover {
  background: #f7faff;
}


/*************************************************************
  🔧 横スクロール予防（100vw使用時の安全策）
*************************************************************/
html, body {
  overflow-x: hidden;
}

/* =========================================
   ✅ フッター：言語別リンク（hrefも言語で切替）
========================================= */
.bt-footer-links .bt-footer-item .bt-footer-link{
  display: none; /* まず全部隠す */
}

/* 現在言語だけ表示 */
html[lang="ja"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-ja,
html[lang^="ja"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-ja { display: inline; }

html[lang="en"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-en,
html[lang^="en"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-en { display: inline; }

html[lang="zh"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-zh,
html[lang^="zh"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-zh { display: inline; }

html[lang="ko"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-ko,
html[lang^="ko"] .bt-footer-links .bt-footer-item .bt-footer-link.bt-ko { display: inline; }

/* =========================================
   ✅ SP固定フッター：言語別リンク表示切替
========================================= */
.sp-fixed-menu .bt-sp-link{ display:none !important; }

html[lang="ja"] .sp-fixed-menu .bt-sp-link.bt-ja,
html[lang^="ja"] .sp-fixed-menu .bt-sp-link.bt-ja{ display:flex !important; }

html[lang="en"] .sp-fixed-menu .bt-sp-link.bt-en,
html[lang^="en"] .sp-fixed-menu .bt-sp-link.bt-en{ display:flex !important; }

html[lang="zh"] .sp-fixed-menu .bt-sp-link.bt-zh,
html[lang^="zh"] .sp-fixed-menu .bt-sp-link.bt-zh{ display:flex !important; }

html[lang="ko"] .sp-fixed-menu .bt-sp-link.bt-ko,
html[lang^="ko"] .sp-fixed-menu .bt-sp-link.bt-ko{ display:flex !important; }


/* =========================================
   ✅ SPボトムメニュー：言語別リンク表示切替
========================================= */
.sp-bottom-menu-inner .bt-sp-panel-link{ display:none !important; }

html[lang="ja"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-ja,
html[lang^="ja"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-ja{ display:flex !important; }

html[lang="en"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-en,
html[lang^="en"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-en{ display:flex !important; }

html[lang="zh"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-zh,
html[lang^="zh"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-zh{ display:flex !important; }

html[lang="ko"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-ko,
html[lang^="ko"] .sp-bottom-menu-inner .bt-sp-panel-link.bt-ko{ display:flex !important; }/* End custom CSS */