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

/**********************************************************/
/* リセット */
/**********************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	vertical-align: baseline;
	box-sizing:border-box;
	image-rendering: -webkit-optimize-contrast;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}


ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ol {
  list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

dl, dt, dd {
	margin: 0;
	padding: 0;
}


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

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

.clear {
	clear:both;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}

img {
  max-width: 100%;
	vertical-align:bottom;
	image-rendering: -webkit-optimize-contrast;
}

a {
	color:#444;
	text-decoration: none;
}


/*************** PC・SP共通ベース ***************/

:root {
  --green:#054d0b;
  --vert:#054d0b;
  --gray:#E9E9E9;
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
	background:#FFF;
	color: #373737;
  font-size:1.6rem;
	font-family: "Plus Jakarta Sans",'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
	line-height: 2;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

/* ページの先頭に戻る(すべてのページ) */

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #E9E9E9;
  z-index: 999;
}
.pagetop a {
  width: 60px;
  height: 60px;
  display: block;
}
.pagetop a img {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
.pagetop a:hover img {
  transform: translate(-50%,-100%);
  transition: .3s;
}


/* google map */

.gmap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* スライドのアニメーション */

.slide1,
.slide2,
.slide3,
.slide4,
.slide5 {
  width: 50%;
  overflow: hidden;
  position: relative;
  opacity: 0;
}

.slide-left,
.slide-right {
  width: 50%;
  overflow: hidden;
  position: relative;
  opacity: 1;
}
.slide-right {
  margin-left: auto;
}
.slide-left img,
.slide-right img {
  width: 100%;
}

.slide-left::before {
  animation: slide-left 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--gray);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes slide-left {
  100% {
    transform: translateX(100%);
  }
}

.slide-right::before {
  animation: slide-right 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--gray);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes slide-right {
  100% {
    transform: translateX(-100%);
  }
}

.box_right,
.box_left {
  opacity: 0;
}
.box_right.box1,
.box_left.box2 {
  opacity: 1;
}

.box1 {
  animation: slideInRight 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.box2 {
  animation: slideInLeft 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}


/* テキストのアニメーション */

/*フェードイン*/
.fade_in {
  transition: 1s ease-in-out;
  opacity: 0;
}
.fade_in.on {
  opacity: 1.0;
}

/*下から上へ*/
.scroll_up {
  transition: 0.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*左から出現*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*右から出現*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/*施工事例*/

.works_img {
  overflow: hidden;
  position: relative;
  opacity: 0;
}
.works_img.on {
  opacity: 1;
}
.works_img.on::before {
  animation: slide-top 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--gray);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes slide-top {
  100% {
    transform: translateY(100%);
  }
}


@keyframes zoom {
   0% {
      transform: scale(1.2);
   }
   100% {
      transform: scale(1);
   }
}



@media screen and (min-width:768px), print{
/**********************************************************/
/* ベース部分 */
/**********************************************************/

body {
	min-width:1140px;
  overflow: hidden;
}
.pc_none,.hidden {
	display:none !important;
}
a[href^="tel:"] {
    pointer-events: none;
}


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

header {
  /*background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);*/
  width: 100%;
  min-width:1140px;
	height:80px;
	margin:0 auto;
  padding: 0 50px;
  display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.header-color {
  background-color: rgba(5,77,11,0.95);
  transition: .3s;
}
header .site_name {
	width: 320px;
  height: 80px;
}
header .site_name a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
	background: url("../images/header/logo.svg") no-repeat left center / 50px;
  color: #FFF;
  padding-left: 60px;
}
header .site_name a span {
  font-size: 1.3rem;
}
header .nav_menu {
	display:flex;
	justify-content:space-between;
}
header .nav_menu ul {
	display:flex;
	align-items:flex-end;
	gap:0 50px;
}
header.is-animation .nav_menu ul {
	height:40px;
}
header .nav_menu ul li {
	text-align: center;
  letter-spacing: 0.05em;
}
header .nav_menu ul li a {
  font-family: "Zen Old Mincho", serif;
  position: relative;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 600;
}
header .nav_menu ul li a:hover {
  color: #FFF;
  transition: .5s;
}
header .nav_menu ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #FFF;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
}
header .nav_menu ul li a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
  background: #FFF;
}




/* パンくずリスト */

.breadcrumb {
  background: var(--gray);
  margin-top: 80px;
}
.breadcrumb ul {
  min-width: 1140px;
  display: flex;
  padding: 0 150px;
  margin: 0 auto;
}
.breadcrumb ul li {
  font-size: 1.4rem;
  margin-right: 0.5em;
}
.breadcrumb ul li:not(:last-child)::after {
  content: '>';
  display: inline-block;
  margin-left: 0.5em;
}
.breadcrumb ul li a {
  text-decoration: underline;
}
.breadcrumb ul li a:hover {
  text-decoration: none;
}


/* メイン画像 */

.main_img {
}



/**********************************************************/
/*  メインエリア */
/**********************************************************/

main {
	width:100%;
	display:block;
}

section {
	width:100%;
	position:relative;
}
.inner {
  width: 1040px;
  margin: 0 auto;
  position: relative;
}

.separator {
  width: 100%;
  height: 300px;
  position: relative;
}
.separator>div {
  display: block;
  width: 300px;
  height: 300px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--green);
}
/*.separator::after {
  content: '';
  display: block;
  width: 300px;
  height: 300px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--green);
}*/
.separator_right>div {
  right: 0;
}
.separator_left>div {
  left: 0;
}




/* ページ内メニュー */

.page_menu {
  height: 300px;
  display: flex;
  align-items: center;
  gap:0 100px;
  min-width: 1140px;
  padding: 0 150px;
}
.page_menu li {
  border-left: solid 1px #373737;
  line-height: 1.75;
}
.page_menu li a {
  font-size: 2.4rem;
  font-weight: 200;
  display: block;
}
.page_menu li a span.subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}





