@charset "utf-8";

/* ====================================================
 *  1. general settings
 *  2. common
 * -----------------------------------
 *  3. header
 *  4. glonav
 *  5. content
 *  6. footer
 * -----------------------------------
 *  7. pages - index
 *  8. pages - about
 *  9. pages - works
 * 10. pages - information
 * 11. pages - gallery
 * 12. pages - contact
 *	
 * ==================================================== */

/* --------------------------------
/* MEMO ***************************

ベージュ	#f4ede3
濃い茶色	#4274b2
薄い茶色　#988977

font-family: 'Poppins', sans-serif;
font-family: 'Montserrat', sans-serif;

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

@media (max-width: 767px) {
	/* スマホサイズの時 */
}
@media (min-width: 768px){
	/* スマホサイズより大きいとき */
}


/* ====================================================
 * 1. general settings
 * ==================================================== */

/* container
 * -------------------------------- */
body{
	position: relative;
}
.wrapper{
	width: 100%;
}
.container-fluid{
	max-width: 1024px;
}

/* font
 * -------------------------------- */
html, body{
	color: #000;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	word-wrap: break-word;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
}

/* z-index
 * -------------------------------- */
/*
header{   z-index: 1000; }
footer{   z-index: 100; }
.content{ z-index: 10; }

#footer_upper{
	z-index: 2;
}
*/
header.sub{ z-index: 150; }
footer{ z-index: 100; }
.content{ z-index: 10; }

/* === btn === */
	.btn.btn_default,
	.btn.btn_type1,
	.btn.btn_type2{ z-index: 10; }
	.btn.btn_type1:after,
	.btn.btn_type2:after{ z-index: -1; }
/* === glonav === */
	.glonav_open{ z-index: 200; }
	.glonav_shade{ z-index: 500; }
	#glonav{ z-index: 1000; }
	#glonav_inner{ z-index: 2000; }


/* ====================================================
 * 2. common
 * ==================================================== */

/* background
 * -------------------------------- */
