@charset "UTF-8";
/* CSS Document */


/*　reset
----------------------------------------------- */

html {
	font-size: 62.5%;/*ベースを10px*/
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0px;
	padding: 0px;
	word-break: break-all;
	color: #000000;
	font-size: 26px;
	line-height: 1;/*行の高さをフォントサイズと同じに*/
	-webkit-text-size-adjust: 100%;/* 文字サイズを自動調整する機能を無効化 */
}

/*インライン要素をブロック要素へ変更*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display: block;
}

form,input,p,ul,li,dl,tr,th,table,select,
dd,dt,h1,h2,h3,h4,h5,h6 {
	margin: 0px;
	padding: 0px;
}

h3,h4,h5,h6,strong {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
}

a img,img {
	margin: 0px;
	padding: 0px;
	border: 0;
	vertical-align: bottom;
}

ul,ol,dl {
	margin: 0;
	padding: 0;
}

dt,dd,li {
	list-style-type: none;
}

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

table th {
	font-weight: normal;
}

a {
	color: #000000;
	transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    -ms-transition: .2s linear;
}

a:link{
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

a img {
	transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    -ms-transition: .2s linear;
}

a:hover img {
	opacity: 0.6;
}

button {
	width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    font-size: 0;
    line-height: 0;
    overflow: visible;
}

.allclear {
	clear: both;
	height: 0;
	font-size: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

#container {
	width: 700px;
	overflow: hidden;
}

.inner {
	width: 640px;
	margin: 0 auto;
}

/*　clearfix
----------------------------------------------- */

.cf {
	zoom: 1;
}

.cf:before,
.cf:after {
	content: "";
	display: table;
}

.cf:after {
	 clear: both;
}


/*　背景
----------------------------------------------- */

.bg_white {
	background-image: url(../../img/common_img/bg/bg_white.png);
	background-repeat: repeat;
}

.bg_tree {
	background-image: url(../../img/common_img/bg/bg_wood.png);
	background-repeat: repeat;
}

/*　ボタン
----------------------------------------------- */

.r_btn_green {
	display: block;
	background-color: #5a7b13;
	border-radius: 10px;
	width: 100%;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #ffffff;
}

.r_btn_green:hover {
	background-color: #000000;
}

.r_btn_white {
	display: block;
	background-color: #ffffff;
	border-radius: 10px;
	width: 100%;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #5a7b13;
}

.r_btn_white:hover {
	background-color: #000000;
	color: #ffffff;
}

.bd_btn_white {
	display: block;
	border: 1px solid #ffffff;
	width: 100%;
	padding: 27px 0;
	text-align: center;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #ffffff;
}

.bd_btn_white:hover {
	background-color: #ffffff;
	color: #000000;
}

.bdr_btn_green {
	display: block;
	border: 1px solid #5a7b13;
	border-radius: 10px;
	width: 100%;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #5a7b13;
}

.bdr_btn_green:hover {
	background-color: #000000;
	border: 1px solid #000000;
	color: #ffffff;
}

/*　アコーディオンボタン
----------------------------------------------- */

.moreview_bd_acd_btn_black {
	margin-top: 25px;
	position: relative;
}

.moreview_bd_acd_btn_black:before {
	content: '続きを見る';
	display: inline-block;
	border: 1px solid #000000;
	background-color: #000000;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #ffffff;
	transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	-o-transition: .2s linear;
	-ms-transition: .2s linear;
}

.moreview_bd_acd_btn_black:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #ffffff 1px solid;
	border-right: #ffffff 1px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 30px;
	top: 27px;
}

.moreview_bd_acd_btn_black.close:before {
	content: '閉じる';
	display: inline-block;
	border: 1px solid #000000;
	background-color: transparent;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #000000;	
}

.moreview_bd_acd_btn_black.close:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #000000 1px solid;
	border-right: #000000 1px solid;
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	transform: rotate(315deg);
	position:absolute;
	right: 30px;
	top: 37px;
}

.works_bd_acd_btn_black {
	margin-top: 25px;
	position: relative;
}

.works_bd_acd_btn_black:before {
	content: '施工実績の詳細を見る';
	display: inline-block;
	border: 1px solid #000000;
	background-color: #000000;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #ffffff;
	transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	-o-transition: .2s linear;
	-ms-transition: .2s linear;
}

.works_bd_acd_btn_black:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #ffffff 1px solid;
	border-right: #ffffff 1px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 30px;
	top: 27px;
}

.works_bd_acd_btn_black.close:before {
	content: '施工実績を閉じる';
	display: inline-block;
	border: 1px solid #000000;
	background-color: transparent;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #000000;	
}

.works_bd_acd_btn_black.close:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #000000 1px solid;
	border-right: #000000 1px solid;
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	transform: rotate(315deg);
	position:absolute;
	right: 30px;
	top: 37px;
}

.staff_message_bd_acd_btn_black {
	margin-top: 25px;
	position: relative;
}

.staff_message_bd_acd_btn_black:before {
	content: 'スタッフメッセージを見る';
	display: inline-block;
	border: 1px solid #000000;
	background-color: #000000;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #ffffff;
	transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	-o-transition: .2s linear;
	-ms-transition: .2s linear;
}

.staff_message_bd_acd_btn_black:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #ffffff 1px solid;
	border-right: #ffffff 1px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 30px;
	top: 27px;
}

.staff_message_bd_acd_btn_black.close:before {
	content: 'スタッフメッセージを閉じる';
	display: inline-block;
	border: 1px solid #000000;
	background-color: transparent;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #000000;	
}