.page_menu li a {
  line-height: 1.75;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 5px;
}
.page_menu li a::after {
  background: var(--green);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.page_menu li a:hover {
  color: #FFF;
  font-weight: 200;
}
.page_menu li a:hover::after {
  transform: scale(1, 1);
}



/* リクルートリンクへのバナー */

.recruit_banner {
  width: 100%;
  overflow:hidden;
}
.recruit_banner a {
  transition:.5s all;
}
.recruit_banner a:hover {
  filter: brightness(0.7);
  transition:.5s all;
}
.recruit_banner a img {
  transition:.5s all; 
}
.recruit_banner a:hover img {
  transform:scale(1.05);
  transition:.5s all;
}


/* リンクボタン */

.link_to {
  display: block;
  width: 300px;
  height: 50px;
  background: #373737;
  color: #FFF;
  line-height: 50px;
  padding-left: 20px;
  position: relative;
	overflow: hidden;
  transition: ease .2s;
  margin-top: 50px;
}
.link_to:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:var(--vert);
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.link_to:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.link_to span {
	position: relative;
	z-index: 3;
}
.link_to img {
  display: block;
  width: 30px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  transition: ease .5s;
}
.link_to:hover img {
  right: 10px;
  transition: ease .5s;
}


/* 見出し・本文・リスト設定 */

main h2 {
}
main h3 {
}

.content {
  background: var(--gray);
}
.content h2 {
  line-height: 1.6;
  color: var(--vert);
  text-align: left;
}
.content h2 span {
  font-size: 4rem;
  font-weight: 200;
  color: var(--vert);
}
.content_img_left {
  display: block;
  /*width: 50%;*/
  width: 100%;
}
.content_img_right {
  display: block;
  width: 50%;
  margin-left: auto;
}
.content_txt {
  width: 50%;
  background: #FFF;
  padding-top: 60px;
  padding-bottom: 80px;
  position: absolute;
  top: 0;
  z-index: 10;
  display: grid;
  place-items: center;
}
.txt_right {
  right: 10%;
}
.txt_left {
  left: 10%;
}
.txt_box {
  min-width: 450px;
  max-width: 620px;
  width: 80%; 
}
.txt_box h2 {
  color: var(--vert);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.txt_box .sub {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.55;
}


/**********************************************************/
/* フォーム */
/**********************************************************/

.contact .inner {
  padding-top: 0;
  padding-bottom: 100px;
}
.contact .box_left {
  width: 300px;
  height: 300px;
  background: var(--green);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.contact .inner .txt_box {
/*
  width: 100%;
  padding-left: 450px;
  padding-top: 150px;
  margin-bottom: 100px;
*/
  width: 1000px;
  margin: 0 auto 100px;
  padding-top: 150px;
  padding-left: 250px;
}
.contact .txt_box h2 {
  margin-bottom: 50px;
}
.contact .txt_box p {
  font-weight: 300;
}

.contact_form ul {
  width: 900px;
  margin: 0 auto 100px;
}
.contact_form ul li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 0 90px;
}
.contact_form ul li:last-child {
  margin-bottom: 0;
}
.contact_form ul li>span {
  width: 60px;
  height: 60px;
  display: block;
}
.required {
  display: block;
  background: var(--vert);
  color: #FFF;
  text-align: center;
  line-height: 60px;
}
.contact_form ul li dl {
  display: flex;
  flex-wrap: wrap;
}
.contact_form ul li dl dt  {
  width: 150px;
  line-height: 60px;
  color: var(--vert);
}
.contact_form ul li dl dt:last-of-type {
  letter-spacing: 0;
}
.contact_form ul li dl dd  {
  width: 545px;
  box-sizing: border-box;
}
.contact_form ul li dl dd.occupation  {
  line-height: 60px;
}
.contact_form ul li dl dd input,
.contact_form ul li dl dd textarea {
  display: block;
  height: 60px;
  box-sizing: border-box;
  border: none;
  background: #F2F2F2;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 15px;
}
.contact_form ul li dl dd textarea {
  width: 100%;
  height: 300px;
}
.contact_form input::placeholder,
.contact_form textarea::placeholder {
  color: #B3B3B3;
}

.comfirm_box {
  width: 900px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.to_privacy {
  color: var(--vert);
  text-decoration: underline;
}
.to_privacy:hover {
  text-decoration: none;
}

.contact .link_to {
  background: var(--vert);
  margin-left: auto;
  cursor: pointer; 
}
.contact .link_to input {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: #FFF;
  letter-spacing: 0.1em;
  cursor: pointer; 
}
.contact .link_to:hover,
.contact .link_to:hover input{
  pointer-events: none;
}
.contact .link_to:hover:before,
.contact .link_to:hover:before input{
	pointer-events: none;
  transform:none;
}
.contact .link_to:hover img {
  display: none;
}



/**********************************************************/
/* テーブル */
/**********************************************************/

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
}

th {
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background: var(--green);
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 13px 0;
}

td {
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background: var(--gray);
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 13px 0;
}


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

footer {
	width:100%;
  background: var(--green);
  color: #FFF;
  padding: 100px 0 40px;
  text-align: center;
}
.footer_logo {
  display: block;
  width: 100px;
  margin:0 auto 30px;
}
.footer_address {
  width: 460px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 25px;
  text-align: left;
}
.footer_address .address {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
}
.footer_address img {
  width: 140px;
  height: 84px;
  object-fit: cover;
  display: block;
}
.footer_address span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin:0 auto 5px;
}
.footer_sns {
  display: flex;
  justify-content: center;
  gap:0 30px;
  margin-bottom: 25px;
}
.footer_sns li {
}
.footer_sns li a {
  display: block;
}
.footer_sns li a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.policy_link {
  display: block;
  color: #FFF;
  margin-bottom: 50px;
}
.policy_link:hover {
  text-decoration: underline;
}
footer small {
  letter-spacing: 0.025em;
}

}










