/*
Theme Name: L'oiseau Bleu Blog
Theme URI: https://loiseaubleu.jp/blog/
Author: L'oiseau Bleu
Author URI: https://loiseaubleu.jp/
Description: 大阪・堺市のプライベートサロン「L'oiseau Bleu（ロアゾブルー）」公式ブログ用クラシックテーマ。本体サイト（https://loiseaubleu.jp）のデザイントーンに合わせたレスポンシブ1カラム構成。
Version: 1.0.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loiseaubleu
*/

/* ====================================================================
   基本設定（既存サイトのトーン）
   - 見出し: 'Shippori Mincho', serif / #1e3a5f
   - 本文: メイリオ系 Sans-Serif / #1d2326
   - リンク: #1e3a5f (hover #2c4f7c)
   - 罫線: #c9d4e2
==================================================================== */

:root {
  --lb-navy: #1e3a5f;
  --lb-navy-hover: #2c4f7c;
  --lb-text: #1d2326;
  --lb-line: #c9d4e2;
  --lb-bg: #ffffff;
  --lb-bg-soft: #f6f8fb;
  --lb-serif: 'Shippori Mincho', "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --lb-sans: "メイリオ", "Meiryo", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  /* 既存サイトのフッター帯色（work/assets/img/files/footer_bg.png 実測 rgb(196,207,219)） */
  --lb-footer-bg: #c4cfdb;
  /* 既存サイトのグローバルナビ hover 緑（work/assets/css/dear-ct/override.css .gnavi16 hover ::after 準拠） */
  --lb-nav-hover-green: #779a82;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* 既存サイト html 背景（work/assets/css/files/files_pc.css:11 background:url(html_bg.jpg) / 実測ベージュ系 #ededed 近似） */
  background: #ffffff url("/assets/img/files/html_bg.jpg");
}

body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--lb-text);
  font-family: var(--lb-sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lb-serif);
  color: var(--lb-navy);
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: var(--lb-navy);
  text-decoration: underline;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

a:hover {
  color: var(--lb-navy-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* ====================================================================
   レイアウト
==================================================================== */

.site-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  /* 既存中ページはテクスチャ背景に本文直置き（白カードなし・#outer_block等すべてtransparent）のため透過 */
  background: transparent;
}

.site-main {
  padding: 40px 0 70px;
}

/* ====================================================================
   ヘッダー（PC: 2段構成。本物中ページ #branding_box に一致）
   出典: work/menu/index.html #branding_box（実測 高さ150px・上段80px＋下段70px）
         work/assets/css/files/files_pc.css #branding_box, #header_information(80px),
           .main_header img(270×160 absolute), #access(70px 右寄せ padding-right:110px),
           .fixed_btn1(top:50px right:110px), #fixed_btn_voice/#fixed_btn_is
         work/menu/index.html 先頭インライン<style> #fixed_btn_shop（本体サイトにSHOPボタンのCSSが無くページ内联のみのため）
         work/assets/css/dear-ct/override.css .gnavi16(528行目〜)
==================================================================== */

#branding_box {
  position: relative;
  width: 100%;
  height: 150px;
  padding: 0;
  z-index: 500;
  background: #ffffff;
  overflow: visible;
  border-bottom: 1px solid var(--lb-line);
}

/* 上段: ロゴ（左上・270×160。箱からはみ出るのは本物どおり） */
.site-header__logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.site-header__logo a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.site-header__logo img {
  width: 270px;
  height: 160px;
}

