@charset "utf-8";
/* ===========================================================
Article CSS / 記事内レイアウト調整
=========================================================== */


/* **********************************************************
	記事内共通要素
********************************************************** */
.post_txt::after {
	content: "";
	display: block;

	clear: both;
}
.post_txt * {
	max-width: 100%;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


/* **********************************************************
	見出し
********************************************************** */
.post_txt h1,
.post_txt h2,
.post_txt h3,
.post_txt h4,
.post_txt h5,
.post_txt h6 {
	clear: both;
	font-weight: 400;
	line-height: 1.4;
}

.post_txt h1 {
	padding: 10px;
	margin: 0 0 20px;

	background: #094;
	color: #fff;
	font-size: 20px;
}
.post_txt h2 {
	padding: 10px;
	margin: 0 0 20px;

	background: #9fbf4a;
	font-size: 20px;
}
.post_txt h3 {
	padding: 5px 10px;
	margin: 20px 0;

	border-bottom: 1px solid #787878;
	font-size: 18px;
}
.post_txt h4 {
	padding: 3px 10px;
	margin: 15px 0;

	border-bottom: 1px solid #ccc;
	font-size: 16px;
}
.post_txt h5,
.post_txt h6 {
	margin: 15px 0;

	font-size: 16px;
}


/* **********************************************************
	リンク
********************************************************** */
.post_txt a {
	margin: 0 3px;

	color: #000;
	text-decoration: underline;
}
.post_txt a:hover {
	text-decoration: none;
}


/* **********************************************************
	引用文
********************************************************** */
.post_txt blockquote {
	padding: 10px;
	margin: 15px 10px;

	background: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 5px;
	clear: both;
}
.post_txt blockquote p {
	margin: 0;
}


/* **********************************************************
	画像
********************************************************** */
.post_txt img {
	max-width: 100%;
	height: auto;
}
.post_txt .aligncenter {
	display: block;
	margin: 10px auto;

	clear: both;
}
.post_txt .alignleft {
	max-width: calc(100% - 15px);
	float: left;
	margin: 10px 15px 10px 0;
}
.post_txt .alignright {
	max-width: calc(100% - 15px);
	float: right;
	margin: 10px 0 10px 15px;
}


/* **********************************************************
	非順序リスト
********************************************************** */
.post_txt ul {
	margin: 10px 0;
}
.post_txt ul * {
	text-indent: 0;
}
.post_txt ul > li {
	padding: 0 0 0 1em;
	margin: 0 0 5px;
	position: relative;
	z-index: 0;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.post_txt ul > li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}


/* **********************************************************
	順序リスト
********************************************************** */
.post_txt ol {
	margin: 10px 0;

	counter-reset: num;
	list-style: none;
}
.post_txt ol * {
	text-indent: 0;
}
.post_txt ol > li {
	padding: 0 0 0 1em;
	position: relative;
	z-index: 0;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	counter-increment: num;
}
.post_txt ol > li:before {
	content: counter(num)". ";
	position: absolute;
	top: 0;
	left: 0;
}


/* **********************************************************
	定義リスト
********************************************************** */
.post_txt dl {
	margin: 10px 0;
}
.post_txt dt {
	padding: 0 10px;
	margin: 0 0 5px;

	border-left: 5px solid #9fbf4a;
	font-weight: normal;
}
.post_txt dd {
	max-width: calc(100% - 12px);
	margin: 0 0 10px 12px;
}


/* **********************************************************
	テーブル
********************************************************** */
.post_txt table {
	margin: 10px 0;

	border: 1px solid #ccc;
	border-collapse: collapse;
	border-spacing: 0;
}
.post_txt table th,
.post_txt table td {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.post_txt table th {
	padding: 5px 10px;

	background: #f6f6f6;
	border: solid 1px #ccc;
}
.post_txt table td {
	padding: 5px 10px;

	border: solid 1px #ccc;
}

@media screen and (max-width: 600px) {
	.post_txt table {
		width: 100% !important;
	}
}


/* **********************************************************
	その他
********************************************************** */
.post_txt div {
	margin: 10px 0;
}
.post_txt p {
	margin: 5px 0;
}
.post_txt address {
	padding: 5px 10px;
	margin: 10px 0;

	border: 1px dotted #ccc;
}
.post_txt cite {
	font-style: italic;
}
.post_txt strong {
	font-weight: bold;
}
.post_txt sub {
	font-size: 10px;
	vertical-align: sub;
}
.post_txt sup {
	font-size: 10px;
	vertical-align: super;
}
.post_txt pre {
	padding: 10px 15px;

	background: #fff;
	border: 1px solid #ccc;
	overflow: auto;
}


/* **********************************************************
	ギャラリー（プラグイン）
********************************************************** */
.gallery-item dt {
	padding: 0;
	margin: 0;

	border: none;
}
.gallery-item dd {
	min-width: 100%;
	margin: 5px 0 0;
}


/* **********************************************************
	コメント ※使わない場合は削除して下さい。
********************************************************** */
/* コメント内タグ */
.comment-body::after {
	content: "";
	display: block;

	clear: both;
}
.comment-body * {
	max-width: 100%;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.comment-body h1,
.comment-body h2,
.comment-body h3,
.comment-body h4,
.comment-body h5,
.comment-body h6 {
	clear: both;
	font-weight: 400;
	line-height: 1.4;
}

.comment-body h1 {
	padding: 10px;
	margin: 0 0 20px;

	background: #094;
	color: #fff;
	font-size: 20px;
}
.comment-body h2 {
	padding: 10px;
	margin: 0 0 20px;

	background: #9fbf4a;
	font-size: 20px;
}
.comment-body h3 {
	padding: 5px 10px;
	margin: 20px 0;

	border-bottom: 1px solid #787878;
	font-size: 18px;
}
.comment-body h4 {
	padding: 3px 10px;
	margin: 15px 0;

	border-bottom: 1px solid #ccc;
	font-size: 16px;
}
.comment-body h5,
.comment-body h6 {
	margin: 15px 0;

	font-size: 16px;
}

.comment-body a {
	margin: 0 3px;

	color: #000;
	text-decoration: underline;
}
.comment-body a:hover {
	text-decoration: none;
}

.comment-body blockquote {
	padding: 10px;
	margin: 15px 10px;

	background: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 5px;
	clear: both;
}
.comment-body blockquote p {
	margin: 0;
}

.comment-body img {
	max-width: 100%;
	height: auto;
}
.comment-body .aligncenter {
	display: block;
	margin: 10px auto;

	clear: both;
}
.comment-body .alignleft {
	max-width: calc(100% - 15px);
	float: left;
	margin: 10px 15px 10px 0;
}
.comment-body .alignright {
	max-width: calc(100% - 15px);
	float: right;
	margin: 10px 0 10px 15px;
}

.comment-body ul {
	margin: 10px 0;
}
.comment-body ul * {
	text-indent: 0;
}
.comment-body ul > li {
	padding: 0 0 0 1em;
	margin: 0 0 5px;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-indent: -1em;
}
.comment-body ul > li:before {
	content: "・";
}

.comment-body ol {
	margin: 10px 0;

	counter-reset: num;
	list-style: none;
}
.comment-body ol * {
	text-indent: 0;
}
.comment-body ol > li {
	padding: 0 0 0 1em;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	counter-increment: num;
	text-indent: -1em;
}
.comment-body ol > li:before {
	content: counter(num)". ";
}

.comment-body dl {
	margin: 10px 0;
}
.comment-body dt {
	padding: 0 10px;
	margin: 0 0 5px;

	border-left: 5px solid #9fbf4a;
	font-weight: normal;
}
.comment-body dd {
	max-width: calc(100% - 12px);
	margin: 0 0 10px 12px;
}

.comment-body table {
	margin: 10px 0;

	border: 1px solid #ccc;
	border-collapse: collapse;
	border-spacing: 0;
}
.comment-body table th,
.comment-body table td {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.comment-body table th {
	padding: 5px;

	background: #f6f6f6;
	border: solid 1px #ccc;
}
.comment-body table td {
	padding: 5px;

	border: solid 1px #ccc;
}

.comment-body div {
	margin: 10px 0;
}
.comment-body p {
	margin: 5px 0;
}
.comment-body address {
	padding: 5px 10px;
	margin: 10px 0;

	border: 1px dotted #ccc;
}
.comment-body cite {
	font-style: italic;
}
.comment-body strong {
	font-weight: bold;
}
.comment-body sub {
	font-size: 10px;
	vertical-align: sub;
}
.comment-body sup {
	font-size: 10px;
	vertical-align: super;
}
.comment-body pre {
	padding: 10px 15px;

	background: #fff;
	border: 1px solid #ccc;
	overflow: auto;
}


/* コメントエリアレイアウト */
#comments {
	width: 100%;
	padding: 50px 0;
	margin: 0;

	clear: both;
}
#comments .comment-reply-title,
#comments .comment-list-title {
	margin: 0 0 20px;

	font-size: 20px;
}

#comments ol {
	list-style: none;
}
#comments .comment-list {
	margin: 10px 0 35px;
}
#comments .comment-list .comment {
	padding: 10px;
}
#comments .comment-list .comment.odd {
	background: #f1f9f3;
}
#comments .comment-list .comment.even {
	background: #fff;
}
#comments .comment-list .comment-body {
	padding: 15px 10px 15px 80px;
	position: relative;
}

#comments img.avatar {
	position: absolute;
	top: 10px;
	left: 10px;
}
#comments .comment-author,
#comments .comment-meta,
#comments .commentmetadata,
#comments p {
	margin: 0 0 10px;
}

#commentform label {
	display: block;

	font-size: 13px;
}
#commentform .comment-form-cookies-consent {
	display: flex;
	margin: 20px 0;
}
#commentform .comment-form-cookies-consent input {
	margin: 5px 10px 5px 0;
}
#commentform .comment-form-cookies-consent label {
	align-self: center;

	font-size: 14px;
}

#commentform input[type="text"],
#commentform input[type="submit"],
#commentform textarea {
	width: 98%;
	max-width: 98%;
	padding: 5px 3px;
	margin: 0 auto;

	border: 1px solid #ddd;
	box-sizing: border-box;
}

@media screen and (max-width: 600px) {
}
