@charset "UTF-8";
/* CSS Document */

body,main{
	color: #fff;
	background-color:#000;
	background: linear-gradient(black,rgba(12, 19, 36, 1));
	font-family: "Bodoni 72",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	line-height: 2.3;
	font-size: 15px;
	letter-spacing: 0.12em;
}

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

header,header ul{
	display: flex;
	justify-content: space-between;
}

header li{
	margin-left: 20px;
}

header{
	width:100%;
	position: fixed;
	margin:0 auto;
	padding: 20px;
	color: #fff;
	z-index: 99;
	background-color: rgba(0,0,0,0.5);
}

.instagram,.line_i{
	padding-left: 10px;
}

.inner{
	max-width: 1080px;
	margin: 0 auto;
}

.fv{
	position:relative;
}

h1{
	font-size: 120px;
	line-height: 90px;
	margin-bottom: 30px;
	font-family: "Great Vibes",cursive;
}

.main_p{
	font-size: 20px;
}

.main_text{
	position: absolute;
    top: 33%;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.main_v img{
	width: 100%;
}


.scroll {
  display: inline-block;
  position: absolute;
  right: 48%;
  bottom: -2%;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
/*  font-family: 'Josefin Sans', sans-serif;*/
  line-height: 1;
  letter-spacing: .2em;
	text-align: center;
/*  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
*/}

.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}
.scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*intro*/
.intro,.info{
	margin-top: 100px;
}
section{
	margin-top: 110px;
}
.intro p,.info,h2{
	text-align: center;
}


/*service*/
h2{
	padding-top:70px;
	padding-bottom: 10px;
	margin-bottom: 50px;
	font-size: 26px;
}
.service h2{
	background-image:url("../img/Service.png");
	background-repeat: no-repeat;
	background-position: center;
}
.service_box{
	display: flex;
	width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
	align-items: center;
	justify-content: space-between;
}

.service_box img{
	width:50%;
}

.service_text{
	width: 60%;
}

.service h3{
	font-size: 24px;
	margin-bottom: 46px
} 

.service_box .service_text01{
	margin-right: -50px;
	z-index: 1;
}

.service_box .service_text02{
	margin-left: -50px;
	z-index: 1;
}

/*works*/
.works{
	margin-top: 200px;
}

.works h2{
	background-image:url("../img/Works.png");
	background-repeat: no-repeat;
	background-position: center;
}

.works_content{
	display: flex;
    justify-content: space-between;
}

.works_box{
	position: relative;
	margin: 0 10px;
}

.works_box .works_box_text{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
}

.works_box img{
	width: 100%;
}

.more_btn a{
	width: 300px;
	margin: 0 auto;
	margin-top: 80px;
	display: block;
	border: 1px solid #fff;
	padding: 5px;
	line-height: 30px;
	transition: 0.3s ease-in-out;
	text-align: center;
	letter-spacing: 0.4em;
}

.more_btn a:hover{
	background: #293343;
    color: #fff;
}

/*company*/
.company{
	display: flex;
    justify-content: space-around;
	margin-top: 200px;
}

.company h2{
	background-image:url("../img/Company.png");
	background-repeat: no-repeat;
	background-position: center;
	width: 600px;
}
.company dt{
	float: left;
	clear: left;
	margin-right: 0.5em;
	width: 60px
}

/*cta*/
.cta{
	padding-bottom: 60px;
	margin-top: 100px;
}
.cta .btn a{
	width: 90%;
	margin: 0 auto;
	display: block;
	border: 1px solid #fff;
	padding: 15px;
	font-size: 30px;
	padding-left: 50px;
	position: relative;
	line-height: 50px;
	transition: 0.3s ease-in-out;
}

.cta .btn a span{
	font-size: 16px;
	margin-left: 30px;
}

.cta .btn{
	margin-bottom: 30px;
}

