@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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%;
}
@media all and (min-width: 897px) and (max-width: 1340px) {
	html {
		font-size: calc(1000vw / 1340);
	}
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "A1 Mincho", 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: #333;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #333;
}
a:hover {
	color: #333;
}
a:active {
	color: #333;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #333;
	font-size: 2rem;
	font-weight: normal;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}
#container {
	text-align: left;
}
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.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
#gHeader .hBox {
	padding: 6rem 6rem;
}
#gHeader .hBox h1 {
	width: 16rem;
}
#gHeader .menu {
	position: fixed;
	top: 4rem;
	right: 4rem;
	height: 4.5rem;
	width: 4rem;
	cursor: pointer;
	z-index: 300;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}	
#gHeader .menu span {
	background: #4F3418;
	border: none;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}	
#gHeader .menu span:nth-of-type(2) {
	top: 1rem;
}	
#gHeader .menu span:nth-of-type(3) {
	top: 2rem;
}
#gHeader .menu.on .top {
	transform: translateY(1rem) translateX(0) rotate(45deg);
}
#gHeader .menu.on .middle {
	opacity: 0;
}
#gHeader .menu.on .bottom {
	transform: translateY(-1rem) translateX(0) rotate(-45deg);
}
.menuBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	visibility: hidden;
    opacity: 0;
    transition: visibility 1.5s cubic-bezier(.85,0,.15,1), opacity .8s linear .5s;
	z-index: 150;
}
.menuBox.open {
    opacity: 1;
    visibility: visible;
    transition: visibility 1.5s cubic-bezier(.85,0,.15,1),opacity .8s linear .1s;
}
.menuBox .flexBox {
	height: 100%;
}
.menuBox .photo {
	width: 50.5%;
	height: 100%;
	clip-path: inset(0 0 100% 0);
	will-change: clip-path;
}
.menuBox .photo.down {
	clip-path: inset(0);
	transition: clip-path 1.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.1s;
}
.menuBox .photo.up {
	clip-path: inset(100% 0 0 0);
	transition: clip-path 1.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.1s;
}
.menuBox .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.menuBox .rBox {
	padding: 14rem 7.8rem 10rem;
	width: 49.5%;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
}
.menuBox .rBox::before,
.menuBox .rBox::after {
    position: fixed;
    content: "";
    top: 0;
    right: 0;
    width: 49.5%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    background-color: #fff;
	z-index: -1;
}
.menuBox .rBox::before {
    transition: 0s;
    transform: translateY(-100%);
}
.menuBox.open .rBox::before {
    transition: .8s cubic-bezier(.85,0,.15,1);
    transform: translateY(0);
}
.menuBox .rBox::after {
    transition: .8s cubic-bezier(.85,0,.15,1);
    transform: translateY(100%);
}
.menuBox.open .rBox::after {
    transition: 0s cubic-bezier(.85,0,.15,1) .8s;
    transform: translateY(0);
}
.menuBox .rBox .subBox {
	opacity: 0;
    transition: .5s;
}
.menuBox.open .rBox .subBox {
	opacity: 1;
}
.menuBox .rBox .subBox .menuLogo {
	margin-bottom: 4.2rem;
	width: 20.3rem;
	opacity: 0;
    transition: opacity 0.5s;
}
.menuBox.open .rBox .subBox .menuLogo {
	opacity: 1;
}
.menuBox .rBox .subBox .menuList {
	margin-bottom: 5rem;
}
.menuBox .rBox .subBox .menuList li:not(:last-child) {
	margin-bottom: 0.9rem;
}
.menuBox .rBox .subBox .menuList li a,
.menuBox .rBox .subBox .subLinkUl li a {
	display: inline-block;
	overflow: hidden;
}
.menuBox .rBox .subBox .menuList li a span,
.menuBox .rBox .subBox .subLinkUl li a span {
	display: block;
	transition: transform .8s cubic-bezier(.85, 0, .15, 1) .05s;
	transform: translateY(100%);
}
.menuBox.open .rBox .subBox .menuList li a span,
.menuBox.open .rBox .subBox .subLinkUl li a span {
	transform: none;
}
.menuBox .rBox .subBox .menuList li a:hover,
.menuBox .rBox .subBox .subLinkUl li a:hover {
	opacity: 0.7 !important;
}
.menuBox .rBox .subBox .menuList li a {
	font-size: 2.8rem;
}
.menuBox .rBox .subBox .subLinkUl {
	margin-bottom: 3.4rem;
}
.menuBox .rBox .subBox .subLinkUl li a {
	font-size: 1.5rem;
}
.menuBox .rBox .subBox .snsUl,
.menuBox .rBox .subBox .linkUl {
	opacity: 0;
    transition: .8s cubic-bezier(.85, 0, .15, 1) .6s;
}
.menuBox.open .rBox .subBox .snsUl,
.menuBox.open .rBox .subBox .linkUl {
	opacity: 1;
}
.menuBox .rBox .subBox .snsUl {
	margin-bottom: 1.1rem;
}
.menuBox .rBox .subBox .snsUl li {
	margin-right: 2.4rem;
}
.menuBox .rBox .subBox .snsUl li svg {
	width: 1.4rem;
	height: 1.4rem;
}
.menuBox .rBox .subBox .snsUl li svg path {
    fill: #000;
}
.menuBox .rBox .subBox .snsUl li a:hover {
	opacity: 0.7;
}
.menuBox .rBox .subBox .linkUl {
	gap: 0 4rem;
	max-width: 45rem;
	transition-delay: .7s;
}
.menuBox .rBox .subBox .linkUl li {
    width: 20rem;
}
.menuBox .rBox .subBox .linkUl li:last-child {
	margin-right: 0;
}
.menuBox .rBox .subBox .linkUl li svg {
    width: 1.4rem;
    height: 1.4rem;
}
.menuBox .rBox .subBox .linkUl li a {
    padding: 2.7rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    letter-spacing: 0.012em;
    text-align: left;
    border-bottom: 2px solid #282828;
}
.menuBox .rBox .subBox .linkUl li a .hoverText {
	position: relative;
    display: block;
    overflow: hidden;
}
.menuBox .rBox .subBox .linkUl li a .hoverText.spec {
	letter-spacing: -0.02em;
}
.menuBox .rBox .subBox .linkUl li a .itemText {
	display: block;
    font-weight: normal;
    transition: transform .6s cubic-bezier(.85, 0, .15, 1), -webkit-transform .6s cubic-bezier(.85, 0, .15, 1);
    backface-visibility: hidden;
}
.menuBox .rBox .subBox .linkUl li a .itemText:nth-child(2) {
	position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: translateY(100%);
}
@media all and (min-width: 897px) {
	#gHeader .menu:hover {
		opacity: 0.7;
	}
	.menuBox .rBox .subBox .linkUl li a:hover .itemText:first-child {
		transform: translateY(-100%);
        transition: transform .6s cubic-bezier(.85, 0, .15, 1), -webkit-transform .6s cubic-bezier(.85, 0, .15, 1);
	}
	.menuBox .rBox .subBox .linkUl li a:hover .itemText:nth-child(2) {
		transform: translateY(0);
        transition: transform .6s cubic-bezier(.85, 0, .15, 1), -webkit-transform .6s cubic-bezier(.85, 0, .15, 1);
	}
}
@media all and (max-width: 896px) {
	#gHeader .hBox {
		padding: 1.9rem;
	}
	#gHeader .hBox h1 {
		width: 8.2rem;
	}
	#gHeader .menu {
		top: 2rem;
		right: 2rem;
		height: 1rem;
		width: 2rem;
	}	
	#gHeader .menu span:nth-of-type(2) {
		top: 0.5rem;
	}	
	#gHeader .menu span:nth-of-type(3) {
		top: 1rem;
	}
	#gHeader .menu.on .top {
		transform: translateY(0.5rem) translateX(0) rotate(45deg);
	}
	#gHeader .menu.on .bottom {
		transform: translateY(-0.5rem) translateX(0) rotate(-45deg);
	}
	.menuBox .flexBox {
		display: block;
	}
	.menuBox .rBox {
		padding: 5rem 2rem 10rem;
		width: auto;
	}
	.menuBox .rBox::before,
	.menuBox .rBox::after {
		width: 100%;
	}
	.menuBox .rBox .subBox {
		margin: 0;
		max-width: inherit;
	}
	.menuBox .rBox .subBox .menuLogo {
		margin-bottom: 3rem;
		width: 10rem;
	}
	.menuBox .rBox .subBox .menuList {
		margin-bottom: 5.3rem;
	}
	.menuBox .rBox .subBox .menuList li:not(:last-child) {
		margin-bottom: 0.5rem;
	}
	.menuBox .rBox .subBox .menuList li a {
		font-size: 2.1rem;
		letter-spacing: 0.04em;
	}
	.menuBox .rBox .subBox .subLinkUl {
		margin-bottom: 3.5rem;
	}
	.menuBox .rBox .subBox .subLinkUl li:not(:last-child) {
		margin-bottom: 0.7rem;
	}
	.menuBox .rBox .subBox .snsUl li {
		margin-right: 1.5rem;
	}
	.menuBox .rBox .subBox .snsUl li svg {
		width: 1.1rem;
		height: 1.1rem;
	}
	.menuBox .rBox .subBox .linkUl {
		gap: 0;
		max-width: inherit;
		justify-content: space-between;
	}
	.menuBox .rBox .subBox .linkUl li {
		width: calc((100% - 2rem) / 2);
	}
	.menuBox .rBox .subBox .linkUl li svg {
		width: 1.1rem;
		height: 1.1rem;
	}
	.menuBox .rBox .subBox .linkUl li a {
		padding: 2rem 0;
		font-size: 1.7rem;
		letter-spacing: 0;
	}
	.menuBox .rBox .subBox .linkUl li a .hoverText {
		font-size: 1.5rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	margin-top: 9.2rem;
	padding: 8.5rem 0 2.1rem;
	background-color: #1F2529;
}
#gFooter .fBox {
	margin: 0 auto 13.1rem;
	padding: 0 2rem;
	max-width: 144rem;
}
#gFooter .fBox .lBox {
	padding-top: 0.1rem;
	width: 30rem;
}
#gFooter .fBox .fLogo {
	margin-bottom: 4rem;
	width: 19.1rem;
}
#gFooter .fBox .fLogo a {
	display: block;
}
#gFooter .fBox .lBox .snsList {
	gap: 1.2rem;
}
#gFooter .fBox .lBox .snsList li {
	width: 3.2rem;
}
#gFooter .fBox .lBox .snsList li a:hover {
	opacity: 0.7;
}
#gFooter .fBox .rBox {
	width: calc(100% - 32.2rem);
	color: #FFF;
}
#gFooter .fBox .rBox .linkList {
	padding-right: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#gFooter .fBox .rBox .linkList > li:nth-child(3) {
	width: 45.8rem;
}
#gFooter .fBox .rBox .linkList > li .title {
	margin-bottom: 2.7rem;
	letter-spacing: 0.1em;
}
#gFooter .fBox .rBox .linkList .subUl li {
	line-height: 1.45;
}
#gFooter .fBox .rBox .linkList .subUl li a {
	color: #FFF;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}
