.blog .ast-post-grid article,
.archive .ast-post-grid article,
.blog .ast-article-post,
.archive .ast-article-post {
  background-color: #ffffff; /* 白背景 */
  padding: 15px;
  margin-bottom: 35px;
  border-radius: 4px;
}


/* ヘッダー全体の背景を白に */
.ast-primary-header-bar {
  background-color: #f0f0f0 !important;
}

/* ロゴやサイト名の文字色を黒に */
.ast-site-identity .site-title, 
.ast-site-identity .site-title a {
  color: #222222 !important;
}

/* メニュー項目の文字色を黒に */
.main-header-menu > .menu-item > a {
  color: #222222 !important;
}

.character-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.character-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper全体のスタイル調整 */
.swiper {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
}

/* スライド自体の配置 */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スライド画像サイズ調整（PCで半分サイズに） */
.swiper-slide img {
  width: auto;
  max-width: 45%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* スマホ用：少し大きく */
@media (max-width: 768px) {
  .swiper-slide img {
    max-width: 70%;
  }
}

.character-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 30px 0;
  margin: 0;
}

.character-menu li img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.character-menu li img:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 25px rgba(0, 0, 0, 0.2);
}

.responsive-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: #FF7043; /* 背景：ディープサンセットオレンジ */
  color: #000000; /* 文字：黒 */
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  animation: glow 3s infinite ease-in-out; /* ゆっくり光るアニメーション付き */
}

/* PC版（右下ボタン：やや小さめ版） */
@media screen and (min-width: 768px) {
  .responsive-button {
    width: auto;
    padding: 20px 40px; /* 少しだけ小さめに */
    border-radius: 9999px;
    left: auto;
    right: 25px; /* 端から少し余裕を持たせる */
    bottom: 25px;
    font-size: 20px; /* フォントも微調整してスッキリ感を出す */
    font-weight: bold;
  }
}
/* ゆっくり光の強弱アニメーション */
@keyframes glow {
  0% {
    box-shadow: 0px 0px 8px rgba(255, 112, 67, 0.6);
  }
  50% {
    box-shadow: 0px 0px 20px rgba(255, 112, 67, 0.9);
  }
  100% {
    box-shadow: 0px 0px 8px rgba(255, 112, 67, 0.6);
  }
}

.image-swap {
  position: relative;
  width: 300px;
  border: 2px solid transparent; /* ←ここをtransparentにするだけ！ */
  border-radius: 12px;
  overflow: hidden;
}

