@charset "utf-8";



/*共通
---------------------------------------------------------------------------*/
/* h2 */
#inner h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 2rem;
	position: relative;
	color: #fff;
	letter-spacing: 2px;
	text-shadow: 1px 1px 16px #333333;
}

/* h3 */
.heading-13 {
    position: relative;
    color: #333333;
    -webkit-box-reflect: below -10px -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .15));
	font-size: 2rem;
	margin-bottom: 2rem;
}

/* inner */
#inner {
	position: relative;
	height: 100%;
}
/* article */
#inner article {
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}


.md_transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .8s cubic-bezier(.39, .575, .565, 1) 0.8s; 
    z-index: 999999;
}
.md_transition::before {
    background: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 100%, 0)), color-stop(33.33333%, #f2f5f2), color-stop(66.66667%, #f2f5f2), to(hsla(0, 0%, 100%, 0)));
    background: -o-linear-gradient(bottom, hsla(0, 0%, 100%, 0) 0, #f2f5f2 33.33333%, #f2f5f2 66.66667%, hsla(0, 0%, 100%, 0) 100%);
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #f2f5f2 33.33333%, #f2f5f2 66.66667%, hsla(0, 0%, 100%, 0));
    content: "";
    display: block;
    width: 100%;
    height: 300%;
    position: absolute;
    left: 0;
    top: -100%;
}
body.is_remove .md_transition {
    -webkit-animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
    animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
}
body:not(.is_fade) .md_transition {
    transform: translateY(-200%);
}
@-webkit-keyframes maskCloseTransition {
    0% { transform: translateY(200%); }
    to { transform: translate(0); }
}
@keyframes maskCloseTransition {
    0% { transform: translateY(200%); }
    to { transform: translate(0); }
}

/* 背景画像 */
.bg_inner {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.bg_inner::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAABxJREFUGFdj3Lp1639vb29GBiiAMzAEYCoxVAAAXe0IBQOLueMAAAAASUVORK5CYII=");
	background-repeat: repeat;
	background-size: auto;
}
.bg_inner img {
	width: 100%;
}

/* 初期状態は全て非表示 */
.article_wrapper, .bg_inner, .inner-ttl, .article_contents {
	opacity: 0;
	transform: translateY(20px); /* 下からフェードイン */
  }
  
  .bg_inner {
	transform: translateY(-20px); /* 上からフェードイン */
  }
  
  .inner-ttl {
	transform: translateX(-20px); /* 左からフェードイン */
  }
  
  .article_contents {
	opacity: 0; /* ここも非表示にする */
	transform: translateY(20px); /* 下からフェードイン */
  }
  
  /* アニメーションのクラス */
  .fade-in {
	opacity: 1;
	transform: translateY(0); /* 元の位置に戻る */
	transition: all 1s ease-in-out;
  }
  
  .fade-in-left {
	opacity: 1;
	transform: translateX(0); /* 左から戻る */
	transition: all 1s ease-in-out;
  }
  

  /* sp */
  @media only screen and (max-width: 767px) {
	#inner h2 {
		font-size: 2rem;
	}
  }


/*会社概要
---------------------------------------------------------------------------*/
/* ごあいさつ */
.aisatsu-flex {
	display: flex;
	justify-content: space-between;
	width: 75%;
	margin: 0 auto;
}
.aisatsu .aisatsu-txt {
	width: 60%;
}
.aisatsu .aisatsu-img {
	width: 35%;
}
.daihyo {
	text-align: right;
	margin-top: 1rem;
}

/* 会社概要 */
#gaiyou table {
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #ccc
}
#gaiyou table tr {
	border-bottom: 1px solid #ccc;
  }
  
  #gaiyou table th,
  #gaiyou table td {
	padding: 24px 0;
	border: none;
  }
  
  #gaiyou table th {
	width: 30%;
	color: #696969;
  }

  /* スマートフォン、タブレット */
  @media only screen and (max-width: 1024px) {
	.aisatsu-flex {
		flex-direction: column-reverse;
		width: 100%;
	}
	.aisatsu .aisatsu-txt {
		width: 100%;
	}
	.aisatsu .aisatsu-img {
		width: 35%;
		margin: 0 auto 2rem;
	}
  }
  
  /* スマートフォン */
  @media only screen and (max-width: 767px) {
	.aisatsu .aisatsu-img {
		width: 80%;
		margin: 0 auto 2rem;
	}
	
	#gaiyou table {
		border-top: none;
	}
	#gaiyou table tr {
		border-bottom: none;
	  }
	#gaiyou table th,
	#gaiyou table td {
	  width: 100%;
	  display: block;
	}
  
	#gaiyou table th {
	  width: 100%;
	  background-color: #696969;
	  color: #fff;
	  padding: 8px;
	  font-weight: normal;
	}
  
	#gaiyou table td {
	  padding-top: 0;
	}
  }

  /*選ばれる理由
---------------------------------------------------------------------------*/
/* 理由ブロック */