#gFooter .fBox .rBox .linkList .subUl li a:hover {
	opacity: 0.7;
}
#gFooter .fBox .rBox .linkList .linkUl {
	margin: 3.5rem 0 0 -0.2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}
#gFooter .fBox .rBox .linkList .linkUl li {
	width: calc((100% - 2rem) / 2);
}
#gFooter .fBox .rBox .linkList .linkUl li a {
	padding: 1.1rem 2.6rem 1.2rem 2.1rem;
	min-height: 5rem;
	color: #FFF;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 1.6rem;
	font-weight: normal;
	border: 1px solid #FFF;
	letter-spacing: 0.1em;
	background: url(../img/common/icon03.png) no-repeat right 1.5rem center / 1rem;
	box-sizing: border-box;
}
#gFooter .fBox .rBox .linkList .linkUl li a:hover {
	opacity: 0.7;
}
#gFooter address {
	color: #FFF;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "游明朝","YuMincho","Hiragino Mincho Pro","MS PMincho","ＭＳ Ｐ明朝","ヒラギノ明朝 Pro W6",serif;
	text-align: center;
}
@media all and (max-width: 896px) {
	#gFooter {
		margin-top: 5rem;
		padding: 4rem 0 2rem;
	}
	#gFooter .fBox {
		margin: 0 0 4rem;
		padding: 0 2.6rem;
		display: block;
		max-width: inherit;
	}
	#gFooter .fBox .lBox {
		margin-bottom: 3rem;
		padding-top: 0;
		width: auto;
	}
	#gFooter .fBox .fLogo {
		margin: 0 auto 2rem;
		width: 10rem;
	}
	#gFooter .fBox .lBox .snsList {
		justify-content: center;
	}
	#gFooter .fBox .lBox .snsList li {
		width: 2.6rem;
	}
	#gFooter .fBox .rBox {
		width: auto;
	}
	#gFooter .fBox .rBox .linkList {
		padding-right: 0;
		display: block;
	}
	#gFooter .fBox .rBox .linkList > li:not(:last-child) {
		margin-bottom: 2rem;
	}
	#gFooter .fBox .rBox .linkList > li:nth-child(3) {
		width: auto;
	}
	#gFooter .fBox .rBox .linkList > li .title {
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
	#gFooter .fBox .rBox .linkList .subUl li a {
		padding: 0.5rem;
		display: block;
		font-size: 1.4rem;
	}
	#gFooter .fBox .rBox .linkList .linkUl {
		margin: 0;
		display: block;
	}
	#gFooter .fBox .rBox .linkList .linkUl li {
		margin: 2rem auto 1.3rem;
		width: auto;
		max-width: 30rem;
	}
	#gFooter .fBox .rBox .linkList .linkUl li:last-child {
		margin-bottom: 0;
	}
	#gFooter address {
		font-size: 1.2rem;
	}
}