@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* アフィリエイトボタンのCSS */
/* ボタンのコンテナ */
.download-button-container {
  width: 100%;
  text-align: center;   /* ボタンを中央に配置 */
  margin-top: 20px;
}

/* ボタンデザイン */
.download-btn {
  display: inline-block;   /* インラインブロックにして中央寄せを有効に */
  padding: 14px 30px;      /* ボタンの大きさ */
  font-size: 18px;         /* フォントサイズ */
  background-color: #f90;  /* FANZAっぽいオレンジ色 */
  color: #fff;             /* 文字色を白に */
  text-decoration: none;   /* 下線なし */
  border-radius: 5px;      /* 角丸 */
  transition: background-color 0.3s ease;  /* ホバーアニメーション */
  cursor: pointer;         /* マウスカーソルをポインターに */
}

.download-btn:hover {
  background-color: #e68a00;  /* ホバー時の色 */
}

/* スマホなど小さい画面用 */
@media (max-width: 768px) {
  .download-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}


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

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

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




.tag-sort-buttons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.tag-sort-buttons .current {
  color: #fff;
  background: #0073aa;
  padding: 4px 8px;
  border-radius: 4px;
}

