@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP","noto-sans",sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
    color: #000;
    font-size: 1.6rem;
    line-height: 1.5;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    background-color: #EDEDED; /* 背景色 */
    background-image: url(../../img/common/body_bg.jpg); /* 背景画像 */
    background-repeat: repeat-y; /* 縦方向に繰り返す */
    background-position: center top; /* 画像の位置 */
    background-size: calc(100% - 2.8rem) auto; /* 画像のサイズ */
    padding-top: 2.5rem; /* 画像の開始位置 */
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	padding: 11rem 15px 0;
	text-align: left;
	overflow: hidden;
}
#container::before {
	position: fixed;
	left: 0;
	top: 10rem;
	right: 0;
	bottom: 0;
	border: 15px solid #000;
	content: '';
	z-index: 100;
	pointer-events: none;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (min-width: 897px) and (max-width: 1919px) {
	html {
		font-size: calc(1000vw / 1920);
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
		background-image: url(../../img/common/body_bg_sp.jpg);
		background-size: 100% auto;
		background-position: center top 3.7rem;
		background-repeat: repeat-y;
	}
	#container {
		padding: 6rem 9px 0;
		text-align: left;
	}
	#container::before {
		top: 5.9rem;
		border-width: 10px;
		border-top-width: 0.8rem;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
@media all and (max-width: 392px) {
	html {
		font-size: calc(1000vw / 392);
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 1rem 2rem;
	height: 10rem;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #EDEDED;
	border: 0.2rem solid #000;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
}
#gHeader h1 {
	text-align: center;
	font-size: 4.5rem;
}
.menu-btn {
	position: fixed;
	right: 3.7rem;
	top: 1.9rem;
	width: 6.3rem;
	height: 6.3rem;
	background: #ededed;
	border: 2px solid #000;
	cursor: pointer;
	transition: 0.3s;
}
@media (hover: hover) {
	.menu-btn:hover {
		opacity: 0.5;
	}
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 0;
		height: 5.9rem;
	}
	#gHeader h1 {
		text-align: center;
		font-size: 1.6rem;
	}
	.menu-btn {
		width: 4rem;
		height: 4rem;
		top: 6.5rem;
		right: 0.8rem;
	}
}


