@charset "utf-8";
/**
-------------------------------------------------------------------------------

bootstrap 調整

---------------------------------------------------------------------------- */
.row {
  margin-right: -12px;
  margin-left: -12px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-right: 12px;
  padding-left: 12px;
}
/**
-------------------------------------------------------------------------------

  body

---------------------------------------------------------------------------- */
body {
	min-width: 320px;
	font-family: "Meiryo","メイリオ", sans-serif;
}
/**
-------------------------------------------------------------------------------

  レイアウト

---------------------------------------------------------------------------- */
#contents {
	clear: both;
	overflow: hidden;
	box-sizing: border-box;
}
#contents #main {
	float: left;
	box-sizing: border-box;
	width: 700px;
}
#contents #sidebar {
	float: right;
	box-sizing: border-box;
	width: 300px;
}
.inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 1032px;
	margin: 0 auto;
}
@media screen and (max-width:1031px) {
	#contents #main {
		float: none;
		width: 100%;
	}
	#contents #sidebar {
		float: none;
		margin: 0 auto;
	}
	.inner {
		padding: 0 10px;
	}
}
/**
-------------------------------------------------------------------------------

  header

---------------------------------------------------------------------------- */
#header {
	background-image: url(../images/bg_header.jpg);
	background-repeat: repeat;
}
#header:after {
	content: '';
	display: block;
	height: 5px;
	margin: 0;
	border-top: 0;
	background: #c4e17f;
	border-radius: 5px;
	background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}
#header .inner {
	position: relative;
}
/* ヘッダー　説明 */
#header_description h1 {
	margin: 0;
	font-size: 11px;
	line-height: 1.2;
	color: #fff;
}
/* ヘッダー　サイト名 */
#header_site_name {
	position: absolute;
	top: 100%;
	z-index: 5;
	margin-top: 5px;
}
/* ヘッダー　ハンバーガーメニュー */
#header_nav_btn {
	display: none;
	position: absolute;
	top: 5px;
	right: 5px;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	margin: 0;
	padding: 0;
	font-size: 30px;
	line-height: 1;
}
/* ヘッダー　ナビ */
#header_nav {
	float: left;
}
#header_nav ul {
	float: left;
	list-style: none;
	clear: both;
	overflow: hidden;
	padding: 0;
}
#header_nav ul li {
	float: left;
}
#header_nav ul li a {
	display: block;
	padding: 15px;
}
/* ヘッダー　電話 */
#header_tel {
	float: right;
}
/**
-------------------------------------------------------------------------------

ハンバーガーメニュー化

---------------------------------------------------------------------------- */
@media screen and (max-width:1031px) {
	#header_description h1 {
		padding-right: 50px;
	}
	/* ヘッダー　サイト名 */
	#header_site_name {
		position: relative;
		top: 0;
		width: 200px;
		margin-bottom: 5px;
	}
	#header_site_name img {
		border-radius: 5px;
	}
	/* ヘッダー　ナビボタン */
	#header_nav_btn {
		display: block;
	}
	/* ヘッダー　ナビ */
	#header_nav {
		display: none;
		float: none;
	}
	#header_nav ul {
		float: none;
	}
	#header_nav ul li {
		width: 100%;
		text-align: center;
	}
	/* ヘッダー　電話 */
	#header_tel {
		float: none;
	}
	#header_tel img {
		margin-right: auto;
		margin-left: auto;
	}
}

/**
-------------------------------------------------------------------------------

スライダー

---------------------------------------------------------------------------- */
#slider {
	position: relative;
	margin-bottom: 60px;
	height: 600px;
}
#slider .inner {
	position: absolute;
	padding-top: 208px;
	top: 0;
	right: 0;
	left: 0;
}
#slide_text {
	position: relative;
}
#slide_bana {
	position: relative;
	top: -50px;
}
@media screen and (max-width:1031px) {
	#slider {
		overflow: hidden;
		height: auto;
	}
	#slider .inner {
		position: relative;
		padding-top: 10%;
	}
	#slider .bx-wrapper {
		position: absolute;
	}
	#slide_bana {
		top: 0;
	}
}
/**
-------------------------------------------------------------------------------

バナーエリア

---------------------------------------------------------------------------- */
.banner_area {
	clear: both;
	overflow: hidden;
	position: relative;
	margin-bottom:50px;
}
.banner_area_left {
	width: 60.07%;
}
.banner_area_right_top,
.banner_area_right_bottom {
	position: absolute;
	right: 0;
	width: 34.88%;
}
.banner_area_right_top {
	top: 0;
}
.banner_area_right_bottom {
	bottom: 0;
}
.banner_ec{
	margin-bottom: 50px;
	text-align: center;
}
.banner_ec img{
	max-width: 100%;
	height: auto;
}

