@charset "UTF-8";
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	}

html, body {
	height: 100%;
	}
body {
	margin: 0;
	font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	color: #777777;
	font-size: 0.95em;
	background: #f5f5f5;
	text-align: center;
	}


/*全部の親*/
#oya {
	background: #e8e8e8;
	height: 100%;
	}


/*ヘッダ*/
#header {
	background: #e8e8e8;
	}


/*メイン*/
#main {
	background: #e8e8e8;
	border-top: solid 2px #f5f5f5;
	padding: 30px 0;
	}


/*サムネ横並べ*/
.square_contents {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	height: 100%;
	}
 
.square_contents a {
	display: block;
	position: relative;
	width: 23%;
	margin: 1%;
	}
 
.square_contents a::before {
	content: "";
	display: block;
	padding-top: 100%;
	}
 
.square_contents img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	border: solid 1px #999999;
	}


/*記事内設定*/
.kiji img {
	max-width: 100%;
	height: auto;
	border: solid 1px #999999;
	margin: 1.0em 0;
	}
.kiji {
	margin-bottom: 50px;
	padding: 0 10px;
	}
.comment {
	display: inline-block;
	max-width: 500px;
	text-align: left;
	margin-bottom: 2.0em;
	}


/*ページネーション*/
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	list-style-type: none;
	padding: 0;
	margin-top: 50px;
	}
.pagination a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3em;
	height: 3.3em;
	border: 1px solid #999999;
	border-radius: 1px;
	color: #666666;
	}

.pagination a:hover {
	background: #ffffff;
	}

.pagination .current a {
	background-color: #ffffff;
	pointer-events: none;
	}


/*フッタ*/
#bottom {
	display: block;
	background: #e8e8e8;
	border-top: solid 1px #f5f5f5;
	}

#footer {
	background: #e8e8e8;
	padding-top: 50px;
	margin-top: auto;
	 }



/*他*/
h1 {
	font-size: 2.5em;
	line-height: 1.8em;
	}
h2 {
	line-height: 1.8em;
	}

a {
	text-decoration: none;
	color: #4682b4;
	}

h1 a, h1 a:link, h1 a:visited {
	color: #777777;
	}


.right {
	text-align: right;
	}
.center {
	text-align: center;
	}
.date {
	color: #999999;
	font-size: 0.9em;
	}

/*aboutページ*/
.about {
	border-collapse: collapse;
	width: 100%;
	max-width: 400px;
	margin: auto;
	}
.about th, .about td {
	border: 1em solid #e8e8e8;
	}
.about th {
	background-color: #f5f5f5;/*aboutテーブル、リンクセルの色*/
	font-weight: bold;
	text-align: center;
	width: 50%;
	min-width: 4em;
	}
.about th  a {
	display: block;
	padding: 1em;
	 }
 .about td {
	text-align: left;
	} 


/*メディアクエリ*/
@media (max-width: 459px) {
.square_contents a {
	width: 31%;
	margin: 1%;
	}
.thum {
	width: 32.3333333%;
	}
}

@media (min-width: 460px) and (max-width: 599px) {
.square_contents a {
	width: 31%;
	margin: 1%;
	}
.thum {
	width: 32.3333333%;
	}
}

@media (max-width: 767px) {
#header, #main, #footer {
	padding: 10px;
	}
#bottom {
	padding-right: 10px;
	}
}

@media (min-width: 768px) {
#header, #main, #footer {
	padding: 30px;
	}
#bottom {
	padding-right: 30px;
	}
}	

@media (min-width: 1040px){
#oya {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	}
}

