@charset "UTF-8";
/*
Author: GREIGE:YUKIE MIYAUCHI
*/

/*font*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap');
@font-face {
    font-family: 'din_alternatebold';
    src: url('fonts/din_alternate_bold.eot');
    src: url('fonts/din_alternate_bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/din_alternate_bold.woff') format('woff'),
         url('fonts/din_alternate_bold.ttf') format('truetype'),
         url('fonts/din_alternate_bold.svg#din_alternatebold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futurabook';
    src: url('fonts/futura_book_font.eot');
    src: url('fonts/futura_book_font.eot?#iefix') format('embedded-opentype'),
         url('fonts/futura_book_font.woff') format('woff'),
         url('fonts/futura_book_font.ttf') format('truetype'),
         url('fonts/futura_book_font.svg#futurabook') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'baskerville-regularregular';
    src: url('fonts/baskerville-regular.eot');
    src: url('fonts/baskerville-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/baskerville-regular.woff') format('woff'),
         url('fonts/baskerville-regular.ttf') format('truetype'),
         url('fonts/baskerville-regular.svg#baskerville-regularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*base*/
html {
	scroll-behavior:smooth;
	-webkit-overflow-scrolling: touch;
}
body {
	font-family: 'futurabook',"Noto Sans Japanese";
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 18px;
	margin: 0;
	padding: 0;
	color: #000;
	border-bottom: none;
	-webkit-transition: 1s liner;
    -moz-transition: 1s liner;
    -o-transition: 1s liner;
    transition: 1s;
	text-align: center;
}
img {
	max-width: 100%;
	height: auto;
    
}
a, input {
	text-decoration: none;
	color: #000;
	-webkit-transition: 1s liner;
    -moz-transition: 1s liner;
    -o-transition: 1s liner;
    transition: 1s;
}
a:hover {
	opacity: 0.7;
}
ul, li, a, img, div, p, input, textarea, span, h1, h2 {
    list-style: none;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
    vertical-align: top;
    outline: none;
    border: none;
	box-sizing: border-box;
	-webkit-appearance:none;
	line-height: 1.8em;
     letter-spacing: 0.12em;
}
h1, h2 {
	font-weight: normal;
    margin-bottom: 20px;
}
.din {font-family: 'din_alternatebold';}
.bask {font-family: 'baskerville-regularregular';}
.sawarabi {font-family: 'Sawarabi Mincho';}

.box {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}
.area {
	padding: 120px 0 140px;
}


/*font size*/
.size14 {font-size: 14px;}
.size21 {font-size: 21px;}
.size24 {font-size: 24px;}
.size28 {font-size: 28px;}
.size32 {font-size: 32px;}
.size36 {font-size: 36px;}
.size40 {font-size: 40px;}
.size48 {font-size: 48px;}
.size80 {font-size: 80px;}

@media(max-width: 940px) {
	body {font-size: 16px;}
.size21 {font-size: 19px;}
.size24 {font-size: 21px;}
.size28 {font-size: 24px;}
.size32 {font-size: 28px;}
.size36 {font-size: 32px;}
.size40 {font-size: 36px;}
.size48 {font-size: 42px;}
.size80 {font-size: 70px;}
}
@media(max-width: 748px) {
	body {font-size: 2.8vw;}
.size14 {font-size: 2.6vw;}
.size21 {font-size: 3vw;}
.size24 {font-size: 3.4vw;}
.size28 {font-size: 4vw;}
.size32 {font-size: 4.5vw;}
.size36 {font-size: 5vw;}
.size40 {font-size: 5.5vw;}
.size48 {font-size: 6vw;}
.size80 {font-size: 11vw;}
	.main-nav.size21 {
    font-size: 21px!important;
}
}

/*circle*/
.circle {
	transform: rotate(-120deg);
}
.circle circle {
	fill:none;
	stroke:#6ccbd5;
	stroke-miterlimit:10;
	stroke-width:4px;
	stroke-dasharray: 880px;
    stroke-dashoffset: 880px;
	-webkit-transition: 1s ease-in-out 0.5s;
    -moz-transition: 1s ease-in-out 0.5s;
    -o-transition: 1s ease-in-out 0.5s;
    transition: 1s ease-in-out 0.5s;
}
.active .circle circle {
	stroke-dashoffset: 0;
}

