@charset "UTF-8";
/*
	Theme Name: 	blograizze2
	Description:	ライズネットのブログ用テーマ
	Theme URI: 		https://raizzenet.com/
	Author:			Kazunari Matsumoto
	Author URI:		https://raizzenet.com/
	Version:		1.0.0
	License:		GNU General Public License
	License URI:	http://www.gnu.org/licenses/gpl-2.0.html
	Tags:			white, right-sidebar, two-columns
*/

/*--------------------------------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	vertical-align: baseline;
}
body {
	max-width: 1200px;
	margin: 0 auto;
	color: #383838;
	font-size: 16px;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans JP",sans-serif;
	background: #ffffff;
}
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
a {
	text-decoration: none;
	color: #383838;
	/*color: #1c7c7c;*/
}
pre {
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 16px;
	padding: 12px;
	border: 1px solid #f0f0f0;
	background: #f0f0f0;
	color: #383838;
	overflow-x: scroll;
	overflow-y: auto;
	white-space: pre;
}
pre, code {
	font-size: 16px;
	line-height: 1.6;
}
h1 {
	font-size: clamp(28px, 5vw, 40px);
	line-height: 1.3;
	margin: 0 0 24px;
	display: block;
}
h2 {
	font-size: clamp(24px, 4vw, 32px);
	line-height: 1.4;
	margin: 40px 0 16px;
	display: block;
	border-bottom: 4px solid #1c7c7c;
}
h3 {
	font-size: clamp(20px, 3vw, 24px);
	line-height: 1.5;
	margin: 32px 0 12px;
	display: block;
}
@media (max-width: 767px) {
	h2 {margin: 32px 0 16px;}
	h3 {margin: 28px 0 12px;}
}
p {
	font-size: clamp(16px, 5vw, 20px);
	line-height: 1.6;
	margin: 0 auto 16px;
}
table {
	border: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 16px;
	line-height: 2;
	margin: 10px 10px 20px 10px;
	width: 90%;
}
#zebra tr:nth-child(odd) {
	background:#f9f9f9;
}
th {
	border: 1px solid #ededed;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
td {
	border: 1px solid #ededed;
	padding-left: 8px;
}

hr {
	margin: 12px 12px 8px 8px;
	border: 1px solid #e0e0e0;
}

input {
	width: 50%;
	margin-top: 8px;
	border: 1px solid #ededed;
	background: #fdfdfd;
	border-radius: 5px 5px 5px 5px;
	box-shadow: inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}

/*--------------------------------------------------------------------------------*/
strong {
	font-size: clamp(16px, 5vw, 20px);
	line-height: 1.6;
	margin: 0 auto 16px;
	font-weight: 600;
	color: #383838;
}

.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/*
	ヘッダー
*/
#header {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px 18px 0px;
}

#logo {
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 18px 0;
	text-shadow: 1px 1px 2px #ccc;
	display: block;
	border: none;
}
#description {
	text-align: center;
	margin: 0 auto;
	display: block;
}
@media (max-width: 767px) {
	#header {
		padding: 0;
		margin: 0 0 12px 0;
	}
	#logo {
		font-size: 24px;
		padding: 4px 0 32px;
	}
	#description {
		font-size: 14px;
	}
}
#wrapper {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 0 5%;
	display: flex;
	justify-content:space-between;
}
#main {
	box-sizing: border-box;
	width:75%;
}
#side {
	box-sizing: border-box;
	width: 23%;
}
#side ul {
	list-style: none;
}
@media (max-width: 767px) {
	#wrapper {
		padding: 0 12px;
		flex-direction: column;
	}
	#main, #side {
		width: 100%;
	}
}


/*
	投稿リスト
*/
.post-list {
	box-sizing: border-box;
	margin: 0 0 36px;
	padding: 0 8px;
}
.post-list h2 {
	font-weight: 500;
	margin-bottom: 8px;
}

