@charset "utf-8";

@media screen and (max-width:519px) {
  /* 共通
  ------------------------------------------------------------*/
  body {
  	background-color: #ffffff;
  	font-family: 'Chakra Petch','Zen Kaku Gothic New', sans-seri;
  	font-size: 16px;
  	letter-spacing: 0.05em;
  	color: #333;
  	overflow-wrap:break-word;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
  	margin: 0;
  }

  /*-- タグリンク --*/
  body a{text-decoration: none; color:#333;}
  body a:link {text-decoration: none; color:#333;}
  body a:visited{text-decoration: none; color:#333;}
  body a:hover{color:#a9a9a9;}
  body a:active{text-decoration: none;}

  /*-- 共通カラー設定 追記 --*/
  :root {
    --color-gray: #333;
    --color-white: #FFF;
    --color-black: #000;
  }

  img{
  	width: 100%;
  	height: auto;
  }

  section{
  	clear:both;
  }

  .br-pc{
  	display: none;
  }
  .br-mid{
  	display: none;
  }
  .br-sp{
  	display: block;
  }

  /*-- pc電話発信無効 --*/
  @media(min-width: 768px){
    a[href^="tel:"]{
      pointer-events: none;
    }
  }


  /*========= スクロールダウン===============*/
  .scrolldown1{
  	display: block;
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    left: 25%;
    bottom:5px;
    height:50px;
  	z-index: 50;
  }

  /*Scrollテキストの描写*/
  .scrolldown1 span{
      /*描画位置*/
    position: absolute;
    left:-30px;
    top: -20px;
      /*テキストの形状*/
    color: #333;
    font-size: 14px;
  	font-family: 'Chakra Petch', sans-seri;
    letter-spacing: 0.05em;
  	z-index: 50;
  }

  /* 線の描写 */
  .scrolldown1::after{
    content: "";
      /*描画位置*/
    position: absolute;
    top: 0;
      /*線の形状*/
    width: 1.2px;
    height: 60px;
    background: #333;
      /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
  }


/*========= ヘッダーナビ ===============*/
.header-nav{
  	display: none;
}

/*========= 三本線 ===============*/
  .openbtn{
    display: block;
  }
  .openbtn{
  	position:fixed;
    z-index: 888;/*ボタンを最前面に*/
  	top:10px;
  	right: 10px;
  	cursor: pointer;
      width: 50px;
      height:50px;
  }
  /*×に変化*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 14px;
      height: 1px;
      border-radius: 2px;
  	background-color: #666;/*カラー*/
    	width: 45%;
    }

  /*三本線の高さ*/
  .openbtn span:nth-of-type(1) {
  	top:15px;
  }
  .openbtn span:nth-of-type(2) {
  	top:23px;
  }
  .openbtn span:nth-of-type(3) {
  	top:31px;
  }
  /*end//三本線の高さ*/

  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
      background-color: #fff;/*カラー*/
  }
  .openbtn.active span:nth-of-type(2) {
  	opacity: 0;
    background-color: #fff;/*カラー*/
  }
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
      background-color: #fff;/*カラー*/
  }

/*============================
ナビゲーション ===============*/

#g-nav{
      display: block;

        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 100;
        /*ナビのスタート位置と形状*/
    	top:0;
        right: -120%;
    	width:100%;
        height: 100vh;/*ナビの高さ*/
    	background:#333;/*ナビ背景色*/
    	opacity: 0.8;
        /*動き*/
    	transition: all 0.6s;
}

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 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 {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li{
    	list-style: none;
        text-align: center;
    }

    #g-nav li a{
    	color: #fff;
    	text-decoration: none;
    	padding:10px;
    	display: block;
    	text-transform: uppercase;
    	letter-spacing: 0.1em;
    	font-weight: bold;
      font-family: 'Zen Kaku Gothic New', sans-seri;
    }

    /*ホバー半透明*/
    #g-nav li a:hover{
    	opacity: 0.5;
    }


/*========= メインビジュアル===============*/

/*pc非表示*/
.main-pc{
	display: none;
}

/*sp非表示*/
.main-sp{
	display: block;
}

