@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap'); */


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #333;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #a5d889;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #333;	/*上のprimary-colorの対となる色*/

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*全体のスタイル
---------------------------------------------------------------------------*/
html {
	color: #333;
	background-color: #f2f5f2;
	font-size: 16px;
}
body {
	font-family: "Zen Kaku Gothic New", serif;
}
header{
	position: relative;
    width: 100%;
    height: 0;
    padding-top: 150px;
    overflow: hidden;
}
#top header{
    padding-top: 56%;
}



/*section
---------------------------------------------------------------------------*/
section{
	width: 100%;
	padding: 6rem 10%;
	position: relative;
}

/* 2カラムの場合 */
.column2 {
	display: flex;
	justify-content: space-between;
}
.column2 .col-1 {
	width: 35%;
}
.column2 .col-2 {
	width: 57%;
}


/*h2
---------------------------------------------------------------------------*/
/* TOP */
#top h2{
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: .18rem;
}
#top h2 .h2-jp {
	display: block;
	color: #979797;
	font-size: 1rem;
	line-height: 1.5rem;
}
#top .text-progress {
    position: relative;
	display: block;
    color: #ccc;
}

#top .text-progress::after {
    content: attr(data-txt);
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    clip: rect(0,0,200px,0);
    transition: clip .7s linear;
}

#top .text-progress.inview::after {
    clip: rect(0,600px,200px,0);
}

/*.sub-ttl
---------------------------------------------------------------------------*/
.sub-ttl{
	font-size: 2rem;
	font-weight: bold;
	border-bottom: 1px solid;
	padding-bottom: 1rem;
	margin-bottom: 1.6rem;
}

/*view moreボタン
---------------------------------------------------------------------------*/
.more-btn {
	position: relative;
	border: none;
	width: 300px;
	max-width: 90%;
}
.more-btn::before {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: #666;
	rotate: 40deg;
	position: absolute;
	right: -3px;
	bottom: 9px;
	transition: .3s;
}
.more-btn::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #666;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: .3s;
}
.more-btn:hover::before {
	right: -18px;
}
.more-btn:hover::after {
	right: -15px;
}

/*フェードイン
---------------------------------------------------------------------------*/
/* 右からフェードイン(初期値) */
.fadein.fadein-right {
	opacity: 0; /* 最初は非表示 */
	transform: translateX(30px); /* 右に80pxの位置から */
	transition: opacity .1s, transform .5s; /* 透過率と縦方向の移動にかかる時間 */
  }
/* 左からフェードイン(初期値) */
.fadein.fadein-left {
	opacity: 0; /* 最初は非表示 */
	transform: translateX(-30px); /* 左に80pxの位置から */
	transition: opacity .1s, transform .5s; /* 透過率と縦方向の移動にかかる時間 */
}
/* フェードイン(スクロールした後) */
.fadein.fadein-right.is-inview,
.fadein.fadein-left.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateX(0); /* 通常の位置に移動する */
	transition-delay: .4s; /* フェード開始を0.7秒遅らせる */
}

/*ローディング画面
---------------------------------------------------------------------------*/
.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	/* 背景色の設定 */
	background-image: linear-gradient(45deg, rgba(233, 233, 233, 1), rgba(217, 217, 217, 1));
	z-index: 9999;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }
  /* 点滅 */
.blinking{
	-webkit-animation:blink 1s ease-in-out infinite alternate;
	-moz-animation:blink 1s ease-in-out infinite alternate;
	animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}

.ashiba {
    width: 150px;
    height: 150px;
    display: block;
    position: relative;
    margin-top: 3rem;
	animation: rotateAnimation 5s infinite;
}

.ashiba1, .ashiba2, .ashiba3, .ashiba4 {
    opacity: 1; /* 初期状態は非表示 */
    animation-timing-function: ease-in-out;
}

.ashiba1 {
    width: 150px;
    height: 3px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    bottom: 8px;
    left: 0;
    animation: fadeIn1 5s infinite;
}

