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


.header {
    width: 100%;
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
    height: 80px;
    z-index: 9999;
    line-height: 1.5;
    padding: 0 15px 0 30px;
}
.header-logo {
    padding:0;
    margin: 0;
}

/********************************************** 
	
メインナビゲーション

********************************************* */

.header-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}
.header-nav > ul > li {
    -webkit-transition: all 0.2s cubic-bezier(0.35, 0.05, 0.55, 0.85) 0s;
    transition: all 0.2s cubic-bezier(0.35, 0.05, 0.55, 0.85) 0s;
}
.header-nav > ul > li > a {
    display: block;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .1rem;
    line-height: 80px;
    padding: 0 11px;
    position: relative;
    white-space: nowrap;
}
.header-nav > ul > li:hover > a,.header-nav > ul > li > a:hover,.header.is-fixed .header-nav ul li a:hover {
	color: #fff !important;
}
.header-nav > ul > li > a:after,.header-nav > ul > li > a:before {
	content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    height: 100%;
    background: var(--blue1);
    -webkit-transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1);
    transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1);
    z-index: -1;
}
.header-nav ul > li > a:before {
	background-color: rgba(0,0,0,.15);
    -webkit-transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
    transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
}
.header-nav > ul > li > a:hover:after,.header-nav ul li a:hover:before {
	left: 0;
    width: 100%;
}
.header-nav > ul > li:hover > a:after,.header-nav ul li:hover a:before {
	left: 0;
    width: 100%;
}

/********************************************** 
	
子メニュー

********************************************* */
.pc-sub-nav {
	width: 100%;
    transition:  all 0.35s cubic-bezier(0.35, 0.03, 0.52, 1) 0s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 20px 0;
	background: var(--blue1);
}
.header-nav ul li.pc-parent:hover > .pc-sub-nav {
    opacity: 1;
    visibility: visible;
    top: 80px;
}
.pc-sub-nav ul {
	max-width: 960px;
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pc-sub-nav ul li {
	width: 33.333%;
    height: 170px;
    overflow: hidden;
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.pc-sub-nav.company-nav ul {
	max-width: 1160px;
}
.pc-sub-nav.company-nav ul li {
	width: 25%;
}
.pc-sub-nav ul li.title {
	font-size: 2.6rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    flex-direction: column;
}
.pc-sub-nav ul li.title small {
	font-size: 1.6rem;
	display: block;
	text-transform: uppercase;
}
.pc-sub-nav ul li a,.header.is-fixed .header-nav .pc-sub-nav ul li a {
	color: #fff;
	display: none;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 140px;
	white-space: nowrap;
	width: 100%;
	text-align: center;
}
.header-nav ul li.pc-parent:hover .pc-sub-nav ul li a {
	display: block;
}

.header-nav ul li.sp-parent {
	display: none;
}
.header-nav ul li.pc-parent ul li a {
	overflow: hidden;
	position: relative;
}
.header-nav ul li.pc-parent ul li a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}
.header-nav ul li.pc-parent ul li a:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
    background-color: rgba(0,0,0,.4);
    z-index: -1;
}


.header-nav ul li.pc-parent ul li a:hover:before {
	transform: scale(1.1);
}
.pc-parent .nav-service01 a:before {
	background: url(../images/common/nav-service01.jpg) center center/cover no-repeat;
}
.pc-parent .nav-service02 a:before {
	background: url(../images/common/nav-service02.jpg) center center/cover no-repeat;
}
.pc-parent .nav-service03 a:before {
	background: url(../images/common/nav-service03.jpg) center center/cover no-repeat;
}
.pc-parent .nav-service04 a:before {
	background: url(../images/common/nav-service04.jpg) center center/cover no-repeat;
}
.header-nav ul.main-nav li.sp_sub_nav {
	display: none !important;
}
/********************************************** 
	
固定ヘッダー

********************************************* */
.header.is-fixed {
	height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 5px 20px rgba(0,0,0 ,.16);
    z-index: 9999;
}
.header.is-fixed .header-nav ul li a {
	color: #222;
	line-height: 60px;
}
.header.is-fixed .header-nav ul li.pc-parent:hover > .pc-sub-nav {
    opacity: 1;
    visibility: visible;
    top: 60px;
}

/********************************************** 
	
スマホトグルボタン

********************************************* */
#nav-toggle {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 101;
    padding: 18px 15px;
    background-color: var(--blue1);
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 6px;
}
#nav-toggle span:nth-child(3) {
    top: 12px;
}

