@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: top; max-width: 100%;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}
q:after, q:before
{ content:'';}
a, input,select,textarea,button
{ outline: none; }
abbr, acronym
{ border: 0;}
*, *:before, *:after {box-sizing: border-box;}


@media screen and (min-width: 768px) {
	.sp{display: none!important;}
}
@media screen and (max-width: 767px) {
	.pc{display: none!important;}
}
/* !Layout
---------------------------------------------------------- */
html { 
	overflow-y: scroll;
	font-size: 62.5%;
}
body {
	font-family: "EB Garamond", serif;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	color: #EEEEEE;
	letter-spacing: 0.05em;
}


@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw / 144);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 41.4);
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;/*16px*/
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.2rem;/*16px*/
  }
}
/* !Base Fonts -------------------------------------------------------------- */
a {
	color: #EEEEEE;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

@media screen and (min-width: 768px) {
	a:hover {
		opacity: .7;
		text-decoration: none;
		transition: all 0.5s !important;
		-moz-transition: all 0.5s !important; /* Firefox */
		-webkit-transition: all 0.5s !important; /* Chrome&Safari */
	}

}
/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	background: #000000;
	width: 100%;
}
.menuOpen{
	overflow: hidden;
	height: 100vh;
}
.menuOpen #wrapper{
	position: fixed;
}
.overlay{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: none;
	z-index: 97;
	text-indent: -999rem;
	pointer-events: auto;
}
.inner,
.inner02 {
	margin: 0 auto;
	width: 100%;
	max-width: 120rem;
	padding: 0 4rem;
	position: relative;
	z-index: 3;
}
.inner02 {
	max-width: 110.4rem;
}
@media screen and (max-width: 767px) {
	.inner,
	.inner02 {
		padding: 0 1.5rem;
	}
}
/* !header
---------------------------------------------------------- */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 98;
	padding: 0 5rem 0 3.5rem;
}
.home #header{
	display: none;
}

#headerIn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 9rem;
}
#headerLogo img{
	width: 9.7rem;
}

@media screen and (max-width: 767px) {
	#header {
		padding: 0 0 0 1.5rem;
	}
	#headerIn {
		height: 6rem;
		font-size: 0;
	}
	#headerLogo img{
		width: 7rem;
	}

	.btnMenu a {
	  display: block;
	  width: 7rem;
	  height: 6rem;
	  box-sizing: border-box;
	  position: relative;
	  z-index: 999;
	}

	.btnMenu a span {
	  display: block;
	  background: #EEEEEE;
	  width: 4rem;
	  height: .2rem;
	  position: absolute;
	  left: 1.5rem;
	  transition: all 0.4s;
	  -webkit-transition: all 0.4s;
	  -moz-transition: all 0.4s;
	}

	.btnMenu a span:first-child {
		top: 2.5rem;
	}

	.btnMenu a span:nth-child(2) {
		margin-top: -.1rem;
		top: 50%;
		opacity: 0;
	}

	.btnMenu a span:last-child {
	  bottom: 2.6rem;
	}

		
	.btnMenu.active a span:first-child {
	  -webkit-transform: translateY(.4rem) rotate(40deg);
	  -moz-transform: translateY(.4rem) rotate(40deg);
	  -ms-transform: translateY(.4rem) rotate(40deg);
	  transform: translateY(.4rem) rotate(40deg);
	}

	.btnMenu.active a span:nth-child(2) {
	  opacity: 0;
	}

	.btnMenu.active a span:last-child {
	  -webkit-transform: translateY(-.4rem) rotate(-40deg);
	  -moz-transform: translateY(-.4rem) rotate(-40deg);
	  -ms-transform: translateY(-.4rem) rotate(-40deg);
	  transform: translateY(-.4rem) rotate(-40deg);
	}
}

/* !gNavi
---------------------------------------------------------- */
@media screen and (min-width: 768px) {
	#gNavi ul{
		display: flex;
		grid-gap: 2.4rem;
	}
	#gNavi li a {
		font-size: 2rem;
		letter-spacing: 0.05em;
		display: block;
		line-height: 2;
		color: #EEEEEE;
		text-shadow: 0 .2rem .4rem rgba(0,0,0,.6);
	}	
}
@media screen and (max-width: 767px) {
	#gNavi {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		z-index: 98;
		box-sizing: border-box;
		padding: 12rem 1.5rem 8rem;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s,right .3s;

		background: rgba(34,34,34,.88);
	}
	#gNavi.active{
	    opacity: 1;
	    pointer-events: auto;
	}	

	#gNavi ul{
	}
	#gNavi li+li{
		margin-top: 3.4rem;
	}
	#gNavi a{
		display: block;
		text-align: center;
		font-size: 3rem;
		letter-spacing: 0.05em;
	}
}

	
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	position: relative;
}
#mainVisual:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
	width: 100%;
	height: 10.9rem;
	background-image: linear-gradient(to top, #000 0%, transparent 100%);
}
.mvSlist img{
	width: 100%;
	height: 80rem;
	object-fit: cover;
}
.mvLogo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
	width: 40rem;
}
.mvLogo img{
	width: 100%;
}

