@charset "UTF-8";
/* CSS Document */
#gnav_btn_wrap {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 999;
	width: 65px;
	height: 65px;
}
#gnav_btn {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #543C22;
	color: #fff;
	z-index: 99;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 1px solid #543C22;
}
#gnav_btn.clicked {
	background: #fff;
}
.ico_hanbarger {
	position: absolute;
	display: block;
	width: 26px;
	height: 11px;
	top: 19px;
	left: 50%;
	transform: translateX(-50%);
}
#gnav_btn_txt {
	margin-top: 22px;
	font-size: 1.3rem;
	letter-spacing: -0.05em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
}
.ico_hanbarger_item {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform-origin: center;
	transition: all .3s;
	border-radius: 2px;
}
.ico_hanbarger_item:nth-child(1) {
	top: 0;
	transform: translate(-50%, 0);
}
.ico_hanbarger_item:nth-child(2) {
	bottom: 0;
	transform: translate(-50%, 0);
}
.clicked .ico_hanbarger_item:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	width: 26px;
	top: 46%;
	left: 48%;
}
.clicked .ico_hanbarger_item:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 26px;
	top: 46%;
	bottom: auto;
	left: 48%;
}
.clicked .ico_hanbarger_item {
	background: #543C22;
}
.clicked #gnav_btn_txt {
	color: #543C22;
}

/* グローバルナビゲーション */
body.fixed {
	overflow: hidden;
}
.gnav_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s, transform .5s;
	transform: translateY(-50px);
	pointer-events: none!important;
	z-index: 6;
}
.gnav_wrap.visible {
	opacity: 1;
	transition: opacity .5s, transform .5s;
	transform: translateY(0);
	pointer-events: auto!important;
	z-index: 6;
}
.gnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: scroll;
	z-index: 0;
	padding: 15px 0 90px;
	box-sizing: border-box;
	background: #FCF5EC;
}
.gnav_bg {
	display: none;
}
.gnav_in {
	width: 92%;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: #fff;
	border-radius: 10px;
	padding: 20px 6% 30px 6%;
}
.gnav_list_in {
	padding: 20px 10px 15px 10px;
	box-sizing: border-box;
	font-size: 0;
	position: relative;
	border-bottom: 1px dashed #543C22;
	margin-bottom: 10px;
}
.gnav_list_in::before,
.gnav_list_in::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	background: #543C22;
	position: absolute;
	right: 10px;
	top: 51%;
	transition: transform .5s;
	border-radius: 2px;
}
.ico_none .gnav_list_in::before,
.ico_none .gnav_list_in::after {
	content: none;
}
.gnav_list_in::before {
	transform: translateY(calc(-50% + 2.5px));
}
.gnav_list_in::after {
	transform: translateY(calc(-50% + 2.5px)) rotate(90deg);
}
.gnav_list_in.clicked::before {
	transform: translateY(calc(-50% + 2.5px)) rotate(45deg);
}
.gnav_list_in.clicked::after {
	transform: translateY(calc(-50% + 2.5px)) rotate(135deg);
}
.gnav_list_in a {
	font-size: 2rem;
	color: #543C22;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
	font-family: "Zen Maru Gothic", serif;
}
.gnav_li_child {
	display: none;
	padding: 10px 0 10px 10px;
	background: #F5F3F1;
	border-radius: 6px;
}
.gnav_list_child , .gnav_list_grandchild {
	margin: 6px 0;
}
.gnav_list_child a , .gnav_list_grandchild a {
	font-size: 1.8rem;
	font-weight: normal;
	text-decoration: none;
	line-height: 1;
	position: relative;
	padding-left: 13px;
	color: #543C22;
	font-family: "Zen Maru Gothic", serif;
}
body.is_fixed {
	overflow: hidden;
}

.gnav_list.head_logo img {
	width: calc(90% - 70px);
	height: auto;
	margin-bottom: 20px;
}
.grandchild_list {
	position: relative;
	padding-top: 5px;
	margin-top: 5px;
	margin-left: 15px;
}
.grandchild_list::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0;
	border-right: 1px dashed #543C22;
}

.gnav_list02 ul {
	width: 90%;
	margin: 25px auto 40px auto;
}
.gnav_list02 li {
	margin: 10px auto;
}
.gnav_list02 li a,.gnav_list02 li label {
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	background: #e5f4fa;
	border-radius: 25px;
	color: #543C22;
	font-weight: bold;
	position: relative;
	font-size: 1.6rem;
	padding-right: 10px;
	padding-left: 30px;
	line-height: 1;
}
.gnav_list02 li a img,.gnav_list02 li label img {
	margin-right: 0.7em;
}
.gnav_list02 li a i {
	color: #543C22;
	font-size: 1.4rem;
	position: absolute;
	right: 10px;
}
.gnav_list_wrap li:nth-child(5) .gnav_list_in:after, .gnav_list_wrap li:nth-child(5) .gnav_list_in:before,
.gnav_list_wrap li:nth-child(6) .gnav_list_in:after, .gnav_list_wrap li:nth-child(6) .gnav_list_in:before,
.gnav_list_wrap li:nth-child(7) .gnav_list_in:after, .gnav_list_wrap li:nth-child(7) .gnav_list_in:before,
.gnav_list_wrap li:nth-child(8) .gnav_list_in:after, .gnav_list_wrap li:nth-child(8) .gnav_list_in:before,
.gnav_list_wrap li:nth-child(9) .gnav_list_in:after, .gnav_list_wrap li:nth-child(9) .gnav_list_in:before {
	display: none;
}


