@charset "utf-8";

html {
	box-sizing: border-box;
	/* overflow: hidden; */
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* 基本要素 */
body {
	padding: 0;
	font-size: 1em;
	line-height: 1.8em;
	font-family: "游ゴシック", "ヒラギノ角ゴシック", "ＭＳ Ｐゴシック", "メイリオ", Meiryo, sans-serif;
}

p {
	font-size: 1.1em;
	line-height: 1.52em;
	margin: 10px 0 10px 0;
}

pre {
	font-size: 1.1em;
}

pre {
	background-color: black;
	color: white;
	padding: 10px;
}

a {
	color: blue;
}

a.green {
	color: yellowgreen;
	font-size: 0.9em
}

a:hover {
	color: orange;
	text-decoration: none;
}

a img {
	transition: opacity 0.2s linear;
}

a:hover img {
	opacity: 0.7;
}

h1 {
	font-size: 1.6em;
	margin: 10px 0 10px 0;
	padding: 0.5em;/*文字周りの余白*/
	color: #010101;/*文字色*/
	text-decoration: underline;
	/* background: #aeebc5; */
	/* border-left: solid 6px green;下線 */
	text-align: center;
}

.h1_cate:before {
	content: "【";
}

.h1_cate:after {
	content: "】";
}

h2 {
	font-size: 1.4em;
	margin: 20px 0 10px 0;
	padding: 0.5em;/*文字周りの余白*/
	color: #010101;/*文字色*/
	text-decoration: underline;
}

h3 {
	margin: 20px 0 10px 0;
	font-size: 1.4em;
	/* background: linear-gradient(to bottom, transparent 78%, #66ccff 78%); */
}

h4 {
	font-size: 1.2em;
	margin: 20px 0 10px 0;
}

.main_article table{
	margin: 20px auto;
}


table {
	border: solid 1px #000000;
	border-collapse: collapse;
}

th {
	background: navy;
	color: white;
	font-weight: 700;
}

td,
th {
	font-size: 1em;
	border: 1px black solid;
	padding: 10px;
	vertical-align: top;
}

caption {
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 4px;
}

blockquote {
	border: 1px solid #ccc;
	line-height: 1.7;
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 40px 10px;
	background: #f6f6f6;
}

blockquote::before,
blockquote::after {
	display: block;
	position: absolute;
	content: 'format_quote';
	width: 40px;
	height: 40px;
	font-family: 'Material Icons';
	font-size: 35px;
	white-space: nowrap;
	word-wrap: normal;
}

blockquote::before {
	top: 20px;
	left: 10px;
	transform: rotate(-180deg);
}

blockquote::after {
	right: 10px;
	bottom: 20px;
}


svg {
	margin: 10px 0 0 4px;
	display: block;
}


/** コンテンツ全体 **/

.container {
	width: 96%;
	margin: auto;
	padding-bottom: 10px;
}

/* ▽ヘッダー */
header {
	width: 100%;
	margin-bottom: 15px;
	background-color: green;
	color: white;
	padding: 6px;
	box-sizing: border-box;
}

header .site_name {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	margin: 0px 0 10px 0;
}

header a {
	color: white;
	text-decoration: none;
}


ul.note,ol.note{
	margin: auto;
	text-align: left;
	max-width: 80%;
}
ul.note li,
ol.note li{
	width: 98%;
}
/* △ヘッダー*/

/* メインコンテンツ */

.breadcrumb {
	padding: 0;
	margin-bottom: 10px;
	list-style: none;
}

.breadcrumb li {
	display: inline;
	/*横に並ぶように*/
	list-style: none;
	font-weight: bold;
	/*太字*/
}

.breadcrumb li:after {
	/* >を表示*/
	content: '>';
	padding: 0 0.2em;
	color: #555;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: blue;
	/*色*/
}

.breadcrumb li a:hover {
	text-decoration: underline;
}

.date_ins{
	font-size: 0.92em;
	text-align: right;
}

/* prev next */

.prev-next-link {
	margin-top: 10px;
	margin-bottom: 10px;
	display: table;
	width: 100%;
}

.prev-next-link p {
	display: inline;
}

.prev-next-link a {
	text-decoration: none;
	color: #000;
}

.prev-next-link a:hover {
	background-color: #f6f6f6;
}

.prev-label {
	font-size: .9rem;
	color: #000;
	text-align: left;
	display: table-cell;
}

.next-label {
	font-size: .9rem;
	color: #000;
	margin-right: 4px;
	text-align: right;
	display: table-cell;
}

.next_text {
	text-align: right;
}



.hide {
	display: none;
}

footer {
	margin: 40px auto;
	text-align: center;
}

.img_respo{
	margin: auto;
	text-align: center;

}
.img_respo img{
	max-width: 100%;
	height: auto;
}

.tbl_basic1 td:nth-of-type(1){
	background-color: gray;
	color: white;
	vertical-align: middle;
}
aside.gads_728 {
	max-width: 100%;
	margin-bottom: 10px;
}
aside.gads_resp{
	margin-bottom: 10px;
}
/* all */
@media all and (max-width: 400px) {
	body {
		font-size: 0.9em;
	}
	.container{
		width: 98%;
	}

	header .site_name {
		font-size: 1.4em;
	}

	header .description {
		font-size: 0.8em;
	}

	#header_desc span {
		display: none;
	}

	nav.kanren ul,
	.main_article ul{
		width: 80%;
	}

	button {
		font-size: 1em;
		height: 20px;
	}

}