/*mid非表示*/
.main-mid{
	display: none;
}
/*親*/
.swiper-slide {
  position: relative;
}
.swiper-slide img {
  object-fit: cover;
	height: 85vh;
}
/* ロゴ */
.top-logo{
		position: absolute;
		z-index: 20;
		top: 2%;
		left: 6%;
		width: 28%;
}
.top-logo img{
	opacity: 1;
	transition: 1.0s ;
}
.top-logo img:hover{
	opacity: 0.5;
}
.top-logo-bg{
	position: absolute;
	z-index: 10;
	top: 0%;
	left: 0%;
	width: 60%;
}
.top-logo-bg img{
		opacity: 0.5;
}

/*グラデ グラフィック*/
.top-catch-bg{
	position: absolute;
	z-index: 10;
	bottom: -1%;
	right: 0%;
	width: 90%;
}
.top-catch-bg img{
		opacity: 0.5;
}
/*テキスト*/
.top-catch-txt{
	position: absolute;
	z-index: 20;
	bottom: 10%;
	right: 4%;
	font-size: 3.6vw;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: right;
}
.top-catch-eg{
	font-size: 24vw;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin-top: -2%;
}
.top-catch-mark{
	width: 55%;
	margin-top: 0%;
	margin-left:auto;
}

/*--------------------------------------------------------
	  message
--------------------------------------------------------*/
.top_message_txt{
	margin-top: 60px;
	text-align: center;
	font-size: 3.5vw;
	line-height: 2em;
	font-weight: bold;
	height: 60px;
}