/* menu */
.menu {
	position: absolute;
	top: 2rem;
	left: 50%;
	height: 2rem;
	width: 4.8rem;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	transform: translateX(-50%);
}
.active .menu .top {
	transform: translateY(0.8rem) translateX(0) rotate(-45deg);
}
.active .menu .middle {
	opacity: 0;
}
.active .menu .bottom {
	transform: translateY(-0.8rem) translateX(0) rotate(45deg);
}
.menu span {
	background: #000000;
	border: none;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.menu span:nth-of-type(2) {
	top: 1.6rem;
}
@media all and (max-width: 896px) {
	.menu {
		top: 1.2rem;
		height: 2rem;
		width: 2.1rem;
	}
	.menu span:nth-of-type(2) {
		top: 1rem;
	}
	.active .menu .top {
		transform: translateY(0.5rem) translateX(0) rotate(-45deg);
	}
	.active .menu .bottom {
		transform: translateY(-0.5rem) translateX(0) rotate(45deg);
	}
}
	

/* menu-box */
.menu-box {
	width: 24.3rem;
	height: calc(100% - 9.8rem);
	position: fixed;
	top: 9.8rem;
	right: 0;
	overflow-y: auto;
	z-index: 999;
	transform: translateX(120%);
	transition: 0.3s;
}
.menu-box.on {
	transform: translateX(0);
}
.menu-box .inner-box {
	padding-bottom: 2rem;
}
.menu-box .bg {
	background-color: #EDEDED;
	border: 2px solid #000000;
}
.menu-box .navi-ul li {
	font-size: 3rem;
	font-weight: 600;
	border-bottom: 2px solid #000000;
}
.menu-box .navi-ul li:last-child {
	border-bottom: none;
}
.menu-box .navi-ul a {
	display: block;
	padding: 1.4rem 0.5rem;
	text-align: center;
}
.menu-box .title {
	padding: 6.8rem 0 5.6rem;
	text-align: center;
	font-size: 3rem;
	font-weight: 600;
	border-bottom: 2px solid #000000;
}
@media (hover: hover) {
	.menu-box .navi-ul a:hover {
		background-color: #000;
		color: #fff;
	}
}
@media all and (max-width: 896px) {
	.menu-box {
		width: 10.1rem;
		right: 0.8rem;
		top: 10.3rem;
		height: calc(100% - 10.3rem);
	}
	.menu-box .title {
		padding: 1.9rem 0 1.9rem;
		font-size: 1.4rem;
	}
	.menu-box .navi-ul li {
		font-size: 1.4rem;
	}
	.menu-box .navi-ul a {
		padding: 1.5rem 0.5rem 1.6rem;
	}
}
@media all and (max-width: 392px) {
	.menu-box .navi-ul a {
		padding: 1.3rem 0.5rem 1.3rem;
	}
	.menu-box .navi-ul li {
		font-size: 1.3rem;
	}
	.menu-box .title {
		padding: 1.5rem 0 1.5rem;
		font-size: 1.3rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	margin: 20rem -2rem 0;
	min-height: 41.2rem;
	padding: 4.6rem 0 1rem;
	background-color: #FFF;
	border-top: 2px solid #000;
	position: relative;
	z-index: 200;
}
#footer .f-box {
	margin: 0 auto;
	max-width: 167rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-left: 1.7rem;
}
#footer .left-box {
	padding: 7.4rem 0 6.8rem;
	width: calc(50% - 2.8rem);
	position: relative;
}
#footer .left-box::after {
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 1.6rem;
	background-color: #000;
	content: "";
}
#footer .right-box {
	margin: 4.8rem 0 0 14rem;
	flex: 1;
}
#footer .f-navi {
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
	font-size: 3rem;
	line-height: 1;
}
#footer .f-navi > li {
	width: 33.33%;
}
#footer .f-navi > li:last-child {
	padding-right: 1rem;
}
#footer .f-navi ul li {
	margin-bottom: 4.2rem;
}
#footer .f-navi ul li:last-child {
	margin-bottom: 0;
}
#footer .f-title {
	margin-bottom: 2.8rem;
}
#footer .f-title img {
	max-width: 71.8rem;
	width: 100%;
}
#footer .f-txt {
	line-height: 1.81;
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
#footer .f-logo {
	margin: -2.7rem -0.2rem 0 0;
	text-align: right;
}
#footer .f-logo img {
	width: 20.9rem;
}
#footer .f-logo a {
	display: inline-block;
}
@media (hover: hover) {
	#footer .f-txt a:hover {
		opacity: 0.7;
	}
	#footer .f-navi a:hover {
		opacity: 0.7;
	}
	#footer .f-logo a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#footer {
		margin: 13.2rem -1rem 0;
		min-height: 0;
		padding: 5.9rem 5rem 2.9rem;
	}
	#footer .f-box {
		margin: 0;
		max-width: inherit;
		display: block;
		padding-left: 0;
	}
	#footer .left-box {
		margin-bottom: 2.3rem;
		padding: 0 1rem 4.74rem;
		width: auto;
		position: relative;
	}
	#footer .left-box::after {
		width: 100%;
		height: 0.2rem;
		top: auto;
		right: 0;
		bottom: 0;
	}
	#footer .right-box {
		margin: 0;
	}
	#footer .f-navi > li {
		width: 50%;
	}
	#footer .f-navi {
		font-size: 2rem;
		justify-content: space-between;
	}
	#footer .f-txt {
		font-size: 1.3rem;
		line-height: 1.92;
	}
	#footer .f-title {
		text-align: center;
		margin: 0 -2.2rem 6.4rem;
	}
	#footer .f-title img {
		max-width: 34rem;
	}
	#footer .f-navi > li:last-child {
		padding-right: 0;
	}
	#footer .f-navi ul li {
		margin-bottom: 4.8rem;
	}
	#footer .f-logo {
		margin: 0.8rem 0 0 0;
		text-align: left;
	}
	#footer .f-logo img {
		width: 17.3rem;
	}
}

/* add */
.entry_btn {
	position: absolute;
	right: 13rem;
	top: 1.5rem;
}
.entry_btn a {
	display: block;
	opacity: 1;
	transition: 0.3s;
}
.entry_btn img {
	width: 23rem;
	height: auto;
}
@media (hover: hover) {
	.entry_btn a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gHeader h1 {
		margin-left: -8.7rem;
	}
	.entry_btn {
		right: 0.5rem;
		top: 1.5rem;
	}
	.entry_btn img {
		width: 8.2rem;
	}
}