@charset "UTF-8"

/* Base
========================================================================== */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
	line-height: 1.2;
	color: #535353;
	position: relative;
}

a {
	color: #535353;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #44A46C;
}
h1 {
  margin: 0.5em 0;
}

h2{
  color: #535353;
	font-size: 2.5rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
  padding: 15% 0 5% 0;
}

.h2-sub{
  font-size: 1.9rem;
  color: #44a46c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
h3{
	font-size: 2.3rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
h4{
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 13px;
  padding-bottom: 1%;
  text-transform: uppercase;
}

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

p{
    margin: 0;
}
ul{
  list-style: none;
  padding: 0;
}
.center{
  text-align: center;
}

/* ヘッダーメディアクエリ */
.site_header_pc{
  display: none;
}
.site_header_sp{
    width: 100%;
    height: 80px;
    z-index: 10;
    background-image: linear-gradient(-50deg, #088b60 0%, #5aad70 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
}
.header_logo{
  width: 300px;
  padding: 0 0 5% 2%;
}

/* グローバルナビ　ハンバーガー */
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fbfbfb;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*============
main
=============*/
.top1, .top2{
  background-color: #ffffffbf;
  padding: 2%;
  margin-bottom: 3%;
}
/*============
about
=============*/
.about{
  margin-top: 60px;
  background: url(../images/about1.jpg) no-repeat center/cover;
  text-align: center;
  font-size: 2.2rem;
}
.about_inner{
  padding: 8% 6% 15% 6%;
}
.midori{
  color: #088b60;
}
.about_p{
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: left;
  padding: 0 3%;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

/*============
article news
=============*/
#news{
  margin: 10% auto;
  width: 80%;
}
article {
	display: flex;
  flex-wrap: wrap;
	margin-bottom: 8%;
	padding: 20px;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 0 5px #999;
}
.article_figure{
  margin: 0;
}
.service_img{
  min-width: 100px;
	max-width: 100%;
	vertical-align: top;
  margin: 0;
}

/*============
service
=============*/
#service .service-area {
  margin: 0 auto 10%;
  width: 80%;
  text-align: center;
}
#service .service-area .content {
  box-shadow: 0 0 20px rgb(58, 58, 58);
}
.content-area {
  padding: 30px 20px 20px 20px;
}
.content-area h5 {
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  font-family: 'Noto Serif JP', serif;
}
#service .service-area .content-area h5 span {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 2.2rem;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 5px;
}

#service .service-area .content-area p {
  margin: 0 0 30px 0;
  font-size: 1.5rem;
  line-height: 1.9rem;
  text-align: left;
}
.koujirei_wrap{
  text-align: left;
  border: 1px solid #747474;
  border-radius: 5px;
}
.kouji_title{
  background:#747474;
  color: #fff; 
  font-size: 1.4rem;
  padding: 1.2% 2%;
}
.koujirei{
  margin: 0;
  font-size: 1.2rem;
  padding: 1.8% 3% 3% 2.5%;
}
/*============
会社概要
=============*/
.about-list{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
}
.about-list li {
  border-bottom: 1px solid #ccc;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
}

.about-list dl{
  display: flex;
  justify-content: space-between;
}
.about-list dt {
  padding: 0 0 0 10px;
}
.about-list dd {
  width: 65%;
}

.tizu{
	width: 100%;
	text-align: center;
}
/* 会社概要下写真 */
.inner{
  width:100%;
  margin:0 auto;
  padding:20px;
}
.works_sita{
  text-align: center;
  position: absolute;
  bottom:0;
  left:0;
  background:rgba(35, 133, 51, 0.8);
  display: block;
  width:100%;
  padding: 10px;
  color: #fff;
}
.works-area,.works-block{
  display: flex;
  flex-wrap: wrap;
}
.works-block{
  width: 80%;
  margin: 0 auto;
}
.works1, .works2, .works3, .works4{
  padding: 8%;
  margin-bottom: 3%;
  position: relative;
}
.works2{
  animation-delay: 0.5s;
}
.works3{
  animation-delay: 1s;
}
.works4{
  animation-delay: 1.5s;
}
/* 4-1 ふわっ（その場で） */
.fadeIn{
  animation-name: fadeInAnime;
  animation-duration:2s;/*ゆっくり出現するため数値変更*/
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }


