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

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

/*固定ページタイトル非表示*/
.page .entry-title{
  display: none;
}

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

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

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

}


/*メインの余白を0にする*/
.main {
margin-top: 0px;
padding-bottom: 0px;
}

/*boby上下余白0*/
.content { 
margin-top: 0; 
margin-bottom: 0;
}

/*モバイルスライドインメニュ*/
div.navi-menu-content {
    background: #fcc800;
} 
.menu-drawer a:hover {
    background-color: transparent;/*背景透明 */
    color: #fff; /* 文字色*/
}
/*mobile スライドインナビ文字色.枠線*/
.navi-menu-content ul li a{
  color: #fff;　/* 文字色:白 */
}

/*モバイルスライドメニューを右から表示させる*/
.navi-menu-content {
  right: 0;
  left:unset;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}

/*新着記事日付表示*/
.new-entry-card-date.widget-entry-card-date.display-none {
display: block;
}
/*新着記事日付文字大きさ*/
.new-entry-card-date.widget-entry-card-date {
 font-size: 12pt;
}


/*フェードイン*/
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition:all 0.5s;
}
 
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}


div.item-label{
font-weight:bold;
}

/*menucustom*/
#navi .navi-in a:hover{
	color: #fcc800!important;
	transition: all 0.5s ease;
}


/*loading*/
#logo_loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 101;
    background-color: #fff;
}

#logo_loader .f_logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 160px;
    height: 50px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    animation: loadLogo 1s;
}

#logo_loader .f_logo img {
    width: 100%;
    height: auto;
}
#logo_loader.open {
    animation-name: slideOut;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.new-entry-card .new-entry-card-title {
	font-size:85%;
}
