/* CSS Document */




/*============================================================================

	header

============================================================================*/
header {
	position:relative;
	width:100%;
	height:170px;
	z-index:99;
}
header .inner{
	position:relative;
	width: 95%;
	max-width:1280px;
	margin:auto;
}

/*------------------------------ ロゴ部分 ------------------------------*/
header h1{
	position:relative;
	top:20px;
}

/*------------------------------ お問い合わせ部分 ------------------------------*/
#header_contact {
	position: absolute;
	right: 270px;
	top: 16px;
	width: 360px;
}
#header_contact ul {
	display: flex;
	flex-wrap: wrap;
}
#header_contact ul li:nth-of-type(1) {
	position: relative;
	width: 100%;
	text-align: center;
}
#header_contact ul li:nth-of-type(1)::before {
	position: absolute;
	content: "";
	top: 10px;
	left: 0;
	width: 40px;
	height: 1px;
	background: #777;
}
#header_contact ul li:nth-of-type(1)::after {
	position: absolute;
	content: "";
	top: 10px;
	right: 0;
	width: 45px;
	height: 1px;
	background: #777;
}
#header_contact ul li:nth-of-type(2) {
	width: 68%;
	font-family: 'Readex Pro', sans-serif;
}
#header_contact ul li:nth-of-type(2) a {
	color: #ed8500;
	font-size: 27px;
	letter-spacing: 1px;
}
#header_contact ul li:nth-of-type(2) a i {
	color: #86bc24;
	margin-right: 10px;
}
#header_contact ul li:nth-of-type(3) {
	width: 32%;
	font-family: 'Readex Pro', sans-serif;
}
#header_contact ul li:nth-of-type(3) a {
	position: relative;
	display: block;
	top: 10px;
	width: 100%;
	background: #218f3a;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	box-sizing: border-box;
	padding: 3px 0;
	font-size: 13px;
}
#header_contact ul li:nth-of-type(3) a i {
	position: relative;
	top: 1px;
	margin-right: 5px;
	font-size: 15px;
}
#header_contact ul li:nth-of-type(3) a:hover {
	border-radius: 15px;
	background: #157e2d;
}

/*------------------------------ LINE部分 ------------------------------*/
#header_line a {
	position: absolute;
	display: block;
	right: 120px;
	top: 20px;
	padding: 14px 17px;
	background: #40bc2c;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
}
#header_line a i {
	position:relative;
	top: 3px;
	margin-right: 5px;
	font-size: 25px;
	font-weight: normal;
}
#header_line a:hover {
	border-radius: 50px;
}

/*------------------------------ エントリーフォーム部分 ------------------------------*/
#header_entry a {
	position: absolute;
	display: block;
	right: 0;
	top: 20px;
	padding: 8px 17px;
	background: #218f3a;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	line-height: 1.5;
}
#header_entry a:hover {
	border-radius: 50px;
}






@media screen and (max-width:970px) {


/*------------------------------ お問い合わせ部分 ------------------------------*/
#header_contact {
	right: 200px;
	width: 330px;
}
#header_contact ul {
}
#header_contact ul li:nth-of-type(1) {
}
#header_contact ul li:nth-of-type(1)::before {
	width: 35px;
}
#header_contact ul li:nth-of-type(1)::after {
	width: 40px;
}
#header_contact ul li:nth-of-type(2) {
}
#header_contact ul li:nth-of-type(2) a {
	font-size: 26px;
}
#header_contact ul li:nth-of-type(2) a i {
	margin-right: 5px;
}
#header_contact ul li:nth-of-type(3) {
}
#header_contact ul li:nth-of-type(3) a {
}
#header_contact ul li:nth-of-type(3) a i {
}

/*------------------------------ LINE部分 ------------------------------*/
#header_line a {
	right: 100px;
	padding: 22px 12px 18px;
	font-size: 13px;
}
#header_line a i {
	display: none;
}