/* コンタクト */
#contact{
  background-image: linear-gradient(-50deg, #088b60 0%, #5aad70 100%);
  color: #fff;
  text-align: center;
}
.contact_inner{
  padding: 15% 3%;
}
.contact_tel{
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: #fff;
  font-size: 3.5rem;
  font-family: 'Noto Serif JP', serif;
}
.contact_box{
  padding: 6% 0 1% 0; 
}
.contact_sub{
  font-size: 1.4rem;
}
.tizu{
  margin: 15% 0;
	width: 100%;
	text-align: center;
}

/* フッターメディアクエリ */
.footer_inner{
  margin: 0 auto;
  padding: 60px 30px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.7  ;
}
.footer-area {
  padding: 5% 4% 2% 4%;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.6;
}
.footer_hirohashi{
  font-size: 3rem;
  padding-bottom: 5%;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: 'Noto Serif JP', serif;
}
.footer_company{
  margin: 0 0 40px 0;
  padding: 50px 0 50px 0;
  border-bottom: 1px solid rgba(8, 155, 86, 0.8);
}
.footer-sitemap li a {
  position: relative;
  padding: 0 10px;
}
.fa-angle-right{
  color: #088b60;
}

.footer-sitemap{
  width: 100%;
}
.footer_copy{
  height: 60px;
  background-color: #f8f8f8;
  padding: 6% 0 0 0;
}
small {
  display: block;
  text-align: center;
}



/* TOP */
/*     メインビジュアル動画 */

.hero {
  position: relative;
}

/* video */

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/* text */

.text-box {
  position: absolute;
  top: 58vh;
  left: 35vw;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-34%, -50%);
}
.main{
  padding: 10px;
}

/*TOPテキスト*/

.blur{
	animation-name:blurAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}
/*TOPテキストここまで*/



/* 下からふわっと */
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeUpTrigger{
      opacity: 0;
  }
  
  
  /* 下からふわっとここまで */


/* パタッと左へ */
.flipLeft{
  animation-name:flipLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  perspective-origin:left center;
  opacity:0;
  }
  
  @keyframes flipLeftAnime{
    from {
     transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
     opacity: 0;
    }
  
    to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    }
  }

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin:0 10px;/*スライド左右の余白調整*/
}




/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#088b60;
	width: 60px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #999;
	height: 55px;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 0;
	bottom:0;
	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);
  }
}
  /* -------------------------------------------- */
