﻿@charset "utf-8";
/* CSS Document */


/***** loader *****/

#fade {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    display: none;
    background-color: #fff;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    width: 80px;
    height: 80px;
    margin-top: -40px; /* heightの半分のマイナス値 */
    margin-left: -40px; /* widthの半分のマイナス値 */
}


/*****base*****/

*{
	margin: 0 auto;
	padding: 0px;
	border: none;
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

body {
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #FFF;
	background-color: #000;
	background-image: url(../img/bg.png);
	background-repeat: repeat;
	background-position: center top;
	text-shadow: 0px 0px 0px rgba(0,0,0,0.4);
}

img {
    max-width: 100%;
    display: block;
}

.clear {
	float: none;
	clear: both;
}

.border {
	width: 95%;
	height: auto;
}

.border img {
	width: 100%;
	height: auto;
}

a {
	color: #FF9218;
	overflow: hidden;
	outline: none;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
}
	
a:link {
	color: #FF9218;
	text-decoration: none;
}	
	
a:visited {
	color: #FF9218;
}	

a:hover {
	color: #76E7FF;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
}	

a.pt:hover img {
   filter: alpha(opacity=70); /*←IE用*/
   -moz-opacity: 0.80; /*←Mozilla用*/
    opacity: 0.70; /*safari opera*/
}

.red {
	color: #f54353;
}

.yellow {
	color: #ffbd03;
}

.blue {
	color: #3CF;
}

.green {
	color: #b7f60c;
}

.green2 {
	color: #00C2BB;
}

.orange{
	color: #E44305;
}

.gray {
	color: #424242;
}

.text-small {
	font-size: 25px;
}

.text-small2 {
	font-size: 18px;
}

/***** grid1 *****/

.grid1 {
    position: fixed;
	z-index: 100;
    width: 100px;
    height: 100%;
    background-color: #fff;
}

.menu1-wrap{
    width: 100px;
    height: 100%;
    background-color: #fff;
}

.menu1-logo1-wrap {
	position: relative;
}

.menu1-logo1 {
    position: absolute;
    z-index: 10;
    top: 20px;
    left: 75px;
    width: 240px;
    background-color: #fff;
    border-radius: 5px;
}

.menu1-logo1-btn1 {
	display: none;
}


/***** timer1 *****/

.timer1 {
    position: absolute;
    left: 280px;
    top: 25px;
    width: 100px;
    padding: 10px;
    background-color: #d23718;
	border-radius: 5px;
	display: none;
}

.timer1-cap1 {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 10px;
}


/***** menu1 *****/

.menu1-hum1 {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 30px;
	width: 35px;
	height: 33px;
    cursor: pointer;
}

.menu1-line1 {
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
	transition: .3s ease;
}

.menu1-line2 {
    position: absolute;
	top: 10px;
    width: 35px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
	transition: .2s ease;
}

.menu1-line3 {
    position: absolute;
	top: 20px;
    width: 35px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
	transition: .2s ease;
}

.menu1-line4 {
    position: absolute;
	top: 30px;
    width: 35px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
	transition: .3s ease;
}

.menu1-hum1.active .menu1-line1 {
    transform: translateY(15px) rotate(-45deg);
}

.menu1-hum1.active .menu1-line2 {
    transform: translateY(5px) rotate(0);
    opacity: 0;
}

.menu1-hum1.active .menu1-line3 {
    transform: translateY(-5px) rotate(0);
    opacity: 0;
}

.menu1-hum1.active .menu1-line4 {
    transform: translateY(-15px) rotate(45deg);
}

.menu2-hum1 {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 30px;
	width: 35px;
	height: 33px;
    cursor: pointer;
	display: none;
}

.menu2-hum1.active .menu1-line1 {
    transform: translateY(15px) rotate(-45deg);
}

.menu2-hum1.active .menu1-line2 {
    transform: translateY(5px) rotate(0);
    opacity: 0;
}

.menu2-hum1.active .menu1-line3 {
    transform: translateY(-5px) rotate(0);
    opacity: 0;
}

.menu2-hum1.active .menu1-line4 {
    transform: translateY(-15px) rotate(45deg);
}

.menu1 {
    position: absolute;
    top: 0;
    left: -190px;
    z-index: -5;
    width: 300px;
    height: 100vh;
    padding-top: 250px;
    padding-left: 30px;
    background-color: #222;
    border-right: 10px solid #d23718;
	box-shadow: 0 0 3px 2px #0009;
	transition: .3s ease-in-out;
}

.menu1.active {
    left: 100px;
}

.menu1 li {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
    border-left: 0px solid #d23718;
	transition: .3s;
	cursor: pointer;
}

.menu1 li:hover {
    padding-left: 10px;
    border-left: 10px solid #d23718;
}

.menu1 li a {
    color: #FF9218;
	display: block;
}

.menu1 li a:hover {
    color: #FF9218;
}

.menu1 li a p {
	color: #fff;
    font-size: 12px;
}

.menu2 {
    position: absolute;
    top: 0;
    left: -190px;
    z-index: -5;
    width: 300px;
    height: 100vh;
    padding-top: 250px;
    padding-left: 30px;
    background-color: #222;
    border-right: 10px solid #d23718;
	box-shadow: 0 0 3px 2px #0009;
	transition: .3s ease-in-out;
	display: none;
}

.menu2.active {
    left: 100px;
}

.menu2 li {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
    border-left: 0px solid #d23718;
	transition: .3s;
	cursor: pointer;
}

.menu2 li:hover {
    padding-left: 10px;
    border-left: 10px solid #d23718;
}

.menu2 li a {
    color: #FF9218;
	display: block;
}

.menu2 li a:hover {
    color: #FF9218;
}

.menu2 li a p {
	color: #fff;
    font-size: 12px;
}


/***** sns *****/

.sns1-wrap {
    width: 50%;
    position: absolute;
    z-index: 100;
    bottom: 30px;
    left: 25%;
    right: 25%;
}

.sns1 {
    width: 100%;
    float: left;
    padding: 12%;
}


/***** grid2 *****/

.grid2 {
    position: fixed;
    z-index: 90;
    width: 400px;
    height: 100%;
    padding-top: 190px;
    padding-left: 135px;
    padding-right: 25px;
	padding-bottom: 25px;
    background-color: #222;
	box-shadow: 0 0 4px 1px #000;
}

.grid2-inner1 {
    margin-bottom: 30px;
}

.grid2-inner1-title1 {
    font-size: 14px;
    font-weight: bold;
    padding-left: 7px;
    margin-bottom: 10px;
    border-left: 7px solid #d23718;
}

.update1-wrap {
    width: 100%;
    height: 300px;
    padding: 15px;
    background-color: #111;
    box-shadow: 0 0 3px 1px #7d7b7b inset;
    overflow-y: scroll;
}

.update1 {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #fff;
}

.update1-date1 {
    width: 50%;
    font-size: 11px;
	font-weight: bold;
    line-height: 25px;
    text-align: center;
    margin-right: 50%;
    margin-bottom: 10px;
    background-color: #b62f14;
}

.update1-cap1 {
    font-size: 12px;
    margin-bottom: 5px;
}

.hashtag1 iframe {
	height: 310px !important;
}


/***** grid3 *****/

.grid3 {
    width: 100%;
    height: 100%;
    padding-left: 400px;
    background-color: #383838;
}

.grid3-inner1 {
	width: 100%;
    height: 100%;
    background-color: #b4b3b3;
}

.header1 {
    padding: 4px;
	background-color: #000;
}

.header1-img1-wrap {
    width: 33.33%;
	float: left;
	padding: 4px;
    background-color: #000;
}

.header1-img1-wrap a {
	color: #fff;
}

.header1-img1-wrap a:hover {
	color: #fff;
}

.header1-img1 {
	position: relative;
	overflow: hidden;
	background-color: #000;
}

.header1-img1-date1 {
    font-size: 25px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    background-color: #d23718;
}

.header1-img1-cap1 {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
	font-size: 28px;
	font-weight: bold;
	line-height: 40px;
	padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: .3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header1-img1:hover .header1-img1-cap1 {
    bottom: 0;
}




.grid3-inner2 {
    padding: 70px 100px 70px 100px;
    background-color: #a12911;
}

.intro1-cap1 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.intro1-cap1-txt1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.intro1-cap1-txt2 {
    font-size: 70px;
}

.intro1-cap2 {
    font-size: 30px;
	font-weight: bold;
    text-align: center;
}

.title1 {
    width: 60%;
    margin-bottom: 20px;
}

.about1-cap1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.about1-cap2 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.about1-cap3 {
	width: 70%;
    font-size: 20px;
    text-align: center;
}


.grid3-inner3 {
    padding: 50px 100px 50px 100px;
	background-color: #383838;
}


/***** banner *****/

.banner1 {
    width: 50%;
    float: left;
    padding: 1%;
}

.banner1 img {
    width: 100%;
    height: auto;
}

.banner1 a {
    display: block;
}

.banner1 p {
    font-size: 14px;
    line-height: 35px;
}

.banner2 {
    width: 95%;
}


/***** movie *****/

.movie1 {
    width: 50%;
    float: left;
    padding: 1%;
}

.movie1 iframe {
    width: 100%;
}

.movie1-title1 {
    font-size: 18px calc;
    font-weight: bold;
    line-height: 40px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 10px solid #099ebc;
    border-bottom: 1px dotted #a4a1a1;
}


/***** inquiry *****/

.inquiry {
	width: 100%;
	height: auto;
	text-align: center;
}

.inquiry-title {
    width: 100%;
    height: auto;
    font-size: 24px;
    font-weight: bold;
    font-variant-ligatures: none;
    text-align: center;
    text-indent: 15px;
    letter-spacing: 15px;
    padding: 2%;
    margin-bottom: 30px;
    border-top: 2px solid #099ebc;
	border-bottom: 2px solid #099ebc;
}

.inquiry-title img{
	width: 100%;
	height: auto;
}

.store1-wrap {
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
}

.store1 {
    width: 33.33%;
    float: left;
    font-size: 22px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.store1-slide1 {
    width: 100%;
    margin-bottom: 10px;
}

.slide1 {
	padding: 2px;
    margin-bottom: 5px;
}

.slide2 li {
    padding: 2px;
}

.store1-info1-wrap {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store1-logo1 {
    width: 50%;
    margin-bottom: 0px;
}

.store1-info1 {
    width: 100%;
    font-size: 13px;
    text-align: left;
    border: 0px dotted #FFF;
}

.store1-name1-wrap {
    padding-left: 10px;
    margin-bottom: 15px;
    border-left: 10px solid #d23718;
    border-bottom: 0px dotted #fff;
}

.store1-name1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
    text-align: left;
}

.store1-name1-cap1 {
    color: #f69f2e;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}

.store1-btn1 {
    width: 48%;
    float: left;
    margin: 1%;
    font-size: 13px;
    line-height: 35px;
    text-align: center;
    border: 2px solid #d23718;
    transition: .3s;
}

.store1-btn1:hover {
	background-color: #d23718;
}

.store1-btn1 a {
	color: #fff;
	text-decoration: none;
	display: block;
}

.store1-btn1 a:hover{
	color: #fff;
}

.store1-btn2 {
    width: 98%;
    margin: 1%;
    font-size: 12px;
    line-height: 35px;
	text-align: center;
    border: 2px solid #d23718;
	transition: .3s;
}

.store1-btn2:hover {
	background-color: #d23718;
}

.store1-btn2 a {
	color: #fff;
	text-decoration: none;
	display: block;
}

.store1-btn2 a:hover{
	color: #fff;
}

.store1-ggmap {
    width: 100%;
}


/***** footer *****/

.footer1 {
    padding: 20px 40px 20px 40px;
    border-top: 2px dotted #d23718;
    background-color: #090909;
}

.footer1-logo1 {
	width: 280px;
	height: auto;
}

.footer1-logo1 a {
	display: block;
}

.footer1-pagetop1 {
    position: fixed;
    bottom: 27px;
    right: 20px;
}

.footer1-pagetop1 a {
	color: #d23718;
	font-size: 16px;
}










/***** info *****/

.info1-title1 {
    width: 90%;
    margin-bottom: 20px;
}

.info1 {
    width: 90%;
    padding: 3%;
	margin-bottom: 30px;
    border: 2px solid #e3dddd;
}

.info1-list1 {
    display: flex;
    justify-content: center;
    align-items: stretch;
	margin-bottom: 7px;
}

.info1-list1-left {
    width: 20%;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #f5f3f3;
}

.info1-list1-right {
    width: 80%;
	font-size: 28px;
    font-weight: bold;
	line-height: 40px;
	padding-top: 8px;
	padding-bottom: 8px;
    padding-left: 20px;
}

.txt-s1 {
    font-size: 16px;
}

.contact{
	height: auto;
	width: 90%;
	text-align: center;
	padding: 15px;
	border: 2px dashed #e3dddd;
}

.contact-title{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.shop-name1{
	font-size: 20px;
	padding-bottom: 5px;
}

.tel-mail1 {
    font-size: 17px;
	padding-bottom: 5px;
}

.contact-cap{
	font-size: 16px;
	text-align: center;
	margin-bottom: 5px;
}


/***** artist *****/

.title2 {
    width: 100%;
    height: auto;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 40px;
}

.artist-wrap {
    margin-bottom: 40px;
}

.artist {
    width: 100%;
    padding: 1%;
    border: 0px solid #ededed;
}

.artist1-photo1-wrap {
	position: relative;
	z-index: 1000;
    width: 50%;
    float: right;
    padding-bottom: 2%;
    padding-left: 2%;
}

.artist1-photo1 {
    width: 100%;
	padding: 1%;
	margin-bottom: 10px;
}

.artist1-photo1 img {
	border: 1px solid #5c5c5c;
}

.artist1-info1-wrap {
    width: 100%;
}

.artist-info1 {
	position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.artist-name1-wrap {
    width: 50%;
    margin-right: 50%;
    padding-bottom: 7px;
    margin-bottom: 15px;
    border-bottom: 2px dotted #099ebc;
}

.artist-name1 {
    font-size: 30px;
    font-weight: bold;
}

.artist-name2 {
    font-size: 20px;
    font-weight: bold;
}

.artist-cap1 {
    font-size: 14px;
}

.artist-cap1 p {
    margin-bottom: 10px;
}

.artist1-btn1 {
    width: 48%;
    float: left;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 8px;
    border: 2px solid #099ebc;
    transition: .3s;
}

.artist1-btn1:hover {
    background-color: #099ebc;
}

.artist1-btn1 a {
    color: #fff;
    display: block;
}

.artist1-btn1 a:hover {
    color: #fff;
}

.d1{
    display: block;
}

.d2{
    display: none;
}