@charset "utf-8";
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}


body {
	padding-bottom: 5.5rem;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align: center;
}
@media screen and (max-width: 700px) {
	body {
		padding-bottom: 3.5rem;
	}
}
ul,li,form,iframe {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	border: none;
}
a {
	text-decoration: none;
}

.base_head {
	width: 100%;
	margin: auto;
	padding: 0 5%;
}
.base_head .base_head_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0.5em 0;
}
.base_head .base_head_top ul {
	display: flex;
	align-items: center;
	margin: 0 0.5em 0 1em;
	list-style: none;
}
.base_head .base_head_top ul li a {
	display: block;
	background-color: #55301B;
	margin: 0 0.3em;
	padding: 0.7em 1.2em;
	white-space: nowrap;
	font-size: 1.1em;
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
	transition: all 300ms 0s ease;
}
.base_head .base_head_top ul li a:hover {
	background-color: #462716;
}
.base_head .base_head_top ul li:first-child a {
	background-color: #C3A732;
}
.base_head .base_head_top ul li:first-child a:hover {
	background-color: #AE952C;
}
.base_head .base_head_top .tel a {
	display: block;
	white-space: nowrap;
	color: #55301B;
	font-family: "Times New Roman", Times, "serif";
	font-size: 2.3em;
	font-weight: normal;
	text-decoration: none;
}

.base_head .base_navi {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0.2em 0 1.2em 0;
}
.base_head .base_navi > ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin: auto;
	list-style: none;
}
.base_head .base_navi > ul > li {
	position: relative;
	display: block;
}
.base_head .base_navi > ul > li > a {
	display: block;
	position: relative;
	padding: 0.4em 0.5em;
	color: #000;
	font-weight: bold;
	text-decoration: none;
	transition: all 300ms 0s ease;
}
.base_head .base_navi > ul > li:hover > a {
	color: #C3A732;
}
.base_head .base_navi > ul > li > a::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	margin: auto;
	border-bottom: 2px solid transparent;
	transition: all 200ms 0s ease;
}
.base_head .base_navi > ul > li:hover > a::before {
	width: 100%;
	border-bottom: 2px solid #C3A732;
}
.base_head .base_navi > ul > li > ul {
	display: none;
	position: absolute;
	width: 17em;
	margin: 0;
	background-color: transparent;
	padding: 1.8em 0 0 0;
	list-style: none;
	z-index: 9999;
}
.base_head .base_navi > ul > li > ul > li a {
	display: block;
	margin: 0;
	padding: 0.7em 1.5em;
	background-color: #FFF;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	transition: all 500ms 0s ease;
}
.base_head .base_navi > ul > li > ul > li a:hover {
	color: #C3A732;
	background-color: #F8F7F0;
	transition: all 100ms 0s ease;
}
.base_head .base_navi > ul > li > ul > li {
	background-color: #FFF;
	border-top-color: #707070;
	border-top-style: dotted;
	border-top-width: 1px;
}
.base_head .base_navi > ul > li > ul > li:first-child {
	border-top-color: #C3A732;
	border-top-style: solid;
	border-top-width: 3px;
}
.base_head .base_navi > ul > li > ul > li:last-child {
	border-bottom-color: #C3A732;
	border-bottom-style: solid;
	border-bottom-width: 3px;
}
.base_head .base_navi .sp_title,
.base_head .base_navi .sp_buttons,
.base_head .base_navi .sp_tel {
	display: none;
}

/*　hamburger　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 3;
  right : 5%;
  top   : 2em;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*　SP MENU　*/
