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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 見出しのデザインリセット */
/*H2 */

/* H3 */
.entry-content h3{
border:none;
background:none;
padding: 0;
}

/* H4 */
.entry-content h4{
border:none;
background:none;
padding: 0;
}

/* H5 */
.entry-content h5{
border:none;
background:none;
padding: 0;
}

/* H6 */
.entry-content h6{
border:none;
background:none;
padding: 0;
}

#header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.uq_topBlock{
	text-align: center;
}

.uq_topBlock > p {
	display: inline-block;
	padding: 0.5em;
	background-color: #ffffff;
	border-radius: 0.5em;
}

/*H2見出し*/
main h2.wp-block-heading {
    color: #000000;/*文字色*/
    font-size: 22px;/*文字サイズ*/
    padding: 20px;/*文字回りの余白（上下左右）*/
    display: block;
    border: 2px solid #713d80;/*囲み線（太さ 実線 色）*/
	background: #fbedff;
    position: relative;
}
main h2.wp-block-heading:after {
    content: '';
    background:#c86ce2;/*背景色*/
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    position: absolute;
    top: 5px;/*背景の上下位置ずらし*/
    left: 5px;/*背景の左右位置ずらし*/
    z-index: -1;
}

/*H3見出し*/
main h3.wp-block-heading {
    color: #000000;/*文字色*/
    font-size: 20px;/*文字サイズ*/
    padding: 25px;/*文字回りの余白（上下左右）*/
    display: block;
    border-color: #816930;/*線の色*/
	background: #e0f7f7;
    position: relative;
}
main h3.wp-block-heading:before,
main h3.wp-block-heading:after {
    content: '';
    width: 70px;/*左右の枠線の幅*/
    height: 30px;/*左右の枠線の高さ*/
    position: absolute;
}
main h3.wp-block-heading:before {
    border-left: 5px solid #5ce1e6;/*左枠左線（太さ 実線 色）*/
    border-top: 5px solid #c86ce2;/*左枠上線（太さ 実線 色）*/
    top: 0;
    left: 0;
}
main h3.wp-block-heading:after {
    border-right: 5px solid #c86ce2;/*右枠右線（太さ 実線 色）*/
    border-bottom: 5px solid #5ce1e6;/*右枠下線（太さ 実線 色）*/
    bottom: 0;
    right: 0;
}

/*H4見出し*/
main h4.wp-block-heading {
    color: #000000;/*文字色*/
    font-size: 18px;/*文字サイズ*/
    padding: 10px 20px;/*文字回りの余白（上下 左右）*/
    display: block;
    border-left: 6px solid #5ce1e6;/*左線部左側（太さ 実線 色）*/
    position: relative;
}
main h4.wp-block-heading:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;/*左線部右側の幅*/
    height: 100%;
    background: #c86ce2;/*左線部右側の色*/
}

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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
/* Cocoonのヘッダータブで設定したロゴ画像を非表示 */ 
.logo > a img { display: none;
}
/* ロゴ画像を非表示にしたデバイスで表示させたいロゴ画像を指定 */
.logo > a .site-name-text {
	display: inline-block;
	width: 100px;
	max-width: 100%;
	height: 20vw;
	max-height: 20px;
	background: url("http://susumemo115.com/wp-content/uploads/2024/12/rogo2.png") no-repeat;
	background-size: contain;
	background-position: center;
	}
}