@charset "utf-8";

@media screen and (min-width: 640px) {
/*-----------------------------------------------------------
===  [ base CSS ]  ====================================
------------------------------------------------------------*/
/* ***************************************************************************** */
/*

　目次

-------------------------------------------------------------------------------

　01. base layout
　02. other

*/
/* ***************************************************************************** */
/** -------------------------------------------------------
 ** 01. base layout
 ** ------------------------------------------------------- */
/* html
----------------------------------------------------*/
html {
	font-size: 10px;	/* root 10px 以下rem指定*/
}
/* body
----------------------------------------------------*/
body {
	padding: 0;
	margin: 0;
	color: #333;
	text-align: center;
	background: #000 url(/kihon/common/img/body_bg01.gif) repeat center top;
	font-family: -apple-system, "Helvetica Neue", Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 1.0rem;
	-webkit-text-size-adjust: 100%;
	min-width: 1240px;
}
/* -- link -- */
a:link {
	color: #524e4d;
	text-decoration: none;
}
a:visited {
	color: #524e4d;
	text-decoration: none;
}
a:hover {
	color: #FF6366;
	text-decoration: none;
}
a:active {
	color: #FF6366;
	text-decoration: none;
}
/* -- font -- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
caption,
address,
figcaption,
small,
label,
time,
input,
button,
select {
	font-size: 1.6rem;
	line-height: 1.5;
}
/* -- img -- */
img {
	max-width: 100%;
	height: auto;
}
/* container
----------------------------------------------------*/
#container {
	width: 1200px;
	margin: 0 auto;
	text-align: left;
}
/* header
----------------------------------------------------*/
#header {
	background: #D90000;
	padding: 25px 43px 21px;
}
/* clearfix */
#header:after {
	content: "";
	clear: both;
	display: block;
}
#hdLogo {
	float: left;
}
/* contents
----------------------------------------------------*/
#contents {
	margin: 25px 0;
	padding: 0 30px;
}
/* clearfix */
#contents:after {
	content: "";
	clear: both;
	display: block;
}
/* main
----------------------------------------------------*/
#main {
	width: 810px;
	padding: 28px 28px 60px;
	box-sizing: border-box;
	float: left;
	background: #FDF5D2;
}
/* side
----------------------------------------------------*/
#side {
	width: 310px;
	float: right;
	background: #E6E1D0;
}
#side h2 {
	font-size: 2.0rem;
	background: #D90000;
	color: #fff;
	text-align: center;
	padding: 10px 10px;
}
#side li {
	border-top: 1px solid #999;
	font-weight: bold;
}
#side li a {
	display: block;
	padding: 10px;
}
/* footer
----------------------------------------------------*/
#footer {
	clear: both;
	width: 1200px;
	padding: 15px 0;
	background: #D90000;
}
/* clearfix */
#footer:after {
	content: "";
	clear: both;
	display: block;
}
#copyright {
	text-align: center;
	color: #fff;
}
#copyright small {
	font-size: 1.4rem;
}
/* ***************************************************************************** */
}
