@charset "utf-8";
/* CSS Document */

html {
  font-size: 10px;
}
body {
  font-family: "FOT-TsukuARdGothic Std", sans-serif;
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
	display: none;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.ffft {
	font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ffyg {
	font-family:"游ゴシック";
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}
.sec-padding {
	padding: 10rem 0;
}
.sec-ttl {
	width: 100%;
	position: relative;
	margin-bottom: 10rem;
}
.sec-ttl h4 {
	font-size: 200px;
	text-align: center;
	font-style: italic;
	letter-spacing: 5px;
	color: rgba(196,229,254,0.5);
	font-weight: bold;
}
.sec-ttl span {
	font-size: 40px;
	letter-spacing: 5px;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.link-btn {
	width: 350px;
	margin: auto;
	background: #3260C9;
	padding: 20px 0 35px 0;
}
.link-btn a {
	display: block;
	text-align: center;
	font-size: 24px;
	position: relative;
}
.link-btn a::before {
	content: "";
	width: 200px;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translate(-50%);
}
.link-btn:hover {
	background: rgba(55,150,196,1.00);
}
.link-btn:hover a::before {
	bottom: 0px;
}

/*- ヘッダー -*/
#header {
	background: #fff;
}
#header h1 {
	margin-bottom: 2rem;
}
#header h1 a {
	display: block;
	font-size: 70px;
	text-align: center;
	color: #707070;
}
#header h1 a span {
	color: #57A5E9;
}
/*グローバルメニュー*/
.g-nav {
	width: 100%;
	padding:1rem 0;
}
.g-nav.fixed{
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
	padding: 2rem 0;
	background: #fff;
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	width: 60%;
	margin: auto;
}
@media screen and (max-width: 1280px){
	nav{
		width: 80%;
		margin: auto;
	}
}
/*ナビゲーションを横並びに*/
nav ul{
	justify-content: space-between;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	color: #333;
	transition:all .3s;
	text-align: center;
	font-size: 18px;
}

nav ul li a:hover{
	color:#7d7d7d;	
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:50%;
	top:7rem;
	transform: translate(-50%);
	z-index: 4;
    /*形状を指定*/
	background:#F9F6EE;
	width:30rem;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
.has-child li a{
	padding: 1rem;
	font-size: 1.8rem;
}
/*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{
	color: #333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#F5999C;
}



/*メインビジュアル*/
.mainvisual {
	width:100%;
	height: 90vh;
	background: url("../img/mainvisual.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
}
.catch-copy {
	position: absolute;
	top: 40%;
	left: 50px;
}
.catch-copy h2 {
	font-size: 70px;
	text-align: center;
	text-shadow: 2px 2px 5px #ccc;
	line-height: 1.2;
}
.catch-copy h3 {
	color: blue;
	font-size: 24px;
	text-align: center;
	margin-top: 3rem;
}

/*- お知らせ -*/
#news {
	margin: 5rem auto;
}
.sec-ttl2 {
	margin: 3rem auto;
}
.sec-ttl2 p {
	text-align: center;
	font-size: 4rem;
	font-style: italic;
	color: #70C1F6;
}
.news-inner {
	width: 1000px;
	margin: auto;
}
.news-inner dl {
	font-size: 18px;
}
.news-inner dl dt {
	width: 20%;
	border-bottom: 1px solid #ccc;
	text-align: center;
	color: #202656;
}
.news-inner dl dd {
	width: 80%;
	border-bottom: 1px solid #ccc;
}


/*- 事業内容 -*/
.work-wrapper {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 100px;
}
.work-wrapper .item {
	width: 30%;
	background: #D3EEF9;
	padding-top: 2rem;
}
.work-ttl {
	text-align: center;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.work-ttl span {
	font-weight: normal;
	font-size: 18px;
}
.work-img {
	width: 90%;
	margin-bottom: -20px;
	margin-left: auto;
	margin-right: auto;
}


/*- 施工実績 -*/
#case {
	background: #EBFAFB;
}
.case-wrapper {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 100px;
}
.case-wrapper .item {
	width: 30%;
	background: #fff;
	padding: 2rem 0;
}
.thumbnail {
	width: 90%;
	margin: auto;
}
.case-ttl {
	width: 90%;
	margin: 1rem auto 0 auto;
	font-size: 18px;
}

/*- 採用情報 -*/
#recruit {
	background: url("../img/rec-bg.png");
	background-size: cover;
	background-position: center;
}
.rec-message .message-b {
	font-size: 40px;
	text-align: center;
}
.rec-message .message-s {
	font-size: 20px;
	text-align: center;
	margin-top: 3rem;
	margin-bottom: 5rem;
	line-height: 2;
}

/*- お問合せ -*/
.contact-link {
	width: 1000px;
	margin: auto;
	justify-content: space-between;
}
.c-link-btn {
	width: 48%;
	height: 120px;
	background: #3260C9;
}
.c-link-btn :hover {
	background: rgba(55,150,196,1.00);
}
.c-link-btn a {
	display: block;
	text-align: center;
	letter-spacing: 3px;
	line-height: 120px;
}
.c-link-btn a i {
	margin-right: 10px;
}
.tel-link a {
	font-size: 40px;
	font-style: italic; 
}
.web-link a {
	font-size: 36px;
}


/*- フッター -*/
#footer h1 {
	margin-bottom: 2rem;
}
#footer h1 a {
	display: block;
	font-size: 70px;
	text-align: center;
	color: #707070;
}
#footer h1 a span {
	color: #57A5E9;
}
#footer .adoress {
	text-align: center;
	font-size: 18px;
	margin-top: 2rem;
}

