@charset "utf-8";

.logo_header {
	background: #0000;
	height: 1%;
	width: 1%;
	opacity: 0;
	position: absolute;
	top: 0;
}

img, object, embed, video {
	width: 100%;
	margin: auto;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.en {
	font-family: "Josefin Sans", sans-serif;
}


.text_04 .letter {
	display: inline-block;
	line-height: 1;
}


.txt_grad {
	background: -webkit-linear-gradient(0deg, #c49417, #f4d84b);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#video-area {
	position: fixed;
	z-index: -5;
	/*最背面に設定*/
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

#video {
	/*天地中央配置*/
	position: absolute;
	z-index: -4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh;
	/* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw;
	/* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
}

#video-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .5);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.svg_box {
	visibility: hidden;
	width: 0px;
	height: 0px;
}

.f_logo svg,
.logo_wrap svg {
	vertical-align: top;
	width: 100%;
	max-height: 76px;
	height: auto;
}

.f_logo use {
	fill: #ffffff;
}

@keyframes zoom {
	0% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

#totop a:focus {
	outline: none;
}


/*PC*/
@media print, screen and (min-width: 768px) {
	svg.logo4 {
		/* fill: #040000; */
		fill: red;
	}

	body {
		min-width: 1200px;
		font-size: 16px;
		line-height: 2;
		letter-spacing: .1em;
	}

	/*--スクロールトップ---------*/
	#totop {
		bottom: 50px;
		display: block;
		position: fixed;
		right: 20px;
		z-index: 50;
	}

	#totop a {
		display: block;
		width: 54px;
		height: 54px;
		text-indent: -1000em;
		overflow: hidden;
		background: url("../images/com/btn_scroll_top.png") 0 0 no-repeat;
		background-size: auto auto;
		background-size: 100% auto;
	}


	/*anchor link*/
	/*----------------------------*/
	#policy,
	#knowledge,
	#a, #b, #c, #d, #e, #f, #g {
		padding-top: 90px;
		margin-top: -90px
	}


	/*com*/
	/*----------------------------*/
	.pcBr {
		display: inline-block;
	}

	.spBr {
		display: none;
	}

	.pc {
		display: block;
	}

	.sp {
		display: none !important;
	}




	/* ボタン共通設定 */
	.btn04 {
		/*線の基点とするためrelativeを指定*/
		position: relative;
		/*ボタンの形状*/
		display: inline-block;
		padding: 10px 30px;

		color: #333;
		border: 1px solid #ccc;
		text-decoration: none;
		outline: none;
		/*はみ出す背景色を隠す*/
		overflow: hidden;
	}

	/*hoverした際のボタンの形状*/
	.btn04:hover {
		color: #ccc;
		border-color: transparent;
		/*色の変化を遅らせる*/
		transition-delay: .6s;
	}

	/*線の設定*/
	.btn04 span {
		display: block;
		z-index: 2;
	}

	/*== 線から塗に変化（左から右） */

	/*線の設定*/
	.borderleft span::before,
	.borderleft span::after {
		content: '';
		/*絶対配置で線の位置を決める*/
		position: absolute;
		width: 0;
		height: 1px;
		/*線の形状*/
		background: #333;
		/*アニメーションの設定*/
		transition: all .3s;
	}

	/*左上線*/
	.borderleft span::before {
		left: 0;
		top: 0;
	}

	/*左下線*/
	.borderleft span::after {
		left: 0;
		bottom: 0;
	}

	/*hoverをすると線が伸びる*/
	.borderleft:hover span::before,
	.borderleft:hover span::after {
		width: 100%;
	}

	/*背景の設定*/
	.borderleft::before {
		content: '';
		/*絶対配置で線の位置を決める*/
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
		/*背景の形状*/
		height: 100%;
		width: 0;
		background: #333;
		/*アニメーションの設定*/
		transition: all .3s;
	}

	/*hoverをすると背景が伸びる*/
	.borderleft:hover::before {
		width: 100%;
		/*0.4秒遅れてアニメーション*/
		transition-delay: .4s;
	}


	/* header
--------------------------------------------*/
	header {
		width: 100%;
		z-index: 20;
		position: fixed;
	}

	#header {
		box-sizing: border-box;
		display: grid;
		align-items: center;
		grid-template-columns: auto 1fr;
		justify-content: space-between;
		transition: 0.5s;
		background: rgba(255, 255, 255, .85);
		backdrop-filter: blur(4px);
		padding: 15px 20px;
	}

	#header.scroll-nav {
		padding: 10px 20px;
	}

	.logo_wrap {
		width: 230px;
		margin: 0;
		transition: 0.5s;
	}

	.logo_wrap a {
		display: block;
		transition: all 0.5s 0s ease;
	}

	#header .hed_btn_list {
		display: flex;
		justify-content: end;
		align-items: center;
	}

	#header .hed_btn_list li {
		margin-right: 1px;
		background: #443f3d;
	}

	#header .hed_btn_list li:last-child {
		margin-right: 0;
	}

	#header .hed_btn_list li a {
		display: block;
		color: #FFF;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		box-sizing: border-box;
		padding: 8px 15px 5px;
		transition: 0.5s;
	}

	#header .hed_btn_list li:hover {
		opacity: .8;
		transition: 0.5s;

	}

	#header .hed_btn_list li a span {
		width: 15px;
		display: inline-block;
		margin-right: 6px;
		margin-top: -2px;
	}

	.menu_list {
		display: flex;
		justify-content: end;
		margin: 10px 0 0 0;
	}

	.menu_list li {
		margin-left: 1.4rem;
	}

	.menu_list li:first-child {
		margin-left: 0;
	}

	.menu_list li a {
		color: #000;
		font-weight: bold;
		transition: 0.5s;
		position: relative;
	}

	.menu_list li a::before {
		content: "";
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0%;
		height: 0.5px;
		background: #000;
		transition: all 0.6s ease;
	}

	.menu_list li a:hover {
		color: #000;
		text-shadow: none;
	}

	.menu_list li a:hover::before {
		width: 100%;
	}

	.burger-btn {
		display: none;
	}

	.siteNav {
		display: flex;
		justify-content: flex-end;
		align-items: stretch;
		flex-direction: row;
		margin: 20px 0 0;
	}

	.siteNav .siteNav_dl {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
	}

	.siteNav .siteNav_dl .siteNav_dt {
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 100;
		line-height: 1.5;
	}

	.siteNav .siteNav_ul {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
	}

	.siteNav .siteNav_ul .siteNav_content .siteNav_a {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		margin-left: 1.2rem;
		font-size: 0.6rem;
		font-weight: 500;
	}

	.siteNav .siteNav_ul .siteNav_content .siteNav_a:first-child {
		margin-left: none;
	}

	.siteNav .siteNav_ul .siteNav_content .siteNav_a .siteNav_aLine {
		background: linear-gradient(#000, #000) 100% 100% / 0 .5px no-repeat;
		transition: background-size .4s cubic-bezier(.23, 1, .32, 1) 0s;
	}

	body:not(.-is-touchDevice) .siteNav .siteNav_ul .siteNav_content .siteNav_a:hover .siteNav_aLine {
		background-position: 0 100%;
		background-size: 100% 0.5px;
	}

	#header.scroll-nav {
		transition: 0.5s;
	}

	/* 「scroll-navクラス」がヘッダーについたとき */
	#header.scroll-nav .logo_wrap {
		width: 200px;
		transition: 0.5s;
	}

	#header.scroll-nav .logo_wrap a {
		transition: 0.5s;

	}

	#header.scroll-nav ul li {
		margin: 0 0 0 0;
	}

	#header.scroll-nav ul li a {
		font-weight: 100;
		color: #323232;
		transition: 0.5s;
	}

	#header.scroll-nav {}

	#header.scroll-nav .siteNav {
		display: flex;
		justify-content: flex-end;
		align-items: stretch;
		flex-direction: row;
		margin-top: 0;
	}

	#header.scroll-nav .siteNav .siteNav_dl {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
	}

	#header.scroll-nav .siteNav .siteNav_dl .siteNav_dt {
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 100;
		line-height: 1.5;
	}

	#header.scroll-nav .siteNav .siteNav_ul {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: row;
	}

	#header.scroll-nav .siteNav .siteNav_ul .siteNav_content .siteNav_a {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		margin-left: 1.2rem;
		font-size: 0.6rem;
		font-weight: 500;
	}

	#header.scroll-nav .siteNav .siteNav_ul .siteNav_content .siteNav_a:first-child {
		margin-left: none;
	}

	#header.scroll-nav .siteNav .siteNav_ul .siteNav_content .siteNav_a .siteNav_aLine {
		background: linear-gradient(#000, #000) 100% 100% / 0 .5px no-repeat;
		transition: background-size .4s cubic-bezier(.23, 1, .32, 1) 0s;
	}

	#header.scroll-nav .menu_list {
		display: flex;
		justify-content: end;
		margin: 10px 0px 0 0;
	}

	#header.scroll-nav .menu_list li {
		margin-left: 1.2rem;
	}

	#header.scroll-nav .menu_list li:first-child {
		margin-left: 0;
	}

	#header.scroll-nav .menu_list li a {
		color: #323232;
		font-weight: bold;
		transition: 0.5s;
		position: relative;
		font-size: 14px;
	}

	#header.scroll-nav .menu_list li a::before {
		content: "";
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0%;
		height: 0.5px;
		background: #323232;
		transition: all 0.6s ease;
	}

	#header.scroll-nav .menu_list li a:hover {
		color: #323232;
		text-shadow: none;
	}

	#header.scroll-nav .menu_list li a:hover::before {
		width: 100%;
	}

	#header.scroll-nav .hed_btn_list {
		display: flex;
		justify-content: end;
		align-items: center;
	}

	#header.scroll-nav .hed_btn_list li {
		margin-right: 1px;
		background: #443f3d;
	}

	#header.scroll-nav .hed_btn_list li:last-child {
		margin-right: 0;
	}

	#header.scroll-nav .hed_btn_list li a {
		display: block;
		color: #FFF;
		font-weight: 500;
		font-size: 12px;
		line-height: 1;
		box-sizing: border-box;
		padding: 8px 15px 5px;
		transition: 0.5s;
	}

	#header.scroll-nav .hed_btn_list li:hover {
		opacity: .8;
		transition: 0.5s;
	}

	#header.scroll-nav .hed_btn_list li a span {
		width: 15px;
		display: inline-block;
		margin-right: 6px;
		margin-top: -2px;
	}



	#header.scroll-nav .sns_list {
		position: absolute;
		top: 10px;
		right: 400px;
		display: flex;
		flex-wrap: wrap;
	}

	#header.scroll-nav .sns_list li {
		width: 26px;
		height: 26px;
		padding: 3px;
		box-sizing: border-box;
		margin-right: 15px;
		border-radius: 50%;
	}

	#header.scroll-nav .sns_list li a {
		display: block;
		margin-top: -6px
	}

	#header.scroll-nav .sns_list li:last-child {
		margin-right: 0;
	}

	#header.scroll-nav .sns_list li.bg01 {
		background: #000;
	}

	#header.scroll-nav .sns_list li.bg02 {
		background: #FFF;
		border: 1px solid rgba(0, 0, 0, .6);
	}

	.menuWrap,
	.gnav {
		display: none;
	}



	/* footer
--------------------------------------------*/
	footer {
		position: relative;
		padding: 5rem 4rem 3rem;
		box-sizing: border-box;
		background: #262322;
		margin-top: -80px;
		z-index: 5;
	}

	#footer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	#footer .fot_top {
		width: 60%;
	}

	#footer .fot_top .shop_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto 20px;
		border-bottom: 1px solid rgba(0, 0, 0, .2);
		padding-bottom: 40px;
		box-sizing: border-box;
	}

	#footer .fot_top .shop_list li {
		width: 48%;
	}

	#footer .fot_top .shop_list li .img {
		margin: 0 auto 10px;
	}

	#footer .fot_top .shop_list li .img img {}

	#footer .fot_top .shop_list li p {
		font-size: .8rem;
		margin: 0 0 30px;
	}

	#footer .fot_top .fot_list_wrap {
		width: 100%;
		position: relative;
	}

	#footer .fot_top .fot_list_wrap .fot_list_inner {
		margin: 0;
		position: relative;
	}

	#footer .fot_top .fot_list_wrap h3 {
		position: relative;
		font-size: 0.7rem;
		font-weight: 700;
		margin: 0;
		color: #af9b55;
		padding-top: 5px;
		box-sizing: border-box;
	}

	#footer .fot_top .fot_list_wrap h4 {
		font-size: 1.1rem;
		font-weight: 700;
		background: -webkit-linear-gradient(0deg, #008c73, #418aff);
		background-clip: border-box;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		margin: 0 0 5px;
	}

	#footer .fot_top .fot_list_wrap h4 a {}

	#footer .fot_top .fot_list_wrap .fot_list {
		display: flex;
		flex-wrap: wrap;
		margin: 10px 0 20px;
	}

	#footer .fot_top .fot_list_wrap .fot_list li {
		width: 20%;
		box-sizing: border-box;
		font-size: .9rem;
		margin-bottom: 5px;
	}

	#footer .fot_top .fot_list_wrap .fot_list li a {
		display: block;
		color: #FFF;
	}

	#footer .fot_top .fot_list_wrap .txt a {
		color: #FFF;
		font-weight: 600;
	}

	#footer .fot_btm {
		width: 36%;
	}

	#footer .fot_btm .f_logo_wrap {
		width: 100%;
	}

	#footer .fot_btm .f_logo {
		width: 220px;
		max-height: 70px;
		margin: 0 0 15px;
		padding: 5px;
		box-sizing: border-box;
	}

	#footer .fot_btm .address_wrap {
		width: 100%;
	}

	#footer .fot_btm .address_wrap h2 {
		font-size: 1.2rem;
		color: #FFF;
		font-weight: 600;
		margin: 0 0 10px;
	}

	#footer .fot_btm .address_wrap h2 span {
		font-size: 0.7rem;
		margin-left: 3px;
	}

	#footer .fot_btm .address_wrap address {
		color: #FFF;
		font-style: normal;
		font-size: .8rem;
		margin: 0 0 50px;
	}

	#footer .onlineshop_list {
		width: 80%;
		margin: 0 0 40px;
		padding: 0;
	}

	#footer .fot_btm .copy {
		font-size: .7rem;
		color: #FFF;
		text-align: right;

	}

	/*contact_fot
---------------------------------------------*/
	#contact_fot {
		background: url("../images/com/bg_contact.jpg") 0 0 repeat;
		padding: 4rem 3rem 3rem;
		box-sizing: border-box;
	}


	#contact_fot h2 {
		font-size: 2.4rem;
		line-height: 1;
		font-weight: 500;
		margin: 0 auto 40px;
		letter-spacing: -.05rem;
		color: #FFF;

		text-align: center;
	}

	#contact_fot .read_txt {
		color: #FFF;
		text-align: center;
		margin: 0 0 30px;
	}

	#contact_fot .section_wrap {
		width: 90%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto 60px;
	}

	#contact_fot .section_wrap .box {
		width: 50%;
		position: relative;
		padding: 0 30px 30px;
		box-sizing: border-box;
	}

	#contact_fot .section_wrap .box:first-child::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 1px;
		height: 100%;
		background: rgba(255, 255, 255, .2);
	}

	#contact_fot .section_wrap .box .icon {
		width: 40px;
		margin: 0 auto 20px;
	}

	#contact_fot .section_wrap .box h3 {
		font-size: 2rem;
		font-weight: 500;
		line-height: 1;
		text-align: center;
		color: #FFF;
		margin: 0 0 10px;
	}

	#contact_fot .section_wrap .box p {
		text-align: center;
		color: #FFF;
	}

	#contact_fot .section_wrap .box p.mail_txt {
		color: #FFF;
		font-size: 1.2rem;
		font-weight: 500;
		letter-spacing: .1rem;
	}

	#contact_fot .section_wrap .box a {
		color: #FFF;
	}

	/*hed
---------------------------------------------*/
	#hed {
		width: 100%;
		height: calc(100svh - 80px);
		padding: 100px 0 0 20%;
		box-sizing: border-box;
		position: relative;
		margin: 0 auto 150px;
	}

	#hed .hed_img {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
		background: rgba(255, 255, 255, 1);
	}

	#hed .hed_img .bg_img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		-webkit-animation: zoom 1.5s 1;
		animation: zoom 1.5s 1;
		animation-fill-mode: forwards;
	}


	#hed .contents_main_title {
		margin: -35px 0 0 0;
		position: absolute;
		top: 50%;
		left: 7.5%;
	}

	#hed .contents_main_title div {
		position: relative;
	}

	#hed .contents_main_title>div:nth-child(2) {
		margin: 15px 0 0 0;
	}

	#hed .contents_main_title div>p:nth-child(2) {
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		white-space: nowrap;
	}

	#hed .contents_main_title>div:nth-child(1) p {
		font-size: 60px;
		line-height: 60px;
		letter-spacing: 1px;
		color: rgba(255, 255, 255, 1);
		font-weight: 700;
		white-space: nowrap;
		text-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
	}

	#hed .contents_main_title>div:nth-child(2) p {
		font-size: 20px;
		line-height: 20px;
		letter-spacing: 1px;
		color: rgba(255, 255, 255, 1);
		font-weight: bold;
		white-space: nowrap;
		text-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	}

	#hed .opa {
		opacity: 0;
	}

	#hed .contents_main_left {
		width: 20%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
	}

	#hed .contents_main_left .contents_main_title {
		left: 37.5%;
	}

	#hed .contents_main_left .contents_main_title>div:nth-child(1) p,
	#hed .contents_main_left .contents_main_title>div:nth-child(2) p {
		white-space: nowrap;
		color: rgba(0, 0, 0, 1);
		text-shadow: none;
	}

	.s_ttl {
		font-size: .7rem;
		font-weight: 700;
		line-height: 1;
		position: relative;
		letter-spacing: .05rem;
		color: #c49417;
	}

	.s_ttl span {
		font-size: 1.6rem;
		font-weight: bold;
		display: block;
		padding-top: 10px;
		color: #121212;
	}


	.com_table {
		width: 100%;
		margin: 0 auto 30px;
	}

	.com_table th {
		width: 30%;
		padding: 20px;
		text-align: left;
		font-weight: 400;
		line-height: normal;
		position: relative;
		border-bottom: 1px solid rgba(0, 0, 0, 1);
	}

	.com_table td {
		padding: 20px;
		position: relative;
		border-bottom: 1px solid rgba(0, 0, 0, .2);
		vertical-align: middle;
	}

	.button {
		width: 400px;
		height: 50px;
		border: 2px solid #af9b55;
		text-align: center;
		cursor: pointer;
		position: relative;
		box-sizing: border-box;
		overflow: hidden;
		margin: 0 auto;
	}

	.button a {
		font-size: 12px;
		color: #ffe488;
		text-decoration: none;
		line-height: 50px;
		transition: all .5s ease;
		z-index: 2;
		position: relative;
	}

	.eff {
		width: 100%;
		height: 50px;
		border: 0px solid #af9b55;
		position: absolute;
		transition: all .5s ease;
		z-index: 1;
		box-sizing: border-box;
		background: #00000082;
	}

	.button:hover .eff {
		border: 70px solid #af9b55;
	}

	.button:hover a {
		color: #fff;
	}


}