/*--------------------------------------------------------
	  事業内容
--------------------------------------------------------*/
.sec_business{
}
.top_business_block{
	width: 100%;
  margin-top: 40px;
	background-image: url("../images/business-bg.jpg");
	background-size:contain;
	background-repeat:  no-repeat;
}
.top_business_inner{
}
.top_business_ttl{
	margin: 0 auto;
	width: 80%;
	padding-top: 60px;
}
.top_business_ttl_mark{
	width: 50%;
}
.top_business_ttl_eg{
	font-size: 12vw;
	color: #0099d9;
}
.top_business_ttl_jp{
		font-size: 5vw;
		font-weight: bold;
		letter-spacing: 0.1em;
		margin-top: -10px;
}
.top_business_contents{
	margin: 80px auto 40px;
	width: 85%;
}
.top_business_contents_ttl{
	font-size: 4.5vw;
	font-weight: bold;
	margin-top: 20px;
  line-height: 1.8em;
}
.top_business_txt{
		font-size: 3.5vw;
		line-height: 2em;
		margin-top: 20px;
		text-align: justify;
	font-weight: bold;
	letter-spacing: 0.05em;
}
.top_business_more{
	margin-top: 40px;
	margin-left: auto;
	width: 260px;
	text-align: center;
	background: #333;
	color: #fff;
	padding: 10px ;
	font-size: 16px;
	letter-spacing: 0.1em;
	opacity: 1;
	transition: 1.0s ;
}
.top_business_more:hover{
	opacity: 0.6;
	transition: 1.0s ;
}
/*-- タグリンク --*/
.top_business_more a{text-decoration: none; color:#fff ;	padding: 10px 80px;}
.top_business_more a:link {text-decoration: none; color:#fff;}
.top_business_more a:visited{text-decoration: none; color:#fff;}
.top_business_more a:active{text-decoration: none;}

.top_business_pic{

}
.top_business_container{
	width: 90%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	margin: 5vh auto;
}
.top_business_container_item{
	width: 90%;
	position: relative;
	opacity: 1;
	transition: 1.0s ;
}
.top_business_container_item:hover{
	opacity: 0.6;
}
.top_business_container_item p {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
	top: 48%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
	font-size: 6vw;
	font-weight: bold;
	letter-spacing: 0.3em;
  }

/*--------------------------------------------------------
施工実績
--------------------------------------------------------*/
.sec_results{
  	margin-top: 50px;
  }
.top_results_block{
  	background-image: url("../images/result-bg20.png");
  	background-size:90%;
  	background-repeat:  no-repeat;
  }
.top_results_inner{
  	width: 100%;
  }
.top_results_ttl{
  	margin: 0 auto;
    width: 90%;
  	padding-top: 40px;
  }
.top_results_ttl_mark{
	width: 50%;
  }
.top_results_ttl_eg{
  font-size: 12vw;
	color: #0099d9;
  }
.top_results_ttl_jp{
    font-size: 5vw;
		font-weight: bold;
		letter-spacing: 0.1em;
		margin-top: -10px;
  }
.top_results_contents{
  }

.top_results_container_block{
  		width: 90%;
  		margin-left: auto;
  		background-image: url("../images/top-results-bg.png");
  		background-size:100%;
  		background-repeat:  no-repeat;
  		padding: 20px;
      margin-top: -20px;
}
.top_results_container{
  	width: 100%;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	justify-content: left;
  	margin: 40px auto 20px;
  	padding-left: 20px;
}
  .top_results_container_pic{
  	width: 80vw;

  }
  .top_results_container_pic img{

  }
  /*-- 暗転 --*/
  .top_results_img{
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .top_results_img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    z-index: 2;
    transition: background-color 1s;
  }
  top_results_img img{
  }
  .top_results_img:hover::before {
   background-color: rgba(0, 0, 0, 0.4);
  }
  .top_results_container_number{
	  font-size: 10vw;
  	margin-left: 0px;
  	width: 80vw;
  	margin-top: 1vh;
  }
  .top_results_container_ttl{
		font-size: 4vw;
  	background: #333;
  	padding: 2% 3% 2% 4%;
  	color: #fff;
  	text-align: left;
  	font-weight: bold;
  }
  .top_results_location{
  			font-size: 3.5vw;
  		margin-top: 1vh;
  		font-weight: bold;
  		font-family: 'Zen Kaku Gothic New', sans-serif;
  		letter-spacing: 0.1em;
  		border-bottom: solid 1px #555;
  		padding-bottom: 1vh;
  		line-height: 1.6em;
  		padding-top: 5px;
  		padding-left: 10px;
  }

  .top_results_more{
  	margin: 7vh auto 0;
	   width: 260px;
    text-align: center;
    background: #333;
    color: #fff;
  	padding: 10px ;
  	font-size: 16px;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: 1.0s ;
  }

  .top_results_more:hover{
  	opacity: 0.6;
  	transition: 1.0s ;
  }
  .top_results_more a{text-decoration: none; color:#fff ;	padding: 10px 80px;}
  .top_results_more a:link {text-decoration: none; color:#fff;}
  .top_results_more a:visited{text-decoration: none; color:#fff;}
  .top_results_more a:active{text-decoration: none;}


  /* ボタン */
  .btn_file {
    margin-top: 0px;
    text-align: left;
  }
  .btn_file a {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 8px;
    position: relative;
    text-decoration: none;
    width: 150px;
  }
  /* 通常の矢印(hoverで反転) */
  .btn_file a {
    transition: all 1s;
  }
  .btn_file a::before {
    border-right: 3px solid #333;
    border-top: 3px solid #333;
    bottom: 0;
    content: "";
    height: 10px;
    margin: auto;
    position: absolute;
    right: 40px;
    top: 0;
    transform: rotate(45deg);
    transition: all 1s;
    width: 10px;
  }
  .btn_file a:hover {
    background-color: #0099d9;
    color: #fff;
  	border: 1px solid #0099d9;
  	border-radius: 50px;

  }
  .btn_file a:hover::before {
    border-right: 3px solid  #fff;
    border-top: 3px solid  #fff;
  }
  .btn_txt{
  	padding-left: 40px;
  }

/*--------------------------------------------------------
コンセプト
--------------------------------------------------------*/
.sec_concept_area{
  	margin-top: 5vh;
  	position: relative;
  	height: 118vh;
    width: 100%;
  }
  .sec_concept_bg{
    display: none;
  	position: absolute;
  	top:0;
  	width: 100%;
  }
  .sec_concept_bg img{
  	height: 140vh;
  	object-fit: cover;
  }
  .sec_concept_bg-sp{
    display: block;
    position: absolute;
    top:0;
    width: 100%;
  }
  .sec_concept_content{
  	position: absolute;
  	z-index: 10;
  	top: 20vh;
  	left: 50%;
  	transform: translateX(-50%);
  	-webkit-transform: translateX(-50%);
  	-ms-transform: translateX(-50%);
    width: 85%;
  }
  .top_concept_ttl_mark{
	   width: 100%;
  	margin: 0 auto;
  }
  .top_concept_ttl_eg{
  	text-align: center;
    font-size: 12vw;
    color: #0099d9;
  }
  .top_concept_ttl_jp{
		font-size: 5vw;
  	font-weight: bold;
  	letter-spacing: 0.1em;
  	text-align: center;
    margin-top: -10px;
  }
  .top_concept_body{
  	width: 100%;
  	margin: 5vh auto;
  	text-align: center;
  }
  .top_concept_headline{
  	font-size: 4.5vw;
  	font-weight: bold;
  	line-height: 2em;
  }
  .top_concept_body_txt{
		font-size: 3.5vw;
  	line-height: 2.2em;
  	margin-top: 5vw;
  		font-weight: bold;
  }
  .top_concept_body_txt2{
    font-size: 3.5vw;
    line-height: 2.2em;
    margin-top: 5vw;
      font-weight: bold;
  }


/*--------------------------------------------------------
  		  イメージ：rebuilding
--------------------------------------------------------*/
.sec_rebuilding{
  	width: 100%;
  	margin-top: 7vh;
}
.top_rebuilding_ttl_eg{
  	font-size: 8vw;
  	color: #f6f6f6;
  	text-align: center;
}
.top_rebuilding_pic{
  	width: 50%;
  	margin: 0 auto;
  	margin-top: -12vh;
}

/*--------------------------------------------------------
アクセス
--------------------------------------------------------*/
#access-area{
}
.top_access_ttl{
	margin: 0 auto;
	width: 100%;
	padding-top: 5vh;
	text-align: center;
}
.top_access_ttl_mark{
	width: 50%;
		margin: 0 auto;
}
.top_access_ttl_eg{
  font-size: 12vw;
	color: #0099d9;
}
.top_access_ttl_jp{
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: -10px;
}

.access_contents{
	margin-top: 5vh;
	margin-bottom: 5vh;
}
.access_address{
	width: 100%;

	margin: 0 auto;
	margin-top: 40px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.access-pic{
	width: 100%;
	margin-left: 0px;
}
.access_company{
	width: 100%;
	margin-left: 20px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: bold;
  margin-right: 20px;
  margin-top: 20px;
}
.access_company p{
	line-height: 1.8;
	letter-spacing: 0.05em;
}
.company-name{
	font-size: 5vw;
	margin-bottom: 5px;
}
.access_company p{
	font-size: 3.5vw;
	margin-bottom: 5px;
}
.access_metro{
	font-size: 3vw;
	border: solid 1px #555;
	padding: 10px 20px ;
	text-align: left;
	line-height: 2em;
  margin-top: 10px;
}
.company-phone{
  font-size: 4.5vw;
	margin-bottom: 15px;
}
.access_bottom{
	margin-bottom: 100px;
}
.access_bottom_sp{
	display: none;
}

/*--------------------------------------------------------
	リクルート
--------------------------------------------------------*/
.sec_recruit_area{
	margin-top: 10vh;
	margin-bottom: 0vh;
	position: relative;
	height: 52vh;
}
.sec_recruit_bg{
		display: none;
}

.sec_recruit_bg-sp{
	display: block;
	position: absolute;
	top:0;
	width: 100%;
}
.sec_recruit_bg-sp img{
	height: auto;
	object-fit: cover;
}

.sec_recruit_content{
	position: absolute;
	z-index: 10;
	top: 5vh;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  width: 100%;
}
.top_recruit_ttl_mark{
	width: 50%;
	margin: 0 auto;
}
.top_recruit_ttl_eg{
  font-size: 12vw;
	color: #0099d9;
	text-align: center;
}
.top_recruit_ttl_jp{
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: -10px;
	text-align: center;
}
.top_recruit_body{
	width: 100%;
	margin: 40px auto;
	text-align: center;
}
.top_recruit_headline{
  font-size: 4vw;
	font-weight: bold;
}
.sec_recruit{
		width: 100%;
}
.top_recruit_ttl{
	margin: 0 auto;
	width: 1000px;
	padding-top: 50px;
	text-align: center;
}
.top_recruit_more{
	margin: 30px auto 0;
	width: 260px;
	text-align: center;
	background: #333;
	color: #fff;
  padding: 10px ;
	font-size: 16px;
	letter-spacing: 0.1em;
	opacity: 1;
	transition: 1.0s ;
}
.top_recruit_more:hover{
	opacity: 0.5;
}
/*-- タグリンク --*/
.top_recruit_more a{text-decoration: none; color:#fff ;	padding: 10px 80px;}
.top_recruit_more a:link {text-decoration: none; color:#fff;}
.top_recruit_more a:visited{text-decoration: none; color:#fff;}
.top_recruit_more a:active{text-decoration: none;}

/*--------------------------------------------------------
	  ボトム：会社案内・お問い合わせ
--------------------------------------------------------*/
.bottom_block{
	width: 100%;
	position: relative;
	margin: 0 auto;
	height: 200px;
}

.bottom-block-pic{
	display: none;
	width: 100%;
	height: 200px;
	background: #fff;
}
/*　sp　*/
.bottom-block-pic-sp{
	display: block;
	width: 100%;
	height: 200px;
	background: #fff;
}
.bottom-block-pic-sp img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*　透過　*/
.bottom-block-pic-sp img {
  opacity:1;
  transition: .3s ease-in-out;
}
.bottom-block-pic-sp:hover img {
	opacity:0.8;
	object-fit: cover;
}

.bottom-ttl{
	width: 100%;
	font-size: 12vw;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
		text-align: center;
}
.bottom-ttl_jp{
  color: #fff;
		font-size: 5vw;
	font-weight: bold;
	letter-spacing: 0.1em;
}

/*--------------------------------------------------------
各タイトル日本語アンダーバー
--------------------------------------------------------*/
.top_ttl_jp_bar{
	border-bottom: solid 1px #555;
	padding-bottom: 5px;
}
.top_ttl_jp_bar_black{
	border-bottom: solid 1px #fff;
	padding-bottom: 5px;
}
/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
.footer-pc{
	width: 100%;
}

.footer-container{
	width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
	padding-bottom: 0px;
}
.footer_inner{
}
.footer_nav{
	padding-top: 20px;
}
.footer_nav a{
   text-decoration: none;
   color: #333;
		transition: 0.5s;
}
.footer_nav nav{
   margin: 0 0 0 auto;
}
.footer_nav ul{
   list-style: none;
   margin: 0;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   justify-content: left;
}
.footer_nav li{
   margin: 0 0 0 30px;
   font-size: 4vw;
	line-height: 2.5em;
	font-weight: bold;
}
.footer_company{
	width: 100%;
	margin: 20px auto;
	text-align: center;
	border-top: solid 1px #555;
	padding-top: 20px;
	border-bottom: solid 1px #555;
	padding-bottom: 20px;
}
.footer_company_name{
	font-size: 5vw;
	 font-weight: bold;
	 margin-bottom: 10px;
}
.footer_company_address{
		font-size: 4vw;
	 font-family: 'Zen Kaku Gothic New', sans-seri;
	 letter-spacing: 0.1em;
	 font-weight: bold;
}
.footer_company_phone{
	font-size: 4.5vw;
	font-family: 'Zen Kaku Gothic New', sans-seri;
	letter-spacing: 0.1em;
	font-weight: bold;
	margin-top: 10px;
}

.footer_logo{
	width: 40%;
	padding-bottom: 20px;
	margin: 30px auto 0;
}
.footer_logo img{
	opacity: 1;
	transition: 0.5s ;
}
.footer_logo img:hover{
	opacity: 0.5;
}

/*-- クレジット --*/
.footer_cr{
	font-size: 3.5vw;
	font-family: 'Zen Kaku Gothic New', sans-seri;
	padding-bottom: 50px;
	text-align: center;
	width: 100%;
	color: #333;
}


} /**** END media screen *****/
