@charset "UTF-8";

@import url('https://use.fontawesome.com/releases/v5.0.6/css/all.css');
@import url('https://rsms.me/inter/inter-ui.css');
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:500');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700');
@font-face {
	font-family: 'Bebas Neue';
	font-style: normal;
	font-weight: normal;
	src: local('Bebas Neue'), url('BebasNeue.woff') format('woff');
}
@font-face {
	font-family: 'Minion';
	font-style: normal;
	font-weight: normal;
	src: local('Minion'), url('MinionWebBold.woff') format('woff');
}

html, body {
    height: 100%;
}
html {
    /* animation: fadeSiteIn 0.5s ease; */
}
body {
	position: relative;
	max-width: 100%;
	overflow-x: hidden;
	color: #333;
	letter-spacing: 0.05em;
	font-family: sans-sans-serif;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	background-color: #fff;
	font-family: Interface,Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
}

a {
	color: #333;
}
a:hover {
	text-decoration: none;
}
div {
	position: relative;
}
p {
	line-height: 1.8;
	font-size: 0.8rem;
}
ul {
	padding: 0;
}
ul li {
	list-style-type: none;
}
.row {
	position: relative;
}
.btn {
	font-family: 'Minion', sans-serif;
	font-style: italic;
	letter-spacing: 0.1rem;
}
.btn-outline-more {
    border: 2px solid #1e1c8d;
    font-family: 'Minion', sans-serif;
    line-height: 1;
    position: relative;
    padding: 12px 0;
    text-align: center;
    max-width: 140px;
    display: block;
    margin: 0 auto 0 auto;
    font-size: 0.9rem;
    font-weight: bold;
    font-style: italic;
    width: 100%;
}
.btn-outline-more:before {
    position: absolute;
    width: 36px;
    height: 2px;
    background: #1e1c8d;
    content: "";
    right: -17px;
    top: 17px;
}
.btn-outline-more:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #1e1c8d;
    transform: rotate(45deg);
    right: -15px;
    top: 12px;
}
.image-pic {
	display: block;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%
}

.bnr-more {
    display: inline-block;
    background: #272727;
    color: #fff;
    width: 260px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    line-height: 3.5;
    margin-top: 20px;
    margin-bottom: 0;
    transition: .3s;
	box-sizing: border-box;
	position: relative;
}
.bnr-more:hover {
	 color: #fff;
	background-color:#3169d1;
    background-position: -100% 100%;
}
.bnr-more span {
	display: block;
	position: absolute;
	right: 14px;
    top: 28px;
    width: 14px;
    height: 1px;
    background: #fff;
    content: "";
    transition: all .2s ease-out;
}
.bnr-more span:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    transform: rotate(45deg);
    right: 2px;
    top: -4px;
}
.bnr-more span:hover span {
	right: -15px;
}
.bnr-more:hover span {
	right:20px;
}


/*
block
---------------------------------------------*/

.block {
	position: absolute;
}


/*
header
---------------------------------------------*/

#header {
	padding: 25px 30px;
	position: fixed;
	width: 100%;
	z-index: 2000;
	top:0;
	background: #fff;
}
#index #header {
	background: none;
}
#header p.logo {
	display: block;
	float: left;
	margin-bottom: 0;
}
#header ul {
	display: block;
	float: right;
	line-height: 1;
	margin: 0;
}
#header ul li {
	display: inline-block;
	list-style: none;
	font-family: 'Noto Sans Japanese', sans-serif;
	margin: 0 0.4rem;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0.08em;
	font-weight: 600;
	position: relative;
}
#header ul li.active:before{
	width: 100%;
}
#header ul li:before{
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	width: 0;
	bottom: 1px;
	height: 3px;
	background: #333;
	transition: 0.2s ease-out;
}
#header ul li:hover:before{
	width: 100%;
}
#header ul li a {
	padding: 10px 0;
	display: block;
}
#index #header ul li a {
	color: #fff;
}
#index #header ul li a:hover {
	color: #333;
}

#header ul li:nth-child(1).active a {
	color: #f58a3d;
}
#header ul li:nth-child(1) a:hover {
	color: #f58a3d;
}
#index #header ul li:nth-child(1) a:hover {
	color: #f58a3d;
}
#header ul li:nth-child(1):before {
	background: #f58a3d;
}

#header ul li:nth-child(2).active a {
	color: #15c4ca;
}
#header ul li:nth-child(2) a:hover {
	color: #15c4ca;
}
#index #header ul li:nth-child(2) a:hover {
	color: #15c4ca;
}
#header ul li:nth-child(2):before {
	background: #15c4ca;
}

