@charset "utf-8";


.inner {
	max-width: 1366px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

body {
	position: relative;
	padding: 60px;
}
@media screen and (max-width: 900px) {
body {
	padding: 0;
}
}/*@media*/

body::before,
body::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: 88888888;
  width: 60px;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 900px) {
body::before,
body::after {
  content: none;
}
}/*@media*/

body::before {left: 0;}
body::after {right: 0;}

header,footer {
	position: fixed;
	left: 0;
	width: 100%;
	height: 60px;
	padding: 0 60px;
	background: #fff;
}
@media screen and (min-width: 901px) {
header,footer {
	z-index: 999999999;
	/*animation*/
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: .5s;
	animation-timing-function: ease-out;
	animation-delay: 2.5s;
	animation-direction: alternate;
	animation-fill-mode:forwards;
}
}/*@media*/
@media screen and (max-width: 900px) {
header,footer {
	position: relative;
	height: auto;
	padding: 4px 12px;
}
header {
	z-index: 22;
}
footer {
	z-index: 1;
}
}/*@media*/

header {
	top: 0;
}

header img {
	display: block;
	margin-top: 12px;
}

@media screen and (max-width: 900px) {
header a {
	display: block;
	margin: auto;
}

header img {
	max-width: 240px;
	margin: auto;
}
}/*@media*/
@media screen and (max-width: 374px) {
header img {
	max-width: 180px;
}
}/*@media*/

footer {
	bottom: 0;
	z-index: 999999998;
}

.footLogo {
	text-align: right;
	padding-top: 16px;
}

.copyright {
	color: #ACACAC;
	font-size: 10rem;
	width: 100%;
}
@media screen and (min-width: 901px) {
.copyright {
	position: fixed;
	top: 50%;
	left: 48%;
	z-index: 0;
	transform: rotate(90deg);
	text-align: center;
}
}/*@media*/
@media screen and (max-width: 900px) {
.copyright {
	text-align: right;
}
}/*@media*/




/* hamburger menu ---------------------------------*/
label.hamBtn {
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
label.hamBtn::before {
  position: fixed;
  z-index: 333;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
label.hamBtn .burger {
  position: fixed;
  top: 50%;
  left: 14px;
  z-index: 4444;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 20px;
  margin: 0;
  padding: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);

	/*animation*/
  opacity: 0;
  animation: fadeIn .15s linear 4s alternate forwards;
}
@media screen and (max-width: 900px) {
label.hamBtn .burger {
	top: 12px;
	left: 12px;
	transform: inherit;
	filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}}/*@media*/
@media screen and (max-width: 374px) {
label.hamBtn .burger {
	top: 8px;
	left: 8px;
}}/*@media*/

label.hamBtn .burger::before,
label.hamBtn .burger .bar, label.hamBtn .burger::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 12%;
  background: #666;
  content: "";
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 900px) {
label.hamBtn .burger::before,
label.hamBtn .burger .bar, label.hamBtn .burger::after {
  background: #fff;
}}/*@media*/

label.hamBtn .burger .bar {
  top: 44%;
}
label.hamBtn .burger::before {
  top: 0;
  transform-origin: top left;
}
label.hamBtn .burger::after {
  bottom: 0;
  transform-origin: bottom left;
}

input:focus + label.hamBtn .burger,
label.hamBtn:hover .burger {
  opacity: 0.75;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 55555;
  max-width: 1000px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  /* material acceleration */
  transform: translateX(-100%);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/*Edge*/
@supports (-ms-ime-align: auto) {
	.hamBtn {
		display: none;
	}
}

nav::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 25em;
  background: linear-gradient(135deg, #f5c655 0%,#f5c655 32%,#f5c655 60%,#f5c655 100%);
  content: "";
  transform: skewX(15deg) translateX(-100%);
  transform-origin: bottom left;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 40em) {
  nav::before {
    width: 40em;
  }
}
nav a {
  margin: 0.5em 0;
  padding: 0 2em;
  font-size: 22rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transform: translateX(-100%);
  transition: color 0.15s, transform 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 374px) {
nav a {
  font-size: 18rem;
}
}/*@media*/

nav a:nth-child(1) {
  transition-delay: 0s, 100ms;
}
nav a:nth-child(2) {
  transition-delay: 0s, 150ms;
}
nav a:nth-child(3) {
  transition-delay: 0s, 200ms;
}
nav a:nth-child(4) {
  transition-delay: 0s, 250ms;
}
nav a:nth-child(5) {
  transition-delay: 0s, 300ms;
}
nav a:nth-child(6) {
  transition-delay: 0s, 350ms;
}
nav a:hover, nav a:focus {
  color: #fff;
}

nav a span {
	position: relative;
	font-size: 14rem;
	display: block;
}

nav a span:after {
	content: "";
	display: block;
	position: absolute;
	top: -4px;
	margin: auto;
	width: 200%;
	height: 1px;
	background: #222;
}

nav a span:after {
  right: -16px;
}

[id="navcheck"]:checked + label.hamBtn::before {
  opacity: 1;
  pointer-events: auto;
}
[id="navcheck"]:checked + label.hamBtn .burger::before, [id="navcheck"]:checked + label.hamBtn .burger::after {
  width: 90%;
  background: #fff;
}
[id="navcheck"]:checked + label.hamBtn .burger::before {
  transform: rotate(45deg) translateY(-50%);
}
[id="navcheck"]:checked + label.hamBtn .burger::after {
  transform: rotate(-45deg) translateY(50%);
}
[id="navcheck"]:checked + label.hamBtn .burger .bar {
  transform: scale(0.01);
}
[id="navcheck"]:checked ~ nav {
  transform: translateX(0);
}
[id="navcheck"]:checked ~ nav::before {
  transform: skewX(15deg) translateX(0);
}
[id="navcheck"]:checked ~ nav a {
  transform: translateX(0);
  transition: .25s;
}
[id="navcheck"]:checked ~ main {
  /*transform: translateX(3em);*/
  transform-origin: left center;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  /* quite laggy :S */
}

[id="navcheck"]:checked ~ nav a:hover {
  opacity: 0.6;
}

/* helper */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}




