@charset 'UTF-8';
/*--------------------------------------------------
共通
--------------------------------------------------*/
body{
	font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", Yu Gothic Medium, sans-serif;
	letter-spacing: 2px;
	color: #3a2d1c;
}
/*flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
上下左右中央配置{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  -ms-transform: translate(0%,-50%);
  -o-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
}
*/
.position_r{
	position: relative;
}
.top_section{
	padding: 150px 0;
	position: relative;
}
.page_section{
	padding: 50px 0;
	position: relative;
}
/*タイトル*/
.sub_title{
	font-weight: 600;
	margin-bottom: 80px;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #cccccc;
}
.sub_t_main{
	display: inline-block;
  padding: 5px 20px;
  margin: 0;
  color: #3a2d1c;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 4px;
  border-left: 10px solid #ffab0b;
}
.sub_t_mini{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	padding: 10px 0 10px 20px;
	width: 100%;
}
.sub_t_mini p{
	font-size: 14px;
}
.section_title{
	display: inline-block;
	background-color: #ffab0a;
	color: #3a2d1c;
	font-size: 30px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 40px;
	padding: 10px 20px;
}
/*テキスト*/
.common_text{
	line-height: 30px;
	margin: 0 auto 60px;
}
/*ボタン*/
.common_btn{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	display: block;
	position: relative;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: #3a2d1c;
	background-color: rgba(255,255,255,0);
	border: 2px solid #ffab0a;
	border-radius: 50px;
	width: 100%;
	max-width: 300px;
	padding: 30px 10px;
	margin: 100px auto 0;
	transition: 0.2s;
}
.common_btn:after{
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 10px solid #ffab0a;
	border-top-color: transparent;
	border-left-color: transparent;
	position: absolute;
	bottom: 5px;
	right: 5px;
	transition: 0.2s;
}
.common_btn:hover{
	color: #ffab0a;
	background-color: rgba(255,255,255,0.5);
}
.common_btn:hover:after{
	bottom: 0px;
	right: 0px;
}
.long_btn{
	max-width: 400px;
	font-size: 16px;
}
/*アニメーション*/
.ani_cover{
	position: relative;
}
.ani_cover:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.5s;
}
.action.ani_cover:after{
	width: 0;
}
.ani_fade{
	transition: 0.5s;
	opacity: 0;
	-webkit-transform: translate(-80px,0);
  -moz-transform: translate(-80px,0);
  -ms-transform: translate(-80px,0);
  -o-transform: translate(-80px,0);
  transform: translate(-80px,0);
}
.ani_fade.action{
	opacity: 1;
	-webkit-transform: translate(0px,0);
  -moz-transform: translate(0px,0);
  -ms-transform: translate(0px,0);
  -o-transform: translate(0px,0);
  transform: translate(0px,0);
}

