@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
	position: relative;
	width: 100%;
	margin: 0;
	color: #000;
	font-size: 15px;
	line-height: 1.5;
/*	text-align: justify;*/
}
html[lang=ja] body {
	font-family: "Yu Mincho", "YuMincho", serif;
	letter-spacing: 0.1em;
}
html[lang=en] body {
	font-family: "Yu Mincho", "YuMincho", serif;
	letter-spacing: 0.1em;
}
html[lang=zh] body {
	font-family: 'Noto Serif SC', serif;
	letter-spacing: 0.1em;
}
html[lang=ko] body {
	font-family: 'Noto Serif KR', serif;
	letter-spacing: 0.1em;
}
:root {
	--vw: 1vw;
}
@media (max-width: 519px) {
}


/* --------------- .wrapper --------------- */
.wrapper {
	/*position: relative;*/
	/*z-index: 1;*/
	max-width: 1240px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}
.wrapper.col2 {
	display: flex;
	justify-content: space-between;
	padding-top: 60px;
}
.wrapper.col2 > .main {
	max-width: calc(100% - 260px);
	width: 900px;
	padding-top: 40px;
}
.wrapper.col2 > .sidebar {
	flex-shrink: 0;
	width: 240px;
	padding-top: 20px;
	padding-bottom: 20px;
}
@media (max-width: 959px) {
	.wrapper.col2 {
		display: block;
		padding-top: 0;
	}
	.wrapper.col2 > .main {
		max-width: 100%;
	}
	.wrapper.col2 > .sidebar {
		width: 100%;
		margin-top: 100px;
		margin-left: 0;
	}
}
@media (max-width: 519px) {
	.wrapper.col2 > .sidebar {
		width: calc(100% - 40px);
		margin-top: 80px;
		margin-left: 20px;
		padding-left: 25px;
		padding-right: 25px;
		background-color: #fff;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
		border-radius: 20px;
	}
}


/* --------------- .btn --------------- */
.btn {
	position: relative;
	display: inline-block;
	padding-left: 32px;
	font-size: 16px;
}
.btn::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	display: block;
	width: 7px;
	height: 7px;
	margin-top: auto;
	margin-bottom: auto;
	background-color: #9B8A5D;
	border-radius: 10px;
	transition: all ease 0.3s;
}
.btn:hover::before {
	left: 8px;
	width: 11px;
	height: 11px;
}
@media (max-width: 519px) {
	.btn {
		font-size: 14px;
	}
}


/* --------------- .tbl --------------- */
.tbl {
	width: 100%;
}
.tbl th,
.tbl td {
	padding: 20px 10px;
	border-bottom: 1px solid #ddd;
}
.tbl th {
	padding-left: 20px;
	vertical-align: middle;
}
.tbl td {
	padding-right: 20px;
}
@media (max-width: 519px) {
	.tbl th,
	.tbl td {
		display: block;
		padding: 20px 0;
	}
	.tbl th {
		padding-bottom: 0;
		margin-bottom: 5px;
		border-bottom: none;
	}
	.tbl td {
		padding-top: 0;
	}
}


/* --------------- .ul .ol --------------- */
.ol,
.ul {
	color: #015290;
}
.ol {
	list-style-type: decimal;
}
.ul {
	list-style-type: disc;
}
.ul li,
.ol li {
	margin-left: 15px;
	line-height: 2;
}
.ul li span,
.ol li span {
	color: #000;
}




/* ---------------------------------------------------------
 * header
** --------------------------------------------------------- */
#header {
	position: fixed;
	top: 10px;
	left: 20px;
	z-index: 2000;
	display: flex;
	align-items: center;
}
@media (max-width: 519px) {
	#header {
		top: 0;
		left: 0;
	}
}

