@charset "utf-8";

/* =1reset
----------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p,th,td {
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-weight: normal;
}
ul,ol{ list-style: none; }
fieldset,img,h1{ border: none; }
img{
	vertical-align: top;
	max-width:100%;
	height:auto;
}
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
h1,h2,h3,h4,h5,h6 { font-size:100%; }
caption,th{ text-align:left; }
table{
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 100%;
}
th,td{ /*vertical-align: top;*/ }

/** font **/
html {font-size: 62.5% ;}
body {
	font-size: var(--font-p);
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
p{line-height:1.75;}
/* ▼bootstrap */
.no-gutters{margin-left: -15px;margin-right: -15px;}

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
    }
  
/* =2body
----------------------------- */
/* ▼root */
:root {
	--container-width: 1280px;
	--primary-color: #222;
	--main-color:#4ca601;
	--sub-color:#aadd00;
	--font-h1:clamp(90px,3vw,103px);
	--font-h2:clamp(32px,3vw,40px);	
	--font-h3:clamp(20px,3vw,24px);
	--font-h3_content:clamp(28px,3vw,32px);
	--font-p:clamp(14px,3vw,16px);	
}
html{
	overflow-y: scroll;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;}
body{height: 100%;}

/*--------------------------------------------------------------
 common
--------------------------------------------------------------*/
/** ▼display **/
.block{display:block;}
.table{display:table;}
.flex/*,.sp-flex*/{display:flex;}


.inline{display:inline;}
.inline-block{display:inline-block;}
.inline-flex{display:inline-flex;}
.inline-grid{display:inline-grid;}
.both{clear:both;}

/* flex要素 */
.flex-wrap{flex-wrap:wrap;}/*子要素を折り返し、複数行に上から下へ並べる*/
.flex-end{justify-content: flex-end;}/*親要素の終点から配置。下揃え。*/
.space-between{justify-content: space-between;}/*最初と最後の子要素を上下の端に配置、残りは均等に間隔をあけて配置*/
.space-around{justify-content:space-around;}/*両端の子要素も含め、均等に間隔をあけて配置*/
.flex-center{justify-content:center;}/*親要素の終点から配置。下揃え。*/