@media screen and (max-width: 1240px) {
	.hamburger,
	.base_head .base_navi .sp_title,
	.base_head .base_navi .sp_buttons,
	.base_head .base_navi .sp_tel {
		display: block;
		z-index: 99999;
	}
	.base_head .base_head_top .tel {
			display: none;
	}
	.base_head .base_head_top ul {
		margin: 0 4.0em 0 0;
	}
	.base_head .base_head_top ul li a {
		margin: 0 0.1em;
		padding: 0.5em 1.0em;
		font-size: 1.0em;
	}
	.base_head .base_navi {
		position: fixed;
		z-index : 2;
		top  : 0;
		left : 0;
		color: #fff;
		background: rgba(33,27,25,0.97);
		text-align: center;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
		max-width: 100%;
		margin: 0;
		padding: 1em 0 3em 0;
		overflow-y: auto;
	}
	.base_head .base_navi .sp_title a {
		display: inline-block;
		color: #FFF;
		text-decoration: none;
		font-size: 2rem;
		padding: 0 0 1rem 0;
	}
	.base_head .base_navi .sp_title a small {
		font-size: 0.75rem;
	}
	.base_head .base_navi .sp_title a small::after {
		display: block;
		content: "";
	}
	.base_head .base_navi > ul {
		display: block;
	}
	.base_head .base_navi > ul > li > a {
		color: #fff;
		font-size: 1.2em;
		padding: 0.9em 0;
		border-top: 1px solid rgba(93,77,70,0.50);
	}
	.base_head .base_navi > ul > li > a::before {
		display: none;
	}
	.base_head .base_navi > ul > li > ul {
		display: flex;
		align-self: stretch;
		align-items: stretch;
		flex-wrap: wrap;
		align-content: center;
		position: relative;
		width: 100%;
		padding: 0;
	}
	.base_head .base_navi > ul.sp_buttons {
		border-bottom: 1px solid rgba(93,77,70,0.50);		
	}
	.base_head .base_navi > ul > li > ul > li a {
		height: 100%;
		margin: 0;
		padding: 0.5em 0;
		background-color: rgba(255,255,255,0.05);
		border: 1px solid rgba(0,0,0,0.11);
		color: #FFF;
		font-weight: normal;
	}
	.base_head .base_navi > ul > li > ul > li a:hover {
		color: #C3A732;
		background-color: transparent;
	}
	.base_head .base_navi > ul > li > ul > li {
		background-color: transparent;
		border: none;
		width: 33.333%;
	}
	.base_head .base_navi > ul > li > ul > li:first-child,
	.base_head .base_navi > ul > li > ul > li:last-child {
		border: none;
	}
	.base_head .sp_tel {
		padding: 2em 0 0 0;
	}
	.base_head .sp_tel a {
		font-size: 1.8rem;
		color: #FFF;
		text-decoration: none;
	}
	.base_head .sp_tel small {
		display: block;
		font-size: 0.8rem;
	}

	.base_head .base_navi.active {
		opacity: 100;
		display: block;
		transform: translateX(0%);
		z-index: 2000;
	}
}
@media screen and (max-width: 920px) {
	.base_head .base_head_top ul {
		display: none;
	}
}
@media screen and (max-width: 700px) {
	.base_logo {
		margin-right: 15%;
	}
	.base_head .base_navi > ul > li > ul > li {
		width: 50%;
	}
	.base_head .base_navi > ul > li > ul > li a {
		padding: 1.1em 0;
		font-size: 0.8em;
	}
}



/* FOOTER */
.base_foot {
	width: 100%;
	margin: 2em 0 0 0;
	padding: 4em 5%;
	background-color: #F0F0F0;
}
.base_foot .base_foot_in {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-self: stretch;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.base_foot_sites {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	width: 50%;
	text-align: center;
}
.base_foot_sites .sitelists {
	width: 47%;
	margin-bottom: 2em;
	text-align: left;
}
.base_foot_sites .sitelists a {
	text-decoration: none;
	color: #5C5C5C;
	font-weight: bold;
}
.base_foot_sites .sitelists a:hover {
	color: #000;
}
.base_foot_sites .sitelists h3 {
	padding: 0 0 0.8em 0;
	margin: 0 0 1.2em 0;
	border-bottom: 1px dashed #999;
	font-size: 1.2rem;
}
.base_foot_sites .sitelists li {
	margin: 0 0 0.9em 0;
	font-size: 1rem;
}
.base_foot_sites .sitelists li:before {
	content: "〉";
	margin: 0 0.3em 0 0;
	vertical-align: top;
	transition: all 100ms 0s ease;
}
.base_foot_sites .sitelists li:hover:before {
	margin: 0 0 0 0.3em;
}
.base_foot_sites .sitelists li a {
	display: inline-block;
	width: calc(100% - 1.3em);
}
.base_foot_sites aside {
	position: absolute;
	display: block;
	bottom: 3em;
	left: 0;
}
.base_foot_sites aside dl {
	display: flex;
	align-items: center;
	align-content: center;
	width: 100%;
}
.base_foot_sites aside dl dt {
	font-size: 1.1em;
	font-weight: bold;
	margin-right: 2em;
}
.base_foot_sites aside dl dd {
	display: flex;
}
.base_foot_sites aside dl dd a {
	display: block;
	margin-right: 0.5em;
}
.base_foot_sites aside dl dd a:hover img {
	opacity: 0.8;
}
.base_foot_sites aside dl dd a img {
	transition: all 300ms 0s ease;
}

.base_foot_banners {
	width: 45%;
	max-width: 519px;
}
.base_foot_banners .base_foot_bannerlist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 2em;
}
.base_foot_banners .base_foot_bannerlist li {
	width: 100%;
	margin-bottom: 1em;
}
.base_foot_banners .base_foot_bannerlist li.colms {
	width: 49%;
}
.base_foot_banners .base_foot_bannerlist li a img {
	transition: all 300ms 0s ease;
}
.base_foot_banners .base_foot_bannerlist li a:hover img {
	opacity: 0.8;
}
.base_foot_banners .base_foot_compinf {
	margin-bottom: 2.0em;
	padding-bottom: 2.0em;
	border-bottom: 1px dashed #999;
}
.base_foot_banners .base_foot_compinf:last-child {
	border: none;
	padding-bottom: 0;
}
.base_foot_banners .base_foot_compinf h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 1em;
}
.base_foot_banners .base_foot_compinf address {
	font-size: 1.0em;
	font-weight: normal;
	font-style: normal;
}
.base_foot_banners .base_foot_compinf a {
	color: #000;
	text-decoration: none;
}