/*clock*/

/* 時計本体 */
.clock {
    height: 40px;
    width: 40px;
    position: absolute;
    background: url(img/clock.svg) no-repeat center;
    background-size: cover;
    left: -21px;
}

/* 時針 */
.hour-hand {
    background-color: #000;
    border-radius: 2px;
    height: 4px; /* 線幅 */
    position: absolute;
    right: calc(50% - 2px); /* 位置調整 線幅の半分ずらす */
    top: calc(50% - 2px); /* 位置調整 線幅の半分ずらす */
    transform-origin: calc(100% - 2px) center; /* アニメーションの中心軸 線幅の半分ずらす */
    width: 30%;
	transform: rotate(90deg);
	-webkit-transition: 1s linear 1s;
-moz-transition: 1s linear 1s;
-o-transition: 1s linear 1s;
transition: 1s linear 1s;
}

/* 分針 */
.minute-hand {
    background-color: #000;
    border-radius: 1px;
    height: 2px; /* 線幅 */
    position: absolute;
    right: calc(50% - 1px); /* 位置調整 線幅の半分ずらす */
    top: calc(50% - 1px); /* 位置調整 線幅の半分ずらす */
    transform-origin: calc(100% - 1px) center; /* アニメーションの中心軸 線幅の半分ずらす */
    width: 40%;
	transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: 1s linear 1s;
-moz-transition: 1s linear 1s;
-o-transition: 1s linear 1s;
transition: 1s linear 1s;
}

/*animation*/
.fade {
	opacity: 0;
	-webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}
.fade.active {
	opacity: 1;
}
.side {
	position: relative;
	overflow: hidden;
}
.side div {
	transform: translateX(-100%);
	-webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.r-box:nth-of-type(2n) .side div {
	transform: translateX(100%);
}
.active.side div {
	transform: translateX(0)!important;
}
.side div:before {
	-webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.side div:before {
	z-index: 1;
	background-color: #fff;
	webkit-transition-delay: 0.5s;
-moz-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
transition-delay: 0.5s;
	transform: translateX(0);
}
.active.side div:before {
	transform: translateX(100%);
}
.r-box:nth-of-type(2n) .active.side div:before {
	transform: translateX(-100%);
}
/* menu */
#menuButton {
	width: 42px;
	height: 42px;
	position: fixed;
    top: 10px;
    right: 10px;
	z-index: 2000;
	background-color: #fff;
	display: none;
}
#menuButton span {
	display: block;
	background: #231815;
	width: 24px;
	height: 2px;
	position: absolute;
	left: 9px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#menuButton span:first-child {
	top: 12px;
}
#menuButton span:nth-child(2) {
	margin-top: -1px;
	top: 50%;
}
#menuButton span:last-child {
	bottom: 12px;
}
#menuButton.active span:first-child {
	-webkit-transform: translateY(8px) rotate(45deg);
	-moz-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}
#menuButton.active span:nth-child(2) {
	opacity: 0;
}
#menuButton.active span:last-child {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-moz-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}
/*contents*/
header {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
	z-index: 100;
}
header .logo {
    background-color: #fff;
    padding: 10px;
    width: 200px;
    margin: 10px;
	position: absolute;
    left: 0;
    display: none;
}
.main-nav {
    position: absolute;
    right: 10px;
    top: 0;
}
.main-nav li {
    display: inline-block;
}
.main-nav a {
    color: #fff;
    padding: 0 20px;
    line-height: 60px;
}
.back {
	position: relative;
	overflow: hidden;
}
.back div:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
	
}

.back video {
width: 100%;
height:auto;
}
/* .back video {
	animation: show1 20s ease infinite;
    -webkit-animation: show1 20s ease infinite;
	opacity: 0;
	transform: scale(1);
}
.back div video {
	animation: show2 20s ease infinite;
    -webkit-animation: show2 20s ease infinite;
	-moz-animation: show2 20s ease infinite;
-o-animation: show2 20s ease infinite;
-ms-animation: show2 20s ease infinite;
	transform: scale(1);
} */
@keyframes show1 {
    0% {opacity: 0;transform: scale(1);}
	5% {opacity: 1;}
    25% {opacity:1;}
    30% {opacity: 0;transform: scale(1.1);}
	100% {opacity: 0;transform: scale(1);}
 }

