/* reset */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	line-height: 1.8em;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}
body {
	line-height: 1.5;
}
ol,ul {
	list-style: none;
}
blockquote,q {
	quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	word-break: break-all;
}
a,a:link,a:visited,a:hover,a:active {
	text-decoration: none;
	color: inherit;
}
/* resetここまで */
/* サイト全体 */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 15px;
	color: #393a3a;
	letter-spacing: 0.2em;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
p{
	line-height: 2.0rem;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.trans,.trans * {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.bold{
	font-weight: bold;
}
.fw600{
	font-weight: 600;
}
.small{
	font-size: 0.8em;
}
.center{
	text-align: center;
}
.center_item{
	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;
}
.dib{
	display: inline-block;
}
.f_goth{
	font-family: "游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.color_red{
	color: #e94709;
}
.color_blue{
	color: #1877d0;
}
.cf::after {
	content: "";
	display: block;
	clear: both;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}
.w1000 {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}
.w1080 {
	width: 100%;
	max-width: 1080px;
	margin: auto;
}
.w1280 {
	width: 100%;
	max-width: 1280px;
	margin: auto;
}
.obf_cover{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.obf_cover img{
	position: absolute;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	max-width: 1000%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
	.obf_cover img {
		position: static;
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-webkit-transform: none;
		transform: none;
	}
}
main{
	display: block;
	margin-top: 67px;
}
.fadein{
	opacity: 0;
	-webkit-transition: 1.3s ease-in-out;
	transition: 1.3s ease-in-out;
	-webkit-filter: blur(5px);
	filter: blur(5px);
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}
.active.fadein{
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@media only screen and (min-width:1025px) {
	.pc {
		display: block;
	}
	.pc_di {
		display: inline;
	}
	.sp {
		display: none;
	}
}
@media only screen and (max-width:1024px) {
	* {
		line-height: 1.6rem;
	}
	body,p {
		font-size: 13px;
		line-height: 1.8rem;
	}
	.pc,.pc_di {
		display: none;
	}
	.sp {
		display: block;
	}
	.w1000,.w1080,.w1280 {
		max-width: 100%;
	}
	main{
		margin-top: 32px;
	}
}
/*ヘッダー*/
header{
	width: 100%;
	height: 62px;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	padding: 0 40px;
	z-index: 1000;
}
.head_logo{
	padding: 10px 0;
}
.header_bnr{
	width: 300px;
	margin-left: 30px;
}
.head_nav {
	min-width: 710px;
}
.head_nav_item{
	padding: 20px 10px;
}
.head_nav_having_sub{
	position: relative;
	display: none;
}
.head_nav_having_sub::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 12px 12px;
	border-color: transparent transparent #000 transparent;
	position: absolute;
	bottom: -21px;
	left: calc(50% - 12px) ;
}
.head_nav_item_a{
	border-bottom: solid 1px transparent;
	font-size: 0.9em;

}
.head_nav_sub{
	width: 100vw;
	height: 67px;
	position: absolute;
	background: #000;
	color: #fff;
	bottom: -67px;
	left: 0;
	display: none;
}
.head_nav_sub_inner{
	position: absolute;
	top: 20px;
}
.head_nav_item03 .head_nav_sub_inner{
	/*right: 50px;*/
	right: 100px;
}
.head_nav_item04 .head_nav_sub_inner{
	/*right: 240px;*/
	right: 290px;
}
.head_nav_item05 .head_nav_sub_inner{
	right: 50px;
}
.head_nav_item07 .head_nav_sub_inner{
	right: 20px;
}
/* .head_nav_sub::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 12px 12px;
	border-color: transparent transparent #000 transparent;
	position: absolute;
	top: -12px;
}
.head_nav_item03 .head_nav_sub::after{
	right: 490px;
}
.head_nav_item04 .head_nav_sub::after{
	right: 425px;
}
.head_nav_item05 .head_nav_sub::after{
	right: 335px;
}
.head_nav_item07 .head_nav_sub::after{
	right: 195px;
} */

.head_sub_a{
	padding: 0 5px;
	margin: 0 10px;
	border-bottom: solid 1px transparent;
}
#nav_toggle{
	display: none;
}
.shop_bnr{
	position: fixed;
	right: 0;
	bottom: calc(50% - 134px);
	z-index: 100;
}
.shop_bnr a{
	display: block;
}
.shop_bnr_sp{
	display: none;
}
.en_page .head_nav_item_a{
	font-size: 1em;
}


@media only screen and (min-width:1025px) {
	.head_nav_item_a:hover{
		border-bottom: solid 1px #af8c0e;
		color: inherit;
	}
	.head_sub_a:hover{
		border-bottom: solid 1px #fff;
	}
	.head_sub_a::before{
		content: "・";
	}
	.shop_bnr a:hover{
		opacity: 0.5;
	}
}

@media only screen and (max-width:1024px) {
	header{
		padding: 10px 20px;
		height: auto;
	}
	.head_logo{
		padding: 0;
	}
	.head_logo_img{
		width: 120px;
	}
	.head_nav {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background: #000;
		color: #fff;
		display: none;
		padding: 20px 30px;
		font-size: 11px;
		overflow: scroll;
		z-index: 10;
	}
	.head_nav_item{
		padding: 3px 0;
	}
	.head_nav_item_a{
		padding: 0;
	}
	.head_nav_sub{
		display: block;
		position: static;
		border-left: solid 1px #fff;
		margin-left: 13px;
		padding: 0 0 0 15px;
		height: auto;
	}
	.head_nav_sub_inner{
		display: block;
		position: static;
	}
	.head_sub_a{
		display: block;
		margin: 0;
		padding: 3px 0;
	}

	/*開閉ボタン*/
	#nav_toggle{
		position: fixed;
		right: 10px;
		top: 5px;
		width: 40px;
		height: 30px;
		cursor: pointer;
		z-index: 10000;
		padding: 5px;
		display: block;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		position: absolute;
		height: 1px;
		width: 100%;
		background: #000;
		color: #000;
		right: 0;
		text-align: center;
		-webkit-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top: 0px;
	}
	#nav_toggle span:nth-child(2) {
		top: 6px;
		width: 25px;
	}
	#nav_toggle span:nth-child(3) {
		top: 12px;
		width: 20px;
	}
	/*#nav_toggle span:nth-child(4) {
	top: 24px;
	height: 0;
	line-height: 1.0em;
	font-size: 10px;
}*/
	.open#nav_toggle span:nth-child(1) {
		top: 15px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		background: #fff;
	}
	.open#nav_toggle span:nth-child(2) {
		width: 0;
		right: 50%;
	}
	.open#nav_toggle span:nth-child(3) {
		top: 15px;
		width: 100%;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		background: #fff;
	}

	.shop_bnr{
		bottom: 0;
	}
	.shop_bnr_sp{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 50px;
		width: 100vw;
	}
	.shop_cart{
		width: 50px;
	}
	.shop_bnr_txt{
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		background: #3A3B3B;
		color: #fff;
		padding-top: 15px;
	}
	a.sp_enja_btn{
		position: absolute;
		right: 60px;
		top: 0;
		background: #3a3b3b;
		color: #fff;
		height: 100%;
		width: 50px;
		font-size: 1.3em;
		line-height: 1.8em;
	}
}

