@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    0.0.5
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*---折り畳みアーカイブウィジェット---*/
.widget_archive a.year{ /*各年*/
	cursor: pointer;
	border-bottom: 1px dotted #ccc; /*各年に下線を引く*/
}
.widget_archive a.year::after{ /*各年横のアイコン*/
	font-family: "Font Awesome 5 Free";
	content: '\f107'; /* アイコンの指定 */
	position: relative; /* 相対配置 */
	left: 5px; /* アイコンの位置 */
	font-weight: bold;
}
.widget_archive .years ul { /*各月*/
	display: flex;
	flex-flow: row wrap;
	margin-left: 5px; /*インデント*/
	padding:0px;
	font-size: 1rem;
	text-decoration: none; /*各月に下線を引く*/
}
.widget_archive ul.years li {
	margin: 2px;
	padding: 0 3px; /*各月の間隔*/
}

.widget_archive ul.month {
	margin-top:3px;
}
.widget_archive ul.month li a {
	border-radius: 5px;
	margin: 0px;
	padding: 2px 5px;
}

#sidebar .widget_archive ul.years li :hover { /*マウスホバー時*/
	transition: 0.1s;
	background:none;
}

#sidebar .widget_archive ul.month li :hover { /*マウスホバー時*/
	color: #000000;
	background-color:#72c7e6;
}

.widget_archive ul.years .hide { /*各年をクリックすると開閉*/
	margin: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}
/*---折り畳みアーカイブウィジェット　ここまで---*/

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

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

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

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