@-moz-keyframes show1 {
    0% {opacity: 0;transform: scale(1);}
	5% {opacity: 1;}
    25% {opacity:1;}
    30% {opacity: 0;transform: scale(1.1);}
	100% {opacity: 0;transform: scale(1);}
}
@-o-keyframes show1 {
    0% {opacity: 0;transform: scale(1);}
	5% {opacity: 1;}
    25% {opacity:1;}
    30% {opacity: 0;transform: scale(1.1);}
	100% {opacity: 0;transform: scale(1);}
}
@-ms-keyframes show1 {
    0% {opacity: 0;transform: scale(1);}
	5% {opacity: 1;}
    25% {opacity:1;}
    30% {opacity: 0;transform: scale(1.1);}
	100% {opacity: 0;transform: scale(1);}
}
@-webkit-keyframes show1 {
    0% {opacity: 0;transform: scale(1);}
	5% {opacity: 1;}
    25% {opacity:1;}
    30% {opacity: 0;transform: scale(1.1);}
	100% {opacity: 0;transform: scale(1);}
}
.back img:nth-of-type(n+2) {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#main .copy p {
	color: #fff;
	background-color: rgba(108, 203, 213, 0.5);
    display:none;
}
.back img:nth-of-type(2), #main .copy p:nth-of-type(2) {
	animation-delay: 3s;
    -webkit-animation-delay: 5s;
}
.back img:nth-of-type(3), #main .copy p:nth-of-type(3) {
	animation-delay: 5s;
    -webkit-animation-delay: 10s;
}
.back img:nth-of-type(4), #main .copy p:nth-of-type(4) {
	animation-delay: 7s;
    -webkit-animation-delay: 15s;
}
#MESSAGE, #COMPANY, footer {
    background-color: #6ccbd5;
}
#MESSAGE h2, #COMPANY h2 {
    color: #fff;
	width: 100%;
}
#MESSAGE .m-text {
	text-align: left;
	width: 60%;
	padding: 0 50px 0 10%;
}
#MESSAGE .side {
    max-width: 30%;
    width: 400px;
}
#RECRUIT .box {
    margin: 80px auto;
}
#RECRUIT .box li {
    width: 280px;
	height: 280px;
    margin: 0 25px;
	position: relative;
}
#RECRUIT .number {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.2em;
    letter-spacing: 0.02em;
	z-index: 2;
}
#RECRUIT .number span {
    -webkit-text-stroke-color: #FFF;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    line-height: 1.2em;
    letter-spacing: 0.02em;
}
#RECRUIT ul.box .number span {
    -webkit-text-stroke-width: 20px;
}
#RECRUIT .r-box .number span {
    -webkit-text-stroke-width: 10px;
}
#RECRUIT .box li svg {
	position: absolute;
	left: 0;
	top: 0;
}
#RECRUIT .box li .size48 {
    margin-top: 60px;
}
#RECRUIT .box li img {
    height: 80px;
}
.r-area {
	max-width: 940px;
	margin: auto;
}
.r-box {
	position: relative;
	padding: 50px 0;
    margin: 150px 0;
}
.r-text {
    display: inline-block;
	position: relative;
}
.r-text .side div {
    background-color: #c9ecef;
    padding: 50px;
    text-align: left;
}
.r-text .fade {
    position: absolute;
    left: -90px;
    top: -30px;
	z-index: 10;
}
.r-text svg {
    width: 136px;
    height: 136px;
}
.r-text .size36 {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
	text-align: center;
}
.r-text .circle circle {
    stroke-width: 7px;
    fill: #fff;
}
.r-box:nth-of-type(2n+1) {
    text-align: left
}
.r-box:nth-of-type(2n) {
    text-align: right;
}
.r-box img {
    width: 60%;
    position: absolute;
	top: 0;
	bottom: 0;
    margin: auto;
	z-index: -1;
}
.r-box:nth-of-type(2n) img {
    left: 0;
}
.r-box:nth-of-type(2n+1) img {
    right: 0;
}
#RECRUIT {
    padding: 120px 0 50px;
}
#slider {
    margin-bottom: 150px;
	margin-top: 30px;
}
#slider .box {
    border: solid 1px #eee;
	padding: 20px;
    margin: 10px;
}
#slider .box img {
	width: 480px;
}
#slider .box div {
    text-align: left;
    padding-left: 20px;
}
#SCHEDULE {
    background-color: #eee;
}
#SCHEDULE h2 {
    color: #6ccbd5;
}
#SCHEDULE ul {
    display: flex;
    flex-flow: row wrap;
	width: 90%;
    max-width: 940px;
    margin: 50px auto 0;
}
#SCHEDULE ul li:nth-of-type(2n+1) {
	width: 200px;
	height: 250px;
	margin-right: 50px;
}
#SCHEDULE ul li:nth-of-type(2n+1) img {
    border-radius: 50%;
}
#SCHEDULE ul li:nth-of-type(2n) {
	width: 70%;
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: -ms-calc(100% - 250px);
    width: -o-calc(100% - 250px);
    width: calc(100% - 250px);
	max-width: 690px;
	padding-left: 50px;
	border-left: solid 2px;
	text-align: left;
	position: relative;
}
#SCHEDULE ul li:last-of-type {
	border-left: none;
}
#SCHEDULE ul li:nth-of-type(2) .active .hour-hand {
	transform: rotate(255deg);
}
#SCHEDULE ul li:nth-of-type(4) .active .hour-hand {
	transform: rotate(260deg);
}
#SCHEDULE ul li:nth-of-type(4) .active .minute-hand {
	transform: rotate(105deg);
}
#SCHEDULE ul li:nth-of-type(6) .active .hour-hand {
	transform: rotate(265deg);
}
#SCHEDULE ul li:nth-of-type(6) .active .minute-hand {
	transform: rotate(285deg);
}
#SCHEDULE ul li:nth-of-type(8) .active .hour-hand {
	transform: rotate(277deg);
}
#SCHEDULE ul li:nth-of-type(8) .active .minute-hand, #SCHEDULE ul li:nth-of-type(10) .active .minute-hand {
	transform: rotate(270deg);
}
#SCHEDULE ul li:nth-of-type(10) .active .hour-hand {
	transform: rotate(75deg);
}
#SCHEDULE ul li:nth-of-type(12) .active .hour-hand {
	transform: rotate(105deg);
	animation: hour 3s linear 1s both;
    -webkit-animation: hour 3s linear 1s both;
}
@keyframes hour {
	to {transform: rotate(195deg);}
 }

