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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
<?php if ( is_home() || is_front_page() ) : ?>
#header-container {
    position: absolute;
    width: 100%;
    top: 0;
    background: transparent;
}

.header-container-in.hlt-top-menu .navi {
    background: transparent;
}

.site-name-text-link,
.navi-in a {
    color: #fff;
}

.bg-content {
    text-align: center;
}

.bg-content a {
    color: #fff;
    text-decoration: none;
}

.bg-slider {
    width: 100vw;
    height: 500px;
    background-position:center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-slider__title{
    color: #fff;
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: 1px;
}
<?php endif; ?>


.entry-content h2{
color: #fff; /*文字色
font-size: 22px; /*文字サイズ*/
border-left: solid 10px #00468C; /*左側に実線・色*/
}

.sidebar h3,.footer-in h3 {
font-size: 20px; /*文字サイズ*/
line-height: 20px; /*行の高さ
width:100%; /*幅*/
padding: 10px 15px; /*余白*/
margin-top: 20px;
border-radius: 8px; /*角の丸み*/
background-color:#9ad1d3; /*背景色*/
color:#666666; /*文字色*/
}

a img:hover {
	opacity: 0.5 ;
}

.toc-title {
    font-weight: bold;
	color: #0693cd;
}
 
.toc {
	background: #f4f5f7;
	border: 5px solid #000000;
}

.toc-list > li a {/*小見出し（H2）*/
font-weight: bold;
}

.toc-list > li li a {/*小見出し（H3）*/
font-weight: normal;
}

.article .toc-list > li li {
  list-style: none;
}

.toc-list > li li ::before {
  content: '';
  width: 5px;
  height: 5px;
  display: inline-block;
  left: -15px;
  border-radius: 100%;
  background: #cdcdcd;
  position: relative;
  margin-bottom: 2px;
 }

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

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

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

