@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 1rem;
	font-size: 10px;
}

body {
	color: #100909;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1100px;
}
.wrapper {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	body {
		height: 100%;
		min-width: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}
/*翻訳追従SPだけ表示
----------------------------------------*/
@media only screen and (min-width: 769px) {
	.stt-lang-select.bl {
	  display: none;
	}
}

/*header
----------------------------------------*/
.header {
	border-top: 2px solid #866f31;
	border-bottom: 4px solid #b89c50;
	padding-bottom: 24px;
}
.header::before {
	content: "";
	display: block;
	height: 1px;
	background: #b89c50;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.header_inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header_logo {
	margin-top: 26px;
}
.header_logo img {
	display: block;
}
.header_logo a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.header_logo a:hover {
	opacity: .6;
}
.btn_nav {
	display: none;
}
@media only screen and (max-width: 768px) {
	.header {
		border: none;
		padding: 19px 0 18px;
	}
	.header::before {
		display: none;
	}
	.header_inner {
		padding: 0 5%;
		display: block;
		position: static;
	}
	.header_logo {
		width: 117.5px;
		margin-top: 0;
	}
	.header_logo img {
		display: block;
	}
	.header_logo a:hover {
		opacity: 1;
	}
	.btn_nav {
		position: absolute;
		top: 1px;
		bottom: 1px;
		right: 1px;
		display: block;
		width: 55px;
		background: #b89c50;
		-webkit-appearance: none;
		appearance: none;
		border: none;
	}
	.btn_nav::before,
	.btn_nav::after {
		content: "";
		display: block;
		width: 20px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 12px;
		left: 17px;
		min-height: 2px;
		-webkit-transition: 300ms;
		transition: 300ms;
	}
	.btn_nav::after {
		top: 22px;
	}
	.btn_nav span {
		display: block;
		width: 20px;
		height: 2px;
		position: absolute;
		top: 17px;
		left: 17px;
		background: #fff;
		min-height: 2px;
	}
	.btn_nav span::before {
		content: "";
		width: 20px;
		height: 6px;
		display: block;
		background: url(../img/common/txt_menu.svg) no-repeat left top / 100%;
		position: absolute;
		top: 13px;
		left: 0;
	}
	.btn_nav.open span::before {
		content: "";
		width: 23px;
		height: 6px;
		display: block;
		background: url(../img/common/txt_close.svg) no-repeat left top / 100%;
		position: absolute;
		top: 13px;
		left: -1px;
	}
	.btn_nav.open span {
		background: transparent;
	}
	.btn_nav.open::before {
		top: 16px;
		-webkit-transform: rotate(-35deg);
		transform: rotate(-35deg);
	}
	.btn_nav.open::after {
		top: 16px;
		-webkit-transform: rotate(35deg);
		transform: rotate(35deg);
	}
}

/*gnav
----------------------------------------*/
.gnav {
	width: 770px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.gnav_main {
	order: 1;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.gnav_sub {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	order: 0;
	width: 100%;
	margin-bottom: 18px;
}
.gnav_sub .gnav_sub_contact {
	width: 175px;
}
.gnav_sub .gnav_sub_contact a {
	background: #866f31;
	color: #fff;
	font-weight: 500;
	height: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0 2px 3px;
	letter-spacing: .06em;
	text-align: center;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.gnav_sub .gnav_sub_contact a::before {
	content: "";
	width: 20px;
	height: 13px;
	display: inline-block;
	vertical-align: -1px;
	margin-right: 7px;
	background: url(../img/common/icon_contact.png) no-repeat;
}
.gnav_sub .gnav_sub_faq {
	width: 175px;
}
.gnav_sub .gnav_sub_faq a {
	background: #866f31;
	color: #fff;
	font-weight: 500;
	height: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0 2px 3px;
	letter-spacing: .06em;
	text-align: center;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.gnav_sub .gnav_sub_faq a::before {
	content: "";
	width: 20px;
	height: 13px;
	display: inline-block;
	vertical-align: -1px;
	margin-right: 7px;
	background: url(../img/common/icon_faq.png) no-repeat;
}
.gnav_sub_sitemap {
	margin-right: 22px;
	padding-top: 1px;
	font-size: 1.2rem;
	letter-spacing: .09em;
	font-weight: 500;
}
.gnav_sub_sitemap a {
	display: block;
	-webkit-transition: color 300ms;
	transition: color 300ms;
}
.gnav_sub_sitemap a::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3.5px 0 3.5px 4px;
	border-color: transparent transparent transparent #866f31;
	vertical-align: .1em;
	margin-right: 7px;
}
.gnav_main li::before {
	content: "";
	display: block;
	width: 1px;
	height: 31px;
	background: #dedede;
	position: absolute;
	left: 0;
	top: 4px;
}
.gnav_main li a {
	width: 121px;
	height: 37px;
	display: block;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: .04em;
	-webkit-transition: color 300ms;
	transition: color 300ms;
}
.gnav_main li:nth-child(2) a,
.gnav_main li:nth-child(4) a {
	width: 139px;
}
.gnav_main li:nth-child(3) a {
	width: 155px;
}
.gnav_main li.current a {
	color: #bda35b;
	font-weight: bold;
}
.gnav_sub_sitemap a:hover,
.gnav_main li a:hover {
	color: #bda35b;
}
.gnav_main li a span {
	display: block;
	font-weight: normal;
	font-size: .9rem;
	color: #969696;
	margin-top: 3px;
	letter-spacing: .07em;
}
.gnav_size {
	min-width: 215px;
	color: #866f31;
	font-weight: 500;
	letter-spacing: .05em;
	padding: 4px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.gnav_size span {
	display: inline-block;
	padding-top: 1px;
	vertical-align: top;
	font-size: 14px;
}
.gnav_size_language {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	font-weight: 500;
	border: 1px solid #b89c50;
	background: #fff;
	color: #866f31;
	min-width: 96px;
	line-height: 23px;
	padding: 0;
	vertical-align: middle;
	letter-spacing: .05em;
	font-size: 14px;
	margin-left: 10px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: background 300ms, color 300ms;
	transition: background 300ms, color 300ms;
	-moz-appearance: menulist;
	-webkit-appearance: menulist;
}
/* 言語切り替え表示のデフォルトスタイル */
.gnav_size_language a[data-stt-changelang] {
margin:0 7px;
}
/* アクティブなテキストのスタイル */
.gnav_size_language a[data-stt-active] {
text-decoration:none;
font-weight:bold;
}
.gnav_size_zoom,
.gnav_size_normal {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	font-weight: 500;
	border: 1px solid #b89c50;
	background: #fff;
	color: #866f31;
	min-width: 48px;
	line-height: 23px;
	padding: 0;
	vertical-align: middle;
	letter-spacing: .05em;
	font-size: 16px;
	cursor: pointer;
	-webkit-transition: background 300ms, color 300ms;
	transition: background 300ms, color 300ms;
}
.gnav_size_zoom:focus,
.gnav_size_normal:focus {
	outline: none;
}
.gnav_size_normal {
	font-size: 14px;
	margin-left: 10px;
}
.gnav_size_zoom.current,
.gnav_size_normal.current,
.gnav_size_zoom:hover,
.gnav_size_normal:hover {
	background: #c1a351;
	color: #fff;
}
.gnav_sub .gnav_sub_contact a:hover {
	opacity: .6;
}
@media only screen and (max-width: 768px) {
	.gnav {
		display: none;
		width: auto;
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
		padding: 0 7.812% 84px;
		background: #b89c50 no-repeat left bottom / 143px auto;
		z-index: 1100;
	}
	.gnav_main {
		width: 100%;
		display: block;
	}
	.gnav_sub {
		display: block;
		border-bottom: 1px solid #fff;
	}
	.gnav_sub .gnav_sub_contact a::before,
	.gnav_sub_sitemap a::before {
		display: none;
	}
	.gnav .gnav_sub li {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.gnav_main li + li,
	.gnav_sub li + li {
		border-top: 1px solid #fff;
	}
	.gnav_main li::before {
		display: none;
	}
	.gnav .gnav_main li a,
	.gnav .gnav_sub li a {
		display: block;
		background: none;
		width: auto;
		height: auto;
		text-align: left;
		font-weight: normal;
		font-size: 1.3rem;
		line-height: 1.4;
		letter-spacing: .04em;
		color: #fff;
		padding: 12px 13px;
	}
	.gnav_main li:nth-child(2) a,
	.gnav_main li:nth-child(4) a,
	.gnav_main li:nth-child(3) a {
		width: auto;
	}
	.gnav_main li.current a,
	.gnav_main li a:hover {
		color: #fff;
		font-weight: normal;
	}
	.gnav_sub_sitemap a:hover {
		color: #bda35b;
	}
	.gnav_main li a span,
	.gnav_size {
		display: none;
	}
	.gnav_sub .gnav_sub_contact a:hover,
	.gnav_size_language:hover,
	.gnav_size_zoom:hover,
	.gnav_size_normal:hover,
	.gnav_main li a:hover {
		opacity: 1;
	}
	.gnav_sp {
		margin: 2px 0;
	}
	.gnav_sp li + li {
		margin-top: 3px;
	}
	.gnav_sp li a {
		display: block;
		background: #fff;
		font-size: 1.3rem;
		color: #b89c50;
		font-weight: bold;
		padding: 7px 20px 5px 8px;
		letter-spacing: .1em;
	}
	.gnav_sp li a::after {
		content: "";
		display: block;
		border-left: 2px solid #bea560;
		border-bottom: 2px solid #bea560;
		width: 5px;
		height: 5px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -3px;
	}
	.gnav_sp li img {
		width: 44px;
		margin-right: 15px;
		vertical-align: middle;
		position: relative;
	}
	.gnav_sp li:nth-child(4) img {
		top: -4px;
		width: 40px;
		margin-left: 4px;
	}
}

/* topic_path
----------------------------------------*/
.topic_path {
	background: #fff;
	padding: 11px 0;
}
.topic_path ol {
	width: 1040px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	font-size: 1.2rem;
	letter-spacing: .05em;
}
.topic_path ol li {
	color: #b89c50;
}
.topic_path ol li:first-child {
	letter-spacing: .07em;
}
.topic_path ol li a {
	color: #000;
	-webkit-transition: color 300ms;
	transition: color 300ms;
}
.topic_path ol li a:hover {
	opacity: .6;
}
.topic_path ol li + li::before {
	content: "＞";
	color: #000;
	margin: 0 5px;
}
@media only screen and (max-width: 768px) {
	.topic_path {
		display: none;
	}
}

/*main
----------------------------------------*/

/*pagetop
----------------------------------------*/
.btn_pagetop {
	position: absolute;
	width: 100%;
}
.btn_pagetop a {
	position: absolute;
	bottom: 15px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f2d965;
	z-index: 1100;
	padding-top: 18px;
	text-align: center;
	display: none;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.btn_pagetop a:hover {
	opacity: .6;
}
@media only screen and (max-width: 736px) {
	.btn_pagetop a {
		right: 5%;
		width: 50px;
		height: 50px;
		padding-top: 14px;
		display: none;
	}
	.btn_pagetop a:hover {
		opacity: 1;
	}
}

/*footer
----------------------------------------*/
.footer {
	background: #b89c50;
	padding: 32px 0 53px;
	color: #fff;
}
.footer_inner {
	width: 1080px;
	padding: 0 20px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer_info {
	padding-top: 4px;
}
.footer_info h2 {
	margin-bottom: 25px;
}
.footer_info h2 a {
	display: inline-block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.footer_address {
	letter-spacing: .135em;
	margin-bottom: 6px;
}
.footer_address a {
	text-decoration: underline;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.footer_address a:hover {
	opacity: .6;
}
.footer_tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: .2em;
}
.footer_tel p a,
.footer_tel p span {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .15em;
}
.footer_tel p + p {
	margin-left: 19px;
}
.foooter_contact {
	margin-top: 18px;
	font-weight: 500;
}
.foooter_contact a {
	display: block;
	width: 200px;
	text-align: center;
	background: #fff;
	color: #b89c50;
	padding: 11px 10px;
	letter-spacing: .05em;
	font-weight: 500;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.foooter_contact a::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 13px;
	background: url(../img/common/icon_footer_contact.png) no-repeat;
	vertical-align: -1px;
	margin-right: 7px;
}
.footer_nav {
	width: 320px;
}
.footer_nav li + li {
	margin-top: 6px;
}
.footer_nav li a {
	display: block;
	letter-spacing: .1em;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.footer_nav li a::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3.5px 0 3.5px 4px;
	border-color: transparent transparent transparent #fff;
	vertical-align: .1em;
	margin: 0 8px 0 2px;
}
.copyright {
	width: 100%;
	margin: 28px auto 0;
	padding-left: 4px;
}
.copyright small {
	font-size: 1.2rem;
	letter-spacing: .13em;
}
.foooter_contact a:hover,
.footer_nav li a:hover,
.footer_info h2 a:hover {
	opacity: .6;
}
@media only screen and (max-width: 768px) {
	.footer {
		padding: 30px 0 32px;
	}
	.footer_inner {
		width: auto;
		padding: 0 5%;
		display: block;
	}
	.footer_address {
		letter-spacing: .08em;
		margin-bottom: 10px;
	}
	.footer_address a:hover {
		opacity: 1;
	}
	.foooter_contact a {
		margin: 0 auto;
	}
	.footer_tel {
		display: block;
		letter-spacing: .2em;
	}
	.footer_tel p + p {
		margin-left: 0;
	}
	.footer_nav {
		width: auto;
		margin-top: 30px;
	}
	.copyright {
		margin: 28px auto 0;
		padding-left: 0;
		text-align: center;
	}
	.copyright small {
		font-size: 1.2rem;
		letter-spacing: .05em;
	}
	.foooter_contact a:hover,
	.footer_nav li a:hover,
	.footer_info h2 a:hover {
		opacity: 1;
	}
}

/* bnr_block
----------------------------------------*/
.bnr_block {
	background: #fff;
	padding: 58px 20px 55px;
	padding-right: 40px;
}
.bnr_block img {
	display: block;
}
.bnr_block ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bnr_block ul li {
	margin: 0 19.3px;
}
.bnr_block ul li a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.bnr_block ul li a:hover {
	opacity: .6;
}
@media only screen and (max-width: 768px) {
	.bnr_block {
		padding: 15px 5%;
	}
	.bnr_block ul {
		display: block;
	}
	.bnr_block ul li {
		margin: 20px 0;
		text-align: center;
	}
	.bnr_block ul li a {
		display: inline-block;
	}
	.bnr_block ul li a:hover {
		opacity: 1;
	}
}