@charset "utf-8";
/*
===========================================================
	StyleCss [lastUp 20150929]
===========================================================
*/
/*----------------------------------------------------
	en 基本設定
----------------------------------------------------*/

html {
	font: 62.5% Arial, Verdana, 'Helvetica Neue', Helvetica, sans-serif;;
	height: 100%; 
}
body {
	background-color: #fbf9f3;
	font-size: 14px; font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;  /* #containerのmin-heightに対して */
	margin: 0;
	padding: 0;
}
div#container {
  margin: 0 auto;
  position: relative; 　/* フッター */
  width: 100%;
  height: auto !important;  /* IE6 */
  height: 100%;             /* IE6 */
  min-height: 100%;
}


img{ 
	vertical-align: bottom;
}

a img { /* 青ボーダー削除 */
	border: none;
}


/*----------------------------------------------------
	リンク・フォント色
----------------------------------------------------*/
a:link {
	color: #00529c;
	text-decoration: underline;
}
a:visited {
	color: #00529c;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

.font-white {
	color: #fff;
}
.font-red {
	color: #C03;
}
.font-orange {
	color: #F30;
}

.font12 {
	font-size: 12px; font-size: 1.2rem;
}
.font18 {
	font-size: 18px; font-size: 1.8rem;
}
.font20 {
	font-size: 20px; font-size: 2.0rem;
}
.bold {
	font-weight: bold;
}


/*----------------------------------------------------
	ヘッダ
----------------------------------------------------*/
header {
	margin: 0;
	padding: 0;
	width: 100%;
}

#head_border {
	width: 100%;
	height: 18px;
	background-color: #023894;
}

/*


.head_title {
	margin: 0 auto;
	padding: 0;
	width: 960px;
}

#head_logo {
	float: left;
	width: 404px;
	height: 72px;
	background: url(../images/head_title.png) no-repeat;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
#head_mail {
	float: right;
	width: 130px;
	height: 22px;
}
#head_tel {
	float: right;
	width: 430px;
	height: 36px;
	background: url(../images/head_txt_tel.png) no-repeat;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

*/

/*----------------------------------------------------
	フッタ
----------------------------------------------------*/

footer {
	width: 100%;
	height: 100px;
	padding: 0;
	background: url(../../images/foot_back_img.png) repeat-x;
	bottom: 0;  /* footer位置 */
	position: absolute;
}
#foot_nav {
	margin: 0 auto;
	padding: 0px;
	width: 960px;
	height: 30px;
}

#foot_nav ol {
	margin-left: -1em;
}
#foot_nav ol li {
    float: left;
	display: inline;
	list-style: none;
	color: #fff;
	text-align: center;
	font-size: 12px; font-size: 1.2rem;
	line-height: 30px;
}
#foot_nav ol li + li::before {
	content: "｜";
}
#foot_nav ol li a {
	color: #fff;
	text-decoration: none;
}
#foot_nav ol li a:hover {
	color: #fff;
	text-decoration: underline;
}
#foot_nav ol li span {
	margin: 0 1em;
}

.foot_text {
	margin: 0 auto;
	width: 960px;
	height: 61px;
	overflow: hidden;
	position: relative;
}
.foot_text_left {
	float: left;
	margin-top: 5px;
	font-size: 12px; font-size: 1.2rem;
	line-height: 135%;
}
.foot_text_right {
	font-size: 12px; font-size: 1.2rem;
	position: absolute;
	right: 0;
	bottom: 0;
	color: #fff;
}


/*----------------------------------------------------
	コンテンツ　共通要素
----------------------------------------------------*/
/*角丸/CSS3-PIE*/
.rounded {
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    zoom: 1;
    position:relative;
}

.div_blue {
	background-color: #023894;
	padding: 5px;
}
.div_orange {
	background-color: #f08200;
	padding: 5px;
}
.div_blue a,
.div_orange a {
	color: #fff;
}




