@charset "utf-8";
/*
theme Name: yumecareer
Author: aun-studio
Description: ここにテーマの説明が入ります
version： 1.0.0
*/


@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.3;
	color: #0a0a0a;
}
img {
	max-width: 100%;
	border: none;
	vertical-align: bottom;
	-o-object-fit: cover;
	object-fit: cover;
}

a {
	color: initial;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}
ul {
	list-style: none;
}

/***********************/
/*PC SP 表示切り替え*/
/***********************/
.pc_content {
	display: block;
}
.sp_content {
	display: none;
}
.pc_br{
	display: initial;
}
.sp_br{
	display: none;
}
@media screen and (max-width: 767px) {
	.pc_content {
		display: none;
	}
	.sp_content {
		display: block;
	}
	.sp_br{
		display: initial;
	}
	.pc_br{
		display: none;
	}
}


/***********************/
/*fadeIn*/
/***********************/
/* fadeUp */
.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeUpTrigger {
	opacity: 0;
}


/******************************
レスポンシブ
/******************************/

@media screen and (max-width: 780px) {
	body {
		font-size: 1.6rem;
	} 
}

@media screen and (max-width: 640px) {
	body {
		font-size: 1.4rem;
	}
}

/***********************/
/*構造*/
/***********************/
.sec_inner {
	width: 1200px;
	max-width: 95%;
	margin: 0 auto;
    padding: 40px 0;
}



/***********************/
/*SPハンバーガーメニュー*/
/***********************/
.sp_nav {
	position: fixed;
	right: 20px;
	height: 20px;
	z-index: 500;
}
.nav_toggle {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	z-index: 800;
}
.nav_toggle i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
	position: absolute;
	transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
	top: 5px;
}
.nav_toggle i:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
.nav_toggle i:nth-child(3) {
	bottom: 5px;
}

.nav_toggle.show i:nth-child(1) {
	transform: translateY(9px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
	opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
	transform: translateY(-9px) rotate(45deg);
}

.nav {
	position: fixed;
	top: 3rem;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
	background-color: #bed0da;
	z-index: 400;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	margin: auto;
	max-height: 100vh;
}


.nav.show {
	opacity: 1;
	visibility: visible;

}

.nav.show .logo {
	margin-bottom: 20px;
}

#header .header-inner .nav.show .logo img {
	width: 400px;
	margin: 0 auto;
	display: block;
}

#header .header-inner .nav.show .logo {
	width: 500px;
	max-width: 90%;
}

.nav.show .menu-header-container {
	max-width: 90%;
	width: 500px;
	margin: 20px auto;
}

.nav.show .menu-header-container ul li a {
	color: initial;
	font-size: 16px;
	line-height: 240%;
}

.nav.show .header_btns.login_btns {
	width: 500px;
	max-width: 90%;
}

/***********************/
/*パンくず*/
/***********************/
.pankuzu {
	padding: 6px 0;
	font-size: 12px;
	margin: 20px 0 40px 0;
}

.pankuzu a {
	color: initial;
}
span.pankuzu_arrow {
	font-size: 9px;
	margin: 0 10px;
}
