@charset "UTF-8";

/*=============================================================
#base
=============================================================*/
html {
	scroll-behavior: smooth;
}

body,
html {
	width: 100%;
	min-width: 1000px;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	color: #333333;
	text-size-adjust: 100%;
	background: #e5e5e5;
}

a:active {
	color: #0000FF;
	text-decoration: none;
}

a:visited {
	color: #66F;
	text-decoration: none;
}

a:link {
	color: #0000FF;
	text-decoration: none;
}

a:hover {
	color: #00F;
	text-decoration: none;
	transition: all 0.5s ease 0s;
	opacity: 0.7;
}

#container {
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	width: 100%;
}

a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #000;
}

.body {
	width: 1000px;
	margin: 0 auto;
}

.drawerfixed {
	overflow: auto;
	height: 100%;
}

/*=============================================================
背景
=============================================================*/

/* 背景画像 */
#container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
	background-color: #b2b2b2;
}

/* 左右背景エリア */
.bg {
	position: fixed;
	top: 0;
	width: 40vw;
	height: 100vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	/* 背景として後ろに */
}

/* 左背景 */
.bg.left {
	left: 0;
	background-image: url('../image/bg_01.png');
}

/* 右背景 */
.bg.right {
	right: 0;
	background-image: url('../image/bg_02.png');
}

/* 中央メインコンテンツ */
.main-content {
	width: 390px;
	margin: 0 auto;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
	top: 50%;
}


/* PCメニュー */
.pc_menu {
	position: fixed;
	top: 30px;
	left: 30px;
	text-align: left;
}

.pc_menu ul {
	margin-top: 40px;

}

.pc_menu ul li {
	font-family: "Cormorant", serif;
	font-size: 21px;
	margin-bottom: 20px;
}

.pc_menu ul li a {
	color: #FFF;
}

.Recruit_link_pc {
	text-align: center;
}

.Recruit_link_pc h4 {
	font-size: 26px;
}

.Recruit_link_pc a {
	display: block;
	background-color: #303030;
	color: #fff;
	width: 170px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.Recruit_link_pc a::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 9px;
	height: 9px;
	margin: auto;
	transform: rotate(45deg);
	box-sizing: border-box;
}


.Recruit_link_pc a::after {
	background: #757575;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

.Recruit_link_pc a:hover {
	color: #fff;
}

.Recruit_link_pc a:hover::after {
	transform: scale(1, 1);
}