@charset "UTF-8";

/* テキストの自動拡大を無効化 */
body {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* ページ全体の設定 */
body {
	margin: 0;
	font-family: sans-serif;
}

/* 「ヘッダー」ブロック */
header {
	padding: 25px 15px;
	color: #45e403;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	font-family: 'Exo 2', sans-serif;
}

header img {
	width: 60px;
	height: auto;
	vertical-align: bottom;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

/* ナビゲーションメニュー */
nav ul {
	list-style-type: none;
	padding: 0;
	color: #666666;
	font-size: 12px;
	display: flex;
	justify-content: center;
}

nav li:not(:last-child) {
	margin-right: 20px;
}

/* 「コンテンツ」ブロック */
.contents {
	background-color: #29a1e2;
	padding: 40px 15px;
}

/* 記事 */
article {
	background-color: #ffffff;
	padding: 20px;
}

h1 {
	font-size: 24px;
	font-family: 'Exo 2', sans-serif;
	margin-bottom: 8px;
	
}

p {
	line-height: 2;
}

/* 画像 */
img {
	width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

hr {
	margin: 0px;
	padding: 0px;
	margin-bottom: 8px;
}

/* 投稿日 */
time {
	color: #666666;
	margin-bottom: 15px;
	display: block;
}

/* サブメニュー */
aside {
	background-color: #ffffff;
	padding: 20px;
	margin-top: 40px;
}

h2 {
	color: #45e403;
	font-family: 'Exo 2', sans-serif;
	font-weight: normal;
	text-align: center;
}

/* サブメニュー：プロフィール */
.profile img {
	width: 100px;
	
}

.profile figure {
	text-align: center;
}

.profile p {
	font-size: 14px;
	text-align: center;
}

/* サブメニュー：注目記事メニュー */
.topics ul {
	list-style-type: none;
	padding: 0;
}

.topics a {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.topics figure {
	width: 100px;
	flex: none;
}

.topics img {
	vertical-align: bottom;
}

.topics h3 {
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
}


/* 「フッター」ブロック */
footer {
	background-color: #45e403;
	padding: 25px 15px;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	font-family: 'Exo 2', sans-serif;
}


/* トップページ： ヒーローイメージ */
.hero {
	background-size: cover;
	background-position: center;
	height: 532px;
	color: #ffffff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}


.hero h1 {
	font-size: 48px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 10px #444444;
	text-align: center;
}

.hero p {
	font-weight: bold;
	text-shadow: 0 0 10px #444444;
	margin-top: 0;
}

.hero a {
	border: solid 2px #ffffff;
	padding: 10px 40px;
	border-radius: 10px;
	background-color: rgba(125, 245, 12, 0.808);
	margin-top: 10px;
}

/* トップページ： 記事一覧 */
.toppost {
	padding: 15px;
}

.toppost div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.toppost article {
	padding: 0;
	width: 48%;
	flex: none;
}

.toppost article:not(:nth-last-child(-n+2)) {
	margin-bottom: 12px;
}

.toppost h3 {
	margin: 0;
	font-size: 14px;
}


/* 「サイトについて」ページ */
table {
	border-collapse: collapse;
}



th, td {
	border: solid 1px black;
	padding: 18px;
}

.narrow th,td {
	padding: 6px
}

th {
	width: 4em;
	text-align: center;
	color: black;
}
.thwide {
	width: 8em;
}

.th-wide-wide {
	width: 30em;
	text-align: left
}




td {
	text-align: center
}

caption	{font-weight: bold;
	border-radius: 10px;
	padding: 5px;
	margin-bottom: 10px}



	/* 「お問い合わせ」ページ */
input, textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
}

textarea {
	height: 120px;
}

input[type="submit"] {
	background-color: #ffaa00;
	border: none;
	-webkit-appearance: none;
}

/* ==== 記事 ==== */
.post h3{
	margin-bottom:0;
	margin-block-start: 1em;
	margin-block-end: 0
}

.post p {
	margin:0
} 

.post span {
	color:red
} 

.post ol {
	margin-top:0;
	margin-bottom: 0;
	margin-block-start: 0;
	margin-inline-start: 2em;
	padding: 0
} 

.post ul {
	margin-top:0;
	margin-bottom: 0;
	margin-block-start: 0;
	margin-inline-start: 2em;
	padding: 0
} 

/* ==== PC版 ==== */
@media (min-width: 600px) {

/* PC版：コンテナ */
.container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* PC版：「ヘッダー」ブロック内のコンテナ */
header .container {
	display: flex;
	justify-content: space-between;
}

/* PC版：記事 */
article {
	padding-left: 60px;
	padding-right: 60px;
}

h1 {
	font-size: 34px;
}

p {
	font-size: 18px;
}

/* PC版：トップページ： ヒーローイメージ */
.hero h1 {
	font-size: 72px;
}

/* PC版：トップページ： 記事一覧 */
.toppost article {
	width: 23%;
}

.toppost article:not(:nth-last-child(-n+2)) {
	margin-bottom: 0;
}

/* PC版：「お問い合わせ」ページ */
input[type="submit"] {
	width: 250px;
}

}
/* ===== PC版の設定ここまで ===== */



/* ==== PC版（大） ==== */
@media (min-width: 1025px) {

/* PC版（大）：コンテナ */
.container {
	max-width: 1100px;
}

/* PC版（大）：「コンテンツ」ブロック内のコンテナ */
.contents .container {
	display: flex;
	justify-content: space-between;
}

/* PC版（大）：記事 */
article {
	width: 68%;
	box-sizing: border-box;
}

/* PC版（大）：サブメニュー */
.sub {
	width: 28%;
}

/* PC版（大）：プロフィール */
.profile {
	margin-top: 0;
}

}
/* ===== PC版（大）の設定ここまで ===== */