.mvCont{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
	display: flex;
	align-items: center;
	flex-direction: column;
    width: 100%;
}
.mvTxt{
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
	text-shadow: 0 .3rem .6rem rgba(0,0,0,.3);
}
.mvTxt span{
	font-size: 8rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.areaDl{
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	background: #000000;
	color: #8A7967;
	font-size: 2rem;
	letter-spacing: 0.05em;
	display: flex;
}
.areaDl dt{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8A7967;
	color: #EEEEEE;
	width: 7.4rem;
	height: 6.9rem;
}
.areaDl dd{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2.6rem;
}

.mvCont .areaDl{
	position: static;
	transform: none;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#mainVisual:before {
		height: 8rem;
	}
	.mvSlist img{
		height: 60rem;
	}
	.home .mvSlist img{
		height: 50rem;
	}
	.mvLogo{
		width: 18rem;
	}
	.mvCont{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		z-index: 9;
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.mvTxt{
		font-size: 2.4rem;
		letter-spacing: 0.05em;
		line-height: 2;
		text-align: center;
		text-shadow: 0 .3rem .6rem rgba(0,0,0,.3);
	}
	.mvTxt span{
		font-size: 5rem;
		line-height: 1.3;
		letter-spacing: 0.05em;
	}
	.mvCont .areaDl{
		position: static;
		transform: none;
		margin-top: 5.5rem;
	}
}

/* !footer
---------------------------------------------------------- */
#footer {
	padding: 20rem 0;
	text-align: center;
}

.footerLogo img{
	width: 23.4rem;
}
.footerLogo{
	display: none;
}
.home .footerLogo{
	display: block;
}
.footerContact{
	padding: 11rem 0 0;
	margin: 0 auto;
	max-width: 70rem; 
	border-top: 1px solid #8A7967;
}
.home .footerContact{
	border-top: 0;
}
.footerContact a{
	display: flex;
	align-items: center;
	height: 10rem;
	padding-left: 5.2rem;
	font-size: 4.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #EEEEEE;
	background: url(../img/shop/arrow01.svg)no-repeat right 5.7rem center #8A7967;
	background-size: 13rem auto;
}
	
#copyright {
display: flex;
justify-content: center;
margin-bottom: 4em;
	font-size: 1.2rem;
}
.home .mapArea{
	display: none;
}
.mapArea {
    position: relative;
    width: 100%;
    padding-top: 45rem;
}
.mapArea iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 8rem 0;
	}
	.footerLogo img{
		width: 18rem;
	}
	.footerContact{
		padding: 0 0 0;
		border-top: 0;
	}
	.home .footerContact{
		padding-top: 7.8rem;
	}
	.footerContact a{
		height: 7rem;
		padding-left: 3.6rem;
		font-size: 2.8rem;
		letter-spacing: 0.05em;
		background: url(../img/shop/arrow01_sp.svg)no-repeat right 3rem center #8A7967;
		background-size: 6.6rem auto;
	}
	#copyright {
		font-size: 1rem;
	}
}

/* !h(n)eading
---------------------------------------------------------- */
.commonTxt{
	font-size: 2.4rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.commonTxt p+p{
	margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
	.commonTxt{
		font-size: 1.8rem;
		line-height: 1.28;
		letter-spacing: 0.05em;
	}
	.commonTxt p+p{
		margin-top: 2.3rem;
	}
}



/*detail*/
.detailSec01{
	padding: 20rem 0 25rem;
	background-image: linear-gradient(135deg, #3B0300 0%, #B04500 100%);
    position: relative;
    overflow: hidden;
}
.detailSec01 .concept_bg {
position: absolute;
bottom:0;
left: 50%;
transform: translateX(-50%);
max-width: 150%;
opacity: 0.2;
mix-blend-mode: soft-light;
width: 100%;
}
@media(min-width:769px){
.detailSec01 .concept_bg {
bottom:-75%;
transform: translate(-50%,-75%);
}
}
.detailHd{
	padding-top: 2.4rem;
	font-size: 6rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #8A7967;
	text-align: center;
	margin-bottom: 10rem;
}
.detailSec01Item{
	display: flex;
    justify-content: space-between;
}
.detailSec01Item.reverse{
    flex-direction: row;
}

.detailSec01Item dt{
	margin-left: -16rem;
	width: 72rem;
}
.detailSec01Item.reverse dt{
	width: 51rem;
    margin-left: 0;
	margin-right: -16rem;
}

.detailSec01Item dd{
	width: 51rem;
}

.detailSec01Item.reverse dd{
	margin-right: -16rem;
	width: 72rem;
}
.detailSec01Item .title{
	font-size: 2.8rem;
	line-height: 1.285;
	letter-spacing: 0.05em;
	margin-bottom: 5rem;
}
.detailSec01Item .commonTxt{
	font-size: 1.8rem;
}

.detailSec02{
	padding: 20rem 0 0;
}
.detailSec02 .detailHd{
	text-align: left;
	margin-bottom: 8rem;
}
.detailSec02Txt{
	max-width: 90rem;
	font-size: 3.2rem;
	line-height: 1.575;
	letter-spacing: .1em;
}
.detailSec02Img{
	margin-top: -7.5rem;
	position: relative;
}
.detailSec02Img:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	z-index: 1;
	width: 27.3rem;
	height: 28.7rem;
	background: url(../img/shop/bg_span.svg)no-repeat bottom center;
	background-size: 100% auto;
}
.detailSec02Img img{
	width: 100%;
}
.detailSec02Img:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}

