@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Anton|Economica:400,400i,700,700i|Electrolize|Fira+Sans+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Julius+Sans+One|Jura:300,400,500,600,700|Khand:300,400,500,600,700|Montserrat+Alternates:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Orbitron:400,500,700,900|Oswald:200,300,400,500,600,700|Rajdhani:300,400,500,600,700|Raleway+Dots|Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Ropa+Sans:400,400i|Saira+Condensed:100,200,300,400,500,600,700,800,900|Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900|Sarpanch:400,500,600,700,800,900|Squada+One|Teko:300,400,500,600,700|Wire+One|Baloo+Da|Baloo+Tammudu|Chathura:100,300,400,700,800|Kenia|Timmana|Viga|Righteous|Allerta+Stencil|Bahiana|Basic|Black+Ops+One|Carme|Days+One|Dorsa|Farsan|Fredericka+the+Great|Fugaz+One|Gurajada|Homenaje|Jockey+One|Just+Another+Hand|Just+Me+Again+Down+Here|Lily+Script+One|Nixie+One|Nosifer|Pompiere|Racing+Sans+One|Reem+Kufi|Secular+One|Six+Caps|Tulpen+One');

/* Anton - Economica - Electrolize - Fira Sans Condensed - Julius Sans One - Jura - Khand - Montserrat Alternates - Orbitron - Oswald - Rajdhani - Raleway Dots - Raleway - Ropa Sans - Saira Condensed -Saira Extra Condensed - Sarpanch - Squada One - Teko - Wire One - Baloo Da - Baloo Tammudu - Chathura - Kenia - Timmana - Viga - Righteous - Allerta Stenci - Bahiana - Basic - Black Ops One - Carme - Days One - Dorsa - Farsan - Fredericka the Great - Fugaz One - Gurajada - Homenaje - Jockey One - Just Another Hand - Just Me Again Down Here - Lily Script One - Nixie One - Nosifer - Racing Sans One - Reem Kufi - Secular One - Six Caps - Tulpen One */


/***** reset *****/

* {
	margin: 0 auto;
	padding: 0;
	border: 0;
	font-feature-settings: "palt";
	list-style:none;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}


/***** loader *****/

#fade {
	position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: #fff;
	display: none;
}

#loader {
	position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    width: 80px;
    height: 80px;
	margin-top: -40px; /* heightの半分のマイナス値 */
    margin-left: -40px; /* widthの半分のマイナス値 */
	display: none;
}


/***** base *****/

body {
	color: #000;
	font-family: 'Noto Sans Japanese', 'Open Sans', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
	font-size: 16px;
	line-height: 1.5;
	background-color: #fff;
}