@-webkit-keyframes hour {
    to {transform: rotate(150deg);}
}
#SCHEDULE ul li:nth-of-type(12) .active .minute-hand {
	transform: rotate(90deg);
	animation: minute 3s linear 1s both;
    -webkit-animation: minute 3s linear 1s both;
	-moz-animation: minute 3s linear 1s both;
-o-animation: minute 3s linear 1s both;
-ms-animation: minute 3s linear 1s both;
}
@keyframes minute {
	to {transform: rotate(1170deg);}
 }

@-webkit-keyframes minute {
    to {transform: rotate(1170deg);}
}
@-moz-keyframes minute {
    to {transform: rotate(1170deg);}
}
@-o-keyframes minute {
    to {transform: rotate(1170deg);}
}
@-ms-keyframes minute {
    to {transform: rotate(1170deg);}
}
#SCHEDULE ul li:nth-of-type(14) .active .hour-hand {
	transform: rotate(270deg);
}
#INFORMATION ul {
    text-align: left;
    width: 90%;
    max-width: 940px;
    margin: 50px auto;
	display: flex;
	flex-flow: row wrap;
}
#INFORMATION ul li:nth-of-type(2n+1) {
	width: 200px;
}
#INFORMATION ul li:nth-of-type(2n) {
	width: 70%;
    width: -webkit-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -ms-calc(100% - 200px);
    width: -o-calc(100% - 200px);
    width: calc(100% - 200px);
	letter-spacing: 0;
}
#engage-contributions-widget-wrapper {
    margin: auto;
    border: solid 1px #e5e5e5;
	max-width: 90%;
}
#COMPANY {
	padding-top: 80px;
}
#COMPANY .box {
    width: 90%;
    max-width: 940px;
    margin: auto;
}
#COMPANY .box li {
	width: 32%;
	margin-right: 2%;
}
#COMPANY .box li:nth-of-type(3n) {
	margin-right: 0;
}
#COMPANY .info {
	display: flex;
	flex-flow: row wrap;
	width: 90%;
    max-width: 940px;
    margin: 50px auto 0;
    text-align: left;
}
#COMPANY .info li {
    padding-bottom: 10px;
    border-bottom: dashed 1px #c9ecef;
    margin-bottom: 10px;
}
#COMPANY .info li:nth-of-type(2n+1) {
	width: 150px;
}
#COMPANY .info li:nth-of-type(2n) {
	width: 80%;
    width: -webkit-calc(100% - 150px);
    width: -moz-calc(100% - 150px);
    width: -ms-calc(100% - 150px);
    width: -o-calc(100% - 150px);
    width: calc(100% - 150px);
}
footer {
    position: relative;
    width: 100%;
	text-align: left;
    padding: 20px;
	box-sizing: border-box;
}
footer img {
    width: 200px;
}
#page-top {
    bottom: 30px;
    position: fixed;
    display: none;
    right: 30px;
    background-color: rgba(255,255,255,0.5);
    width: 50px;
    height: 50px;
    padding: 12px;
    transform: rotate(-90deg);
    border-radius: 50%;
	z-index: 300;
}
#page-top img {
    height: 26px;
    width: auto;
}
@media(min-width: 940px) {

    #main .copy p {
        display:none;
    }