/* keyVisual
===========================*/
.keyVisual {
	position: fixed;
	top: 60px;
	z-index: 0;
	width: calc(100% - 120px);
	height: calc(100vh - 120px);
	/*background: url('../img/movie.mp4') center center no-repeat;*/
	/*background-size: cover;*/
}
@media screen and (max-width: 900px) {
.keyVisual {
	position: relative;
	top: 0;
	z-index: 1;
	width: 100%;
	height: calc(100vh - 40px);
	box-shadow: 0 8px 12px rgba(0,0,0,0.75);
	background-size: cover;
 background: #000;
}
.keyVisual video {
 opacity: 0.8;
}
}/*@media*/

.keyVisual video {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  text-align: center;
  min-width: 100%;
  min-height: 100%;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 769px) {
.keyVisual video {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
}/*@media*/
@media screen and (max-width: 768px) {
.keyVisual video {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 100%;
}
}/*@media*/
@media screen and (max-width: 900px) {
.keyVisual img {
  width: 100%;
}
}/*@media*/

.keyVisual h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 333;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);

	width: 100%;
	text-align: center;
	font-weight: normal;
}

@keyframes typing {
	0% {
		width: 0;
	}
}

.keyVisual h1 span:nth-of-type(1) {
	display: block;
	/*color: #fb6103;*/
	font-family: "游ゴシック", YuGothic, Yu Gothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 500;
	/*font-style: italic;*/
	font-size: 80rem;
	line-height: 1.3;
	width: 100%;
	margin: 0 auto;
	transition: 1.5s ease-in;
}
@media screen and (min-width: 901px) {
.keyVisual h1 span:nth-of-type(1) {
	white-space: nowrap;
	overflow: hidden;
	-webkit-animation: typing 1.8s steps(23, end);/*文字数*/
	animation-fill-mode:forwards;
}
}/*@media*/
@media screen and (max-width: 1366px) {
.keyVisual h1 span:nth-of-type(1) {
	font-size: 64rem;
}
}/*@media*/
@media screen and (max-width: 1200px) {
.keyVisual h1 span:nth-of-type(1) {
	font-size: 64rem;
}
}/*@media*/
@media screen and (max-width: 900px) {
.keyVisual h1 span:nth-of-type(1) {
	font-size: 48rem;
}
}/*@media*/
@media screen and (max-width: 600px) {
.keyVisual h1 span:nth-of-type(1) {
	font-size: 28rem;
}
}/*@media*/

.keyVisual h1 span:nth-of-type(2) {
	display: block;
	color: #fff;
	font-family: inherit;
	font-size: 32rem;
	margin-top: 4vh;
	transition: 1.5s ease-in;
}
@media screen and (max-width: 900px) {
.keyVisual h1 span:nth-of-type(2) {
	color: #444;
	font-size: 20rem;
}
}/*@media*/

@keyframes border {
	100% {
		border-width: 60px;
	}
}/*keyframes*/