.bg_beige{ background: #f4ede3; }
.bg_gray { background: #f3f0eb; }

/* wrapper
 * -------------------------------- */
.wrapper.arrow:before{
	content: url(../img/kaza_001.png);
	display: block;
	width: 62px;
	height: 17px;
	margin: 0 auto;
}
.wrapper.bordered{
	border-bottom: 1px solid #897960;
}

/* container
 * -------------------------------- */
.container-fluid img{
	max-width: 100%;
}

/* text
 * -------------------------------- */
br{ color: transparent !important; }

/* === headline === */
.content h1{
	margin: 50px 0 30px;
	color: #4274b2;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 0.18em;
}
h1 span.title_en{
	display: block;
	font-size: 64px;
	font-weight: normal;
	padding-bottom: 30px;
	line-height: 1;
	letter-spacing: 0.05em;
}
.content h2{
	padding: 40px 0;
	line-height: 1.4;
}
h2 span.title_en{
	display: block;
	font-size: 36px;
	letter-spacing: 0.02em;
}
span.title_en{
	font-family: 'Montserrat', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0;
}
.content h3{
	display: inline-block;
	margin-bottom: 20px;
	border-bottom: 1px solid #614c3f;
	color: #614c3f;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.18em;
}
@media (max-width: 767px) {
	.content h1{
		font-size: 4vw;
		margin-top: 30px;
	}
	.content h1 span.title_en{
		/*font-size: 8vw;*/
		padding-bottom: 20px;
	}
	.content h2{
		padding: 20px 0 30px;
	}
}
@media (max-width: 479px){
	.content h1{
		font-size: 5vw;
	}
	.content h1 span.title_en{
		font-size: 12.5vw;
		padding-bottom: 20px;
	}
}



/* button
 * -------------------------------- */
.btn.btn_default,
.btn.btn_type1,
.btn.btn_type2{
	display: block;
	width: 320px;
	max-width: 100%;
	padding: 10px;
	background: transparent;
	border: 3px solid #4274b2;
	border-radius: 1px;
	/*font-weight: bold;*/
	white-space: nowrap;
	line-height: 28px;
	letter-spacing: 0.12em;
	position: relative;
	overflow: hidden;
	transition: color .15s ease;
}
.btn.btn_arrow,
.btn.btn_arrow2{
	padding: 10px 15px 10px 5px;
}
.btn.btn_type1:after,
.btn.btn_type2:after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #4274b2;
	position: absolute;
	top: 0;
	transition: left .15s ease;
}

/* === type1(線だけタイプ) === */
	.btn.btn_type1      { color: #4274b2; }
	.btn.btn_type1:hover{ color: #fff;    }
	.btn.btn_type1:after      { left: -100%;}
	.btn.btn_type1:hover:after{ left: 0;    }
/* === type2(ベタ塗りタイプ) === */
	.btn.btn_type2      { color: #fff;    }
	.btn.btn_type2:hover{ color: #4274b2; }
	.btn.btn_type2:after      { left: 0;     }
	.btn.btn_type2:hover:after{ left: -100%; }
/* === arrow(矢印がある) === */
	.btn.btn_arrow span.fa-stack{
		position: absolute;
		top: 50%;
		margin-top: -14px;
		right: 25px;
		transition: right 0.1s;
	}
	.btn.btn_arrow:hover span.fa-stack{
		right: 20px;
	}
	/*large*/
	.btn.btn_arrow.lg{
		font-size: 1.1em;
		width: 360px;
		padding: 20px 35px 20px 25px;
		font-weight: normal;
		line-height: 30px;
	}
	.btn.btn_arrow.lg span.fa-stack{
		margin-top: -15px;
	}
/* === arrow2(やまかっこ) === */
	.btn.btn_arrow2 i{
		position: absolute;
		top: 50%;
		margin-top: -0.5em;
		right: 25px;
		transition: right 0.1s;
	}
	.btn.btn_arrow2:hover i{
		right: 20px;
	}



/* list
 * -------------------------------- */

/* === ul == */
ul.default_list{
	list-style: none;
	padding: 0;
}
ul.default_list li{
	text-indent: -1em;
	padding-left: 1em;
}
ul.default_list li:before{
	content: '・';
	display: inline;
}

/* image
 * -------------------------------- */
div.row > div > img{
	max-width: 100%;
	height: auto;
}

/* breadcrumb
 * -------------------------------- */
div#breadcrumb ol{
	list-style: none;
	margin: 0;
	padding: 20px 0;
	overflow: hidden;
}
div#breadcrumb li{
	float: left;
	font-size: 90%;
	letter-spacing: 0.12em;
}
div#breadcrumb li a{
	color: #4274b2;
	text-decoration: none;
}
div#breadcrumb li a:hover,
div#breadcrumb li a:active{
	color: #988977;
	border-bottom: 1px solid #988977;
}


/* ====================================================
 * 3. header
 * ==================================================== */
/* index
 * -------------------------------- */
#header_index{
	overflow: hidden;
}
#header_index .container-fluid{
	padding-top: 140px;
	min-height: 100vh;
}
#title_index img{
	max-width: 90%;
}
#index_hedgehog{
	visibility: hidden;
	position:relative;
}
#index_hedgehog img{
	width: 598px;
	max-width: 80%;
	height: auto;
}

@media (max-width: 767px){
	#header_index .container-fluid{
		padding-top: 100px;
	}
}
@media (min-width: 768px){
	/* === images == */
	#header_index #index_antenna{
		position: absolute;
		top: 50px;
		right: 50px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	#header_index .container-fluid{
		padding-left: 180px;
		padding-right: 180px;
	}
}

/* sub
 * -------------------------------- */
