body {
  font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  /* または、日本語フォントを優先する場合 */
  /* font-family: '游ゴシック体', 'Yu Gothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif; */
  color: #333;
}
html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yu Gothic", "Meiryo", sans-serif !important;
  color: #333;
}

p {
  line-height: 1.8;
}

/* =========================================
  ヘッダー
========================================= */

.header-container {
  margin-top: 10px;
  max-width: none;
  padding-right: 0;
}

.container-fluid.bg-white.sticky-top {
  background: transparent !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1100;
}

.container-fluid.bg-white.sticky-top.scrolled {
  background: rgba(255,255,255,0.95) !important; /* スクロール後背景 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ナビリンク */
.navbar .nav-link {
  color: #fff !important; /* 初期白文字 */
  transition: color 0.3s ease;
}

.header-scrolled .navbar-nav .nav-link {
  color: #333 !important; /* スクロール後は黒 */
}

.navbar-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 200px;
  right: 90px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}


@media (max-width: 767px) {
  .header-container {
    margin-top: 0;
    max-width: none;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}


/* =========================================
  ヘッダー共通
========================================= */
.is-transparent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: transparent; /* 初期透過 */
  transition: transform .3s ease, background .3s ease;
  height: 95px;
  transform: translateY(0);
}

/* 下スクロール時：隠す */
.header-hidden {
  transform: translateY(-100%);
}

/* 再表示時：スライドイン */
.header-show {
  transform: translateY(0);
}

/* ナビリンク色 */
.is-transparent .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}
.header-scrolled .nav-link {
  color: #333 !important;
}

/* 初期ロゴ */
.is-transparent .siteHeader__brand img {
  width: 130px;
  height: auto;
  transition: all 0.3s ease;
}

/* スクロール後ロゴ（白背景用） */
.header-scrolled .siteHeader__brand img {
  width: 90px;
  height: auto;
}


/* =========================================
  SPヘッダー
========================================= */
@media (max-width: 767px) {
  .is-transparent {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    /* box-shadow: 0 2px 10px rgba(0,0,0,.1); */
    transition: transform .3s ease, background .3s ease;
  }

  .is-transparent::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 70px;
    height: 1px;
    background: rgba(255,255,255,0.35);
  }

  .navbar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
  }

  /* SPロゴ */
  .logo-pc { display: none !important; }
  .logo-sp { height: 32px; width: auto; }
  .logo-normal { display: block !important; }
  .logo-scroll { display: none !important; }

  /* メニューオープン時のロゴ切替もJSで制御 */
}

/* スクロール後背景白＋影（既存機能） */
.header-scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ナビリンク色 */
.is-transparent .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

.header-scrolled .nav-link {
  color: #333;
}



/* =========================================
  SP：初期ロゴ
========================================= */
@media (max-width: 767px) {
  .is-transparent .siteHeader__brand img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-1px);
  }
  .header-scrolled .siteHeader__brand img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-1px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .is-transparent .siteHeader__brand img {
    width: 80px;
    height: auto;
    transition: all 0.3s ease;
  }
}



/* =========================================================
  右上メニューボタン
========================================================= */
/* ---------- メニューボタン ---------- */
.menu-btn {
  width: 75px;
  height: 75px;
  background: #cc9900;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative !important;
  z-index: 20000 !important;
  gap: 15px;
}

/* --- アイコン本体 --- */
.icon {
  width: 20px;
  height: 20px;
  position: relative;
}

/* --- 6つの四角ドット --- */
.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* 上段 */
    linear-gradient(white, white) 0 10% / 20% 20%,
    linear-gradient(white, white) 50% 10% / 20% 20%,
    linear-gradient(white, white) 100% 10% / 20% 20%,
    /* 下段 */
    linear-gradient(white, white) 0 70% / 20% 20%,
    linear-gradient(white, white) 50% 70% / 20% 20%,
    linear-gradient(white, white) 100% 70% / 20% 20%;
  background-repeat: no-repeat;
  transition: opacity .25s ease;
}

/* --- × に使う線 --- */
.line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  opacity: 0;
  transform-origin: center center;
  transition: opacity .25s ease, transform .25s ease;
}
.line1 { transform: translate(-50%, -50%) rotate(45deg); }
.line2 { transform: translate(-50%, -50%) rotate(-45deg); }

/* --- OPEN 時の切り替え --- */
.menu-btn.open .icon::before {
  opacity: 0;  /* ドット消える */
}

.menu-btn.open .line1,
.menu-btn.open .line2 {
  opacity: 1;  /* × の線が出る */
}