.ashiba2 {
    animation: fadeIn2 5s infinite;
}

.ashiba2-1 {
    width: 3px;
    height: 150px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    bottom: 0;
    left: 0;
}

.ashiba2-2 {
    width: 3px;
    height: 150px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    bottom: 0;
    right: 0;
}

.ashiba3 {
    animation: fadeIn3 5s infinite;
}

.ashiba3-1 {
    width: 3px;
    height: 207px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    bottom: -29px;
    left: 73px;
    transform: rotate(45deg)
}

.ashiba3-2 {
    width: 3px;
    height: 207px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    bottom: -29px;
    right: 73px;
    transform: rotate(-45deg);
}

.ashiba4 {
    width: 150px;
    height: 3px;
    background-color: #777777;
    /* border-radius: 50%; */
    position: absolute;
    top: 8px;
    left: 0;
    animation: fadeIn4 5s infinite;
}

/* フェードインのアニメーション */
@keyframes fadeIn1 {
    0% {opacity: 0;}
	15% {opacity: 1;}
	80% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeIn2 {
    0% {opacity: 0;}
	15% {opacity: 0;}
	30% {opacity: 1;}
	80% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeIn3 {
    0% {opacity: 0;}
	30% {opacity: 0;}
	45% {opacity: 1;}
	80% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeIn4 {
    0% {opacity: 0;}
	45% {opacity: 0;}
	60% {opacity: 1;}
	80% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes rotateAnimation {
	0% {transform: rotate(0deg);}
	80% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}





/*グローバルナビ
---------------------------------------------------------------------------*/
header #nav {
	/* headerを画面上部に固定する */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	/* ロゴとナビゲーションを横並びにする */
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* スクロールしても他のコンテンツの下にならないようにする */
	z-index: 10;
	/* headerに余白を作る */
	padding: 25px 20px;
	/* アニメーションの変化時間 */
	transition: 0.5s;
  }
  
  /* ロゴのデザイン */
  #nav .logo {
	width: 200px;
	padding: 0;
	margin: 0;
  }
  
  /* ナビゲーションのリンクを横並びにする */
  #nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  #nav li {
	list-style: none;
  }
  
  /* ナビゲーションのリンクのスタイル調整 */
  #nav a {
	display: inline-block;
	margin-left: 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 1px;
	/* アニメーションの変化時間 */
	transition: 0.5s;
	padding-bottom: 5px;
	position: relative;
  }

  #nav ul a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
	transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 0.3s; /*変形の時間*/
	}
  #nav.scroll-nav ul a::after {
	background: #333;
  }
	
  #nav ul a:hover::after {
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
	}
  
  /* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
  #nav.scroll-nav {
	/* 余白を狭くする */
	padding: 15px 30px;
	/* 背景を白にする */
	background: #fff;
	/* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  /* 「scroll-navクラス」がヘッダーについたときに、ナビゲーションの文字を黒にする */
  #nav.scroll-nav ul li a {
	color: #333;
  }

/*ページトップに戻る
---------------------------------------------------------------------------*/  
.pagetop {
opacity: 0;
height: 50px;
width: 50px;
position: fixed;
right: 30px;
bottom: 30px;
background: #e3f18d;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
box-shadow: 0 0 3px #bfbebe;
transition: .3s;
}

.pagetop__arrow {
height: 10px;
width: 10px;
border-top: 3px solid #333;
border-right: 3px solid #333;
transform: translateY(20%) rotate(-45deg);
}

.pagetop.scroll-pagetop{
	opacity: 1;
}




/*採用情報ボタン
---------------------------------------------------------------------------*/  
.recruit_bnr {
	height: 150px;
    width: 40px;
    position: fixed;
    right: 0;
    top: 100px;
    background: #0094ff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 3px #bfbebe;
    transition: .3s;
    writing-mode: vertical-rl;
    border-radius: 10px 0 0 10px;
    letter-spacing: 3px;
    font-size: 1.1em;
	}