#header ul li:nth-child(3).active a {
	color: #e03e3e;
}
#header ul li:nth-child(3) a:hover {
	color: #e03e3e;
}
#index #header ul li:nth-child(3) a:hover {
	color: #e03e3e;
}
#header ul li:nth-child(3):before {
	background: #e03e3e;
}

#header ul li:nth-child(4).active a {
	color: #1e1c8d;
}
#header ul li:nth-child(4) a:hover {
	color: #1e1c8d;
}
#index #header ul li:nth-child(4) a:hover {
	color: #1e1c8d;
}
#header ul li:nth-child(4):before {
	background: #1e1c8d;
}

#header ul li:nth-child(5).active a {
	color: #1e1c8d;
}
#header ul li:nth-child(5) a:hover {
	color: #1e1c8d;
}
#index #header ul li:nth-child(5) a:hover {
	color: #1e1c8d;
}
#header ul li:nth-child(5):before {
	background: #1e1c8d;
}

#header ul li:nth-child(6).active a {
	color: #1e1c8d;
}
#header ul li:nth-child(6) a:hover {
	color: #1e1c8d;
}
#index #header ul li:nth-child(6) a:hover {
	color: #1e1c8d;
}
#header ul li:nth-child(6):before {
	background: #1e1c8d;
}


.head-entry {
	display: block;
	float: right;
	margin-left: 1rem;
	margin-top: -0.4rem;
}
.head-entry a {
	color: #fff;
	background: #0472E0;
    font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: bold;
	width: 140px;
	text-align: center;
	display: block;
	font-size: 0.8rem;
	line-height: 3.3;
	border: 2px solid #0472E0;
	transition: all .2s ease-out;
}
.head-entry a:hover {
	background: transparent;
	color: #0472E0;
}

.head-entry-menu {
	display: block;
	margin-bottom: 1rem;
}
.head-entry-menu a {
	color: #fff;
	background: #0472E0;
    font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: bold;
	width: 100%;
	text-align: center;
	display: block;
	font-size: 1.5rem;
	line-height: 2;
}

.head-entry-sp {
	display: none;
	position: fixed;
	right: 50px;
    top: 12px;
	z-index: 2001;
	cursor: pointer;
}

.head-entry-sp a {
	color: #fff;
	background: #0472E0;
    font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: bold;
	width: 90px;
	text-align: center;
	display: block;
	font-size: 0.8rem;
	line-height: 2.5;
}



/*
footer
---------------------------------------------*/

#footer {
	margin-top: 120px;
}
#footer-entry {
	/* background: url(../images/common/bottom_pattern.png) repeat center top; */
	/* background-size: 350px 176px; */
	padding: 45px 0;
	background: #1e1c8d;
}
#footer-entry a {
	display: block;
	text-align: center;
	color: #1e1c8d;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    background: #fff;
    max-width: 910px;
    margin: 0 auto 0 auto;
    line-height: 1.2;
    height: 100px;
    border: 1px solid #fff;
    transition: all .2s ease-out;
    position: relative;
    overflow: hidden;
}
#footer-entry a span {
	padding: 30px 0 0 0;
	display: block;
	position: relative;
	z-index: 5;
}
#footer-entry a span:before {
	content: "";
	position: absolute;
	left: 50%;
	width: 28px;
	height: 2px;
	background: #1d2088;
	bottom: -15px;
	margin-left: -14px;
	transition: all .2s ease-out;
}
#footer-entry a span:after {
	content: "";
    position: absolute;
    left: 50%;
    width: 8px;
    height: 2px;
    background: #1d2088;
    transform: rotate(45deg);
    bottom: -12px;
    margin-left: 6px;
    transition: all .2s ease-out;
}
#footer-entry a:after {
	content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #1e1c8d;
    left: -100%;
    top: 0;
    transition: all .2s ease-out;
}
#footer-entry a:hover {
	color: #fff;	
	background: #1d2088;
}
/*
#footer-entry a:hover:after {
	left: 0;
	top:0;
}
*/
#footer-entry a:hover span:after,#footer-entry a:hover span:before {
	background: #fff;
}