.post-list .box {
	margin: 0 0 56px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.post-list .post-thumbnail {
	width: 40%;
}
.post-list .post-thumbnail img {
	width: 100%;
	max-height: 240px;
	overflow: hidden;
}
.post-list .contents {
	box-sizing: border-box;
	width: 58%;
	padding: 0 8px;
}
.post-list .post-thumbnail a:hover {
	opacity: 0.6;
}
.post-meta {
	font-size: 16px;
	padding: 4px 2px;
	vertical-align: middle;
}
@media (max-width: 480px) {
	.post-list .box {
		flex-direction: column;
	}
	.post-list .post-thumbnail, .post-list .contents {
		width: 100%;
	}
}

/*
	トップ画面のページナビゲーション
*/
.pagination {
	overflow: hidden;
	margin: 60px auto;
	text-align: center;
	background: transparent;
}
.pagination a {
	padding: 5px 10px;
	display: inline-block;
	border-bottom: 1px solid #cccccc;
	background: #ffffff;
}
.pagination h2 {
	display: none;
}
.pagination span {
	padding: 5px 10px;
	display: inline-block;
}

/*
	パンクズリスト
*/
#pankuz {
	width: 100%;
	font-size: 15px;
	margin: 0 0 36px;
}
#pankuz a {
	font-size: 15px;
	text-decoration: underline;
}
.contents {
	width: 100%;
	margin: 0 auto;
}
.contents .post-thumbnail {
	margin: 8px 0 16px;
	border: 2px solid #eee;
}
.contents .post-thumbnail img {
	width: 100%;
}

.post-img {
	margin: 16px 330px 36px 8px;
	display: block;
	border: 1px solid #ededed;
}
.post-content {
	margin: 0 0 0;
}

.post-content a {
	font-size: clamp(16px, 5vw, 20px);
	text-decoration: underline;
}
.img-sample {
	width: 100%;
	margin: 16px auto 42px;
	display: flex;
	justify-content: space-between;
}
.img-sample .sample {
	width: 60%;
}
.img-sample .sample img {
	width: 100%;
}
.img-sample .txt {
	width: 38%;
}
.img-sample .txt p, .img-sample .prompt p {
	box-sizing: border-box;
	font-size: 16px;
	padding: 4px;
	border: 1px solid #f0f0f0;
	background: #f0f0f0;
}

@media (max-width: 480px) {
	.img-sample {flex-direction: column;}
	.img-sample .sample,.img-sample .txt {width: 100%;}
}
/*
	関連記事
*/
#related-box {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 8px;
}
#related-box .list {
	width: 24%;
	margin: 0;
	padding: 0;
}
#related-box .list a {
	width: 100%;
	font-size: 14px;
	text-decoration: none;
	display: block;
}
#related-box .list a img {
	width: 100%;
}
#related-box .list a:hover {
	opacity: 0.6;
}
@media (max-width: 480px) {
	#related-box {
		justify-content: start;
		flex-direction: column;
		gap: 32px 0;
	}
	#related-box .list {
		width: 100%;
	}
	#related-box .list a {
		font-size: 16px;
	}
}
/*
	記事内のページナビゲーション
*/
#page-navi {
	width: 100%;
	padding: 50px 0;
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
#page-navi .prev, #page-navi .next {
	width: 48%;
}
#page-navi .prev a, #page-navi .next a {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 0;
	text-decoration: none;
	display: block;
}
#page-navi .prev a:hover, #page-navi .next a:hover {
	opacity: 0.6;
}
@media (max-width: 767px) {
	#page-navi {
		flex-direction: column;
		gap: 8px;
	}
	#page-navi .prev, #page-navi .next {
		width: 100%;
		text-align: left;
	}
	#page-navi .prev a, #page-navi .next a {
		padding: 16px 8px;
		border: 1px solid #383838;
	}
}

