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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 動画を中心にそろえる */
.video-container{margin: 0px auto;}

/* 選択しているタブ色を変更する*/
.cocoon-block-tab .tab-label-group .tab-label.is-active {
	background-color: #0066c0;
	color: #FFFFFF;
}
/*見出し(H3)の上部オブジェクトの色を変更*/
.article h3 {
    position: relative;
    border-color: #75b6e5;
}
/*トップのロゴを左寄せ*/
.logo {
    text-align: left;
}
/*スキン(One)特有のPC版でのモバイルメニューを非表示*/
.is-pcmenu-on .mobile-menu-buttons.mobile-footer-menu-buttons {
	display: none;
}
/*メニューにカーソルが当たった際の水玉エフェクトを非表示*/
.navi-in a::before{
  content: none;
}
/*エントリーカードにカーソルが当たった際のエフェクトを非表示*/
.a-wrap:hover .entry-card-thumb::before, .a-wrap:hover .widget-entry-card-thumb::before,
.a-wrap:hover .related-entry-card-thumb::before, .a-wrap:hover .carousel-entry-card-thumb::before,
.a-wrap:hover figure.prev-post-thumb.card-thumb::before, .a-wrap:hover figure.next-post-thumb.card-thumb::before,
.a-wrap:hover .blogcard-thumbnail::before{
  display: none;
}
/*body及び見出しのフォントを"BIZ UDPGothic"に変更*/
body,.is-count-on #content-in .article h1,.is-count-on #content-in .article h2::before,.is-count-on #content-in .article h2,.is-count-on #content-in .article h3,.is-count-on #content-in .article h4,.is-count-on #content-in .article h5,.is-count-on #content-in .article h6{
	font-family: "BIZ UDPGothic", sans-serif;
}
/*メニューの文字の装飾変更*/
.item-label{
	font-weight:bold;
	font-size:18px
}
/*メニューにカーソルが当たった際に文字色をコーポレートカラーに変更*/
.item-label:hover {
    color: #005082;
}
/*メニューにカーソルが当たった際に下線を引く①*/
.item-label::after {
  position: absolute;
  bottom: .3em;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #333;
  opacity: 0;
  transition: .3s;
}
/*メニューにカーソルが当たった際に下線を引く②*/
.item-label:hover::after {
  bottom: 0;
  background-color: #005082;
  opacity: 1;
}
/*アピールエリアの背景色を無くす*/
.appeal::before {
    background: #ffffff00;
}
/*ヘッダーの真ん中カラムの折り返しを無しに設定*/
.footer-left,.footer-center,.footer-right{
	width: unset ;
}





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

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

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

