﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Convergence&display=swap);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	font-size: 62.5%;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1;
}
* {
	font-size: 14px;
	font-size: 1.4rem;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
main {
	position:relative;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
	padding: 0 0;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger-box {
	width: 26px;
	height: 18px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}
 .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
 width: 26px;
 height: 2px;
 background-color: #fff;
 border-radius: 4px;
 position: absolute;
 transition-property: transform;
 transition-duration: 0.15s;
 transition-timing-function: ease;
}
 .hamburger-inner::before, .hamburger-inner::after {
 content: "";
 display: block;
}
 .hamburger-inner::before {
 top: -8px;
}
 .hamburger-inner::after {
 bottom: -8px;
}
/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
	perspective: 52px;
}
.hamburger--3dx .hamburger-inner {
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
 .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
 transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
	background-color: transparent;
	transform: rotateY(180deg);
}
 .hamburger--3dx.is-active .hamburger-inner::before {
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--3dx.is-active .hamburger-inner::after {
 transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
	perspective: 52px;
}
.hamburger--3dx-r .hamburger-inner {
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
 .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
 transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
	background-color: transparent;
	transform: rotateY(-180deg);
}
 .hamburger--3dx-r.is-active .hamburger-inner::before {
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--3dx-r.is-active .hamburger-inner::after {
 transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
	perspective: 52px;
}
.hamburger--3dy .hamburger-inner {
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
 .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
 transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
	background-color: transparent;
	transform: rotateX(-180deg);
}
 .hamburger--3dy.is-active .hamburger-inner::before {
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--3dy.is-active .hamburger-inner::after {
 transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
	perspective: 52px;
}
.hamburger--3dy-r .hamburger-inner {
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
 .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
 transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
	background-color: transparent;
	transform: rotateX(180deg);
}
 .hamburger--3dy-r.is-active .hamburger-inner::before {
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--3dy-r.is-active .hamburger-inner::after {
 transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
 transform: translate3d(-5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
 .hamburger--arrow.is-active .hamburger-inner::after {
 transform: translate3d(-5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
 transform: translate3d(5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}
 .hamburger--arrow-r.is-active .hamburger-inner::after {
 transform: translate3d(5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
 transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 .hamburger--arrowalt .hamburger-inner::after {
 transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 .hamburger--arrowalt.is-active .hamburger-inner::before {
 top: 0;
 transform: translate3d(-5.2px, -6.5px, 0) rotate(-45deg) scale(0.7, 1);
 transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
 .hamburger--arrowalt.is-active .hamburger-inner::after {
 bottom: 0;
 transform: translate3d(-5.2px, 6.5px, 0) rotate(45deg) scale(0.7, 1);
 transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
 transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 .hamburger--arrowalt-r .hamburger-inner::after {
 transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 .hamburger--arrowalt-r.is-active .hamburger-inner::before {
 top: 0;
 transform: translate3d(5.2px, -6.5px, 0) rotate(45deg) scale(0.7, 1);
 transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
 .hamburger--arrowalt-r.is-active .hamburger-inner::after {
 bottom: 0;
 transform: translate3d(5.2px, 6.5px, 0) rotate(-45deg) scale(0.7, 1);
 transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
 transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
	transform: rotate(45deg);
}
 .hamburger--boring.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
}
 .hamburger--boring.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(-90deg);
}
/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--collapse .hamburger-inner::after {
 top: -16px;
 transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
 .hamburger--collapse .hamburger-inner::before {
 transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -8px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--collapse.is-active .hamburger-inner::after {
 top: 0;
 opacity: 0;
 transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
 .hamburger--collapse.is-active .hamburger-inner::before {
 top: 0;
 transform: rotate(-90deg);
 transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--collapse-r .hamburger-inner::after {
 top: -16px;
 transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
 .hamburger--collapse-r .hamburger-inner::before {
 transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
	transform: translate3d(0, -8px, 0) rotate(45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--collapse-r.is-active .hamburger-inner::after {
 top: 0;
 opacity: 0;
 transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
 .hamburger--collapse-r.is-active .hamburger-inner::before {
 top: 0;
 transform: rotate(90deg);
 transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
	top: 1px;
	transition-duration: 0.275s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 .hamburger--elastic .hamburger-inner::before {
 top: 8px;
 transition: opacity 0.125s 0.275s ease;
}
 .hamburger--elastic .hamburger-inner::after {
 top: 16px;
 transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
	transform: translate3d(0, 8px, 0) rotate(135deg);
	transition-delay: 0.075s;
}
 .hamburger--elastic.is-active .hamburger-inner::before {
 transition-delay: 0s;
 opacity: 0;
}
 .hamburger--elastic.is-active .hamburger-inner::after {
 transform: translate3d(0, -16px, 0) rotate(-270deg);
 transition-delay: 0.075s;
}
/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
	top: 1px;
	transition-duration: 0.275s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 .hamburger--elastic-r .hamburger-inner::before {
 top: 8px;
 transition: opacity 0.125s 0.275s ease;
}
 .hamburger--elastic-r .hamburger-inner::after {
 top: 16px;
 transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
	transform: translate3d(0, 8px, 0) rotate(-135deg);
	transition-delay: 0.075s;
}
 .hamburger--elastic-r.is-active .hamburger-inner::before {
 transition-delay: 0s;
 opacity: 0;
}
 .hamburger--elastic-r.is-active .hamburger-inner::after {
 transform: translate3d(0, -16px, 0) rotate(270deg);
 transition-delay: 0.075s;
}
/*
   * Emphatic
   */
.hamburger--emphatic {
	overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
	transition: background-color 0.125s 0.175s ease-in;
}
 .hamburger--emphatic .hamburger-inner::before {
 left: 0;
 transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
 .hamburger--emphatic .hamburger-inner::after {
 top: 8px;
 right: 0;
 transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent;
}
 .hamburger--emphatic.is-active .hamburger-inner::before {
 left: -52px;
 top: -52px;
 transform: translate3d(52px, 52px, 0) rotate(45deg);
 transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
 .hamburger--emphatic.is-active .hamburger-inner::after {
 right: -52px;
 top: -52px;
 transform: translate3d(-52px, 52px, 0) rotate(-45deg);
 transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
	overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
	transition: background-color 0.125s 0.175s ease-in;
}
 .hamburger--emphatic-r .hamburger-inner::before {
 left: 0;
 transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
 .hamburger--emphatic-r .hamburger-inner::after {
 top: 8px;
 right: 0;
 transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent;
}
 .hamburger--emphatic-r.is-active .hamburger-inner::before {
 left: -52px;
 top: 52px;
 transform: translate3d(52px, -52px, 0) rotate(-45deg);
 transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
 .hamburger--emphatic-r.is-active .hamburger-inner::after {
 right: -52px;
 top: 52px;
 transform: translate3d(-52px, -52px, 0) rotate(45deg);
 transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
	top: 1px;
}
 .hamburger--slider .hamburger-inner::before {
 top: 8px;
 transition-property: transform, opacity;
 transition-timing-function: ease;
 transition-duration: 0.15s;
}
 .hamburger--slider .hamburger-inner::after {
 top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--slider.is-active .hamburger-inner::before {
 transform: rotate(-45deg) translate3d(-3.71429px, -6px, 0);
 opacity: 0;
}
 .hamburger--slider.is-active .hamburger-inner::after {
 transform: translate3d(0, -16px, 0) rotate(-90deg);
}
/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
	top: 1px;
}
 .hamburger--slider-r .hamburger-inner::before {
 top: 8px;
 transition-property: transform, opacity;
 transition-timing-function: ease;
 transition-duration: 0.15s;
}
 .hamburger--slider-r .hamburger-inner::after {
 top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
	transform: translate3d(0, 8px, 0) rotate(-45deg);
}
 .hamburger--slider-r.is-active .hamburger-inner::before {
 transform: rotate(45deg) translate3d(3.71429px, -6px, 0);
 opacity: 0;
}
 .hamburger--slider-r.is-active .hamburger-inner::after {
 transform: translate3d(0, -16px, 0) rotate(90deg);
}
/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
	top: 1px;
	transition: background-color 0s 0.13s linear;
}
 .hamburger--spring .hamburger-inner::before {
 top: 8px;
 transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--spring .hamburger-inner::after {
 top: 16px;
 transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
	transition-delay: 0.22s;
	background-color: transparent;
}
 .hamburger--spring.is-active .hamburger-inner::before {
 top: 0;
 transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
 .hamburger--spring.is-active .hamburger-inner::after {
 top: 0;
 transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
 transform: translate3d(0, 8px, 0) rotate(-45deg);
}
/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--spring-r .hamburger-inner::after {
 top: -16px;
 transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
 .hamburger--spring-r .hamburger-inner::before {
 transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
	transform: translate3d(0, -8px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--spring-r.is-active .hamburger-inner::after {
 top: 0;
 opacity: 0;
 transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
 .hamburger--spring-r.is-active .hamburger-inner::before {
 top: 0;
 transform: rotate(90deg);
 transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
 .hamburger--stand .hamburger-inner::before {
 transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--stand .hamburger-inner::after {
 transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
	transform: rotate(90deg);
	background-color: transparent;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
 .hamburger--stand.is-active .hamburger-inner::before {
 top: 0;
 transform: rotate(-45deg);
 transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--stand.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(45deg);
 transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
 .hamburger--stand-r .hamburger-inner::before {
 transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--stand-r .hamburger-inner::after {
 transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
	transform: rotate(-90deg);
	background-color: transparent;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
 .hamburger--stand-r.is-active .hamburger-inner::before {
 top: 0;
 transform: rotate(-45deg);
 transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--stand-r.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(45deg);
 transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--spin .hamburger-inner::before {
 transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
 .hamburger--spin .hamburger-inner::after {
 transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--spin.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
 transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
 .hamburger--spin.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(-90deg);
 transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--spin-r .hamburger-inner::before {
 transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
 .hamburger--spin-r .hamburger-inner::after {
 transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
	transform: rotate(-225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--spin-r.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
 transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
 .hamburger--spin-r.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(90deg);
 transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .hamburger--squeeze .hamburger-inner::before {
 transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
 .hamburger--squeeze .hamburger-inner::after {
 transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .hamburger--squeeze.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
 transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
 .hamburger--squeeze.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(-90deg);
 transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
 .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
 transition-duration: 0s;
 transition-delay: 0.1s;
 transition-timing-function: linear;
}
 .hamburger--vortex .hamburger-inner::before {
 transition-property: top, opacity;
}
 .hamburger--vortex .hamburger-inner::after {
 transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
	transform: rotate(765deg);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
 .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
 transition-delay: 0s;
}
 .hamburger--vortex.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
}
 .hamburger--vortex.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(90deg);
}
/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
 .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
 transition-duration: 0s;
 transition-delay: 0.1s;
 transition-timing-function: linear;
}
 .hamburger--vortex-r .hamburger-inner::before {
 transition-property: top, opacity;
}
 .hamburger--vortex-r .hamburger-inner::after {
 transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
	transform: rotate(-765deg);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
 .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
 transition-delay: 0s;
}
 .hamburger--vortex-r.is-active .hamburger-inner::before {
 top: 0;
 opacity: 0;
}
 .hamburger--vortex-r.is-active .hamburger-inner::after {
 bottom: 0;
 transform: rotate(-90deg);
}
 @media only screen and (max-width: 767px) {
 .pc {
 display: none !important;
}
}
 @media only screen and (min-width: 768px) {
 .sp {
 display: none !important;
}
}
.inner0 {
	margin: 0 auto;
	max-width: 1200px;
	width: 1200px;
}
@media only screen and (max-width: 1200px) {
 .inner0 {
 padding: 0 30px;
 width: 100%;
}
}
@media only screen and (max-width: 767px) {
 .inner0 {
 padding: 0 20px;
 width: 100%;
}
}
.footer .copy {
	font-family: Arial, メイリオ, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	color: #9d9d9d;
	font-size: 11px;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	padding: 64px 0 60px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
 .footer .copy {
 line-height: 2;
 padding: 48px 0px 48px;
}
}
.header {
	padding: 40px 59px 40px 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
.header {
 padding: 5px 15px 0 10px;
 position: fixed;
 height: 55px;
 background: #fff;
}
}
.header .logo {
	width: 293px;
	height: 33px;
	position: relative;
	z-index: 3;
	transition: opacity 0.3s;
}
.header .logo.off {
	opacity: 0;
	z-index: -1;
}
@media only screen and (max-width: 767px) {
.header .logo {
 width: 239px;
 height: 27px;
 margin-top: 12px;
}
}
.header .logo a {
	display: block;
	text-align: center;
	width: 293px;
	height: 33px;
	background-image: url(../images/logo_w.svg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.3s;
	position: relative;
}
 @media only screen and (max-width: 767px) {
 .header .logo a {
 width: 239px;
 height: 27px;
 background-image: url(../images/logo_b.svg) !important;
}
}
.header .gnav {
	padding-top: 5px;
	width: 525px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
 @media only screen and (max-width: 767px) {
 .header .gnav {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #fff;
 z-index: 4;
 padding: 95px 30px 40px;
 overflow: auto;
}
}
.header .gnav li {
	color: white;
	font-size: 15px;
	font-size: 1.5rem;
	letter-spacing: 0.19em;
	font-family: "Oswald", sans-serif;
}
.header .gnav li:hover {
	opacity: 1;
}
.header .gnav li:hover a {
	color: #009F41;
}
.header .gnav li.disabled {
	cursor: default;
	opacity: 0.4 !important;
}
 @media only screen and (min-width: 768px) {
 .header .gnav li {
 transition: color 0.3s;
}
}
.header .gnav li a {
	transition: color 0.3s;
}
 @media only screen and (max-width: 767px) {
 .header .gnav li {
 color: #000;
 padding-top: 22px;
 padding-bottom: 22px;
 padding-left: 50px;
 border-bottom: 1px solid #e7e7e7;
}
 .header .gnav li span, .header .gnav li a {
 display: block;
 position: relative;
 font-size: 19px;
 font-size: 1.9rem;
}
 .header .gnav li span:before, .header .gnav li a:before {
 content: "";
 background: #b2d5fd;
 position: absolute;
 width: 20px;
 height: 1px;
 top: 0;
 bottom: 0;
 left: -35px;
 margin: auto;
}
 .header .gnav li.entry-btn {
 border: none;
 padding: 0;
 margin-top: 55px;
}
}
 @media only screen and (max-width: 767px) and (max-width: 767px) {
 .header .gnav li.entry-btn {
 margin-top: 30px;
}
 .header .gnav li.entry-btn a {
 color: #fff;
}
}
.header .hamburger {
	outline: none;
	position: relative;
	z-index: 5;
}
.header .hamburger .hamburger-inner {
	transition-delay: 0s;
	background: #009F41;
}
.header .hamburger .hamburger-inner:before, .header .hamburger .hamburger-inner:after {
	background: #009F41;
}
 @media only screen and (max-width: 767px) {
 .header .hamburger.is-active .hamburger-inner {
 background: transparent;
}
}
.header .hamburger.is-active .hamburger-inner:before, .header .hamburger.is-active .hamburger-inner:after {
	background: #009F41;
}
.header .hamburger.change-color .hamburger-inner {
	background: #009F41;
}
.header .hamburger.change-color .hamburger-inner:before, .header .hamburger.change-color .hamburger-inner:after {
	background: #009F41;
}
 @media only screen and (max-width: 767px) {
 .header .hamburger.change-color.is-active .hamburger-inner {
 background: transparent;
}
}
.header .hamburger.change-color.is-active .hamburger-inner:before, .header .hamburger.change-color.is-active .hamburger-inner:after {
	background: #009F41;
}
.header.change-color .gnav li span, .header.change-color .gnav li a {
	color: #000;
}
.header.change-color .gnav li:hover {
	opacity: 1;
}
.header.change-color .gnav li:hover a {
	color: #009F41;
}
.header.change-color .logo .brandname {
	color: #009F41;
}
.header.fixed {
	background: #fff;
	border-bottom: 1px solid #F1F1F1;
}
.header.fixed .logo .brandname {
	color: #009F41;
}
.header.fixed .logo a {
	background-image: url(../images/logo_b.svg);
}
.header.fixed .hamburger.is-active .hamburger-inner {
	background-color: transparent;
}
.header.fixed .hamburger .hamburger-inner {
	background-color: #009F41;
}
.header.fixed .hamburger .hamburger-inner:before, .header.fixed .hamburger .hamburger-inner:after {
	background-color: #009F41;
}
.header.fixed .gnav li:hover {
	opacity: 1;
}
.header.fixed .gnav li:hover a {
	color: #009F41;
}
.header.fixed .gnav li span, .header.fixed .gnav li a {
	color: #666;
}
.header.fixed .gnav li span.current, .header.fixed .gnav li a.current {
	color: #009F41;
	opacity: 1;
}
.wrap {
	overflow:hidden;
}
body.index .wrap {
	margin-top: -1px;
	overflow:hidden;
}
body.index main {
/* IE11  */ }
body.index main section.mvtop {
	background-position: center;
	position: relative;
	height: calc(100vh + 3px);
	width: 100%;
}
body.index main section.mvtop .bg-movie {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	left: 0;
	top: 0;
	overflow: hidden;
	
}
body.index main section.mvtop .bg-movie:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.25);
}
body.index main section.mvtop .bg-movie video {
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
}
body.index main section.mvtop .bg-movie img {
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: auto;
	min-height: 100%;
	z-index: 1;
}
body.index main section.mvtop {
	background-image: url(../images/key2.jpg);
	background-size: 100% auto;
}
@media only screen and (max-width: 767px) {
body.index main section.mvtop {
	background-image: url(../images/key2.jpg);
	background-size: auto 100%;
}
}
.videoOverlay {
  background: url(../images/mvBg.png) repeat;
  background-size: 3px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
body.index .enviroment .fI, body.index .recruitList li.fI, #sectionMovie .fI, #bene li.fI, .spVid .spMov{
  opacity: 0;
  transition: all 1s; }
body.index header .logo {
	opacity: 0;
	transition: all 1s;
}
 @keyframes fadeup {
 0% {
 opacity: 0;
 transform: translateY(60px) translateX(-120px);
}
 100% {
 opacity: 1;
 transform: translateY(0) translateX(0);
}
}
body.index .fade {
 animation: fade .5s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
 animation-delay: .1s;
}
 @keyframes fade {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
body.index .events {
 animation-delay: .3s !important;
}
 @keyframes ani_border {
 0% {
 width: 0%;
}
 50% {
 width: 100%;
 left: 0%;
}
 100% {
 width: 0%;
 left: 100%;
}
}
h2.subT {
	font-size: 23px;
	font-size: 2.3rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.3em;
	font-weight: 200;
	margin: 81px auto 72px;
	text-align: center;
	color:#666;
}
@media only screen and (max-width: 767px) {
 h2.subT {
 margin: 63px auto 54px;
}
}
.recruitList h2.subT {
	color:#fff;
}
.spMov {
	background: #f3f3f3;
	padding: 0 0 54px;
	display: none;
}
@media screen and (max-width: 767px) {
 .spMov {
 display: flex;
 flex-direction: column;
 text-align: center;
}
}
.spMov .movie {
	position: relative;
	height: 0;
	overflow: hidden;
	background: #000;
	width: 320px;
	height: 230px;
	margin: 0 auto;
}
.spMov .movie iframe {
	width: 320px;
	height: 254px;
}
body.index main section.mvtop .bgMovie {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	left: 0;
	top: 0;
	overflow: hidden;
}
body.index main section.mvtop .bgMovie:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.25);
}
body.index main section.mvtop .bgMovie video {
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
}
 body.index main section.mvtop .bgMovie img{
 background-image: url("../images/key.jpg");no-repeat center center;
  background-size: cover;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px){
 body.index main section.mvtop .bgMovie img{
 background-image: url("../images/key3.jpg");no-repeat center center;
  background-size: cover;
  padding: 0;
  position: relative;
}
}
body.index main section.mvtop .bgMovie img {
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
}
.recruitBnr ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.recruitBnr ul li {
	width: 30%;
	margin-top: 110px;
}
@media only screen and (max-width: 767px) {
 .recruitBnr ul li {
 width: 100%;
 margin-top: 60px;
}
 .recruitBnr ul li:first-child {
 margin-top: 0;
}
}
.recruitBnr ul li:nth-child(1), .recruitBnr ul li:nth-child(2), .recruitBnr ul li:nth-child(3) {
 margin-top: 0;
}
@media only screen and (max-width: 767px) {
 .recruitBnr ul li:nth-child(1), .recruitBnr ul li:nth-child(2), .recruitBnr ul li:nth-child(3) {
 margin-top: 60px;
}
}
 @media only screen and (max-width: 767px) {
 .recruitBnr ul li:nth-child(1) {
 margin-top: 0px;
}
}
.recruitBnr ul li a {
	display: block;
}
.recruitBnr ul li a:hover .imgBox img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.recruitBnr ul li a .imgBox {
	overflow: hidden;
	position: relative;
}
.recruitBnr ul li a .imgBox img {
	width: 100%;
 transition: all .6s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
body.index main section.recruitList {
	padding: 9px 0 0;
	padding-bottom: 0px;
	position:relative;
	background: #009F41;
}
@media only screen and (max-width: 767px) {
body.index main section.recruitList {
padding-bottom:0px;
}
}
body.index main section.enviroment {
	padding-bottom: 100px;
	position:relative;
}
 @media only screen and (max-width: 767px) {
 body.index main section.enviroment {
padding-bottom:90px;
}
}
.workEnviromentt h2.subT {
	color:#333;
}
.workEnviroment ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.workEnviroment ul li {
	width: 30%;
	margin-top: 60px;
}
 @media only screen and (max-width: 767px) {
 .workEnviroment ul li {
 width: 100%;
 margin-top: 60px;
}
.workEnviroment ul li:first-child {
 margin-top: 0;
}
}
 .workEnviroment ul li:nth-child(1), .workEnviroment ul li:nth-child(2), .workEnviroment ul li:nth-child(3) {
 margin-top: 0;
}
 @media only screen and (max-width: 767px) {
 .workEnviroment ul li:nth-child(1), .workEnviroment ul li:nth-child(2), .workEnviroment ul li:nth-child(3) {
 margin-top: 60px;
}
}
 @media only screen and (max-width: 767px) {
 .workEnviroment ul li:nth-child(1) {
 margin-top: 0px;
}
}
.workEnviroment ul li {
	display: block;
}
.workEnviroment ul li .fI {
	overflow: hidden;
	position: relative;
}
.workEnviroment ul li .fI img {
	width: 100%;
 transition: all .6s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.workEnviroment ul li .fI:before {
	content: "";
	width: 210px;
	height: 34px;
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	z-index:1;
}
.workEnviroment ul li .text {
position: absolute;
	background: #fff;
	display: block;
	padding-top: 0px;
margin-top: -15px;
	z-index:2;
}
.workEnviroment ul li .text .textInner .name {
	margin-top: 0px;
	letter-spacing: 0px;
	font-size: 18px;
	color: #333;
}
.workEnviroment ul li .text .textInner .enname {
	margin-top: 9px;
	font-size: 13px;
	letter-spacing: 0.9px;
	color: #999;
	font-family: "Oswald", sans-serif !important;
}
.requirements ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.requirements ul li {
	width: 30%;
	margin-top: 110px;
}
 @media only screen and (max-width: 767px) {
 .requirements ul li {
 width: 100%;
 margin-top: 60px;
}
 .requirements ul li:first-child {
 margin-top: 0;
}
}
 .requirements ul li:nth-child(1), .requirements ul li:nth-child(2), .requirements ul li:nth-child(3) {
 margin-top: 0;
}
 @media only screen and (max-width: 767px) {
 .requirements ul li:nth-child(1), .requirements ul li:nth-child(2), .requirements ul li:nth-child(3) {
 margin-top: 60px;
}
}
 @media only screen and (max-width: 767px) {
 .requirements ul li:nth-child(1) {
 margin-top: 0px;
}
}
.requirements ul li a {
	display: block;
}
.requirements ul li a:hover .img-box img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.requirements ul li a .img-box {
	overflow: hidden;
	position: relative;
}
.requirements ul li a .img-box img {
	width: 100%;
 transition: all .6s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.requirements ul li a .img-box:before {
	content: "";
	width: 197px;
	height: 34px;
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	z-index: 1;
}
.requirements ul li .text a {
	background: #fff;
	display: block;
	padding-top: 2px;
}
.requirements ul li .text a .text-inner .eig {
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.56px;
	color: #009F41;
	line-height: 1.1;
}
.requirements ul li .text a .text-inner .name {
	margin-top: 20px;
	letter-spacing: 2.37px;
	font-size: 21px;
	font-size: 2.1rem;
	color: #000000;
}
.requirements ul li .text a .text-inner .enname {
	margin-top: 12px;
	font-size: 12px;
	letter-spacing: 0.52px;
	color: #868686;
}


.tabList {
	font-size: 15px;
}
.tabList li {
	box-sizing: border-box;
	border: 3px solid #fff;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-right: 1.5%;
	padding-left: 13px;
	line-height: 45px;
	width: 100%;
 transition: all .1s ease-out;
	position: relative;
}
 .tabList li:last-child() {
margin-right: 0;
}
.tabList li.active, .tabList li:hover {
	border: 3px solid #adcce8;
	color: #adcce8;
}
.tabList li:after {
	content: "";
	display: block;
	right: 15px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: solid 1px #ddd;
	border-right: solid 1px #ddd;
	position: absolute;
	transform: rotate(45deg);
}
.tabList li.active:after, .tabList li:hover:after {
	border-bottom: solid 1px #adcce8;
	border-right: solid 1px #adcce8;
}
.tabList-sec {
	display: none;
	padding-top: 60px;
}
.tabList-sec.active {
	display: block;
}
.tab-sec {
	display: none;
	padding-top: 30px;
}
.tab-sec.active {
	display: block;
}
.movie iframe {
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.4);
}
.jobBnr ul.tab {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 45px;
	padding-bottom:45px;
}
.jobBnr ul.tab li {
	width: 48%;
	margin-top: 110px;
}
.job_list {
	margin-top:65px;
	padding:0 30px 130px;
	letter-spacing:0;
	font-size:0;
}
.job_list li {
	width:45%;
	padding:10px 28px 33px;
	display:inline-block;
	box-shadow:rgba(148, 174, 183, 0.3) 0 4px 20px;
	border:1px #5BABFF solid;
	border-radius:5px;
	vertical-align:top;
}
.jobBnr ul.tab li {
	box-sizing: border-box;
	border: 3px solid #fff;
	background-color:#fff;
	color: #009F41;
	cursor: pointer;
	display: inline-block;
	padding-left: 13px;
	line-height: 57px;
	width: 48%;
	transition: all .1s ease-out;
	position: relative;
	font-size:x-large;
	font-weight:bolder;
	text-align:center;
}
.jobBnr ul.tab li:last-child() {
margin-right: 0;
color: #009F41;
}
.jobBnr ul.tab li:hover {
	opacity: 0.85;
	border: 3px solid #FFF;
	color:#FFF;
	background-color:#009F41;
}
.jobBnr ul.tab li.active {
	border: 3px solid #FFF;
	background-color:#006311;
	color: #fff;
}
.jobBnr ul.tab li:after {
	content: "";
	display: block;
	right: 15px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: solid 3px #009F41;
	border-right: solid 3px #009F41;
	position: absolute;
	transform: rotate(45deg);
}
.jobBnr ul.tab li.active:after, .jobBnr ul.tab li:hover:after {
	border-bottom: solid 3px #FFF;
	border-right: solid 3px #FFF;
}
.jobBnr ul.tab li.gO{
	color:#8A8A8A;
	cursor:default;
	background-color:#ccc;
	border: 3px solid #ccc;
	pointer-events: none;
}
.jobBnr ul.tab li.gO:after {
	content: "";
	display: block;
	right: 15px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: solid 3px #ccc;
	border-right: solid 3px #ccc;
	position: absolute;
	transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
.jobBnr ul.tab li {
 width: 100%;
 margin-top: 60px;
}
.jobBnr ul.tab li:first-child {
 margin-top: 0;
}
}
.jobBnr ul.tab li:nth-child(1), .jobBnr ul.tab li:nth-child(2), .jobBnr ul.tab li:nth-child(3) {
 margin-top: 0;
}
 @media only screen and (max-width: 767px) {
 .jobBnr ul.tab li:nth-child(1), .jobBnr ul.tab li:nth-child(2), .jobBnr ul.tab li:nth-child(3) {
 margin-top: 45px;
}
}
 @media only screen and (max-width: 767px) {
 .jobBnr ul.tab li:nth-child(1) {
 margin-top: 0px;
}
}
.recruitmentTitle {
	letter-spacing:2px;
	font-weight:600;
	font-size:20px;
	color:#009F41;
}
.recruitmentTable {
	margin-top:50px;
	font-size:16px;
}
.recruitmentTable th {
	width:170px;
	border-bottom:1px #E7E6E6 solid;
	vertical-align:middle;
	text-align:center;
	line-height:1.5;
	font-weight:600;
	color:#009F41;
}
.recruitmentTable td {
	padding-left:40px;
	line-height:1.5;
	color:#333;
}
.recruitmentTable div {
	padding:25px 0;
	border-bottom:1px #E7E6E6 solid;
}
.recruitmentTableBg {
	background:#F7F7F7;
	margin-top:18px;
	padding:15px;
	border-radius:5px;
	font-size:14px;
}
@media only screen and (max-width: 767px) {
.recruitmentTable th {
width:100%;
padding-bottom:10px;
display:block;
text-align:left;
}
 .recruitmentTable tr:nth-child(n+2) th {
margin-top:50px;
}
 .recruitmentTable td {
padding-left:0;
display:block;
}
 .recruitmentTable div {
padding-bottom:0;
border-bottom:none;
}
}
.beneTitle {
	letter-spacing:2px;
	font-weight:600;
	font-size:20px;
	color:#009F41;
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
}
.beneTable {
	margin-top:50px;
	font-size:16px;
}
.beneTable th {
	width:170px;
	border-bottom:1px #E7E6E6 solid;
	vertical-align:middle;
	text-align:center;
	line-height:1.5;
	font-weight:600;
	color:#009F41;
}
.beneTable td {
	padding-left:40px;
	line-height:1.5;
	color:#333;
}
.beneTable div {
	padding:25px 0;
	border-bottom:1px #E7E6E6 solid;
}
.beneTableBg {
	background:#F7F7F7;
	margin-top:18px;
	padding:15px;
	border-radius:5px;
	font-size:14px;
}
@media only screen and (max-width: 767px) {
.beneTable th {
width:100%;
padding-bottom:10px;
display:block;
text-align:left;
}
 .beneTable tr:nth-child(n+2) th {
margin-top:50px;
}
 .beneTable td {
padding-left:0;
display:block;
}
 .beneTable div {
padding-bottom:0;
border-bottom:none;
}
}
.lower-area-in {
	margin-left: 0;
	width: 96%;
}
.lower-area-in h3 {
	border-bottom: 1px solid #333;
	color: #333;
	font-size: 18px;
	margin: 45px 0 30px;
	padding-bottom: 14px;
}
.lower-area-in h3 span {
	font-size: 13px;
	float: right;
}
.sectionMovieInner h2.subT {
	color:#666;
}
.sectionMovie {
	padding: 0 30px 0px;
}
 @media only screen and (max-width: 767px) {
 .section-movie {
 padding: 0 10px 10px;
}
}
.sectionMovieInner {
	background-color: #D1DFFF;
	padding: 6px 0 100px;
}
 @media only screen and (max-width: 767px) {
 .sectionMovieInner {
 padding: 9px 0 40px;
}
}
.sectionMovieArea {
	max-width: 1000px;
	height: 500px;
	width: 100%;
	margin: 0 auto;
}
 @media only screen and (max-width: 767px) {
 .sectionMovieArea {
 max-width: 90%;
 height: 180px;
}
}
.sectionMovieArea iframe {
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.4);
}
.sectionMovieArea video {
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.4);
}
.beneBnr ul.tab {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 45px;
	padding-bottom:0;
}
.beneBnr ul.tab li {
	width: 48%;
	margin-top: 110px;
}
.beneBnr ul.tab li {
	box-sizing: border-box;
	border: 3px solid #009F41;
	background-color:#fff;
	color: #009F41;
	cursor: pointer;
	display: inline-block;
	padding-left: 13px;
	line-height: 57px;
	width: 48%;
 transition: all .1s ease-out;
	position: relative;
	font-size:x-large;
	font-weight:bolder;
	text-align:center;
}
.beneBnr ul.tab li:last-child() {
margin-right: 0;
color: #009F41;
}
.beneBnr ul.tab li:hover {
	opacity: 0.85;
	border: 3px solid #009F41;
	color:#FFF;
	background-color:#009F41;
}
.beneBnr ul.tab li.active {
	border: 3px solid #009F41;
	background-color:#009F41;
	color: #fff;
}
.beneBnr ul.tab li:after {
	content: "";
	display: block;
	right: 15px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: solid 3px #009F41;
	border-right: solid 3px #009F41;
	position: absolute;
	transform: rotate(45deg);
}
.beneBnr ul.tab li:hover:after {
	border-bottom: solid 3px #FFF;
	border-right: solid 3px #FFF;
}
.beneBnr ul.tab li.active:after {
	border-bottom: solid 3px #fff;
	border-right: solid 3px #fff;
}
.beneBnr ul.tab li.gO{
	color:#8A8A8A;
	cursor:default;
	background-color:#ccc;
	border: 3px solid #ccc;
	pointer-events: none;
}
.beneBnr ul.tab li.gO:after {
	content: "";
	display: block;
	right: 15px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: solid 3px #ccc;
	border-right: solid 3px #ccc;
	position: absolute;
	transform: rotate(45deg);
}
 @media only screen and (max-width: 767px) {
 .beneBnr ul.tab li {
 width: 100%;
 margin-top: 60px;
}
 .beneBnr ul.tab li:first-child {
 margin-top: 0;
}
}
 .beneBnr ul.tab li:nth-child(1), .beneBnr ul.tab li:nth-child(2), .beneBnr ul.tab li:nth-child(3) {
 margin-top: 0;
}
 @media only screen and (max-width: 767px) {
 .beneBnr ul.tab li:nth-child(1), .beneBnr ul.tab li:nth-child(2), .beneBnr ul.tab li:nth-child(3) {
 margin-top: 45px;
}
}
 @media only screen and (max-width: 767px) {
 .beneBnr ul.tab li:nth-child(1) {
 margin-top: 0px;
}
}
#page_top{
  width: 36px;
  height: 36px;
  background:url(../images/anchor.svg) 50% no-repeat;
  background-size: cover;
  position: fixed;
  right: 13px;
  bottom: 13px;
  opacity: 1;
}
#page_top a{
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  text-decoration: none;
}
.mvtop h2 {
	font-size: 66px;
	font-weight: bold;
	line-height: 1.3;
	text-shadow: 3px 3px 6px #666;
}
.mvTxt{
	position: relative;
	text-align: center;
	width:100%;
	z-index: 3;
}
.mvTxt h2 {
	color: #fff;
	margin: 16vw 0 0 21%;
	text-align: left;
	letter-spacing: 0.06em;
	opacity:0.8;
	}
@media screen and (max-width: 1120px) {
.mvtop h2 {
font-size: 51px;
}
.mvTxt {
margin-left: 50px;
}
.mvTxt h2 {
color: #fff;
display: inline-block;
margin: 180px 9% 0 0;
text-align: left;
}
}
@media screen and (max-width: 767px) {
.mvTxt h2 {
font-size: 42px;
display: inline-block;
margin: 33% 0 0;
text-align: left;
letter-spacing: 0.15em;
}
.mvTxt {
margin-left: 0;
padding-bottom: 30%;
text-align: center;
}
}
@media screen and (max-width: 375px) {
.mvTxt h2 {
font-size: 27px;
display: inline-block;
margin: 33% 0 0;
text-align: left;
letter-spacing: 0em;
}
.mvTxt {
margin-left: 0;
padding-bottom: 30%;
text-align: center;
}
}
.sI1{animation: SlideIn 1.6s;}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateX(72px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



.enviroment ul li .eTxt {
	font-size: 0;
	margin-top: 12px;
}
.enviroment ul li .eTxtEtxt {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	color: #7DA6FF;
	padding: 15px 0;
	border-bottom: 1px solid #7DA6FF;
	height: 63px;
	margin-left: 9px;
	min-width: 110px;
}
.enviroment ul li .eTxtEtxt:first-child {
	margin-left: 0;
}
.enviroment ul li .eTxtEtxt span {
	display: inline-block;
	vertical-align: middle;
}
.enviroment ul li .eTxtEtxt span {
	font-size: 14px;
	font-size: 1.4rem;
}
.flow {
	margin-bottom: 100px;
}
.flow-ano {
	margin-top: 30px;
	text-align: left;
}
.flow {
	font-size:120%;
	font-weight:600;
	color:#009F41;
	font-weight: bold;
	line-height: 1.5;
	margin: 60px auto 0;
	text-align: center;
	width: 100%;
}
.flow li {
	border: 1px solid #d8d8d8;
	padding: 20px 0;
}
.flow li.flow-arrow {
	border: none;
	margin: 0 auto;
	padding: 10px 0;
	width: 45px;
}
.flow li.flow-arrow img {
	vertical-align: baseline;
}
.flow li.last {
	background: #009F41;
	border: none;
	color: #fff;
}
.flow span {
	font-weight: normal;
	color:#333;
	font-size:81%;
}
.flow li.last span {
	font-weight: normal;
	color:#fff;
}
.flow span.ano {
}
 @media screen and (max-width: 1120px) {
 .flow {
 margin: 40px auto 0;
 width: 90%;
}
 .flow li {
padding: 15px 0;
}
 .tab-sec p.flow-ano {
 margin: 30px auto 0;
 width: 90%;
}
}
 @media screen and (max-width: 736px) {
 .flow {
 margin: 30px auto 0;
}
 .flow li {
padding: 10px 0;
}
}
body.index main section.intro {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
body.index main section.intro {
	background-position: center;
	background-image: url("../images/bG1.jpg");
	background-size: cover;
	height: 552px;
/* IE11  */ }
 @media only screen and (max-width: 767px) {
 body.index main section.intro {
 background-image: linear-gradient(271deg, #ffffff, #D1EEDD 73%, #EAF7F0);
 height: auto;
 padding: 120px 0 120px;
}
}
body.index main section.intro .inner0 h2 {
	margin-top:0;
	margin-bottom:50px;
	text-align: left;
}
 @media only screen and (max-width: 767px) {
 body.index main section.intro .inner0 h2 {
 text-align: center;
}
}
body.index main section.intro .inner0 p {
	font-size: 18px;
	color:#333;
	font-size: 1.8rem;
	line-height: 2.4;
	text-align: left;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
 @media only screen and (max-width: 767px) {
 body.index main section.intro .inner0 p {
 text-align: center;
 font-size: 17px;
 font-size: 1.7rem;
}
}
body.index main section.intro .inner0 a {
	margin-top: 50px;
}
 body.index main section.intro _:lang(x)::-ms-backdrop,  body.index main section.intro .inner0 {
 margin: 0;
}