@charset "UTF-8";
/* ----------------------------
 import css
---------------------------- */
@import url("common.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

body {
	font-family: "Avenir", "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	font-size: 1em;
	line-height: 1.8em;
	color: #333333;
	text-align: left;
	text-size-adjust: 100%;
	background: #e5e5e5;
}

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

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

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

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

#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;
}

.hd,
#spheader {
	display: none;
}

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

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

.right {
	text-align: right;
}

.center {
	text-align: center !important;
	margin: 0 auto !important;
}

/*=============================================================
タイトル
=============================================================*/
.logo a {
	color: #fff;
	text-decoration: none;
	font-size: 36px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

/*=============================================================
ボタン
=============================================================*/
a.btn {
	color: #fff;
	text-decoration: none;
	font-size: 32px;
	font-weight: 100;
	position: relative;
	padding-right: 30px;
}

a.btn::after {
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 2px solid #fff;
	/* 矢印の色 */
	border-right: 2px solid #fff;
	/* 矢印の色 */
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -6px;
	transition: right 0.3s;
}

a.btn:hover:after {
	right: 0px;
	;
}

/*=============================================================
#header
=============================================================*/
#header {

	position: relative;
}

#header .header_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

#header .logo {
	padding-top: 20px;
	margin-left: 20px;
}

#header .header_nav ul {
	text-align: right;
	padding-top: 60px;
	padding-right: 20px;
}

#header .header_nav li {
	padding-bottom: 15px;
}

#header .header_btn {
	display: inline-block;
	color: #fff;
	font-size: 120%;
	text-decoration: none;
	padding: 0.3em;
	transition: .3s;
	position: relative;
	overflow: hidden;
}


#header .header_btn::before {
	display: block;
	content: '';
	position: absolute;
	inset: 0;
	background-color: #065446;
	transition: transform 0.3s ease;
	transform: scaleX(0);
	transform-origin: right;
	z-index: -1;
}

#header .header_btn:hover {
	color: #fff;
}

#header .header_btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/*=============================================================
#FOOTER
=============================================================*/
.contact_link {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 8000;
}

#footer {
	width: 100%;
	background-color: #065446;
	padding: 30px 0;
	color: #fff;
}

#footer .logo {
	margin: 20px 0;
}

#footer .footer_nav ul {
	display: flex;
	justify-content: space-between;
	width: 500px;
	margin: 50px auto;
}

#footer .footer_nav ul li {
	padding: 0 1em;
	color: #fff;
}

#footer .footer_nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
}

#footer p.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #fff;
}