/*content*/
#content {
	clear: both;
	margin: 0 auto;
	padding: 0 0 150px;
	width: 960px;
	text-align: left;
	overflow: hidden;
}
.text-box-10 {
	padding: 10px;
	background-color: #fff;
}
.text-box-20 {
	padding: 20px;
	background-color: #fff;
}


/*ボタン*/
.button {
	display: inline-block;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
/*緑ボタン*/

.button-green {
	position: relative;
	border-top: 1px solid #eeeeee;
	background: #6ba100;
	background: -webkit-gradient(linear, left top, left bottom, from(#90c400), to(#6ba100));
	background: -webkit-linear-gradient(top, #90c400, #6ba100);
	background: -moz-linear-gradient(top, #90c400, #6ba100);
	background: -ms-linear-gradient(top, #90c400, #6ba100);
	background: -o-linear-gradient(top, #90c400, #6ba100);
	color: #fff;
 /*  color: white;
   font-size: 14px;
   font-family: Georgia, serif;*/
   text-decoration: none;
   vertical-align: middle;
   }
.button-green a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.button-green:hover {
   border-top-color: #a1d907;
   background: #a1d907;
   color: #fff;
   }
.button-green:active {
   border-top-color: #90c400;
   background: #90c400;
   }


/*
.button-green {
	position: relative;
	color: #fff;
	transition: none;
	box-shadow: 0 3px 0 #8fc400;
}

.button-green a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.button-green:hover {
	color: #fff;
	background-color: #8fc400;
	box-shadow: 0 3px 0 #8fc400;
}
.button-green:active {
	top: 3px;
	box-shadow: none;
}
*/

/*ボーダー*/
.border-dot {
	border-bottom: 1px dotted #8fc400;
}


/*----------------------------------------------------
	トップ
----------------------------------------------------*/
/*見出し*/
h3.title-top {
	padding-left: 20px;
	background-image: url(../images/title_page_top.png);
	background-repeat: no-repeat;
	font-size: 20px; font-size: 2.0rem;
	line-height: 37px;
}

/*SNS仮ボックス*/
.sns_box {
	overflow: hidden;
}


/*----------------------------------------------------
	ページ
----------------------------------------------------*/
/*見出し*/
h3.title-page {
	padding-left: 20px;
	background-image: url(../images/title_page.png);
	background-repeat: no-repeat;
	font-size: 20px; font-size: 2.0rem;
	line-height: 37px;
}

h4 {
	padding-left: 10px;
	font-size: 20px; font-size: 2.0rem;
	border-left: 5px solid #8fc400;
}
h5 {
	padding-left: 5px;
	font-size: 18px; font-size: 1.8rem;
	border-left: 3px solid #8fc400;
}

/*事務所テキストボックス*/
.text-box-office {
	width: 270px;
	padding: 20px;
	background-color: #fff;
}


/*リスト*/
.list-disc {
	padding-left: 15px;
	list-style: disc outside;
}
.list-none {
	padding-left: 0;
	list-style: none;
}


.list-office dt {
	float: left;
	padding: 10px 0;
	width: 7em;
	border-bottom: 1px dotted #8fc400;
}
.list-office dd {
	padding-left: 7em;
	padding: 10px 0;
	border-bottom: 1px dotted #8fc400;
}

/*お問い合わせ*/
.list-contact {
	list-style: none;
}
.list-contact li {
	padding: 10px 0;
	border-bottom: 1px dotted #8fc400;
}
.list-contact li:first-child {
	border-top: 1px dotted #8fc400;
}
.list-contact li:nth-child(2n+1) {
	background-color: #F5F5F5;
}
.form-title {
	display: block;
	float: left;
	padding-left: 1em;
	width: 15em;
	line-height: 1.5em;
}
.form-contents {
	margin-left: 16em;
	line-height: 1.5em;
}

.form-contents input, textarea {
	border: 0;
	padding: 3px;
	font: 1em sans-serif;
	border: solid 1px #ccc;
}
input:focus{
	outline :none; /*chrome*/
}
