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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/見出し１をカスタマイズ/
article h1
h1 {
  position: relative;
  padding: 0.5em;
  background: #a6d3c8;
  color: white;
}

h1::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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



.main, 
.sidebar {
  background-color: #ededd0;
}





/* モバイル版ヘッダーロゴを非表示 */
@media screen and (max-width: 1023px) {
.logo-header {
display: none;
}
}




/************************************
**モバイルスライドメニューのカスタマイズ
************************************/
span.fas.fa-times::before{
font-family: "Font Awesome 5 Free";
content: "\f060";
color:#ededd0;/*矢印色変更はこちら*/
}
ul.menu-drawer:before{
font-size:1.2em; /*menu文字の寸法*/
color:black; /*menu文字の色*/
margin-bottom:1em;
border-bottom:3px dotted black; /*点線の色とサイズ変更*/
content: "menu";　/*文章の変更*/
}
ul.menu-drawer:after {
background: #222272;
}
.menu-drawer li {
padding:0;
}
.menu-drawer li{
font-weight: bold;
}
.menu-drawer a{
font-size:1.3em;
background-color:black;
color:#f7f7f7;
margin: .5em 0;
}
.menu-drawer a:hover{
background-color:#222272;
}
.menu-drawer .sub-menu {
padding:0;
}
.menu-drawer .sub-menu li{
font-size: .9em;
}
.menu-drawer .sub-menu li a::before {
font-family: "Font Awesome 5 Free";
content : "\f105";
color:#222272;
margin:0 .5em 0 1em;
}


/*モバイルスライドメニュー背景色*/
.navi-menu-content {
background-color: #white;
}


.navi-menu-button,
.mobile-menu-buttons .home-menu-button > a,
.search-menu-button,
.mobile-menu-buttons .top-menu-button > a,
.sidebar-menu-button{
  color: black;/* メニューのテキストの色 */
}