/* gnavi_btn */
.gnavi_btn {
	position: relative;
	z-index: 10;
	display: inline-block;
	align-items: center;
	align-self: center;
	padding: 20px;
	transition: all 0.4s ease;
	cursor: pointer;
}
.gnavi_btn.open {
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
.menu-trigger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 32px;
	height: 24px;
}
.menu-trigger span {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #fff;
	box-shadow: 0px 0px 5px #00000080;
}
.gnavi_btn.open .menu-trigger span {
	background-color: #9B8A5D;
	box-shadow: 0px 0px 0 #00000080;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
	top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
	bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
	top: 50%;
	transform-origin: center;
	transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
	bottom: 50%;
	transform-origin: center;
	transform: translateY(50%) rotate(45deg);
}
@media (max-width: 1099px) {
	.gnavi_btn {
		display: flex;
	}
}
@media (max-width: 699px) {
	.gnavi_btn {
		margin-left: 10px;
		margin-right: -10px;
	}
}
@media (max-width: 519px) {
	.gnavi_btn {
		margin: 0;
	}
}

/* .reservation */
#header > .reservation {
	margin-left: 20px;
	color: #fff;
	font-size: 18px;
	text-shadow: 0px 0px 5px #00000080;
}
#header > .reservation svg {
	margin-bottom: 3px;
	margin-right: 10px;
}
@media (max-width: 519px) {
	#header > .reservation {
		display: none;
	}
}

/* .gnavi */
#header .gnavi {
	position: fixed;
	z-index: 5;
	top: 0;
	right: 100%;
	display: flex;
	width: 100%;
	height: 100vh;
	transition: all ease 0.3s;
}
#header .gnavi.active {
	right: 0;
}
#header .gnavi .left {
	width: 400px;
	padding: 35px;
	background-color: #fff;
}
#header .gnavi .left h3 {
	color: #9B8A5D;
	text-align: center;
	letter-spacing: 3px;
}
#header .gnavi .left ul {
	width: 150px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}
