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

html {
    scroll-behavior: smooth;
}

body{
	margin: 0;
	padding: 0;
	position: relative;
	font-family: 'Maven Pro', 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	color: #505055;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a{
	color: #505055;
	text-decoration: none;
	transition : all 0.5s ease 0s;
}

ul,li{
	list-style: none;
	padding: 0;
}

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

address{
	font-style: normal;
}

input, button, textarea, select {
	-webkit-appearance: auto;
	appearance: auto;
}

table{
	border-collapse: collapse;
    margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
}

td, th {
    border-bottom: 1px solid #D6D9E3;
    padding: 20px 20px 20px 0px;
    vertical-align: middle;
}

th {
	width: 20%;
    text-align: left;
}

h1{
	margin: 60px;
}

h2{
	font-size: clamp(30px, 8vw, 60px);
    margin: 0;
    font-weight: 500;
}

h2 span{
	font-size: 16px;
    display: block;
    padding-top: 20px;
}

h3{
	font-size: clamp(27px, 4vw, 45px);
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
}

section{
	padding-right: 5% !important;
	padding-left: 5% !important;
}

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

/* アニメーション */

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.scroll_wrap{
	position: relative;
	margin-top: -63px;
}

.scroll {
    font-size     : 14px;
    position      : absolute;
    top           : 0;
    left          : 50%;
    transform     : translateX(-50%) translateY(-50%);
}
.scroll::after {
	content: '';
    display: block;
    position: absolute;
    right: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background-color: #333;
}


.scroll::after {
  animation: scroll 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scroll {
  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%;
  }
}

@media screen and (max-width: 428px) {
	
	.scroll_wrap{
		margin-top: -133px;
	}
	
	.scroll::after {
    	bottom: -210px;
    	height: 210px;
	}
}

/* HEADER */
header{
	
}

header .header_wrap{
    position: absolute;
    top: 0;
    width: 100%;
	z-index:5;
}

video {
    object-fit: cover;
    height: 100vh;
}

/* グローバルメニュー */



nav.gnav{
	position: absolute;
    top: 0;
    right: 0;
	z-index: 5;
}

nav.gnav ul{
	display: flex;
    margin: 0;
	align-items: center;
}

nav.gnav ul li{
	font-size: 20px;
	margin-right: 60px;
}

nav.gnav ul li a::after {
    position: absolute;
	top: 101px;
    content: '';
	height: 2px;
    background: #505055;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}


nav.gnav ul li.menu_mission a::after {
    left: 0;
    width: 68px;
}

nav.gnav ul li.menu_service a::after {
    left: 126px;
    width: 68px;
}

nav.gnav ul li.menu_about a::after {
    left: 252px;
    width: 58px;
}

nav.gnav ul li a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

nav.gnav ul li.mail {
	margin-right: 0;
}

nav.gnav ul li.mail a{
	display: block;
	width: 160px;
	height: 160px;
	background-color: #505055;
	position: relative;
}

nav.gnav ul li.mail a:hover{
	background-color: #BDC2CC;
}

nav.gnav ul li.mail a img{
	width: 36px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 990px) {
	h1{
		margin: 13px;
	}
	
	h1 img{
		width: 300px;
	}
	
	nav.gnav{
		position: fixed;
	}
	
	nav.gnav ul li.menu_mission,
	nav.gnav ul li.menu_service,
	nav.gnav ul li.menu_about{
    	display: none;
	}
	
	nav.gnav ul li.mail a{
		width: 60px;
		height: 60px;
	}

	nav.gnav ul li.mail a img{
		width: 25px;
	}
	
}

@media screen and (max-width: 427px) {
	h1{
		margin: 10px;
	}
	
	h1 img{
		width: 250px;
	}
}

@media screen and (min-width: 990px) {
	.gnavi{
		display: none;
	}
}
.gnavi{
    position: fixed;
    right: 105px;
    top: 20px;
}

.hamburger_wrap{
	display: inline-block;
    z-index: 99999;
    vertical-align: top;
    text-align: center;
	position: relative;
}

.hamburger {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 24px;
    box-sizing: border-box;
}
.hamburger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	margin: 0 auto;
}

.hamburger  span:nth-of-type(1) {
	top: 3px;
}

.hamburger  span:nth-of-type(2) {
	bottom: 3px;
}
 
.active span:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-30deg);
	transform: translateY(6px) rotate(-30deg);
	background-color: #333;
}

.active span:nth-of-type(2) {
	-webkit-transform: translateY(-10px) rotate(30deg);
	transform: translateY(-10px) rotate(30deg);
	background-color: #333;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(20px) rotate(-30deg);
	transform: translateY(20px) rotate(-30deg);
}

.menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(-20px) rotate(30deg);
	transform: translateY(-20px) rotate(30deg);
}


#navigation{
	display:block;
	position: fixed;
	display: none;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #D6D9E3;
	z-index:4;
}

#navigation .navigation_inner{
    width: 100%;
    position: absolute;
    top: 20%;
}