img {
	max-width: 100%;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

img:hover {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.Clear {
	clear: both;
}

.text-small {
    font-size: 22px;
}


/***** link *****/

a{
	color: #000;
	overflow: hidden;
	outline: none;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
	
a:link{
	color: #000;
	text-decoration: underline;
}	
	
a:visited{
	color: #000;
}	

a:hover {
	color: #00B7E9;
	text-decoration: underline;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}	

a.pt:hover img{
	filter:alpha(opacity=70); /*←IE用*/
	-moz-opacity:0.80; /*←Mozilla用*/
	opacity:0.70; /*safari opera*/
}


/***** color *****/

.red{
	color: #FF9696;
}

.red2 {
    color: #F00101;
}

.yellow {
	color: #E7DC04;
}

.blue {
	color: #3CF;
}

.green {
	color: #009617;
}

.orange{
	color: #E44305;
}

.white {
	color: #fff;
}


/***** section *****/

section {
	width: 100%;
	height: auto;
}


/***** content *****/

.content1 {
    width: 1280px;
    height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.content2 {
    width: 1280px;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 30px;
    padding-right: 30px;
}

.content3 {
    width: 1280px;
    height: auto;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
}


/***** header1 *****/

#header {
	position: fixed;
    z-index: 50;
    width: 100%;
    height: 75px;
    background-color: #fff;
    border-bottom: 7px solid #b71922;
}

.logo1 {
    position: absolute;
    top: 15px;
    left: 120px;
    width: 430px;
}

.logo2 {
    position: absolute;
    top: 15px;
    left: 253px;
    width: 320px;
}

.menu-list {
    position: absolute;
    top: 18px;
    right: 120px;
    width: 40%;
    color: #999999;
}

.menu-list ul li {
    width: 27.33%;
    float: left;
    font-size: 15px;
	font-weight: bold;
    text-align: center;
    text-shadow: none;
    margin-right: 3%;
    margin-left: 3%;
    background-color: #d51919;
    display: block;
    border: 0 solid #d51919;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0);
    outline: 1px solid;
    outline-color: #d51919;
    outline-offset: 0px;
	outline-radius: 5px;
    transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-list ul li:hover {
	background-color: #ff8e8e;
    outline-color: rgb(255, 255, 255);
    outline-offset: 7px;
    box-shadow: inset 0 0 0px rgba(255, 255, 255, 0.55), 0 0 0px rgb(255, 255, 255);
}

.menu-list ul li a {
	color: #fff;
    text-decoration: none;
	padding: 5px;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.menu-list2 {
    position: absolute;
    top: 18px;
    right: 137px;
    width: 17%;
    color: #999999;
}

.menu-list2 ul li {
    width: 100%;
    float: left;
    font-size: 15px;
	font-weight: bold;
    text-align: center;
    text-shadow: none;
    margin-right: 3%;
    margin-left: 3%;
    background-color: #d51919;
    display: block;
    border: 0 solid #d51919;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0);
    outline: 1px solid;
    outline-color: #d51919;
    outline-offset: 0px;
	outline-radius: 5px;
    transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-list2 ul li:hover {
	background-color: #ff8e8e;
    outline-color: rgb(255, 255, 255);
    outline-offset: 7px;
    box-shadow: inset 0 0 0px rgba(255, 255, 255, 0.55), 0 0 0px rgb(255, 255, 255);
}

.menu-list2 ul li a {
	color: #fff;
    text-decoration: none;
	padding: 5px;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}


/***** header2 *****/

.header2-wrap {
	position: fixed;
    z-index: 50;
	width: 100%;
    display: none; 
}

.header2 {
    width: 100%;
    height: 75px;
    background-color: #fff;
    border-bottom: 5px solid #b71922;
}

.brand-logo2 {
    width: 135px;
    height: auto;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 11px;
    position: absolute;
    z-index: 55;
}

.menu2-hum {
    position: absolute;
    z-index: 20;
	top: 17px;
    right: 20px;
    width: 30px;
    height: 50px; 
    cursor: pointer;
}

.menu-line {
	top: 10px;
}

.menu-inner::after,
.menu-inner::before {
	content: "";
}

.menu-line,
.menu-inner::after,
.menu-inner::before {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	transition: .2s ease-out;
	background-color: #000;
}

.menu-inner::after {
	top: 20px;
}

/* 真ん中の線のアニメーション */
.menu2-hum.active .menu-line {
	width: 0;
	opacity: 0;
	transform: translateX(20px) rotate(90deg);
}

/* 上の線のアニメーション */
.menu2-hum.active .menu-inner::before {
	width: 25px;
	transform: translateY(10px) translateX(3px) rotate(-135deg);
}

/* 下の線のアニメーション */
.menu2-hum.active .menu-inner::after {
	width: 25px;
	transform: translateY(-10px) translateX(3px) rotate(135deg);
}

.menu2 {
    width: 100%;
    background-color: #181818;
}

.menu2 li {
    width: 85%;
    float: none;
    margin-bottom: 0px;
    background-color: #181818;
	border-bottom: 1px dotted #a1a1a1;
    transition: .2s;
}

.menu2 li a {
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 60px;
    display: block;
}

.menu2 li:hover {
	background-color: ;
	transition: .2s;
}

.menu2 li ul {
    width: 100%;
    font-size: 12px;
    display: none;
}

.menu2 li ul li {
	position: relative;
    width: 100%;
	background-color: #181818;
	transition: .2s;
}

.menu2 li ul li a {
    color: #FFF;
    font-size: 14px;
	font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 55px;
    display: block;
}

.menu2 li ul li ul {
    width: 100%;
	background-color: #292929;
}

.menu2 li ul li ul li {
    width: 50%;
	float: left;
    background-color: #181818;
}

.menu2 li ul li ul li a {
    color: #FFF;
    font-size: 14px;
	font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 55px;
    display: block;
}



.menu3-hum {
    position: absolute;
    z-index: 20;
    top: 16px;
    right: 22px;
    width: 40px;
    height: 40px;
    font-size: 35px;
    border-radius: 50%;
	background-color: #cc131d;
	display: block;
	cursor: pointer;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background-image: url(../img/icon/back1.png);
	background-size: 100%;
}

.menu3-hum:hover {
	background-color: #ff6870;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.menu3-hum a {
	display: block;
}


/***** slide *****/

.slide-wrap {
    background-color: #;
}

.slide1 {
    margin-bottom: 15px;
}


/***** intro *****/

.intro-cap1 {
	width: 80%;
    color: #fff;
    font-size: 24px;
}


/***** pickup *****/

.pickup-wrap {
    position: relative;
    margin-bottom: 30px;
}

.pickup-title {
    width: 35%;
    margin-right: 65%;
}

.photo1-wrap {
    width: 50%;
    float: left;
	padding: 1%;
}

.photo-cap1 {
    color: #fff;
    line-height: 35px;
	padding-left: 3%;
	background-color: #000;
}


/***** tab1 *****/

ul#tab {
    position: absolute;
    z-index: 30;
    right: 0;
    top: 7px;
    zoom: 1;
    width: 35%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
	background: #c9c3c4;
    border-bottom: 3px solid #d51919;
}

ul#tab:after {
	content: ".";
	height: 0px;
	clear: both;
	line-height: 0;
	visibility: hidden;
	display: block;
}

ul#tab li {
    width: 33.33%;
	float: left;
    font-size: 18px;
    font-weight: bold;
	text-align: center;
}

ul#tab li:last-child {
	background: none;
}

ul#tab li a {
    width: 100%;
    color: #222;
    line-height: 35px;
	text-decoration: none;
	display: block;
}

ul#tab li a:hover {
	color: #fff;
	background: #f9a0a0;
}