#header .gnavi .left li {
}
#header .gnavi .left li:not(:first-child) {
	margin-top: 30px;
}
#header .gnavi .left li a {
	position: relative;
	display: block;
	height: 32px;
	padding-left: 20px;
	font-size: 16px;
	line-height: 32px;
	transition: all ease 0.3s;
}
#header .gnavi .left li a:hover {
	color: #9B8A5D;
}
#header .gnavi .left li a {}
#header .gnavi .left li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	width: 10px;
	height: 1px;
	margin-top: auto;
	margin-bottom: auto;
	background: #B2A278;
}
#header .gnavi .left .overall_link {
	margin-top: 50px;
}
#header .gnavi .left .overall_link a {
	display: block;
	height: 70px;
	background-color: #968556;
	color: #fff;
	font-size: 18px;
	text-align: center;
	line-height: 70px;
	letter-spacing: 0;
	transition: all ease 0.3s;
}
#header .gnavi .left .overall_link a:hover {
	opacity: 0.8;
}
#header .gnavi .left .overall_link a svg {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}
@media (max-width: 519px) {
	#header .gnavi {
		display: block;
		overflow: auto;
	}
	#header .gnavi .left {
		width: 100%;
		padding: 23px 20px 35px;
	}
	#header .gnavi .left ul {
		margin: 30px 30px 0;
	}
	#header .gnavi .left li:not(:first-child) {
		margin-top: 20px;
	}
	#header .gnavi .left a {
		font-size: 15px;
	}
}
#header .gnavi .right {
	display: flex;
	justify-content: center;
	width: 550px;
	padding-top: 155px;
	background-color: rgba(0,0,0,0.8);
	color: #fff;
}
#header .gnavi .right .inner {
	width: 400px;
}
#header .gnavi .right .reservation,
#header .gnavi .right .cancel,
#header .gnavi .right .contact {
	position: relative;
	display: block;
	padding: 0 15px 0 60px;
	background-color: #5F5436;
	border: 1px solid #CBC5B7;
	font-size: 18px;
	line-height: 78px;
	letter-spacing: 0;
	transition: all ease 0.3s;
}
#header .gnavi .right .reservation:hover,
#header .gnavi .right .cancel:hover,
#header .gnavi .right .contact:hover {
	opacity: 0.8;
}
#header .gnavi .right .reservation::before,
#header .gnavi .right .reservation::after,
#header .gnavi .right .cancel::before,
#header .gnavi .right .cancel::after,
#header .gnavi .right .contact::before,
#header .gnavi .right .contact::after {
	content: "";
	position: absolute;
	bottom: 38px;
	display: block;
}
#header .gnavi .right .reservation::before,
#header .gnavi .right .cancel::before,
#header .gnavi .right .contact::before {
	right: -50px;
	width: 90px;
	height: 1px;
	background-color: #CBC5B7;
}
#header .gnavi .right .reservation::after,
#header .gnavi .right .cancel::after,
#header .gnavi .right .contact::after {
	right: -52px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 0 8px;
	border-color: transparent transparent transparent #CBC5B7;
}
#header .gnavi .right .reservation svg,
#header .gnavi .right .cancel svg,
#header .gnavi .right .contact svg {
	margin-top: -5px;
	vertical-align: middle;
}
#header .gnavi .right .reservation {
}
#header .gnavi .right .reservation svg {
	margin-right: 7px;
}
#header .gnavi .right .cancel {
	margin-top: 35px;
}
#header .gnavi .right .cancel svg {
	margin-right: 10px;
}
#header .gnavi .right .contact {
	margin-top: 35px;
}
#header .gnavi .right .contact svg {
	margin-right: 5px;
}
#header .gnavi .right .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
#header .gnavi .right .sns .ttl {
	font-size: 13px;
	line-height: 1;
}
#header .gnavi .right .sns a {
	display: block;
	margin-left: 15px;
}
#header .gnavi .right .sns a svg {
}
#header .gnavi .lang {
	position: relative;
	margin-bottom: 50px;
}
#header .gnavi .lang::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	display: block;
	width:0;
	height:0;
	margin-top: auto;
	margin-bottom: auto;
	border-style:solid;
	border-width: 17.32px 10px 0 10px;
	border-color: #B2A278 transparent transparent transparent;
	pointer-events: none;
}
#header .gnavi .lang select {
	width: 100%;
	height: 78px;
	padding-left: 90px;
	background-color: #fff;
	border: 1px solid #888;
	color: #000;
	font-size: 18px;
	cursor: pointer;
}
#header .gnavi .lang svg {
	position: absolute;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	left: 50px;
}
@media (max-width: 519px) {
	#header .gnavi .right {
		width: 100%;
		padding: 60px 20px 100px;
	}
	#header .gnavi .right .inner {
		width: 100%;
	}
	#header .gnavi .right .reservation,
	#header .gnavi .right .cancel,
	#header .gnavi .right .contact {
		position: relative;
		display: block;
		padding: 0 15px 0 20px;
		background-color: #5F5436;
		border: 1px solid #CBC5B7;
		font-size: 16px;
		line-height: 70px;
	}
	#header .gnavi .right .reservation::before,
	#header .gnavi .right .reservation::after,
	#header .gnavi .right .cancel::before,
	#header .gnavi .right .cancel::after,
	#header .gnavi .right .contact::before,
	#header .gnavi .right .contact::after {
		bottom: 28px;
	}
	#header .gnavi .right .reservation::before,
	#header .gnavi .right .cancel::before,
	#header .gnavi .right .contact::before {
		right: -10px;
		width: 40px;
	}
	#header .gnavi .right .reservation::after,
	#header .gnavi .right .cancel::after,
	#header .gnavi .right .contact::after {
		right: -12px;
	}
	#header .gnavi .right .cancel,
	#header .gnavi .right .contact {
		margin-top: 20px;
	}
	#header .gnavi .lang {
		margin-bottom: 0;
		margin-top: 30px;
	}
	#header .gnavi .lang select {
		height: 70px;
	}
}
#header .gnavi .img {
	position: relative;
	width: calc(100% - 950px);
}
#header .gnavi .img img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
	opacity: 0;
	transition: all ease 0.3s;
}
#header .gnavi .img img.def {
	opacity: 1;
}
#header .gnavi .img .active {
	opacity: 1;
}
@media (max-width: 519px) {
	#header .gnavi .img {
		display: none;
	}
}




