@charset "utf-8";
/*-----------------------------------------------------------------
	style.writings.css
	
	By Tomoaya KONNO

	Last modified: 	October 14, 2018
-------------------------------------------------------------------*/
/*====================
	basic structure
====================*/
body {
	font-family: "San Francisco", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Segoe UI", "Yu Gothic UI", "游ゴシックUI", "メイリオ", Meiryo, sans-serif;
	font-size: 24px;
	line-height: 1.85em;
	letter-spacing: 0;
}
#wrapper {
	width: 1200px;
	margin: 0 auto;
	height: auto;
}
#header {
	box-sizing: border-box;
	width: 1200px;
	height: auto;
	display: block;
	float: left;
}
#header_desc {
	padding: 0.5em 0.8em;
	display: block;
	float: left;
}
#header_author {
	padding: 1em 0.8em;
	display: block;
	float: right;
}
#footer {
	box-sizing: border-box;
	width: 1200px;
	margin: 0 auto;
	padding: 1.5em;
}
/*====================
	lines
====================*/
h1 {
	display: inline-block;
	font-weight: bold;
	font-size: 42px;
	border: none;
	margin: 0 0 1em 0;
	padding: 0;
	clear: both;
}
h3 {
	display: inline-block;
	font-weight: bold;
	padding: 0 0.5em;
	margin: 3em 0 0 1em;
	border: none;
	border-top: 3px solid #cccccc;
	border-bottom: 3px solid #cccccc;
}
p {
	margin: 0 1em 0 1em;
	text-indent: 2em;
}
.button {
	text-indent: 0;
}
/*====================
	Images
====================*/
figure {
	overflow: visible;
	margin: 30px 20px 40px 20px;
}
figcaption {
	font-size: 20px;
	line-height: 1.2em;
	text-align: center;
	opacity: 0.6;
}
img {
	margin: 0;
	padding: 0;
	width: 300px;
	height: auto;
}
/*====================
	responsive
====================*/
@media screen and (max-width: 1250px) {
#wrapper,
#header,
#footer {
	width: 980px;
}
}
@media screen and (max-width: 1000px) {
#wrapper,
#header,
#footer {
	width: 100%;
}
}
@media screen and (max-width: 580px) {		/*580: By a MediaBox setting*/
figure {
	margin: 30px 0 60px 0;
	width: 100%;
}
img {
	width: 100%;
	height: auto;
	pointer-events: none;
	cursor: default;
}
}
/*EOF*/