@media screen and (max-width:767px) {
	.banner_area img {
		margin-right: auto;
		margin-left: auto;
		width: 100%;
	}
	.banner_area_left,
	.banner_area_right_top,
	.banner_area_right_bottom {
		position: relative;
		width: 100%;
		margin-bottom: 15px;
	}
}
/**
-------------------------------------------------------------------------------

見出し

---------------------------------------------------------------------------- */
.midashi_img h2{
	height: 50px;
	margin: 0;
}
/**
-------------------------------------------------------------------------------

サムネイル

---------------------------------------------------------------------------- */
.try-thumbnail {
	margin-bottom: 50px;
}
.try-thumbnail img {
	margin-right: auto;
	margin-left: auto;
	margin-bottom:12px;
}
.try-thumbnail h3 {
	min-height: 35px;
	margin: 0;
	color: #212121;
	font-size: 14px;
	line-height: 1.2;
}
.try-thumbnail a {
	min-height: 24px;
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 24px;
	border: 0;
	border-radius: 0;
}
/**
-------------------------------------------------------------------------------

新着情報

---------------------------------------------------------------------------- */
#news {
	height: 144px;
	margin-bottom: 50px;
	padding: 20px;
	background-color: #FFF1C8;
}
#news_area {
	clear: both;
	overflow-y: scroll;
	height: 100%;
	padding-right: 20px;
}
/* 日付 */
.news_date {
	float: left;
	width: 8em;
	padding: 0 15px 0 5px;
	font-size: 13px;
	line-height: 1.2;
	color: #212121;
	border-right: 1px solid #212121;

}
/* テキスト */
.news_text {
	margin-bottom: 15px;
	padding: 0 0 5px 10em;
	font-size: 13px;
	line-height: 1.2;
	color: #212121;
	border-bottom: 1px dotted #8A8A7B;
}
.news_text p {
	margin: 0;
}
@media screen and (max-width:767px) {
	.news_date {
		float: none;
		padding-bottom: 5px;
		border: none;
	}
	.news_text {
		padding-left: 5px;
	}

}
/**
-------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------- */
#footer {
	background-image: url(../images/bg_footer.jpg);
	background-repeat: repeat;
}
#footer_upper {
	padding-bottom: 5px;
}
#footer_nav ul {
	list-style: none;
	padding: 0;
	text-align: center;
}
#footer_nav ul li {
	display: inline-block;
	color: #fff;
	font-size:14px;
	letter-spacing:1pt;
	line-height:120%;
}
#footer_nav ul li:after {
	content: '｜';
}
#footer_nav ul li:last-child:after {
	display: none;
}
#footer_nav ul li a {
	display: inline-block;
	padding: 15px 0;
	color: #fff;
}
#footer_lower {
	 background-color: #F09100;
}
#footer_credits {
	display: block;
	color: #fff;
	font-size : 11px;
	letter-spacing:1pt;
	line-height : 15px;
	text-align: center;
}
/**
-------------------------------------------------------------------------------

  pagetitle

---------------------------------------------------------------------------- */
#pagetitle {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 50px;
	background-position: center center;
}
#pagetitle:after {
	position: absolute;
	top: 0;
	z-index: 3;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('../images/upper_page_title.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#pagetitle .gw{
	position: relative;
	overflow: hidden;
	display: table;
	height: 252px;
	width: 100%;
}
#pagetitle .inner {
	position: relative;
	z-index: 2;
	display: table-cell;
	width: 100%;
	font-size: 30px;
	font-weight: normal !important;
	color: #FF7F00;
	text-align: center;
	vertical-align: middle;
}
#pagetitle h2 {
	padding: 10px 0;
	font-family: HGPGothicE;
	font-size: 28px;
	letter-spacing: 1pt;
	line-height: 1.2;
	background-color:rgba(255,255,255,0.8);
}
#pagetitle h2 small{
	vertical-align: middle;
	margin-left: 15px;
	padding-left: 15px;
	color: #FF7F00;
	border-left: 1px solid #FF7F00;

}
/**
-------------------------------------------------------------------------------

  midashi

---------------------------------------------------------------------------- */
.midashi_a,
.midashi_b,
.midashi_c {
	clear: both;
	margin-bottom: 40px;
	font-family: "Meiryo UI";
	letter-spacing: 2pt;
	line-height: 1.2;
}
.midashi_a img,
.midashi_b img,
.midashi_c img {
	padding-right: 15px;
}
.midashi_a {
	font-size:24px;
	font-weight: bold;
	color:rgb(255,127,0);
}
.midashi_a:after {
	content: '';
	display: block;
	height: 5px;
	margin: 0;
	border-top: 0;
	background: #c4e17f;
	border-radius: 5px;
	background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
	background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}
