@charset "UTF-8";
/*
COMMON
======================================================== */
html {
	font-size: 100%;
}

body {
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
}



/*
header
======================================================== */
header {
	background: #000;
	color: #FFF;
	opacity: 80%;
}

.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

h1 {
	justify-content: flex-start;
}

h1 span{
	color: #007bbb;
	font-family: 'Dancing Script', cursive;
	font-size: 1.3rem;
	font-weight: 800;
	margin-left: 0.3rem;
}

.menu {
	display: flex;
	align-items: center;
}

.menu li {
	font-family: 'Montserrat', sans-serif;
	justify-content: space-between;
	margin-left: 1rem;
}

/* .cursor:カーソル合わせると下線表示 */
.cursor {
	cursor: pointer;
	position: relative;
}

.cursor:focus:after,
.cursor:hover:after {
  width: 100%;
  left: 0%;
}

.cursor:after {
  content: "";
  pointer-events: none;
  bottom: -3px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

/* header内のエントリーボタン */
.button {
	display: inline-block;
	text-align: center;
	padding: 0.3rem 4rem;
	border: 1px solid #FFF;
	border-radius: 50px;
	font-size: 0.9rem;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.button:before {
	width: 50%;
	height: 100%;
	content: "";
	margin: auto;
	position: absolute;
	top: 0%;
	left: -50%;
	background: #FFF;
	transition: all 0.5s ease;
	z-index: -1;
}

.button:after {
	width: 50%;
	height: 100%;
	content: "";
	margin: auto;
	position: absolute;
	top: 0%;
	left: 100%;
	background: #FFF;
	transition: all 0.5s ease;
	z-index: -1;
}

.button:hover {
	color: #192f60;
	cursor: pointer;
}

.button:hover:before {
	top: 0;
	left: 0;
}

.button:hover:after {
	top: 0;
	left: 50%;
}

/* エントリーボタン内の改行 */
.button span,
.entry-btn span {
	display: block;
	font-size: 0.6rem;
}


/*
SLIDE SHOW
======================================================== */
.slide {
	position: relative;
	width: 100%;
	padding-top: 70%;
}

.slide img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	opacity: 0;
	animation:slideshow 10s linear infinite;
}

.slide img:nth-child(2) {
animation-delay: 5s;
}

@keyframes slideshow {
	0% {
	opacity: 0;
	}

	15% {
	opacity: 1;
	}

	40% {
	opacity: 1;
	}

	50% {
	opacity: 0;
	}

	100% {
	opacity: 0;
	}
}

.slide p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.concept {
	font-family: 'Montserrat', sans-serif;
	font-size: 7rem;
	white-space: nowrap; /* 改行しない */
}

.sub-concept {
	font-family: 'Sawarabi Mincho', 'Noto Sans JP', sans-serif;
	font-size: 2rem;
	margin-top: 4.5rem;
}


/*
BODY
======================================================== */
section {
	text-align: center;
	margin-top: 5rem;
}

.title {
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	font-weight: 600;
	font-size: 4.5rem;
	text-transform: uppercase;
}

h2 span {
	display: block;
	margin-bottom: 2rem;
	font-size: 1rem;
}

section p {
	line-height: 170%;
	margin: 1.5rem;
}

h3 {
	font-size: 2rem;
	margin: 2rem;
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.image {
	width: 50%;
}


/*
RECRUIT
======================================================== */
table {
width: 70%;
border-collapse: separate;
border-spacing: 0 0.3rem;
margin: 0 auto;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}

table th,
table td {
padding: 0.8rem;
}

table th {
background: #ccc;
border-radius: 5px;
vertical-align: middle;
text-align: center;
width: 20%;
position: relative;
font-weight: 100;
}

table td {
	text-align: left;
	line-height: 170%;
}

/* 募集要項下のエントリーボタン */
.entry-btn {
	display: inline-block;
	padding: 0.3rem 4rem;
	border: 1px solid #4f4f4f;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	transition: all 0.2s ease-in;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.entry-btn:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) scaleY(1) scaleX(1.25);
	top: 100%;
	width: 140%;
	height: 180%;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	display: block;
	transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
	z-index: -1;
}

.entry-btn:after {
	content: "";
	position: absolute;
	left: 55%;
	transform: translateX(-50%) scaleY(1) scaleX(1.45);
	top: 180%;
	width: 160%;
	height: 190%;
	background-color: #39bda7;
	border-radius: 50%;
	display: block;
	transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
	z-index: -1;
}

.entry-btn:hover {
	color: #FFF;
	border: 1px solid #39bda7;
}

.entry-btn:hover:before {
	top: -35%;
	background-color: #39bda7;
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.entry-btn:hover:after {
	top: -45%;
	background-color: #39bda7;
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*
footer
======================================================== */
footer {
	background: #192f60;
	color: #fff;
	font-size: 0.9rem;
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
}

footer p {
	font-size: 0.8rem;
	margin-top: 0.6rem;
}

.br {
	display: none;
}

.sns {
	margin: 0.8rem;
}

.sns-icon {
	display: flex;
	justify-content: center;
	font-size: 1.8rem;
	}

.sns-icon li {
	margin-right: 0.7rem;
}


/*
MOBILE SIZE
======================================================== */
@media (max-width:700px) {

	.header-nav {
		display: flex;
	}
	
	h1,h1 span {
		font-size: 0.6rem;
	}
	
	h1 span {
		margin-left: 0.2rem;
	}
	
	.menu {
		display: flex;
		font-size: 0.6rem;
	}
	
	.menu li {
		justify-content: space-between;
		margin-left: 0.5rem;
		
	}
	
	.button {
		display: block;
		font-size: 0.6rem;
		border: none;
		padding: 0;
		position: relative;
	}
	
	.button span {
		display: none;
	}
	
	.concept {
		font-size: 2.5rem;
	}
	
	.sub-concept {
		font-size: 1rem;
		margin-top: 2rem;
		white-space: nowrap; /* 改行しない */
	}
	
	.title {
		font-size: 35px;
	}
	
	h2 span,p {
		font-size: 0.8rem;
	}
	
	h3 {
		font-size: 1.3rem;
	}
	
	.slide {
		padding-top: 60%;
	}
	
	.image {
	width: 60%;
	}
	
	table {
		width: 90%;
	}
	
	table th,
	table td {
		font-size: 0.7rem;
	}
	
	footer {
		font-size: 0.7rem;
	}
	
	footer p {
		font-size: 0.6rem;
		line-height: 150%;
	}
	
	.br {
		display: block;
	}
	
}