/* -----------サイドバー-------------- */
.mymenu {
	padding-bottom: 40px;
}

.mymenu h2 {
	font-size: 16px;
	padding: 10px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.05em;
	background-color: #072608;
	border-radius: 4px 4px 0 0;
}

.mymenu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mymenu li a {
	display: block;
	padding: 4px 10px;
	text-decoration: none;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	box-sizing: border-box;
	font-size: 15px;
}

.mymenu li a:hover {
	background-color: #ddd;
	transition: all .5s;
}

/*サムネイルをつけたサイドメニューのデザイン*/
.mymenu-thumb li a {
	padding: 10px;
	border-bottom: solid 1px #ccc;
	line-height: 1.5;
}

.mymenu-thumb li a:after {
	content: "";
	display: block;
	clear: both;
}

.mymenu-thumb li .thumb {
	float: left;
	width: 90px;
	height: 90px;
	background-size: cover;
	background-position: 50% 50%;
}

.mymenu-thumb li .text {
	float: none;
	width: auto;
	margin-left: 105px;
}

.mymenu-thumb li .text p span {
	font-size: 0.8em;
	color: #666;
}

/*サムネイル画像に文字を重ねたサイドメニューのデザイン*/
.mymenu-large li a {
	position: relative;
	margin-bottom: 10px;
	padding: 0;
}

.mymenu-large li a:hover {
	opacity: 0.8;
}

.mymenu-large li .thumb {
	width: 100%;
	height: 130px;
	background-size: cover;
	background-position: 50% 50%;
}

.mymenu-large li .text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	box-sizing: border-box;
}

@media (min-width: 400px) and (max-width: 767px) {
	.mymenu-large ul:after {
		content: "";
		display: block;
		clear: both;
	}

	.mymenu-large li {
		float: left;
		width: 50%;
		box-sizing: border-box;
	}

	.mymenu-large li:nth-child(odd) {
		clear: both;
		padding-right: 10px;
	}

	.mymenu-large li:nth-child(even) {
		padding-left: 10px;
	}
}

/* サイドバーの検索フォーム */
.search-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.search-form label {
	width: 80%;
}

.search-field {
	width: 100%;
	height: 40px;
	border: 1px #ccc solid;
	border-radius: 0;
	padding: 10px;
}

.screen-reader-text {
	display: block;
	visibility: hidden;
	height: 0;
}

.search-submit {
	display: inline-block;
	width: 18%;
	height: 40px;
	padding: 5px;
	border: solid 1px #ccc;
	border-radius: 0;
	background-color: #eee;
	font-family: inherit;
	-webkit-appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #444;
	cursor: pointer;
}

/*サイドバーのタグクラウドに枠線を付ける（＋フォントサイズ統一）*/
.tagcloud a {
	font-size: 0.9em !important;
	border: solid 1px #ccc;
	border-radius: 5px;
	display: inline-block;
	padding: 5px;
	margin-top: 20px;
	color: #444;
	text-decoration: none;
}

/* タグクラウドのマウスオーバー時の背景色 */
.tagcloud a:hover {
	background-color: #eee;
	text-decoration: none;
	color: #444;
}