@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){
  /*必要ならばここにコードを書く*/
}
/* サイトタイトル大きく */
.site-name-text-link {
  font-size: 80px;
  font-weight: bold;
}

/* メニューボタン化 */
#navi .menu-item a {
  border: 2px solid #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s;
}

/* メニューホバー時 */
#navi .menu-item a:hover {
  background-color: #ffffff;
  color: #990000;
}
/* ニュースティッカー */
.news-ticker {
  background: #1a0000;
  border-top: 1px solid #cc0000;
  border-bottom: 1px solid #cc0000;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.news-ticker span {
  display: inline-block;
  animation: ticker 20s linear infinite;
  color: #ff3333;
  font-size: 13px;
  font-weight: bold;
}
@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* 年齢確認ポップアップ */
.age-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-box {
  background: #1a0000;
  border: 2px solid #cc0000;
  padding: 40px 30px;
  text-align: center;
  max-width: 320px;
  width: 90%;
}
.age-box h2 {
  color: #ff3333;
  font-size: 20px;
  margin-bottom: 15px;
}
.age-box p {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.age-btn-yes {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin: 5px;
  border-radius: 4px;
  display: block;
  width: 100%;
}
.age-btn-no {
  background: #333;
  color: #aaa;
  border: none;
  padding: 10px 30px;
  font-size: 13px;
  cursor: pointer;
  margin: 5px;
  border-radius: 4px;
  display: block;
  width: 100%;
}


#header {
  background-image: url('https://m-girl-guide.com/wp-content/uploads/2026/02/名称未設定のデザイン_20260215_135515_0000.jpg');
  background-size: cover;
  background-position: center;
  background-color: #000000;
}

.site-name-text-link {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px #cc0000;
}
/* 記事内のSNSシェアボタンを非表示 */
.sns-share {
    display: none !important;
}