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

.header-in {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
  
.logo-text {
    padding: 0;
    text-align: left;
    position:absolute;
    left: 40px; /
}
  
.site-name-text {
    display: none;
}
  
.navi-in .menu-header .item-label{
    font-size: 15px;
	font-weight: bold;
}

/* Cocoon グローバルナビのボタンに丸みのある枠線を付ける */
.menu-header .menu-item a {
  border: 4px double #ffffff; /* 線の太さ・種類・色 */
  border-radius: 15px;       /* 角の丸み（数値を大きくすると丸くなります） */
  padding: 8px 16px;         /* ボタン内の余白 */
}

/* ▼ サブメニュー（第2階層）の背景＆文字色（PCヘッダー #navi） */
#navi ul.sub-menu,
#navi div.sub-menu,
#header #navi .sub-menu {
  background-color: #ffffff !important; /* ここが背景色 */
}
 
#navi .sub-menu a {
  color: #000000 !important; /* ここが文字色 */
}
 
/* ▼ ホバー時 */
#navi .sub-menu li:hover > a,
#navi .sub-menu a:hover,
#navi .sub-menu a:focus {
  background-color: #ffffff !important; /* ホバー時背景色 */
  color: #000000 !important;             /* ホバー時文字色 */
}

/*
Recent Posts
* What's New Generator 公開停止に伴い、WordPress 新着情報を表示するショートコード(Xakuro)を追加
*/
dl.recent-posts {
    margin: .1rem 0;
    padding: 0;
    display: block;
}
dl.recent-posts dd,
dl.recent-posts dt {
    font-weight: normal;
    margin: 0;
    padding: 0;
}
dl.recent-posts dt {
    float: left;
    clear: both;
    width: 8.2em;
}
dl.recent-posts dd {
    overflow: hidden;
}
dl.recent-posts span.recent-posts-new {
    padding: 0 2px;
    margin-right: 5px;
    vertical-align: middle;
    font-size: .6rem;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    background-color: #f02020;
}

/* アイキャッチ画像左上のラベル（カテゴリー・タグ）を非表示 */
.cat-label {
    display: none !important;
}