@charset "utf-8";

*{
	margin:0;
	padding:0;
	box-sizing: border-box;	
}

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, font, 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, section, article, aside, hgroup, header, footer, nav, dialog, figure, menu, video, audio, mark, time, canvas, details {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align:baseline;
	background: transparent;
}

article, aside, canvas, details, figcaption, figure, header,
footer, hgroup, menu, nav, section, summary {
display: block;
}

@media only screen and 
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .hoge {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

ol, ul {
	list-style: none;
}

address,caption,cite,code,dfn,em,strong,var {
	font-style: normal;
}

caption,th {
	text-align: left;
	font-weight:normal;
}

q:before,q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

h1,h2,h3,h4,h5,h6,textarea {
	font-size: 100%;
}

img,abbr,acronym,fieldset {
	border: 0;
}

img{
	max-width: 100%;
	height: auto;
	line-height: 1;
}

table {
	font-size:100%;
	border-collapse: collapse;
	border-spacing: 0;
	vertical-align:top;
}

h1,h2,h3,h4,h5,th{
	font-weight: normal;
}



/* For modern browsers */
.cf:before,
.cf:after,
.contact_det li:before,
.contact_det li:after,
.contact_det-btn li:before,
.contact_det-btn li:after {
    content:"";
    display:table;
}
 
.cf:after,
.contact_det li:after,
.contact_det-btn li:after {
    clear:both;
}

a:link , a:active , a:visited {
	color: inherit;
	text-decoration:none;
}

/*--- リンクカラー */

a {
	outline: 0;
}

.clm-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


/* -----------------------------------------------------------

	ページ共通設定
	
----------------------------------------------------------- */


html, body {
	width: 100%;
	color: #333;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.04em;
	font-feature-settings: "palt";
	overflow-x: hidden;
	font-family: myriad-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
}

body {
	background: url(../../img/common/body_bg.jpg);
    animation: fadeIn .3s ease 0s 1 normal;
    -webkit-animation: fadeIn .3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../img/common/body_bg.jpg);
	z-index: 9999; 
	pointer-events: none;
	opacity: 0; 
	-webkit-transition: opacity .4s ease; 
	transition: opacity .4s ease;
}

body.fadeout::after {
	opacity: 1;
}

.fadeup{
	opacity: 0;
    transition: .64s ease-out;
}

.fadeup.view{
	opacity: 1;
}

.thumb-wrap a{
	display: block;
	overflow: hidden;
	line-height: 0;
}

.thumb-wrap a img{
	transition: .5s ease-out;
}

.thumb-wrap a:hover img{
	transform: scale(1.03);
	opacity: .9;
}




/* ----------------------------------------------------------------

　　open_menu

----------------------------------------------------------------- */


.openmenu{
	position: relative;
	z-index: 999;
}

.openmenu__bg {
	  width: 20vw;
	  height: 100%;
	  position: fixed;
	  z-index: 998;
	  background: rgba(213,210,207,.9);
	  top: 0;
	  left: 0;
	  pointer-events: none;
	  transition: all .4s ease-in-out .2s;
	  transform: translateX(-105%);
}

.open .openmenu__bg {
	transform: translateX(0);
	pointer-events: auto;
}

.openmenu__btn{
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 60px;
    left: 4vw;
    text-align: center;
    z-index: 999;
}

.openmenu__btn:after{
	content: "";
	display: block;
    cursor: pointer;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
    z-index: -1;
}

.openmenu__btn .toggle {
	height: 2px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    background: #171818;
	transition: all .5s ease;
}
.openmenu__btn span:nth-child(1) {top: 0;}

.openmenu__btn span:nth-child(2) {width: 50%; top: 50%; transform: translateY(-50%);}

.openmenu__btn span:nth-child(3) {bottom: 0;}


.openmenu__btn.active span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
    animation: open1 .6s ease 0s 1 normal;
    -webkit-animation: open1 .6s ease 0s 1 normal;
}