/* ▼タブレット用デザインとして付け足すデザイン */
/* -------------------------------------------- */
@media (min-width: 768px) {
  }
  /* ------------------------------------ */
  /* ▼PC用デザインとして付け足すデザイン */
  /* ------------------------------------ */
  @media (min-width: 1024px) {
    h1{
      width: 500px;
      margin: 0 0 0 10px;
    }
    h2{
      font-size: 3.6rem;
      padding-top: 5%;
      margin: 0;
    }
    .site_header_sp{
      display: none;
    }
    nav{
      position: unset;
      opacity: 1;
    }
    .site_header_pc{
      width: 100%;
      height: 100px;
      z-index: 10;
      background-color: #fff;
      color: rgb(24, 24, 24);
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
  }
  .logo_pc{
    width: 100%;
    margin-top: 4%;
  }
  nav{
    width:80%;
  }
  .nav__item{
    display: inline-block;
    font-size: 1.7rem;
    padding-right: 3%;
  }
  .nav__wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    font-size:0;
  }
  .nav_tel_bango{
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;  
  }
  .nav_tel_sub{
    text-align: center;
    font-size: 1.5rem;
    padding-left: 10%;
  }
  .nav_btn_box{
    display: block;
    text-align: center;
    width: 30rem;
    height: 100px;
    padding: 1.3% 0 1% 0;
    margin: 0;
    line-height: 1.5;
    background-image: linear-gradient(-50deg, #088b60 0%, #5aad70 100%);
    text-align: center;
    box-sizing: border-box;
  }
  .nav_tel{
    color: #fff;
  }
  .sikaku{
    position: absolute;
    top: 6vh;
    left: 0vw;
    width: 250px;
    height: 100vh;
    background-color: #fff;
  }
  .sankaku{
    position: absolute;
    top: 7vh;
    left: 10vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 350px 350px 0 0;
    border-color: #ffffff transparent transparent transparent;
  }
  .text-box {
    top: 65vh;
    left: 35vw;
    width: 90%;
  }
  .top1, .top2{
    margin-left: 6%;
    width: 35%;
    background-color: #ececec;
  }
  #news{
    width: 60%;
  }
  .about{
    background: url(../images/about2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .about_inner{
    padding: 0;
  }
  .about_h2{
    padding-bottom: 2%;
  }
  .about_p {
    font-size: 2rem;
    line-height: 1.9;
    text-align: center;
    padding-bottom: 2%;
  }
  article{
    flex-wrap: nowrap;
    margin-bottom: 3%;
    padding: 2%;
  }
  .article_figure {
    margin-right: 20px;
    width: 250px;
  }
  .service_img {
    min-width: 250px;
    max-width: 100%;
    vertical-align: top;
    z-index: 2;
  }
  #service .service-area {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 250px;
  }
  .service_img {
  width: 50%;
  z-index: 2;
}
  #service .service-area .content {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 150px;
    z-index: 1;
    background: #fff;
  }
  .content-area {
    padding: 3% 5%;
}
.content-area h5 span {
  font-size: 3.2rem!important;
}
.content-area h5 {
  font-size: 2rem!important;
}
#service .service-area .content-area p {
  margin: 0 0 60px 0;
  font-size: 1.7rem;
  line-height: 2.4rem;
}
#service .service-area::after{
  content:'';
 position: absolute;
 width: 70%;
 height: 27em;
 background:#73d4834d;
 right:10%;
 top:20%;
 z-index: -1;
}
.reverse{
  flex-direction: row-reverse;
}
.kouji_title {
  font-size: 1.7rem;
}
.koujirei {
  margin: 0;
  font-size: 1.6rem;
  padding: 2% 3%;
  letter-spacing: 0.1rem;
}
.about-list {
  font-size: 1.7rem;
  line-height: 1.5;
}
.about-list li {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}
.works-area{
  width: 60%;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.works-block{
  width: 40%;
  flex-wrap: nowrap;
}
.works1, .works2, .works3, .works4{
  padding: 0;
  margin: 2%;
}
/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

.tizu{
  margin: 5% 0;
}
iframe{
  width: 800px;
  height: 400px;
}
  .contact_inner {
    padding: 4% 15%;
  }
  .contact_tel {
    font-size: 4.5rem;
  }
  .contact_box {
    padding: 3% 0 1% 0;
  }
  .footer-area{
    margin: 0 auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
    line-height: 1.4;
  }
  .footer_company {
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0 0 50px 0;
    border-bottom: 1px solid rgba(8, 155, 86, 0.8);
  }
  .footer_info{
    display: inline-flex;
    flex-wrap: wrap;
  }
  .footer_c_li{
    font-size: 1.9rem;
    padding-bottom: 0.6rem;
  }
  .footer_li{
    padding-bottom: 20px;
    width: 33%;
  }
  .footer_copy {
    padding: 1.2% 0 1% 0;
  }
  small{
    font-size: 1.7rem;
  }
}