/********************************************** 
	
トップ動画

********************************************* */
#visual {
	position: relative;
	width: 100%;
	height: 100vh;
	 min-height: 500px;
	 padding-top: 40px;
}
.video-box {
    position: absolute;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 500px;
    pointer-events: none;
}
.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%);
}
.overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .3);
}
.visual-content {
	position: absolute;
	bottom: 15%;
	right: 7%;
	z-index: 99;
	color: #fff;
}
.visual-content .container {
	max-width: 1360px;
}
.visual-content h2 {
	margin: 0;
	font-size: 4.2rem;
	font-weight: 600;
	white-space: nowrap;
	line-height: 1.75;
}
.visual-content h2 span {
	display: inline-block;
    padding: 5px .35em;
	margin-bottom: .5rem;
	background: var(--blue1);
	background: linear-gradient(135deg, rgba(38,190,188,1) 0%,rgba(42,118,212,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: relative;
    line-height: 1.5;
}
.visual-content h2 span:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    -webkit-transition: -webkit-clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
    transition: -webkit-clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
    transition: clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
}
.visual-content h2 span:last-child {
	margin-top: 3px;
}
.visual-content h2 span:last-child:before {
	transition-delay: .9s;
}
.visual-content.isPlay h2 span:before {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
.visual-content p {
	font-size: 1.5em;
}

.visual-scroll {
	position: relative;
}
.visual-scroll a {
	color: #fff;
	font-size: 1.4rem;
	position: absolute;
	top: -57px;
	left: 50%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	text-decoration: none;
	font-weight: bold;
}
.visual-scroll a span {
    position: relative;
    display: block;
    height: 50px;
}
.visual-scroll a span:before {
    content: '';
    width: 1px;
    height: 100%;
    background: #808080;
    display: block;
    position: absolute;
    left: 27px;
    bottom: 0;
}
.visual-scroll a span:after {
    content: '';
    width: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 27px;
    bottom: 0;
    -webkit-animation: scroll 1.25s ease-in-out 0s infinite;
    animation: scroll 1.25s ease-in-out 0s infinite;
}
@keyframes scroll {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  46% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  50%,
  54% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0%;
    bottom: 0;
    top: auto;
  }
}



/********************************************** 
	
	下層ページメインビジュアル

********************************************* */
/* 下層ページ */
.visual {
	width: 100%;
	height: 300px;
    background: var(--gradient1);
	position: relative;
	color: #fff;
	padding-top: 80px;
}
.visual > .container {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.visual h2 {
    color: #fff;
    z-index: 2;
}
.visual h2 span {
	display: inline-block;
	line-height: 1.5;
    margin-bottom: 5px;
    position: relative;
    padding: 0;
}
.visual h2 span.ja {
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1.35;
}
.visual h2 span.en {
	font-size: 2rem;
	font-weight: 700;
	margin-top: .5rem;
	text-transform: uppercase;
}
.visual h2 span:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-clip-path: inset(0);
    clip-path: inset(0);
    -webkit-transition: -webkit-clip-path .4s cubic-bezier(1, 0.05, 0.05, .75) 0.7s;
    transition: -webkit-clip-path .4s cubic-bezier(1, 0.05, 0.05, .75) 0.7s;
    transition: clip-path .4s cubic-bezier(1, 0.05, 0.05, .75) 0.7s;
    transition: clip-path .4s cubic-bezier(1, 0.05, 0.05, .75) 0.7s;
}
.visual h2 span.en:before {
	transition-delay: .85s;
}
.visual.isPlay h2 span:before {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}




@media (min-width: 1201px) {
	.header-nav > ul > li:last-child {
		padding-left: 7px;
		margin-left: 7px;
		position: relative;
	}
	.header-nav > ul > li:last-child::before {
		content: "";
		display: block;
		width: 2px;
		height: 1em;
		background: #ddd;
		position: absolute;
		left: 0;
		top: calc(50% - .5em);
	}
	
}
@media (max-width: 1200px) {
	
	.header,.header.is-fixed {
	    background: #fff;
	    position: fixed;
	    top: 0;
	    left: 0;
	    height: 50px;
	    z-index: 1000000;
	    padding: 0 10px;
	}
	.header-logo {
		padding: 0;
		
	}
	.header-logo img {
	    display: block !important;
	    width: 300px;
	}
	.header .header-logo img.logo-white {
		display: inline-block;
	}
	.header .header-logo img.logo-fixed {
		display: none
	}

/********************************************** 
	
メインナビゲーション

********************************************* */	
	.header-sub-nav {
		display: none !important;
	}
	#nav-toggle {
		display: block;
	}
/* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
/* スライドアニメーション */
	.header-nav {
		position: fixed;
	    display: block;
	    width: 100vw;
	    height: 100vh;
	    left: 0;
	    top: 50px;
	    background: var(--blue1);
	    opacity: 0;
	    -webkit-transform: translateX(200%);
	    transform: translateX(200%);
	    -webkit-transition: 0.3s ease 0s;
	    transition: 0.3s ease 0s;
	}
	.header-nav > ul.main-nav > li:last-child a, .header.is-fixed > .header-nav > ul.main-nav > li:last-child a {
	    background-color: transparent;
	}
	.open .header-nav {
	    -webkit-transform: translateX(0%);
	    transform: translateX(0%);
	    opacity: 1;
	    -webkit-transition: 0.3s ease 0s;
	    transition: 0.3s ease 0s;
	    overflow-y: scroll;
	}
	.open .header-nav::-webkit-scrollbar {
		display: none;
	}
/* スマホメインナビゲーション	 */
	.header-nav ul {
		display: block;
	}
	.header-nav > ul.main-nav {
	    width: 100%;
	    position: absolute;
	    top: 30px;
	    left: 0;
	    padding-bottom: 100px;
	}
	.header-nav > ul.main-nav li {
		position: relative;
	}
	.header-nav ul.main-nav li.sp-parent {
		display: block;
		position: relative;
	}
	.header-nav ul.main-nav li.pc-parent {
		display: none;
	}
	.header-nav > ul.main-nav > li::before,.header-nav > ul.main-nav > li::after {
		content: '';
	    width: 8px;
	    height: 2px;
	    background: #fff;
	    display: block;
	    position: absolute;
	    right: 22px;
	    z-index: 12;
	}
	.header-nav > ul.main-nav > li::before {
		top: 22px;
	    -webkit-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.header-nav > ul.main-nav > li::after {
		top: 26px;
	    -webkit-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	.header-nav > ul.main-nav > li.sp-parent::before {
		width: 10px;
		top: 25px;
	    -webkit-transform: rotate(0deg);
	    transform: rotate(0deg);
	}
	.header-nav > ul.main-nav > li.sp-parent::after {
		width: 10px;
		top: 25px;
	    -webkit-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	}
	.header-nav > ul.main-nav > li.sp-parent._open::after {
		display: none;
	}
	.header-nav > ul.main-nav > li:not(:last-child) > a > span {
		display: none;
	}
	.header-nav > ul.main-nav > li > a,.is-fixed .header-nav > ul.main-nav > li > a {
		color: #fff !important;
	    font-size: 1.4rem;
	    font-weight: bold;
	    line-height: 1.5;
	    padding: 10px 20px 10px 30px;
	    position: relative;
	    text-align: left;
	    height: 55px;
	}
	.header.is-fixed .header-nav ul.main-nav li a {
		line-height: 1.5;
	}
	.header-nav ul.main-nav li a::before,
	.header-nav ul.main-nav li a::after {
		display: none;
	}
	.header-nav > ul.main-nav > li.sp-parent .sp-sub-nav {
		background-color: rgba(255,255,255,.3);
	}
	.header-nav > ul.main-nav > li.sp-parent span.plus {
		display: inline-block;
		position: absolute;
		right: 0;
		top: 0;
		width: 55px;
		height: 55px;
		background-color: rgba(255,255,255,.3);
		z-index: 10;
	}
	.header-nav > ul.main-nav > li.sp-parent .sp-sub-nav ul {
		padding: 1rem 0;
	}
	.header-nav > ul.main-nav > li.sp-parent .sp-sub-nav ul li a {
		display: block;
		color: #fff !important;
	    font-size: 1.2rem;
	    font-weight: bold;
	    line-height: 1.5;
	    padding: 8px 20px 8px 60px;
	}
	.header-nav ul.main-nav li.sp_sub_nav {
		display: block !important;
		width: 100%;
		text-align: center;
		padding: 4px 15px;
	}
	.header-nav > ul.main-nav > li.sp_sub_nav::before,.header-nav > ul.main-nav > li.sp_sub_nav::after {
		display: none;
	}
	.header-nav ul.main-nav li.sp_sub_nav a {
		padding: 8px 1em;
		text-align: center;
		display: inline-block;
		width: 100%;
		height: auto;
		background: #fff;
		color: #080059 !important;
		font-size: 1.1em;
	}
}



/* 991px以下 */
@media (max-width: 991px) {
	
/********************************************** 
	
トップ動画

********************************************* */	
	.visual-content h2 {
	    font-size: 3rem;
	}
	.visual-content p {
	    font-size: 1.25em;
	}
/********************************************** 
	
下層ページメインビジュアル

********************************************* */
	.visual h2 span.ja {
		font-size: 3.6rem;
	}

	
}
@media (max-width: 767px) {
/********************************************** 
	
下層ページメインビジュアル

********************************************* */
	.visual {
	    height: 200px;
	    padding-top: 50px;
	}
	.visual h2 span.ja {
		font-size: 2.4rem;
	}
	.visual h2 span.en {
		font-size: 1.4rem;
	}
	

}