header.sub{
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #4274b2;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
#header_title img{
		width: 215px;
		height: 28px;
}
@media (min-width: 768px){
	header.sub{
		height: 110px;
	}
	header.sub + div{
		padding-top: 110px;
	}
	header.sub #glonav{
		margin: 40px 0;
		overflow: hidden;
	}
	/* === title == */
	header.sub #header_title{
		display: block;
		width: 215px;
		height: 28px;
		margin: 40px 4% auto auto;
		float: left;
	}
	
	/* === mail == */
	#header_mail{
		margin: 36px 0 0 1%;
	}
	#header_mail img{
		width: 35px;
		height: auto;
	}
	
}
@media (max-width: 767px) {
	header.sub{
		padding: 16px 0;
	}
	header.sub + div{
		padding-top: 60px;
	}
}


/* ====================================================
 * 4. glonav
 * ==================================================== */
/* common
 * -------------------------------- */

/* === list=== */
#glonav ul{
	list-style: none;
	padding: 0;
}
#glonav li a{
	color: #4274b2;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-decoration: none;
	letter-spacing: 0.05em;
}

/* === switch == */
input#glonav_toggle,
.glonav_open,
.glonav_close{
	display: none;
}

/* pc(index)
 * -------------------------------- */
@media (min-width: 768px){
	#header_index #glonav{
		position: absolute;
		top: 50px;
		left: 50px;
	}

	/* === list == */
	#header_index #glonav li{
		margin: 0 0 24px;
		overflow: hidden;
	}
	#header_index #glonav li a{
		display: inline-block;
		font-size: 1.45em;
		font-weight: 600;
		line-height: 1.1;
		letter-spacing: 0.1em;
	}
	#header_index #glonav li a:after{
		content: '';
		display: block;
		width: 0;
		height: 2px;
		background: #4274b2;
		transition: width 0.2s;
	}
	#header_index #glonav li a:hover:after{
		width: 100%;
		height: 2px;
	}
}

/* pc(sub)
 * -------------------------------- */
header.sub #glonav ul{
	margin: 0;
}
@media (min-width: 768px){	
	/* === list == */
	header.sub #glonav ul{
		width: 100%;
		float: left;
		overflow: hidden;
	}
	header.sub #glonav li{
		float: left;
		margin-left: 3%;
		cursor: pointer;
	}
	header.sub #glonav li:first-child{
		margin-left: 0;
	}
	header.sub #glonav li a{
		display: block;
		font-size: 1.19em;
		padding: 4px 0;
		line-height: 20px;
		letter-spacing: 0.08em;
	}
	header.sub #glonav li a.current{
		color: #988977;
	}
	header.sub #glonav li a:hover{
		color: #988977;
		transform: rotateX(360deg);
		transition: transform .4s linear;
	}
}

/* sp
 * -------------------------------- */
@media (max-width: 767px) {
	header{
		width: 100%;
	}
	#glonav{
		width: 220px;
		height: 100vh;
		background: #fff;
		margin: 0;
		position: fixed;
		top: 0;
		right: -220px;
		transition: right 0.3s ease;
		-webkit-backface-visibility:hidden;
		backface-visibility:hidden;
		overflow:hidden;
	}
	#glonav_toggle:checked ~ #glonav{
		right: 0;
	}
	#glonav_inner{
		padding: 10px;
		width: 100%;
		height: 100%;
	}
	#glonav_inner.scroll{
		overflow-y: scroll;
	}

	/* === shade === */
	.glonav_shade{
		display: none;
		background: none;
		transition: background 0.3s ease;
	}
	#glonav_toggle:checked ~ .glonav_shade{
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, .7);
		position: fixed;
		top: 0;
		left: 0;
		-webkit-backface-visibility:hidden;
		backface-visibility:hidden;
		overflow:hidden;
		cursor: default;
	}
	
	/* === btn === */
	.glonav_open,
	.glonav_close{
		display: block;
		margin: 0;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		cursor: pointer;
	}
	.glonav_open img,
	.glonav_close img{
		width: 40px;
		height: 40px;
		cursor: pointer;
	}
	.glonav_open{
		position: fixed;
		top: 10px;
		right: 10px;
		-webkit-backface-visibility:hidden;
		backface-visibility:hidden;
	}
	
	/* === list === */
	header #glonav_hedgehog{
		display: block !important;
		width: 80px;
		height: auto;
		margin: 0 auto 10px;
	}
	#glonav nav{
		clear: both;
	}
	#glonav li{
		border-bottom: 1px solid #ccc;
	}
	#glonav ul li:first-child{
		border-top: 1px solid #ccc;
	}
	#glonav li a{
		display: block;
		padding: 8px 10px;
		font-weight: 600;
	}
	#glonav li a.current,
	#glonav li a:hover,
	#glonav li a:active{
		background: #4274b2;
		color: #fff;
	}

}
/* sp(sub)
 * -------------------------------- */