/** float **/
.right{float:right;}
.left{float: left;}
/** ▼中央寄せ **/
.text-center{ text-align:center !important;}
.text-right{text-align:right !important;}
.text-left{text-align: left !important;}
.center,
.aligncenter{
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.m-center{
	margin-left:auto;
	margin-right:auto;
}
/** ▼要素の高さを揃える **/
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
/** ▼余白 **/
.pd-0{padding:0 !important;}
.pt-10{padding-top:10px;}
.pt-20{padding-top:20px;}
.pr-5{padding-right:5px;}
.pl-5{padding-left:5px;}
.pr-10{padding-right:10px;}
.pr-20{padding-right:20px;}
.pl-10{padding-left:10px;}
.pl-20{padding-left:20px;}
.prl-20{padding:0 20px;}
.pb-10{padding-bottom:10px;}
.pb-20{padding-bottom:20px;}
.pb-30{padding-bottom:30px;}

.mt-10{margin-top:10px !important;}
.mt-20{margin-top:20px !important;}
.mt-30{margin-top:30px !important;}
.mt-40{margin-top:40px !important;}
.mt-50{margin-top:50px !important;}
.mt-60{margin-top:60px !important;}
.mb-0{margin-bottom:0 !important;}
.mb-10{margin-bottom:10px !important;}
.mb-20{margin-bottom:20px !important;}
.mb-30{margin-bottom:30px !important;}
.mb-40{margin-bottom:40px !important;}
.mb-50{margin-bottom:50px !important;}
.mb-60{margin-bottom:60px !important;}
.mb-70{margin-bottom:70px !important;}
.mb-80{margin-bottom:80px !important;}
.mb-100{margin-bottom:100px !important;}
.mb-110{margin-bottom:110px !important;}
.mb-120{margin-bottom:120px !important;}
.mb-130{margin-bottom:130px !important;}


.mrl-10{margin-left:10px; margin-right:10px;}


/** ▼width height **/
.w100{width: 100% !important;}

/* リストの先頭に何もつけない */
ul{
	margin:0;
	list-style-type:none;
}
ul li{
	list-style-type:none;
}
/** ▼装飾 **/
.bold{font-weight:bold;}
.color-gr{color:#40999f;}
/** ▼img **/
img{
	max-width:100%;
    height: auto;
	-ms-interpolation-mode: bicubic;
}

/* ▼hover フェード */
a img:hover{
	opacity:0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/** ▼scloll **/
/*reset*/
.section-index.fadeUpIn{
	animation: fadeUpIn ;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
}
/*--------------------------------------------------------------
 list/table
--------------------------------------------------------------*/
/** ▼dlリスト  **/
dl,dt,dd {
	margin: 0;
	padding: 0;
}
/* ------ dl-box------  */
dl{
	border-bottom: 1px solid #cccccc;
	width: 100%;
}
dl dt,
dl dd {
	padding: 10px;
	border-top: 1px solid #cccccc;
}
dl dt:first-child,
dl dt:first-child + dd{border-top:none;}
dl dt{font-weight: normal;}
dl dd {}
/**------ 上記の装飾打消し------  **/
.dl_none{
	border: none;
	background: none;
}
dl.dl_none dt,
dl.dl_none dd {
	border: none;
	background: none;
	padding:5px 0;
}
/*--------------------------------------------------------------
 table/tablepress
--------------------------------------------------------------*/
/** ▼通常 **/
/* デフォルトのborderを消す */
.tablepress td{
	/*border-left:none !important;
	border-top:none !important;*/
}
table.tablepress{
	width:100%;
}
/* th見出しcolor */
 .tablepress th{
	background: #eee;
	/*color: #fff;*/
	font-weight:bold;
}
.tablepress th,
.tablepress td{
	border: 1px solid #a69d8a !important;
	text-align:center;
}

.tablepress td{
	padding: 10px;
}

/* =3link-color
----------------------------- */
a,a:visited{
	color: #000;
	text-decoration: none;
}
a:hover,a:active{
	color: var(--main-color);
	text-decoration: none;
}
/*
*
* 	2-baselayout.css
*
*	 1-body,base-container
*	 2-header
*	 3-mainContent
*	 4-service-content
*	 5-footer
*
*/

/* =1-body,base-container
----------------------------- */
/** ▼全体 **/

body{font-family: 'Noto Sans JP', sans-serif;}
#wrapper{
	width:100%;
	/*overflow:hidden;*/
}
#container{
	/*max-width:1920px ;*/
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	overflow: hidden;/* アニメーション対応 */
}
.wrap{
	max-width:1120px;
	margin-left: auto;
	margin-right: auto;

}

/** ▼見出し **/
header .headline{
	display: table;
	width: 100%;
}
h1{
	padding-bottom: 20px;
	font-size: var(--font-h1);
	color:var(--main-color);
	vertical-align: middle;
	font-weight: normal;
}
h2{
	font-size: var(--font-h2);
	color:var(--main-color);
    align-items: center;
    text-align: center; /* for no-flexbox browsers */
	margin-bottom:10px;
	line-height:1.75;
	display: block;
}
h2 span.sub {
	display:block;
	color:var(--main-color);
	font-size:var(--font-p);
}
.main-box h2 span {
	border-bottom: 1px solid var(--main-color);
	display: inline-block;
}
h2 a:hover{text-decoration: none;}
/** home **/
h3,h3 a{
	color:var(--main-color);
	font-size:var(--font-h3);
	margin-bottom: 10px;
}

h3 a:hover{text-decoration: none;}
h4{
	color:var(--main-color);
	margin-bottom:20px;
}
/**/
ul li h3{
	font-size: 14px;
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
	top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  max-width:254px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* =2-header
----------------------------- */
.slicknav_menu{display:none;}


.logo{
	background:#fff;
	padding:20px 0 10px 0;
}
/* main img */
#header{
	height: 80px;
	padding: 15px auto 15px auto;
	margin-top: 10px;
}

/*     */
.slideshow {
    position: relative;
    width: 100%;
    padding-top: 45%;
    overflow: hidden;
    margin: 0 auto;
  }
  .slideshow .item {
    width: 100%;
    position: absolute;
    top: 0;
    display: none;
  }
  .in {
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 2;
  }
  .out {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: 4s;
    transition: 4s;
    z-index: 1;
  }

/** SP メニュー **/
@media (max-width:768px){
	/** ▼nav TOP **/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position:absolute;
	background:var(--main-color);
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
	z-index: 999;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:19px;
}
.openbtn span:nth-of-type(3) {
	top:25px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.g-active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.g-active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.g-active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.g-active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
/*==768px以下の形状*/

	nav{padding: 0;}
	
	nav ul{display: block;}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
nav ul li a{border-bottom:1px solid #ccc;}
/*矢印の位置と向き*/
nav ul li.has-child::before{
	left:20px;	
}
nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

/* gnav */
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:rgba(255,255,255,1);
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin:100px auto 0 auto;
	display: block;
}
    
#g-nav ul ul{
    width: 100%;
    margin: 0;
}
 
/*プルダウンナビのCSS*/
#g-nav ul li.has-child ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
}
	
}/* /@media */


