@charset "UTF-8";

.bold { font-weight: bold;}
.fleft {float: left;}
.fright {float: right;}
.center {text-align:center;}
.right {text-align:right;}
.mb0 {margin-bottom: 0px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb80 {margin-bottom: 80px;}
.ml15 {margin-left: 15px;}
.mr15 {margin-right: 15px;}
.ml0 {margin-left: 0 !important;}
.mr0 {margin-right: 0 !important;}
.alhover {cursor: pointer;}

/*.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }*/
/*a:link { color: #212121; } */
/*.wf-sawarabigothic { font-family: "Sawarabi Gothic"; }*/
a{
	color:#E5006A;
	text-decoration:none;
} 

body{
	font-family: 'Noto Sans JP', sans-serif;
	/*min-width: 1200px;*/
	letter-spacing:0.05em;
	font-size: 13px;
	background:#fff;
	color:#000;
	background-image:url('../img/back2.jpg');
    background-position:top center;
}
.spOnly{
	display:none;
}
.pcOnly{
	display:block;
}

header{
	position: fixed;
	width:100%;
	z-index: 1000;
	top:20px;
}
header h1 {
	width:60px;
	opacity: 0;
	margin: 0 0 0 20px;
	cursor: pointer;
}
header h1.current {
	cursor:normal;
}
header h1 img{
	width: 60px;
	transition: 0.2s ease-out;
	
	position: relative;
	z-index: 10;
}

#container {
	width:100%;
}
h2{
    text-align: center;
    font-size: 4.5vw;
    letter-spacing: 0.2em;
    /* margin-top: 20px; */
    /* margin-left: 40px; */
    white-space: nowrap;
    font-weight: 800;
    color:  #eeea42;
    position: fixed;
    top: 40px;
    width: 100%;
    text-align: center;
    z-index: -1;
}

#bagLists{
    margin: 40px auto;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
}
.bagList{
    width:23%;
    margin: 20px 1%;
    cursor: pointer;
    position: relative;
}
.bagList img{
    width: 100%;
    transition: 0.3s ease-out;
}
.bagTitle{
    width: 70%;
    margin: 10px auto;
    background: #eeea42;
    padding: 5px;
    border-radius: 5px;
    font-family: 'Contrail One', cursive;
    transition: 0.5s ease-out;
}
.bagTitleShop{
    font-size: 1.0rem;
    margin-bottom: 2px;
}
.bagTitleName{
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.bagTitleCity{
    font-size: 0.9rem;
}
.bagList:hover img{
    transform: scale(1.1);
}
.bagList:hover .bagTitle{
    background: #00afb5;
    color: #fff;
}
.soldout::before{
    content: 'SOLD OUT';
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255,255,255,0.7);
    padding: 4px 8px;
    transform: translateY(-50%) translateX(-50%) rotate(-5deg);
    -webkit- transform: translateY(-50%) translateX(-50%);
    color: #c00;
    font-family: 'Contrail One', cursive;
    font-size: 2.4rem;
    white-space: nowrap;
    z-index: 100;
}
#pre{
    background: rgba(240,235,65,0.8);
    border: 2px solid #fff;
    width: 700px;
    border-radius: 20px;
    padding: 15px;
    margin: 150px auto 10px;
    text-align: center;
}
#pre .textArea{
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

#pre h3{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5em;
    margin-top: 20px;
    font-family: 'Contrail One', cursive;
    position: relative;
    z-index: 10;
}
#pre h3 div{
    font-size: 0.9rem;
    margin-top: -10px;
}

