/***************************
 *
 * ベース
 *
 **************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,Meiryo, メイリオ,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

ol, ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: black;
}
a {
	
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

hr {
	display:block;
	height:1px;
	border:0;	
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}

img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}


/***************************
 *
 * レイアウト
 *
 **************************/
 body {

 }
.l-wrap {
	position: relative;
}
.l-header {

}
.l-nav {
	position: relative;
	background: url(../../img/bg-nav.png) 0 0 repeat-x;
	height: 52px;
	z-index: 100;
}
.l-nav.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.l-contents {
	position: relative;
	top: -3px;
}
.l-nav.fixed + .l-contents {
	top: 52px;
}
.l-footer {

}


/***************************
 *
 * モジュール
 *
 **************************/

/* 共通 */
.clear {
	clear: both;
}
.center {
	text-align: center;
}
.white {
	color: white;
}
.orange {
	color: #FF8000;
}
.fl-l {
	float: left;
}
.fl-r {
	float: right;
}
.img-left {
	float: left;
	margin-right: 5px;
	margin-bottom: 20px;
}
.img-right {
	float: right;
	margin-left: 5px;
	margin-bottom: 20px;
}
.red {
	color: red;
}
.blue {
	color: #003366;
}
small {
	font-size: 80%;
}
.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.7;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.zoom {
	
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);	
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
/* Font */
.sans * {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}
.serif * {
	font-family: '小塚明朝 Pro','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro', "游明朝体", "Yu Mincho" , "HG明朝E", "メイリオ", Meiryo, sans-serif;
}

/* 
Button  
*/
.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-align: center;
	width: 150px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;	
}
.btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #4481bf;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn:hover, .btn:focus, .btn:active {
	color: white;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.btn-240 {
	width: 240px;
}
.btn.btn-blue {
	background: #009FE7;
}
.btn.btn-gray {
	background: #f6f6f6;
}
.btn.btn-gray:hover a {

	color: white;
}
.btn.btn-gray a {
	color: #0064b4;
}
.btn a {
	color: white;	
	text-decoration: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	width: 100%;
	height: 100%;
	padding: 5px 0px;
	font-size: 90%;
	line-height: 1.5em;
}
.btn:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.7;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
}


.icon {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	line-height: 0;
	vertical-align: bottom;
	margin-right: 10px;
}


/* 
Header
*/
.header-h1 {
	color: white;
	text-align: center;
	background: #00B2B2;
	border-bottom: 4px solid #006C6C;
	font-size: 16px;
	font-weight: normal;
	padding: 3px 0;
}
.header-inner {
	background: url(../../img/bg-header.jpg) 0 0 repeat-x;
	height: 93px;
	padding-top: 1px;
	
}
.header .box-960 {

}
.header-logo {
	text-align: center;
	padding-top: 25px;
}
.header-btn {
	position: absolute;
	top: 10px;
	right: 0px;
}
.header-btn li {
	margin-bottom: 5px;
}
.header-btn li a {
	
}

/* 
Nav
*/

.nav-list {
	text-align: center;
	width: 960px;
	margin: 0px auto;
}
.nav-list > li {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 0px 0px;
	background: url(../../img/nav-sep.png) left center no-repeat;
	line-height: 48px;
	margin-left: 0px;
}
.nav-list > li > a {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 13px;
	padding: 0px 0px;
	width: 160px;
	text-decoration: none;
	
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;	
}
.nav-list > li:last-child > a {

}
.nav-list > li > a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*background: #4481bf;*/
	background: #00B2B2;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.nav-list > li:hover a, .nav-list > li:focus, .nav-list > li:active {

	
}
.nav-list > li > a:hover, .nav-list > li > a:hover:before, .nav-list > li:focus:before, .nav-list > li:active:before {
	-webkit-transform: scale(1);
	transform: scale(1);
	color: white;
}

/* 
catch
*/
.catch {
	text-align: center;
	background: #D0C1AA;
}

/* 
Content
*/
.content {
	position: relative;

}
.bg-brown {
	background: #F5F1EB;
}


.box {
	position: relative;
}
.box-960 {
	width: 960px;
	margin: 0px auto;
	position: relative;
}
.box-670 {
	width: 670px;
	margin: 0px auto;
	position: relative;
}
.align-right {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}

/* title */
.l-contents h2 {
	text-align: center;
	font-size: 30px;
	color: #008C8C;
	font-weight: normal;
	margin-bottom: 1em;
}
.l-contents h3 {
	text-align: center;
	font-size: 24px;
	color: #664C00;
	font-weight: normal;
	margin-top: 2em;
	margin-bottom: 1em;
	clear: both;		
}
.l-contents section {
	padding: 60px 0px;
	clear: both;
}

/* Paragraph */
.l-contents p {
	line-height: 1.5em;
	margin-bottom: 1em;
}
#anchor-9 p {
	margin-bottom: 0.5em;
}
.tel {
	margin: 20px auto;
}
.l-contents strong {
	font-size: 20px;
}
.intro {
	text-align: center;
	font-size: 16px;
}
/* LIST */
.list {
	margin: 0px 20px;
}
.list > li {
	background: url(../../img/bullet-1.png) left 4px no-repeat;
	margin-bottom: 0.5em;
	line-height: 1.5em;
	padding: 0px 25px;
}
.list-2 > li {
	background: url(../../img/bullet-2.png) left 5px no-repeat;
	padding: 0px 20px;
}
.list-pic {
	letter-spacing: -0.4em;
	margin-bottom: 2em;
}
.list-pic li {
	width: 300px;
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0;
	text-align: center;
	font-size: 14px;
	color: #666666;
	line-height: 0.8em;
}
.list-pic li:nth-child(2) {
	margin-left: 30px;
	margin-right: 30px;
}
.list-pic li > img {
	display: block;
	margin-bottom: 0px;
}

/* TABLE */
.table {
	border-collapse: collapse;
	margin: 20px auto;
}
.table th {
	background: #F2EDE6;
	border: 1px solid #999999;

	text-align: center;
	font-size: 18px;
	text-align: center;
	padding: 10px;
	width: 30%;

}
.table td {
	border: 1px solid #999999;
	padding: 10px;
	line-height: 1.5em;
	background: white;
}
.table-2 th {
	background: #E2D7C7;
}
table a {
	color: #008C8C;
}




/* 
Footer
*/
.page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 100;
}
.nav-bottom {
	background: #F5F1EB;
	height: 52px;
	margin-top: 50px;
	border-top: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
}

.nav-bottom > ul {
	width: 960px;
	margin: 0px auto;
}
.nav-bottom li {
	float: left;
	width: 50%;	
	line-height: 50px;
	text-align: center;
}
.nav-bottom li.li_2 {
	background: url(../../img/sep-2.jpg) 0 5px no-repeat;	
}
.nav-bottom li a {
	color: black;
	text-decoration: none;
}
.nav-bottom li a:hover {
	text-decoration: underline;	
}
.nav-bottom li img {
	position: relative;
	left: -10px;
	top: 14px;
}
.nav-bottom li.li_2 img {
	top: 20px;	
}
.copyright {
	color: black;
	text-align: center;
	background: white;
	font-size: 10px;
	padding: 10px;
}
