@charset "UTF-8";

/* ==========================================
   汎用ページのヘッダー（常に上部固定・白背景・緑色指定）
========================================== */
.main-header {
  position: fixed;
  top: 0; left: 0;
  padding: 0.5rem 0.5rem; 
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .main-header { padding: 0.4rem 0rem; }
}

/* ヘッダー内部の要素の色指定（緑） */
.main-header .logo-text { opacity: 1; visibility: visible; color: var(--primary-color); }
.main-header .logo-text svg { fill: var(--primary-color) !important; }
.main-header .ticker-swiper a { color: var(--text-color); }
.main-header .header-icon-link { color: var(--primary-color); }
.main-header .menu-toggle-btn { color: var(--primary-color); }

/* ==========================================
   メインコンテンツ（固定ヘッダー分の余白確保）
========================================== */
.main-content {
  padding-top: 80px;
  min-height: calc(100vh - 300px);
  background-color: #fff;
}

.breadcrumb {
  margin-top: 100px;
  padding-left: 10px;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 0.5;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb + .breadcrumb {
  margin-top: 20px;
}
.breadcrumb span i {
  display: block;
  margin-top: 1px;
}
.breadcrumb a {
  text-decoration: none;
  color: #333;
}
.current a {
  pointer-events: none;
}
@media (min-width: 768px) {
  .breadcrumb {
    margin: 80px auto 0;
    padding-left: 0;
  }
}

i[class^="fi-rr-"]:before, i[class*=" fi-rr-"]:before, span[class^="fi-rr-"]:before, span[class*="fi-rr-"]:before {
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fi-rr-angle-small-right:before {
  content: "\e07e";
}