#modal{
    background: #eeea42;
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 3000;
    display: none;
}
#modal h2{
    color: #000;
}
#modalList{
    margin-top: 140px;
}
#modalBagLists{
    width: 12000vw;
    height: calc(100vh - 190px);
    display: flex;
    transition: 0.5s ease-out;
}
.modalBagList{
    width: 80vw;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    margin: 0 10vw;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.modalBagList .main{
    max-height: 100%;
    max-width: calc(40vw - 30px);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%) translateX(-48%);
}
.modalBagList .logo{
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-height: 80px;
    z-index: 0;
}
.modalBagList .bagTitle{
    margin-left: 40vw;
    height: calc(100vh - 400px);
    width: calc(40vw - 50px);
    background: none;
    padding: 5px;
    border-radius: 5px;
    font-family: 'Contrail One', cursive;
    transition: 0.5s ease-out;
    position: relative;
    z-index: 10;
    overflow-y: auto;
}
.modalBagList .bagTitle::-webkit-scrollbar{
   width: 15px;
}
.modalBagList .bagTitle::-webkit-scrollbar-track{
   background-color: #fff;

}
.modalBagList .bagTitle::-webkit-scrollbar-thumb{
   background-color:#00afb5;
    border-radius: 10px;
    border: 5px solid #fff;
}
.modalBagList .bagTitleShop{
    font-size: 2.0rem;
    margin-bottom: 5px;
}
.modalBagList .bagTitleName{
    font-size: 2.6rem;
    margin-bottom: 5px;
}
.modalBagList .bagTitleCity{
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.modalBagList .bagDisp{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.modalBagList .bagShopping{
    position: absolute;
    left: calc(40vw + 20px);
    bottom: 90px;
    width: calc(40vw - 50px);
    font-family: 'Contrail One', cursive;
}
.modalBagList .bagPrice{
    font-size: 2.0rem;
    margin-bottom: 20px;
    text-align: left;
}
.modalBagList .bagBuy{
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: #00afb5;
    color: #fff;
    display: inline-block;
    float: right;
    padding: 6px 10px;
    margin-top: -7px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    transition: 0.5s ease-out;
}
.modalBagList .soldout{
    pointer-events: none;
}

.modalBagList .bagBuy::after{
    content: '';
    position: absolute;
    top: 8px;
    left: 5px;
    width: 25px;
    height: 25px;
    background-image:url('../img/icon_shop.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.modalBagList .bagBuy:hover{
    background: #eeea42;
    color: #000;
}
.modalBagList .bagBuy:hover::after{
    background-image:url('../img/icon_shop_b.svg');
}
.modalBagThumbs{
    position: absolute;
    left: calc(40vw + 20px);
    bottom: 20px;
    display: flex;
}
.modalBagThumb{
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border: 4px solid #00afb5;
    cursor: pointer;
    transition: 0.5s ease-out;
}
.modalBagThumb.current{
    border: 4px solid #eeea42;
    pointer-events: none;
}
.modalBagThumb:hover{
    border: 4px solid #eeea42;
}
.thumb{
    max-height: 100%;
    max-width: 100%;
}

.dli-close {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 0.1em;
    position: relative;
    transform: rotate(45deg);
    position: absolute;
    top: 50px;
    right: 60px;
    z-index: 2500;
    transition: 0.2s ease-out;
    cursor: pointer;
}

.dli-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    border-radius: inherit;
    transform: rotate(90deg);
}
.dli-close::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    border-radius: inherit;
    transform: rotate(0deg);
}
.dli-close:hover {
    opacity: 0.2;
}

.dli-chevron-round-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 30px;
    height: 30px;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    top: calc(10px + 50vh);
    right: 54px;
    transition: 0.2s ease-out;
    cursor: pointer;
}
.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}
.dli-chevron-round-right:hover {
    opacity: 0.2;
}

.dli-chevron-round-left {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 30px;
    height: 30px;
    transform: translateX(25%) rotate(-135deg);
    position: absolute;
    top: calc(10px + 50vh);
    left: 54px;
    transition: 0.2s ease-out;
    cursor: pointer;
}

.dli-chevron-round-left::before, .dli-chevron-round-left::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.dli-chevron-round-left::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.dli-chevron-round-left::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}
.dli-chevron-round-left:hover {
    opacity: 0.2;
}



/*contArea*/
.contArea{
	/*background: #eee;*/
	width: 100%;
	height: 100%;
	margin-bottom: 100px;
	/*height : -webkit-calc(100% - 400px) ;
	height : calc(100% - 400px) ;*/
	/*overflow: auto;*/
}
.contAreaInner{
	margin: 60px auto 20px;
	width:900px;
	padding: 20px;
	border-radius: 6px;
	background: rgba(0,0,0,0.65);
}
/*.contArea .contAreaInner:first-child{
	margin-top: 450px;
}*/
/*.contArea h2 + .contAreaInner{
	margin-top: 400px;
	margin-top: 23vw;
	margin-top : -webkit-calc(10.5vw + 180px) ;
  margin-top : calc(10.5vw + 180px) ;
}*/
.contAreaInner h2{
	font-family: 'Oleo Script', cursive;
	text-align: center;
	font-size: 220%;
	margin-bottom: 40px;
	padding: 4px 0;
}
h2.h2Large{
	font-family: 'Oleo Script', cursive;
	text-align: center;
	font-size: 300%;
	/*margin-bottom: 40px;*/
	padding: 4px 0;
	margin-top: 150px;
}
.content-area section:first-of-type h2.h2Large:first-of-type{
	margin-top: 400px;
	margin-top: 23vw;
	margin-top : -webkit-calc(10.5vw + 180px) ;
  margin-top : calc(10.5vw + 100px) ;
}
.contAreaInner .menuList{
	width:900px;
}
.contAreaInner .menuList li{
	position: relative;
	border-bottom: 1px dotted #fff;
	width: 100%;
	height: 40px;
	margin-bottom: 50px;
}
.contAreaInner .menuList li .menuTitle{
	position: absolute;
	top:16px;
	left: 0px;
	width: 350px;
	font-family: 'Oleo Script', cursive;
	font-size: 153.8%;
}
.contAreaInner .menuList li .menuTitle span{
	margin-left: 10px;
	font-size: 60%;
}
.contAreaInner .menuList li .menuParts1,
.contAreaInner .menuList li .menuParts2,
.contAreaInner .menuList li .menuParts3{
	position: absolute;
	top:5px;
	left: 350px;
	width: 150px;
	text-align: center;
	font-size: 93%;
	line-height: 1.8em;
}
.contAreaInner .menuList li .menuParts1 p{
	line-height: 1.3em;
	margin-top: 2px;
}
.contAreaInner .menuList li .menuParts2{
	left: 500px;
}
.contAreaInner .menuList li .menuParts2:before{
	content: "+";
	position: absolute;
	top:8px;
	left: 0;
}
.contAreaInner .menuList li .menuParts2:after{
	content: "+";
	position: absolute;
	top:8px;
	right: 0;
}
.contAreaInner .menuList li .menuParts3{
	left: 650px;
}
.contAreaInner .menuList li .menuParts1 img,
.contAreaInner .menuList li .menuParts2 img,
.contAreaInner .menuList li .menuParts3 img{
	height: 30px;
}
.contAreaInner .menuList li .menuParts2 img{
	max-width: 78px;
}
.contAreaInner .menuList li .bagle2 img{
	opacity: 0.5;
}