.foot_copy {
	display: block;
	width: 100%;
	clear: both;
	margin: 0;
	padding: 1.5em 5%;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 920px) {
	.base_foot {
		padding: 2em 5%;
	}
	.base_foot .base_foot_in {
		flex-direction: column;
	}
	.base_foot_sites {
		display: block;
		width: 100%;
	}
	.base_foot_sites .sitelists {
		display: none;
	}
	.base_foot_sites aside {
		position: relative;
		bottom: auto;
		left: auto;
		display: inline-block;
		margin: 0 auto 1em auto;
	}
	.base_foot_sites aside dl {
		width: auto;
		margin: auto;
	}
	
	.base_foot_banners {
		width: 100%;
		max-width: 100%;
	}
	.base_foot_banners .base_foot_bannerlist li {
		width: 49.5%;
		margin-bottom: 0.5em;
	}
	.base_foot_banners .base_foot_bannerlist li.colms {
		width: 24%;
	}
}

@media screen and (max-width: 700px) {
	.base_foot_sites aside dl {
		display: block;
		width: 100%;
	}
	.base_foot_sites aside dt {
		display: block;
		width: 100%;
		margin-bottom: 1em;
	}
	
	.base_foot_banners .base_foot_bannerlist {
		max-width: 519px;
		margin: 0 auto 2em auto;
	}
	.base_foot_banners .base_foot_bannerlist li {
		width: 100%;
	}
	.base_foot_banners .base_foot_bannerlist li.colms {
		width: 49%;
	}
	.base_foot_banners .base_foot_compinf address {
		font-size: 0.85em;
	}
	.foot_copy {
		font-size: 0.8em;
	}
}

/* FIX FOOT */
.fix_foot {
	position: fixed;
	bottom: 0;
	width: 100%;
	margin: auto;
	padding: 0 5%;
	background-color: #55301B;
	vertical-align: middle;
	text-align: center;
	z-index: 999;
}
.fix_foot .fix_foot_main {
	display: flex;
	align-items: center;
	align-self: center;
	justify-content: space-between;
	max-width: 1200px;
	height: 5.5rem;
	margin: auto;
}
.fix_foot .fix_foot_main ul {
	display: flex;
	align-items: center;
	margin: 0 0.5em 0 0;
	list-style: none;
}
.fix_foot .fix_foot_main ul li a {
	display: block;
	background-color: #C3A732;
	margin: 0 0.3em;
	padding: 0.7em 1.2em;
	white-space: nowrap;
	font-size: 1.1em;
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
	transition: all 300ms 0s ease;
}
.fix_foot .fix_foot_main ul li:first-child a {
	margin-left: 0;
}
.fix_foot .fix_foot_main ul li a:hover {
	background-color: #AE952C;
}
.fix_foot .fix_foot_main .fix_tel a {
	display: block;
	white-space: nowrap;
	color: #FFF;
	font-family: "Times New Roman", Times, "serif";
	font-size: 2.3em;
	font-weight: normal;
	text-decoration: none;
	line-height: 1;
}
.fix_foot .fix_foot_main .fix_tel small {
	display: block;
	white-space: nowrap;
	color: #FFF;
	font-size: 0.8em;
}
.fix_foot a.pagetop {
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	height: 100%;
	width: 5.5rem;
	background-color: #000000;
}
.fix_foot a.pagetop:hover {
	background-color: #111;
}
.fix_foot a.pagetop span{
	visibility: hidden;
}