.cta .btn a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}
.cta .btn a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2em;
    transform: translateY(-50%);
    width: 150px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.cta .btn a:hover:before, .cta .btn a:hover:after {
    right: -1.5em;
}
.cta .btn a:hover {
    background: #293343;
    color: #fff;
}

.cta .pdf a{
	font-size: 18px;
}

/*footer*/
footer,footer ul{
	display: flex;
	justify-content: space-between;
}

footer li{
	margin-left: 20px;
}

footer{
	width:100%;
	margin:0 auto;
	padding: 30px;
	color: #fff;
}


/*single_page*/
.single_header{
	background: #000;
    color: #fff;
    padding-bottom: 1px;
}

.lower_page{
	color: #000;
	background: #ddd;
}

.single_header h1{
	text-align: center;
    padding-top: 150px;
	font-family: "Bodoni 72", Times, "serif";
	font-size: 90px;
}

.single_header h2{
	padding-top: 0;
}

/*single_company*/
.message h3{
	text-align: center;
	margin-bottom: 40px;
	font-size: 20px;
}
.message_01{
	margin-bottom: 40px;
}

.message_02{
	margin-bottom: 100px;
}

.sign{
	width: 350px;
	margin: 0 0 0 auto;
}
.sign img{
	width: 100%;
	text-align: right;
}

/*.single_company dl{
	display: flex;
	border-bottom: 1px solid #fff;
	padding: 30px 0;
}

.single_company dt{
	width: 150px;
}
*/



/*recruit*/
.re_message{
	margin-top: 100px;
}

.re_message h3{
	text-align: center;
	margin-bottom: 40px;
	font-size: 20px;
}

.support h3,.single_recruit h3{
	text-align: center;
    font-size: 26px;
}

.support_box{
	background-color: #eee;
    color: #000;
    padding: 50px;
	margin-bottom: 30px;
}

.support_box h4{
	font-size: 24px;
	color: #002355;
	text-align: center;
	margin-bottom: 30px
}

.single_recruit dl,.single_company dl{
	display: flex;
	border-bottom: 1px solid #000;
	padding: 30px 0;
}

.single_recruit dt,.single_company dt{
	width: 150px;
}

/*single_service*/
.lower_page .service_box .service_text01 {
    margin-right: 20px;
    z-index: 1;
}

.lower_page .service h3{
	display: inline-block;
	border-bottom: 1px solid #000;
}

/*lower_works*/
 .lower_page .works_box .works_box_text {
    position: static;
    text-align: center;
    background: #fff;
	color: #000;
    padding: 20px 0;
}

.lower_page .works_box .works_box_text p{
	font-size: 18px;
}

.img_box{
	overflow: hidden;
}

.lower_page .works_box img {
	transition: 0.3s;
	overflow: hidden;
    }

.lower_page .works_box img:hover{
	transform:scale(1.1,1.1);
  transition:0.3s all;
}

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.5s;
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.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/*works詳細ページ*/
.single_works h3{
	font-size: 36px;
}

.works_text{
	margin-top: 50px;
}
.single_works_content{
	margin-top: 100px;
}

.photo{
	display: flex;
	margin-bottom: 80px;
}

.photo img{
	width: auto;
	padding-right: 10px;
}

.return a{
	transition: 0.3s;
}
.return a:hover{
	color: #999;
	
}

.lower_top{
	margin-top: 100px;
}

.contact_text{
	text-align: center;
	margin-top:100px;
	margin-bottom: 100px;
}

/*お問い合わせ*/

.privacy{
	width: 90%;
	padding-bottom: 0;
	margin: 0 auto;
	margin-top: 100px;
}

.privacy p{
	padding-bottom: 30px;
}

.line{
	width: 320px;
	margin: 0 auto;
	padding-bottom: 100px;
}

.line a{
	display: block;
	background-color: #06c755;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 18px;
	padding: 10px;
	border: 2px solid #fff;
	border-radius: 7px;
	text-align: center;
	transition: 0.3s;
}