img{
    display: block;
}

	#main .copy {
	position: absolute;
	top: 130px;
	left: 0;
	right: 0;
	bottom: 0;
    z-index: 10;
	letter-spacing: 0.2em;
	display: none;
    flex-flow: row wrap;
    align-items: center;
}
#main .copy p {
	position: absolute;
	animation: show2 20s ease infinite;
    -webkit-animation: show2 20s ease infinite;
	-moz-animation: show2 20s ease infinite;
-o-animation: show2 20s ease infinite;
-ms-animation: show2 20s ease infinite;
	transform: translateX(0);
    padding: 100px 100px 100px 200px;
	opacity: 0;
}
@keyframes show2 {
    0% {opacity: 0;transform: translateX(0);}
	5% {opacity: 1;transform: translateX(-100px);}
    25% {opacity:1;}
	30% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 0;transform: translateX(0);}
 }

@-webkit-keyframes show2 {
    0% {opacity: 0;transform: translateX(0);}
	5% {opacity: 1;transform: translateX(-100px);}
    25% {opacity:1;}
	30% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 0;transform: translateX(0);}
}
	@-moz-keyframes show2 {
    0% {opacity: 0;transform: translateX(0);}
	5% {opacity: 1;transform: translateX(-100px);}
    25% {opacity:1;}
	30% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 0;transform: translateX(0);}
}
	@-o-keyframes show2 {
    0% {opacity: 0;transform: translateX(0);}
	5% {opacity: 1;transform: translateX(-100px);}
    25% {opacity:1;}
	30% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 0;transform: translateX(0);}
}
	@-oz-keyframes show2 {
    0% {opacity: 0;transform: translateX(0);}
	5% {opacity: 1;transform: translateX(-100px);}
    25% {opacity:1;}
	30% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 0;transform: translateX(0);}
}
}
@media(max-width: 940px) {

    #main .copy p {   
        display:block;    
    }

    img{
        display: block;
    }

	#main .copy {
		background-color: rgba(108, 203, 213, 1);
		position: relative;
	}
	#main .copy p {
	animation: show2 20s ease infinite;
    -webkit-animation: show2 20s ease infinite;
		-moz-animation: show2 20s ease infinite;