ul#tab li.active,
ul#tab li.active a,
ul#tab li.active a:hover {
	color: #fff;
	background: #d51919;
}

#detail {
    width: 100%;
    height: auto;
	clear: both;
    overflow: hidden;
}

.tabbox {
	display: none;
}

.tabbox-inner {
	display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}


/***** tab2 *****/

ul#tab-wrap2 {
    width: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    background: #c9c3c4;
    border-bottom: 3px solid #d51919;
}

ul#tab-wrap2:after {
	content:".";
	height: 0px;
	clear: both;
	line-height: 0;
	visibility: hidden;
	display: block;
}

ul#tab-wrap2 li {
    width: 12.5%;
	float: left;
    font-size: 18px;
    font-weight: bold;
	text-align: center;
}

ul#tab-wrap2 li:last-child {
	background: none;
}

ul#tab-wrap2 li a {
    width: 100%;
    color: #222;
    line-height: 45px;
    text-decoration: none;
    display: block;
}

ul#tab-wrap2 li a:hover {
	color: #fff;
	background: #f9a0a0;
}

ul#tab-wrap2 li.active,
ul#tab-wrap2 li.active a,
ul#tab-wrap2 li.active a:hover {
	color: #fff;
	background: #d51919;
}


/***** event *****/

.month-menu-wrap {
    position: relative;
    margin-bottom: 30px;
}

.month-title {
    width: 35%;
    margin-right: 65%;
}

.event-wrap {
    width: 50%;
    padding: 0.5%;
    margin: 0 0 30px;
    position: relative;
}

.event {
    width: 100%;
    height: 100%;
    padding: 0%;
    background-color: #fff;
    border: 1px solid #cbcbcb;
    position: relative;
}

.event-icon {
    width: 100%;
	padding: 5%;
    background-color: #fff;
}

.event-icon img {
    border: 1px solid #e3e3e3;
}

.event-date {
	color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: left;
	padding: 5%;
}

.week {
	background-color: #656565;
}

.sat {
	background-color: #38acec;
}

.sun {
	background-color: #ec3152;
}

.event-info {
    padding-top: 0%;
    padding-bottom: 20%;
    padding-right: 5%;
    padding-left: 5%;
    margin-bottom: 0px;
}

.event-artist {
    font-size: 14px;
    padding-bottom: 3px;
    margin-bottom: 15px;
    border-bottom: 1px dotted #9f1515;
}

.event-title {
    font-size: 16px;
	line-height: 25px;
	margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
}

.event-sales {
    width: 60%;
    float: left;
    color: #e12525;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    padding: 1%;
}