.keyVisual::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 22;
  margin: auto;
  width: 60px;
  height: 60px;
	background: url(../img/scroll.svg) center center no-repeat;

	/*animation*/
	opacity: 0;
	animation-name: underArrow;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-delay: 3s;
	animation-direction: alternate;
	animation-fill-mode:forwards;
	animation-iteration-count: infinite;
}
@media screen and (min-width: 901px) {
.keyVisual::before {
  bottom: 80px;
}
@keyframes underArrow {
	0% {
		bottom: 120px;
		opacity: 0;
	}
	30% {
		bottom: 80px;
		opacity: 1;
	}
	100% {
		bottom: 80px;
		opacity: 1;
	}
}/*keyframes*/
}/*@media*/
@media screen and (max-width: 900px) {
.keyVisual::before {
  position: absolute;
  top: 80%;
}
@keyframes underArrow {
	0% {
		top: 70%;
		opacity: 0;
	}
	30% {
		top: 80%;
		opacity: 1;
	}
	100% {
		top: 80%;
		opacity: 1;
	}
}/*keyframes*/
}/*@media*/

@media screen and (min-width: 901px) {
.keyVisual::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.20);
	/*animation*/
  border: 800px solid #fff;
	animation-name: border;
	animation-duration: .25s;
	animation-timing-function: ease-in-out;
	animation-delay: 2.5s;
	animation-direction: alternate;
	animation-fill-mode:forwards;
}
}/*@media*/

@media screen and (max-width: 900px) {
.keyVisual::after {
	content: "";
	position: absolute;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent #c78928;
	border-width: 12vh 0 0 100vw;
	mix-blend-mode: overlay;
}
}/*@media*/

@media screen and (min-width: 901px) {
body .keyVisual.active h1 {
	mix-blend-mode: overlay;
}
}/*@media*/

body .keyVisual.active h1 span:nth-of-type(1) {
	color: #fff;
	display: inline-block;
 padding: 8rem 40rem;
 background-color: rgba(0,0,0,0.4);
}
@media screen and (min-width: 901px) {
/*body .keyVisual.active h1 span:nth-of-type(1) {
	background: rgba(0,0,0,0.5);
}*/
}/*@media*/

@media screen and (max-width: 900px) {
body .keyVisual.active h1 span:nth-of-type(2) {
	color: #fff;
}
}/*@media*/

/*iPad*/
@media screen and (min-width: 601px) and (max-width: 900px) {
body .keyVisual h1 span:nth-of-type(1),
body .keyVisual h1 span:nth-of-type(2) {
	color: #fff;
}
}/*@media*/


/* main
===========================*/
main {
	position: relative;
	width: 100%;
	background: #fff;
}
@media screen and (min-width: 901px) {
main {
	margin-top: 100vh;
	/*animation*/
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: .5s;
	animation-timing-function: ease-out;
	animation-delay: 2.5s;
	animation-direction: alternate;
	animation-fill-mode:forwards;
}
}/*@media*/

main section {
	position: relative;
	z-index: 0;
	width: 100%;
}

main section:nth-of-type(1) {
	background: url(../img/about_bg01.jpg) left center no-repeat;
}
main section:nth-of-type(2) {
	background: url(../img/service_bg01.jpg) left center no-repeat;
}
main section:nth-of-type(3) {
	background: url(../img/voice_bg01.jpg) left center no-repeat;
}
main section:nth-of-type(4) {
	background: url(../img/access_bg01.jpg) left center no-repeat;
}
main section:nth-of-type(5) {
	background: url(../img/recruit_bg01.jpg) left center no-repeat;
}
main section:nth-of-type(6) {
	background: url(../img/contact_bg01.jpg) left center no-repeat;
}

@media screen and (min-width: 901px) {
main section {
	background-size: contain!important;
	background-attachment: fixed!important;
}
}/*@media*/

/*Edge*/
@supports (-ms-ime-align: auto) {
	main section {
		background-size: 50%!important;
	}
}

main section::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	z-index: -1;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent #76a3b7 transparent;
	filter: drop-shadow(0 -4px 24px rgba(0,0,0,0.25));
	opacity: 0.85;
}

/*main section:nth-last-of-type(1)::before {
	border-color: transparent transparent #25bdbd transparent;
}*/

main section:nth-of-type(odd)::before {
	border-width: 0 calc(100vw - 120px) 200px 0;
}
@media screen and (max-width: 900px) {
main section:nth-of-type(odd)::before {
	border-width: 0 100vw 12vh 0;
}
}/*@media*/

main section:nth-of-type(even)::before {
	border-width: 0 0 200px calc(100vw - 120px);
}
@media screen and (max-width: 900px) {
main section:nth-of-type(even)::before {
	border-width: 0 0 12vh 100vw;
}
}/*@media*/

main section:nth-of-type(1)::before {
	content: none;
}

@media screen and (min-width: 901px) {
main section::after {
	display: block;
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 22;
	width: 0;
	height: 0;
	background: linear-gradient(to right, rgb(245, 198, 85) 0%,rgb(245, 198, 85) 100%);
	opacity: 0;
	transform: rotate(-8deg);
	transition: 0.25s;
}

main section:nth-last-of-type(1)::after {
	background: #76a3b7;
}

main section.posiTop::after {
	opacity: 0.85;
	width: 200px;
	height: 100vh;
}
}/*@media*/