.contAreaInner .menuList li .menuPrice{
	position: absolute;
	top:16px;
	left: 800px;
	width: 100px;
	font-family: 'Oleo Script', cursive;
	font-size: 153.8%;
	text-align: right;
}
.contAreaInner h3{
	font-family: 'Oleo Script', cursive;
	text-align: center;
	font-size: 150%;
	margin-bottom: 30px;
	margin-top: 80px;
	line-height: 30px;
}
.contAreaInner h3 span{
	margin-left: 10px;
	font-size: 75%;
}
.contAreaInner .textArea1{
	margin: 20px auto;
	display: table;
	font-family: 'Oleo Script', cursive;
	line-height: 2.2em;
	letter-spacing: 0.05em;
	font-size: 138%;
}

.contAreaInner .textArea1 p{
	margin: 1em auto;
	letter-spacing: 0.1em;
}
.contAreaInner .textArea2{
	margin: 20px auto;
	display: block;
	font-family: 'Oleo Script', cursive,"Noto Sans Japanese","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.8em;
	letter-spacing: 0.05em;
	font-size: 123%;
}
.contAreaInner .textAreaLeft{
	float: left;
	width: 42%;
	margin-left: 4%;
	margin-right: 4%;
}
.contAreaInner .textAreaRight{
	float: left;
	width: 42%;
	margin-left: 4%;
	margin-right: 4%;
}
.contAreaInner .textArea2 span{
	font-size: 75%;
	margin-left: 10px;
}
.contAreaInner .textArea2 .price{
	float: right;
	margin-top: 2px;
    margin-bottom: 0;
}
.contAreaInner .textAreaLeft2{
	float: left;
	width: 42%;
	margin-left: 4%;
	margin-right: 4%;
	font-size: 120%;
}
.contAreaInner .textAreaRight2{
	float: left;
	width: 42%;
	margin-left: 4%;
	margin-right: 4%;
	font-size: 120%;
}
.contAreaInner .textAreaLR{
	width: 92%;
	margin-left: 4%;
	margin-right: 4%;
}
.contAreaInner .textAreaLR2{
	width: 92%;
	margin-left: 4%;
	margin-right: 4%;
	font-size: 120%;
	line-height: 1.2em;
}
.contAreaInner .textAreaLR2 li{
	margin-bottom: 10px;
}
.contAreaInner .textAreaLeft2 span,
.contAreaInner .textAreaRight2 span,
.contAreaInner .textAreaLR2 span{
	font-size: 60%;
	margin-left: 6px;
	font-family: "Noto Sans Japanese","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contAreaInner .textAreaLR2 .menutext{
	font-family: "Noto Sans Japanese","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 60%;
	margin-left: 6px;
	line-height: 1.2em;
	margin-top: 10px;
    margin-bottom: 20px;
}
.contAreaInner .textArea3{
	margin: 0 2em;
	line-height: 1.8em;
	letter-spacing: 0.05em;
	font-size: 115%;
	font-weight: 100;
	display: table;
}
.contAreaInner .textArea3 p{
	margin: 2em auto;
}
.contAreaInner .textArea4{
	margin: 0;
	width: 100%;
	text-align: center;
}
.contAreaInner .textArea4 .snsIcon{
	width: 100px;
}
.contAreaInner .textArea3 p.info{
	border-top: 1px dotted rgba(255,255,255,0.5);
	padding-top: 1em;
}

.contAreaInner  .gmapArea{
	margin: 0 2em 2em;

}
.contAreaInner  .gmapArea #gmap{
	height:400px;
	/*z-index: 9999;*/
}
	