/* --- ラベル切り替え --- */
.label {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  letter-spacing: .02em;
  font-size: .8em;
}

.menu-btn.open .label::after {
  content: "CLOSE";
}

.menu-btn.open .label {
  visibility: hidden;
  position: relative;
}

.menu-btn.open .label::after {
  visibility: visible;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.border-start {
  border-left: none !important;
}

/* MENUボタン hover */
.menu-btn {
  transition: opacity 0.2s ease;
}

.menu-btn:hover {
  opacity: 0.8; /* ← 少しだけ透過 */
}

@media (max-width: 767px) {
  .menu-btn:hover {
    opacity: 1;
  }
}

/* =========================================
  SP：右上メニューボタン
========================================= */
@media (max-width: 767px) {

  #pcMenuBtn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #d1a200;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.15); */
    gap: 5px;
  }

}


/* =====================
  ロゴ初期状態（全デバイス）
===================== */
.logo-pc,
.logo-sp {
  display: none;
}

/* =====================
  PC（変更なし）
===================== */
@media (min-width: 768px) {
  .logo-pc {
    display: block;
  }
}

/* =====================
  SPロゴ完全制御
===================== */
@media (max-width: 767px) {

  /* PCロゴは出さない */
  .logo-pc {
    display: none !important;
  }

  /* SPロゴ共通 */
  .logo-sp {
    height: 32px;
    width: auto;
  }

  /* ===== 通常時 ===== */
  .logo-normal {
    display: block !important;
  }
  .logo-scroll {
    display: none !important;
  }

  /* ===== スクロール時 ===== */
  .header-scrolled .logo-normal {
    display: none !important;
  }
  .header-scrolled .logo-scroll {
    display: block !important;
  }

  /* ===== MENUオープン時 ===== */
  body.menu-open .logo-normal {
    display: none !important;
  }
  body.menu-open .logo-scroll {
    display: block !important;
  }
}




/* =========================================================
  Fullscreen Menu
========================================================= */

/* ------------------------------
  メニュー本体
------------------------------ */
.overlayNav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  inset: 0;
  z-index: 1055; /* Bootstrap modal(1050)より上 */
  background: #cc9900;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition:
      opacity .35s ease,
      visibility .35s ease;
}

/* JS付与クラス対応 */
.overlayNav.open,
.overlayNav.show {
  opacity: 1;
  visibility: visible;
}

/* フルスクリーンメニュー表示中は固定 */
#overlayNav.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden; /* 内部スクロール防止 */
  height: 560px;
}

.overlayNav-inner {
  padding: 95px 60px 0;
  height: auto;
  overflow-y: auto;
}

/* 3カラム */
.overlayNav-columns {
  display: flex;
  gap: 10px;
  max-width: 1300px;
  margin: 50px auto;
}


/* ------------------------------
  リストリセット
------------------------------ */
.overlayNav-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  /* カラム分割 */
  column-fill: balance;
}

/* ------------------------------
  li 共通
------------------------------ */
.overlayNav-list li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: .15rem;
}

/* ------------------------------
  リンク
------------------------------ */
.overlayNav-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  padding: .35rem 0;
  font-size: 16px;
  text-decoration: none;
  transition:
      color .2s ease,
      transform .2s ease;
}

.overlayNav-list a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* タブレット用 */
@media (min-width: 768px) and (max-width: 991.98px) {

  .overlayNav-list a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    padding: .35rem 0;
    font-size: 14px;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
  }

}


/* =========================================
  SP：リストリセット
========================================= */
@media (max-width: 767px) {

  .overlayNav-list {
    width: 100%;
  }
  .overlayNav-list a {
    font-size: 15px;
}

}





/* ------------------------------
  スクリーン内　大見出し
------------------------------ */
/* 見出し */
.menu-subheading,
.menu-heading {
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  letter-spacing: .12em;
  pointer-events: none;
  font-size: 20px;
}

/* 見出し間の余白 */
.menu-subheading:not(:first-child),
.menu-heading {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .menu-heading,
  .menu-subheading {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu-subheading,
  .menu-heading {
    font-weight: 700;
    margin: 0 0 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    letter-spacing: .12em;
    pointer-events: none;
    font-size: 16px;
  }
}

/* ------------------------------
  オーバーレイ
------------------------------ */
.overlayNav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,.4);

  display: none;
  opacity: 0;
  visibility: hidden;

  transition:
      opacity .35s ease,
      visibility .35s ease;
}

/* JS付与クラス対応 */
.overlayNav-overlay.active,
.overlayNav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------
  body スクロールロック
------------------------------ */
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ===============================
  フルスクリーンメニューだけスクロール可