/* ---------------------------------------------------------
 * Common contents parts
** --------------------------------------------------------- */
/* --------------- .breadcrumb --------------- */
.breadcrumb {
}
.breadcrumb ul {
	display: flex;
	margin-top: 10px;
}
.breadcrumb li {
	flex-shrink: 0;
	color: #666;
	font-size: 12px;
}
.breadcrumb li:not(:last-child) {
	position: relative;
	padding-right: 40px;
}
.breadcrumb li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: -2px;
	bottom: 0;
	right: 15px;
	display: block;
	width: 7px;
	height: 7px;
	margin-top: auto;
	margin-bottom: auto;
	border-top: 1px solid #728390;
	border-right: 1px solid #728390;
	transform-origin: center;
	transform: rotate(45deg);
}
.breadcrumb li:last-child {
	flex-shrink: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.breadcrumb li a {
	color: #666;
}
@media (max-width: 519px) {
}


/* --------------- .ttl_deco --------------- */
.ttl_deco {
	position: relative;
}
.ttl_deco::before,
.ttl_deco::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ttl_deco.t::before,
.ttl_deco.t::after {
	top: 0;
}
.ttl_deco.b::before,
.ttl_deco.b::after {
	top: 100%;
}
.ttl_deco::before {
	width: 70px;
	height: 1px;
	background-color: #B2A278;
}
.ttl_deco::after {
	width: 10px;
	height: 2px;
	background-color: #6D5D31;
}
@media (max-width: 519px) {
}


/* --------------- .scroll --------------- */
.scroll {
	position: relative;
	overflow: auto;
	white-space: nowrap;
}
.scroll::before {
	content: "左右にスクロールできます";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 40px;
	margin: auto;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	opacity: 1;
	transition: all 0.3s ease;
	pointer-events: none;
}
.scroll.scrolled::before {
	opacity: 0;
}


/* --------------- .pagination --------------- */
.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
.pagination > * {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #E2DCCD;
	border-radius: 100px;
	color: #fff;
}
.pagination a {
	position: relative;
	color: #000;
	outline: none;
	transition: all ease 0.3s;
}
.pagination a:hover {
	color: #fff;
	background-color: #B2A278;
}
.pagination .disabled {
}
.pagination .active {
	background-color: #B2A278;
}
.pagination .prev,
.pagination .next {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagination .prev::before,
.pagination .next::before,
.pagination .prev::after,
.pagination .next::after {
	content: "";
	position: absolute;
	bottom: 18px;
	display: block;
}
.pagination .prev::before,
.pagination .next::before {
	width: 16px;
	height: 1px;
	margin-left: auto;
	margin-right: auto;
	background-color: #000;
}
.pagination .prev::after,
.pagination .next::after {
	width: 0;
	height: 0;
	border-style: solid;
}
.pagination .prev::after {
	left: 12px;
	border-width: 4px 7px 0 0;
	border-color: transparent #000 transparent transparent;
}
.pagination .next::after {
	right: 12px;
	border-width: 4px 0 0 7px;
	border-color: transparent transparent transparent #000;
}
.pagination .prev.disabled::before,
.pagination .next.disabled::before,
.pagination .prev:hover::before,
.pagination .next:hover::before {
	background-color: #fff;
}
.pagination .prev.disabled::after,
.pagination .prev:hover::after {
	border-color: transparent #fff transparent transparent;
}
.pagination .next.disabled::after,
.pagination .next:hover::after {
	border-color: transparent transparent transparent #fff;
}
@media (max-width: 519px) {
	.pagination > * {
		width: 40px;
		height: 40px;
	}
}


/* --------------- .not_found --------------- */
/* 記事やイベントが見つからなかった時の表示 */
.not_found {
	margin-top: 50px;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * footer
** --------------------------------------------------------- */
/* --------------- .footer_img --------------- */
#footer .footer_img {
	width: 100%;
	height: 340px;
}
#footer .footer_img img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
@media (max-width: 519px) {
	#footer .footer_img {
		height: 220px;
	}
}


/* --------------- .hotels --------------- */
#footer .hotels {
	margin-top: 120px;
	text-align: center;
}
#footer .hotels h2 {
	color: #9B8A5D;
	font-size: 28px;
}
#footer .hotels .subttl {
	font-size: 20px;
}
#footer .hotels .ttl_en {
	margin-top: 10px;
	padding-top: 15px;
	color: #666;
	font-size: 13px;
}
#footer .hotels .subttl + .ttl_en {
	margin-top: 20px;
}
#footer .hotels .lead {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 62px;
	margin-top: 40px;
	border-top: 2px solid #E2DCCD;
	border-bottom: 2px solid #E2DCCD;
	color: #6D5D31;
	font-size: 28px;
}
#footer .hotels .lead span {
	font-size: 40px;
}
#footer .hotels .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 40px;
}
#footer .hotels .list a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(58500% / 1200);
	height: 150px;
	color: #fff;
}
#footer .hotels .list a:nth-child(1) {
	background-image: url("../img/footer_sunplaza.jpg");
}
#footer .hotels .list a:nth-child(2) {
	background-image: url("../img/footer_sunplaza2.jpg");
}
#footer .hotels .list a:nth-child(3) {
	margin-top: calc(3000% / 1200);
	background-image: url("../img/footer_annex.jpg");
}
#footer .hotels .list a:nth-child(4) {
	margin-top: calc(3000% / 1200);
	background-image: url("../img/footer_zipang.jpg");
}
#footer .hotels .list .feature {
	font-size: 16px;
}
#footer .hotels .list .ttl {
	font-size: 24px;
}
@media (max-width: 519px) {
	#footer .hotels {
		margin-top: 80px;
		padding-left: 0;
		padding-right: 0;
	}
	#footer .hotels h2 {
		font-size: 24px;
	}
	#footer .hotels .subttl {
		font-size: 18px;
	}
	#footer .hotels .lead {
		display: block;
		width: calc(100% - 40px);
		height: auto;
		margin-top: 30px;
		padding: 10px 0 12px;
		margin-left: 20px;
		margin-right: 20px;
		border-top: 1px solid #E2DCCD;
		border-bottom: 1px solid #E2DCCD;
		font-size: 22px;
		line-height: 1;
	}
	#footer .hotels .lead span {
		font-size: 32px;
	}
	#footer .hotels .list {
		display: block;
		margin-top: 20px;
	}
	#footer .hotels .list a {
		width: 100%;
		height: 100px;
	}
	#footer .hotels .list a:nth-child(1) {
	}
	#footer .hotels .list a:nth-child(2) {
		margin-top: 10px;
	}
	#footer .hotels .list a:nth-child(3) {
		margin-top: 10px;
	}
	#footer .hotels .list a:nth-child(4) {
		margin-top: 10px;
	}
	#footer .hotels .list .feature {
		font-size: 13px;
	}
	#footer .hotels .list .ttl {
		font-size: 20px;
	}
}


