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

/************************************
** ■フッターメニューカスタマイズ
************************************/
.footer.footer-container.nwa,
.footer-in.wrap.cf,
.footer-bottom.fdt-up-and-down.fnm-text-width.cf
{
  height: 55px!important; /*メニュー縦幅設定*/
  display: flex; /*並列スタイル指定*/
  align-items: flex-end; /*縦中央寄せ*/
  justify-content: center; /*横中央寄せ*/
}

/************************************
** ■ヘッダーカスタマイズ
************************************/

.logo.logo-header.logo-text {
	padding: 10px;
}


/* タイトル フォント */
.site-name-text {
font-size: 40px;
}

.logo-image {
    padding: 0px 0px ;
	margin-bottom: 0px;
}


.logo-image {
    padding: 12px 0px 0px 0px ;
	margin-bottom: 0px;
}


/*1023px以下*/
@media screen and (max-width: 1023px){
.logo-image {
    padding: 10px 0px 0px 0px ;
	margin-bottom: 0px;
}
	}


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

/*834px以下*/
@media screen and (max-width: 834px){
/*必要ならばここにコードを書く*/
#header .site-name-text {
font-size: 16px;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
/*必要ならばここにコードを書く*/
#header .site-name-text {
font-size: 16px;
}
}

/*****************************
** スマホのカラム幅
******************************/
@media screen and (max-width: 834px) {
    .content {
		padding: 5px 20px 0px 20px;
    }
}

    main.main, div.sidebar {
        padding: 16px 16px;
        margin: 5px 0;
        border-width: 0;
    }

/*****************************
** スマホのみフッター非表示
******************************/
@media screen and (max-width: 834px) {
#footer  {
  display:none;
}
}

/*****************************
** サイドバー文字サイズ
******************************/
.widget-sidebar ul li a {
font-size: 14px;
}

.widget h2 {
    font-size: 16px;
}

.fz-18px {
    font-size: 16px;
}

/*****************************
** 記事のサイド余白
******************************/
article {
		padding: 10px 20px 0px 20px;
}

@media screen and (max-width: 834px) {
article {
		padding: 0px 10px 0px 10px;
}
	}

/************************************
** ブログカードの日付、サイト名非表示
************************************/
.blogcard-date {
 display: none;
}

.blogcard-site {
 display: none;
}
/************************************
/*グローバルメニューのフォントサイズ等変更*/
/************************************
.navi-in .menu-header .item-label{
font-size: 16px;
font-weight: bold;
font-color:#ede29c;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
 .item-label{
font-size: 14px;
font-weight: bold;
font-color:#ede29c;
}
}

/************************************
** ■カルーセル カスタマイズ
************************************/
.carousel .carousel-entry-card .carousel-entry-card-title.card-title {
  font-size: 14px; /*フォントサイズ*/
  font-weight:bold!important; /*文字強調*/
  word-break: break-all; /*表示範囲に合わせて改行*/
}
.carousel .carousel-entry-card .cat-label {
  color: #333c6d; /*ラベル 文字色*/
  border: none; /*枠削除*/
  /*display: none; ラベルを表示したい場合はコメントアウト*/
}
.carousel .carousel-in {
  margin-top: 20px; /*上マージン調整*/
	padding-bottom:0px;
  background-color: #c9d2e7; /*カルーセル全体背景色*/
}
.carousel .carousel-entry-card-thumb.card-thumb img {
  border-radius: 6px; /*角丸コーナー*/
}
.carousel .slick-arrow:before {
  color: #353f72;
  font-size: 28px;
}
/************************************
** ■プロフ文字サイズ
************************************/
#sidebar .author-box p {
    font-size: 15px;
}

/************************************
** 固定ページの日付非表示
************************************/

.page .date-tags {
 display: none;
}

/************************************
** たまご
************************************/
/* #bg-illustration-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* ← これで「画面の縦全体」を指定 */
/*   z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
 */

/* .bg-illustration {
  position: absolute;
  width: 40px; /* ← ここをお好みのサイズに */ 
/*   opacity: 0.9;
  left: -150px;
  animation: moveX 20s linear infinite;
}


@keyframes moveX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120vw);
  }
}
 */ 

/************************************
** 背景レイヤーがどこかの親に制限されないように
************************************/
/* html, body {
  position: relative;
  height: 100%;
} */


/************************************
** 記事を最前面に
************************************/
/* #content, .main, .main-content {
  position: relative;
  z-index: 10 !important;
}
 */