@media screen and (min-width: 640px) {
	/* グローバルナビゲーション */
	#gnav_btn {
		right: 20px;
		top: 20px;
		width: 100px;
		height: 100px;
		transition: 0.6s;
	}
	#yoyaku_btn {
		position: fixed;
		right: 20px;
		top: 130px;
		z-index: 99;
	}
	#yoyaku_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		line-height: 1.4;
		background: #E7532E;
		width: 102px;
		height: 102px;
		border-radius: 50%;
		transition: 0.6s;
		color: #fff;
		font-family: "Zen Maru Gothic", serif;
		font-size: 1.6rem;
	}
	#gnav_btn:hover {
		background: #E38E2E;
		border-color: #E38E2E;
		cursor: pointer;
	}
	#yoyaku_btn a:hover {
		background: #E38E2E;
	}
	#yoyaku_btn.hidden a {
		background: none;
	}
	#yoyaku_btn.hidden a:hover {
		opacity: 0.8;
	}
	#gnav_btn.clicked {
		background: #fff;
	}
	#gnav_btn.clicked:hover {
		opacity: 0.8;
	}
	.ico_hanbarger {
		position: absolute;
		display: block;
		width: 40px;
		height: 14px;
		top: 32px;
		left: 50%;
		transform: translateX(-50%);
	}
	#gnav_btn_txt {
		margin-top: 30px;
		font-size: 1.6rem;
	}
	.ico_hanbarger_item {
		height: 2px;
		border-radius: 2px;
	}
	.clicked .ico_hanbarger_item:nth-child(1) {
		transform: translate(-50%, -50%) rotate(45deg);
		width: 35px;
	}
	.clicked .ico_hanbarger_item:nth-child(2) {
		width: 35px;
	}
	.clicked .ico_hanbarger_item {
		background: #543C22;
	}
	.gnav_in {
		width: 1100px;
		display: flex;
		justify-content: space-between;
		padding: 130px 0px 60px 70px;
	}
	.gnav {
		height: 572px;
		padding: 60px 0 0;
		overflow: hidden;
  	}
	.gnav a:hover {
		color: #E48E2F;
	}
	.gnav::before,
	.gnav::after {
		display: none;
	}
	.gnav_bg {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(80, 60, 34, .4);
		position: absolute;
		top: 572px;
		left: 0;
	}
	.gnav_li_child , .gnav_list_grandchild {
		display: block;
	}
	.gnav_list {
		float: left;
		width: 210px;
		margin-right: 40px;
	}
	.gnav_list:nth-of-type(5) , .gnav_list:nth-of-type(6) , .gnav_list:nth-of-type(7) {
		margin-right: 0;
	}
	.grandchild_list::before {
		width: 1px;
		height: 100%;
	}
	.gnav_li_child {
		text-align: left;
		padding: 10px 0;
		background: none;
		margin-left: 1.5em;
	}
	.gnav_list_child a {
		padding-left: 0;
		font-size: 1.6rem;
	}
	.gnav_list_child a:hover {
		color: #E48E2F;
	}
	.grandchild_list {
		margin-left: 0;
		padding-left: 20px;
		position: relative;
	}
	.gnav_list_grandchild {
		text-align: left;
	}
	.gnav_list_in::before, .gnav_list_in::after {
		content: none;
	}
	.gnav_list_in {
		padding: 20px 10px 10px 10px;
		pointer-events: none;
		-webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
	}
	.gnav_wrap .gnav_list_in a {
		font-size: 1.8rem;
	}
	.gnav_wrap.visible .gnav_list_in a {
		pointer-events: auto;
	}
	.gnav_wrap.visible .gnav_list_in a:hover {
		color: #E48E2F;
	}
	.gnav_wrap.visible .gnav_list_in:hover {
		border-bottom: 1px dashed #E48E2F;
	}
	.gnav_list02 {
		flex: 1;
		margin-top: 110px;
	}
	.gnav_list02 li {
		margin: 15px auto;
	}
	.gnav_list02 li a:hover,.gnav_list02 li label:hover {
		color: #1C4388;
		background: #c5f09f;
	}
	.gnav_list.head_logo {
		position: absolute;
		top: 40px;
		left: 40px;
		width: 380px;
	}
	.gnav_list.head_logo img {
		width: 380px;
	}
	
}