@media (max-width: 767px) {
	header.sub .glonav_open{
		position: absolute;
	}
	header.sub #glonav{
		position: absolute;
	}
	
	header.sub #glonav_toggle:checked ~ .glonav_shade{
		position: absolute;
	}
}

/* ====================================================
 * 5. content
 * ==================================================== */
.content{
	position: relative;
}
.content .container-fluid{
	/*padding:20px 15px;*/
}
.content .container-fluid p{
	font-size: 1em;
	line-height: 2.5;
	letter-spacing: 0.15em;
}
.content .container-fluid p a{
	color: #4274b2;
}

@media (max-width: 767px) {
	.content .container-fluid p{
		font-size: 0.84em; 
	}
}

/* ====================================================
 * 6. footer
 * ==================================================== */
footer{
	position: relative;
}

/* footer_upper
 * -------------------------------- */
#footer_upper{
	background: #fdfbf8;
	border-top: 1px solid #4274b2;
	color: #4274b2;
	position: relative;
}
#footer_upper .container-fluid{
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
@media (max-width: 767px) {
	#footer_upper .container-fluid{
	padding-top: 30px;
	padding-bottom: 65px;
	}
}

/* footer_lower
 * -------------------------------- */
#footer_lower{
	padding-top: 60px;
	padding-bottom: 60px;
	background: #4274b2;
	color: #fff;
}
@media (max-width: 767px) {
	#footer_lower{
	padding-top: 20px;
	padding-bottom: 20px;
	}
}

/* address
 * -------------------------------- */
#footer_upper address > img{
	width: 250px;
	height: 34px;
}
#footer_upper address > p{
	line-height: 1.3;
	letter-spacing: 0;
}
#footer_upper address a{
	color: #4274b2;
}
#footer_upper address > img + p{
	font-size: 1.3em;
	letter-spacing: 0.03em;
	margin: 5px auto;
}
#footer_upper address span.address{
	font-size: 0.8em;
}

/* pagetop
 * -------------------------------- */
#footer_pagetop{
	width: 129px;
	height: 95px;
	padding: 0;
	position: absolute;
	right: 15px;
	bottom: 20px;
	transition: all 0.1s ease-out;
}
.pagetop_btn{
	width: 129px;
	height: 95px;
	cursor: pointer;
}
#footer_pagetop:hover{
	height: 98px;
	padding: 0 0 3px;
}
@media (max-width: 767px) {
	#footer_pagetop{
		bottom: 10px;
	}
}


/* footer_sitemap
 * -------------------------------- */
#footer_sitemap{
	margin-bottom: 10px;
	padding-top: 10px;
}
#footer_sitemap ul{
	list-style: none;
	padding: 0;
	overflow: hidden;
}
#footer_sitemap li{
	float: left;
	padding-right: 6px;
}
#footer_sitemap li:nth-child(n+2):before{
	content: '・';
	padding-right: 6px;
}
#footer_sitemap a{
	color: #fff;
	font-size: 0.86em;
	font-family: 'Poppins', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.13em;
}
#footer_sitemap a:hover{
	color: #988977;
	text-decoration: none;
}