/* --------------- .footer_menu --------------- */
#footer .footer_menu {
	margin-top: 140px;
	padding-top: 50px;
	background-color: #FCFBF9;
}
#footer .footer_menu .wrapper {
	display: flex;
	justify-content: space-between;
}
/* .left */
#footer .footer_menu .left {
	display: flex;
	gap: 60px;
}
#footer .footer_menu .logo {
}
#footer .footer_menu .logo a {
}
#footer .footer_menu .logo img {
}
#footer .footer_menu .address {
}
#footer .footer_menu .address p {
}
#footer .footer_menu .address p span {
	color: #6D5D31;
}
#footer .footer_menu .address p a {
	color: #6D5D31;
	text-decoration: underline;
}
#footer .footer_menu .footer_sns {
	margin-top: 20px;
}
#footer .footer_menu .footer_sns .subttl {
	font-size: 12px;
}
#footer .footer_menu .footer_sns .list {
	display: flex;
	gap: 15px;
}
#footer .footer_menu .footer_sns .list a {
}
#footer .footer_menu .footer_sns .list svg {
}
@media (max-width: 519px) {
	#footer .footer_menu {
		margin-top: 80px;
	}
	#footer .footer_menu .wrapper {
		display: block;
	}
	/* .left */
	#footer .footer_menu .left {
		display: block;
		padding-left: 20px;
		padding-right: 20px;
	}
	#footer .footer_menu .logo {
	}
	#footer .footer_menu .logo a {
	}
	#footer .footer_menu .logo img {
	}
	#footer .footer_menu .logo img.sunplaza,
	#footer .footer_menu .logo img.sunplaza2,
	#footer .footer_menu .logo img.zipang {
		height: 36px;
	}
	#footer .footer_menu .logo img.annex {
		width: 145px;
	}
	#footer .footer_menu .address {
		margin-top: 20px;
	}
	#footer .footer_menu .address p {
		font-size: 14px;
	}
	#footer .footer_menu .footer_sns {
		margin-top: 20px;
	}
	#footer .footer_menu .footer_sns .subttl {
		padding-bottom: 5px;
		margin-bottom: 7px;
		border-bottom: 1px solid #E2DCCD;
	}
	#footer .footer_menu .footer_sns .list {
		display: flex;
		gap: 15px;
	}
	#footer .footer_menu .footer_sns .list a {
	}
	#footer .footer_menu .footer_sns .list svg {
	}
}
/* .right */
#footer .footer_menu .right {
	display: flex;
	flex-shrink: 0;
}
#footer .footer_menu .right ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-left: 40px;
}
#footer .footer_menu .right li {
}
#footer .footer_menu .right a {
	position: relative;
	padding-left: 18px;
}
#footer .footer_menu .right a:hover {
	text-decoration: underline;
}
#footer .footer_menu .right a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	display: block;
	width: 10px;
	height: 1px;
	background-color: #B2A278;
}
@media (max-width: 519px) {
	#footer .footer_menu .right {
		flex-wrap: wrap;
		justify-content: space-between;
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 40px;
	}
	#footer .footer_menu .right ul {
		gap: 20px;
		margin-left: 0;
		font-size: 13px;
	}
	#footer .footer_menu .right ul:not(:last-child) {
		width: 50%;
	}
	#footer .footer_menu .right ul:last-child {
		flex-direction: row;
		justify-content: center;
		gap: 40px;
		width: 100%;
		margin-top: 50px;
		font-size: 12px;
		text-align: center;
	}
	#footer .footer_menu .right li {
	}
	#footer .footer_menu .right a {
		position: relative;
		padding-left: 18px;
	}
	#footer .footer_menu .right a:hover {
		text-decoration: underline;
	}
	#footer .footer_menu .right a::before {
		content: "";
		position: absolute;
		left: 0;
		top: 8px;
		display: block;
		width: 10px;
		height: 1px;
		background-color: #B2A278;
	}
	#footer .footer_menu .right ul:last-child a {
		padding-left: 0;
	}
	#footer .footer_menu .right ul:last-child a::before {
		display: none;
	}
}