@keyframes open1 {
    0% {transform: translateY(-50%);}
    50% {transform: translateY(0%);}
    100% {transform: translateY(-50%) rotate(45deg);}
}

@-webkit-keyframes open1 {
    0% {-webkit-transform: translateY(-50%);}
    50% {-webkit-transform: translateY(0%);}
    100% {-webkit-transform: translateY(-50%) rotate(45deg);}
}


.openmenu__btn.active span:nth-child(2) {
	opacity: 0;
}

.openmenu__btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    animation: open2 .6s ease 0s 1 normal;
    -webkit-animation: open2 .6s ease 0s 1 normal;
}

@keyframes open2 {
    0% {transform: translateY(50%);}
    50% {transform: translateY(0%);}
    100% {transform: translateY(50%) rotate(-45deg);}
}

@-webkit-keyframes open2 {
    0% {-webkit-transform: translateY(50%);}
    50% {-webkit-transform: translateY(0%);}
    100% {-webkit-transform: translateY(50%) rotate(-45deg);}
}


.openmenu__nav_wrap{
	width: 20vw;
	height:100vh;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s ease-in-out 0s , transform .2s ease-in 0s;
	z-index: 998;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.openmenu__nav_wrap::-webkit-scrollbar{
  display:none;
}

.open .openmenu__nav_wrap{
	opacity: 1;
	pointer-events: inherit;
	transition: opacity .2s ease-in-out .4s;
	transform: translateX(0);
}

.openmenu__nav_wrap p.lang {
    position: absolute;
    right: 65px;
    top: 30px;
    line-height: 1;
}

.openmenu__nav_wrap .openmenu-nav {
	width: 100%;
	height: 100%;
	padding: 8vw 5vw 8vw 4vw;
	transition:1s ease;
}
.open .openmenu__nav_wrap .openmenu-nav {
	animation: anim 1s ease-in-out forwards;
}

@keyframes anim {
  0% {
  transform: translateX(0px);
  }
  40% {
  transform: translateX(0px);
  }
  80% {
  transform: translateX(10px);
  }
  100% {
  transform: translateX(10px);
  }
}

.openmenu__nav_wrap .openmenu-nav a.logo{
	margin-bottom: 25px;
	display: block;
}

.openmenu__nav_wrap .openmenu-nav h2{
	text-align: left;
	font-size: 16px;
}

.openmenu__nav_wrap .openmenu-nav ul{
	margin-bottom: 35px;
	font-size: 12px;
}

.openmenu__nav_wrap .openmenu-nav a.store{
	line-height: 1;
	display: table;
	background: #171818;
	color: #FFF;
	padding: 8px 10px;
	margin-bottom: 25px;
	transition: .3s ease;
}

.openmenu__nav_wrap .openmenu-nav li a.store:hover{
	opacity: .6;
}

.openmenu__nav_wrap .openmenu-nav .cat li:nth-child(n+5),
.openmenu__nav_wrap .openmenu-nav .arc li:nth-child(n+3){
	max-height: 0;
	overflow: hidden;
	transition: .6s ease;
}

.openmenu__nav_wrap .openmenu-nav .cat.open li:nth-child(n+5),
.openmenu__nav_wrap .openmenu-nav .arc.open li:nth-child(n+3){
	max-height: 4em;
}

.openmenu__nav_wrap .openmenu-nav .cat.active li:last-child,
.openmenu__nav_wrap .openmenu-nav .arc.active li:last-child{
	max-height: none;
	cursor: pointer;
}

.openmenu__nav_wrap .openmenu-nav .ac-btn:after{
	content: "+";
	display: block;
}

.openmenu__nav_wrap .openmenu-nav .open .ac-btn:after{
	content: "-";
}

.side-shop-wrap{
	padding-top: 35px;
}

.side-shop-wrap:before {
    content: "";
    display: block;
    width: 200%;
    height: 100%;
    background: rgba(150,150,170,0.1);
    position: absolute;
    transform: translate(-50% , -35px);
    z-index: -1;
}