#navigation .navigation_inner .navigation_menu{
    overflow: auto;
}
#navigation .navigation_inner .navigation_menu .navigation_item{
	margin: 0 auto;
    padding:  0;
	position:relative;
}

#navigation .navigation_inner .navigation_menu .navigation_item a{
    display: block;
    color: #505055;
    text-align: center;
    font-size: 27px;
	line-height: 3;
    font-weight: 500;
}


/* MAIN */
main{
    margin-top: -5px;
}

/* MISSION */
.mission{
	background-color: #EFF1F7;
	padding: 300px 0 200px;
}

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

.mission h2{
	font-size: clamp(60px, 12vw, 120px);
    margin: 0;
    font-weight: 500;
    margin-right: 20px;
}

.mission h2 span{
	font-size: 32px;
    display: block;
    padding-top: 20px;
}

.mission_inner_right p{
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.mission{
	    padding: 200px 0 100px;
	}
	.mission_inner{
		display: block;
	}
	
	.mission h2{
		margin-bottom: 50px;
		font-size: 60px;
	}
	
	.mission h2 span{
		font-size: 16px;
	}
	
	.mission_inner_right p{
		font-size: 16px;
	}
}

@media screen and (max-width: 428px) {
	.mission {
    	padding: 300px 0 100px;
	}
}

/* SERVICE */
.service{
	background-color: #BDC2CC;
	padding: 100px 0;
}

.service p.service_cap{
	border-bottom: 1px solid #fff;
	margin-bottom: 50px;
	padding-bottom: 20px;
	color: #fff;
}

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

.service h2{
	font-size: clamp(60px, 12vw, 120px);
    margin: 0;
    font-weight: 500;
    margin-right: 20px;
	color: #fff;
}

.service h2 span{
	font-size: clamp(16px, 3vw, 32px);
    display: block;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
	.service{
		padding: 50px 0;
	}
	.service .service_inner{
		display: block;
	}
	
	.service .service_inner div{
		text-align: center;
	}
	
	.service h2{
		margin-bottom: 50px;
		font-size: 60px;
	}
	
	.service h2 span{
		font-size: 16px;
	}
	
}

/* SERVICE2 */

section.service_2nd{
	padding: 0 !important;
	background-color: #BDC2CC;
}

section.service_2nd .service_sp{
	display: none;
}

.service_content .service_content_wrap h3{
    font-size: 3vw;
}

.service_content .service_content_wrap p{
	font-size: 1.3vw;
}

.service_content_01{
	display: flex;
}

.service_content_01 .service_content_01_left{
	position: relative;
}

.service_content_01 .service_content_01_txt{
    position: absolute;
    top: 0;
    right: 10px;
    max-width: 480px;
    margin-left: 10%;
    z-index: 1;
}

.service_content_01 .service_content_01_txt:before {
  content: "";
  display: block;
  padding-top: 20%;
}

.service_content_01 .service_content_01_txt p{
	line-height: 2;
}

.service_content_02{
	display: flex;
	margin-bottom: 10%;
}

.service_content_02 .service_content_02_right{
	position: relative;
}

.service_content_02 .service_content_02_txt{
    position: absolute;
    top: 0;
    left: 10px;
    max-width: 480px;
    margin-right: 10%;
    z-index: 1;
}

.service_content_02 .service_content_02_txt:before {
  content: "";
  display: block;
  padding-top: 20%;
}


.service_content_02 .service_content_02_txt p{
	line-height: 2;
}

.service_content_03{
	display: flex;
}

.service_content_03 .service_content_03_left{
	position: relative;
}

.service_content_03 .service_content_03_txt{
    position: absolute;
    top: 0;
    right: 10px;
    max-width: 480px;
    margin-left: 10%;
    z-index: 1;
}

.service_content_03 .service_content_03_txt:before {
  content: "";
  display: block;
  padding-top: 20%;
}

.service_content_03 .service_content_03_txt p{
	line-height: 2;
}

.service_content_04{
	display: flex;
}

.service_content_04 .service_content_04_right{
	position: relative;
}

.service_content_04 .service_content_04_txt{
    position: absolute;
    top: 0;
    left: 10px;
    max-width: 480px;
    margin-right: 10%;
    z-index: 1;
}

.service_content_04 .service_content_04_txt:before {
  content: "";
  display: block;
  padding-top: 20%;
}


.service_content_04 .service_content_04_txt p{
	line-height: 2;
}

p.number{
	border-bottom: 1px solid #505055;
    padding-bottom: 20px;
	font-size:16px;
}

