/* ▼ Movable Type のテーマCSS（必須） */
@import url(https://www.kinkodo.jp/cgi-bin/mt/mt-static/support/theme_static/rainier/css/base.css);
@import url(https://www.kinkodo.jp/cgi-bin/mt/mt-static/support/theme_static/rainier/css/rainier-white/screen.css);

/* ▼ 記事本文 */
.entry-content {
  font-size: 1.14285714rem;
}

/* ▼ レスポンシブ動画 */
.responsive_video {
  position: relative;
  padding-bottom: 56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ▼ ヘッダー画像の高さ調整 */
#header #header-inner #header-content {
  max-height: 200px;
  height: auto;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #header #header-inner #header-content {
    max-height: 100px;
  }
}

/* ▼ ナビゲーション＆その親の背景を白に固定（グレー帯対策） */
#header,
#header-inner,
#header-content,
.global-nav {
  background-color: #fff !important;
}

/* ▼ グローバルナビゲーション（PC時） */
.global-nav {
  color: #000;
  padding: 4px 10px;  /* ← 上下を詰める */
  font-family: sans-serif;
  position: relative;
  z-index: 10;
}

/* ▼ ナビ内コンテナ */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

/* ▼ ハンバーガーメニュー（三本線） */
.menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 1001;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* ▼ MENU テキスト */
.nav-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/* ▼ メニューリスト（PC時） */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;  /* ← 隙間を詰める */
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.menu-list li {
  list-style: none;
}
.menu-list li a {
  color: #000;
  text-decoration: none;
  padding: 6px 10px;  /* ← 高さを詰める */
  display: block;
  transition: background 0.3s;
  position: relative;
  z-index: 11;
  pointer-events: auto;
}
.menu-list li a:hover {
  background: #f0f0f0;
}

/* ▼ スマホ表示（768px以下） */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
    margin: 10px 10px;
  }
  .menu-list {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 10px 0;
  }
  .menu-list.active {
    display: flex;
  }
  .menu-list li {
    border-bottom: 1px solid #eee;
    text-align: center;
    background-color: #fff;
  }
  .menu-list li a {
    padding: 12px 0;
    color: #000;
  }
}

/* ▼ パンくずリスト（schema対応） */
.breadcrumb {
  font-size: 0.85rem;
  color: #666;
  margin: 1em 0;
  line-height: 1.4;
  word-break: break-word;
}

.breadcrumb a {
  color: #0055aa;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 6px;
  color: #999;
}

/* ▼ パンくず スマホ対応 */
@media screen and (max-width: 600px) {
  .breadcrumb {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}

