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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*---------------------------------
ページジャンプ後の位置調整
--------------------------------*/

/*---------------------------------
タイトルセンタリング
--------------------------------*/
.page .entry-title,
.single .entry-title {
	text-align: center;
}


/*---------------------------------
h1
--------------------------------*/

.article h1 {
  font-size: 30pt;
  padding: 30px;
}

h1 {
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 1px white;
  border-bottom: solid 1px white;
	 color: white;/*文字を白に*/
	text-shadow: 2px 3px 0 #000,
               -1px 2px 0 #000,
               1px -2px 0 #000,
               -1px -2px 0 #000;
}
h1:before, h1:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 5px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: white;
}
h1:before {
  left: 7px;
}
h1:after {
  right: 7px;
}

h1 {
  position: relative;
  padding: 0.3em 0.5em;
  background: -webkit-linear-gradient(to top, rgb(137, 184, 255), #FF6633);
  background: linear-gradient(to top, rgb(137, 184, 255), #FF6633);
}



/*---------------------------------
h2
--------------------------------*/
.article h2 {
	position: relative;
	padding: 16px 25px 16px 25px;
	border-radius: 3em .5em 2em .5em/.4em 2em .5em 3em;
	border-bottom: 4px solid #345a91 ;
	border-right: 4px solid #345a91 ;
	background: #6ea0eb;
	color: white;
	text-shadow: 2px 1px 0 #000,
                   -1px 2px 0 #000,
                   1px -2px 0 #000,
                  -1px -2px 0 #000;
}

/*---------------------------------
h3
--------------------------------*/
.article h3 {
  border-left: 7px solid #888;
  border-right: 7px solid #888;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  font-size: 24px;
  padding: 12px 20px;
	
}

h3 {
  background: #ff9f80; /*背景色*/
  padding: 0.5em;/*文字周りの余白*/
  color: white;/*文字を白に*/
  border-radius: 0.5em;/*角の丸み*/
	text-shadow: 1px 1px 0 #000,
                   -1px 1px 0 #000,
                   1px -1px 0 #000,
                  -1px -1px 0 #000;
}

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

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

}
	  

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
.article h1 {
	  font-size: 20px;
	text-shadow: 1px 1px 0 #000,
                   -1px 1px 0 #000,
                   1px -1px 0 #000,
                  -1px -1px 0 #000;
}
	
.article h2 {
	 font-size: 18px;
	text-shadow: 1px 1px 0 #000,
                   -1px 1px 0 #000,
                   1px -1px 0 #000,
                  -1px -1px 0 #000;
}
.article h3 {
	  font-size: 16px;
	
}