@media screen and (max-width: 768px) {
	
	section.service_2nd .service_content{
		display: none;
	}	
	
	section.service_2nd .service_sp{
		display: block;
	}
	
	section.service_2nd .service_sp_inner{
		position: absolute;
		top: 52%;
		padding-right: 5% !important;
    	padding-left: 5% !important;
	}
	
	section.service_2nd .service_sp h3{
		font-size: clamp(27px, 5vw, 45px);
	}
	
	section.service_2nd .service_sp p{
		font-size: clamp(16px, 3vw, 32px);
		line-height: 2;
		margin-bottom: 0;
	}
	
	section.service_2nd .service_sp .service_sp_01,
	section.service_2nd .service_sp .service_sp_02,
	section.service_2nd .service_sp .service_sp_03,
	section.service_2nd .service_sp .service_sp_04{
		position: relative;
	}
	
	section.service_2nd .service_sp .service_sp_01{
		z-index: 4;
	}
	
	section.service_2nd .service_sp .service_sp_02{
		z-index: 3;
	}
	
	section.service_2nd .service_sp .service_sp_03{
		z-index: 2;
	}
	
	section.service_2nd .service_sp .service_sp_04{
		z-index: 1;
	}

}

@media screen and (max-width: 450px) {
	section.service_2nd h3{
		margin: 10px 0;
	}
	
	section.service_2nd .service_sp .service_sp_02,
	section.service_2nd .service_sp .service_sp_03{
		margin-bottom: 5%;
	}
	
	section.service_2nd .service_sp_inner {
    	top: 46%;	
	}
	
}

@media screen and (max-width: 400px) {
	section.service_2nd .service_sp p {
    line-height: 1.5;
	}
}

@media screen and (max-width: 350px) {
	section.service_2nd .service_sp p {
    line-height: 1.5;
	}
	
	section.service_2nd .service_sp .service_sp_01,
	section.service_2nd .service_sp .service_sp_02,
	section.service_2nd .service_sp .service_sp_03{
	    margin-bottom: 10%;
	}
}

/* WORKS */
.works{
	background-color: #BDC2CC;
	padding: 100px 0;
}

.works h2{
	color: #fff;
	margin-bottom: 30px;
}

.works .works_content ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: unset ;
}
.works .works_content ul > *{
    width: calc( 33.33333% - 28px );
    margin-right: 42px;
    margin-bottom: 42px;
}
.works .works_content ul > *:nth-child(3n){
    margin-right: auto;
}
.works .works_content ul > * > *{
    background: #ff0000;
    position: relative;
    overflow: hidden
}
@media screen and (max-width: 768px) {
	.works{
		padding: 100px 0 50px;
	}
	
    .works .works_content ul > *{
        width: calc( 50% - 21px );
    }
    .works .works_content ul > *:nth-child(3n){
        margin-right: 42px;
    }
    .works .works_content ul > *:nth-child(2n){
        margin-right: auto;
    }
}


/* ABOUT */
.about{
	padding: 100px 0 50px;
}

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

.about_inner .about_inner_right{
	width: 70%;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
	
	.about_inner{
		display: block;
	}
	
	.about h2{
		margin-bottom: 50px;
	}
	
	.about_inner .about_inner_right{
		width: 100%;
	}
}

/* CONTACT */
.contact{
	padding: 100px 0;
}

.contact .contact_form{
	width: 70%
}

@media screen and (max-width: 768px) {
	.contact h2{
	    margin-bottom: 50px;
	}
	
	.contact .contact_form{
		width: 100%;
	}
}

/* TOPへスクロール */

.gotop_wrap{
	position: relative;
	scroll-behavior: smooth;
}

.gotop{
	display: block;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    color: #505055;
    position: absolute;
    bottom: 0;
    right: 0;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #505055;
    border-right: 2px solid #505055;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}


/* FOOTER */

footer{
	background-color: #BDC2CC;
    padding: 30px;
}

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

footer .footer_inner .footer_content{
	position: relative;
}

footer .footer_inner .footer_content .footer_menu{
	display: flex;
    margin: 0;
}

footer .footer_inner .footer_content .footer_logo{
	position: absolute;
    bottom: 0;
}

footer .footer_inner .footer_content .footer_logo_sp{
	display: none;
}

footer .footer_inner .footer_content .footer_menu li{
	margin-right: 20%;
}

footer .footer_inner .footer_content address{
	margin-bottom: 30px;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
	
	footer .footer_inner{
		display: block;
	}
	
	footer .footer_logo{
		display: none;
	}
	
	footer .footer_inner .footer_content .footer_logo_sp{
		display: block;
		margin-bottom: 10px;
	}
	
	footer .footer_inner .footer_content .footer_menu{
		display: block;
	    margin-bottom: 20px;
	}
	
	footer .footer_inner .footer_content .footer_menu li{
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	footer .footer_inner .footer_content{
		text-align: center;
	}
	
	footer .footer_inner .footer_content address{
		margin: 50px 0;
	}
}

/* THANKS */
.thanks{
	padding-top: 300px;
}

.thanks p{
	text-align: center;
}

.thanks button{
	margin: 80PX 0 150PX;
    border: none;
    background: none;
    text-align: center;
    width: 100%;
}

.thanks button a{
    padding: 20px 0;
    width: 330PX;
    border: 1px solid #D6D9E3;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    color: #505055;
    -webkit-appearance: none;
    display: block;
    margin: 0 auto;
}

.thanks button a:hover{
	background: #505055;
	border: 1px solid #505055;
	color: #FFF;
}