.contAreaInner .schlist{
	border-bottom: 1px solid #888;
	position: relative;
	margin-bottom: 30px;
}
.contAreaInner .schlist:last-of-type{
	border-bottom: none;
}
.contAreaInner .schlist .cal{
	font-size: 240%;
	letter-spacing: 0.1em;
  margin: 20px 0 30px;
}
.contAreaInner .schlist .cal span{
	font-size: 80%;
	margin-left: 10px;
}
.contAreaInner .schlist h4{
	font-size: 180%;
	line-height: 1.4em;
	letter-spacing: 0.1em;
}
.contAreaInner .schlist h4 span{
	font-size: 80%;
}
.contAreaInner .schlist .sample{
	margin: 30px 0;
	text-align: center;
}
.contAreaInner .schlist .sample img{
	width:50%;
}
	.contAreaInner .acvlist .sample{
	margin: 30px 0;
	/*float: right;
	width:25%;*/
}
/*.contAreaInner .acvlist .sample img{
	width:80%;
}*/
.contAreaInner .acvlist h4{
	font-size: 130%;
	margin-bottom: 10px;
}
.contAreaInner .acvlist .cal{
	font-size: 130%;
	margin-bottom: 10px;
}
.contAreaInner .acvlist .comment{
	font-style: italic;
}
	







#logo{
	position:absolute;
	left:50%;
	top:50%;
	margin-top:-196px;
	margin-left:-151px;
	opacity:0;
}
.btn{
	border:4px solid #fff;
	width:200px;
	height:50px;
	line-height:50px;
	text-align:center;
	color:#fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	font-family: 'Lobster', cursive;
	font-size:1.23em;
	opacity:0;
}
#btn1{
	position:absolute;
	left:25%;
	bottom:40px;
	margin-left:-100px;
	/*opacity:0;*/
}
#btn2{
	position:absolute;
	left:50%;
	bottom:40px;
	margin-left:-100px;
	/*opacity:0;*/
}
#btn3{
	position:absolute;
	left:75%;
	bottom:40px;
	margin-left:-100px;
	/*opacity:0;*/
}
#credit{
	position:absolute;
	right:10px;
	bottom:10px;
	color:#fff;
	text-align:right;
	font-size:77%;
	letter-spacing:0.05em;
	/*font-family: 'Lobster', cursive;*/
	opacity:0;
}
#map{
	position:absolute;
	left:50%;
	top:50%;
	margin-top:-229px;
	margin-left:-333px;
	opacity:0;
}

#atText {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 130px;
	color: #ffffff;
	line-height: 2em;
	opacity:0;
}


#footer {
	position:absolute;
	left:0;
	bottom:20px;
	text-align:center;
	color:#fff;
	width:100%;
	font-size:93%;
	z-index:200;
	opacity:0;
	font-family: 'Lobster', cursive;
}

.backVideoArea {
	width: 100%;
	height: 100vh;
	background-image: none!important;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transition: 1s;
}
section .backVideoArea {
	opacity: 0;
}
section .backVideoArea.backcurrent {
 opacity: 1;
}

/*イベント用追加*/
.nql li{
	background-image:url('../img/nql.svg');
	float: left;
}
#top {
    display: block;
    width: 100%;
    position: relative;
    height: 100%;
}
#top .img1{
    position: absolute;
    top: -10px;
    left: 30%;
    width: 25%;
    z-index: 0;
}
#top .img2{
    width: 100%;
    vertical-align: bottom;
}
#topTitle li{
	width:400px;
	height:400px;
	transform: rotate(5deg);
	/*transition-duration:0.5s;*/
	/*opacity: 0;*/
}
#topTitle li:nth-child(even){
	margin-top: 320px;
	transform: rotate(-5deg);
}

#topTitle {
	position: absolute;
	width: 3600px;
	top: 150px;
	left:50%;
	transform: rotate(5deg) translateX(-50%);
}
.nql li.topBtn {
	display: block;
	background: none;
	position: relative;
	perspective: 500px;
	-webkit-perspective: 500px;
}
.topBtn img {
	width:400px;
	height:400px;
	position:absolute;
	top: 0;
	transition: 0.8s;
}
.topBtn .back {
	transform:scale(1.2) rotate(-45deg);
	-webkit-transform:scale(1.2) rotate(-45deg);
	-webkit-filter: blur(3px);
  filter: blur(3px);
	opacity: 0;
}
.topBtn:hover .front {
	transform:scale(0.8) rotate(45deg);
	-webkit-transform:scale(0.8) rotate(45deg);
	-webkit-filter: blur(3px);
  filter: blur(3px);
	opacity: 0;
}
.topBtn:hover .back {
	transform:scale(1.0) rotate(0deg);
	-webkit-transform:scale(1.0);
	-webkit-filter: blur(0px);
  filter: blur(0px);
	opacity: 1;
}
#moviesTitle {
	position: absolute;
	width: 3240px;
	top: -50px;
	left:50%;
	transform-origin:center center;
	transform: rotate(-3deg) translateX(-50%);
	z-index: 1;
}

#moviesTitle li{
	width:120px;
	height:120px;
	transform: rotate(5deg);
	background-image:url('../img/nqr.svg');
	/*opacity: 0;*/
}
#moviesTitle li:nth-child(even){
	margin-top: 96px;
	transform: rotate(-5deg);
}
#moviesTitle li.movieChar{
	line-height: 120px;
	font-size: 2.7em;
	padding-left: 15px;
	box-sizing: border-box;
	color: #ff0;
}