/* 上段: サイドボタン群（VOICE / SHOP / Instagram。本物 .fixed_btn1 相当） */
.site-header__side-btns {
  position: absolute;
  top: 50px;
  right: 110px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.site-header__btn {
  margin-right: 13px;
}

.site-header__btn--insta {
  margin-right: 0;
}

.site-header__btn a {
  display: block;
}

.site-header__btn--voice a {
  width: 100px;
  height: 25px;
  background: url("/assets/img/files/btn_voice.png") no-repeat left top;
}

.site-header__btn--voice a:hover {
  background-position: left bottom;
}

.site-header__btn--shop a {
  width: 100px;
  height: 25px;
  line-height: 23px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #1e3a5f;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #1e3a5f;
  text-decoration: none;
  font-family: "Cinzel", "Times New Roman", serif;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.site-header__btn--shop a:hover {
  background: #1e3a5f;
  color: #fff;
}

.site-header__btn--insta a img {
  width: 25px;
  height: 25px;
  display: block;
}

.site-header__btn--insta a:hover {
  opacity: 0.8;
}

/* 下段: グローバルナビバー（全幅・右寄せ・padding-right:110px。本物 #access 相当）
   スプライト topnavi.png（work/assets/css/files/files_pc.css:210-226 準拠。590×140px、
   上段=通常/英字caps濃色、下段=hover/日本語緑。hover時 background-position-y: bottom）。
   日本語テキストは screen-reader-text で隠したまま（画像がラベルを表示）。
   ブログ項目のみスプライトに無いため override.css .gnavi16（535-567行目）と同一の疑似要素方式。 */
.global-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding-right: 110px;
  box-sizing: border-box;
}

.global-nav__toggle {
  display: none;
}

.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.global-nav__list li {
  margin: 0;
  height: 70px;
}

.global-nav__list a {
  position: relative;
  display: block;
  height: 70px;
  line-height: 70px;
  padding: 0;
  text-decoration: none;
  background: url("/assets/img/files/topnavi.png") no-repeat left top;
  box-sizing: border-box;
  transition: none;
}

.global-nav__list a:hover {
  background-position-y: bottom;
}

/* スプライト実寸幅と background-position-x（files_pc.css:216-225） */
.global-nav__list .gnavi-home a { width: 100px; background-position-x: left; }
.global-nav__list .gnavi-concept a { width: 140px; background-position-x: -100px; }
.global-nav__list .gnavi-menu a { width: 110px; background-position-x: -240px; }
.global-nav__list .gnavi-access a { width: 125px; background-position-x: -350px; }
.global-nav__list .gnavi-reserve a { width: 115px; background-position-x: right; }

/* ブログ項目（slug=blog）: スプライトに無いため override.css .gnavi16 と完全同一の疑似要素方式。
   本物中ページはカレントページでも特別ハイライト無し（英字capsのまま）。ホバー時のみ緑・日本語に変わる。
   「常時緑固定」はユーザー指摘により廃止し、他項目と同じ通常/hoverの2段構成にする。 */
.global-nav__list .gnavi-blog a {
  background: none;
  width: 100px;
  position: relative;
  border-left: 1px solid #d8d8d8;
  box-sizing: border-box;
}

.global-nav__list .gnavi-blog a::after {
  content: "BLOG";
  position: absolute;
  inset: 0;
  text-indent: 0.2em;
  text-align: center;
  line-height: 70px;
  font-family: Futura, "Avenir Next", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #1d2326;
}

.global-nav__list .gnavi-blog a:hover {
  background: none;
}

.global-nav__list .gnavi-blog a:hover::after {
  content: "ブログ";
  text-indent: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #779a82;
}

/* ====================================================================
   ヒーロー画像（中ページの #main_teaser 相当・全幅バナー）
   ヘッダー直下に全幅で1枚。site-container の外＝フルブリード。
==================================================================== */

.blog-hero {
  width: 100%;
}

.blog-hero img {
  display: block;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  height: clamp(360px, 34vw, 520px);
  object-fit: cover;
}

/* ====================================================================
   ページタイトル（下層見出し = headline_title.type-A 相当）
   出典: work/assets/css/dear-ct/override.css .headline_title(色 #1e3a5f)
         フォント: 'Shippori Mincho' / 28px / 中央揃え / bold / margin-bottom 25px
==================================================================== */

.page-title {
  margin: 0 0 25px;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--lb-navy);
}

/* ====================================================================
   記事一覧
==================================================================== */

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-list__item {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--lb-line);
}

.post-list__item:last-child {
  border-bottom: none;
}

.post-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-list__thumb {
  margin: 0 0 16px;
  line-height: 0;
}

.post-list__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #6b7684;
  margin: 0 0 8px;
}

.post-meta__date {
  font-family: var(--lb-serif);
  letter-spacing: 0.1em;
  color: var(--lb-navy);
}

.post-meta__cat {
  display: inline-block;
  padding: 1px 12px;
  border: 1px solid var(--lb-navy);
  color: var(--lb-navy);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: #ffffff;
}

a.post-meta__cat:hover {
  background: var(--lb-navy);
  color: #ffffff;
}

.post-list__title {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.post-list__link:hover .post-list__title {
  color: var(--lb-navy-hover);
}

.post-list__excerpt {
  margin: 0;
  font-size: 15px;
  color: var(--lb-text);
}

.post-list__more {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--lb-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--lb-navy);
}

/* ページネーション */
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination .page-numbers {
  display: inline-block;
  min-width: 40px;
  padding: 8px 10px;
  border: 1px solid var(--lb-line);
  font-family: var(--lb-serif);
  font-size: 14px;
  color: var(--lb-navy);
  text-decoration: none;
  background: #ffffff;
}

.pagination .page-numbers.current {
  background: var(--lb-navy);
  border-color: var(--lb-navy);
  color: #ffffff;
}

.pagination a.page-numbers:hover {
  background: var(--lb-bg-soft);
  color: var(--lb-navy-hover);
}

/* ====================================================================
   記事詳細
==================================================================== */

.entry-header {
  margin: 0 0 30px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--lb-line);
}

.entry-header .post-meta {
  margin-bottom: 12px;
}

