@charset "utf-8";
/*  style　[  top ]
=================================================================== */


.header-box h1 {
  display: none;
}


.header-right {
	width: 100%;
	text-align: center;
	padding-top:25px;
}


@media (min-width: 768px) { 
  /* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
 header.scroll-nav .header-box h1 {
  display: block;
}
header.scroll-nav h1 img {
  height: 30px;
  margin: 5px 0 0 0;
  transition: .3s;
}

header.scroll-nav .header-right {
  width: 70%;
	text-align: right;
	padding-top: 10px;
  transition: .3s;
}
 }




.main-img {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    /*max-width: 1200px;*/
	width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0;
	z-index: 1;
  }

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.main-img {
		height: 100vh;
	  }
}


.overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 175, .4);
    z-index: 2;
  }


  video.vid_main {
	width: 100%;
	height: 100vh;
	}
	.vid_contents_center video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
		   overflow: hidden;
	  }




  .catch-copy {
	position: absolute;
	text-align: center;
	color: #fff;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin: auto;
	z-index: 3;
	text-shadow: 1px 1px 2px rgb(87, 120, 148);
  }

.catch-copy h1.top-logo img {
	width: 280px;
	margin-bottom: 15px;
  }
  .catch-copy p {
	font-family: "Zen Old Mincho", serif!important;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
  }
  /* ～767px(xs) ____________________________________________________ */
  @media screen and (max-width: 767px) {
  .catch-copy p {
		font-size: 2.5rem;
	  }
}


.catch-copy h1.top-logo {
	animation: fade01 2s 1s forwards;
	opacity: 0;
}
@keyframes fade01{
0%{
	opacity: 0;
}
100%{
opacity: 1;
}
}
.catch-copy p {
	animation: fade02 2s 2.5s forwards;
	opacity: 0;
}
@keyframes fade02 {
0%{
	opacity: 0;
}
100%{
opacity: 1;
}
}

/*----------------------------------------------
   見出し
---------------------------------------------*/
 .h2-en {
	font-size: 2em;
	margin-bottom: 2em;
	font-family: "Lato", sans-serif;
	text-align: center;
	font-weight: 300;
	letter-spacing: 10px;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	 .h2-en {
	font-size: 1.8em;
}
}

.h3-jp {
	font-size: 1.8em;
	margin-bottom: 15px;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	 .h3-jp {
	font-size: 1.5em;
	margin-top: 15px;
	margin-bottom: 15px;
}
}

/*------------------------------------------+-
  btn
  -------------------------------------------*/
.line-gre {
	display: table;
	vertical-align: middle;
	padding: 0.5rem ;
	color: #4b4b4b!important;
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1;
	margin: 5rem auto 0 auto;
	border-bottom: #4b4b4b 1px solid;
}

.line-gre:hover {
	
	text-decoration: none;
}


/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.line-gre {
		font-size: 1.2em;
	}
}

/*----------------------------------------------
  lead
---------------------------------------------*/

#lead {
    text-align: center;
	background-color: #f2f2f1;
	
}
.bg-img01 {
	background: url(../images/back.svg) no-repeat right top;
	background-size: contain;
	padding: 10em 0;
}
#lead .h2-jp {
	font-size: 2.3em;
	margin-bottom: 2em;
}
#lead p {
	font-size: 1.3em;
	line-height: 1.7;
	margin-top: 2em;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	#lead {
	padding: 0;
}
.bg-img01 {
	background-size: 70%;
	padding: 6em 0;
}
#lead .h2-jp {
	font-size: 1.3em;
	margin-bottom: 1.5em;
}
#lead p {
	font-size: 1.2em;
	margin-top: 2em;
}
}


/*----------------------------------------------
   service
---------------------------------------------*/
#service {
	background-color: #fff;
	padding: 10em 0 2em 0;
}

.service-box,.service-box-R {
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 150px;
}
.service-box-R {
	flex-direction: row-reverse;
}
.service-img {
	width: 60%;
}
.service-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.service-box .service-text {
	width: 30%;
	padding: 0 5% 0 0;
}

.service-box-R .service-text {
	width: 30%;
	padding: 0 0 0 5%;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {

	#service {
	background-color: #fff;
	padding: 3em 0 1em 0;
}
.service-img {
	width: 95%;
}
.service-img img {
	height: 300px;
}
.service-box,.service-box-R {
	margin-bottom: 80px;
}
.service-box .service-text {
	width: 90%;
	padding: 0 5% ;
}

.service-box-R .service-text {
	width: 90%;
	padding:  0 5%;
}

}

/*----------------------------------------------
   works
---------------------------------------------*/
#works {
	background-color: #f2f2f1;
	/*padding: 10em 0;*/
}
/* 詳細はswiper.cssにて定義 */




.bg-img02 {
	background: url(../images/back02.svg) no-repeat left top;
	background-size: 40%;
	padding: 10em 0;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.bg-img02 {
	background-size: 70%;
	padding: 5em 0;
	margin: 0;
}
}


/*----------------------------------------------
   recruit
---------------------------------------------*/
#recruit {
	background: url(../images/04.webp) no-repeat center center;
	background-size: cover;
	padding: 50px 0;
}

.bg-fff {
	background-color: rgba(255, 255, 255, .8);
	margin: 0 auto;
	padding: 30px 50px;
	width: 98%;
	font-size: 1.2em;
	color: #444;
}
.recruit-list {
	list-style: none;
	margin: 20px 0;
}
.recruit-list li {
	border-bottom: #444 1px solid;
	padding: 10px;
}

.recruit-list li a {
	color: #444;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.bg-fff {
	padding: 20px 20px;
	width: 98%;
	font-size: 1em;
}
}

  



/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
}

@media screen and (max-width: 480px) {
}