.button1 {
    width: 40%;
    float: left;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    padding: 1%;
    background-color: #9c9c9c;
    display: block;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.button1:hover {
	background-color: #f64a4a;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.button1 a {
	color: #FFF;
	text-decoration: none;
	display: block;
}

.button3 {
    width: 40%;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    padding: 1%;
	margin-left: 60%;
    background-color: #9c9c9c;
    display: block;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.button3:hover {
	background-color: #f64a4a;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.button3 a {
	color: #FFF;
	text-decoration: none;
	display: block;
}

.event-store {
    color: #fff;
	font-size: 12px;
    text-align: center;
	padding: 2%;
	background-color: #e46161;
	border-top: 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
}


/***** report *****/

.report-header {
	width: 100%;
    margin-bottom: 40px;
}

.report-menu {
    position: relative;
    margin-bottom: 30px;
}

.year {
	width: 100%;
	margin-bottom: 60px;
}

.year-title1 {
    font-size: 28px;
    font-weight: bold;
	padding-left: 10px;
    margin-bottom: 30px;
    border-left: 12px solid #d51919;
    border-bottom: 2px dotted #d51919;
}


/***** event2 *****/

.event2 {
    width: 100%;
    padding: 3%;
    border: 1px solid #989898;
}

.event-date2 {
    font-size: 35px;
    font-weight: bold;
	padding-bottom: 5px;
    padding-left: 1.5%;
	margin-bottom: 20px;
	border-left: 15px solid #d51919;
    border-bottom: 3px dotted #d51919;
}

.event-header1 {
	width: 100%;
    margin-bottom: 20px;
}

.event-title2 {
    font-size: 35px;
	font-weight: bold;
	margin-bottom: 15px;
}

.event-intro-cap1 {
	width: 100%;
    margin-bottom: 35px;
}

.event-info2 {
    font-size: 16px;
    margin-bottom: 50px;
}

.event-info-list1 {
    width: 100%;
    margin-bottom: 8px;
    display: table;
}

.list-item1 {
    width: 20%;
	color: #fff;
	font-weight: bold;
    text-align: center;
    padding: 1%;
    background-color: #ed4c63;
    display: table-cell;
	vertical-align: middle;
}

.list-item2 {
    width: 80%;
	padding-top: 1%;
	padding-bottom: 1%;
    padding-left: 2%;
    display: table-cell;
	vertical-align: middle;
}

.button2 {
    width: 40%;
	font-size: 14px;
    font-weight: bold;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
    margin-right: 60%;
    background-color: #e48e1e;
    display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.button2:hover {
    background-color: #ffb22d;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.button2 a {
	color: #fff;
	text-decoration: none;
    line-height: 40px;
    display: block;
}

.inquiry {
    width: 100%;
}

.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 #de1a1a;
	border-bottom: 2px solid #de1a1a;
}

.store1 {
    width: 90%;
    height: auto;
    font-size: 22px;
	padding: 2%;
    margin-bottom: 30px;
}

.store-logo1 {
    width: 50%;
    height: auto;
    float: right;
    padding: 2%;
}

.store-info1 {
    width: 50%;
    height: auto;
    float: right;
    font-size: 16px;
    text-align: left;
    padding-left: 2%;
    padding: 2%;
    border: 0px dotted #FFF;
}

.store-name1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 3px;
}

.store-web {
    width: 90%;
    height: auto;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
	margin-top: 15px;
	margin-right: 10%;
    background-color: #a71111;
    display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.store-web a {
	color: #fff;
	text-decoration: none;
	display: block;
}

.store-web a:link {
	color: #fff;
}

.store-web:hover {
	background-color: #f96868;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.store-map {
    width: 100%;
}


/***** sns *****/

.sns-wrap {
    width: 320px;
}

.sns {
	width: calc(100%/3);
	float: left;
	padding: 2%;
}


/***** banner *****/

.banner1 {
    width: 55%;
}


/***** payback *****/

.title1 {
    color: #FFB503;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 30px;
}

.payback {
	color: #FFF;
    font-size: 18px;
    font-weight: 400;
	text-align: center;
}


/***** pagetop *****/

.pagetop {
    position: fixed;
	right: 20px;
    bottom: 20px;
}


/***** footer *****/

.footer {
	width: 100%;
	color: #FFF;
	font-size: 10px;
	text-align: center;
	background-color: #000;
	border-top: 2px solid #BE1B20;
}

.footer img {
    padding: 1%;
	display: inline-block;
}