/*フッター*/
footer{
	padding: 130px 0 30px;
	background: url(../images/top/foot_bk.jpg);
	background-size: cover;
	color: #fff;
	text-shadow: 0 0 5px #000;
}
.foot_inner{
	border-top: solid 1px #fff;
	padding-top: 50px;
}
.foot_l,.foot_r{
	max-width: 460px;
	width: 100%;
}
.foot_nav_item{
	margin-bottom: 20px;
}
.foot_nav_sub{
	padding-left: 20px;
	margin-top: 10px;
}
.foot_nav_item_a,.foot_sub_a{
	display: block;
	border-bottom: solid 1px transparent;
}
.foot_bnr{
	display: block;
	outline: solid 0px #fff;
	margin-bottom:15px;
}
.foot_bnr:last-child{
	margin-bottom:0
}
.foot_contact_wrap{
	margin-top: 60px;
}
.foot_contact_btn{
	border: solid 3px #fff;
	padding: 10px;
	max-width: 250px;
	width: 100%;
	border-radius: 30px;
}
.foot_sns_btn{
	position: relative;
}
.foot_sns_icon{
	background: #fff;
	border-radius: 30px;
	padding: 10px;
	position: relative;
	width: 60px;
	height: 60px;
}
.foot_sns_icon_hov{
	position: absolute;
	left: 0;
	top: 0;
	background: #393a3a;
	opacity: 0;
	z-index: 1;
}
.foot_add{
	margin-top: 30px;
}
.foot_jfs{
	display: block;
	outline: solid 0px #fff;
}
.foot_logo img{
	margin:60px auto 0 auto;
}
.copyright{
	font-size: 0.8em;
	margin-top: 20px;
}

