@charset "utf-8";
/* CSS Document */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-y: scroll;
	color: #222;
	font-weight: normal;
	/* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
	scroll-behavior: smooth;
}

/* support iOS */
html{
  height: -webkit-fill-available;
  background: #e9e5e3;
}
body{
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* --------------------------------------------- */
/* ▼common */
/* --------------------------------------------- */

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

h1,h2,h3,h4,h5,h6 { font-weight: normal;}
body,div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
	margin: 0;
	padding: 0;
}
dd { margin-inline-start:0;}
li {list-style: none;}
p {
    margin-block-start: 0;
    margin-block-end: 0;
}
a { text-decoration: none; color: #222;}
a:hover,
a:hover span,
span a:hover{
    color: #222;
    pacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {width: 100%;/* font-size: 0; */}
.logo {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background:url(/images/logo.png);
	height: 70px;
	margin:20px 0;
	background-size: 81px;
	background-repeat: no-repeat;
	background-position: 15px;
}

/* header */
header {
    /*position: fixed;*/
    width: 100%;
    z-index: 999;
    max-width: 1400px;
    margin: auto;
    }


/*
メニューボタン
-------------------------------------------*/
.menu_btn {
	display: block;
	height: 40px;
	width: 40px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	position: absolute;
	z-index: 5000;
	top: 9px;
	right: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	cursor: pointer;
}

.menu_btn:hover { cursor: pointer;}

.menu_btn span {
	width: 28px;
	height: 3px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -14px;
	background-color: #FFF;
	transition: all 0.3s;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
}

.menu_btn.opened span { background-color: #555;}

.menu_btn span.top {
    transform: translateY(-8px);
	-webkit-transform: translateY(-8px);  
    -moz-transform: translateY(-8px);    
  }
.menu_btn span.bottom {
    transform: translateY(8px);
	-webkit-transform: translateY(8px);  
    -moz-transform: translateY(8px);    
}

.menu_btn:hover span.top {
    transform: translateY(-10px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-10px);
}

.menu_btn:hover span.bottom {
    transform: translateY(10px);
	-webkit-transform: translateY(10px);  
    -moz-transform: translateY(10px);    
}

.menu_btn.opened  span.top {
    transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);  
    -moz-transform: rotate(-45deg) translateY(0px);    
}
.menu_btn.opened  span.bottom {
    transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);  
    -moz-transform: rotate(45deg) translateY(0px);    
}

/*
グローバルナビ
-------------------------------------------*/
#g_navi .icon {margin-top: 30px;margin-right: 1.6em;padding-left: 30px;float: right;}
#g_navi .icon a {font-size: 23px;color: #1a1819;margin-right: 12px;}


/*header
-------------------------------------------*/
#logo{padding: 0.4em 0;font-size: 24px;font-weight: bold;text-align: center;}
#logo span{font-size: 16px;display: block;}
#logo a {/* color: #FFF; */}
#logo a:hover { text-decoration: none;}

@media (min-width: 768px) {
    #logo{font-size: 36px;padding: 0}
    #logo span{ font-size: 22px;}
}

/*
グローバルナビ
-------------------------------------------*/
#g_navi {
	position: fixed;
	width: 80%;
	height: 500vw;
	top: 0px;
	left: 100%;
	overflow: auto;
	z-index: 3000;
	background: rgba(203,199,189, 0.95);
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 0px;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.navi_base {overflow: hidden;padding-top: 5em;}
.navi_base li { text-align: right;padding-right: 2em;}
.navi_base li a { display: block; margin-top: 1.6em;}

.artist_photo { position: relative;}
.artist_photo .type {color: #fff;position: absolute;padding: 0.2em 1em;left: 0;bottom: 5%;font-family: 'Noto Sans JP', sans-serif!important;font-size: 70%;}
.artist_photo .live {background: #000000;}
.artist_photo .dj {background: #ffe72d;color: #333;}
@media (min-width: 768px) {
    #g_navi{ font-size: 24px;}
    .navi_base li a { margin-top: 1em;}
    .artist_photo .type {font-size: 90%;}
}
/*
pc-icon
-------------------------------------------*/
.pc-icon { display: none;}

@media (min-width: 768px) {
    .pc-icon {display: block;position: absolute;right: 50px;top: 15px;font-size: 22px;}
    .pc-icon a {color: #FFF;margin-right: 20px;}
}


/* --------------------------------------------- */
/* ▼TOP
/* --------------------------------------------- */
.info {padding: 20px 10px 0;}
.info a{text-decoration: underline;color: #28a6cf;}



.guest a{display: block;margin: 0.4em 0;font-size: 14px;}
.guest { margin-bottom: 1em;}
.guest dd {font-size: 30px;}
.guest dd span { font-size: 14px; margin-left: 0.5em; display: block;}
.guest dd img {
    width: 100%;
    display: block;
    margin: 5px 0;
}
.guest dd p { font-size: 12px;}

.djs { margin-bottom: 1em;}
.djs dd {font-size: 24px;}
.djs dd span { font-size: 12px; margin-left: 0.5em;}



.ticket dt,.venue dt {
    background: #000;
    padding: 5px 10px;
    color: #FFF;
    margin: 15px 0 5px;
    display: block;
    font-size: 12px;
}
.ticket dd span { font-size: 14px;}

.venue {margin-bottom: 2em;font-family: 'Noto Sans JP', sans-serif!important;margin-top: 4em;}
.venue .shop {font-weight: bold;font-size: 180%;margin-left: 0.2em;line-height: 1;}
.venue a {}
.ticket dd,.venue dd {margin-left: 0.5em;font-size: 14px;}
.venue dd span {font-size: 90%;/* line-height: 1; */}
.blank a { font-size: 12px; display: block; margin-top: 1em;}
.blank .fas {
    margin-right: 0.5em;
}

/* -----Animation-----------*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 0.5s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.pc { display: none;}

div.vid_contents {
width: 100%;/*背景色を横幅いっぱいに広げる*/
margin: auto;
}
video.vid_main {width: 100%;}

.paradise { margin-top: -10px;}

.contents {
    padding: 10px 20px;
    display: block;
    background: #e9e5e3;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    max-width: 96%;
    margin: 100px auto;
}
@media (min-width: 768px) {
    .contents {margin: 4% auto 4%;max-width: 90%;}
    .sp { display: none;}
    .pc { display: block;}
    
    .deta { text-align: left;}
    
    .key {width: 58%;margin: 0 auto;}
    .guest dd {font-size: 36px;overflow: hidden;}
    
    .guest a{font-size: 16px;}
    .guest dd p {
    margin-left: 220px;
    font-size: 16px;
}
    .guest dd span {display: none;}
    .guest dd img {
    width: 200px;
    display: block;
    float: left;
    margin: 10px;
}
    .ticket dd:last-child {/* font-size: 12px; */}
    

    .guest dd p.en {font-size: 18px;}
    

}
.venuepoint {font-size: 10px!important;margin-bottom: 1em;padding-left: 1em;text-indent:-1em;}
/* --------------------------------------------- */
/* ▼rhythm
/* --------------------------------------------- */
.kv {margin: 0;font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;}
.kv dl { width: 90%; margin: 20px auto;}
.kv dt { background: #000; color: #FFF; font-size: 12px;  padding: 5px;}
.kv dd { font-size: 36px; font-weight: bold;}
.kv dd.jp { font-size: 30px;}
.kv dd span { display: block; font-size: 16px; font-weight: normal;}

.deta {
        /* margin: 0 5%; */
        font-size: 36px;
        text-align: center;
        /* border-top: 1px solid #333; */
        border-bottom: 1px solid #333;
        padding: 10px 0;
        font-weight: bold;
}

.deta span { font-size: 16px;}
.deta span span {display: inline-block;margin-left: 0.5em;}

.label_logo { width: 100px; margin: auto;}
.artist ul { margin-bottom: 30px;}
.artist ul li dt {font-size: 36px;font-weight: bold;text-align: center;font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;}
.artist ul li dt span { display: block; font-size: 16px; margin-bottom: 1em;}
.artist ul li dd {font-size: 14px;font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;word-break: break-all;text-align: justify;}
.artist ul li dd span {display: block;font-size: 80%;}

.artist p a {
        color: #222222;
    margin-top: 0.5em;
    display: block;
}
.artist p .fab { font-size: 30px;}

.artist_link { margin-top: 20px;}
.artist_link a {
        font-size: 14px;
   margin: 0.5em 0;
    color: #065dc2;
    display: block;
}
.artist_link div { margin-top: 1em;}
.ticket {
        margin-bottom: 20px;
        padding-bottom: 30px;
        font-family: 'Noto Sans JP', sans-serif!important;
}

.titD{text-align: center;font-weight: bold;margin-bottom: 1em;}

.ticket a,.venue a { color: #065dc2;}

.artist_link div a{display: inline-block;font-size: 20px;margin: 0 0.8em 0 0;fill: #065dc2;}

.artist ul {
    gap: 0 2%;
    border-bottom: 1px solid #979797;
    padding-bottom: 30px;
}

.mt_1em { margin-top: 1em;}
.mt_2em { margin-top: 2em;}
.metro {
    width: 80px;
}
@media (min-width: 768px) {
    .kv {margin: 0 auto 20px;max-width: 1400px;}
    
    .kv dl {
        float: left;
    width: 42%;
    margin: 30px 4%;
    }
    .kv dd { font-size: 50px; }
    .kv dd.jp { font-size: 42px;}
    .flyer {
    width: 50%;
    margin: auto;
    float: left;
}
    
    .deta {margin: 0 4%;font-size: 60px;}
    .deta span { font-size: 32px;}
.deta span span {/* display: inline-block; *//* margin-left: 0.5em; */font-size: 26px;}
    
    .artist ul {
        display: flex;
        flex-wrap: wrap;
        gap:0 2%;
        FONT-WEIGHT: 100;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .artist ul li { width: 48%;}
    .artist ul li dt { text-align: left; font-size: 50px; }
    .label_logo { margin: inherit;}

    .ticket dt,.venue dt {}
    
    .artist_link div a { margin: 0 0.5em 0 0}
    
}
        
.instagram span { font-size: 80%;}
.artist a { color: #2A69E8;}

.gaibu a { color: #2A69E8; display: block; margin-top: 1em; font-size: 80%;}

.youtube {
  margin-top: 20px;
position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


.links ul {
    /* display: flex; */
    /* flex-wrap: wrap; */
}
.links li {/* width: inherit!important; */}
.artist ul .links ul {border-bottom: none;padding: 0;margin: 1em 0 0;}

.shikashika {
        position: absolute;
    left: 2%;
    top: 2%;
    width: 20%;
}

.deco {}
.deco span{
    display: inline-block;
}
.deco p{
        font-size: 36px;
        font-weight: bold;
        text-align: center;
        font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
        display: inline-block;
        margin: 0 0.2em 0 0;
}

@media (max-width: 767px) {
.links li {/* width: 23%!important; */white-space: nowrap;}
}
@media (min-width: 768px) {
    .deco p {text-align: left;
    font-size: 50px;}
}

.menu_vip ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.menu_vip ul { padding: 1em 0;justify-content: space-around;border-bottom: 1px solid #969696;border-top: 1px solid #969696;}
.menu_vip li {text-align: center;font-size: 90%;}
.menu_vip li a { position: relative; color: #222;}
.menu_vip li a::before{
	content:'▼';
	font-size:0.8rem;
	padding:0 10px 0 0;
	color: #ccc;
}
.menu_vip li span{display: block; color: #666; font-size: 90%;}
.link_style_A a {position: relative;display: block;width: fit-content;line-height: 1;margin-bottom: 2em;color: #1a73e8;}
.link_style_A a::before{
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    right: -12px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #1a73e8;
    border-right: 2px solid #1a73e8;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.album_box  {
    padding: 0!important;
    border: none!important;
    margin: 1em 0 0!important;
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
}

.artist ul.album_box li{width: 32%;margin-bottom: 1em;}
.album_box li span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 80%;
    line-height: 1;
}
.recommend_album {font-size: 80%;border-top: 1px solid #b9b9b9;margin-top: 1em;}
.box_d {
    display: inline-block;
    border: 1px solid #666;
    padding: 0.2em 0.5em;
    font-size: 80%;
}
@media (max-width: 767px) {
    .spmargin {         margin-top: 20px;
        border-top: 1px solid #ccc;
        padding-top: 20px;
}
}
@media (min-width: 768px) {
    .artist ul.album_box li{width: 18%;}

}


.top {
   background-image: url("../img/bg.png");
   background-size: cover;
   content: "";
   display: block;
   position: fixed;
   top: 0;
   left: 0;
   z-index: -1;
   width: 100%;
   height: 100vh;
   background-repeat: repeat-y;
   background-size: cover;
   background-position: center;
}

.total {
    width: 100%;
    height:auto;
    /* display:flex; */
    justify-content:center; /*これを指定*/
    border-bottom: 1px solid #333;
    padding-bottom: 1em;
    margin-bottom: 1em;
}
.total img {
    max-width: 800px;
    margin: auto;
    display: block;
}
.total p {
    text-align: center;
    margin: 1em;
    font-size: 22px;
}
.total dl{
    font-size: 200%;
    height:auto;
    text-align: center;
    /* display:flex; */
    justify-content:center; /*これを指定*/
}
.total dl:last-child {/* margin-left: 1em; */}
.total dt,.total dd span{font-size: 60%;/* display: block; *//* width: 100%; */text-align: center;}
.total dd span { display: block;}
.links li span {font-size: 65%;}
.links a {color: #065dc2;font-size: 60%;margin-left: 0.5em;}

.bear {background-image: url(../img/bg.png);height: 72vh;background-size: cover;position: relative;margin-bottom: 1em;}
.bear img {width: 40%;position: absolute;bottom: -2%;left: -13%;}

@media (min-width: 768px) {
    .bear img {width: 20%;}

}