#feature h3{
	padding-left: 1rem;
}
#feature h3::before{
	font-size: 8rem;
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	opacity: .15;
	z-index: -1;
	color: rgb(18 113 56);
}
#feature #feature01 h3::before{
	content: "1";
}
#feature #feature02 h3::before{
	content: "2";
}
#feature #feature03 h3::before{
	content: "3";
}
#feature #feature04 h3::before{
	content: "4";
}

.feature-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#feature section:nth-child(even) {
	background-color: #f2f5f2;
}
#feature section:nth-child(even) .feature-flex {
	flex-direction: row-reverse;
}
.feature .feature-txt {
	width: 60%;
}
.feature .feature-img {
	width: 35%;
	padding: 5rem;
}
.feature .feature-img img {
	border-radius: 10px;
}

#feature .feature-cnt {
	position: relative;
	width: 100%;
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 2px dotted #ccc;
}
#feature .feature-cnt::before {
	content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    border: 8px solid rgb(231 231 231);
    border-radius: 50%;
    background-color: rgb(183 183 183);
}

#feature .feature-cnt h4{
	position: relative;
	z-index: 1;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

#feature .feature-cnt h4::before {
	content: "";
    position: absolute;
    top: 3px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(183, 183, 183, .3);
	z-index: 0;
}

/* 2　資格保有者 */
#feature .feature02-cnt ul {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	list-style-type: circle;
	justify-content: space-between;
}
#feature .feature02-cnt ul li {
	width: 20rem;
}
#feature .feature02-cnt ul li .li-number {
	font-size: 2rem;
	margin-right: 3px;
	font-weight: bold;
}

/* 3　著名プロジェクト */
#feature .swiper-area{
	margin: 2rem 0;
}

/* 4　自社保有資材 */
#feature .feature04-cnt img {
	margin: 0 auto;
}

.feature04-cnt .canvas-container {
	width: 100%;
	height: auto; /* 画面全体の高さに設定 */
	position: relative; /* 子要素を相対的に配置 */
	aspect-ratio: 2 / 1;
}
.feature04-cnt canvas {
	display: block; /* 余白をなくすためにブロック要素として表示 */
	width: 100%; /* 親要素の幅に合わせる */
	height: auto; /* 縦横比を維持 */
}

/* スマートフォン、タブレット */
@media only screen and (max-width: 1024px) {
	#feature h3{
		padding-left: 2rem;
	}
	.feature-flex,
	#feature section:nth-child(even) .feature-flex {
		flex-direction: column-reverse;
	}
	.feature .feature-txt {
		width: 100%;
	}
	.feature .feature-img {
		width: 250px;
		margin: 0 auto 2rem;
		padding: 0;
	}
	#feature .feature02-cnt ul {
		width: 100%;
	}
  }

  /* スマートフォン */
@media only screen and (max-width: 767px) {
	/* 2　資格保有者 */
	#feature .feature02-cnt ul li {
		width: 100%;
	}
	/* 3　著名プロジェクト */
	#feature .feature03-cnt ul li {
		width: 50%;
	}
  }


  /*施工実績
---------------------------------------------------------------------------*/
.search-filter {
	background-color: #f2f5f2;
	width: 80%;
	padding: 2rem 4rem;
	margin: 0 auto 2rem;
	border-radius: 10px;
}
.search-flex {
	display: flex;
	justify-content: space-between;
}
.category-area, 
.year-area {
	width: 48%;
	align-items: center;
	
}
.search-ttl {
	font-size: 1.1rem;
	font-weight: bold;
	margin-right: 1rem;
}
.category-area select, 
.year-area select{
	width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}
.search-btn {
	margin: 2rem auto 0;
    display: block;
    padding: 5px 60px;
    border-radius: 30px;
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    transition: .3s;
	box-sizing: border-box;
}
.search-btn:hover {
    background-color: #fff;
    color: #333;
}