.fix_foot a.pagetop::before {
	position: absolute;
	top: 0.8em;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	content: "";
	width: 0.9em;
	height: 0.9em;
	margin: auto;
	vertical-align: middle;
	border: 3px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-45deg);
}
@media screen and (max-width: 1450px) {
	.fix_foot .fix_foot_main {
		padding: 0 4.5em 0 0;
	}
}
@media screen and (max-width: 1240px) {
	.fix_foot .fix_foot_main {
		justify-content: center;
	}
	.fix_foot .fix_foot_main .fix_tel {
		display: none;
	}
}
@media screen and (max-width: 700px) {
	.fix_foot .fix_foot_main {
		height: 3.5rem;
		padding: 0 3.5em 0 0;
	}
	.fix_foot .fix_foot_main .fix_newstopics {
		display: none;
	}
	.fix_foot .fix_foot_main ul li a {
		margin: 0 0.1em;
		padding: 0.5em 0.8em;
		font-size: 0.9em;
	}
	.fix_foot a.pagetop {
		width: 3.5rem;
	}
	.fix_foot a.pagetop::before {
		top: 0.5em;
	}
}


/* UnderPage */
.content_top {
	width: 100%;
	margin: 0;
	padding: 6em 5%;
	background-size: cover;
	background-position: center center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #FFF;
}
.content_top .inner {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.content_top h1 {
	margin-bottom: 1.0rem;
	font-size: 2.8em;
	line-height: 1.3;
	font-weight: bold;
}
.content_top span {
	font-size: 1.6em;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 920px) {
	.content_top {
		padding: 4em 5%;
	}
	.content_top h1 {
		font-size: 2.0em;
	}
	.content_top span {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 540px) {
	.content_top {
		padding: 3em 5%;
	}
	.content_top h1 {
		font-size: 1.5em;
		margin-bottom: 0.3rem;
	}
	.content_top span {
		font-size: 1.0em;
	}
}

.pan_nav {
	width: 100%;
	margin: 0;
	padding: 1em 5%;
	background-color: #E6DCD6;
}
.pan_nav ul {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	text-align: left;
}
.pan_nav ul li {
	display: inline-block;
	font-size: 0.9em;
	color: #808080;
	font-weight: bold;
	line-height: 1;
}
.pan_nav ul li a {
	color: #808080;
}
.pan_nav ul li a:hover {
	color: #000;
}
.pan_nav ul li::after {
	font-size: 0.5em;
	vertical-align: middle;
	content: '　>　';
}
.pan_nav ul li:last-child::after {
	content: '';
}
@media screen and (max-width: 920px) {
	.pan_nav {
		display: none;
	}
}

/* OPTION */
.ttl_border_corner {
	position: relative;
	padding: 0.5em;
	margin-bottom: 4rem;
	font-size: 2.2em;
	color: #623D28;
	background-color: #F0F0F0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ttl_border_corner::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	border-top: 1px solid #707070;
	border-left: 1px solid #707070;
}
.ttl_border_corner::after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	border-bottom: 1px solid #707070;
	border-right: 1px solid #707070;
}
@media screen and (max-width: 920px) {
	.ttl_border_corner {
		margin-bottom: 3rem;
		font-size: 1.8em;
	}
}
@media screen and (max-width: 700px) {
	.ttl_border_corner {
		margin-bottom: 2rem;
		font-size: 1.5em;
	}
}
@media screen and (max-width: 540px) {
	.ttl_border_corner {
		font-size: 1.2em;
	}
}


.but_arrow_w {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 15rem;
	padding: 1.3rem;
	background-color: rgba(255,255,255,0.90);
	font-size: 1.1em;
	font-weight: bold;
	color: #333;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	transition: all 300ms 0s ease;
}
.but_arrow_w::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 85%;
	left: calc(100% - 2.5rem);
	display: block;
	content: "";
	width: 5rem;
	height: 1px;
	margin: auto;
	vertical-align: middle;
	background-color: #707070;
	transition: all 300ms 0s ease;
	border-radius: 100px;
}
.but_arrow_w:hover {
	color: #000;
}
.but_arrow_w:hover::before {
	width: 0.2rem;
	left: 6%;
	left: 1em;
	height: 2em;
}

.text_right {
	text-align: right!important;
}