.midashi_b {
	font-size:20px;
	color:rgb(0,177,177);
}
.midashi_c {
	font-size:20px;
	color:rgb(241,151,24);
}
/**
-------------------------------------------------------------------------------

  callout

---------------------------------------------------------------------------- */
.calloutset.row {
	margin-right: -10px;
	margin-left: -10px;
}
.calloutset > div {
	margin-bottom: 50px;
	padding-right: 10px;
	padding-left: 10px;
}
/**
-------------------------------------------------------------------------------

  article

---------------------------------------------------------------------------- */
.article {
	margin-bottom: 50px;
}
.article h4 {
	margin: 0 0 15px;
	font-family:"Meiryo UI";
	font-size:20px;
	letter-spacing:2pt;
	line-height:120%;
	color:rgb(0,177,177);
}
.article .txtbox {
	font-family:"Meiryo UI";
	font-size:14px;
	letter-spacing:1pt;
	line-height:160%;
	color:rgb(31,31,31);
}
/**
-------------------------------------------------------------------------------

  line_dot

---------------------------------------------------------------------------- */
.line_dot {
	width: 100%;
	height: 7px;
	margin-bottom: 50px;
	background-image: url('../images/line_dot.png');
}
/**
-------------------------------------------------------------------------------

  textset

---------------------------------------------------------------------------- */
.textset {
	margin-bottom: 50px;
	padding: 20px;
	background-color: #FFF1C8;
}
.textset h4 {
	margin: 0 0 10px;
	font-family:"Meiryo UI";
	font-size:20px;
	letter-spacing:2pt;
	line-height:120%;
	color:rgb(241,151,24);
}
.textset .txtbox {
	font-family:"Meiryo UI";
	font-size:14px;
	letter-spacing:1pt;
	line-height:160%;
	color:rgb(17,17,17);
}
/**
-------------------------------------------------------------------------------

  flowset

---------------------------------------------------------------------------- */
.flowset {
	position: relative;
	margin-bottom: 60px;
	padding-top: 50px;
}
.flowset .titlebox {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: table;
	width: 200px;
	height: 200px;
	margin-left: 12px;
	padding: 30px;
	font-family:"Meiryo UI";
	font-size:21px;
	letter-spacing:1pt;
	line-height:120%;
	color:rgb(46,154,133);
	background-image: url('../images/bg_step.png');
}
.flowset .titlebox p {
	display: table-cell;
	text-align:center;
	vertical-align: middle;
}
.flowset.txtbox {
	font-family:"Meiryo UI";
	font-size:14px;
	letter-spacing:1pt;
	line-height:160%;
	color:rgb(31,31,31);
}
/* フローセット　矢印 */
.flowset+.flowset::before {
	position: absolute;
	top: -60px;
	content: '';
	display: block;
	width: 100%;
	height: 60px;
	background: url('../images/icon_arrow.png') no-repeat;
	background-position: center center;
}
/**
-------------------------------------------------------------------------------

  tableset

---------------------------------------------------------------------------- */
/* テーブルセット */
.tableset {
	clear: both;
	overflow: hidden;
	margin-bottom: 50px;
}
.tableset table {
	font-family:"Meiryo UI";
	font-size:14px;
	letter-spacing:1pt;
	line-height:160%;
	color:rgb(31,31,31);
	border-bottom: solid 1px  #FFDAA2;
}
.tableset table * {
	border-color: #FFDAA2 !important;
}
/* テーブルセット　見出し */
.tableset th {
	width: 36%;
	font-size:16px;
	line-height:120%;
	font-weight: normal;
	color:rgb(32,32,32);
	background-color: #FFF1C8;
}
/**
-------------------------------------------------------------------------------

  img_full

---------------------------------------------------------------------------- */
.img_full {
	margin-bottom: 50px;
}
/**
-------------------------------------------------------------------------------

  sidebar_nav

---------------------------------------------------------------------------- */
#sidebar_nav h3 {
	margin: 0;
}
#sidebar_nav .list-group {
	margin-bottom: 40px;
}
#sidebar_nav .list-group-item {
	padding: 15px 0;
	font-family:"Meiryo UI";
	font-size:16px;
	letter-spacing:1pt;
	line-height:120%;
	color:rgb(255,127,0);
	border-radius: 0;
	border: 0;
	margin-bottom: 0;
	border-color:rgb(255,127,0);
	border-bottom-width:1px;
	border-style:dotted;
}
#sidebar_nav a {
	color:rgb(255,127,0);
}
/**
-------------------------------------------------------------------------------

  sidebar_company

---------------------------------------------------------------------------- */
#sidebar_company {
	box-sizing: border-box;
	margin-bottom: 50px;
	padding: 1px;
	border: solid 1px #ccc;
}
#sidebar_company h3 {
	margin: 0;
}
#sidebar_company_text {
	box-sizing: border-box;
	padding: 10px;
}
#sidebar_company h4 {
	font-size:18px;
	font-weight:bold;
	line-height:120%;
	color:rgb(17,17,17);
}
#sidebar_company_post {
	margin-bottom: 0;
	font-family:"Meiryo UI";
	font-size:13px;
	line-height:120%;
	color:rgb(17,17,17);
}
#sidebar_company_add {
	margin-bottom: 15px;
	font-family:"Meiryo UI";
	font-size:13px;
	line-height:120%;
	color:rgb(17,17,17);
}
#sidebar_company_time {
	font-family:"Meiryo UI";
	font-size:12px;
	letter-spacing:0pt;
	line-height:120%;
	color:rgb(32,32,32);
}
#sidebar_company_tel {
	margin-bottom: 0;
}