#galryTitle {
	position: absolute;
	width: 3600px;
	top: -50px;
	left:50%;
	transform-origin:center center;
	transform: translateX(-50%);
	z-index: 1;
}
#galryTitle li{
	width:30px;
	height:30px;
	margin-left: 20px;
	transform: rotate(5deg);
	/*opacity: 0;*/
}
#galryTitle li:nth-child(even){
	margin-top: 36px;
	transform: rotate(-5deg);
}
#galryTitle li.galryTitle-icon{
	background-image:url('../img/icon_event_gallery.svg');
}

#talkTitle {
	position: absolute;
	width: 4800px;
	top: 250px;
	left: 50%;
	transform-origin: center center;
	transform: rotate(15deg) translateX(-55%);
	z-index: -1;
}
#talkTitle li{
	width:1500px;
	height:1500px;
	margin-left: 100px;
	transform: rotate(5deg);
	/*opacity: 0;*/
}
#talkTitle li:nth-child(even){
	margin-top: 10px;
	transform: rotate(-5deg);
}

#goodsTitle {
	position: absolute;
	width: 2400px;
	top:400px;
	left: 50%;
	transform-origin: center center;
	transform: rotate(-3deg) translateX(-50%);
}
#goodsTitle li{
	width:20px;
	height:20px;
	margin-left: 10px;
	transform: rotate(5deg);
	background-image:url('../img/nqr.svg');
	/*opacity: 0;*/
}
#goodsTitle li:nth-child(even){
	margin-top: 16px;
	transform: rotate(-5deg);
}
#goodsTitle2 {
	position: absolute;
	width: 2400px;
	top: 680px;
	left: 50%;
	transform-origin: center center;
	transform: rotate(8deg) translateX(-50%);
}
#goodsTitle2 li{
	width:20px;
	height:20px;
	margin-left: 10px;
	transform: rotate(5deg);
	/*opacity: 0;*/
}
#goodsTitle2 li:nth-child(even){
	margin-top: 16px;
	transform: rotate(-5deg);
}

#cafeTitle {
	position: absolute;
	width: 4000px;
	top:400px;
	left: 50%;
	transform-origin: center center;
	transform: rotateX(80deg) translateX(-50%);
}
#cafeTitle li{
	width:160px;
	height:160px;
	margin-left: 40px;
	transform: rotate(-10deg);
	background-image:url('../img/nqr.svg');
	/*opacity: 0;*/
}
#cafeTitle li:nth-child(even){
	margin-top: 160px;
	transform: rotate(10deg);
}

#movies{
    background: #fff;
    padding: 15px 0;
}
#moviesContents{
	/*width: 1060px;*/
	margin: 0 auto;
	padding-top: 260px;
	position: relative;
/*	background-image:url('../img/icon_event_movie.svg');
	background-repeat: no-repeat;
	background-size: 300px;
	background-position: 20px 360px;
	background-color: #fff;
	background-color:rgba(255,255,255,0.8);
	background-blend-mode:lighten;*/
}
#moviesMainImage{
    width: 40%;
    float: right;
    margin-top: 50px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}
#moviesMainImage2{
    max-width: 50%;
    max-height: 350px;
    float: right;
    margin-top: 50px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}
#moviesMainImage3{
    width: 60%;
    float: right;
    margin-top: 50px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}