#workslist {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
	justify-content: center;
	align-content: flex-start;
}
#workslist .works-item {
	width: 350px;
	/* border: 1px solid #ccc; */
	padding: 1.5rem 1rem;
}
#workslist .works-category ul {
	display: flex;
	margin-top: 5px;
	flex-wrap: wrap;
}
#workslist .works-category ul li {
	border: 1px solid #333333;
	padding: 4px 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	font-size: .8rem;
}
#noResultsMessage img {
	width: 300px;
	margin: 0 auto 2rem;
}
#noResultsMessage {
	text-align: center;
	margin-bottom: 500px;
}
.works-txt{
	text-align: center;
    margin: 2rem auto 0;
    color: #fff;
    font-size: 1.1rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
}

  /* スマートフォン、タブレット */
  @media only screen and (max-width: 1024px) {
	.search-filter {
		flex-wrap: wrap;
		padding: 2rem;
		width: 100%;
	}
	.search-flex {
		flex-wrap: wrap;
	}
	.category-area, 
	.year-area {
		width: 100%;
	}
	.category-area{
		margin-bottom: 1rem;
	}
	.category-area select, 
	.year-area select{
		width: 100%;
	}	
	#workslist .works-item {
	width: 300px;
	}
	.works-txt{
		font-size: .9rem;
	}
  }
  
  /*お問い合わせ,応募フォーム
---------------------------------------------------------------------------*/
#contact {
	padding: 4rem 10%;
}
#contact .lead_contact{
	text-align: center;
}
#contact .box_contact_tel {
	margin: 2rem auto;
	width: fit-content;
}
#contact .box_contact_tel dt {
	text-align: center;
	font-weight: bold;
}

#contact .ta1,
.entry_form {
	width: 80%;
	margin: 0 auto;
}
#contact .ta1 tr,
.entry_form dl {
	position: relative;
	width: 100%;
  }
#contact .ta1 th,
#contact .ta1 td,
.entry_form dt,
.entry_form dd {
padding: 20px 0;
}
#contact .ta1 th,
.entry_form dt{
	text-align: left;
}
#contact .ta1 tr input[type='text'],
#contact .ta1 tr input[type='email'],
#contact .ta1 tr input[type='tel'],
#contact .ta1 tr textarea,
.entry_form dl input[type='text'],
.entry_form dl input[type='email'],
.entry_form dl input[type='tel'],
.entry_form dl textarea {
	font: 20px/1.6 sans-serif;
	box-sizing: border-box;
	width: 100%;
	padding: 0.3em;
	border: 1px solid #1b2538;
	border-radius: 4px;
	transition: 0.3s;
  }
#contact .ta1 tr input[type='text']:focus,
#contact .ta1 tr input[type='email']:focus,
#contact .ta1 tr input[type='tel']:focus,
#contact .ta1 tr textarea:focus,
.entry_form dl input[type='text']:focus,
.entry_form dl input[type='email']:focus,
.entry_form dl input[type='tel']:focus,
.entry_form dl textarea:focus {
	border: 1px solid #a5d889;
	box-shadow: 0 0 5px 1px rgba(165,216,137, .5);
	outline: none;
  }
#contact .ta1 .privacy {
	text-align: center;
}

#contact .btn,
.btn_form_contact {
	width: fit-content;
	margin: 2rem auto;
}
#contact .btn input,
.btn_form_contact input {
	background-color: #333;
    color: #fff;
    padding: 10px 50px;
    border: none;
    border-radius: 3px;
	outline: 1px solid #333;
    outline-offset: -1px;
	transition: .3s;
}
#contact .btn input:hover,
.btn_form_contact input:hover {
	background-color: #fff;
	color: #333;
	
}
.entry_form h3 {
	font-size: 2rem;
	margin-top: 3rem;
	padding: 1rem;
	border-bottom: 1px solid;
}
.entry_form dl {
	display: flex;
	justify-content: space-between;
}
.entry_form dt {
	width: 20%;
	font-weight: bold;
    font-size: 1.1rem;
}
.icon_require {
	color: rgb(246, 68, 68);
}
.entry_form dd {
	width: 78%;
}
.entry_form .check_contact_privacy {
	text-align: center;
	margin: 1rem 0;
}


/* タブレット、スマートフォン */
@media only screen and (max-width: 1024px) {
	.entry_form dl {
		flex-wrap: wrap;
	}
	#contact .ta1,
	.entry_form {
		width: 100%;
	}
	#contact .ta1 th,
	#contact .ta1 td,
	.entry_form dt,
	.entry_form dd {
		width: 100%;
		display: inline-block;
	}
	#contact .ta1 th,
	.entry_form dt{
		text-align: center;
		padding-top: 20px;
		padding-bottom: 0;
  	}
	  #contact .ta1 td,
	  .entry_form dd{
		text-align: center;
		padding: 0;
  	}
}

/*プライバシーポリシー
---------------------------------------------------------------------------*/
#privacy {
	padding: 4rem 30%;
}
#privacy h3 {
	text-align: center;
	font-size: 1.5rem;
	border-bottom: 2px solid;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
}
#privacy .cont_privacy dl {
	margin-top: 3rem;
}
#privacy .cont_privacy dt {
	font-size: 1.3rem;
	border-left: 10px solid #dfdfdf;
	padding-left: 1rem;
	margin-bottom: 1rem;
}