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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
#main, #sidebar {
	background-color:#353035
}
/*
 * コンテンツ上部
 */
/* 注意事項 */
.note-area {
	margin:auto;
	width:fit-content;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
}

.note-text {
	text-align: left;
	font-size:11px;
	padding: 10px
}

/* アフィリエイト広告を利用しています */
.pr-area {
	border-radius:5px;
	width:fit-content;
	margin:auto;
	font-size:12px;
}
.pr-text {
	font-size: 12px;
	padding: 0 10px;
}



/* index */

/* リストタイトル領域 */
.list-title {
	background-color: #FF3399;
	/* background-color: red; */
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
	font-size: 24px;
	color: #FFF
}

/* リストタイトルの左右バー */
.list-title-in:before, .list-title-in:after {
	display: none;
}

/* 記事カード */
.ect-vertical-card .entry-card-wrap {
    background-color: #fcedf5;
    border-radius: 4px;
}

/* 記事カードの画像のカテゴリーを非表示 */
.cat-label {
	display: none;
}
/* 記事カードのタグの親カテゴリー非表示 */
.cat-link{
	display: none;
}

.list-more-button {
	color:#fff
}

/* article */ 
/*
.article h2 {
	background-color:var(--cocoon-xx-thin-color);
	padding: 0;
	font-size: 18px;
}*/

.article h3 {
	border-left: solid 5px #F7C8CE;
	background-color:#FF3399;
	border-bottom: none;
	border-top: none;
	border-right: none;
}

.list-more-button:hover{
	background-color:#FF3399;
	color:#FFF;
	font-weight:bold;
	border: none;
}

.blogcard {
	background-color:#F7C8CE;
	color:#353035;
}

/* その他　*/
.list-new-entries{
	display:none;
}

.list-category-22 .list-more-button-wrap {
	display:none;
}

.sitemap h2 {
	background-color:#FF3399;
}


/************************************
** ゲーム用リンクボタン
************************************/
/* プラットフォーム比較 2カラムラッパー */
.store-compare-container {
  display: flex;
  gap: 16px;
  margin: 2em 0;
  box-sizing: border-box;
}

/* 各プラットフォームのカード枠 */
.store-col {
  flex: 1;
  background: #fdfdfd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* DLsite枠のデザイン（上部ボーダー） */
.store-col.dlsite-box {
  border: 1px solid #d0e2ff;
  border-top: 4px solid #005bac;
}

/* FANZA枠のデザイン（上部ボーダー） */
.store-col.fanza-box {
  border: 1px solid #ffd6cc;
  border-top: 4px solid #e60000;
}

/* ストア名ヘッダー */
.store-header {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e0e0e0;
}
.dlsite-box .store-header { color: #005bac; }
.fanza-box .store-header { color: #e60000; }

/* ボタングループ（縦並び） */
.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ボタン共通設定 */
/* ボタン共通設定（右端の矢印対応版） */
.store-buttons a {
  position: relative;          /* 矢印を右端に固定するための基準 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 36px 9px 16px; /* 右側に矢印用の余白（36px）を確保 */
  font-size: 13px;
  font-weight: bold;
  text-decoration: none !important;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  line-height: 1.2;
}

/* ボタン右端の矢印「＞」 */
.store-buttons a::after {
  content: "›";               /* 半角の山括弧や不等号より綺麗な引用符シェブロン */
  position: absolute;
  right: 14px;                 /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央揃え */
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;                /* 主張しすぎないよう少し透過 */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ホバーしたときに矢印が少し右に動くアニメーション */
.store-buttons a:hover::after {
  transform: translateY(-50%) translateX(3px);
  opacity: 1;
}

.store-buttons a:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* DLsiteのボタン配色 */
.dlsite-box a.btn-pc {
  background: #005bac;
  color: #fff !important;
}
.dlsite-box a.btn-mobile {
  background: #eef5fc;
  color: #005bac !important;
  border: 1px solid #b3d1ff;
}
.dlsite-box a.btn-mobile:hover {
  background: #dbebff;
}

/* FANZAのボタン配色 */
.fanza-box a.btn-pc {
  background: #e60000;
  color: #fff !important;
}
.fanza-box a.btn-mobile {
  background: #fff3f0;
  color: #e60000 !important;
  border: 1px solid #ffb8a8;
}
.fanza-box a.btn-mobile:hover {
  background: #ffe3dc;
}

/* 非活性ボタンのスタイル */
.store-buttons a.is-disabled {
  background: #e9ecef !important;
  color: #8c959f !important;
  border: 1px solid #d0d7de !important;
  cursor: not-allowed;
  pointer-events: none;       /* クリック操作を無効化 */
  box-shadow: none !important;
  transform: none !important;
}

/* 非活性時は矢印を非表示 */
.store-buttons a.is-disabled::after {
  display: none !important;
}

/* スマホ閲覧時（横幅680px以下）は縦積みに切り替え */
@media (max-width: 680px) {
  .store-compare-container {
    flex-direction: column;
    gap: 14px;
  }
}


/* マンガ用 2連購入ボタングループ（ゲーム用デザイン共通版） */
.manga-buy-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 1.8em 0;
  box-sizing: border-box;
}

/* ボタン共通設定 */
.manga-buy-group a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 220px;
  max-width: 320px;
  min-height: 46px;
  padding: 10px 36px 10px 16px; /* 右側に矢印用の余白 */
  font-size: 14px;
  font-weight: bold;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.manga-buy-group a:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* 右端の矢印「›」 */
.manga-buy-group a::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.manga-buy-group a:hover::after {
  transform: translateY(-50%) translateX(3px);
  opacity: 1;
}

/* DLsite用（ゲームのPC版と同じソリッドブルー） */
.manga-buy-group .btn-manga-dlsite a {
  background: #005bac;
  box-shadow: 0 2px 6px rgba(0, 91, 172, 0.25);
}

/* FANZA用（ゲームのPC版と同じソリッドレッド） */
.manga-buy-group .btn-manga-fanza a {
  background: #e60000;
  box-shadow: 0 2px 6px rgba(230, 0, 0, 0.25);
}

/* 非活性ボタンスタイル（配信なし時） */
.manga-buy-group a.is-disabled {
  background: #e9ecef !important;
  color: #8c959f !important;
  border: 1px solid #d0d7de !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}

.manga-buy-group a.is-disabled::after {
  display: none !important;
}

/* スマホ表示時（横幅600px以下） */
@media (max-width: 600px) {
  .manga-buy-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .manga-buy-group a {
    width: 100%;
    max-width: 100%;
  }
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
	#navi-menu-content {
		background-color:#353035;
	}
	
	.menu-item>a{
		background-color:#FF3399;
		margin-top:10px;
		border-radius:10px;
		font-weight:bold;
	}
	
	.fa-close {
		color:#fff;
	}
}

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

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