#moviesMainImageImage,
#moviesMainImage3Image{
    width: 100%;
    margin-bottom: 5px;
}
.date{
    max-width: calc(40% - 80px);
    max-height: 75px;
    margin: 0 15px;
}
.date0{
    max-width: calc(60% - 80px);
}
.fukuphoto{
    width: 200px;
}
.brookphoto{
    width: 60%;
    margin: 30px auto;
}
.callphoto{
        width: 50%;
    float: left;
    margin-right: 20px;
}
.chuffphoto{
    display: inline-block;
    height:200px;
    margin: 10px;;
}
.cap{
    text-align: right;
    font-size: 0.7rem;
}
h4{
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.8;
    margin: 40px;
    letter-spacing: 0.05em;
}
h4 span{
    background: #FFF100;
    padding: 4px 2px;
}
h4 span.price{
    padding: 4px 2px;
    font-size: 90%;
}
.textCnt{
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.textCnt1{
    margin-left: 30px;
}
.textCnt2{
    margin-left: 60px;
    font-size: 0.8rem;
}
.textCnt3{
    font-size: 0.7rem;
    line-height: 1.2;
    margin-top: 6px;
}
.textCnt4{
    margin-left: 300px;
    margin-right: 60px;
    font-size: 0.8rem;
}
.textCnt4 h5{
    font-weight: 600;
}
.textCnt6{
    margin-left: 80px;
    margin-right: 80px;
}
.textCnt7{
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 60px;
    margin-right: 60px;
    font-size: 0.8rem;
    background: #fff;
    padding: 10px;
}
.textCnt8{
    margin-top: 70px;
}
.textCnt9{
    text-align: center;
    font-size: 0.8rem;
    background: #fff;
    width: 40%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
}
.link{
    background: #E5006A;
    padding: 4px;
    color:#fff;
    border-radius: 10px;
    transition-duration:0.5s;
}
.link:hover{
    background: #eee;
    color:#E5006A;
}



#moviesMainImageMark2,
#moviesMainImageMark{
	position: absolute;
	right: -20px;
	top: 520px;
	width: 120px;
	height: 120px;
	border-radius: 100%;
	background:  linear-gradient(135deg, #ffb949, #ffff00);
}
#moviesMainImageMark2{
	top: -60px;
	right: auto;
  left: -60px;
}
#moviesMainImageMark2 p,
#moviesMainImageMark p{

	text-align: center;
	font-size: 1.38em;
	margin: 30px 0;
	line-height: 1.6em;
}
#movies .moviesLead{
	position: relative;
	font-size: 1.53em;
	margin: 100px 120px;
	line-height: 2.0em;
	letter-spacing: 0.05em;
}
#movies .moviesLead2,
#movies .moviesLead3{
	position: relative;
	font-size: 1.08em;
	margin: 30px 0;
	line-height: 1.6em;
	letter-spacing: 0.05em;
}
#movies .moviesLead3{

}
#movies .moviesLead4{
	position: relative;
	font-size: 1.23em;
	width: 160px;
	height: 36px;
	border-radius: 5px;
	margin: 30px 0;
	line-height: 36px;
	letter-spacing: 0.05em;
	display: block;
	text-align: center;
}
#movies .moviesLead4{

}
.btnG{
	/*background:linear-gradient(to right, hsla(37,100%,64%,0.8), hsla(60,100%,50%,0.8));*/
	background:linear-gradient(135deg, #ffb949, #ffff00);
	/*transition-duration:0.5s;*/
	/*background-color: #ffff00;*/
}
a.btnG:hover{
	/*background-color: #ffffff;*/
	animation: spin 2s linear infinite;
}
#moviesMovie{
	margin: 60px 15%;
	width: 70%;
}
#moviesContents2{
	width: 1060px;
	margin: 100px auto 60px;
	position: relative;
}
/*#moviesMainImage2{
	position: absolute;
	top:0;
	left: 0;
	width: 240px;
}*/
#moviesContents2Left{
	margin-left: 280px;
	
}
#moviesContents2Left h4,
#moviesContents2Left h3{
	position: relative;
  display: inline-block;
  font-size: 1.53em;
	padding-bottom: 16px;
}
#moviesContents2Left h4{
	font-size: 1.38em;
}
#moviesContents2Left p{
	margin: 15px 0 40px;
	font-size: 1.23em;
	line-height: 1.6em;
}
.iconTalk{
	position: absolute;
	width: 40px;
	height: 40px;
	top: -10px;
	right: -70px;
	background-image: url(../img/icon_event_talk.svg);
	background-repeat: no-repeat;
}
#cafeContents .iconTalk{
	right: -60px;
	background-image: url(../img/icon_azukiyomogi.svg);
}

#galry{
	background: #eee;
    padding: 15px 0;
}
#galryContents{
	width: 1060px;
	margin: 0 auto;
	padding-top: 40px;
	position: relative;
}
#galryContents h3{
	position: relative;
  display: table;
  font-size: 2.4em;
	padding-bottom: 16px;
	margin: 0 auto;

}
#galryContents .galryLead{
	width: 70%;
	margin: 40px auto 20px;
	font-size: 1.38em;
	line-height: 2.0em;
	text-align: center;
}
#photoList{
	display: flex;
	flex-wrap: wrap;
 	width: 100%;
	margin-top: 20px;
}
#photoList li{
	width: 313px;
	height: 313px;
	margin: 20px;
  
	position: relative;
	perspective:150rem;
  -moz-perspective: 150rem;
}
#photoList li img{
	width: 100%;
	border-radius: 5px;
}
#photoList li .front,
#photoList li .back {
  position: absolute;
  top: 0;
  left: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transition:1.2s;
	box-sizing: border-box;
	border-radius: 5px;
}
#photoList li .back {
	width:100%;
	height: 100%;
	background: #6fc6ad;
	color: #fff;
  transform: rotateY(180deg);
	padding: 15px;
}
#photoList li:hover .front{
  transform:rotateY(180deg);
}
#photoList li:hover .back{
  transform:rotateY(0);
}
#photoList li .back h5{
	text-align: center;
	font-size: 1.538em;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-bottom: 10px;
	font-weight: normal;
}
#photoList li .back h5 span{
	font-size: 70%;
	font-family: "FOT-筑紫A丸ゴシック Std R";
}
#photoList li .back  p{
	font-size: 1.15em;
	line-height: 1.6em;
	letter-spacing: 0;
}
#photoList li .kamimura{
	background: #aaa;
}
#photoList li .kamimura  p{
	font-size: 1.0em;
	line-height: 1.4em;
	letter-spacing: 0;
}
#galryMark{
	position: absolute;
	right: -20px;
	top: 170px;
	width: 120px;
	height: 120px;
	border-radius: 100%;
	background:  linear-gradient(135deg, #ffb949, #ffff00);
}
#galryMark p{
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align: center;
	font-size: 1.38em;
	margin: 30px 0;
	line-height: 1.15em;
}