/* footer_contact
 * -------------------------------- */
#footer_contact{
	padding: 0 15px 0 0;
	text-align: right;
}
#footer_contact p{
	display: inline-block;
	width: 285px;
	max-width: 100%;
	text-align: center;
	font-size: 1.3em;
	white-space: nowrap;
	font-family: 'Poppins', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.125em;
}
#footer_contact p a{
	color: #fff;
}
#footer_contact .btn_default{
	width: 285px;
	margin: 0 0 0 auto;
	background: #fff;
	border-color: #fff;
	color: #4274b2;
}
@media (max-width: 767px) {
	#footer_contact{
		margin-bottom: 20px;
		padding: 0 15px;
		text-align: center;
	}
	#footer_contact .btn_default{
		margin: 0 auto;
	}
}

/* copyright
 * -------------------------------- */
#copyright{
	font-size: 0.86em;
	font-family: 'Poppins', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.12em;
}
@media (max-width: 767px) {
	#copyright{
		text-align: center;
	}
}




/* ====================================================
 * 7. pages - index
 * ==================================================== */

/* index_visual
 * -------------------------------- */
#index_visual{
	padding-bottom: 50px;
}
#index_visual h1{
	margin-bottom: 40px;
}
#index_visual .btn_type1{
	margin: 0 auto 40px;
}

#index_visual p{
	font-size: 0.9em;
	margin-bottom: 40px;
	line-height: 2.2;
	letter-spacing: 0.12em;
}
@media (max-width: 767px) {
	#index_visual p{
		font-size: 2.5vw;
	}
}

/* index_concept
 * -------------------------------- */
#index_concept{
	padding-bottom: 70px;
}
#index_concept h2{
	margin: 50px auto 100px;
}

@media (max-width: 767px) {
	#index_concept{
		padding-bottom: 40px;
	}
	#index_concept h2{
		margin: 20px auto;
	}
}

/* index_policy
 * -------------------------------- */
#index_policy .col-sm-8{
	padding: 70px 15px 90px;
	font-size: 0.84em;
	letter-spacing: 0.08em;
}

@media (max-width: 767px) {
	#index_policy .col-sm-8{
		padding: 0 15px 10px;
	}
	#index_policy .col-sm-8 h3{
		display: block;
		width: 10em;
		margin: 20px auto;
		text-align: center;
	}
	#index_policy .col-sm-8 p{
		padding: 0 10px 10px;
	}
	#index_policy .col-sm-4{
		padding-bottom: 40px;
	}
	#index_policy .col-sm-4 img{
		border-top: 1px solid #000;
	}
}



/* ====================================================
 * 8. pages - about
 * ==================================================== */

/* about_aboutus
 * -------------------------------- */
#about_aboutus{
	padding-bottom: 60px;
}

#about_aboutus p{
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	#about_aboutus p{
		margin-bottom: 20px;
	}
	#about_aboutus .col-sm-5{
		padding-bottom: 10px;
	}
	#about_aboutus .btn.btn_arrow{
	margin: 0 auto;
}
}

@media (min-width: 768px) {
#about_aboutus .col-sm-5{
	padding-left: 0;
}
}

/* about_company
 * -------------------------------- */
#about_company{
	padding-bottom: 20px;
}
#about_company dl{
	font-size: 0.96em;
	letter-spacing: 0.15em;
}
#about_company dl dt{
	padding: 10px 0;
	font-weight: normal;
	clear: both;
	float: left;
	width: 9em;
}#about_company dl dd{
	margin-left: 9em;
	padding: 10px 0;
	overflow: none;
}
/*
@media (max-width: 767px) {
	#about_company dl{
		font-size: 3vw;
	}
}
*/


/* about_access(about_googlemap)
 * -------------------------------- */
