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

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


a{
	text-decoration: none;
}


/* サイトタイトル */
.site-name-text-link {
  color: #B22222;
}

.site-name-text-link :hover {
  color: #00a3af;
}


body {
  background-color: #191919;
  color: #181818;
}

.main{
	background-color: #FFF0F5;
}

.no-scrollable-main .main {
  height: 100%;
  color: #181818;
}

/* 個別タイトル */
.article h1{
	padding-left:18px;
	border-bottom: transparent;
	border-left: 8px solid #b22222;
}

.article h3 {
  border-left: 7px solid var(--cocoon-middle-thickness-color);
  border-right: 1px solid var(--cocoon-thin-color);
  border-top: 1px solid var(--cocoon-thin-color);
  border-bottom: 1px solid var(--cocoon-thin-color);
  font-size: 18px;
  padding: 12px 20px 8px;
  font-weight: normal;
}

/* -------------------------------------------
/ 『文字色』
------------------------------------------- */
.tagline,
.rating-number {
  color: #181818;
}

 /* -------------------------------------------
/ 『グローバルメニュー』
------------------------------------------- */
#navi .navi-in > .menu-header .sub-menu {
  background-color: #a22041;
}

.header-container {
  box-shadow: 0 6px 5px -3px rgba(0, 0, 0, 0.24), 0 6px 10px -3px rgba(0, 0, 0, 0.18);
}

#navi .navi-in {
  background-color: #a22041;
margin:0;
padding:0;
  height: 44px;
}

.header-container.fixed-header {
  background-color: #a22041;
}

#navi .navi-in a {
margin:0;
padding:0;
  height: 44px;
  color: #FFFFFF;
}

#navi .navi-in a:hover {
  background-color: #00a3af;
margin:0;
padding:0;
  height: 44px;
}

/* -------------------------------------------
/ 『見出し（h3）』
------------------------------------------- */
.article h3 {
  position: relative;
  padding-left: 24px;
  background-color: #FFFFFF;
  color: #181818;
  border-radius: 4px;
  border: 2px solid #f4b3c2;
  box-shadow: 0 2px 0 #FFF0f5;
}

.article h3::after {
  position: absolute;
  top: 0.5em;
  left: 0.3em;
  content: "";
  width: 6px;
  height: -webkit-calc(100% - 1em);
  height: calc(100% - 1.1em);
  background-color: #00a3af;
  border-radius: 2px;
  box-shadow: 2px 2px 0 #a22041;
}


/* -------------------------------------------
/ 『エントリーカード』
------------------------------------------- */
.a-wrap {
  background-color: #FFF0F5;
  color: #181818;
}