#footer #pagetop {
	background-color: #f5f5f5;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all .2s ease-out;
}
#footer #pagetop:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: #eeeffd;
	left: 0;
	top:100%;
	transition: all .1s ease-out;
}
#footer #pagetop a {
	display: block;
	padding: 20px 0 6px 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	z-index: 10;
}
#footer #pagetop a span {
	width: 22px;
	height: 22px;
	border-top: 3px solid #1d2088;
	border-right: 3px solid #1d2088;
	transform: rotate(-45deg);
	margin: 0 auto 0 auto;
	display: block;
	position: relative;
}
#footer #pagetop:hover:after {
	top:0;
}
#footer .container {
	padding-top: 30px;
	padding-bottom: 30px;
}
#footer p.logo {
	display: block;
	float: left;
	margin-bottom: 0;
}
#footer ul {
	display: block;
	float: right;
	margin: 0;
}
#footer ul li {
    font-family: 'Noto Sans Japanese', sans-serif;
	margin: 0 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	list-style-type: none;
	display: inline-block;
}
#footer ul li a {
	padding: 15px 0;
	display: block;
}
#footer .footer-bottom {
	border-top: 1px solid #eee;
}
#footer .footer-bottom .container {
	padding: 20px 30px;
}
#footer p.copyright {
    font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.8em;
	display: block;
	margin-bottom: 0;
	line-height: 1;
}
#footer .footer-bottom ul {
	line-height: 1;
}
#footer .footer-bottom ul li a {
	padding: 0;
	font-size: 0.8rem;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
}

#footer .footer-bottom ul li a.recruit-navi {
	border: 1px solid #333;
    padding: 6px;
}

/*
common
---------------------------------------------*/

.container {
	position: relative;
}
.ttl {
	padding: 60px 0px 60px 0px;
	text-align: right;
	font-family: 'Inter UI', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 1;
	display: block;
	margin-bottom: 0;
}
.ttl small {
	font-size: 0.95rem;
	line-height: 1;
	display: block;
	padding-top: 5px;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 500;
}
.sub-ttl {
	margin-bottom: 30px;
}
.sub-ttl span {
	font-size: 1.7rem;
	font-family: 'Inter UI', sans-serif;
	font-weight: 600;
	display: block;
	line-height: 1.4;
}
.sub-ttl small {
	display: block;
	font-family: 'Inter UI', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.1rem;
}


/*
page
---------------------------------------------*/

.ttl {
	padding: 150px 0px 60px 0px;
	text-align: right;
	font-family: 'Inter UI', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 1;
	display: block;
	margin-bottom: 0;
}
.ttl small {
	font-size: 0.95rem;
	line-height: 1;
	display: block;
	padding-top: 5px;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 500;
}
.sub-ttl {
	margin-bottom: 30px;
}
.sub-ttl span {
	font-size: 1.7rem;
	font-family: 'Inter UI', sans-serif;
	font-weight: 600;
	display: block;
	line-height: 1.4;
}
.sub-ttl small {
	display: block;
	font-family: 'Inter UI', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.1rem;
}
.sub-copy {
	margin-bottom: 30px;
}
.sub-copy strong,.sub-copy em,.sub-copy span,.sub-copy small {
	display: block;
	text-align: center;
	font-style: normal;
}
.sub-copy em {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
}
.sub-copy span {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.4;
}
.sub-copy small {
	font-family: 'Inter UI', sans-serif;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	line-height: 2.2;
}
body .sub-copy-txt {
	margin-bottom: 30px;
}


@media (max-width: 1120px) {
	#header ul li {
		font-size: 0.8rem;
		margin: 0 0.3rem;
	}
}