/* --------------- #copyright --------------- */
#footer #copyright {
	margin-top: 50px;
	padding-bottom: 20px;
	color: #9B9481;
	font-size: 11px;
	text-align: center;
}
@media (max-width: 519px) {
	#footer #copyright {
		margin-top: 20px;
		font-size: 10px;
	}
}




/* ---------------------------------------------------------
 * footer_overall.php
** --------------------------------------------------------- */
/* --------------- #company --------------- */
#company {
	padding: 100px 0 120px;
	background-color: #FCFBF9;
}
#company h2 {
	padding-top: 50px;
	border-top: 1px solid #E2DCCD;
	color: #B2A278;
	font-size: 28px;
}
#company .subttl {
	margin-top: 10px;
	color: #666;
	font-size: 13px;
}
#company .contents {
	max-width: 900px;
	margin: 60px auto 0;
}
#company table {
	width: 100%;
	border-top: 1px solid #E2DCCD;
}
#company th,
#company td {
	padding: 25px 0;
	border-bottom: 1px solid #E2DCCD;
}
#company th {
	width: 200px;
	padding-left: 25px;
	font-weight: normal;
}
#company td {
}
#company ul {
}
#company li {
	position: relative;
	margin-top: 6px;
	padding-left: 18px;
}
#company li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	display: block;
	width: 8px;
	height: 2px;
	background-color: #B2A278;
}
@media (max-width: 519px) {
	#company {
		padding: 60px 0 60px;
	}
	#company h2 {
		padding-top: 0;
		border-top: none;
		font-size: 24px;
	}
	#company .contents {
		max-width: 900px;
		margin: 40px auto 0;
	}
	#company th,
	#company td {
		display: block;
	}
	#company th {
		width: 100%;
		padding: 15px 0 0;
		border-bottom: none;
	}
	#company td {
		padding: 5px 0 15px 10px;
		font-size: 14px;
	}
}



