@charset "UTF-8";

/************************************
**　　グローバルナビメニュー 
************************************/

/*マウスオーバーでアンダーライン*/
#navi .navi-in a:after{
position: absolute;/*線の位置を絶対配置に*/
content: "";/*文字はなし*/
left: 10px;/*線の位置*/
bottom: 10px;/*線の位置*/
height: 3px;/*線の高さ*/
width: 84%;/*線の幅*/
background: #364e96;/*線の色*/
transform: scale(0,1);/*マウスオーバーの前は線を消す*/
transition: 0.3s;/*線が0→100%になるまでの秒数*/
}

#navi .navi-in a:hover:after{
transform: scale(1);/*マウスオーバー後、線を100%出す*/
}

/*スマホメニューを横スクロール*/
#header-container .navi-in > ul li {
   height: auto;
   font-weight: 600;
   line-height:1.3;
}
#header-container #navi a{
   color:#494949; /* 文字色 */
   padding:0.8em 1em;
}
#header-container #navi a:hover{
   color:#008db7; /* マウスホバー時の文字色 */
}
#header-container .navi-in > ul > .menu-item-has-children > a::after {
   top: 0.8em;
   font-size: 1.2em;
   font-weight: 600;
}
#header-container .sub-menu .caption-wrap{
   padding-left:1em;
}
.navi-in > ul .menu-item-has-description > a > .caption-wrap{
   height:auto;
}
@media screen and (max-width: 1030px){
  #header-container .menu-mobile{
    display:none;
  }
  .navi-in > .menu-mobile{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  #header-container #navi a{
    font-size:0.8em;
    padding: 1em 1.2em;
  }
  #header-container .navi-in > ul > .menu-item-has-children > a::after{
    display:none;
  }
  #navi .navi-in > .menu-mobile li {
    height: auto;
    line-height: 1.8;
  }
  .mblt-header-mobile-buttons {
    margin-top: 53px;
  }
}



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

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


/*デフォルトの見出しリセット*/

.article h2::before {
border-top: none;
}
.article h2::after {
border-bottom: none;
}
.article h2{
border: none;
}
.article h3::before {
border-top: none;
}
.article h3::after {
border-bottom: none;
}
.article h3{
border: none;
}
.article h4::before {
border-top: none;
}
.article h4::after {
border-bottom: none;
}
.article h4{
border: none;
}
.article h5::before {
border-top: none;
}
.article h5::after {
border-bottom: none;
}
.article h5{
border: none;
}
.article h6::before {
border-top: none;
}
.article h6::after {
border-bottom: none;
}
.article h6{
border: none;
}



/*新しい見出し*/

.article h1 {
  color: #494949;/*文字色*/
}
	
.article h2 {
  color: #364e96;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px  #364e96;/*上線*/
  border-bottom: solid 3px #364e96;/*下線*/
  background: none;/*背景色を消す*/
}


.article h3{
  color: #364e96;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-bottom: solid 3px #364e96;/*下線*/
  background: none;/*背景色を消す*/
}


.article h4 {
  font-size: 20px !important;/*文字のサイズ*/
  border-left: 3px solid #323232;/*左線*/
  padding: .5em .7em;/*余白*/
  color: #364e96;/*文字色*/
  margin-bottom: 15px;
  border-top: none;
  border-bottom: none;
}



/*ブログカードカスマイズ**********/


.internal-blogcard-footer{
	display: none
}

.blogcard-title {
color: #494949;/*文字色*/
line-height: 1.5;/*行間*/
font-size: 1.0em;/*文字の大きさ*/
}

/* タグ色*/
.blogcard-type .blogcard-label{
background-color:#d3d3d3;
}


/*SNSシェアボタン**********/

.button-caption {
 display: none; /* キャプション非表示 */
}

.sns-share-buttons a {
 border-radius: 50%; /* 丸くする */
 margin: 10px; /* ボタンの回りに余白をつける */
}

#main .sns-share a {
 width: 40px; /* ボタンの幅 */
 height: 40px; /* ボタンの高さ */
}

.sns-share-buttons {
 justify-content: center; /* 中央寄せ */
}


/*次ページボタンを無くす*/
.pagination-next-link {
  display: none;
}

/*ページネーションの番号ボタンを丸くする*/
.page-numbers{
	border-radius: 50%; /*角丸*/
}

/*ページネーションの番号ボタンをの色を変える*/
.page-numbers{
  color:#a8bcc8;  /*文字色*/
  font-weight: bold;  /*太文字にする*/
  border-color: #a8bcc8;  /*ボタンの境界線の色*/
}

/*ホバー時の背景色・文字色を変える*/
.pagination a:hover { 
  background: #008db7;  /*背景色*/
  color:#a8bcc8;  /*文字色*/
}


/****************
タブ見出しボックス
****************/
.tab-caption-box-label{ 
	padding: 6px 16px; /*タブ内側余白*/
	font-size: 16px; /*タイトル文字の大きさ*/
	font-weight: bold; /*タイトル文字の太さ*/
	border-radius: 4px 4px 0px 0px;  /*タブ角丸*/
}

.tab-caption-box-content {
	position: relative;  /*配置に関するもの（ここを基準に）*/
	top: 1px; /*上から(1px）移動*/
	border: 2px solid; /*ボックス線*/
	padding: 48px 24px; /*ボックス内側余白*/
	border-radius: 4px; /*ボックス角丸*/
	border-top-left-radius: 0px; /*ボックス左上角丸*/
}



/****************
サイドバーカテゴリー
****************/
.sidebar h3 { 
background: transparent; 
border-bottom: 2px solid #ff8c00; 
text-align: center; padding: 10px; 
}


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

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

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


.entry-card-title {
  font-size: 13pt;
  font-weight: normal;
  font-family: 'Baloo Thambi 2', noto sans jp;
}