#talk{
	margin-top: 160px;
}
#talkContents{
	width: 1060px;
	margin: 0 auto;
	padding-top: 120px;
	position: relative;
	color: #fff;
}
#talkContents h3{
	position: relative;
  display: table;
  font-size: 2.4em;
	padding-bottom: 16px;
	margin: 0 auto;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-left: 600px;
	line-height: 1.3em;
}
#talkContents .talkLead{
	width: 600px;
	margin: 40px auto 20px;
	margin-left: 440px;
	font-size: 1.38em;
	line-height: 1.8em;
	text-align: left;
}
#talkContents .talkLead2{
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
#talkMark{
	position: absolute;
	left: 250px;
  top: 150px;
	width: 120px;
	height: 120px;
	border-radius: 100%;
	background:  linear-gradient(135deg, #ffb949, #ffff00);
}
#talkMark p{
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align: center;
	font-size: 1.38em;
	margin: 30px 0;
	line-height: 1.6em;
	color: #000;
}
#talk .talkLead3{
	position: relative;
	font-size: 1.23em;
	width: 160px;
	height: 36px;
	border-radius: 5px;
	margin: 30px 50px 30px auto;
	line-height: 36px;
	letter-spacing: 0.05em;
	display: block;
	text-align: center;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
.talkImg1{
	position: absolute;
	top: 620px;
	right: 280px;
	width: 240px;
}
.talkImg2{
	position: absolute;
	top: -50px;
	left: -400px;
	width: 900px;
	z-index: -2;
}
.talkImg3{
	position: absolute;
	top: 50px;
	right: -800px;
	width: 900px;
	z-index: -2;
}
#talk .iconTalk{
	position: absolute;
	width: 100px;
	height: 100px;
	top: -110px;
	right: 0px;
	background-image: url(../img/icon_event_talk2.svg);
	background-repeat: no-repeat;
	opacity: 0.4;
}

#goods{
    background: #fff;
    padding: 15px 0;
}
#goodsContents{
	width: 1060px;
	margin: 0 auto;
	padding-top: 540px;
	position: relative;
}
#goodsContents h3{
	position: relative;
  display: table;
  font-size: 2.4em;
	padding-bottom: 16px;
	margin: 0 auto;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-left: 0;
	transform: rotate(-3deg);
}
#goodsContents .goodsLead{
	width: 700px;
	margin: 10px auto 20px;
	margin-left: 340px;
	font-size: 1.23em;
	line-height: 1.8em;
	text-align: left;
	transform: rotate(8deg);
}
.goodsLead2{
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	margin-top:150px;
	width: 760px;
	position: relative;
}
.goodsLead3{
	margin: 320px 160px 0 auto;
	border-right:none;
	border-left: 1px solid #000;
	padding-bottom: 100px;
}
.goodsLead2 h4{
	position: relative;
  display: table;
  font-size: 1.8em;
	padding: 0 20px 16px;
	margin: 0 auto;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-left: 0;
	margin-top: -16px;
	background: #fff;
}
.goodsLead3 h4{
	margin-left: 520px;
	margin-right: -100px;
}
.goodsLead2 p{
	margin:30px 20px;
	position: relative;
  display: table;
  font-size: 1.23em;
}
.calLead a,
.goodsLead2 a{
	border-bottom: 2px solid #ffff00;
	padding: 0 5px 5px;
	transition: .2s;
}
.calLead a:hover,
.goodsLead2 a:hover{
	border-bottom: 4px solid #ffb949;
}
.goodsImg1{
	position: absolute;
	top: -160px;
	width: 120px;
	left: 200px;
}
.goodsImg2{
	position: absolute;
	top: 120px;
	left: 200px;
	width: 200px;
}
.goodsImg3{
	position: absolute;
	top: -120px;
	right: -340px;
	width: 480px;
}
.goodsImg4{
	position: absolute;
	top: 12px;
	width: 300px;
	left: -301px;
}
.goodsImg5{
	position: absolute;
	top: 120px;
	left: 260px;
  width: 160px;
}
.goodsImg6{
	position: absolute;
	top: -60px;
	right: -340px;
	width: 300px;
}