/** ▼nav **/
#header nav{}
#header nav ul li{}
#header nav ul li a{
	/*color: #fff;*/
	font-size: 1.6rem;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	/*background:#333;*/
	color:#000;
	text-align: center;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	padding:10px 40px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}
@media (width < 1300px){
	#header nav ul{justify-content: flex-start;}
	#header nav ul li a{font-size: 1.4rem;padding:10px 15px;}
}/*@media*/
nav ul li a:hover{}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}
@media ( 765px <= width < 1300px){
	nav ul li.has-child::before{content: none;}
}/*@media*/


/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:45px;
	z-index: 4;
	width:200px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
@media (width > 768px){
	nav li.has-child ul{    
	/*形状を指定*/
	background:#fff;
	border-radius: 10px;
	/* 影 */
	box-shadow: 2px 1px 11px -6px #000000;
}

}/*@media*/
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
/*アンダーライン*/
/*nav li.has-child ul li a{
	position: relative;
	color: black;
	padding-bottom: 20px;
}
nav li.has-child ul li a:after{
	content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color:var(--main-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
nav li.has-child ul li:hover a:after{
	transform: scaleX(1);
  transform-origin: bottom left;
}*/
nav li.has-child ul li a{
	color: var(--main-color);
	padding: 10px 15px;
    text-align: left;
	/*border-bottom:solid 1px rgba(0,0,0,0.6);*/
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}
nav li.has-child ul li a:hover{
	color: #3c5463;
	border-radius: 10px;
}
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	/*background:var(--main-color);*/
	
}
nav li.has-child ul li a::after{
	content: '';
	display: inline-block;
	float: right;
	width: 1em;
	height: 1em;
	background-image:url(../img/icon_right.svg);
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	
	transform: scaleX(0);
	transition: transform 0.25s ease-out;
}
nav li.has-child ul li a::before{
  height: 2px;
  bottom: 0;
  left: 0;
  background-color:var(--main-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

nav li.has-child ul li:hover a:after{
	transform: scaleX(1);
  transform-origin: bottom left;
}
/** ▼お問い合わせbtn **/
#g-nav .contact_btn{
	position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;}
#g-nav a.btn {
  color:var(--main-color);
  border-color:var(--main-color);
}
#g-nav a.btn:hover {
	background: var(--main-color);
	color: #fff;
}
#g-nav a.btn-c {
  font-size: 1.8rem;
  position: relative;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 100vh;
}
@media (width < 1300px){
	#g-nav a.btn-c {font-size: 1.4rem;}}
/* =3-mainContent
----------------------------- */
/** ▼slider **/
.slider {
	position: relative;
	display: inline-block;
	text-align: left; /* 見出しのテキストを左寄せ */
}
.slider:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 30px; /* 下線の位置調整 */
	width: 100%;
	height: 60px; /* 下線の高さ */
	background:var(--sub-color);
	z-index: -1;
}
.slider div{margin: 0 10px;}
.slider img {
	object-fit: cover; 
	border-radius: 20px;
}


/** ▼global **/
.global {border-bottom: 5px solid var(--main-color);
}
.global ul li:last-child{border-right: none;}
.global h3{
	font-size:var(--font-h3);
	border-bottom: 1px solid var(--main-color);
	display: inline-block;
}
.global .tel{
	font-size: var(--font-h3);
	line-height: 1;
	
}
.global dl{
	text-align: center;
	align-items: center;
    justify-content: center;
}
.global dl dt{
	color: var(--main-color);
	font-size:clamp(12px,3vw,12px);
	border: 1px solid var(--main-color);
	padding: 2px;
	margin-right: 10px;
}
/** ▼新着情報／お知らせ **/
#news h2{
	font-size: var(--font-h3);
	color: #000;
	font-weight: normal;
	text-align: left;
}
#news h2 span{
	color: var(--main-color);
	font-size: var(--font-p);
}
#news dl {
	flex-wrap: wrap; /*折り返し*/
}
#news dt,
#news dd{padding: 6px;}
#news dt{
	flex-basis: 200px;
	color: var(--main-color);}