.foot-bottom {
	background: #70C1F6;
	padding-top: 2rem;
	margin-top: 3rem;
}
.foot-nav {
	width: 900px;
	margin: auto;
	justify-content: space-between;
}
.foot-nav li a {
	display: block;
	font-size: 16px;
}
.copy {
	margin-top: 3rem;
	font-size: 14px;
	text-align: center;
	margin-bottom: 5px;
}



/*--- 下層 ---*/
/*メインビジュアル*/
.s-mainvisual {
	width:100%;
	height: 50vh;
	background: url("../img/s-mainvisual.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
}
.page-ttl {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%);
}
.page-ttl h2 {
	font-size: 90px;
	text-align: center;
	text-shadow: 2px 2px 5px #333;
	letter-spacing: 5px;
}
.s-secttl {
	width: 500px;
	margin: auto;
	border-bottom: 5px solid;
	padding-bottom: 10px;
	border-image: linear-gradient(to right, #2DBBE8, #9EE8EE)1;
}
.s-secttl h3 {
	font-size: 36px;
	text-align: center;
	letter-spacing: 3px;
}

/*- 会社概要 -*/
.c-info-inner {
	width: 1000px;
	margin: 5rem auto;
}
.c-info-inner th {
	width: 30%;
	padding: 20px 0;
	background: rgba(196,229,254,0.5);
	text-align: center;
}
.c-info-inner td {
	margin-left: 20px;
	padding: 20px 0 20px 20px;
}
.c-info-inner th,
.c-info-inner td {
	font-size: 20px;
	border: 1px solid #ccc;
}


/*----- 会社概要 -----*/
	.c-info {
		width: 70%;
		margin: 5rem auto;
	}
	.c-info table {
		width: 100%;
	}
	.c-info table th {
		background: rgba(196,229,254,0.5);
		text-align: center;
		padding: 2rem 0;
		width: 20%;
		font-size: 2rem;
		font-weight: normal;
	}
	.c-info table td {
		padding: 2rem 0 2rem 1rem;
		width: 80%;
		border: 1px solid #D1EAF5;
		font-size: 20px;
	}
	


/*- 事業内容 -*/
.work-inner {
	max-width: 1000px;
	margin: 5rem auto;
}
.work-inner .txt,
.work-inner .img {
	width: 50%;
}
.work-inner .txt {
	margin-right: -50px;
	margin-top: 150px;
	background: rgba(196,229,254,0.5);
	padding: 50px 0;
	z-index: 2;
}
.work-inner .txt p {
	width: 80%;
	margin: auto;
	font-size: 18px;
	line-height: 1.5;
}
.work-inner .img {
	z-index: 1;
}


/*- 施工事例 -*/
.case-container {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5rem;
}
.case-container .item {
	width: 45%;
	padding: 30px 0;
	box-shadow: 3px 3px 6px #ccc;
}
.s-case-txt {
	width: 90%;
	margin: 2rem auto 0 auto;
}
.s-case-txt p {
	font-size: 18px;
	line-height: 1.5;
}
.s-case-txt .ttl {
	border-bottom: 1px solid #ccc;
	margin-bottom: 16px;
}
.case-container .item .link-btn {
	margin-top: 3rem;
}
.case-container .item .link-btn a {
	font-style: italic;
}

/*- 採用情報 -*/
.recruit-top {
	width: 1000px;
	margin: 5rem auto;
}
.recruit-top p {
	text-align: center;
}
.recruit-top .message-b {
	font-size: 30px;
	margin-bottom: 3rem;
}
.recruit-top .message-s {
	font-size: 20px;
	line-height: 2;
}
.rec-point {
	margin: 5rem auto;
	justify-content: space-between;
}
.rec-point .point-item {
	width: 30%;
}
.rec-detail .wait {
	width: 800px;
	margin: 5rem auto;
	border: 1px solid #333;
	padding: 5rem 0;
}
.rec-detail .wait p {
	font-size: 20px;
	text-align: center;
}


/*フォーム*/
.contact-form {
	width: 70%;
	margin-left:auto;
	margin-right: auto;
	margin-top: 10rem;
	font-size: 20px;
	background: #EEFDFE;
	padding: 5rem 0;
}
.contact-form form {
	width: 80%;
	margin: auto;
}
@media screen and (max-width:1280px){
	.form {
		width: 85%;
	}
}
.form-item {
	border-bottom: 1px solid #ccc;
	padding:3rem 0;
}
.form-item ul {
	justify-content: space-between;
	align-items: center;
}
.form-item ul .form-label {
	width: 25%;
	text-align: center;
	line-height: 2.5;
}
.form-item ul .form-label span {
	background: #1053EE;
	color: #fff;
	border-radius: 1rem;
	padding: 0.6rem 1rem;
	font-size: 16px;
}
.form-item ul .form-input {
	width: 70%;
}
.check {
	flex-direction: column;
	gap: 2rem;
}
.input_box {
	border: 1px solid #ccc;
	padding: 1rem 0;
	width: 80%;
}
.input_txtarea {
	border: 1px solid #ccc;
	padding: 1rem 0;
	width: 80%;
	height: 10em;
}

.submit-btn {
	width: 35%;
	margin: 3rem auto;
	border-radius: 3rem;
}
.Form-Btn {
	background: linear-gradient(#0D46B9,#7199D6);
	padding: 2rem 0;
	text-align: center;
	color: #fff;
	width: 100%;
	border: none;
	font-size: 2.4rem;
}









































/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border: 1px solid #874316;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #7d7d7d;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}