-o-animation: show2 20s ease infinite;
-ms-animation: show2 20s ease infinite;
    padding: 50px 0;
	opacity: 0;
}
	#main .copy p:nth-of-type(n+2) {
		position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    line-height: 3.6em;
		
}
@keyframes show2 {
    0% {opacity: 0;}
	5% {opacity: 1;}
    25% {opacity:1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
 }

@-webkit-keyframes show2 {
    0% {opacity: 0;}
	5% {opacity: 1;}
    25% {opacity:1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
}
	@-moz-keyframes show2 {
    0% {opacity: 0;}
	5% {opacity: 1;}
    25% {opacity:1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
}
	@-o-keyframes show2 {
    0% {opacity: 0;}
	5% {opacity: 1;}
    25% {opacity:1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
}
	@-oz-keyframes show2 {
    0% {opacity: 0;}
	5% {opacity: 1;}
    25% {opacity:1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
}
	.area {
    padding: 100px 0 110px;
}
}
@media(min-width: 768px) {

    #main .copy p {   
        display:block;    
    }

	br.sp {
		display: none;
	}
	footer p {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
}
@media(max-width: 768px) {

    #main .copy p {   
        display:block;    
    }

	br.pc {
		display: none;
	}
	h1 + p, #ABOUT p, #MESSAGE .m-text p:last-of-type {
    text-align: left;
}
	header .logo {
    height: 80px;
    width: auto;
}
#menuButton {
	display: block;
}
	.main-nav {
		opacity: 0;
		pointer-events: none;
		-webkit-transition: 1s ease;
-moz-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
    padding-top: 60px;
    background-color: #6ccbd5;
    padding-bottom: 50px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
	.main-nav.active {
		opacity: 1;
		pointer-events: auto;
}
	.main-nav li {
		display: block;
		line-height: 60px;
	}
	#ABOUT p {
    padding: 0 20px;
}
	#MESSAGE .m-text {
    text-align: center;
    width: 100%;
    padding: 0 20px;
}
	#MESSAGE .side {
    max-width: 50%;
    margin-top: 30px;
}
	#RECRUIT {
    margin: 0 20px;
		padding: 100px 0 30px;
}
	#RECRUIT .box li {
    width: 40vw;
    height: 40vw;
    margin: 0 2vw;
}
	#RECRUIT .box .circle {
    width: 40vw;
    height: 40vw;
}
	#RECRUIT .box li .size48 {
    margin-top: 6vw;
}
	#RECRUIT .box li img {
    height: 60px;
}
	.r-box {
		padding: 0;
    margin: 80px 0;
}
	.r-text {
    display: block;
}
	.r-text .fade {
    left: -3%;
    top: -10vw;
}
	.r-box img {
    width: 100%;
    position: relative;
}
	.r-text svg {
    width: 20vw;
    height: 20vw;
}
	.r-text .size36 {
    top: 6vw;
}
	#slider {
    margin-bottom: 110px;
	margin-top: 30px;
}
	#slider .box {
    max-width: 80vw;
}
	#slider .box img {
    width: 80vw;
}
	#slider .box div {
    text-align: center;
    padding-left: 0;
}
	#SCHEDULE ul li:nth-of-type(2n+1) {
    width: 80px;
    height: 100px;
    margin-right: 25px;
}
	#SCHEDULE ul li:nth-of-type(2n) {
    width: 80%;
    width: -webkit-calc(100% - 105px);
    width: -moz-calc(100% - 105px);
    width: -ms-calc(100% - 105px);
    width: -o-calc(100% - 105px);
    width: calc(100% - 105px);
    padding-left: 30px;
		padding-bottom: 20px;
		font-size: 2.2vw;
}
	#INFORMATION ul li:nth-of-type(2n+1), #INFORMATION ul li:nth-of-type(2n) {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
	#INFORMATION ul li:nth-of-type(2n+1) {
		border-bottom: dashed 1px;
	}
	#INFORMATION ul li:nth-of-type(2n) {
    border-bottom: solid 1px;
}
	#INFORMATION ul li:last-of-type {
		border-bottom: none;
	}
	#COMPANY .info li:nth-of-type(2n+1) {
    width: 30%;
}
	#COMPANY .info li:nth-of-type(2n) {
    width: 70%;
}
	footer {
		text-align: center;
	}
	footer img {
    width: 160px;
    margin-bottom: 30px;
}
}