#news dd{flex-basis: calc(100% - 200px); /*幅*/}
#news p{
	display: inline-block;
	border-bottom: 1px solid #ccc;}
#news img{
	/*content: '';
	display: inline-block;*/
	float: right;
	width: 1.5em;
	height: 1.5em;
	/*background-image:url(../img/icon_right_2.svg);*/
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	/*background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;*/
	margin: 2px 0 0 10px;
}
/** ▼各業務下部　お問い合わせ **/
.contact {
	border-top:2px solid #ccc;
	padding:30px 0;
}
.contact h4{font-size: var(--font-h3);}
.contact h4 span{
	display: block;
	color: #000;
	font-size:var(--font-h3_content);
}
.contact dl {
	display: flex;
	flex-wrap: wrap; /*折り返し*/
}
.contact dt,
.contact dd{
	padding: 6px;
	align-self: center;
}
.contact dt{
	flex-basis: 120px;
	text-align: center;
	margin-right: 20px;
}
.contact dt.border{
	border: 1px solid #ccc;
	padding: 2px;
}
.contact dd{flex-basis: calc(100% - 145px); /*幅*/}

.contact dd.tel{
	font-size:var(--font-h2);
	color: var(--main-color);
}
.contact dd.mail{
	color: var(--main-color);
	font-size:var(--font-h3);
}
.contact dd.time{font-size: 20px;}
/* ------ 一つ目 ------ */
.business div{
	display: flex;
	flex-direction: column;
}
.business img{
	margin: 0 auto 30px auto;
	display: block;
}
.business h2{
	color: #000;
	margin-bottom: 30px;
}
.business h3{text-align: center;}
.business h3 a{
	color:  var(--main-color);
	display: inline-block;
	border-bottom: 1px solid var(--main-color);
}
.business .txt{margin-bottom: 30px;}
.business .link{
	margin-top: auto;/*下揃え*/
	display: inline-flex;
    justify-content: center;
    align-items: center;
}
.business .link::after{
	content: '';
	display: inline-block;
	float: right;
	width: 1.5em;
	height: 1.5em;
	margin-left: 10px;
	background-image:url(../img/icon_right_2.svg);
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
}
.business .link a{
	display: inline-block;
	border-bottom: 1px solid #ccc;}
/* ------ 二つ目 設備工事事業 ------  */
.construction .bg{background: url(../img/section2_bg.jpg) no-repeat center center;
}
.main-box{position: relative;}
.main-box .bg{
	/*background-attachment:fixed;*//*背景画像をスクロールしても固定させたまま*/
	background-size: auto;
	height: 400px;
}
.main-box .bg h1{
	color:rgb(60 84 99 / 80%);
	position: relative;
    top: 1rem;
}
#section2 .main-box .bg h1{
	right: 0;
    left: 0;
	text-align: right;
}
.main-box .inner-box{
	position: relative;
    height: auto;
	top: 140px;
}
.main-box .inner-box .wrap{max-width: 1200px;}
#section2 .main-box .inner-box{top: 0;}
.main-box .inner-box:before {
    content: "";
    display: block;
   /* padding-top: 200px;*/ 
}
.main-box .inner{
	background: #fff;
	border-radius: 20px 20px 0 0;
	transform: translate(0, 60px);
}
#section2.main-box .inner{transform: translate(0, 150px);}
.main-wrap{margin-top: 190px;}
/**  **/
@media (width < 1299px){.main-box .inner{margin:0 20px;}}/*/@media*/
#section2 h3{
	margin: 40px 0 40px 0;
	font-size: var(--font-h3_content);}
#section2 h4{
	font-size: var(--font-h3);
	margin:30px 0;
}
#section2 figure{
	margin-bottom: 0;
	margin-top: -1px;
	padding:30px ;
	border-right: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
#section2 figure:last-child{border-right:none;}

#section2 .maker{/*margin-bottom: 110px;*/}
#section2 .maker h3{
	position: relative;
	display: inline-block;
	padding-bottom: 10px;}
#section2 .maker h3::after{
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -5px; /* 下線の位置調整 */
	width: 100%;
	height: 5px;
	background: url(../img/icon_border.svg)no-repeat 0 0;
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	background-size: 100% 100%; /* 画像を伸縮させずに表示 */
}
#section2 .maker_list { gap: 30px 0px;}

