@charset "UTF-8";

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

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

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

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

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


/* 2026-09-23 サイドバー無しで本文を中央寄せ・読みやすい幅に（Claude Code） */
.no-sidebar .content .main {
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  float: none !important;
}

/* 2026-09-23 メニューのAdAnimeSTUDIO導線だけボタン化（Claude Code） */
.menu-adanime .caption-wrap {
  background: #2b1d60;
  border-radius: 999px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  transition: background .2s;
}
.menu-adanime .item-label {
  color: #fff !important;
  font-weight: 700;
}
.menu-adanime > a:hover .caption-wrap {
  background: #6940df;
}