/* --------------- #logos --------------- */
#logos {
	padding: 50px 20px;
}
#logos ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 90px;
}
#logos li {
}
#logos li img {
	max-width: 100%;
}
@media (max-width: 1099px) {
	#logos ul {
		flex-wrap: wrap;
		gap: 0;
	}
	#logos li {
		width: 50%;
		text-align: center;
	}
	#logos li:nth-child(n+3) {
		margin-top: 30px;
	}
}
@media (max-width: 519px) {
	#logos {
		padding: 60px 20px;
	}
	#logos ul {
		display: block;
	}
	#logos li {
		width: 100%;
		text-align: left;
	}
	#logos li:nth-child(n+2) {
		margin-top: 25px;
	}
}


/* --------------- #footer_recruit --------------- */
#footer_recruit {
	padding: 0 20px 80px;
}
#footer_recruit .btn_area {
	text-align: center;
}
#footer_recruit .btn_area a {
	position: relative;
	display: inline-block;
	padding: 25px 185px 25px 65px;
	background-color: #766842;
	border: 1px solid #CBC5B7;
	color: #fff;
	font-size: 18px;
	transition: all ease 0.3s;
}
#footer_recruit .btn_area a:hover {
	opacity: 0.9;
}
#footer_recruit .btn_area a svg {
	margin-right: 15px;
	vertical-align: middle;
}
#footer_recruit .btn_area a::before,
#footer_recruit .btn_area a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	display: block;
	margin-top: auto;
	margin-bottom: auto;
	background-color: #CBC5B7;
}
#footer_recruit .btn_area a::before {
	right: 65px;
	width: 92px;
	height: 1px;
}
#footer_recruit .btn_area a::after {
	bottom: 2px;
	right: 64px;
	width: 6px;
	height: 3px;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
	#footer_recruit .btn_area a {
		padding: 20px 100px 20px 20px;
	}
	#footer_recruit .btn_area a::before {
		right: 30px;
		width: 52px;
		height: 1px;
	}
	#footer_recruit .btn_area a::after {
		right: 29px;
	}
}


/* --------------- #footer_overall --------------- */
#footer_overall {
	padding: 40px 0 20px;
	background-color: #978861;
}
#footer_overall .contents {
	display: flex;
	justify-content: space-between;
}
#footer_overall .logo {
}
#footer_overall .logo img {
}
#footer_overall .address {
	margin-left: 100px;
	margin-right: auto;
}
#footer_overall .address p {
	color: #fff;
	line-height: 2;
}
#footer_overall nav {
	color: #fff;
	flex-shrink: 0;
}
#footer_overall nav ul {
	display: flex;
	justify-content: center;
}
#footer_overall nav li {
	position: relative;
}
#footer_overall nav li:not(:first-child) {
	margin-left: 30px;
}
#footer_overall nav li a {
	display: block;
	line-height: 2;
}
#footer_overall nav li a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}
#footer_overall nav li a:hover::before,
#footer_overall nav li a.current::before {
	background-color: #CCC0A1;
}
#footer_overall #copyright {
	color: #fff;
	font-size: 10px;
	text-align: right;
}
@media (max-width: 959px) {
	#footer_overall {
		padding: 50px 0 20px;
	}
	#footer_overall .contents {
		display: block;
		text-align: center;
	}
	#footer_overall .address {
		margin-top: 35px;
		margin-left: 0;
		font-size: 13px;
	}
	#footer_overall nav {
		margin-top: 20px;
	}
	#footer_overall #copyright {
		margin-top: 40px;
		text-align: center;
	}
}