/* 奇数番目のカード */
.entry-card-wrap.a-wrap:nth-child(odd) {
  position: relative;
  z-index: 0;
}
.entry-card-wrap.a-wrap:nth-child(odd):before {
  content: "";
  color: #181818;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.4s;
  background-image: linear-gradient(135deg, #FFF0F5, #FFF0F5 70%, #ef9aac 70%, #ef9aac 100%, transparent 0);
  border: 2px outset #332f2f;
}

.entry-card-wrap.a-wrap:nth-child(odd):after {
  content: "";
  color: #181818;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background-color: #FFF0F5;
  border: 2px outset #00a3af;
}

/* 偶数番目のカード */
.entry-card-wrap.a-wrap:nth-child(even) {
  position: relative;
  z-index: 0;
}

.entry-card-wrap.a-wrap:nth-child(even):before {
  content: "";
  color: #181818;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.4s;
  background-image: linear-gradient(45deg, #ef9aac, #ef9aac 50%, #FFF0F5 50%, #FFF0F5 100%, transparent 0);
  border: 2px outset #332f2f;
}

.entry-card-wrap.a-wrap:nth-child(even):after {
  content: "";
  color: #181818;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background-color: #FFF0F5;
  border: 2px outset #00a3af;
}

.entry-card-wrap.a-wrap:hover:before {
  opacity: 0;
}

.a-wrap:hover {
  background: none;
  color: #181818;
}

.entry-card-thumb {
  width: min(44%, 120px);
}

.entry-card-content {
  margin: 0;
}

/* フッターグラデーション */
.footer {
  background-image: repeating-linear-gradient(135deg, #00BFFF, rgba(0, 146, 80, 0.2) 20%, rgba(132, 23, 47, 0.2) 20%, rgba(132, 23, 47, 0.2) 80%, rgba(0, 146, 80, 0.2) 80%, #00BFFF);
}


/* -------------------------------------------
/ 『サイドバーの見出し（h3）』
------------------------------------------- */
.sidebar h2,
.sidebar h3 {
  margin-top: 8px;
  background: none;
  position: relative;
  padding: 11px 0 2px 38px;
	color:#FFFFFF;
}

.sidebar h2::before,
.sidebar h3::before {
  position: absolute;
  top: 0.3em;
  left: 0.7em;
  content: "";
  width: 12px;
  height: 22px;
  background-color: #84172f;
  border: 1px outset #817b7b;
}

.sidebar h2::after,
.sidebar h3::after {
  position: absolute;
  top: 1.2em;
  left: 0.3em;
  content: "";
  width: 12px;
  height: 22px;
  background-color: #00a3af;
  border: 1px outset #817b7b;
}

/* -------------------------------------------
/ 『ウィジェット：アーカイブ／カテゴリー』
------------------------------------------- */
.widget_archive ul li a {
  padding: 5px 4px 5px 0px;

}

.widget_categories ul li a,
.widget_block .wp-block-categories li a {
  padding: 5px 4px 5px 22px;
  position: relative;
	color:#FFFFFF;
}

.cat-item .cf::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 4px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #dc143c;
  border: 1px outset #8a7c7c;
}

.children .cat-item .cf::after {
  background-color: #00a3af;
}

.widget_recent_entries ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_rss ul li a:hover,
.widget_categories ul li a:hover,
.widget_block .wp-block-archives li a:hover,
.widget_block .wp-block-categories li a:hover,
.widget_block .wp-block-latest-posts li a:hover {
  background-color: #a22041;
  color: #FFFFFF;
}

/* -------------------------------------------
/ 『ブログカード』
------------------------------------------- */
.blogcard-label {
  background-color: #0b683e;
  color: #fff;
}

.entry-card-snippet,
.related-entry-card-snippet,
.blogcard-snippet {
  border-top: 1px solid #a22041;
  padding-top: 18px;
}

.a-wrap .blogcard,
.related-entry-card-wrap,
.pager-post-navi a.prev-post,
.pager-post-navi a.next-post,
.pager-post-navi.post-navi-square a {
  background-color: #FFF0F5;
  border: 2px outset #444;
  color: #181818;
  transition: all 0.4s;
}

.a-wrap .blogcard:hover,
.related-entry-card-wrap:hover,
.pager-post-navi a.prev-post:hover,
.pager-post-navi a.next-post:hover,
.pager-post-navi.post-navi-square a:hover {
  background-color: #f6bfbc;
  border: 2px outset #aaaaaa;
}

/* -------------------------------------------
/ 『カテゴリーなどの数』
------------------------------------------- */
.widget_recent_entries ul li a .post-count,
.widget_categories ul li a .post-count,
.widget_archive ul li a .post-count,
.widget_pages ul li a .post-count,
.widget_meta ul li a .post-count,
.widget_rss ul li a .post-count,
.widget_nav_menu ul li a .post-count {
  font-style: normal;
  font-size: 15px;
  color: #FFFFFF;
}

/* -------------------------------------------
/ 『クラウドタグ／パンくずリスト』
------------------------------------------- */
.tagcloud a {
  border: 1px solid #aaaaaa;
  color: #ccc;
}

.tagcloud a:hover {
  color: #333;
}

.tagcloud a .tag-caption:hover {
  color: #333;
}

.breadcrumb a {
  color: #181818;
}


/************************************
** アピールエリア
************************************/
.no-appeal-area .appeal {
  display: none;
}

.appeal-in {
  display: flex;
  min-height: 200px;
  padding: 8px 5%;
}

.appeal-content {
  max-width: 740px;
  background-color: rgba(255, 255, 255, 0.85);
  margin: auto;
  padding: 0.8em 2em;
  text-align: center;
  border-radius: var(--cocoon-basic-border-radius);
  display: block;
	font-size:15px;
}

.appeal-content a {
	text-decoration: none;
}

.appeal-title {
  font-size: 0.1em;
  font-weight: bold;
}

.appeal-message {
  margin-bottom: 0.2em;
}

.appeal-button {
  color: var(--cocoon-white-color);
  text-decoration: none;
  background-color: #c9171e;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  padding: 9px 42px;
  margin: 0 8px;
  border-radius: var(--cocoon-basic-border-radius);
}
.appeal-button:hover {
  color: var(--cocoon-white-color);
  opacity: 0.7;
}

/* -------------------------------------------
/ 『ページネーション』
------------------------------------------- */
/*  『次のページ』ボタンは隠す */
.pagination-next-link,
.pager-prev-next a {
  display: none;
}

.page-numbers {
  position: relative;
  text-decoration: none;
  outline: none;
  color: #FFFFFF;
  transition: all 0.3s;
  box-sizing: border-box;
  background-image: linear-gradient(135deg, #a22041, #0c0c0c 100%, transparent 0);
  border: 1px outset #f4b3c2;
  border-radius: 99px;
}

.page-numbers::before,
.page-numbers::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  content: "";
  transition: all 0.3s;
}

.page-numbers::before {
  border-top: 1px solid #00a0af;
  border-bottom: 1px solid #00a0af;
  transform: scale(0, 1);
}

.page-numbers::after {
  border-right: 1px solid #00a0af;
  border-left: 1px solid #00a0af;
  transform: scale(1, 0);
}

.pagination a:hover,
.comment-page-link a:hover {
  border-radius: 99px;
  color: #00a0af;
}

.pagination a:hover::after,
.pagination a:hover::before,
.comment-page-link a:hover::after,
.comment-page-link a:hover::before {
  border-radius: 99px;
  color: #00a0af;
  transform: scale(1);
}

.pagination .current,
.comment-page-link .current {
  color: #00a0af;
  background: none;
  border: 1px outset #f4b3c2;
  background-image: linear-gradient(135deg, #a22041, #0c0c0c 100%, transparent 0);
  border-radius: 99px;
}

.prev.page-numbers {
  border-radius: 99px;
}

/* -------------------------------------------
/ 『入力ボックス』
------------------------------------------- */
.search-edit,
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
textarea,
select {
  background-color: #FFFFFF;
}

/* -------------------------------------------
/ 『引用』
------------------------------------------- */
blockquote {
  padding: 10px 10px 10px 46px;
  box-sizing: border-box;
  font-style: normal;
  background: #e0e0e0;
  border-radius: 4px;
  background-color: #FFFFFF;
  border: 0;
  border: 2px solid #00a3af;
}

blockquote:before {
  display: inline-block;
  top: 0px;
  left: 0px;
  content: "“";
  font-family: serif;
  font-size: 550%;
  line-height: 1;
  z-index: 2;
  font-weight: 400;
  color: #a22041;
}

blockquote:after {
  content: "";
  left: 0;
  top: 0;
  border-width: 0 0 60px 60px;
  border-style: solid;
  border-color: transparent #f4b3c2;
  bottom: auto;
}

blockquote p {
  margin: 14px 0;
  z-index: 3;
  color: #000000;
}



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

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

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