/*
	コメント
*/
#comment-box {
	margin: 16px 330px 0 8px;
}
.comment-list {
	margin-left:		12px;
}
.comment-list li {
	list-style-type:	none;
}
.comment-metadata {
	font-family:		sans-serif;
	font-size:			16px;
	margin:				18px 0 8px 4px;
	border-bottom:		1px solid #cccccc;
}
.comment-author {
	margin-left:		4px;
	margin-right:		20px;
}
.comment-date {
	padding:			0;
}
.unapproved {

}
.children {
	margin:				8px 0px 15px 40px;
}
.comment-reply-link {
	margin:				0px 0px 8px 8px;
	padding:			3px 6px 3px 6px;
	text-decoration:	none;
	background-color:	#f9f9f9;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			1px 1px 2px #000;

}
.comment-content {
	font-size:			16px;
	width:				80%;
	margin-top:			8px;
}
/*
.comment-content input {
	width:				50%;
	margin-top:			8px;
	border: 			1px solid #ededed;
	background-color:	#fdfdfd;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}
*/
.comment-respond {
	margin-top:			32px;
}
.comment-respond textarea {
	width:				60%;
	margin-top:			8px;
	border: 			1px solid #ededed;
	background-color:	#fdfdfd;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}
.comment-respond input {
	width:				60%;
	margin-top:			8px;
	padding:			8px;
	border: 			1px solid #ededed;
	background-color:	#fdfdfd;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}
.comment-respond input[type="submit"] {
	font-size:			90%;
	width:				160px;
	padding: 			8px;
	margin-bottom:		20px;
	margin-right:		5px;
	border-radius:		6px 6px 6px 6px;
	box-shadow:			1px 1px 3px #000;
	text-shadow:		1px 1px 2px #fff;
	background-color:	#f9f9f9;
	cursor:				pointer;
}
.comment-respond input[type="submit"]:hover {
	opacity:			0.6;
}
.comment-check label {
	padding:			0 0 0 32px;
	font-size:			20px;
	line-height:		20px;
	display:			inline-block;
	cursor:				pointer;
	position:			relative;
}
.comment-check label:before {
	content:			'';
	width:				20px;
	height:				20px;
	display:			inline-block;
	position:			absolute;
	left:				0;
	background-color:	#fff;
	box-shadow:			inset 1px 2px 3px 0px #000;
	border-radius:		6px 6px 6px 6px;
}
.comment-check input[type=checkbox] {
	display:			none;
}
.comment-check input[type=checkbox]:checked + label:before {
	content:			'\2713';
	font-size:			20px;
	color:				#fff;
	background-color:	#06f;
}

/*
	コンタクトフォーム
*/
.forms {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0;
}
.forms li {
	margin:16px 0px 0px 16px;
	padding:			0px;
	list-style:			none
}
.forms label {
//	width:				100%;
	margin-top:			32px;
	display:			block;
}
.forms input[type=text] {
	padding:			8px;
	width:				80%;
	border: 			1px solid #ededed;
	background-color:	#fdfdfd;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}
.forms textarea {
	width:				80%;
	padding:			8px;
	padding:			0;
	border: 			1px solid #ededed;
	background-color:	#fdfdfd;
	border-radius:		5px 5px 5px 5px;
	box-shadow:			inset 1px 2px 6px -3px rgba(0,0,0,0.5);
}
.forms .forms-respond input[type=submit]{
	font-size:			90%;
	padding: 			8px;
	width:				100px;
	margin:				20px 5px 20px 32px;
	border-radius:		6px 6px 6px 6px;
	box-shadow:			1px 1px 2px #000;
	text-shadow:		1px 1px 2px #fff;
	background:	#f9f9f9;
	cursor:				pointer;
	float:				left;
}
.forms .forms-respond input:hover {
	opacity:			0.6;
}
.forms .forms-check label {
	margin:				16px 0 16px 32px;
	padding:			0 0 0 32px;
	font-size:			110%;
	line-height:		24px;
	display:			inline-block;
	cursor:				pointer;
	position:			relative;
}
.forms .forms-check label:before {
	content:			'';
	width:				24px;
	height:				24px;
	display:			inline-block;
	position:			absolute;
	left:				0;
	background:	#fff;
	box-shadow:			inset 1px 2px 3px 0px #000;
	border-radius:		6px 6px 6px 6px;
}
.forms .forms-check input[type=checkbox] {
	display:			none;
}
.forms .forms-check input[type=checkbox]:checked + label:before {
	content:			'\2713';
	font-size:			24px;
	color:				#fff;
	background-color:	#06f;
}
.forms .required {
	font-size: 14px;
	color: #e00;
}
/*
.forms .forms-check {
	color:				#f00;
	display:block;
	background-color:#ff0;
}
*/
.contact-error {
	font-size:			80%;
	margin-left:		40px;
	color:				#ff0000;
	clear:				both;
}
/*
	アーカイブ
*/
.archive-box {
	width: 100%;
	margin: 0px auto 48px auto;
	display: block;
}
.archive-box h2 {
	font-weight: 500;
	font-size: 20px;
}
.post-archive, .post-category, .post-views-list {
	width: 100%;
	margin: 2px 0px 10px 8px;
}
.post-archive li {
	width: 22%;
	font-weight: 400;
	margin: 6px 0px 6px 8px;
	list-style: none;
	display: inline-block;
}
.post-category li {
	width: 45%;
	margin: 6px 0px 6px 8px;
	list-style: none;
	display: inline-block;
}
.post-views-list li {
	vertical-align: top;
	text-align: left;
	width: 45%;
	margin: 12px 8px;
	display: inline-block;
}
@media only screen and (max-width: 480px) {
	.post-archive li {
		width: 45%;
	}
	.post-category li {
		width: 95%;
	}
	.post-views-list li {
		width: 95%;
		margin: 8px 0px;
	}
}
.post-views-list img {
	width: 90%;
}
.post-views-title {
	font-size: 14px;
	margin: 2px 0px;
}
.post-views-title:hover {
	border-bottom: 1px solid #383838;
}
.post-views-count {
	font-size: 14px;
	display: block;
}
#side input[type="text"] {
	line-height: 1.6;
}
#side input[type="submit"] {
	font-size:			85%;
	width:				40px;
	height:				20px;
	box-shadow:			1px 1px 3px #000;
	text-shadow:		1px 1px 2px #fff;
	background: #f9f9f9;
	cursor:				pointer;
}

.widget-container {
	//margin: 0px 8px 46px 8px;
	margin: 0 0 16px;
	padding: 0;
	clear: both;
	list-style-type: none;
}
.widget-container h2 {
	width: 100%;
	font-size: 22px;
	font-weight: 500;
	margin: 32px 0 0;
}
.widget-container ul {
	list-style-type:	none;
}
.widget-container ul li {
	list-style-type: none;
	margin: 0 0 16px;
	padding: 0 4px;
}
/*
	フッター
*/
#footer {
	width: 100%;
	margin: 16px 0 0
	display: block;
	background:#383838;
}
#copyright {
	font-size: 14px;
	padding-top: 26px;
	padding-bottom: 16px;
	text-align: center;
	color: #ffffff;
}
#copyright a {
	color: #ffffff;
}
#blogmura-box {
	padding: 16px 8px;
}
#blogmura-box a {
	font-size: 14px;
	color: #fff;
}
/*
	トップに戻るボタン
*/
#page-top {
	width: 64px;
	height: 64px;
	right: 12px;
	bottom: 12px;
	border: 1px solid rgba(0,0,0,0.4);
	box-shadow: 1px 1px 1px #ccc;
	border-radius: 50%;
	background: rgba(0,0,0,0.4);
	display: none;
	position: fixed;
}
#page-top:after, #page-top:hover:after {
	content: "";
	width: 20px;
	height: 20px;
	top: 25px;
	left: 18px;
	transform: rotate(-45deg);
	position: absolute;
}
#page-top:after {
	border-top: 8px solid #fff;
	border-right: 8px solid #fff;
}
#page-top:hover:after {
	border-top: 8px solid #000;
	border-right: 8px solid #000;
}
.error-404 {
	font-size: 120%;
	margin: 32px;
}

.ad-content-box {
	width:100%;
	margin:24px 0 0;
}
.ad-content2-box {
	margin: 24px 0 0;
}
.ad-content-box, .ad-content2-box {
	text-align: center;
}
.ad-rect {
	width: 100%;
	margin: 48px auto 8px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 8px;
}
.ad-rect .box1, .ad-rect .box2 {
	width:49%;
}
@media (max-width: 480px) {
	.ad-content-box, .ad-content2-box {
		width: 100%;
		margin: 24px 0;
	}
	.ad-rect {
		flex-direction: column;
	}
	.ad-rect .box1, .ad-rect .box2 {
		width: 100%;
	}
}
