@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    0.0.4
*/

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


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

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

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

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

/*ブログカードURL非表示*/
.internal-blogcard-footer{
	display: none
}

/******まとめて余白設定（固定ページ上・固定ページ下・フッター上・コンテンツ上）******/
#main {
	padding-top: 0;
	padding-bottom: 0;
}
.entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
.footer {
	margin-top: 0;
	padding-top: 0;
}
.content {
margin-top: 0;
margin-bottom: 0;
}

/******固定ページ上余白更に消す******/
.home .entry-categories-tags.ctdt-one-row,
.home .article-header.entry-header {
	display: none;
}

/*固定ページ画像全幅設定*/
.entry-content .wp-block-cover,
.entry-content .wp-block-cover-image {
  margin: 0 calc((100% - 100vw)/2);
}

/*グローバルメニューのフォントサイズ等変更*/
.navi-in .menu-header .item-label{
font-size: 14px;
}

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

/*インデックス背景を透過*/
#main {
    background:transparent;
}

/*モバイルメニューを透過*/
.mobile-menu-buttons {
background: rgba(0,0,0,0.7);
color: #a9a9a9;
}
.mobile-menu-buttons .menu-button > a {
color: #a9a9a9;
}

/*見出し2*/
.article h2 {
background-color: transparent;
border-left: 0 none;
color: #5A5973;
padding: 15px 30px;
font-size: 30px;
}

/*見出し3*/
h3 {
  position: relative;
  padding: 0.25em 0;
}
h3:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(100, 149, 237), #5A5973);
  background: linear-gradient(to right, rgb(100, 149, 237), #5A5973);
}
h3 {
  border: none !important; /* 枠を消す */
  outline: none !important; /* 枠を消す */
}