@media screen and (max-width: 900px) {
/*iOS用背景パララックス対策*/
main {
	background: transparent;
	z-index: 1;
}

main section {
	background: none!important;
}

body::after {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-transform: translate3d(0, 0, -1px);
	transform: translate3d(0, 0, -1px);
	width: 100%;
	height: 100vh;
	background: url(../img/about_bg01.jpg) top/cover no-repeat;
	-webkit-background-size: cover;
}
body.sec2::after {
	background: url(../img/service_bg01.jpg) top/cover no-repeat;
}
body.sec3::after {
	background: url(../img/voice_bg01_sp.jpg) top/cover no-repeat;
}
body.sec4::after {
	background: url(../img/access_bg01.jpg) top/cover no-repeat;
}
body.sec5::after {
	background: url(../img/recruit_bg01.jpg) top/cover no-repeat;
}
body.sec6::after {
	background: url(../img/contact_bg01.jpg) top/cover no-repeat;
}
}/*@media*/

main section h2 {
	font-family: 'Arvo', serif;
	font-weight: normal;
	line-height: 1;
}

@media screen and (min-width: 901px) {
main section h2 {
	position: fixed;
	left: 40px;
	bottom: calc(100% + 60px);
	z-index: 333;

	color: rgb(255 255 255 / 90%);;
	font-size: 140rem;
	text-align: right;
	width: 100vh;
	opacity: 0;
	transform: rotate(90deg);
	transform-origin: 0 100%;
	transition: 0.25s;
}

main section.posiTop h2 {
	opacity: 1;
}
}/*@media*/

@media screen and (min-width: 901px) and (max-height: 701px) {
main section h2 {
	font-size: 102rem;
	letter-spacing: -0.05em;
}
}/*@media*/
@media screen and (min-width: 901px) and (max-height: 901px) {
main section h2 {
	font-size: 120rem;
	letter-spacing: -0.05em;
}
}/*@media*/

@media screen and (max-width: 900px) {
main section h2 {
	color: #fff;
	font-size: 42rem;
	text-align: center;
	width: 100%;
	padding: 8vh 16px;
}
}/*@media*/

.secInner {
	background: #fff;
}
@media screen and (min-width: 901px) {
.secInner {
	padding: 80px 40px 40vh 40px;
	margin-left: 50%;
	min-height: 101vh;
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(245,245,245,1) 50%,rgba(245,245,245,1) 100%);
}
}/*@media*/
@media screen and (max-width: 900px) {
.secInner {
	padding: 12px 36px 16vh 24px;
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(245,245,245,1) 60%,rgba(245,245,245,1) 100%);
}
}/*@media*/
@media screen and (max-width: 600px) {
.secInner {
	padding: 12px 28px 16vh 24px;
}
}/*@media*/

section:nth-last-of-type(1) .secInner {
	padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
/*iPad*/
section:nth-last-of-type(1) .secInner {
	padding-bottom: 25vh;
}
}/*@media*/

.secInner h4 {
	font-size: 20rem;
}
@media screen and (max-width: 900px) {
.secInner h4 {
	font-size: 18rem;
}
}/*@media*/

.secInner > h4,
.secInner .cntWrap > h4 {
	margin-top: 2vh;
}

.secInner p {
	color: #666;
	margin-top: 2vh;
}

.secInner img {
	display: inline-block;
	margin-top: 2vh;
}

.secInner > img,
.secInner .cntWrap > img {
	width: 100%;
}

.secInner .cntWrap {
	margin: 8vh 0 0;
}

.secInner .cntWrap:nth-of-type(1) {
	margin-top: 0;
}




.pager {
	position: fixed;
	top: 50%;
	right: 64px;
	z-index: 999999999;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 18rem;
	display:-ms-flexbox;
	display: -webkit-flex;
	display:-webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 32px;
	text-align: center;
}
/*Edge*/
@supports (-ms-ime-align: auto) {
	.pager {
		display: none;
	}
}
@media screen and (max-width: 900px) {
.pager {
	right: 8px;
	font-size: 14rem;
	width: 20px;
}

}/*@media*/


.pager a {
	color: #222;
	display: inline-block;
	padding: 8px;
	line-height: 1;
	opacity: 0.25;
}

.pager a.active {
	color: #76a3b7;
	opacity: 1;
}

.secInner > img, .secInner .recruitWrap > img {
 width: 50%;
 margin-top: 4vh;
}

@media screen and (min-width: 900px) {
#sec6 {
 height: 852px;
}
}
@media screen and (max-width: 900px) {
#sec6 .secInner {
 padding-bottom: 65vh!important;
}
}

.name img {
 margin-top: 2px;
}