@media only screen and (min-width:1025px) {
	a.foot_nav_item_a:hover, a.foot_sub_a:hover{
		border-bottom: solid 1px #fff;
	}
	.foot_bnr:hover,.foot_jfs:hover{
		outline: solid 3px #fff;
	}
	a.foot_contact_btn:hover{
		background:#fff;
		text-shadow: none;
		color: #393a3a;
	}
	.foot_sns_btn:hover .foot_sns_icon{
		opacity: 0;
	}
	.foot_sns_btn:hover .foot_sns_icon_hov{
		opacity: 1;
	}
}

@media only screen and (max-width:1024px) {
	footer{
		padding: 50px 10px 70px;
		background: url(../images/top/foot_bk_sp.jpg);
		background-size: cover;
		background-position: 70% top;
	}
	.foot_inner{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.foot_l, .foot_r{
		margin: auto;
	}
	.foot_l{
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: 50px;
	}
	.foot_nav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		font-size: 11px;
	}
	.foot_nav01{
		padding-right: 20px;
	}
	.foot_contact_wrap{
		margin-top: 30px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.foot_contact_btn{
		max-width: calc(100% - 20px);
		padding: 5px;
		margin-bottom: 20px;
	}
	.foot_sns_icon{
		width: 40px;
		height: 40px;
		margin: 0 10px;
		padding: 0;
	}
	.icon_insta{
		height: 21px;
		width: auto;
	}
	.foot_logo_img{
		width: 120px;
	}
}

/*404*/
.not404{
	font-size: 200px;
	color: #7d6514;
	letter-spacing: 0.2em;
	line-height: 1.3em;
}
.not404_txt{
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.2em;
}
.not404_p{
	font-size: 24px;
	margin-top: 70px;
	line-height: 2.0em;
}
.not_link_btn{
	width: 270px;
	margin: 70px auto 0;
}

/*英語ヘッダー*/
body.en_page{
	letter-spacing: 0.05em;
}
.en_page header{
	padding: 0 10px;
}
.en_page head_logo{
	padding:20px 0;
}
.en_page .head_nav{
	font-size: 0.8em;
}
.en_page .head_nav_item03 .head_nav_sub_inner{
	right: 150px;
}
.en_page .head_nav_item03 .head_nav_sub::after{
	right: 535px;
}
.en_page .head_nav_item04 .head_nav_sub::after{
	right: 460px;
}
.en_page .head_nav_item05 .head_nav_sub::after{
	right: 345px;
}

@media only screen and (max-width:1024px) {
	.en_page header {
		padding: 10px 20px;
	}
}

/*英語フッター*/
.en_page .foot_add_info{
	width: calc(100% - 90px);
	font-size: 0.9em;
}
.en_page .foot_jfs{
	width: 80px;
}

/* 年齢確認　popup */
body.open_popup {
    overflow: hidden;
  }
.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity:0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width:50%;
    min-width: 320px;
    background-color: #fff;
}

.onetime_popup_title {
    position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #000;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}
.onetime_popup_flex{
  display: flex;
  width:100%;
  justify-content: center;
}
.onetime_popup_title_close {
  text-align:center;
  width:200px;
  height:60px;
  line-height:60px;
  background:#af8c0e;
  color:#fff;
  font-size:22px;
  border-radius:5px;
  cursor:pointer;
  margin-right:1em;
}
.onetime_popup_flex a.no_btn{
  display: block;
  text-align:center;
  text-decoration:none;
  width:200px;
  height:60px;
  line-height:60px;
  font-size:22px;
  border-radius:5px;
  cursor:pointer;
  border:solid 1px #393a3a;
  color:#393a3a;
}
.onetime_popup_content {
    padding:30px;
    text-align: center;
	line-height: 1.5em;
}
.onetime_popup_content .iblock{
  display:inline-block;
}
.onetime_popup_content .strong_text{
  font-weight:bold;
  font-size:1.5em;
	margin:1em 0;
}