@charset "UTF-8";

/*=============================================================
#base
=============================================================*/
body,
html {
	width: 100%;
	min-width: 700px;
}

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: #5e5e5e;
}

/* 左右背景エリア */
.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: 490px;
	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: "Poppins", serif;
	font-size: 21px;
	margin-bottom: 20px;
}

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