.recruit_bnr p::after{
	content: '\f0a1';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-top: .5rem;
}
.recruit_bnr a {
	color: #fff;
	width: 100%;
	height: 100%;
	padding: 10px;
	line-height: 1;
}
	
/*メインビジュアル
---------------------------------------------------------------------------*/
.catch{
	font-size: 3rem;
	color: #fff;
	position: absolute;
	top: 30%;
	left: 5%;
	margin: auto;
	z-index: 5;
	font-weight: 400;
	font-style: normal;
	text-shadow: 1px 1px 10px #333;
	letter-spacing: 1.5px;
}
.catch span {
	font-size: 2.5rem;
}
/*お知らせ
---------------------------------------------------------------------------*/
#news .col-1{
	width: 30%;
	margin-right: 6rem;
}
#news .col-2{
	width: 70%;
}
#news .news-ttl .btn {
	margin-top: 3rem;
}

#news ul {
	max-width: 1050px;
}
#news ul li {
	font-weight: bold;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
	display: flex;
	justify-content: space-between;
	vertical-align: middle;
	border-bottom: 1px solid;
	align-items: center;
}

#news ul li .news-itemDate {
	background-color: #333;
	border-radius: 30px;
	color: #fff;
	font-size: .8rem;
	text-align: center;
	padding: 2px;
	width: 10%;
	min-width: 130px;
	height: fit-content;
	margin: 0 2rem 0 1rem;
}

#news ul li .news-itemName {
	width: 80%;
	padding: 1rem;
}


/*事業内容
---------------------------------------------------------------------------*/
#business{
	background-color: #fff;
}
#business .column2 {
	align-items: center;
	margin-top: 2rem;
}
#business .col-1 {
	width: 500px;
}
#business .col-2 {
	width: calc(100% - (500px + 5%));
}
#business .more-btn {
	margin: 4rem 0 0 auto;
}

#business::before {
content: "";
height: 150px;
background-color: #999;
position: absolute;
top: 0;
left: 0;
/* アニメーションの命令 */
animation: scrollAnime linear;
/* 可視範囲（スクロールポート）内でアニメーションさせる */
animation-timeline: view();
/* 可視範囲に入ってきてから完全に出るまでの間にアニメーション */
animation-range: cover;
animation-delay: -1;
}
/* widthを0から100%に変化 */
@keyframes scrollAnime {
from {
	width: 0;
	background-color: #69a767;
}

to {
	width: 100%;
	background-color: #e3f18d;
}
}

#canvas_s {
	width: 500px;
	height: 500px;
}
#business canvas {
	border: none!important;
}


/*選ばれる理由
---------------------------------------------------------------------------*/
#feature {
	padding: 0;
}
.bgImage-clip {
	position: absolute;
	top: -6rem;
	left: 0;
	width: 100%;
	height: 130%;
	min-height: 1000px;
	clip-path: inset(0);
	z-index: -1;
  }
  
  .bgImage-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-image: url("../../images/bg_feature.webp");
	background-repeat: no-repeat;
  }
  .bgImage-fixed::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;
}
.bgImage-fixed::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .25);
}
  