.entry-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.08em;
}

.entry-thumb {
  margin: 0 0 30px;
  line-height: 0;
  text-align: center;
}

.entry-thumb img {
  max-width: 100%;
  height: auto;
}

.entry-content {
  font-size: 16px;
}

.entry-content p {
  margin: 0 0 1.6em;
}

.entry-content h2 {
  margin: 2.2em 0 1em;
  padding: 0.5em 0.8em;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--lb-navy);
  border-left: 4px solid var(--lb-navy);
  border-bottom: 1px solid var(--lb-line);
  background: var(--lb-bg-soft);
}

.entry-content h3 {
  margin: 2em 0 0.9em;
  padding: 0 0 0.4em;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--lb-navy);
  border-bottom: 2px solid var(--lb-line);
  position: relative;
}

.entry-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: 2px;
  background: var(--lb-navy);
}

.entry-content h4 {
  margin: 1.8em 0 0.8em;
  font-size: 17px;
  color: var(--lb-navy);
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content blockquote {
  margin: 0 0 1.6em;
  padding: 1em 1.4em;
  border-left: 3px solid var(--lb-line);
  background: var(--lb-bg-soft);
  color: #4a5560;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.6em;
}

.entry-content th,
.entry-content td {
  padding: 0.8em 1em;
  border: 1px solid var(--lb-line);
  text-align: left;
}

.entry-content th {
  background: var(--lb-bg-soft);
  font-family: var(--lb-serif);
  font-weight: 500;
  color: var(--lb-navy);
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--lb-line);
  margin: 2.5em 0;
}

/* WP標準クラス */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: #6b7684;
  text-align: center;
  margin-top: 0.4em;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* 前後記事ナビ */
