@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){
  /*必要ならばここにコードを書く*/
}

/*
----------------------------------------------------
関連記事ボックス用カスタムCSS
カテゴリごとに色分け（季節イベント＝オレンジ、芸能ニュース＝ピンク、新スポット＝ブルー）
----------------------------------------------------
*/

/* 共通デザイン */
.related-box {
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.related-box .related-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.related-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.related-box ul li {
  margin: 8px 0;
}

.related-box ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.related-box ul li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* 季節イベント（オレンジ系） */
.related-box.event {
  background: #fff7ef;
  border-left: 6px solid #ff9800;
}

.related-box.event .related-title {
  color: #e65100;
}

/* 芸能ニュース（ピンク系） */
.related-box.entertainment {
  background: #fff0f5;
  border-left: 6px solid #e91e63;
}

.related-box.entertainment .related-title {
  color: #ad1457;
}

/* 新スポット・施設（ブルー系） */
.related-box.spot {
  background: #f0f8ff;
  border-left: 6px solid #2196f3;
}

.related-box.spot .related-title {
  color: #0d47a1;
}