/*------ 三つ目 ------*/
.realestate .bg{
	background: url(../img/section3_bg.jpg) no-repeat center center;
	
}
#section3 .main-box .bg h1{
	color: rgb(255 255 255 / 80%);
	text-align: left;
}

#section3 h3.search{
	text-align: center;
	font-size: var(--font-h3_content);
	margin-bottom: 20px;
}
#section3 h3.search::before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background: url(../img/icon_search.svg) no-repeat center center;
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	margin-right: 20px;
}

.yakusoku{
	border-top: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	padding: 30px 0 40px 0;
	margin-top: 70px;
}
.yakusoku h3{margin:10px 0 40px 0;}
.yakusoku h3::before{
	content: '';
	display: inline-block;
	width:100%;
	height: 22px;
	background: url(../img/section3_dot.png) no-repeat center center;
}
.yakusoku ol{list-style: auto;}
.yakusoku ol li{padding: 5px 0;}
.bukken{
	margin:50px 0;
	gap:0 20px;
	justify-content: space-between;}
.bukken hgroup{
	background: #fefff5;
	padding: 30px 40px;
	border-radius: 20px;
	flex-basis: 45%;
}
.bukken hgroup h3{
	font-size: 20px;
	text-align: center;
}


.bukken hgroup img{
	width: 15em;
	height: 10em;
	filter: invert(71%) sepia(57%) saturate(7013%) hue-rotate(60deg) brightness(98%) contrast(99%);
	margin: 0 auto;
	display: block;
}
/* ------ 四つ目 福祉サービス ------  */
#section4 .bg{
	background: url(../img/section4_bg.jpg) no-repeat center center;
	/*background-size: cover;*/
}
#section4 .bg .wrap.h1{ /*position: absolute;
   top: 50%;
   right: 10%;
   transform: translateY(-50%);*/}
#section4 .main-box .bg h1{
	color: rgb(255 255 255 / 80%);
	text-align:right;
	transform: translateY(50%);
}

#section4 .main-wrap ul{
	font-size: var(--font-h3);
	list-style: circle;
}
#section4 .main-wrap ul li{
	padding: 5px 0;
	list-style-type:none;
	text-indent: -1em;
	padding-left: 1em;
}
 
#section4 .main-wrap ul li:before {
    content:  "";
    width: var(--font-h3);
    height:  var(--font-h3);
    display:  inline-block;
    background-color:var(--sub-color);
	margin-right: 10px;
}
#section4 .main-wrap .welfare_right{align-self: center;}
#section4 .contact{margin-top: 80px;}
/*------  五つ目 ごあいさつ ------  */
#section5.message .bg{
	background: #fefff5;
	background-size: cover;
	height: auto;
	padding-bottom: 100px;
}
#section5 .main-box .txt{
	padding:0 15px;
	max-width: 900px;
}
#section5 .main-box .bg h1{
	color: var(--sub-color);
	bottom: 6rem;
	top: auto;
}
#section5 .main-box .bg h2{color: #000;}
/*-- 会社概要 --*/
#section5 .company h1{
	color: var(--sub-color);
	text-align: right;
	bottom: 6rem;
	position: relative;
}
.company dl {
	flex-wrap: wrap; /*折り返し*/
	margin: 0 auto;
}
.company dt,
.company dd{padding: 10px;}
.company dt{
	flex-basis: 200px;
	color: var(--main-color);}
.company dd{flex-basis: calc(100% - 200px); /*幅*/}

/* ------ 六つ目 ご挨拶------ */
/* =4-footer
----------------------------- */
footer{
	/*background:#eee;*/
	padding:40px 0 0 0;
}
footer .footer_logo{max-width: 1200px;}
footer hgroup h3{
	color: #000;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color) ;
}
footer dl {
	display: flex;
	flex-wrap: wrap; /*折り返し*/
	line-height: 1;
}
footer dt,
footer dd{padding: 6px; margin-bottom: 10px;}
footer dt{
	flex-basis: 20%;
	text-align: center;
}
footer dl.dl_none dd{
	flex-basis: calc(100% - 20%); /*幅*/
	padding-left: 5px;
}

footer dt.border{border-color: #000 !important;}
footer h3{font-size: 20px;}
footer .tel{font-size: 20px;}
.copy{
	text-align:center;
	padding:10px 0;}

