@charset "utf-8";
/*レイアウトのためのCSS*/

body {
  background:#231815;
  font-family: 'Noto Sans JP' , sans-serif;
  color: #eee;
  font-size:1rem;
  line-height:1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

* { box-sizing: border-box;}

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

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

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

/*読み込み画面の記述　ここから*/
.wave {
       background-image: url(wave.png);
       -moz-background-clip: text;
       -o-background-clip: text;
       -webkit-background-clip: text;
       background-clip: text;
       color: transparent;
       
       text-shadow: 0px 0px rgb(255 255 255 / 6%);
       animation: wave-animation 1s infinite linear, loading-animation 2.5s infinite linear alternate;
       background-size: 200px 100px;
       background-repeat: repeat-x;
       opacity: 1;
   }
   .loading {
       text-transform: uppercase;
       font-family: 'Cabin Condensed', sans-serif;
       font-weight: bold;
       font-size: 100pt;
       text-align: center;
       height: 120px;
       line-height: 110px;
       vertical-align: bottom;
       position: absolute;
       bottom: 0;
       display: block;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
   }
@media (max-width:768px){
	.loading{ font-size:60pt; line-height:80px;transform: translate(-30%, -50%);}
}
   @keyframes wave-animation{
     0%{background-position:0 bottom;}
     100%{background-position:200px bottom;}
   }
   @keyframes loading-animation{
     0%{background-size:200px 0px;}
     100%{background-size:200px 200px;}
   }


/*読み込み画面の記述　ここまで*/


/*area*/

#wrap {
  overflow-x: hidden;
  /*以下、IE11用*/
  z-index: 1;
  position: relative;
}

/* font-family */

h1,
h2,
#service.service-area section h3,
#nav,
#footer-link,
.scrolldown1 span,
#f-view dt,
.footer-logo {
  font-family:'Oswald', sans-serif;
  letter-spacing: 0.2em;
}

/* header */

h2 {
  font-size: 2rem;
  margin: 0 0 30px 0;
}

h2.uppercase {
  text-transform: uppercase;
}

/* header */
#header {
  background-color: rgba(0,0,0,0.2);
}

#header h1 a{
  color: #ddd;
}

#header h1{
  font-size: 1.5rem;
  padding: 0 0 0 2%;
  line-height: 1;
}

#header #nav ul li{
  white-space: nowrap; /*折り返ししないように*/
}

@media screen and (max-width: 960px){
  #header h1{
    position: absolute;
    top: 13px;
    left: 20px;
    padding: 0;
  }
}

.scrolldown1 span {
  transform: rotate(-90deg);
  text-transform:uppercase;
  left: -23px;
  top: -31px;
}

/* vidualarea */
#f-view {
  position: relative;
  height: 100vh;
}

body.appear #f-view::after {
  content:'';
  background: #00a73c;
  width: 0;
  height: 12%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  animation-name: vidualbgRLextendAnime;
  animation-duration: .2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
}

@keyframes vidualbgRLextendAnime {
  0% {
    width:0;
  }
  100% {
    width:40%;
  }
}

#f-view #slider-area {
  position: absolute;
  top: 0;
  right: 0;
  width:85%;
  z-index: -1; /*最背面へ*/
}

#f-view h2{
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 3vw;
  position: absolute;
  top:36%;
  left:5%;
}

#f-view dl {
  position: absolute;
  left: 2%;
  bottom:2%;
}

#f-view dl{
  color: #aaa;
}

#f-view dt,
#f-view dd,
#f-view ul,
#f-view ul li {
  display: inline-block;
}

#f-view ul li {
  margin:0 10px;
}

#f-view ul img {
  width:20px;
}

@media screen and (max-width:960px){
  #f-view {
    height: 90vh;
  }
  #f-view #slider-area {
    width: 100%;
    height: 90vh;
  }
  #f-view h2{
    font-size:2.1rem;
  }
  #f-view ul li{
    margin:0 2px;
  }
}

@media screen and (max-width:450px) {
  #f-view h2 {
    font-size: 7vw;
    top: inherit;
    bottom: 13%;
  }
}

/*service*/

#service {
  padding: 8% 0 10% 15%;
}

@media screen and (max-width:768px) {
#service {  
  padding:30% 0 10% 5%;
}
}

@media screen and (max-width:750px) {
  #service .service-lead {
    padding: 0 10% 0 0;
  }
  #service .service-lead br{
    display:none;
  }
}

#service .service-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:10% 0 0 10%;
  position: relative;
}

#service .service-area::after {
  opacity: 0;
}

#service .service-area.startwd::after{
  content:'';
  position: absolute;
  top: 10%;
  right:0;
  width:80%;
  height: 60vh;
  background:#232323;
  z-index: -1;
  animation-name:servicebgRLextendAnime;
  animation-duration:.9s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-in-out;
}

@keyframes servicebgRLextendAnime{
  0%{
    opacity: 0;
    width: 0;
  }
  100%{
    opacity: 1;
    width: 80%;
  }
}

#service .service-area section {
  width: 30%;
}


@media screen and (max-width:570px) {
  #service .service-area section {
    width: 100%;
    margin: 0 0 100px 0;
    padding: 0 10% 0 0;
  }
}

#service h2{
	margin-bottom:15px;
} 

#service .service-area section h3{
  font-size:1.5rem;
  margin: 0 0 15px 0;
}

#service .service-area section p{
  margin: 0 0 15px 0;
}

#service .service-area #staff_a {
  margin-top: 16px; /*Moreボタンの高さがそろうように調節*/
}

#service .service-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 30%;
  height: 60vh;
}

#service .service-img {
  height: 60vh;
  background-size: cover; /*領域のサイズに合うようimgのサイズを調節*/
}