.detailSec03{
	padding: 20rem 0 0;
}
.detailSec03 .detailHd{
	margin-bottom: 3.5rem;
}
.detailSec03Txt{
	font-size: 3.2rem;
	line-height: 1.575;
	letter-spacing: .1em;
	margin-bottom: 4rem;
	text-align: center;
}
.detailSec03List{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 1.5rem;
}

.detailSec04{
	padding: 20rem 0 0;
}
.detailSec04 .detailHd{
	margin-bottom: 5rem;
}
.detailSec04Img video{
	width: 100%;
}
@media screen and (max-width: 767px) {
	.detailSec01{
		padding: 8rem 0 7rem;
	}
	.detailHd{
		padding-top: 2rem;
		font-size: 3.5rem;
		line-height: 1.285;
		letter-spacing: 0.05em;
		text-align: center;
		margin-bottom: 4.4rem;
	}
	.detailSec01Item{
		display: block;
	}
	.detailSec01Item.reverse{
    display: flex;
		flex-direction: column-reverse;
        align-items: center;
	}
	.detailSec01Item dt{
		width: auto;
		margin-left: 0;
	}
	.detailSec01Item.reverse dt{
		width: auto;
        margin-right: 0;
		margin-top: 4rem;
	}
	.detailSec01Item dd{
		width: auto;
		margin-top: 4rem;
	}
	.detailSec01Item.reverse dd{
		width: auto;
        margin-right: 0;
	}
	.detailSec01Item .title{
		margin-bottom: 4rem;
	}
	.detailSec01Item .commonTxt{
		font-size: 1.8rem;
	}

	.detailSec02{
		padding: 8rem 0 0;
	}
	.detailSec02 .detailHd{
		text-align: center;
		margin-bottom: 5rem;
	}
	.detailSec02Txt{
		font-size: 2.4rem;
		line-height: 1.5;
		letter-spacing: .1em;
		text-align: center;
	}
	.detailSec02Img{
		margin-top: 0;
	}
	.detailSec02Img:before{
		left: auto;
		right: 0;
		width: 25.3rem;
		height: 26.5rem;
	}
	.detailSec02Img img{
		width: 100%;
		height: 40rem;
		object-fit: cover;
	}

	.detailSec03{
		padding: 8rem 0 0;
	}
	.detailSec03 .detailHd{
		margin-bottom: 5.5rem;
	}
	.detailSec03Txt{
		font-size: 2.4rem;
		line-height: 1.5;
		letter-spacing: .1em;
		margin-bottom: 5rem;
		text-align: center;
	}
	.detailSec03List{
		display: grid;
		grid-template-columns: repeat(1,1fr);
		grid-gap: 1.5rem;
		padding: 0 1.5rem;
	}

	.detailSec04{
		padding: 8rem 0 0;
	}
	.detailSec04 .detailHd{
		margin-bottom: 5rem;
	}
	.detailSec04Img img{
		width: 100%;
		height: 23rem;
		object-fit: cover;
	}
}
.bottomFooter__topBtn {
position: fixed;
bottom: 0;
right: 0;
display: block;
background-color: #8A7967;
color: #fff;
width: 56px;
height: 56px;
z-index: 999;
}
.bottomFooter__topBtn:before {
content: "";
position: absolute;
top: 50%;
right: 50%;
transform: rotate(-45deg);
margin-top: -3px;
margin-right: -6px;
width: 12px;
height: 12px;
border-top: 3px solid;
border-right: 3px solid;
transition: .3s;
}

	.nav_transition {
	margin-top: 2em;
	}
	.nav_transition:nth-of-type(2) {
	margin-top: 0.7em;
	margin-bottom: 4em;
	}
	.nav_transition li {
	}
	.nav_transition li a {
	display: block;
	width: 100%;
	margin: 1em 0 0;
	padding: 1em;
	text-align: center;
	line-height: 1.5;
	border:1px solid #8A7967;
	font-size: 2rem;
	color: #8A7967;
	}
	.nav_transition li:nth-of-type(1) a {
	margin-top: 0;
	}
	@media(min-width:768px){
	.nav_transition {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:1em;
	margin-top: 8em;
	}
	.nav_transition:nth-of-type(2) {
	 margin-top: calc(1em + 0.25em);
	 margin-bottom: 8em;
	}
	.nav_transition li {
	width: calc(50% - 1em);
	}
	.nav_transition li:nth-of-type(1) a {
	margin-top: 1em;
	}
	}