#feature .feature-ttl {
	font-size: 3rem;
    font-weight: bold;
	margin: 6rem 10% 0;
	color: #fff;
	text-shadow: 1px 1px 3px #333;
	text-align: center;
}
#feature .feature-ttl span {
	font-size: 4.5rem;
}
  
  .st-wrapper{
	display: flex;
	justify-content: space-between;
	margin: 0 10% 6rem;
	flex-wrap: wrap;
  }
  .st-wrapper .st-item{
	width: 49.5%;
	background-color: rgba(255, 255, 255, .9);
	border-radius: 3px;
	border-radius: 3px;
	transition: .3s;
	margin-bottom: 1rem;
	border: 15px solid rgba(0, 0, 0, .15);
  }
  .st-wrapper .st-item a{
    width: 100%;
    height: 100%;
    display: block;
    padding: 2rem;
  }
  .st-wrapper .st-item:hover{
	transform: translate(-5px, -5px);
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 2px 2px 5px #fff;
  }
  .st-wrapper .st-item .st-ttl{
	margin-bottom: 1.5rem 2rem 2rem;
  }
  .st-wrapper .st-item h3{
	font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .st-wrapper .st-item h3 .number{
	font-size: 3.5rem;
	margin-right: 1rem;
  }
  .st-wrapper .st-item h3 .emp{
	border-bottom: 4px double;
  }
  .st-wrapper .st-item img {
	max-width: 80%;
	max-height: 100px;
  }
  .st-wrapper .st-txt {
	display: flex;
	justify-content: space-between;
  }
  .st-wrapper .st-txt .st-img{
	width: 30%;
  }
  .st-wrapper .st-txt .st-img img{
	margin: 0 auto;
	object-fit: contain;

  }
  .st-wrapper .st-txt p{
	width: 68%;
	font-size: 1.1rem;
  }
  .st-wrapper .st-btntxt {
	width: 65%;
	text-align: center;
	margin: 1.5rem auto 0;
	border: 1px solid;
	border-radius: 30px;
	transition: .3s;
  }
  .st-wrapper .st-btntxt::after {
	content: "+";
	margin-left: 1rem;
  }
  
  .st-wrapper .st-item:hover .st-btntxt{
	background-color: #333;
	color: #fff;
  }

/*施工実績
---------------------------------------------------------------------------*/
#works {
	background: linear-gradient(45deg, #f2f5f2 0%, #f2f5f2 50%, #fff 50%, #fff 100%);
}
#works .swiper-area{
	margin: 3rem 0; 
}
#works img {
	width: 100%;
}
.works-btn {
	position: relative;
	font-size: 16px;
	border: 1px solid #333;
	text-align: center;
	max-width: 200px;
	margin: 3rem auto 0;
	transition: .3s;
}
.works-btn a {
	color: #333;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.works-btn::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #333;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	margin: auto;
	transition: .3s;
}
.works-btn:hover {
	opacity: .8;
}
.works-btn:hover::before {
	right: -40px;
}

/*採用情報
---------------------------------------------------------------------------*/
#recruit::before {
	content: '';
	background-image: url('../../images/bg_recruit.webp');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
	background-size: cover;
}
#recruit::after {
	content: '';
	background-color: #004CA0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
	opacity: .5;
}
#recruit .column2 {
	align-items: stretch;
}
#recruit .col-1 {
	width: 43%;
}
#recruit img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#recruit .col-2 {
	background-color: #fff;
	padding: 4rem;
}
.recruit-ttl {
	margin-bottom: 2rem;
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	padding: 3rem 0 0;
	border-top: 1px solid #ccc;
	background-color: #fff;
	background-color: #f3f3f3;
}
footer .footer-fl {
	display: flex;
	justify-content: space-between;
	padding: 0 15%;
}
footer ul {
	/* display: flex; */
	justify-content: space-between;
	/* width: 50%; */
}
footer ul li:not(:last-child) {
	margin-bottom: 1rem;
}
footer ul li a {
	transition: .3s;
}
footer ul li a:hover {
	opacity: .6;
}
footer .logo {
	display: inline-block;
	margin: 0 auto 1rem;
	max-width: 180px;
}
footer .logo-area p span {
	margin-right: 1rem;
}
footer .copy {
	background-color: #333;
	color: #fff;
	margin-top: 2rem;
	padding: 15px;
	text-align: center;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.dn {display: none !important;}
.block {display: block !important;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, yellow);}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*** PC(1025px～) ***/
	@media screen and (min-width:1025px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
	.tab {display: none;}
	.sp {display: none;}
	
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		}
	}/*追加指定ここまで*/

	/*** タブレット(768～1024px) ***/
	@media screen and (min-width:768px) and ( max-width:1024px) {
	.pc {display: none;}
	.tab {display: block;}
	.sp {display: block;}
	}

	/*** スマートフォン(767px) ***/
	@media only screen and (max-width: 767px) {
	.pc {display: none;}
	.tab {display: none;}
	.sp {display: block;}
	}