=============================== */
#overlayNav {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
}



/* =========================================================
  Responsive（Bootstrap基準）
========================================================= */

/* md以上：2カラム */
@media (min-width: 768px) {

  .overlayNav-list {
    column-count: 1;
    column-gap: 4rem;
  }

}

/* lg以上：余白・文字サイズUP */
@media (min-width: 992px) {

  .overlayNav-inner {
    padding: 5rem 3rem;
  }

}

/* タブレット用 */
@media (min-width: 768px) and (max-width: 991.98px) {

.overlayNav-inner {
  padding: 80px 20px 0;
  height: auto;
  overflow-y: auto;
}

}

/* =========================================================
  Bootstrap 干渉対策
========================================================= */
.overlayNav a:focus {
  outline: none;
  box-shadow: none;
}


/* =====================================================
  SP：フルスクリーンメニューをスクロール可
===================================================== */
@media (max-width: 767px) {

  .overlayNav {
    position: fixed;
    inset: 0;
    overflow: hidden; /* デフォルトは封じる */
  }

  #overlayNav.open {
    overflow-y: auto;   /* ← ここが必須 */
    -webkit-overflow-scrolling: touch;
    height: 80%;
  }

  .overlayNav-inner {
    padding: 80px 20px 40px;
  }

  /* hoverは最小限 */
  .overlayNav-list a:hover {
    opacity: 0.7;
  }

/* SP：縦並び */
  .overlayNav-inner {
    padding: 40px 20px;
    margin-top: 10px;
  }

  .overlayNav-columns {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
  }

}




/* =========================================
  SP：最下部固定 ＋ 高さを自動にして揃える
========================================= */
@media (max-width: 767px) {

  .mv-side {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0 0; /* ← 上に×ボタン分の余白 */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    z-index: 9999;
    position: fixed;
    position: relative;
    top: auto !important;
    transform: none !important;
  }

  .mv-box {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .mv-box-inner {
    padding: 6px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mv-title {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    min-height: calc(1.3em * 2); /* 2行分を確保 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mv-tag {
    font-size: 12px;
    margin-bottom: 0;
  }

  .mv-arrow {
    margin-top: 0;
    height: 25px;
  }

  /* ×ボタン：青ボタンの右上に配置 */
  .mv-close-all {
    position: absolute;
    top: 6px;
    left: 6px;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10000;

    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
  }
}



/* =========================================
  メインビジュアル　PC SP 出し分け
========================================= */
.img-sp {
  display: none;
}

.img-tb {
  display: none;
}

.img-pro {
  display: none;
}

@media (max-width: 767px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: block;
  }
  .img-pro{
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: none;
  }
  .img-tb {
    display: block;
  }
  .img-pro {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: none;
  }
  .img-tb {
    display: none;
  }
  .img-pro {
    display: block;
  }
}
















/********** bootstrap.min.css 上書き **********/

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: inherit;
}






/********** CSS **********/
/* :root {
  --primary: #88B44E;
  --secondary: #FB9F38;
  --light: #F5F8F2;
  --dark: #252C30;
} */

.back_to_top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}





/*** Navbar ***/

.navbar .siteHeader__brand {
  position: absolute;
  padding: 0;
  width: 130px;
  height: 105px;
  top: 5px;
  left: 0;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  /* font-weight: 600; */
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .navbar .siteHeader__brand {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;   /* ← 縦中央 */
    margin: 0;
    padding: 0 0 0 12px;
    position: absolute;
    top: 0;
  }

  .navbar .navbar-nav .nav-link  {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 75px;
    border-top: 1px solid #eee;
    margin-top: 0;
  }
}



/* ===============================
  SPでもヘッダーを上に隠す
=============================== */
@media (max-width: 767px) {
  .header-hidden {
    transform: translateY(-100%) !important;
  }
}



/* ===============================
  HEADER SCROLL CONTROL（PC / SP）
=============================== */

/* 初期：透明 */
.is-transparent {
  background: transparent;
  box-shadow: none;
  transition: background .3s, box-shadow .3s, transform .3s;
}

/* 白ヘッダー */
.is-transparent.header-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* 上に消える */
.header-hidden {
  transform: translateY(-100%);
}

/* 出現 */
.header-show {
  transform: translateY(0);
}



/* =========================================================
  TOPへ戻るボタン
========================================================= */
.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.back_to_top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  background: #7a5200;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  border : none;
}

.back_to_top:hover {
  background: #9c6b00; /* footer色に近づける */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #9c6b00;
    border-color: #9c6b00;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #7a5200;
    border-color: #7a5200;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.15);
}