@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;700&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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif,'Bodoni Moda', serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:active {
	color: #000;
}
@media all and (min-width: 897px) {
	a:hover {
		color: #FA7378;
	}
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1200px;
	color: #646464;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 1.923;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
#container {
	text-align: left;
	overflow: hidden;
}
#main {
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.2rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 30px 20px 43px;
	border-bottom: 1px solid #000;
}
#gHeader .hLogo {
	text-align: center;
}
#gHeader .hLogo a {
	display: inline-block;
}
#gHeader .menu {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 34px;
	right: 91px;
	z-index: 1999;
	background-color: rgba(0,0,0,0.8);
	border-radius: 50%;
	cursor: pointer;
}
#gHeader .menu.active {
	background: #9c7071 url("../../img/common/menu_icon02.png") no-repeat center center/ 25px;
}
#gHeader .menu.active img {
	opacity: 0;
}
#gHeader .menuBox {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	z-index: 1000;
	visibility: hidden;
}
#gHeader .menuBox.on {
	visibility: visible;
}
#gHeader .menuBox .left {
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	transform: translateX(-100%);
	background-color: rgba(255,255,255,0.9);
}
#gHeader .menuBox .left img {
	opacity: 0;
	transition: .3s;
}
#gHeader .menuBox.on .left {
	transform: translateX(0);
}
#gHeader .menuBox.on .left img {
	opacity: 1;
	transition-delay: 1s;
}
#gHeader .menuBox .right {
	width: 50%;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	height: 100%;
}
#gHeader .menuBox .rightInner {
	transform: translateX(-100%);
	transition: .3s;
	background-color: rgba(160,115,115,0.83);
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
#gHeader .menuBox.on .rightInner {
	transform: translateX(0);
}
#gHeader .menuBox .naviList  {
	margin: 0 auto 20px;
	display: flex;
	height: calc(100% - 20px);
	flex-direction: column;
	justify-content: center;
	min-height: 510px;
}
#gHeader .menuBox .naviList li {
	text-align: center;
	opacity: 0;
	transform: translateX(20px);
	transition: .3s;
}
#gHeader .menuBox:not(.on) .naviList li {
	transition-delay: 0s !important;
}
#gHeader .menuBox.on .naviList li {
	opacity: 1;
	transform: translateX(0);
}
#gHeader .menuBox .naviList li:not(:last-child) {
	margin-bottom: 20px;
}
#gHeader .menuBox .naviList a {
	display: inline-block;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.2;
}
#gHeader .menuBox .naviList a span {
	display: block;
	font-size: 2.5rem;
}
#gHeader .menuBox .naviList a:hover {
	opacity: 0.7;
}
#gHeader .menuBox .linkList {
	padding-left: 20px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url("../../img/common/menu_icon06.png") no-repeat left -6px center/ 25px;
	opacity: 0;
	transition: .3s;
}
#gHeader .menuBox.on .linkList {
	opacity: 1;
	transition-delay: 1s;
}
#gHeader .menuBox .linkList a:hover {
	opacity: 0.7;
}
#gHeader .menuBox .linkList li:not(:last-child) {
	margin-bottom: 5px;
}
#gHeader .menuBox .posRight {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	opacity: 0;
	transition: .3s;
}
#gHeader .menuBox.on .posRight {
	opacity: 1;
	transition-delay: 1s;
	padding-right: 20px;
	background: url("../../img/common/menu_icon06.png") no-repeat right center/25px;
}
#gHeader .menuBox .posRight a {
	-webkit-writing-mode : tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	width: 40px;
	height: 78px;
	display: block;
	color: #fff;
	letter-spacing: 0.2em;
}
#gHeader .menuBox .posRight a:hover {
	opacity: 0.7;
}
@media all and (min-width: 897px) {
	#gHeader .menu:hover {
		background-color: #FA7378;
	}
	#gHeader .menu.active:hover {
		background-color: #FA7378;
	}
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 30px 15px 43px;
	}
	#gHeader .menu {
		top: 34px;
		right: 5px;
	}
	#gHeader .menuBox .right {
		width: 100%;
	}
	#gHeader .menuBox .rightInner {
		padding: 100px 60px;
		width: 100%;
		box-sizing: border-box;
	}
}





/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding:  30px 20px 225px;
	position: relative;
	background-color: #000;
}
#gFooter .pageTop {
	position: absolute;
	top: 30px;
	right: 100px;
}
#gFooter .pageTop a {
	display: block;
}
#gFooter .fLogo {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    text-align: center;
}
#gFooter .fLogo .fLeft {
    margin-right: 35px;
}
#gFooter p {
	margin-bottom: 8px;
	color: #969696;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.05em;;
	text-align: center;
}
#gFooter p a {
	margin-left: 15px;
	padding: 2px 20px 2px 10px;
	display: inline-block;
	color: #969696;
	font-weight: 500;
	position: relative;
	letter-spacing: -0.04em;
	border: 1px solid #969696;
	border-radius: 5px;
	background-color: transparent;
	z-index: 1;
}
#gFooter p a::before {
	content: "";
	width: 15px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	background:  url("../../img/common/arrow_icon01.png") no-repeat right center /100%;
}
#gFooter p a::after {
	content: "";
	width: 0;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s;
	background-color: #FA7378;
	border-radius: 3px;
	z-index: -1;
}
#gFooter .copyright {
	color: #969696;
	font-weight: 500;
	font-style: normal;
	text-align: center;
}
@media all and (min-width: 897px) {
	#gFooter .pageTop a:hover {
		background: url("../../img/index/page_top_on.png") no-repeat center/50px;
	}
	#gFooter .pageTop a:hover img {
		opacity: 0;
	}
	#gFooter p a:hover {
		color: #fff;
		border-color: #FA7378;
		z-index: 1;
	}
	#gFooter p a:hover::before {
		background-image:  url("../../img/common/arrow_icon01_on.png");
	}
	#gFooter p a:hover::after {
		width: 100%;
	}
}
@media all and (max-width: 896px) {
	#gFooter {
		padding-bottom: 156px;
	}
	#gFooter .pageTop {
		top: auto;
		right: 50%;
		bottom: 80px;
		transform: translateX(50%);
	}
	#gFooter .fLogo {
		margin-bottom: 24px;
	}
	#gFooter p a {
		margin: 10px auto 0;
		width: 170px;
		display: block;
		box-sizing: border-box;
	}
	#gFooter p a:first-of-type {
		margin-top: 14px;
	}
	#gFooter .copyright {
		letter-spacing: 0.04em;
	}
}