.line a:hover{
	background-color: #fff;
	color: #06c755;
}

.fa-brands, .fab {
    font-size: 20px;
}

/* -------------------- */
/* sp_header
/* -------------------- */
.sp_header {
  justify-content: space-between;
}

.burger-btn {
  display: none;
}

.sp_main ,.sp_header{
	display: none;
}

.copy_right{
	text-align: center;
    font-size: 10px;
    background: #000;
}

.sp{ display: block; }

@media screen and (max-width: 959px)  {
/* 959px以下に適用されるCSS（タブレット用） */
	h1 {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 10px;
    font-family: "Great Vibes",cursive;
}
	.sp_header{
		display: block;
	}
	header {
    width: 100%;
	background-color: rgba(0,0,0,0.5);
	}
	.nav,.footer_nav{
		display: none;
	}
	.sp_header{
		display: block;
	}

  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    vertical-align: middle;
  }
  
  /* ------------------ */
  /* humberger-menu */
  /* ------------------ */
  .sp_header {
    padding: 0 5%;
  }
    
/* 以下、ハンバーガーボタン */
  .burger-btn {
    display: block;
    height: 39px;
    position: absolute;
    width: 39px;
    z-index: 3;
    /* codepenの挙動のため */
    background-color: transparent;
    border: none;
	top:15px;
	  right: 10px;
  }
  
  .bar {
    background-color: #fff;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
  }
  .bar_top {
    top: 10px;
  }
  .bar_mid {
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .bar_bottom {
    bottom: 10px;
  }
  .burger-btn.close .bar_top {
    transform: translate(-50%,10px) rotate(45deg);
    transition: transform .3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%,-8px) rotate(-45deg);
    transition: transform .3s;
  }
  /* スクロール制御 */
  .noscroll{
    overflow: hidden;
  }
  
  /* 以下、ハンバーガーメニュー */
  .nav-wrapper {
    visibility: hidden;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    opacity: 0;
    transition: opacity .5s;
    z-index: 2;/*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  
  .header-nav {
    background-color: #000;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .nav-list {
    display: block;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .nav-item {
    margin-bottom: 40px;
    margin-right: 0;
  }
  
  /* メニューオープン時 */
  .nav-wrapper.fade {
    opacity: 1;
    visibility: visible;
  }
  
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
	
	
	h1 {
    font-size: 70px;
}
	.slider{
		display: none;
	}
	
	.sp_main{
		display: block;
	}
	
	.main_p {
    font-size: 16px;
}
	.scroll{
		right: 44%;
    bottom: -11%;
		font-size: 12px;
	}
	.inner {
    max-width: 100%;
    margin: 0 15px;
	font-size: 14px;
}
	.cta .btn a:before,.cta .btn a:after{
		display: none;
	}
	
	.service_box .service_text01 {
    margin-right: 0;
}
	.service_text {
    width: 100%;
}
	.service_box .service_text02 {
    margin-left: 0;
    z-index: 1;
}
	.works {
    margin-top: 150px;
}
	.works_content {
    display: block;
}
	.works_box {
    margin-bottom: 20px;
}
	.company {
    display: block;
    margin-top: 50px;
}
	.company h2 {
    width: auto;
}
	
	.service_box {
		display: block;
}
	.lower_page .service_box .service_text01 {
    margin-right: 0;
    z-index: 1;
	width: 100%;
	margin-bottom: 10px;
}
	.service_box img {
    width: 100%;
	margin-top: 10px;
}
	.photo {
		display: block;
	}
	.photo img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
}
	.service_box_sp{
		display: flex;
		flex-direction: column-reverse;
	}
	 .sp{ display: none; }
	
	.single_recruit dl, .single_company dl {
		display: block;}
	
	.cta .btn a {
	padding-left: 40px
}
	.cta .btn a span {
    font-size: 14px;
    margin-left: 24px;
}
	
}