<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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 .date-tags {
display: none;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}
/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	.entry-content &gt; * {
		margin-right: 0;
		margin-left: 0;
	}	
}
/*見出し初期化*/
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6{ 
  padding: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  line-height: normal;
  position:relative;
	background-color: transparent;
}

/*見出しカスタマイズ 固定ページH1の指定*/
 .entry-title{
text-align: center;
	color:#3b4e62;
	font-size: 30px;
	border: transparent;
	width: 100%; 
	margin: 0 0 -0.5em 0.0em;
	white-space: nowrap;
	letter-spacing: 5px;	
	overflow: hidden;				
}
.entry-title:first-letter{
	font-size:1.2em;
	color:#22648c;
}

/* topicsのH1指定　tmp-content変更済　参考https://web-ashibi.net/archives/1911 */
.post-title {
    font-size: 26px;
    margin: 16px 0;
    line-height: 1.3;
    padding: 0 0 10px 0;
    position: relative;
}
.post-title::after { /* グラーデーションラインをひく擬似要素 */
    content:"";
    display: block;
    position: absolute;
    bottom: -10px;
    height: 4px;
    width: 100%;
    background: -webkit-linear-gradient(left, #72c7e6 0%,#8ae2d7 100%);
    background: linear-gradient(to right, #72c7e6 0%,#8ae2d7 100%);
}

.article h2 {
	display:block;
	background: #d6e9f5; /*背景色*/
  padding: 0.5em;/*文字周りの余白*/
  color: #194766;
  border-radius: 0.7em;/*角の丸み*/
	width: 80%;
	letter-spacing: 2px;	
	font-size: 1.3em;
	margin: 1rem auto 1.5rem;
		text-align: center;
}

.article h3{
position: relative;
	margin: 2em 0;
	text-align: center;
	color: #2874a6;
	font-size: 1.1em;
}
.article h3:before {
	position: absolute;
	display: inline-block;
	content: '';
	bottom: -13px;
	width: 230px;
	height: 4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #7dd3df;
	border-radius: 2.5px;
}

.article h4{
padding: 0 0 0.3em 1.7em;
position: relative;
  border-bottom: 3px dotted #15b3e1;

}
.article h4:before{
	position: absolute;
font-family: "Font Awesome 5 Free";
content: "\f05a";
font-weight: 600;
font-size: 1.3em;
left: 0;
color: #17b7b1;
	margin-top:-0.1em;
}
}


/* メニュー　a hover ラインアニメーション */
#navi-in li a {
  text-decoration: none;
}
#navi-in li a::after {
  border-bottom: solid 5px #31b7ca;
  bottom: -34px;
  content: "";
  display: block;
  width: 0;
		  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
#navi-in li a:hover::after {
  width: 100%;
}

/*全体フェードアニメhttps://s41t0h.jp/cocoon-fadein-customize/　*/
#main{
    animation: fadeIn 1s ease-out 0s 1 normal;
}
#sidebar {
    animation: fadeIn 1s ease-out 0s 1 normal;
}
@keyframes fadeIn {
    from {transform: translateY(10%); opacity: 0;}
    100% {transform: translateY(0%); opacity: 1;}
}
#header-container {
    animation: Down 1s ease-out 0s 1 normal;
}
@keyframes Down {
    from {transform: translateY(-10%); opacity: 0;}
    100% {transform: translateY(0%); opacity: 1;}
}

@keyframes Right {
    from {transform: translateX(10%); opacity: 0;}
    100% {transform: translateX(0%); opacity: 1;}
}
@-webkit-keyframes typing { from { width: 0; } }
@-webkit-keyframes blink-caret { 100% { border-color: transparent; } }

/*新着に日付表示*/
.new-entry-card-date {
	display: block;
	text-align: right;
}

/*TOC目次カスタマイズ*/
.toc{
	width:500px;
	margin:0em auto;
	display:block;
 border: 0;
	font-size:0.8em;
}
.toc li {
padding: 3px;
list-style: none;
position: relative;
	padding: 0 0 0 12px ;
}
.toc li:before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f054"; /* 矢印アイコン */
position: absolute;
left : 0em;
color: #15aee1;
}
/*TOC遷移先調整*/
span[id^="toc"] {
	padding-top: 1.6em;
}
@media screen and (min-width: 769px) {
	span[id^="toc"] {
		padding-top: 2em;
	}
	
/* モバイル時余白回避 */	
#devices .iphone-x-portrait iframe {
    overflow:hidden;
}
</pre></body></html>