@charset "utf-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* 全体 */

* {
	box-sizing: border-box;
	outline: none;
}

html,
body {
	width: 100%;
	min-height: 100%;
}

a { transition: 0.3s; }
a img {
	vertical-align: top;
	transition: 0.3s;
}
a img:hover { opacity: 0.7; }

header,
footer,
#content {
	width: 100%;
	overflow: hidden;
	position: relative;
	clear: both;
}
.innerbox {
	width: 100%;
	max-width: 980px;
	height: auto;
	margin: auto;
	overflow: hidden;
	position: relative;
}

body {
	font-family: 'Noto Sans Japanese', sans-serif;
	color: #333;
	font-weight: 200;
	background-color: #fff2e3;
}

/* header */
header .innerbox {
	padding-top: 30px;
	margin-bottom: 20px;
}
header h1 {
	width: 100%;
	max-width: 461px;
	max-height: 85px;
	floa: left;
}
header h1 a {
	text-indent: -9998px;
	background: url(../img/title_logo.png) no-repeat left top;
	display: block;
	width: 100%;
	height: 0;
	padding: calc( 85 / 461 * 100% );
}

header nav {
	position: absolute;
	top: 0;
	right: 0;
}
header nav ul {
	display: table;
	table-layout: fixed;
}
header nav ul li {
	display: table-cell;
}
header nav a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	background-color: #ff6d04;
	display: block;
	padding: 8px 18px;
}
header nav a:hover { background-color: #090; }
header #biztime {
	font-size: 18px;
	position: absolute;
	bottom: 0;
	right: 0;
}

/* footer */
footer {
	background-color: #fff;
}
footer .innerbox {
	padding-top: 20px;
	padding-bottom: 30px;
}
footer .pic {
	float: left;
}
footer .text {
	float: left;
	padding-left: 10px;
}
footer .text .name {
	font-weight: 600;
	padding-bottom: 20px;
}
footer .text .address {
	font-size: 14px;
	line-height: 1.6;
}
footer nav {
	float: right;
}
footer nav li {
	padding-bottom: 10px;
}
footer nav li:before {
	content: "■";
	font-size: 14px;
	color: #ff6d04;
	padding-right: 5px;
}
footer nav li a {
	font-size: 14px;
	color: #333;
	text-decoration: none;
}
footer nav li a:hover {
	text-decoration: underline;
	color: #090;
}
footer small {
	font-size: 14px;
	text-align: center;
	background-color: #fff2e3;
	border-top: solid 1px #ff6d04;
	padding-top: 20px;
	padding-bottom: 15px;
	display: block;
}


/* content */
.col2,
.col3 {
	height: auto;
	overflow: hidden;
	margin-bottom: 20px;
}
.col2 li,
.col3 li {
	float: left;
}
.col2 li {
	width: 480px;
	margin-right: 20px;
}
.col3 li {
	width: 310px;
	margin-right: 25px;
}
.col2 li:last-child,
.col3 li:last-child {
	margin-right: 0;
}


/* コンテンツ下部リンク */
.content_bottom {
	width: 100%;
	display: table;
	table-layout: auto;
	clear: both;
}
.content_bottom li  {
	font-size: 14px;
	padding: 10px 10px 30px;
	display: table-cell;
}
.content_bottom li a {
	background-color: #fff;
	width: 100%;
	height: auto;
	display: block;
}
.content_bottom li a img {
	width: 100%;
	height: auto;
}


/* パンくず */
#pankuzu {
	margin-bottom: 10px;
	margin-left: 10px;
}
#pankuzu li {
	display: inline-block;
}
#pankuzu li a {
	text-decoration: none;
}
#pankuzu li a:hover {
	text-decoration: underline;
	color: #090;
}
#pankuzu li:after {
	content: ">";
	margin-right: 10px;
	margin-left: 10px;
}
#pankuzu li:last-child:after {
	content: "";
	margin-right: 0;
	margin-left: 0;
}

/* 汎用 */

.mb20 {margin-bottom: 20px;}