.post-navigation {
  margin: 50px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--lb-line);
  border-bottom: 1px solid var(--lb-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.post-navigation__prev,
.post-navigation__next {
  max-width: 48%;
}

.post-navigation__next {
  margin-left: auto;
  text-align: right;
}

.post-navigation a {
  text-decoration: none;
  font-family: var(--lb-serif);
  letter-spacing: 0.05em;
}

.post-navigation a:hover {
  text-decoration: underline;
}

/* 一覧へ戻る */
.back-to-list {
  margin: 36px 0 0;
  text-align: center;
}

.back-to-list a {
  display: inline-block;
  min-width: 220px;
  padding: 12px 30px;
  border: 1px solid var(--lb-navy);
  color: var(--lb-navy);
  background: #ffffff;
  font-family: var(--lb-serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.back-to-list a:hover {
  background: var(--lb-navy);
  color: #ffffff;
}

/* ====================================================================
   検索・404
==================================================================== */

.search-form {
  display: flex;
  gap: 8px;
  margin: 0 0 40px;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--lb-line);
  font-family: var(--lb-sans);
  font-size: 15px;
}

.search-form input[type="submit"] {
  padding: 10px 24px;
  background: var(--lb-navy);
  color: #ffffff;
  border: 1px solid var(--lb-navy);
  font-family: var(--lb-serif);
  letter-spacing: 0.15em;
  cursor: pointer;
}

.search-form input[type="submit"]:hover {
  background: var(--lb-navy-hover);
  border-color: var(--lb-navy-hover);
}

.no-results {
  text-align: center;
  padding: 40px 0;
}

/* ====================================================================
   フッター（PC）
   出典: work/concept/index.html #footer_block（構成: ロゴ→サロン情報→ナビ→コピーライト）
         work/assets/css/files/files_pc.css #footer_block(405-407行目)
           → background: url(footer_bg.png) no-repeat center top; height: 600px;
         footer_bg.png は 2000×600（実測 rgb(196,207,219) ≒ #c4cfdb）で
         ロゴ（中央上部 y≈30〜215）と破線（y≈505）が背景画像に焼き込み済み。
         コンテンツ配置: サロン情報 = margin-top 260px（files_pc.css:450 #footer_information .entry-post）
                         ナビ = top 390px（files_pc.css:425 #footer_sitemap_block）
                         copyright = 焼き込み破線（y≈505）の下 / 文字色 #5a6b73（files_pc.css:474）
==================================================================== */

#footer_block {
  margin-top: 60px;
  background: #c4cfdb url("/assets/img/files/footer_bg.png") no-repeat center top;
  height: 600px;
  padding: 0;
}

#footer_box {
  position: relative;
  max-width: 960px;
  height: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-info {
  position: absolute;
  top: 260px;
  left: 0;
  right: 0;
  margin: 0;
  line-height: 2.1;
  color: #3a4a57;
  font-size: 14px;
}

.footer-info p {
  margin: 0;
}

.footer-nav {
  position: absolute;
  top: 390px;
  left: 0;
  right: 0;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  display: block;
  padding: 4px 14px;
  font-family: var(--lb-serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #3a4a57;
  text-decoration: none;
  border-right: 1px solid #3a4a57;
}

.footer-nav li:last-child a {
  border-right: none;
}

.footer-nav a:hover,
.footer-nav .current a {
  color: var(--lb-navy-hover);
}

/* PCでは破線は footer_bg.png（y≈505）に焼き込み済みのため CSS破線なし */
#copyright {
  display: block;
  position: absolute;
  top: 520px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #5a6b73;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 40px;
}

/* ====================================================================
   レスポンシブ（〜768px）
==================================================================== */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  /* ヘッダー（SP）
     出典: work/concept/index.mobile.html #float_header #btn_menu（ハンバーガー）/ #header #logoarea
           work/assets/css/files/files_mobile.css #float_header #btn_menu(298行目〜) 幅10vw
           アイコン色: work/assets/img/files/sp_btn_menu_off.png 実測 #1d2326 */

  #branding_box {
    height: auto;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .site-header__logo {
    position: static;
    width: auto;
    height: auto;
  }

  .site-header__logo img {
    width: 130px;
    height: 54px;
  }

  /* サイドボタン群（VOICE/SHOP/Instagram）はSPでは非表示（現行のハンバーガードロワーに統一） */
  .site-header__side-btns {
    display: none;
  }

  /* ハンバーガー */
  .global-nav__toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .global-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #1d2326;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .global-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .global-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .global-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: static;
    height: auto;
    display: block;
    padding-right: 0;
    box-sizing: content-box;
  }

  .global-nav__list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
    flex-direction: column;
    background: var(--lb-footer-bg);
    box-shadow: 0 6px 12px rgba(30, 58, 95, 0.15);
  }

  .global-nav__list.is-open {
    display: flex;
  }

  .global-nav__list li {
    height: auto;
  }

  /* SPはスプライト背景を解除し、日本語実テキストのドロワー表示に戻す */
  .global-nav__list a,
  .global-nav__list .gnavi-home a,
  .global-nav__list .gnavi-concept a,
  .global-nav__list .gnavi-menu a,
  .global-nav__list .gnavi-access a,
  .global-nav__list .gnavi-blog a,
  .global-nav__list .gnavi-reserve a {
    position: static;
    width: auto;
    height: auto;
    line-height: normal;
    padding: 14px 20px;
    background: none;
    border-left: none;
    border-bottom: 1px solid rgba(29, 35, 38, 0.15);
    font-family: var(--lb-sans);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #3a4a57;
    text-align: left;
  }

  /* SPは::afterのスプライト/疑似ラベルを止め、日本語実テキスト（screen-reader-text）を通常表示に戻す */
  .global-nav__list a::after,
  .global-nav__list a:hover::after,
  .global-nav__list .gnavi-blog a::after,
  .global-nav__list .current a::after {
    content: none;
  }

  .global-nav__list a .screen-reader-text {
    position: static !important;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
  }

  .global-nav__list li:last-child a {
    border-bottom: none;
  }

  .global-nav__list a:hover,
  .global-nav__list .current a {
    color: var(--lb-navy-hover);
    font-family: var(--lb-sans);
    font-weight: normal;
    box-shadow: none;
  }

  .blog-hero img {
    height: clamp(160px, 46vw, 240px);
  }

  .site-container {
    padding: 0 5%;
  }

  .site-main {
    padding: 30px 0 50px;
  }

  .page-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .entry-title {
    font-size: 21px;
  }

  .entry-content h2 {
    font-size: 19px;
  }

  .entry-content h3 {
    font-size: 17px;
  }

  .post-list__title {
    font-size: 18px;
  }

  .post-navigation {
    flex-direction: column;
    gap: 10px;
  }

  .post-navigation__prev,
  .post-navigation__next {
    max-width: 100%;
  }

  .post-navigation__next {
    margin-left: 0;
    text-align: left;
  }

  /* フッター（SP）: 背景画像を使わずベタ#c4cfdb＋CSS破線＋スタック表示（現行SP実装を維持） */
  #footer_block {
    margin-top: 40px;
    background: var(--lb-footer-bg);
    height: auto;
    padding: 40px 5% 0;
  }

  #footer_box {
    position: static;
    height: auto;
  }

  .footer-info {
    position: static;
    font-size: 13px;
    margin: 0 0 30px;
  }

  .footer-nav {
    position: static;
  }

  .footer-nav ul {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .footer-nav a {
    border-right: none;
    border-bottom: 1px solid rgba(58, 74, 87, 0.3);
    padding: 10px 14px;
  }

  .footer-nav li:last-child a {
    border-bottom: none;
  }

  #copyright {
    position: static;
    padding: 20px 10px 30px;
    border-top: 1px dashed #8fa0b3;
    line-height: 1.8;
  }
}