#about_access{
}
#about_map{
	position: relative;
	padding-bottom: 35%; /*これが縦横比*/
	height: 0;
	border: 0;
	border-radius: 2px;
	overflow: hidden;
	clear:both;
}
#about_map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	/*pointer-events: none; 操作不可*/
}


/* about_photos
 * -------------------------------- */
.about_photos .container-fluid{
	position: relative;
}
.about_photos img{
	width: 100%;
	height: auto;
	padding: 30px 0;
}
.about_photos.bg_gray img{
	padding: 0;
}
/* === first row == */
.about_photos .col-sm-4{
	position: absolute;
	bottom :0;
	right: 0;
}
/* === caption == */
.about_photos .col-sm-5.hidden-xs{
	width: 48%;
	background: #fff;
	background: rgba(255, 255, 255 , .7);
	padding: 20px 25px;
	position: absolute;
	top: 0;
	right: 15px;
}
.about_photos .col-sm-5.hidden-xs h3{
	margin: 0 0 6px;
	border-bottom: 0;
	color: #6f933a;
	font-family: 'Montserrat', sans-serif;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0;
}
.about_photos .col-sm-5.hidden-xs p{
	font-size: 0.9em;
	line-height: 2;
}
.about_photos .col-sm-5.hidden-xs p strong{
	font-size: 1.45em;
	line-height: 1;
}

@media (max-width: 767px) {
.about_photos{
	background: #fff !important;
}
.about_photos img{
	padding: 15px 0 !important;
}

/* === first row == */
.about_photos .col-sm-4{
	position: static;
}
	
}

/* about_service
 * -------------------------------- */
#about_service{
	padding: 80px 0;
}
#about_service .btn.btn_arrow{
	margin: 0 auto;
}


/* ====================================================
 *  9. pages - works
 * ==================================================== */

/* works-title
 * -------------------------------- */
#works_title p{
	margin-bottom: 80px;
}


/* works_information
 * -------------------------------- */
#works_information .container-fluid{
	padding: 50px 15px;
	border-top: 1px solid #4274b2;
}
#works_information .container-fluid:first-child{
	border-top: 0;
}
#works_information h2{
	padding: 0 0 20px;
	color: #4274b2;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 0.14em;
}
#works_information p{
	line-height: 2;
	margin-bottom: 2em;
}
@media (max-width: 767px) {
	#works_information .container-fluid{
		padding: 20px 15px 30px;
		border-top: 1px solid #4274b2;
	}
	#works_information .col-sm-6.text-center{
		padding-bottom: 20px;
	}
	#works_information .btn.btn_arrow2{
		margin: 0 auto;
	}
}

/* works_results
 * -------------------------------- */
#works_results{
	padding-bottom: 100px;
}
#works_results h2{
	margin: 20px 0 0;
	padding-top: 20px;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: 0.12em;
}
#works_results h2 span.title_en{
	font-weight: normal;
	padding-bottom: 10px;
}
#works_results h3{
	margin: 0 0 20px;
	display: block;
	color: #fff;
	border-color: #fff;
}
#works_results ul{
	padding: 0;
	list-style: none;
}
#works_results ul li,
#works_results p{
	font-size: 0.84em;
	line-height: 2.4;
	letter-spacing: 0.14em;
}
#works_results_system{
	background: #9fa0a0;
}
#works_results_app{
	background: #727171;
}
#works_results_system,
#works_results_app{
	padding: 15px;
	color: #fff;
}
#works_results_system p,
#works_results_app p{
	clear: both;
}
@media (max-width: 767px) {
	#works_title p{
		margin-bottom: 30px;
	}
	#works_results{
		padding-bottom: 30px;
	}
	#works_results h2{
		margin: 0;
	}
}
@media (min-width: 768px) {
	#works_results .container-fluid .row:first-child + .row{
		margin: 0;
	}
	#works_results_system,
	#works_results_app{
		padding: 30px 7%;
	}
	#works_results ul{
		width: 50%;
		float: left;
	}
}

/* ====================================================
 * 10. pages - information
 * ==================================================== */