#cafe{
	/*background: #eee;*/
    padding: 15px 0;
}
#cafeContents{
	width: 1060px;
	margin: 0 auto;
	padding-top: 540px;
	position: relative;
}
#cafeContents h3{
	position: relative;
	display: table;
	font-size: 3em;
	padding-bottom: 16px;
	margin: -20px auto 0 200px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-left: 170px;
	margin-top: -64px;
}
#cafeContents .cafeLead{
	width: 700px;
	margin: 10px auto 20px;
	margin-left: 300px;
	font-size: 1.23em;
	line-height: 1.6em;
	text-align: left;
	margin-top: -80px;
}
.cafeLead2{
	margin-top:150px;
	position: relative;
}
.cafeLead3{
	margin-top: 80px;
}
.cafeLead2 h4{
	position: relative;
  display: table;
  font-size: 1.38em;
	padding: 0 20px 16px;
	margin: 0 auto;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-left: 0;
	margin-top: -16px;
	background: #fff;
}
.cafeLead2 p{
	margin:30px 20px;
	position: relative;
  display: table;
  font-size: 1.08em;
	line-height: 1.6em;
	width: 580px;
}
.cafeImg{
	float: right;
	width: 200px;
  margin-right: 60px;
}
.cafeLead4{
	text-align: center;
}
.cafeLead4 p{
	font-size: 1em;
	margin: 10px auto;
	width: 960px;
	text-align: right;
}
#cal{
	margin-top: 200px;
}
#calContents{
	width: 1060px;
	margin: 0 auto;
	padding-top: 0px;
	position: relative;
	text-align: center;
}
#calContents h3{
	position: relative;
	display: table;
	font-size: 2.4em;
	padding-bottom: 16px;
	margin: 0 auto;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
#calContents img{
	width:984px;
}
img.snsIcon2{
    width: 60px;
    margin-top: 10px;
}
img.snsIcon{
    width: 20px;
    margin-top: 30px;
}
#calContents .calLead{
	font-size: 1.38em;
	line-height: 1.8em;
}
#calContents .iconTalk{
	position: absolute;
	width: 40px;
	height: 40px;
	top: -5px;
	right: -60px;
	background-image: url(../img/icon_cafe.svg);
	background-repeat: no-repeat;
}

#gmap{
	margin: 60px auto;
	width:80%;
	height:400px;
	border: 5px solid #fff;
}
.copyright{
	margin: 100px auto 40px;
}

@media screen and (max-width: 640px) {
    h2{
        font-size: 2.8rem;
    }
    #bagLists{
        width: 100%;
    }
    #pre{
        width: 80%;
    }
    #pre .textArea {
        text-align: left;
    }
    .bagList {
        width: 48%;
    }
    .bagTitleShop {
        font-size: 1.4rem;
    }
    .bagTitleName {
        font-size: 1.8rem;
    }
    .bagTitleCity {
        font-size: 1.2rem;
    }
    .modalBagList .main {
        max-height: auto; 
        max-width: 100%;
        width: 90%;
        position: relative;
        top: 0;
        left: 5%;
        transform: none; 
        -webkit- transform: none; 
    }
    .modalBagList .logo {
        max-width: 160px;
    }
    .modalBagThumbs {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        display: flex;
        justify-content: center;
        margin: 20px auto;
    }
    .modalBagList .bagTitle {
        margin-left: 0;
        height: calc(50vh - 270px);
        width: 100%;
    }
    .modalBagList .bagShopping {
        position: absolute;
        left: 26px;
        bottom: 0;
        width: calc(100% - 260px);
    }
    .modalBagList {
        width: 90vw;
        margin: 0 5vw;
    }
    .modalBagList .bagDisp {
        font-size: 1.1rem;
    }
    .dli-chevron-round-right {
        width: 25px;
        height: 25px;
        right: 3px;
    }
    .dli-chevron-round-left {
        width: 25px;
        height: 25px;
        left: 3px;
    }
    .dli-chevron-round-right:hover ,
    .dli-chevron-round-left:hover {
        opacity: 1;
    }
    
    #top h3 {
        float: none;
    }
    #top .img1 {
        left: 10px;
        top: 52px;
        width: 30%;
    }
    #top .textArea{
        margin-left: 0;
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    #preNotice {
        margin: 20px 0;
        font-size: 1.1rem;
        text-align: left;
    }
    #moviesMainImage3,
    #moviesMainImage2,
    #moviesMainImage {
        width: 80%;
        float: none;
        margin: 20px 10%;
    }
    #moviesMainImage2{
        max-width:none;
        max-height:none;
    }
    .date{
        max-width: 100%;
    }
    .textCnt7,
    .textCnt1{
        margin-left: 20px;
        margin-right: 20px;
    }
    .textCnt2,.textCnt6,
    .textCnt4 {
        margin-left: 40px;
        margin-right: 40px;
    }
    #galry,#goods,#cafe,
    #movies{
        padding-bottom: 150px;
    }
    .callphoto{
        float: none;
        width: 100%;
    }
    #gmap,
    .textCnt9{
        width:auto;
        margin-left: 40px;
        margin-right: 40px;
    }
    #moviesMovie {
        margin: 60px 10%;
        width: 80%;
    }
    #container {
        border-right-width: 15px;
    }
    /*#container::-webkit-scrollbar{
       width: 30px;
    }
    #container::-webkit-scrollbar-track{
       background-color: #fff;

    }
    #container::-webkit-scrollbar-thumb{
       background-color:#B2D686;
        border-radius: 10px;
        border: 5px solid #fff;
    }*/
}
.sp_only {
	display: none;
}
/* clearfix */
.clearfix {zoom:1;}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}