/*その他*/
.bg_border{
	width: calc(100% - 20px);
	max-width: 1024px;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	border-left: 1px solid #f4f4f4;
	border-right: 1px solid #f4f4f4;
	z-index: -1;
}
.bg_border:before{
	content: '';
	width: 1px;
	height: 100%;
	border-left: 1px solid #f4f4f4;
	position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	margin: 0 auto;
}
.ofi{
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
/*背景*/
.bg_gray{
	background-color: #f2f2f2;
}
.bg_texture{
	background-image: url('images/common/texture.jpg');
	background-repeat: repeat;
}
/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
.head-logo-page{
	width: 100%;
	max-width: 270px;
  margin: 10px 0 0 10px;
}
.sns_icon_area{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.sns_icon_area picture,
.sns_icon_area a{
	line-height: 14px;
}
.sns_icon{
	width: 100%;
	max-width: 20px;
	height: 14px;
	margin-right: 10px;
}

/*--------------------------------------------------
フッター
--------------------------------------------------*/
/*お問い合わせ*/
.contact_bg{
	background-image: url('images/common/contact_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	color: #fff;
}
.contact_bg:after{
	content: '';
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.contact_bg .container{
	position: relative;
	z-index: 1;
}
.contact_bg .sub_t_main{
	display: block;
	color: #fff;
	margin-bottom: 80px;
	border-bottom: 1px solid #cccccc;
}
.contact_bg .sub_t_mini{
	padding: 10px 0 0px 30px;
}
.contact_text{
	margin: 0 auto 60px;
	line-height: 30px;
}
.contact_spnobr::before{
	content: "\A" ;
	white-space: pre ;
}
.contact_btn{
	font-family: 'Sawarabi Mincho', serif;
	
	display: block;
	text-decoration: none;
	text-align: center;
	color: #3a2d1c;
	background-color: #ffab0a;
	border: 2px solid #ffab0a;
	border-radius: 70px;
	width: 100%;
	max-width: 500px;
	font-size: 20px;
	font-weight: 400;
	padding: 40px 10px;
	margin: 20px auto;
	transition: 0.3s;
}
.contact_btn span{
	transform: rotate(.03deg);
}
.contact_btn:hover{
	color: #fff;
	background-color: rgba(255,171,10,0.6);
}

.contact_bg .bg_border,
.contact_bg .bg_border:before{
	border-color: #a77028;
	z-index: 1;
}
/*フッター*/
.site-foot{
	background-color: #3a2d1c;
	color: #fff;
	padding: 80px 0 50px;
	position: relative;
}
.footer_textarea{
	position: relative;
	z-index: 2;
}
.f_logo{
	width: 100%;
	max-width: 130px;
	margin-bottom: 40px;
}
.footer_text{
	line-height: 25px;
	font-size: 14px;
	font-weight: 300;
}
.footer_text a{
	text-decoration: none;
	color: #fff;
	pointer-events: none;
}
.foot-sitemap{
	width: 100%;
	margin: 0 0 0 auto;
	justify-content: flex-end;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.foot-sitemap li{
	margin: 0 15px;
}
.foot-sitemap li a{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	font-size: 14px;
	transition: 0.3s;
	color: #fff;
}
.foot-sitemap li a:hover{
	color: #bb8e5a;
}
.site-foot .sns_icon_area{
	margin-top: 20px;
	justify-content: flex-end;
}
.site-foot .sns_icon_area a{
	margin-right: 10px;
}
.site-foot .sns_icon_area .sns_icon{
	margin: 0;
}
.copyright{
	margin-top: 40px;
	text-align: right;
	font-weight: 300;
}
.site-foot .bg_border,
.site-foot .bg_border:before{
	border-color: #7a644b;
	z-index: 1;
}
/*--------------------------------------------------
トップページ
--------------------------------------------------*/
.main_visual{
	width: 100%;
	height: 87vh;
	overflow: hidden;
	position: relative;
}
.main_visual:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.15);
}
.top_about_text{
	line-height: 35px;
}
.main_visual .slick-track,
.main_visual .slick-list{
	height: 100%;
}
.catch_con{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 87vh;
}
.catch_area{
	position: absolute;
	top: 50%;
	left: 0;
	padding: 0 10px;
	-webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  -ms-transform: translate(0%,-50%);
  -o-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
}
.catch_copy{
	/*right: 0;
	width: 400px;
	text-align: center;
	background-color: rgba(255,255,255,0.8);*/
	margin: 0 auto;
	font-weight: 600;
	font-size: 100px;
	color: #fff;
	line-height: 120px;
	letter-spacing: 8px;
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
}
.catch_copy_text{
	color: #fff;
	line-height: 30px;
	font-size: 15px;
	font-weight: 600;
	max-width: 500px;
	margin: 20px 0 0;
}
.sp_display{
	display: none;
}
.pc_display{
	display: block;
}
/*コロナに負けるな*/
.corona_message{
	width: 100%;
	max-width: 1044px;
	padding: 0 10px;
	margin: -50px auto 0px;
	position: relative;
	z-index: 2;
}
.corona_message p{
	line-height: 35px;
	padding: 50px 40px;
	position: relative;
}
.corona_message p:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: rgba(255,171,11,0.9);
	transition: 0.5s;
	z-index: -1;
}
.corona_message.action p:before{
	width: 100%;
}
.corona_message .common_btn{
	background-color: #ffab0a;
	border-color: #fff;
	margin: 30px auto 0;
	border-radius: 80px;
}
.corona_message .common_btn:after{
	border-right-color: #fff;
	border-bottom-color: #fff;
}
.corona_message .common_btn:hover{
	background-color: #fff;
	color: #3a2d1c;
}
/*メイン下キャッチ*/
.top_copy_text{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	font-weight: 600;
	font-size: 22px;
	line-height: 40px;
	letter-spacing: 3px;
}
/*事業内容*/
.card{
	width: 100%;
	margin: 0 auto;
}
.name_title{
	text-align: center;
	margin: 10px 0 0;
	font-size: 25px;
	font-weight: 400;
}

/*--------------------------------------------------
会社概要
--------------------------------------------------*/
.company_title{
	line-height: 35px;
}
.concept_title{
	font-weight: 500;
	font-size: 18px;
	margin: 50px 0 0;
	background-color: #ffab0b;
	padding: 3px 10px;
	display: inline-block;
}
.company_concept{
	display: inline-block;
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	font-size: 80px;
	margin: 20px 0 50px;
	line-height: 100px;
	letter-spacing: 5px;
	border-left: 5px solid #ffab0b;
	padding-left: 20px;
}
.company_concept span{}
.concept_jp{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	letter-spacing: 4px;
	font-size: 35px;
	margin: 20px 0;
}

/*会社情報*/
.common_table{
	width: 100%;
	margin: 40px 0;
}
.common_table tr{
	display: block;
	margin-bottom: 30px;
}
.common_table th,
.common_table td{
	padding: 15px 10px;
	line-height: 30px;
	letter-spacing: 3px;
}
.common_table th{
	min-width: 200px;
	font-weight: 600;
	text-align: left;
	border-bottom: 4px solid #ffab0b;
}
.common_table td{
	width: 100%;
	padding-left: 30px;
	border-bottom: 1px solid #cccccc;
}
/*--------------------------------------------------
事業内容
--------------------------------------------------*/
.s_title{
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	margin: 10px 0 30px;
	letter-spacing: 3px;
}
.s_title .title_border{
	background: linear-gradient(transparent 60%, #ffda92 0%);
}
.service_img{
	margin: 0 0 10px;
}
.service_box{
	width: 100%;
	height: 100%;
	padding: 20px;
	border: 2px solid #cccccc;
	border-radius: 10px;
}
.service_box p{
	line-height: 30px;
}
.service_box .common_btn{
	margin: 30px auto 20px;
	border-radius: 80px;
}
/*リモートワーク*/
#work_room .s_title{
	margin-top: 0;
}
.remote_catch{
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	margin: 10px 0 0;

}
/*--------------------------------------------------
事例一覧
--------------------------------------------------*/
.case_box{
	margin-bottom: 30px;
}
.case_thmb{
	width: 100%;
	max-width: 550px;
	max-height: 500px;
	height: 34vw;
	min-height: 270px;
	overflow: hidden;
	margin: 0 auto;
}
.case_text_area{
	width: 90%;
	margin: -17px 0 0 10px;	
	padding: 20px 10px;
	background-color: rgba(255,255,255,0.5);
	position: relative;
	/*background-color: rgba(255,171,11,0.3);*/
	z-index: 1;
}
.case_date{
	font-size: 14px;
	/*color: #a0a0a0;*/
	letter-spacing: 3px;
	margin: 5px 0;
}
.case_title{
	font-size: 20px;
	font-weight: 400;
  margin: 0px 0 10px;
}
.case_text{
	font-size: 14px;
}
.case_text_area .case_title{
	font-size: 20px;
	font-weight: 400;
	padding: 0px 0 10px;
  margin: 0px 0 10px;
  border-bottom: 1px solid #3a2d1c;
}
/*--------------------------------------------------
お知らせ
--------------------------------------------------*/
.news_list{
	width: 100%;
	max-width: 700px;
	margin: 30px auto;
}
.news_list li{
	margin: 10px 0;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
.news_list a{
	display: block;
	text-decoration: none;
	color: #4b4b4b;
	margin: 0;
	transition: 0.3s;
}
.news_list .date{
	margin-right: 30px;
}
.news_list a:hover{
	color: #aaaaaa;
}
/*お知らせ個別 ==========================*/
.page-title{
	font-size: 35px;
	margin: 0 0 20px;
}
.single-body{
	min-height: 500px;
}
.ovH{
	margin-top: 50px;
	align-items: center;
}
.back_article,
.next_article{
	text-align: center;
}
.back_article a,
.next_article a{
	text-decoration: none;
	transition: 0.3s;
	color: #000;
}
.back_article a:hover,
.next_article a:hover{
	color: #aaaaaa;
}
/*--------------------------------------------------
お問い合わせ
--------------------------------------------------*/
.contact_tel{
	font-family: 'Sawarabi Mincho', serif;
	transform: rotate(.03deg);
	display: inline-block;
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
	color: #fff;
	transition: 0.3s;
	background-color: #3a2d1c;
	border-radius: 50px;
	padding: 10px 30px;
	margin: 0 0 10px;
}
.contact_tel span{
	font-size: 20px;
}
.contact_tel:hover{
	color: #fff;
	background-color: #735c42;
}
/*お問い合わせフォーム*/
.contact_form{
	margin-top: 60px;
}
.contact_table{
	width: 100%;
	margin: 10px 0;
}
.contact_table tr{
	display: block;
	margin-bottom: 30px;
}
.contact_table th,
.contact_table td{
	padding: 20px 10px;
}
.contact_table th{
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	padding-left: 0;
	min-width: 260px;
	border-bottom: 4px solid #ffab0b;
}
.contact_table td{
	padding-right: 0;
	width: 100%;
	border-bottom: 1px solid #cccccc;
}
.contact_table input,
.contact_table textarea {
	width: 100% !important;
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 10px;
}
.contact_table input[type="checkbox"],
.contact_table input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 5% !important;
  margin: 5px 10px 10px 5px;
  font-size: 100%;
}
span.wpcf7-list-item {
  /*チェックボックスを縦並びに*/
  display: inline;
}
input[type="submit"] {
  /*ボタンのスタイルを変更する*/
  font-family: 'Sawarabi Mincho', serif;
  transform: rotate(.03deg);
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  cursor: pointer;
  border: none;
  color: #3a2d1c;
  background-color: #ffab0b;
  border-radius: 50px;
  padding: 20px 10px;
  margin: 30px auto;
  width: 100%;
  max-width: 200px;
  transition: 0.3s;
}
input[type="submit"]:hover{
	color: #3a2d1c;
	background-color: #ffd483;
}
div.wpcf7 .ajax-loader{
	width: 0;
	height: 0;
}
.required{
	margin-left: 10px;
	background-color: #ffab0b;
	padding: 5px 10px;
	font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
	padding: 10px;
}
.wpcf7 form.sent .wpcf7-response-output{
	padding: 10px;
	background-color: #3a2c1c;
}
/*--------------------------------------------------
レスポンシブ
--------------------------------------------------*/
@media only screen and (max-width: 900px) {
	/*ヘッダーー========================================*/
	.sns_icon_area{
		justify-content: center;
	}
	.sns_icon{
		margin-right: 30px;
	}
}
@media only screen and (max-width: 600px) {
	/*flex{
	flex-direction: column;}*/
	.sub_title{
		font-size: 30px;
	}
	.section_title{
		font-size: 25px;
	}
	.common_text{
		text-align: left;
	}
	.sp-br::before{ /*横幅600で改行する*/
		content: "\A" ;
  	white-space: pre ;
	}
	.top_section{
		padding: 80px 0;
	}
	.page_section{
		padding: 40px 0;
	}
	/*タイトル*/
	.sub_title{
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 40px;
	}
	.sub_t_main{
		font-size: 30px;
	}
	.sub_t_mini{
		font-size: 14px;
		order: -1;
		border: none;
		padding-left: 0;
	}
	/*ヘッダー========================================*/
	.head-logo-page{
		max-width: 220px;
	  margin: 0;
	}
	/*フッター========================================*/
	.contact_text{
		text-align: left;
		margin-bottom: 30px;
	}
	.contact_btn{
		padding: 30px 10px;
		font-size: 16px;
		margin: 20px auto 0;
	}
	.footer_textarea{
		padding: 40px 0;
	}
	.foot-sitemap{
		flex-direction: column;
		max-width: 100%;
		margin-top: 20px;
	}
	.foot-sitemap li{
		margin: 10px 0;
	}
	.foot-sitemap li a{
		width: 100%;
		display: block;
	}
	.site-foot .sns_icon_area{
		justify-content: end;
	}
	.site-foot .sns_icon_area a{
		margin-right: 30px;
	}
	.contact_spnobr::before{
		content: '';
	}
	.f_tel{
		text-align: left;
	}
	/*トップ========================================*/
	.catch_area{
		top: 40%;
	}
	.catch_copy{
		font-size: 17vw;
		line-height: 20vw;
	}
	.sp_display{
		display: block;
	}
	.pc_display{
		display: none;
	}
	.top_copy_text{
		letter-spacing: 2px;
		font-size: 18px;
		line-height: 30px;
	}
	.corona_message .common_btn:after{
		right: 10px;
		bottom: 10px;
	}
	.corona_message .common_btn:hover:after{
		right: 5px;
		bottom: 5px;
	}
	/*会社概要========================================*/
	.concept_jp{
		font-size: 25px;
		margin: 20px 0 0;
	}
	.company_concept{
		font-size: 13vw;
		line-height: 16vw;
		padding-left: 10px;
		letter-spacing: 3px;
	}
	.common_table th,
	.common_table td{
		display: block;
	}
	.common_table th{
		min-width: 100%;
		padding: 10px 10px 0;
		text-align: left;
		border-bottom: none;
	}
	.common_table td{
		min-width: 100%;
	}
	/*施工事例========================================*/
	.case_thmb{
		min-height: 300px;
		height: 87vw;
	}
	.case_text_area{
		width: calc(100% - 20px);
		margin: -17px auto 0;
	}
	/*お知らせ========================================*/
	.news_list li{
		flex-direction: column;
	}
	/*お問い合わせ========================================*/
	.contact_form{
		margin-top: 0;
	}
	.contact_tel span{
		font-size: 16px;
	}
	.contact_tel{
		font-size: 25px;
	}
	.contact_table th{
		min-width: 100%;
	}
	.contact_table th,
	.contact_table td{
		width: 100%;
		display: block;
		padding: 30px 10px;
	}
	span.wpcf7-list-item {
  /*チェックボックスを縦並びに*/
	  display: block;
	}
}

@media only screen and (max-width: 500px) {
	.common_btn{
		font-size: 15px;
		margin-top: 50px;
	}
}
@media only screen and ( min-width: 600px ) {
	/*電話番号*/
	.f_tel{
    	pointer-events: none;
  	}
 }

@media all and (-ms-high-contrast:none){
 .svg-full {
   width: 100%;
 }
}