@media (max-width: 992px) {
	
	.block1 img {
		width: 111px;
	}
	.block2 img {
		width: 89px;
	}
	.block3 img {
		width: 89px;
	}
	.block4 img {
		width: 65px;
	}
	.block5 img {
		width: 65px;
	}
	.bnr-more span {
		right: 18px;
		top:25px;
	}
	
	p {
		font-size: 0.8rem;
	}
	#header {
		padding: 15px 15px;
	}
	#header p.logo img {
		width: 210px;
	}
	#header .share {
		margin: 1px 0 0 0;
	}
	#header .share img {
		width: 20px;
	}
	
	#footer {
		overflow: hidden;
	}
	#footer-entry {
		background-size: 175px 88px;
		padding: 20px 0 20px 0;
	}
	#footer-entry-bnr {
		padding: 0 26px;
	}
	#footer-entry a {
		width: 100%;
		height: 60px;
	    margin: -1px auto 0 auto;
	}
	#footer-entry a span {
		padding: 20px 0;
		font-size: 1rem;
	}
	#footer {
		margin-top: 80px;
	}
	#footer .container {
		padding: 0;
	}
	#footer #pagetop a span {
		width: 15px;
		height: 15px;
	}
	#footer p.logo {
		display: none;
	}
	#footer ul {
		float: none !important;
		text-align: center;
	}
	#footer ul li {
		margin-left: 0;
	}
	#footer ul li {
		width: 100%;
		border-top: 1px solid #ddd;
		text-align: left;
	}
	#footer ul li a {
		padding: 15px;
		position: relative;
	}
	#footer ul li a:before {
	    position: absolute;
	    width: 15px;
	    height: 2px;
	    background: #1e1c8d;
	    content: "";
	    right: 15px;
	    top: 50%;
	}
	#footer ul li a:after {
        position: absolute;
	    content: "";
	    width: 8px;
	    height: 8px;
	    border-top: 2px solid #1e1c8d;
	    transform: rotate(45deg);
	    right: 17px;
	    top: 50%;
	    margin-top: -4px
	}
	#footer .footer-bottom ul {
		padding: 15px 0;
	}
	#footer .footer-bottom ul li {
		display: inline-block;
		width: auto;
		border-top: 0;
	}
	#footer .footer-bottom ul li a:before,#footer .footer-bottom ul li a:after {
		display: none;
	}
	#footer .footer-bottom .container {
		padding: 0 10px;
	}
	#footer p.copyright {
	    text-align: center;
	    margin-bottom: 12px;
	    display: block;
	    width: 100%;
	    font-size: 0.75rem;
	}
	
	.ttl {
		font-size: 8vw;
		padding: 90px 0 40px 0;
	}
	.ttl small {
		font-size: 0.8rem;
	}
	.sub-ttl {
		margin-bottom: 15px;
	}
	.sub-ttl small {
		font-size: 3vw;
	}
	.sub-ttl span {
		font-size: 5.5vw;
	}
	
	.sub-copy span {
		font-size: 6vw;
	}
	.sub-copy small {
		font-size: 1.5vw;
		line-height: 1.5;
		padding: 5px 0;
	}
	.sub-copy-txt {
		text-align: left !important;
	}
	body .sub-copy-txt {
		margin-bottom: 20px;
	}
	.sub-copy em {
		font-size: 3.2vw;
	}
	
	
	.bnr-more {
		width: 100%;
		font-size: 0.9rem;
		margin-top: 10px;
	}

	.head-entry-sp {
		display: block !important;	
	}

	#history-body .bnr-more {
		width: 80% !important;
	}
}

/*
menu
---------------------------------------------*/

.gnav-toggle {
	width: 24px;
	height: 17px;
	position: fixed;
	right: 15px;
    top: 20px;
	z-index: 2003;
	cursor: pointer;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
	transition: left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
	-o-transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s, left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s, left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s, left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
}
.gnav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: absolute;
    z-index: 10;
    -webkit-transition: all .2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    -o-transition: all .2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    transition: all .2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
}
.gnav-toggle span.bar-first {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 0;
}
.gnav-toggle span.bar-second {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 8px;
}
.gnav-toggle span.bar-third {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 16px;
}
.gnav-toggle.toggle-on span.bar-first {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 8px;
}
.gnav-toggle.toggle-on span.bar-second {
    opacity: 0;
}
.gnav-toggle.toggle-on span.bar-third {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 8px;
}

.menu_on {
	overflow: hidden;
}
#gnav-menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2002;
    background: #fff;
    -webkit-transition: all 0.2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    -moz-transition: all 0.2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    -o-transition: all 0.2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    transition: all 0.2s cubic-bezier(0.465, 0.145, 0.46, 0.855);
    display: none;
}
.menu_on #gnav-menu {
}
#gnav-menu-body {
	position: absolute;
    top: 50%;
    left: 45px;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#gnav-menu-body ul {
	line-height: 1.8;
	margin-bottom: 1em;
}
#gnav-menu-body ul li {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.6rem;
	list-style-type: none;
}
#gnav-menu-body dl {
	margin-bottom: 0;
	line-height: 1;
}
#gnav-menu-body dl dt {
	margin-bottom: 0;
	    font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.9rem;
}
#gnav-menu-body dl dd {
	display: inline-block;
	margin-right: 0.6em;
}
#gnav-menu-body dl dd a {
	display: block;
	text-align: center;
	border-radius: 50%;
	line-height: 2.2;
	font-size: 1.3rem;
}

