@charset 'utf-8';
/*----------------------------------------------------デフォルトCSS*/
/*------------------------------------global*/
* {
	margin: 0;
	padding: 0;
	word-break: break-all;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	line-height: 1.4;
}
html {
	overflow: scroll;
}
body {
	color: #fff;
	margin: 0 auto;
	font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,Osaka,"MS P ゴシック","MS P Gothic",Verdana,sans-serif;
	background: #000 url(../img/background.jpg) no-repeat center top;
	background-size: cover;
	text-align: center;
}
h1,h2,h3,h4,h5,h6,p,address {
	font-weight: normal;
	font-style: normal;
}
img {
	border: none;
	vertical-align: middle;
}
ol,ul,dl,dt,dd,li {
	list-style: none;
}
a {
	color: #fff;
	text-decoration: none;
	outline: none;
}
a:hover,
a:focus {
	opacity: 0.9;
}
*:focus {
	outline: none;
}
button,
input[type=button],
input[type=submit] {
	-webkit-appearance: none;
	background: #FF9900;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 0.5rem 0.8rem;
	border: none;
	border-radius: 0.3rem;
}
object {
	outline: none;
}
/*------------------------------------table*/
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,tr,td{
	border-width: 1px;
	border-style: solid;
}
/*------------------------------------form*/
form,fieldset {
	border: none;
}
textarea {
	overflow: auto;
}

/*------------------------------------header*/
header .sns li {
	display: inline-block;
}
/*------------------------------------header nav*/
header nav ol {
	display: flex;
	justify-content: center;
}
header nav ol li {
	margin: 1rem 2rem;
	font-size: 0.8rem;
}
header nav ol li a {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, 游明朝, "Yu Mincho", 游明朝体, YuMincho, HGS明朝E, "MS P明朝", "MS PMincho", serif;
	transition: 0.4s;
}
header nav ol li a:hover {
	text-decoration: none;
	color: #66FF00;
}
header nav ol li b {
	display: block;
	font-size: 1.2rem;
}

/*------------------------------------section*/
section {
	display: flex;
	justify-content: center;
	min-width: 1100px;
}
section h2 {
	margin-bottom: 1rem;
}
section main {
	width: 100%;
	max-width: 800px;
}
section main article {
	margin-bottom: 2rem;
}
section main article h3 {
	font-weight: bold;
	margin-bottom: 0.5rem;
	text-align: left;
	padding: 0.5rem;
	background: rgba(100,100,100,0.7);
}

section aside {
	width: 100%;
	max-width: 300px;
}

/*------------------------------------.post*/
article.post {
	padding: 0.5rem;
	background: rgba(0,0,0,0.8);
}
article.post h3 span {
	font-size: 0.6rem;
	display: block;
}
article.post figure {
	margin: 0.5rem auto;
}
article.post figure img {
	width: auto;
	max-width: 100%;
}
article.post .comment {
	text-align: left;
	padding: 0.5rem;
}
article.post .link {
	text-align: right;
}
article.post .link a {
	display: inline-block;
	font-weight: bold;
	padding: 0.1rem 0.4rem;
	background: rgba(200,0,0,0.8);
}
article.post .link a::before {
	content: '>';
	margin-right: 0.4rem;
}

/*------------------------------------.list*/
article.list {
	border-bottom: 1px solid #555;
	padding: 0.3rem;
}
article.list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
article.list a:hover {
	background: rgba(100,100,100,0.2);
}
article.list a > span {
	width: 100px;
}
article.list a > span img {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: cover;
}
article.list a p {
	width: 100%;
	text-align: left;
	padding: 0.2rem 0.5rem;
}
article.list a p span {
	display: block;
	font-size: 0.8rem;
}
article.list a p b {
	display: block;
	width: 100%;
}



/*------------------------------------footer nav*/
footer nav ol li {
	display: inline-block;
	font-size: 0.8rem;
	margin: 1rem;
}
footer nav ul {
	margin-bottom: 1rem;
}
footer nav ul li {
	display: inline-block;
}
footer nav ul li img {
	width: 1.5rem;
}

footer address {
	letter-spacing: 0.3rem;
	font-size: 0.7rem;
}

@media (max-width: 640px) {
	header h1 img {
		max-width: 50vw;
	}
	header nav ol {
		display: none;
	}
	header nav {
		display: block;
		background: #339999 url(../img/bt_menu.png) no-repeat center center;
		width: 55px;
		height: 55px;
		position: fixed;
		top: 0;
		left: 0;
	}
	section {
		display: block;
		min-width: unset;
	}
	section aside,
	section main {
		max-width: unset;
	}

	footer {
		padding: 0.3rem;
	}

	footer nav {
		transition: 0.2s;
		position: fixed;
		top: 0;
		left: -100vw;
		background: rgba(0,0,0,0.9);
		width: 60vw;
		height: 100vh;
		overflow: auto;
	}
	body.visible footer nav {
		left: 0;
	}
	footer nav ol li {
		display: block;
		margin: 0;
		text-align: left;
		border-bottom: 1px solid #333;
		font-size: 1.1rem;
		font-weight: bold;
	}
	footer nav ol li a {
		display: block;
		padding: 1rem;
	}

	footer address {
		letter-spacing: unset;
	}
	footer nav ul {
		padding: 1rem;
		text-align: left;
	}
	footer nav ul li img {
		width: auto;
	}


}