/*------------------------------ エントリーフォーム部分 ------------------------------*/
#header_entry a {
	padding: 12px 12px;
	font-size: 13px;
}


}


/*============================================================================

	nav

============================================================================*/
nav {
	position: relative;
}
nav ul{
	margin-top: 40px;
	text-align: center;
	background: #444;
}
nav li {
	position:relative;
	display: inline-block;
	margin: 0 40px;
	padding: 15px 0;
	text-align: center;
}
nav li a span{
	position:relative;
	display: block;
	color: #FFF;
	font-size: 16px;
	letter-spacing: 2px;
}

/*------------------------------ ホバーのボーダー ------------------------------*/
nav li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: -15px;
	width:100%;
	height:3px;
	margin:auto;
	background-color: #fff;
	transition: 0.15s  ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
nav li a:hover span::before{
	transform: scaleX(1);
}

/*------------------------------ 間の/線 ------------------------------*/
nav li a::before{
    position: absolute;
	content: "";
	top: 11px;
	left: -40px;
	width: 1px;
	height: 35px;
	font-size: 25px;
	background: #777;
	transform: rotate(30deg);
}
nav li:last-of-type a::after{
    position: absolute;
	content: "";
	top: 11px;
	right: -40px;
	width: 1px;
	height: 35px;
	font-size: 25px;
	background: #777;
	transform: rotate(30deg);
}







/*============================================================================

	▼▽▼▽▼▽▼▽▼▽ここからSP用▼▽▼▽▼▽▼▽▼▽

============================================================================*/
@media screen and (max-width:870px) {
	
	
	
	


/*============================================================================

	header

============================================================================*/
header {
	display:none;
}



/*============================================================================

	navi

============================================================================*/
nav{
	display:none ;
}
.sp_navi {
	display:block;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:62px;
	font-size:18px;
	font-weight:bold;
	z-index: 9998;
}
.sp_navi h1{
	position: absolute;
	display: table !important;
	text-align: left;
	padding-left:6%;
	height: 100%;
	top:2px;
}
.sp_navi h1 img{
	display:block;
	width: 200px !important;
}
.sp_navi h1 a{
	display: table-cell;
	vertical-align:middle;
}
.sp_navi h1 img{
	z-index: 9999;
	position:relative;

}
.sp_navi dl{
	background-color: rgba(255,255,255,0.85);
}
.sp_navi dl dt {
	height: 62px;
	font-weight:bold;
	cursor:pointer;
	padding: 0 4%;
	font-size:18px;
	display:block;
	color:#fff;
	line-height: 2;
}
.sp_navi dl dt i{
	margin-right:2%;
}
.sp_navi dl dd {
	display:none;
	background: #00943f;
}
.sp_navi ul{
	padding:4% 2% 4% 8%;
}
.sp_navi ul li {
	display: table;
	width: 50% ;
	float: left ;
	line-height:1.4;
	font-size:15px;
	font-weight:normal;
}
.sp_navi ul li i{
	margin-right: 4%;
	color: #fff;
	font-size: 16px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	left: -6px;
}
.sp_navi ul li a {
	display:table-cell;
	vertical-align:middle;
	width:100%;
	height: 45px;
	color:#fff;
	text-decoration:none;
    font-size: 16px;
}

/*ボタンの動き*/
.sp_navi dt a {
    display: block;
    width: 42px;
    height:42px;
    position: absolute;
    top: 11px;
    right: 10px;
    z-index: 9999999;
}
.sp_navi dt a span {
    display: block;
    background: #666;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
.sp_navi dt a span:first-child {
    top: 12px;
}
.sp_navi dt a span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
.sp_navi dt a span:last-child {
    bottom: 12px;
}
.sp_navi dt a.active span:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
.sp_navi dt a.active span:nth-child(2) {
    opacity: 0;
}
.sp_navi dt a.active span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}


	


/*============================================================================

	▲△▲△▲△▲△▲△ここまでSP用▲△▲△▲△▲△▲△

============================================================================*/
}






