@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}




.episode-nav {
  position: sticky;
  top: 0;
  background: #111;
  padding: 10px;
  text-align: center;
  z-index: 999;
  font-weight: bold;
}
.episode-nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}
.episode-nav a:hover {
  text-decoration: underline;
}



/* ゲームブック用のフッター分岐ナビゲーション */
.footer-nav {
  background: #1f1f1f;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #444;
  margin-top: 2em;
  margin-bottom: 2em;
}
.footer-nav a {
  display: inline-block;
  margin: 10px;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 200px;
}
.footer-nav a:hover {
  background-color: #e60033;
  border-color: #e60033;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230,0,51,0.4);
}