#information_title h1{
	margin-bottom: 80px;
}
/*
#information_archive{
	margin-bottom: 80px;
}
*/
@media (max-width: 767px) {
	#information_title h1{
		margin-bottom: 30px;
	}
}

/* article
 * -------------------------------- */
.information_article{
	border-top: 1px solid #000;
	padding: 70px 60px 40px;
}
.information_article:first-child{
	border-top: 0;
}
.information_article h2{
	margin: 0 0 20px;
	padding: 0;
	color: #2c1b03;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 0.18em;
}
.information_article p{
	margin-bottom: 2em;
}
@media (max-width: 767px) {
	.information_article{
		padding: 60px 15px;
	}
	.information_article h2{
		/*font-size: 1.25em;*/
		margin-bottom: 20px;
	}	
}


/* ====================================================
 * 11. pages - gallery
 * ==================================================== */
#gallery_title{
	margin-bottom: 40px;
}
#gallery_title p{
	margin-bottom: 80px;
}
.gallery_box{
	margin-bottom: 50px;
}
.gallery_box h2{
	margin: 0 0 40px;
	padding: 30px 60px;
	border: solid #000;
	border-width: 1px 0;
	font-size: 100%;
	letter-spacing: 0.14em;
}
.gallery_box h2 i{
	color: #608e33;
	padding-right: 20px;
}
@media (max-width: 767px) {
	#gallery_title p{
		margin-bottom: 30px;
	}
	.gallery_box h2{
		padding: 30px 0 30px 15px;
	}
}

/* slider
* -------------------------------- */
.gallery_box .bx-wrapper{
/* padding: 0 40px; */
}
.gallery_box .bx-viewport{
	margin-bottom: 20px;
	box-shadow: none;
	border: 0;
	left: 0;
}
.gallery_slider div.row{
	margin: 0;
}
.gallery_slider div.row div{
	vertical-align: middle;
	text-align: center;
}
.gallery_slider div.row div img{
	display: inline-block;
	text-align: center;
	width: auto;
	max-height: 250px;
	margin-bottom: 20px;
}
.gallery_box .bx-controls-direction{
	text-align: center;
}
.gallery_box .bx-controls-direction .bx-prev,
.gallery_box .bx-controls-direction .bx-next{
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 6px;
	border-radius: 50%;
	position: static;
}
.gallery_box .bx-controls-direction .bx-prev{
	background: #608e33;
}
.gallery_box .bx-controls-direction .bx-next{
	background: #abbb02;
}
.gallery_box .bx-pager{
	display: none;
}
@media (max-width: 767px) {
	.gallery_box .bx-viewport{
		margin-bottom: 0;
	}
}

/* ====================================================
 * 12. pages - contact
 * ==================================================== */

/* contact_form
* -------------------------------- */
#contact_form h1 + p{
	margin: 0 0 50px;
}
#contact_form .form-group{
	margin-bottom: 30px;
}
#contact_form span.text-danger{
	color: #e33;
	padding: 0 2px;
}
#contact_form label{
	padding: 10px 15px;
	text-align: left;
	font-size: 1.1em;
	font-weight: normal;
	line-height: 2.4em;
	letter-spacing: 0.14em;
}
#contact_form input{
	height: auto;
	padding: 10px;
	border: 0;
	line-height: 2.4em;
	box-shadow: 0;
}
#contact_form textarea{
	height: 300px;
	padding: 10px;
	border: 0;
	box-shadow: 0;
	resize: vertical;
}
#contact_form button.btn_arrow{
	margin: 50px auto;
}
@media (max-width: 767px) {
	#contact_form p.text-right{
		/*font-size: 1em;*/
		display: none;
	}
	#contact_form label{
		padding-top: 0;
		padding-bottom: 0;
	}
	#contact_form .form-group{
		margin-bottom: 15px;
	}
	#contact_form textarea{
		height: 100px;
	}
}



