@charset "utf-8";
/* CSS Document */
html {
  min-height: 100%;
  position: relative;
}
body{
	margin: 0 auto;
	padding: 0;
	font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
	font-size: 100%;
	font-weight: normal;
	line-height: 1.75;
	width: 100%;
	background-color: #fff;
	background-image: url(../img/bg1.jpg);
	color: #231815;
}
.sp { display: none; }
.red { color: #fc0000; }
a:hover { opacity: 0.75;}
.primaryContainer {
     width: 100%;
     position: relative;
     min-height: 100%;
}
/* IE8～11はメイリオ */
@media screen\0 {
  body {
    font-family: 'Segoe UI', /* Windowsの欧文 */
                 Meiryo,     /* メイリオ */
                 sans-serif;
  }
}
/* Windows */
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local('YoGothic-Bold'), /* Boldはそのまま */
       local('Yu Gothic');     /* Chrome用 */
}
/*　ヘッダー　*/
header {
	background-color: #fffaee;
	padding: 15px 0;
}
header .hlogo {
	width: 30%;
	margin-left: 5%;
	float: left;
}
header .hlogo img {
	display: block;
	width: 100%;
	max-width: 320px;
}
header nav {
	width: 55%;
	margin:0 5%;
	float: left;
}
header nav ul { margin: 10px auto ;}
header nav ul li {
	float: left;
	width: 18%;
	margin: 0 1%;
	text-align: center;
	display: block;
}
header nav ul li a {
	position: relative;
	padding: 0.5rem 0 ;
  	display: inline-block;
  	transition: .3s;
	text-decoration: none;
	color: #231815;
}
header nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #006934;
  transition: .3s;
  transform: translateX(-50%);
}
header nav ul li a:hover {
	color: #006934;
	display: block;
}
header nav ul li a:hover::after{
  width: 100%;
}
.now a, .now a:hover { 
	background-color: #006934;
	display: block;
	color: #fff!important;
	border-radius: 5px;
	box-sizing: border-box;
}
.now a::after { display: none!important; }
/* リード */
.lead {
	width: 100%;
	padding: 30px 0;
}
.lead h1 {
	text-align: center;
	padding: 30px 0;
	font-size: 2rem;
	font-weight: bold;
	max-width: 820px;
	margin: 0 auto;
	letter-spacing: 0.25rem;
}
.lead p {
	width: 100%;
	max-width: 980px;
	margin: 10px auto;
	font-size: 1.15rem;
}
/*　コンテンツリスト　*/
.contents { 
	padding: 20px 0 50px;
	width: 100%;
}
.contents ul {
	display: flex;
	justify-content: center;
	padding-left: 0;
}
.contents ul li {
	width: 33%;
	overflow: hidden;
	position: relative;
}
.contents ul li img {
	display: block;
	width: 100%;
}
.contents ul li a { 
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
}
.cap { text-align: center; }
.mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(0,0,0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.contents ul li:hover .mask {
	opacity: 1;	/* マスクを表示する */
	padding-top: 80px;	/* ホバーで下にずらす */
}
/*　フッター　*/
footer {
	box-sizing: border-box;
	border-top: 3px double #ccc;
	background-color: #006934;
}
footer nav { padding: 20px 0;}
footer nav ul {
	display: flex;
	justify-content: center;
	padding-left: 0;	
}
footer nav ul li {
	text-align: center;
	width: 15%;
}
footer nav ul li a {
	text-decoration: none;
	color: #fff;
}
footer nav ul li a:hover { 
	text-decoration: underline;
	opacity: 0.7;
}
.flogo {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.flogo img {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto 10px;
}
.flogo p { 
	color: #fff;
	line-height: 2;
	text-align: center;
}
address { margin-bottom: 20px;}
.copyright {
	padding: 5px 0;
	background-color: #231815;
}
.copyright p { 
	text-align: center;
	color: #fff;
}
/* ページトップ　*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 10px;
	z-index:99999;
}
.pagetop a {
    display: block;
	text-indent:-9999px;
	width:80px;
	background-image: url(../img/pagetop.png);
	background-repeat:no-repeat;
	background-position: center;
    padding: 20px 10px;
	background-size: contain;
	opacity: 0.8;
}
/* サブページ */
.sub_con {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
}
.sub_con h1 img {
	width: 100%;
	display: block;
	margin: 0 auto;
}
.sub_con h2 {
	position: relative;
  	text-align: center;
}
.sub_con h2:before {
  	position: absolute;
  	top: calc(50% - 1px);
  	left: 0;
  	width: 100%;
  	height: 2px;
  	content: '';
  	background: #000;
}
.sub_con h2 span {
  	position: relative;
	font-size: 1.5rem;
  	padding: 0 5em;
	text-align: center ;
	background-image: url(../img/bg1.jpg);
}
section { margin: 30px 3%; }
section p { margin: 15px 2%; }
/* 会社案内　*/
.com_pic { margin: 15px 0; }
.com_pic li {
	width: 48%;
	float: left;
	margin: 0 1%;
}
.com_pic li img {
	display: block;
	width: 100%;
}
.company dl { margin: 15px 2%; }
.company dl dt {
	float: left;
	width: 30%;
	line-height: 2.5;
}
.company dl dd {
	margin-left: 30%;
	width: 70%;
	line-height: 2.5;
}
/* 事業内容 */
.service_list ul{ margin: 15px 25px ; }
.service_list ul li {
	width: 45%;
	margin: 10px 2.5%;
	float: left;
	list-style: disc;
}

.service h3 {
	background-color: #604C3F;
	display: block;
	font-size: 2rem;
	color: #fff;
	text-align: center;
}
.reform { margin: 10px 2%;}
.reform h4 {
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 150px;
	font-size: 1.5rem;
    font-weight: bold;
    padding-top: 15px;
}
.reform p { margin: 20px 2%;}
.mizumawari h4 {
	background-image: url(../img/service/reform01.svg);
    border-bottom: 2px #036EB8 solid;
    color: #036EB8;
}
.gaisou h4 {
	background-image: url(../img/service/reform02.svg);
    border-bottom: 2px #EA5514 solid;
    color: #EA5514;
}
.naisou h4 {
	background-image: url(../img/service/reform03.svg);
    border-bottom: 2px #008077 solid;
    color: #008077;
}
.re_pic_b img, .re_pic_2 img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.re_pic_b {
	width: 65%;
	float: left;
	margin-right: 5%;
}
.re_pic_2 {
	width: 30%;
	float: left;
}
.re_pic_2 li { margin-bottom: 15px;}
.gaisou, .naisou, .contact { clear: both;}
/* お問い合わせ */
.contact h4 {
	text-align: center;
	margin: 20px auto;
    padding-left: 0;
}
.contact img {
	max-width: 480px;
    display: block;
    margin: 10px auto;
}
.contact_tel {
	max-width: 900px;
	margin: 150px auto;
	background-color: #fcfcfc;
	border-radius: 20px;
}

.contact_tel p {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 3;
	padding: 50px 0;
}
/* 採用情報 */
.recruit dl {
	width: 96%;
	margin: 50px auto;
	border: 1px solid #604C3F;
	border-top: none;
}
.recruit dt {
	border-top: 1px solid #604C3F;
	box-sizing: border-box;
	clear: left;
	float: left;
	width: 19%;
	line-height: 3.5;
	padding-left: 2%;
}
.recruit dd {
	border-left: 1px solid #604C3F;
	border-top: 1px solid #604C3F;
	box-sizing: border-box;
	margin-left: 19%;
	width: 81%;
	line-height: 3.5;
	padding-left: 5%;
}
/* お問い合わせ */
.pltxt {　padding-bottom: 20px;　}
.pltxt img {
    max-width: 480px;
    display: block;
    margin: 10px auto;
}
/* プライバシーポリシー */
.privacy h3 {
	border-bottom: 1px solid #604c3f;
	margin: 20px 0;
	font-size: 1.25rem;
	font-weight: bold;
}
.privacy ul { margin: 0 2%;}
/* サイトマップ */
.sitemap ul {
	margin: 10px 5% 50px 5%;
}
.sitemap li {
	text-indent: 35px;
	border-bottom: solid 1px #604c3f;
	line-height: 3;
	margin-top: 20px;
}
.sitemap li a {
	text-decoration: none;
	color: inherit;
	font-size: 1.5rem;
	padding: 10px;
}

/* リフォームキャンペーン */

.bana { text-align: center; }

.reform_camp h3 img {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.camp_list, .camp_list2 { 
    background-color: #fff;
    box-shadow: 0 10px 25px 0 rgb(50 50 50 / 50%);
    border-radius: 20px;
    margin: 70px auto;
    width: 980px;
}
.camp_list2 { margin-bottom: 50px; }
.camp_read {
	float: left;
    width: 520px;
    margin-left: 50px;
}

.camp_read h4, .camp_read2 h4 { margin-left: -20px; }

.camp_read li { 
	list-style: disc; 
	font-size: 1.2em;
}

.camp_pic {
    float: right;
    width: 400px;
    padding: 0 0 50px 0;
    margin: 20px 20px 0 -20px;
}

.camp_pic img {
	display: block;
	width: 100%;
}

.camp_read2 { 
	margin-left: 50px;
	padding-bottom: 50px;
}

.camp_read2 li { 
	list-style: disc;
	float: left;
	width: 50%;
}

.read p {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
}

.tuiki p {
	margin: 20px 60px;
	font-size: 1.2em;
}
/*　補助金・求人募集バナー　*/
.bana2, .point { 
	padding: 20px 0 50px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.bana2 ul, .point ul {
	display: flex;
	justify-content: center;
	padding-left: 0;
}
.bana2 ul li, .point ul li {
	width: 50%;
	padding: 0 5%;
	overflow: hidden;
	position: relative;
}
.bana2 ul li img, .point ul li img {
	display: block;
	width: 100%;
}
.bana2 ul li a, .point ul li a{ 
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
}
.point h4 {
	background-color: #FFE200;
	border-radius: 50px;
	padding: 1rem 0;
	text-align: center;
	width: 100%;
	font-size: 2rem;
	font-weight: bold;
}
/*　施工事例　*/
.jirei h3{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
} 
.wread_pic img {
	display: block;
	margin: 0 auto;
	width: 100%;
}
.wread_pic { margin-bottom: 50px; }
.wread_pic ul li {
	width: 30%;
    margin: 20px 1.5%!important;
    float: left;
}
.wread p { margin: 0 5%;}