@media screen and (max-width:570px) {
  #service .service-img-wrapper,
  #service .service-img{
    width:100%;
    height: 40vh;
    background-position: right;
  }
  #service .servide-img-wrapper{
    margin:0 0 50px 0;
  }
}

/*recruit*/
.recruit-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/*パソコンで見たときは"pc"classの画像が表示される*/
.pc { display: block !important;}
.sp { display:none !important;}

/*スマートフォンで見たときは"sp"classの画像が表示される*/
@media only screen and (max-width: 750px) {
  .pc { display: none !important;}
  .sp { display: block !important;}
}

/*news*/

#news {
  padding: 5% 0 5% 15%;
}

#news h2{
  margin-bottom:15px;
}

#news .area li{
  padding: 20px 10px;
}

#news .area time{
  display: block;
  color: #aaa;
}

#news .area {
  max-width:80%;
  border-top:3px solid #aaa;
  border-left:3px solid #aaa;
}

#news .oshirase-area #news_a {
  width:-moz-fit-content;
  width:fit-content;
  margin-top: 2em;
  margin-left:30vw;
}

#News_button{
  text-align:unset;
}   

#news_detail_content{
  white-space:pre-wrap;
}
 /*insta始め*/ 

@keyframes my-fade-in {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

@keyframes my-fade-out{
  from {
    opacity: 1;
  }
  to {
    opacity: 0.6;
  }
}

.instagram-gallery{
    width: 80%;
    margin:0 auto;
    margin-bottom: 20px;
    }

.instagram-gallery__list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
.instagram-gallery__item {
      list-style:none;
      margin: 5px;
      padding: 0;
      width:20%;
      padding-top:20%;
      position:relative;
      background-color: white; 
      transition: transform .4s ease;
    }
.instagram-gallery__item  img {
      object-fit: cover;
      width:100%;
      height:100%;
      top:0;
      right:0;
      bottom:0;
      left:0;
      position:absolute;
      opacity: 60%;   
      animation-name: my-fade-out;
      animation-duration: 0.4s ;
 }

.instagram-gallery__item:hover {
      transform: scale(1.05);
}
.instagram-gallery__item  img:hover { 
      animation-name: my-fade-in;
      animation-duration: 0.4s ;
      animation-fill-mode: forwards;
}

#insta_font{
      padding-left:15%;
}

  /*insta終わり*/ 


 /*contact*/

 #contact {
  border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
 }

 #contact .contact-detail {
  width:65%;
  border-right: 1px solid #aaa;
  text-align:center;
  padding: 20px;
 }

 #contact .contact-detail h2{
  margin: 0 0 5px 0;
  font-size:1.5rem;
 }

 #contact .contact-tel {
  width: 35%;
 }

 #contact .contact-tel p{
  text-align:center;
 }

 #contact .contact-tel p a{
  display:block;
  padding: 20px;
  transition: all .3s;
 }

 #contact .contact-tel p a:hover{
  background:rgba(255,255,255,0.2);
 }

 #contact .contact-tel p:last-child {
  border-top:1px solid #aaa;
 }

 #contact .contact-tel br{
  display:none;
 }

 @media screen and (max-width:690px) {
  #contact .contact-detail,
  #contact .contact-tel{
    width:50%;
  }
  #contact .contact-tel br{
    display: block;
  }
  #contact .contact-detail p{
    text-align:left;
  }
 }

 @media screen and(max-width:400px) {
  #contact {
    font-size:0.8rem;
  }
 }

 /*footer*/

 #footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.8;
  padding: 2%;

  /*グラデーション設定ここから*/
	background: rgb(35,24,21);
	background: linear-gradient(180deg, rgba(35,24,21,1) 0%, rgba(42,209,255,0.4640231092436975) 45%, rgba(0,167,60,1) 100%);
 /*グラデーション設定ここまで*/
 }

 #footer .footer-info{
  width: 30%;
 }

 #footer .footer-info .footer-logo{
  font-size: 1.5rem;
  margin: 0 0 10px;
 }

 #footer .footer-info address {
  font-style: normal;
  margin: 0 0 10px 0;
 }

 #footer .footer-info ul li{
  margin: 0 0 10px 0;
 }

 #footer .footer-info dl dt,
 #footer .footer-info dl dd{
  display: inline-block;
 }

 #footer .footer-info dl dt::after{
  content:':';
  padding:0 10px;
 }

 #footer .footer-link{
  width:65%;
 }

 #footer .footer-link ul{
  display:flex;
  flex-wrap:wrap;
  line-height: 2.5;
 }

 #footer .footer-link ul li{
  margin: 0 20px;
 }

 #footer .footer-link ul li a:hover{
  color:#aaa;
 }

 #footer .footer-link ul ul li{
  margin:0 10px 0 0;
 }


 #footer #f_small{
  margin-top:70px ;
  width:100%;
  display: block;
  text-align:center;
  color: #231815;
 }

 #footer .footer-link ul ul{
  display: block
 }

/*タブレット表示*/
@media screen and (max-width:960px){
	#footer{
		justify-content: center;
		padding: 5% 0;
	}
	#footer .footer-info{
		width:100%;
		padding: 0 0 5% 0;
		margin: 0 0 5% 0;
		text-align: center;
		border-bottom: 1px solid #aaa;
	}
	#footer .footer-info li:nth-of-type(2) dt::after{
		content:'';
		padding: 0;
	}
	#footer .footer-info li:nth-of-type(2) dd{
		display: block;
	}
	#footer .footer-link{
		width:auto;
	}

	#footer .footer-link ul li{
		display:inline;
	}

	#footer .footer-link ul{
		justify-content: center;
	}

}

/*スマホ表示*/
@media screen and (max-width:400px){
	#footer footer-link ul li{
		margin: 0 10px;
	}
}