.staff_message_bd_acd_btn_black.close:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #000000 1px solid;
	border-right: #000000 1px solid;
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	transform: rotate(315deg);
	position:absolute;
	right: 30px;
	top: 37px;
}

.staff_message_bd_acd_btn_white {
	margin-top: 25px;
	position: relative;
}

.staff_message_bd_acd_btn_white:before {
	content: 'スタッフメッセージを見る';
	display: inline-block;
	border: 1px solid #d2d2d2;
	background-color: #d2d2d2;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #000000;
	transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	-o-transition: .2s linear;
	-ms-transition: .2s linear;
}

.staff_message_bd_acd_btn_white:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #000000 1px solid;
	border-right: #000000 1px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 30px;
	top: 27px;
}

.staff_message_bd_acd_btn_white.close:before {
	content: 'スタッフメッセージを閉じる';
	display: inline-block;
	border: 1px solid #d2d2d2;
	background-color: transparent;
	border-radius: 10px;
	width: 100%;
	height: 80px;
	padding: 27px 0;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #d2d2d2;	
}

.staff_message_bd_acd_btn_white.close:after {
	content:"";
	display:block;
	width: 20px;
	height: 20px;
	border-top: #d2d2d2 1px solid;
	border-right: #d2d2d2 1px solid;
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	transform: rotate(315deg);
	position:absolute;
	right: 30px;
	top: 37px;
}

/*　スペース
----------------------------------------------- */

.p_bottom_70 {
	padding-bottom: 70px;
}

.p_bottom_100 {
	padding-bottom: 100px;
}

.p_bottom_120 {
	padding-bottom: 120px;
}

.p_bottom_200 {
	padding-bottom: 200px;
}

.p_bottom_340 {
	padding-bottom: 340px;
}

.p_top_140 {
	padding-top: 140px;
}


/*　ヘッダー
----------------------------------------------- */

#container #header {
	
}

#container #header .inner {
	display: -webkit-box;/* Androidブラウザ用 */
	display: -moz-box;/* Firefox21 */
	display: -ms-flexbox;/* IE10 */
	display: -webkit-flex;/* safari（PC）用 */
	display: flex;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	padding-top: 50px;
	width: 600px;
}

#container #header .menu_btn {
	
}

#container #header .logo {
	
}


/*　ナビゲーション
----------------------------------------------- */

#container .drawer-nav ul.drawer-menu {
	
}

#container .drawer-nav ul.drawer-menu li {
	
}

#container .drawer-nav ul.drawer-menu li a {
	display: block;
	font-size: 28px;
	letter-spacing: 0.08em;
	padding: 35px 30px;
	border-bottom: 1px solid #ffffff;
	color: #ffffff;
	font-family: "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}

#container .drawer-nav ul.drawer-menu li:last-child a {
	background-color: #000000;
}

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

#container #footer {
	position: relative;
}

#container #footer .footer_top_box {
	padding: 60px 0 50px;
	border-bottom: 1px solid #000000;
}

#container #footer .footer_top_box .logo {
	text-align: center;
	margin-bottom: 25px;
}

#container #footer .footer_top_box .address {
	text-align: center;
	font-size: 26px;
	line-height: 2.0em;
	letter-spacing: 0.05em;
	color: #ffffff;
	margin-bottom: 25px;
}

#container #footer .footer_top_box .box {
	width: 550px;
	margin: 0 auto;
}

#container #footer .footer_top_box .box .box_l {
	float: left;
}

#container #footer .footer_top_box .box .box_r {
	float: right;
}

#container #footer .footer_bottom_box {
	padding: 50px 0 60px;
}

#container #footer .footer_bottom_box ul {
	width: 550px;
	margin: 0 auto;
	display: -webkit-box;/* Androidブラウザ用 */
	display: -moz-box;/* Firefox21 */
	display: -ms-flexbox;/* IE10 */
	display: -webkit-flex;/* safari（PC）用 */
	display: flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#container #footer .footer_bottom_box ul li {
	width: 50%;
	margin-bottom: 50px;
	font-size: 26px;
	letter-spacing: 0.05em;
}

#container #footer .footer_bottom_box ul li:nth-last-child(2)  {
	margin-bottom: 0;
}

#container #footer .footer_bottom_box ul li:before {
	display: inline-block;
	content: '';
	background-image: url('../../img/footer/nav_icon.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 8px 16px;
	width: 8px;
	height: 16px;
	margin-right: 15px;
}

#container #footer .footer_bottom_box ul li a {
	color: #ffffff;
}

#container #footer .footer_bottom_box ul li a:hover {
	text-decoration: underline;
}

#container #footer .footer_bottom_box .btn {
	text-align: center;
	margin-bottom: 50px;
}

#container #footer .footer_bottom_box .copy {
	width: 510px;
	margin: 0 auto;
	background-image: url(../../img/footer/illust.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-top: 50px;
	font-size: 20px;
	color: #ffffff;
	letter-spacing: 0.1em;
}

#container #footer .pagetop {
	position: absolute;
	top: -90px;
	right: 30px;
	z-index: 99;
}

#container #footer .pagetop a:hover img {
	opacity: 1;
}


/*　コンテンツ中ボタンボックス
----------------------------------------------- */

#container .content_btn_box {
	
}

#container .content_btn_box .btn {
	text-align: center;
}

#container .content_btn_box .btn + .btn {
	margin-top: 50px;
}


/*　下層ページ共通 / タイトル
----------------------------------------------- */

#container .ttl_box {
	padding-top: 70px;
}

#container .ttl_box .ttl {
	text-align: center;
}