/*sp*/
@media only screen and (max-width: 767px) {
	body {
		overflow-x: hidden;
		font-size: 15px;
		line-height: 1.85;
		letter-spacing: .02em;
	}

	/*--スクロールトップ---------*/
	#totop {
		bottom: 80px;
		display: block;
		position: fixed;
		right: 15px;
		z-index: 50;
		width: 45px;
	}

	#totop a {
		display: block;
		width: 50px;
		height: 50px;
		text-indent: -1000em;
		overflow: hidden;
		background: url(../images/com/btn_scroll_top.png) 0 0 no-repeat;
		background-size: auto auto;
		background-size: 100% auto;
	}

	/*anchor link*/
	/*----------------------------*/
	#policy,
	#knowledge,
	#a, #b, #c, #d, #e, #f, #g {
		padding-top: 50px;
		margin-top: -50px
	}

	/* com
--------------------------------------------*/
	.pcBr {
		display: none;
	}

	.spBr {
		display: inline-block;
	}

	.pc {
		display: none !important;
	}

	.sp {
		display: block;
	}



	/* header
--------------------------------------------*/
	header {
		position: relative;
	}

	.logo_wrap svg {
		max-height: 50px;
	}

	#header {
		padding: 10px 15px;
		width: calc(100% - 30px);
		z-index: 10;
		position: fixed;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	.gnav_menu_box {
		background-color: #fff;
	}

	.logo_wrap {
		width: 170px;
		transition: all 0.5s 0s ease;
		box-sizing: border-box;
	}


	.logo_font_color {
		fill: #fff !important;
	}


	.logo_wrap a {
		display: block;
	}

	/* デフォルトのbuttonスタイルをリセット */
	button {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: transparent;
		border: 0;
		border-radius: 0;
		color: inherit;
		cursor: pointer;
		font: inherit;
		margin: 0;
		outline: none;
		padding: 0;
		vertical-align: middle;
	}

	/* 以下、ハンバーガーボタン */
	.burger-btn {
		display: block;
		width: 50px;
		height: 39px;
		position: relative;
		z-index: 3;
		border: none;
	}

	.bar {
		width: 20px;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		background-color: #000;
	}

	.bar_top {
		top: 10px;
	}

	.bar_mid {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.bar_bottom {
		bottom: 10px;
	}

	.burger-btn.close .bar_top {
		transform: translate(-50%, 10px) rotate(45deg);
		transition: transform .3s;
	}

	.burger-btn.close .bar_mid {
		opacity: 0;
		transition: opacity .3s;
	}

	.burger-btn.close .bar_bottom {
		transform: translate(-50%, -8px) rotate(-45deg);
		transition: transform .3s;
	}

	.menu_list,
	.hed_btn_list {
		display: none;
	}

	.noscroll {
		overflow: hidden;
	}

	#header.scroll-nav {
		background: #FFF;
		background: rgba(255, 255, 255, .85);
		backdrop-filter: blur(4px);
		padding: 10px 15px;
		transition: 0.5s;
	}

	#header.scroll-nav .logo_wrap {
		width: 170px;
		transition: all 0.5s 0s ease;
	}

	#header.scroll-nav .logo_wrap a {}

	#header.scroll-nav .hed_btn_list {
		display: none;
	}


	#header .sns_list {
		position: absolute;
		top: 10px;
		right: 65px;
		display: flex;
		flex-wrap: wrap;
	}

	#header .sns_list li {
		width: 30px;
		height: 30px;
		padding: 3px 3px 5px;
		box-sizing: border-box;
		margin-right: 15px;
		border-radius: 50%;
	}

	#header .sns_list li a {
		display: block;
	}

	#header .sns_list li:last-child {
		margin-right: 0;
	}

	#header .sns_list li.bg01 {
		background: #000;
	}

	#header .sns_list li.bg02 {
		background: #FFF;
		border: 1px solid rgba(0, 0, 0, .6);
	}

	.siteNav {
		display: none;
	}

	.scroll-nav a#logo use {
		fill: #040000 !important;
	}


	/*menu*/
	.menuWrap {
		width: 40px;
		height: 40px;
		z-index: 20000;
		cursor: pointer;
		padding: 5px;
	}

	.menuWrap p {
		width: 100%;
		display: block;
		position: relative;
		font-size: 9px;
		font-weight: bold;
		line-height: 1em;
		text-align: center;
		padding-top: 5px;
		box-sizing: border-box;
	}

	.menu {
		display: block;
		position: relative;
		width: 100%;
		height: 70%;
		top: 0px;

	}

	.menu__line {
		background: #333;
		display: block;
		height: 2px;
		position: absolute;
		transition: transform .3s;
		width: 100%;
	}

	.menu__line--center {
		top: 2px;
	}

	.menu__line--bottom {
		bottom: 0;
	}

	.menu__line--top.active {
		top: 15px;
		transform: rotate(45deg);
		width: 100%;
		background: #333
	}

	.menu__line--center.active {
		transform: scaleX(0);
	}

	.menu__line--bottom.active {
		bottom: 12px;
		transform: rotate(135deg);
		background: #333
	}

	#header.scroll-nav .menuWrap p {
		color: #333;
	}

	#header.scroll-nav .menu__line {
		background: #333;
	}

	/*gnav*/
	.gnav {
		background: #ffffff;
		display: none;
		height: 100%;
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
	}

	.gnav__wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		height: 100%;
		position: absolute;
		width: 100%;
		background-size: cover;
		padding: 10px 15px;
	}

	.gnav_bg_img {
		display: none;
	}

	.gnav_contents {
		width: calc(100% - 4%);
		background-size: 180px 224px, cover;
		height: 100%;
		/* display: flex; */
		/* align-items: center; */
		background-position: bottom right, center center;
		background-repeat: no-repeat, repeat;
	}

	.gnav_contents_box {
		width: 100%;
		align-items: center;
		overflow-y: scroll;
		height: calc(80vh - 65px);
		height: calc(80svh - 65px);
		margin: auto;
	}

	.gnav__menu {
		height: 100%;
		padding: 0 2%;
	}

	.gnav__menu__item {
		border-bottom: 1px solid rgba(0, 0, 0, .15);
		padding: 10px 0;
		box-sizing: border-box;
	}

	.gnav__menu__item a {
		color: #000;
		line-height: 1;
		letter-spacing: 0.03em;
		font-weight: 500;
		text-decoration: none;
		transition: .5s;
		display: block;
		padding: 3px 0;
		box-sizing: border-box;
	}

	.gnav__menu__item a span {
		font-size: 1.8em;
		display: block;
		color: #fb80b0;
	}

	.gnav__menu__item a:hover {
		color: #666;
	}

	.gnav__menu__item ul {
		margin-left: 10px;
	}

	.gnav__menu__item ul li {
		margin: 10px 0;
	}

	.gnav__menu__item ul li a {
		font-size: 0.8rem;
	}

	.gnav_logo {
		width: 220px;
		margin: 0 0 30px;
	}

	.gnav_logo img {
		width: 100%;
		height: auto;
	}

	.gnav_menu_sub {
		box-sizing: border-box;
		margin: 0 auto;
		margin: 20px 0 0 5px;
	}

	.gnav_menu_sub li:nth-child(n+2) {
		margin-top: 10px;
	}

	.gnav_menu_sub li a {
		color: #666;
		display: block;
		font-size: 12px;
	}

	.g_menu_wrap {
		display: none;
	}

	.menu_logo {
		width: 170px;
		margin: 0 0 20px;
	}

	.company_name1 {
		font-size: 0.7rem;
		font-weight: normal;
		margin: 0 0 10px;
		color: #005bac;
	}

	.company_name2 {
		font-size: 0.7rem;
		font-weight: normal;
		margin: 0 0 10px;
		color: #5d1b56;
	}



	/* footer
--------------------------------------------*/
	footer {
		position: relative;
		padding: 60px 5% 75px;
		box-sizing: border-box;
		background: #262322;
		z-index: 5;
		margin-top: -60px;
	}

	#footer {}

	#footer .fot_top {
		display: none;
	}

	#footer .fot_top .fot_list_wrap {
		display: none;
	}

	#footer .fot_top .fot_list_wrap .fot_list_inner {
		padding: 15px 0 0;
		box-sizing: border-box;
		margin: 0 0 30px;
		position: relative;
	}

	#footer .fot_top .fot_list_wrap h3 {
		font-size: 0.7rem;
		font-weight: 300;
		letter-spacing: 0.08em;
		margin: 0 0 10px;
	}

	#footer .fot_top .fot_list_wrap h4 {
		font-size: 0.8rem;
		font-weight: 500;
		margin: 0;
	}

	#footer .fot_top .fot_list_wrap h4 a {}

	#footer .fot_top .fot_list_wrap .fot_list {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 20px;
	}

	#footer .fot_top .fot_list_wrap .fot_list li {
		width: 20%;
		padding: 5px 0;
		box-sizing: border-box;
		font-size: 0.7rem;
	}

	#footer .fot_top .fot_list_wrap .fot_list li a {
		display: block;
	}

	#footer .fot_top .fot_list_wrap .fot_list2 {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
	}

	#footer .fot_top .fot_list_wrap .fot_list2 li {
		width: 20%;
		box-sizing: border-box;
		font-size: 0.8rem;
	}

	#footer .fot_top .fot_list_wrap .fot_list2 li a {
		display: block;
	}

	#footer .fot_btm {
		width: 100%;
	}

	#footer .fot_btm .f_logo_wrap {
		width: 100%;
	}

	#footer .fot_btm .f_logo {
		width: 200px;
		margin: 0 auto;
		box-sizing: border-box;
	}

	#footer .fot_btm .address_wrap {
		width: 100%;
	}

	#footer .fot_btm .address_wrap h2 {
		font-weight: 500;
		color: #FFF;
		font-size: 1rem;
		text-align: center;
		margin: 0 0 15px;
	}

	#footer .fot_btm .address_wrap address {
		margin: 0 0 30px;
		color: #FFF;
		font-style: normal;
		text-align: center;
		font-size: .8rem;
		letter-spacing: -.01rem;
	}

	#footer .fot_btm .address_wrap address span {
		display: block;
	}

	#footer .fot_btm .copy {
		text-align: center;
		color: #FFF;
		font-size: .8rem;
		letter-spacing: 0rem;
	}



	/*--------スマホメニュー-------*/
	.sp_list {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: fixed;
		bottom: 0;
		z-index: 1000;
		height: 60px;
		background: rgba(255, 255, 255, 1);
	}

	.sp_list li {
		background: rgba(113, 93, 20);
		width: 33.2%;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sp_list li a {
		display: block;
		color: #fff;
		text-align: center;
		font-size: .7rem;
	}

	.sp_list li a span.tit {
		display: block;
		line-height: 1;
	}

	.sp_list li a i {
		font-size: 16px;
		margin: 0 0 10px;
	}

	.sp_list .end {
		display: none;
	}

	/*contact_fot
---------------------------------------------*/
	#contact_fot {
		background: url("../images/com/bg_contact.jpg") 0 0 repeat;
		padding: 2rem 1.5rem 1rem;
		box-sizing: border-box;
	}


	#contact_fot h2 {
		font-size: 1.6rem;
		line-height: 1;
		font-weight: 500;
		margin: 0 auto 20px;
		letter-spacing: -.05rem;
		color: #FFF;

		text-align: center;
	}

	#contact_fot .read_txt {
		color: #FFF;
		text-align: center;
		margin: 0 0 20px;
	}

	#contact_fot .section_wrap {
		width: 90%;
		margin: 0 auto 60px;
	}

	#contact_fot .section_wrap .box {
		width: 100%;
		position: relative;
		padding: 15px 0;
		box-sizing: border-box;
	}

	#contact_fot .section_wrap .box:first-child::before {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: rgba(255, 255, 255, .2);
	}

	#contact_fot .section_wrap .box .icon {
		width: 30px;
		margin: 0 auto 20px;
	}

	#contact_fot .section_wrap .box h3 {
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
		text-align: center;
		color: #FFF;
		margin: 0 0 10px;
	}

	#contact_fot .section_wrap .box p {
		text-align: center;
		color: #FFF;
	}

	#contact_fot .section_wrap .box p.mail_txt {
		color: #FFF;
		font-size: 1.2rem;
		font-weight: 500;
		letter-spacing: .1rem;
	}

	#contact_fot .section_wrap .box a {
		color: #FFF;
	}

	/*hed
---------------------------------------------*/
	#hed {
		width: 100%;
		height: calc(70svh - 80px);
		padding: 80px 0 0 20%;
		box-sizing: border-box;
		position: relative;
		margin: 0 auto 60px;
	}

	#hed .hed_img {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
		background: rgba(255, 255, 255, 1);
	}

	#hed .hed_img .bg_img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}


	#hed .contents_main_title {
		position: absolute;
		top: 50%;
		left: 7.5%;
	}

	#hed .contents_main_title div {
		position: relative;
	}

	#hed .contents_main_title>div:nth-child(2) {
		margin: 15px 0 0 0;
	}

	#hed .contents_main_title div>p:nth-child(2) {
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		white-space: nowrap;
	}

	#hed .contents_main_title>div:nth-child(1) p {
		font-size: 22px;
		line-height: 22px;
		letter-spacing: 1px;
		color: rgba(255, 255, 255, 1);
		font-weight: 700;
		white-space: nowrap;
		text-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
	}

	#hed .contents_main_title>div:nth-child(2) p {
		font-size: 16px;
		line-height: 16px;
		letter-spacing: 1px;
		color: rgba(255, 255, 255, 1);
		font-weight: bold;
		white-space: nowrap;
		text-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	}

	#hed .opa {
		opacity: 0;
	}

	#hed .contents_main_left {
		width: 20%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
	}

	#hed .contents_main_left .contents_main_title {
		left: 37.5%;
	}

	#hed .contents_main_left .contents_main_title>div:nth-child(1) p,
	#hed .contents_main_left .contents_main_title>div:nth-child(2) p {
		white-space: nowrap;
		color: rgba(0, 0, 0, 1);
		text-shadow: none;
	}

	.s_ttl {
		font-size: .5rem;
		font-weight: 700;
		line-height: 1;
		position: relative;
		box-sizing: border-box;
		color: #c49417;
	}

	.s_ttl span {
		font-size: 1.2rem;
		font-weight: bold;
		display: block;
		padding-top: 10px;
		color: #121212;
	}

	.com_table {
		width: 100%;
		margin: 0 auto 30px;
	}

	.com_table th {
		width: 100%;
		padding: 10px 10px 0;
		text-align: left;
		font-weight: 400;
		line-height: normal;
		position: relative;
		display: block;
	}

	.com_table td {
		display: block;
		padding: 10px;
		position: relative;
		border-bottom: 1px solid rgba(0, 0, 0, .2);
		vertical-align: middle;
	}

	.button {
		width: 90%;
		height: 45px;
		border: 2px solid #af9b55;
		text-align: center;
		cursor: pointer;
		position: relative;
		box-sizing: border-box;
		overflow: hidden;
		margin: 0 auto;
	}

	.button a {
		font-size: 12px;
		color: #af9b55;
		text-decoration: none;
		line-height: 40px;
		transition: all .5s ease;
		z-index: 2;
		position: relative;
	}

	.eff {
		width: 100%;
		height: 45px;
		border: 0px solid #af9b55;
		position: absolute;
		transition: all .5s ease;
		z-index: 1;
		box-sizing: border-box;
		background: #00000082;
	}

	.button:hover .eff {
		border: 70px solid #af9b55;
	}

	.button:hover a {
		color: #fff;
	}

}