/* CSS読み込み完了後にふわっと表示 */
body {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
body.loaded {
    visibility: visible;
    opacity: 1;
}

/* スライダー用ローディングアニメーションのスタイル */
.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: none; /* 最初は非表示 */
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.loading {
  border: 5px solid rgba(0, 181, 205, 0.3);
  border-radius: 50%;
  border-top: 5px solid #00b5cd;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 画像コンテナのスタイル */
.eyecatch {
  position: relative;
  min-height: 30px; /* 小さな画像のためのスペース確保 */
}

/* ローディングアニメーションのスタイル */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 181, 205, 0.3);
  border-radius: 50%;
  border-top: 3px solid #00b5cd;
  animation: spinCenter 1s linear infinite;
  display: none; /* 初期状態は非表示 */
}

@keyframes spinCenter {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* パンくずリスト */
.breadcrumb-nav {
  padding: 0 15px;
  margin-top: 70px;
}
.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 8px 0;
  margin-bottom: 0;
  font-size: 12px;
}
.breadcrumb-nav .breadcrumb li {
  display: inline;
}
.breadcrumb-nav .breadcrumb li + li:before {
  content: ">";
  padding: 0 5px;
  color: #999;
}
.breadcrumb-nav .breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb-nav .breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-nav .breadcrumb .active {
  color: #333;
}
@media (max-width: 767px) {
  .breadcrumb-nav {
    margin-top: 60px;
  }
}
