@charset "utf-8";

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
caption,
canvas,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
form,
footer,
header,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
main,
small,
span,
strike,
strong,
sub,
summary,
sup,
tt,
table,
tbody,
textarea,
tfoot,
thead,
time,
tr,
th,
td,
u,
ul,
var,
video {
  font-size: 100%;
  vertical-align: baseline;
  white-space: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

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

/*---------------------------
Link
---------------------------*/
a {
  outline: none;
  text-decoration: none;
  color: #fff;
  word-break: break-all;
}

a:hover {
  opacity: 0.8;
}

a img:hover {
  opacity: 0.8;
}

a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*---------------------------
Body
---------------------------*/
body {
  font-family: "fot-tsukubrdgothic-std", sans-serif, "游ゴシック体", YuGothic,
    "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  font-style: normal;
  font-weight: 700;
  color: #000;
  background: #000;
  word-wrap: break-word;
  font-kerning: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
}

/*---------------------------
共通
---------------------------*/
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  display: flow-root;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

header {
  height: 100px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width:750px) {
  header {
      height: 60px;
  }
}


.hero {
  max-width: 1440px;
  margin: 0px auto 0;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  background: #000;
}

.hero h1 {
  max-width: 624px;
  width: 70%;
  position: absolute;
  top: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width:750px) {
  .hero {
    width: 100%;
    margin: 25px auto 0;
  }

  .hero h1 {
    width: 90%;
    top: 70%;
  }
}

.content {
  background: #000;
  border-radius: 180px 180px 0 0;
  margin-top: -80px;
  padding: 120px;
}

@media only screen and (max-width:750px) {
  .content {
      border-radius: 80px 80px 0 0;
      margin-top: -3vw;
      padding: 10% 5%;
  }
}

.dayplace {
  display: flex;
  max-width: 863px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.dayplace .day {
  max-width: 270px;
  width: 40%;
}

.dayplace .box {
  width: 60%;
  margin-left: 25px;
}

.dayplace .time-box {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  padding-left: 10px;
  color: #FFFBF2;
}

.dayplace .time-box span {
  font-size: 22px;
}

.dayplace .place {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  color: #FFFBF2;
}

.dayplace .address {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #FFFBF2;
  line-height: 1;
}

@media only screen and (max-width: 1070px) {
  .dayplace .time-box {
    font-size: calc(18 / 1070 * 100vw);
  }

  .dayplace .time-box span {
    font-size: calc(20 / 1070 * 100vw);
  }

  .dayplace .place {
    font-size: calc(30 / 1070 * 100vw);
  }
}

@media only screen and (max-width: 750px) {
  .dayplace {
    display: block;
    max-width: 863px;
    margin: 0 auto;
  }

  .dayplace .day {
    max-width: 245px;
    width: auto;
    margin: 0 auto;
  }

  .dayplace .box {
    width: 100%;
    margin-left: 0;
  }

  .dayplace .time-box {
    justify-content: center;
    font-size: 3.5vw;
    margin-top: 20px;
  }

  .dayplace .time-box span {
    font-size: 3.7vw;
  }

  .dayplace .place {
    font-size: 5.9vw;
    margin-top: 0px;
  }

  .dayplace .address {
    font-size: 2.9vw;
  }
}

.news {
  margin: 100px auto 0;
}

.news .tit-box {
  width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #FFFBF2;
  text-align: center;
  padding: 10px 0;
}

.news .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.news .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.news .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.news .inner {
  border-radius: 35px;
  padding: 20px 30px 20px 30px;
  max-width: 718px;
  width: 100%;
  margin: 35px auto 0;
  border: 1px solid #FFFBF2;
  box-sizing: border-box;
}

.news ul {
  height: 200px;
  overflow-y: scroll;
  font-size: 13px;
}

.news li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: #FFFBF2;
  border-bottom: 1px dotted #FFFBF2;
  padding: 20px 20px 20px 0;
}

.news li .day {
  width: 13%;
  margin-right: 3%;
  font-family: "ropa-mix-pro", sans-serif;
}

.news li h3 {
  width: 84%;
}

.news li a {
  color: #FFFBF2;
}

@media only screen and (max-width: 750px) {
  .news {
    margin: 65px auto 0;
  }

  .news .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .news ul {
    height: 200px;
    overflow-y: scroll;
    font-size: 13px;
  }

  .news li {
    display: block;
    font-size: 13px;
    color: #FFFBF2;
    border-bottom: 1px dotted #FFFBF2;
    padding: 20px 20px 20px 0;
  }

  .news li .day {
    width: 100%;
    margin-right: 0%;
  }

  .news li h3 {
    width: 100%;
  }
}

.vote {
  margin: 135px auto 0;
}

.vote .vote-banner {
  padding-top: 12px;
}

.vote .inner {
  border-radius: 35px;
  padding: 20px 30px 20px 30px;
  max-width: 718px;
  width: 100%;
  margin: 0 auto 0;
  border: 1px solid #FFFBF2;
  box-sizing: border-box;
}

.vote .tit-box {
  width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #FFFBF2;
  text-align: center;
  padding: 10px 0;
}

.vote .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.vote .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.vote .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.vote .txt {
  font-size: 15px;
  color: #FFFBF2;
  text-align: center;
  margin-top: 20px;
}

.vote .tit-box2 {
  max-width: 400px;
  margin: 30px auto 20px;
  position: relative;
  opacity: 0.8;
  cursor: not-allowed;
}

.vote .tit-box2 {
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  display: block;
  text-align: center;
  padding: 10px;
}

.vote .tit-box2 h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.vote .tit-box2 .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.vote .tit-box2 .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.vote .tit-box2 .arrow-right {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  top: 30px;
  right: 30px;
}

/* ここから 新規追加 */
.vote .coming-soon {
  max-width: 400px;
  margin: 30px auto 20px;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
  opacity: 0.8;
  cursor: not-allowed;
}

.vote .coming-soon h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

/* ここまで 新規追加 */

.vote .sub-tit {
  font-size: 30px;
  color: #FFFBF2;
  text-align: center;
}

.vote .day {
  font-size: 20px;
  color: #FFFBF2;
  text-align: center;
}

.vote .day span {
  font-size: 15px;
}

@media only screen and (max-width: 750px) {
  .vote {
    margin: 65px auto 0;
  }

  .vote .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .vote .tit-box2 {
    width: 100%;
  }

  .vote .tit-box2 {
    padding: 15px;
  }

  .vote .tit-box2 h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .vote .txt {
    font-size: 12px;

    .date {
      font-size: 11px;
    }
  }

  .vote .tit-box2 .arrow-right {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 34px;
    right: 19px;
  }

  .vote .sub-tit {
    font-size: 5vw;
  }

  .vote .day {
    font-size: 4vw;
    line-height: 1.5;
  }

  .vote .day span {
    font-size: 12px;
  }
}

/* ここから 新規追加 オフィシャルグッズ */

.official-goods {
  margin: 135px auto 0;
}

.official-goods .inner {
  border-radius: 35px;
  padding: 20px 30px 20px 30px;
  max-width: 718px;
  width: 100%;
  margin: 0 auto 0;
  border: 1px solid #FFFBF2;
  box-sizing: border-box;
}

.official-goods .tit-box {
  width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #FFFBF2;
  text-align: center;
  padding: 10px 0;
}

.official-goods .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.official-goods .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.official-goods .txt {
  font-size: 15px;
  color: #FFFBF2;
  text-align: center;
  margin-top: 20px;
}

.official-goods .tit-box2 {
  max-width: 400px;
  margin: 30px auto 20px;
  position: relative;
}

.official-goods .tit-box2 {
  opacity: 0.5;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  display: block;
  text-align: center;
  padding: 10px;
}

.official-goods .tit-box2 h2 {
  font-size: 22px;
  font-weight: 700;
}

.official-goods .tit-box2 .arrow-right {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  top: 25px;
  right: 30px;
}

@media only screen and (max-width: 750px) {
  .official-goods {
    margin: 65px auto 0;
  }

  .official-goods .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .official-goods .tit-box2 {
    width: 100%;
  }

  .official-goods .tit-box2 a {
    padding: 15px;
  }

  .official-goods .tit-box2 a h2 {
    font-size: 17px;
  }

  .official-goods .txt {
    font-size: 12px;
  }

  .official-goods .tit-box2 .arrow-right {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 26px;
    right: 19px;
  }
}

/* ここまで 新規追加 */

/* LIVE STREAMING */
.live-streaming {
  margin: 135px auto 0;
}

.live-streaming .inner {
  border-radius: 35px;
  padding: 20px 30px 20px 30px;
  max-width: 718px;
  width: 100%;
  margin: 24px auto 0;
  border: 1px solid #FFFBF2;
  box-sizing: border-box;
}

.live-streaming .tit-box {
  width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #FFFBF2;
  text-align: center;
  padding: 10px 0;
}

.live-streaming .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.live-streaming .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.live-streaming .txt {
  font-size: 15px;
  color: #FFFBF2;
  text-align: center;
  margin-top: 20px;
}

.live-streaming .info-area {
  margin-top: 10px;
}

.live-streaming .info-area .txt {
  margin-top: 5px;
}

.live-streaming .tit-box2 {
  max-width: 400px;
  margin: 30px auto 20px;
  position: relative;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  display: block;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.live-streaming .tit-box2 h2 {
  font-size: 22px;
  font-weight: 700;
}

.live-streaming .tit-box2 .arrow-right {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  top: 25px;
  right: 30px;
}

.live-streaming .tit-box2.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

@media only screen and (max-width: 800px) {
  .live-streaming .br-pc {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .live-streaming {
    margin: 65px auto 0;
  }

  .live-streaming .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .live-streaming .tit-box2 {
    width: 100%;
  }

  .live-streaming .tit-box2 a {
    padding: 15px;
  }

  .live-streaming .tit-box2 a h2 {
    font-size: 17px;
  }

  .live-streaming .txt {
    font-size: 12px;
  }

  .live-streaming .tit-box2 .arrow-right {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 26px;
    right: 19px;
  }
}

.lineup {
  margin: 135px auto 0;
}

.lineup .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.lineup .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.lineup .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.lineup .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.lineup .inner {
  background: #FFFBF2;
  border-radius: 35px;
  padding: 15px 15px 30px 15px;
  max-width: 718px;
  width: 100%;
  margin: 35px auto 0;
}

.lineup .act-box {
  background: #000;
  border-radius: 22px;
  margin-top: 50px;
}

.lineup .act-box.mt {
  margin-top: 0;
}

.lineup .act-box.mt20 {
  margin-top: 10px;
}

.lineup .act-box.mt30 {
  margin-top: 30px;
}

.lineup .act-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FFFBF2;
  text-align: center;
  position: relative;
}

.lineup .act-box .note {
  font-size: 12px;
  font-weight: 400;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* ここから 新規追加 */
.coming-soon-pattern1 {
  padding: 20px;
}

/* レスポンシブ対応 */
@media only screen and (max-width: 750px) {
  .coming-soon-pattern1 {
    padding: 20px 15px;
  }
}

/* ここまで 新規追加 */

.lineup .act-box ul {
  display: flex;
  flex-wrap: wrap;
}

/*
.lineup .act-box li{width: 24.375%; margin-right: 0.5%;}
.lineup .act-box li:first-child{margin-left: 0.5%;}
.lineup .act-box li:nth-child(5){margin-left: 0.5%;}
*/

.lineup .act-box.clm2 li {
  width: 49.75%;
  margin-right: 0.5%;
}

.lineup .act-box.clm2 li:nth-of-type(3n) {
  margin-right: 0.5%;
}

.lineup .act-box.clm2 li:nth-child(even) {
  margin-right: 0;
}

.lineup .act-box li {
  width: 33%;
  margin-right: 0.5%;
}

.lineup .act-box li:nth-of-type(3n) {
  margin-right: 0%;
}

.lineup .act-box ul.sl li {
  width: 100%;
  margin: 0 auto;
}

.lineup .act-box li .pict {
  position: relative;
}

.lineup .act-box li .pict span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  text-align: right;
  display: block;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 300;
  font-size: 8px;
  color: #000;
}

.lineup .act-box li h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #FFFBF2;
  line-height: 1;
  padding: 10px 5px;
}

.lineup .act-box li h4.en {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 400;
  font-size: 21px;
}

.lineup .act-box li h4 span {
  font-size: 10px;
  margin-top: 5px;
  font-weight: 300;
  display: block;
}

.lineup .act-box li h4 .font-fallback {
  font-family: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN",
               YuGothic, "游ゴシック", Meiryo, "メイリオ", sans-serif;
  display: inline;
  font-weight: bold;
  font-size: 17px;
}

.lineup .mc-box {
  margin-top: 50px;
}

.lineup .mc-box h3 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #000;
  text-align: center;
}

.lineup .mc-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.lineup .mc-box .note {
  font-size: 12px;
  font-weight: 400;
  margin-top: -10px;
  margin-bottom: 10px;
}

/*
.lineup .mc-box li{width:184px; margin: 0 auto; border: 2px solid #000;}
*/

.lineup .mc-box li {
  width: 33.333%;
  border: 2px solid #000;
}

.lineup .mc-box.op li {
  width: 33.333%;
  border: 2px solid #000;
}

.pict-bg-black {
  background: #000;
}

.bg-black {
  background: #000;
}

.lineup .mc-box li h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #FFFBF2;
  line-height: 1;
  padding: 5px;
  background: #000;
}

.lineup .mc-box li h4.en {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 400;
  font-size: 21px;
}

.lineup .more {
  width: 180px;
  margin: 50px auto 0;
  text-align: center;
  padding: 5px 10px;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 33px;
  font-weight: 800;
  border-radius: 50px;
  background: #000;
  color: #FFFBF2;
}

.lineup .morenote {
  font-size: 12px;
  text-align: center;
  margin-top: 30px;
}

.lineup .sub-tit {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-top: 50px;
}

@media only screen and (max-width: 750px) {
  .lineup {
    border-radius: 22px;
    padding: 0;
    max-width: 718px;
    width: 100%;
    margin: 65px auto 0;
  }

  .lineup .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .lineup .act-box {
    padding: 0;
    margin-top: 10px;
  }

  .lineup .act-box h2 {
    font-size: 5.4vw;
    padding: 10px 0 10px 0;
  }

  .lineup .act-box h2 .note {
    font-size: 9px;
    bottom: 5px;
    top: auto;
    margin: auto;
    right: 0;
    left: 0;
    font-weight: 400;
  }

  /*
.lineup .act-box li{width: 46%; margin-right:0; margin: 0 2% 20px 2%;}
.lineup .act-box li:first-child{margin-left:0; margin: 0 2% 20px 2%;}
.lineup .act-box li:nth-child(5){margin: 0 2% 20px 2%;}
*/

  .lineup .act-box li {
    width: 49.75%;
    margin-right: 0.5%;
    margin-bottom: 10px;
  }

  .lineup .act-box li:nth-of-type(3n) {
    margin-right: auto;
  }

  .lineup .act-box li:nth-child(even) {
    margin-right: 0;
  }

  .lineup .act-box ul.sl li {
    width: 100%;
  }

  .lineup .act-box li h4 {
    font-size: 3.7vw;
    padding: 5px;
  }

  .lineup .act-box li h4.en {
    font-size: 3.9vw;
  }

  .lineup .act-box li h4 span {
    font-size: 2vw;
  }

  .lineup .act-box ul.sl li h4 {
    padding: 10px 5px 10px 5px;
  }

  .lineup .mc-box {
    margin-top: 20px;
  }

  .lineup .mc-box li {
    width: 50%;
  }

  .lineup .mc-box.op li {
    width: 50%;
  }

  .lineup .mc-box li h4 {
    font-size: 3.7vw;
  }

  .lineup .mc-box li h4.en {
    font-size: 3.9vw;
  }

  .lineup .more {
    margin: 30px auto 0;
  }

  .lineup .mc-box h3 {
    font-size: 5.4vw;
  }

  .lineup .mc-box .note {
    font-size: 9px;
    bottom: 5px;
    top: auto;
    margin: auto;
    right: 0;
    left: 0;
    font-weight: 400;
  }

  .lineup .sub-tit {
    font-size: 5.4vw;
    margin-top: 30px;
  }
}

.social {
  width: 90%;
  margin: 135px auto 0;
}

.social ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social li {
  margin-right: 32px;
  display: flex;
  align-items: center;
}

.social li:last-child {
  margin-right: 0;
}

.social li .icon {
  width: 30px;
  margin-right: 13px;
}

.social li .links {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.social li .links a {
  color: #ff9cff;
}

.social li:first-child .icon {
  width: 34px;
}

.social li:last-child .icon {
  width: 26px;
}

@media only screen and (max-width: 750px) {
  .social {
    width: 100%;
    margin: 65px auto 0;
  }

  .social li {
    margin-right: 10px;
    align-items: flex-start;
  }

  .social li .icon {
    width: 17px;
    margin-right: 5px;
  }

  .social li .links {
    font-size: 3.2vw;
    letter-spacing: 0em;
  }

  .social li .links a {
    color: #ff9cff;
  }

  .social li:first-child .icon {
    width: 19px;
  }

  .social li:last-child .icon {
    width: 15px;
  }
}

.timetable {
  margin: 135px auto 0;
}

.timetable .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.timetable .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.timetable .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.timetable .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.timetable .tt-box {
  background: #ff9cff;
  border-radius: 35px;
  padding: 60px 15px 60px 15px;
  max-width: 718px;
  width: 90%;
  margin: 35px auto 0;
}

.coming {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-top: 50px;
}

@media only screen and (max-width: 750px) {
  .timetable {
    margin: 65px auto 0;
  }

  .timetable .tit-box {
    width: 80%;
    padding: 15px 0;
  }

  .timetable .tit-box h2 {
    font-size: 24px;
  }

  .timetable .tt-box {
    border-radius: 22px;
    padding: 40px 15px 40px 15px;
    width: 100%;
    margin: 25px auto 0;
  }

  .coming {
    font-size: 7vw;
    margin-top: 30px;
  }
}

.ticket {
  margin-top: 135px;
}

.ticket .tit-box {
  width: 500px;
  margin: 0 auto;
  position: relative;
}

.ticket .tit-box div {
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  display: block;
  text-align: center;
  padding: 10px;
}

.ticket .tit-box div h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.ticket .ticket-box {
  background: #FFFBF2;
  border-radius: 35px;
  padding: 60px 15px 60px 15px;
  max-width: 718px;
  width: 90%;
  margin: 35px auto 0;
}

.ticket .ticket-box .place {
  width: 90%;
  margin: 0 auto;
}

.ticket .ticket-box dl {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  align-items: center;
  margin: 30px auto 0;
}

.ticket .ticket-box dt {
  width: 35%;
  color: #f156a2;
  font-size: 24px;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.ticket .ticket-box dt span {
  font-size: 18px;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0;
}

.ticket .ticket-box dt.stnd {
  color: #00a1eb;
}

.ticket .ticket-box dd {
  width: 65%;
  background: #000;
  padding: 0;
  text-align: center;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}

.ticket .ticket-box dd .jp {
  font-size: 11px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
}

.ticket .ticket-box dd .yen {
  font-size: 24px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 400;
}

.ticket .ticket-box dd.co01 {
  color: #ff9cff;
}

.ticket .ticket-box dd.co02 {
  color: #f156a2;
}

.ticket .ticket-box dd.co03 {
  color: #00a1eb;
}

.ticket .ticket-box dd .sold_sen {
  height: 1px;
  width: 90%;
  border-bottom: 2px solid #f156a2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ticket .tit-box2 {
  width: 500px;
  margin: 40px auto 60px;
}

.ticket .tit-box2 a {
  background: #000;
  border-radius: 100px;
  color: #f156a2;
  display: block;
  text-align: center;
  padding: 10px;
  box-shadow: 0 5px 0 #f156a2;
  transition: 0.3s;
}

.ticket .tit-box2 a h2 {
  font-size: 25px;
  font-weight: 700;
}

.ticket .tit-box2 a .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
  color: #FFFBF2;
}

.ticket .tit-box2 a .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
  color: #FFFBF2;
}

.ticket .tit-box2 a:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #fff;
}

.ticket .note-box {
  font-size: 15px;
  text-align: center;
  color: #000;
  margin-top: 40px;
}

.ticket .note-box ul {
  text-align: left;
  font-size: 12px;
}

.ticket .note-box li {
  padding-left: 1em;
  text-indent: -1em;
}

.ticket .tit-box .arrow-right {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  top: 26px;
  right: 50px;
}

.ticket .upgrade-box {
  font-size: 14px;
  margin-top: 30px;
}

.ticket .upgrade-box h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
}

.ticket .price-list {
  margin-top: 30px;
  text-align: center;
  gap: 8px;
}

.ticket .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket .price-item-title {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.ticket .price-item-price {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 53px;
  font-weight: 700;
}

.ticket .price-item-price-unit {
  font-size: 25px;
}

.ticket .price-item-date {
  font-size: 18px;
  font-weight: 700;
  margin-right: 18px;
}

@media only screen and (max-width: 960px) {
  .ticket .price-item {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .ticket .price-item-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
  }
}

@media only screen and (max-width: 750px) {
  .ticket {
    margin-top: 65px;
  }

  .ticket .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .ticket .tit-box div {
    padding: 15px;
  }

  .ticket .tit-box div h2 {
    font-size: 35px;
  }

  .ticket .ticket-box {
    border-radius: 22px;
    padding: 40px 15px 40px 15px;
    width: 100%;
    margin: 25px auto 0;
  }

  .ticket .ticket-box dl {
    width: 100%;
    margin: 10px auto 0;
  }

  .ticket .ticket-box dt {
    width: 100%;
    font-size: 4.5vw;
  }

  .ticket .ticket-box dt span {
    font-size: 3vw;
  }

  .ticket .ticket-box dd {
    width: 100%;
    font-size: 5.5vw;
    line-height: 1;
    letter-spacing: 0;
  }

  .ticket .ticket-box dd .jp {
    font-size: 3vw;
    font-family: "fot-tsukubrdgothic-std", sans-serif;
    font-weight: 700;
  }

  .ticket .ticket-box dd .yen {
    font-size: 4.5vw;
    font-family: "fot-tsukubrdgothic-std", sans-serif;
    font-weight: 400;
  }

  .ticket .tit-box2 {
    width: 100%;
    margin: 30px auto 50px;
  }

  .ticket .tit-box2 a h2 {
    font-size: 5vw;
  }

  .ticket .note-box {
    font-size: 14px;
    margin-top: 30px;
  }

  .ticket .tit-box .arrow-right {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 32px;
    right: 30px;
  }

  .ticket .upgrade-box {
    font-size: 11px;
    margin-top: 30px;
  }

  .ticket .upgrade-box h4 {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    margin-top: 0;
  }

  .ticket .price-item-date {
    font-size: 11px;
    font-weight: 700;
    margin-right: 18px;
  }
}

.ticket h3 {
  width: 500px;
  margin: 50px auto 0;
  background: #000;
  color: #FFFBF2;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  border-radius: 35px;
  line-height: 1;
  letter-spacing: -0.05em;
  padding: 7px;
}

.ticket h3.mt {
  margin: 30px auto 0;
}

.ticket h3.bl {
  background: #00a1eb;
}

.ticket .price-box {
  margin: 0 auto;
  color: #000;
  text-align: center;
}

/* 終了済み表示 */
.ticket .price-box .ended-header {
  opacity: 0.5;
}

.ticket .price-box .ended-text {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.ticket .day {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 33px;
  font-weight: 500;
}

.ticket .day2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 33px;
  font-weight: 500;
}

.ticket .day .jp,
.ticket .day2 .jp {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-size: 25px;
}

.ticket .day .big,
.ticket .day2 .big {
  font-size: 53px;
}

.ticket .day .min,
.ticket .day2 .min {
  font-size: 18px;
}

@media only screen and (max-width: 750px) {
  .ticket h3 {
    width: 90%;
    margin: 30px auto 0;
    font-size: 5vw;
  }

  .ticket .day {
    font-size: 6.5vw;
    font-weight: 500;
    line-height: 1;
    margin-top: 10px;
  }

  .ticket .day2 {
    font-size: 6.5vw;
    font-weight: 500;
    margin-left: 20%;
  }

  .ticket .day .jp,
  .ticket .day2 .jp {
    font-size: 5.5vw;
  }

  .ticket .day .big,
  .ticket .day2 .big {
    font-size: 9.5vw;
  }

  .ticket .day .min,
  .ticket .day2 .min {
    font-size: 4.5vw;
  }
}

@media only screen and (max-width: 420px) {
  .ticket .day2 {
    margin-left: 34%;
  }
}

.contents {
  margin-top: 135px;
}

.contents .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.contents .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.contents .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.contents .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.contents .tt-box {
  background: #000;
  border-radius: 35px;
  padding: 30px 15px 60px 15px;
  max-width: 718px;
  width: 100%;
  margin: 0 auto 0;
  color: #FFFBF2;
  text-align: center;
}

.contents .tt-box .sub-tit {
  font-size: 24px;
  margin-top: 25px;
}

.contents .tt-box li {
  font-size: 20px;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1;
  margin-top: 15px;
}

.contents .tt-box .note {
  font-size: 12px;
  margin-top: 30px;
}

.contents .inner {
  background: #FFFBF2;
  border-radius: 35px;
  padding: 15px 15px 15px 15px;
  max-width: 718px;
  width: 90%;
  margin: 35px auto 0;
}

.contents .act-box {
  background: #000;
  border-radius: 22px;
  margin-top: 50px;
}

.contents .act-box.mt {
  margin-top: 0;
}

.contents .act-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FFFBF2;
  text-align: center;
  position: relative;
}

.contents .act-box .note {
  font-size: 12px;
  font-weight: 400;
  margin-top: -10px;
  margin-bottom: 10px;
}

.contents .act-box ul {
  display: flex;
  flex-wrap: wrap;
}

/*
.lineup .act-box li{width: 24.375%; margin-right: 0.5%;}
.lineup .act-box li:first-child{margin-left: 0.5%;}
.lineup .act-box li:nth-child(5){margin-left: 0.5%;}
*/

.contents .act-box li {
  width: 32.6666%;
  margin-right: 0.5%;
}

.contents .act-box li:first-child {
  margin-left: 0.5%;
}

.contents .act-box li:nth-child(4) {
  margin-left: 0.5%;
}

.contents .act-box ul.sl li {
  width: 100%;
  margin: 0 auto;
}

.contents .act-box li h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #FFFBF2;
  line-height: 1;
  padding: 10px 5px;
}

.contents .act-box li h4.en {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 400;
  font-size: 21px;
}

.contents .act-box li h4 span {
  font-size: 12px;
}

.contents .more {
  width: 180px;
  margin: 50px auto 0;
  text-align: center;
  padding: 5px 10px;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 33px;
  font-weight: 800;
  border-radius: 50px;
  background: #000;
  color: #FFFBF2;
}

@media only screen and (max-width: 750px) {
  .contents {
    margin-top: 65px;
  }

  .contents .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .contents .inner {
    border-radius: 22px;
    padding: 10px 10px 10px 10px;
    max-width: 718px;
    width: 100%;
    margin: 30px auto 0;
  }

  .contents .act-box {
    padding: 0 2%;
    margin-top: 10px;
  }

  .contents .act-box h2 {
    font-size: 5.4vw;
    padding: 10px 0 10px 0;
  }

  .contents .act-box h2 .note {
    font-size: 9px;
    bottom: 5px;
    top: auto;
    margin: auto;
    right: 0;
    left: 0;
    font-weight: 400;
  }

  .contents .act-box li {
    width: 46%;
    margin-right: 0;
    margin: 0 2% 10px 2%;
  }

  .contents .act-box li:first-child {
    margin-left: 0;
    margin: 0 2% 10px 2%;
  }

  .contents .act-box li:nth-child(4) {
    margin: 0 2% 10px 2%;
  }

  .contents .act-box ul.sl li {
    width: 100%;
    margin: 0 2%;
  }

  .contents .act-box li h4 {
    font-size: 3.7vw;
    padding: 5px;
  }

  .contents .act-box li h4.en {
    font-size: 3.9vw;
  }

  .contents .act-box li h4 span {
    font-size: 1.7vw;
  }

  .contents .act-box ul.sl li h4 {
    padding: 10px 5px 10px 5px;
  }

  .contents .more {
    margin: 30px auto 0;
  }

  .contents .tt-box {
    border-radius: 22px;
    padding: 15px 15px 35px 15px;
    margin: 0 auto 0;
  }

  .contents .tt-box .sub-tit {
    font-size: 4.5vw;
  }

  .contents .tt-box li {
    font-size: 3.5vw;
    font-family: "ropa-mix-pro", sans-serif;
    line-height: 1.5;
    margin-top: 10px;
  }

  .contents .tt-box .note {
    font-size: 10px;
    margin-top: 20px;
  }
}

.access {
  margin: 135px auto 0;
}

.access .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.access .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.access .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.access .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.access .access-box {
  background: #FFFBF2;
  border-radius: 35px;
  padding: 60px 15px 60px 15px;
  max-width: 718px;
  width: 90%;
  margin: 35px auto 0;
}

.access .access-box .map {
  width: 100%;
}

.access .access-box .txt-box {
  display: flex;
  width: 90%;
  margin: 0 auto;
}

.access .access-box .txt-box .left {
  width: 35%;
}

.access .access-box .txt-box .right {
  width: 65%;
}

.access .access-box .txt-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.access .access-box .txt-box p {
  font-size: 12px;
  color: #000;
}

@media only screen and (max-width: 750px) {
  .access {
    margin: 65px auto 0;
  }

  .access .tit-box {
    width: 100%;
    padding: 10px 0;
  }

  .access .access-box {
    border-radius: 22px;
    padding: 40px 15px 40px 15px;
    width: 100%;
    margin: 25px auto 0;
  }

  .access .access-box .map iframe {
    height: 300px;
  }

  .access .access-box .txt-box {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .access .access-box .txt-box .left {
    width: 100%;
  }

  .access .access-box .txt-box .right {
    width: 100%;
  }

  .access .access-box .txt-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
  }

  .access .access-box .txt-box h3.mt {
    margin-top: 10px;
  }

  .access .access-box .txt-box p {
    font-size: 12px;
    color: #000;
  }
}

.info {
  margin: 135px auto 0;
}

.info .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.info .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.info .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.info .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.info .info-box {
  background: #FFFBF2;
  border-radius: 35px;
  padding: 40px 20px 60px 20px;
  max-width: 718px;
  width: 100%;
  margin: 35px auto 0;
  color: #000;
}

.info .info-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
}


.info .info-box ul {
  text-align: left;
  font-size: 12px;
}

.info .info-box ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.info .info-box p {
  font-size: 12px;
  padding-left: 1em;
  font-weight: 700;
}

.info .info-box p a {
  text-decoration: underline;
  color: #000;
}

@media only screen and (max-width: 750px) {
  .info {
    margin: 65px auto 0;
  }

  .info .tit-box {
    width: 100%;
    padding: 10px 0;
  }

  .info .info-box h3 {
    font-size: 14px;
  }
}

.contact {
  margin-top: 135px;
}

.contact .tit-box {
  width: 500px;
  margin: 0 auto;
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}

.contact .tit-box h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.contact .tit-box .name {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0;
  padding-bottom: 5px;
}

.contact .tit-box .name span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.contact .copy {
  font-size: 18px;
  text-align: center;
  margin-top: 25px;
  color: #FFFBF2;
}

.contact .copy span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
}

.contact .copy a {
  color: #FFFBF2;
}

.contact ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.contact li {
  margin-right: 100px;
}

.contact li .icon {
  width: 30px;
  margin-right: 10px;
}

.contact li:first-child .icon {
  width: 34px;
}

.contact li:last-child {
  margin-right: 0;
}

.contact li:last-child .icon {
  width: 26px;
}

@media only screen and (max-width: 750px) {
  .contact {
    margin-top: 65px;
  }

  .contact .tit-box {
    width: 100%;
    padding: 10px 0;
  }

  .contact .copy {
    font-size: 12px;
    margin-top: 25px;
  }

  .contact ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }

  .contact li {
    margin-right: 30px;
  }

  .contact li .icon {
    width: 32px;
  }

  .contact li:first-child .icon {
    width: 35px;
  }

  .contact li:last-child .icon {
    width: 30px;
  }
}

.partner {
  background: #fff;
}

.partner .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px 80px 20px;
}

.partner h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-top: 50px;
}

.partner h2.brand-title {
  margin-top: 80px;
}

.partner ul {
  margin-top: 40px;
  text-align: center;
}

.partner li {
  margin: 0 20px 50px 20px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.partner li.ml {
  margin-left: 60px;
}

.partner li.lo {
  margin-bottom: 20px;
}

.partner li.pc-partner {
  margin: 0 20px 0px 20px;
}

.partner li.w5 {
  width: 7%;
}

.partner li.w10 {
  width: 10%;
}

.partner li.w15 {
  width: 15%;
}

.partner li.w20 {
  width: 20%;
}

.partner li.w25 {
  width: 25%;
}

.partner li.w30 {
  width: 30%;
}

.partner li.w35 {
  width: 35%;
}

.partner li.w40 {
  width: 40%;
}

.partner li.w45 {
  width: 45%;
}

.partner li.w50 {
  width: 50%;
}

.partner li.w55 {
  width: 55%;
}

.partner li.w35-sp50 {
  width: 35%;
}

/* 920px以上: pc-partner表示 / sp-partner非表示 */
.partner li.sp-partner,
.partner br.sp-partner {
  display: none;
}

@media only screen and (max-width: 920px) {
  .partner li.pc-partner {
    display: none;
  }

  .partner li.sp-partner,
  .partner br.sp-partner {
    display: inline-block;
  }

  .partner li.sp-partner {
    margin: 0 20px 0px 20px;
  }

  .partner li.w35-sp50 {
    width: 50%;
  }
}

@media only screen and (max-width: 750px) {
  .partner ul {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .partner li {
    margin: 0 15px 40px 15px;
  }

  .partner li.ml {
    margin-left: 30px;
  }

  .partner li.w5 {
    width: 10%;
  }

  .partner li.w10 {
    width: 20%;
  }

  .partner li.w15 {
    width: 25%;
  }

  .partner li.w20 {
    width: 30%;
  }

  .partner li.w25 {
    width: 35%;
  }

  .partner li.w30 {
    width: 55%;
  }

  .partner li.w35 {
    width: 60%;
  }

  .partner li.w40 {
    width: 50%;
  }

  .partner li.w45 {
    width: 55%;
  }

  .partner li.w50 {
    width: 60%;
  }

  .partner li.w55 {
    width: 65%;
  }
}

.archive {
  margin-top: 135px;
}

.archive .tit-box {
  width: 500px;
  margin: 0 auto;
  position: relative;
}

/* aタグ */
.archive .tit-box a {
  background: #FFFBF2;
  border-radius: 100px;
  color: #000;
  display: block;
  text-align: center;
  padding: 10px;
}

.archive .tit-box a h2 {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.archive .tit-box .arrow-right {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  top: 26px;
  right: 50px;
}

@media only screen and (max-width: 750px) {
  .archive {
    margin-top: 65px;
  }

  .archive .tit-box {
    width: 100%;
    margin: 0 auto;
  }

  .archive .tit-box a {
    padding: 15px;
  }

  .archive .tit-box a h2 {
    font-size: 35px;
  }

  .archive .tit-box .arrow-right {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 32px;
    right: 30px;
  }
}

footer {
  background: #FFFBF2;
  padding: 40px 10px;
}

footer .copy {
  font-size: 14px;
  text-align: center;
  color: #000;
}

footer .copy span {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

@media only screen and (max-width: 750px) {
  footer {
    padding: 20px 10px;
  }

  footer .copy {
    font-size: 10px;
    text-align: center;
    color: #000;
  }
}

/* IRC APP */
.irc-app-floating {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}


.irc-app-floating a {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150px;
  background: #FFFBF2;
  border: 5px solid #6194F4;
  transition: 0.3s;
  animation: pulsation 0.7s alternate infinite;
  opacity: 1;
}

.irc-app-floating .box {
  font-size: 16px;
  text-align: center;
  color: #6194F4;
  line-height: 1;
}

.floating {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.floating a {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150px;
  background: #FFFBF2;
  border: 5px solid #e63e90;
  transition: 0.3s;
  animation: pulsation 0.7s alternate infinite;
  opacity: 1;
}

.floating .box {
  font-size: 16px;
  text-align: center;
  color: #e63e90;
  line-height: 1;
}


@media only screen and (max-width: 750px) {

  .irc-app-floating {
    right: 5px;
    bottom: 60px;
  }

  .irc-app-floating a {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 3px solid #6194F4;
    background: #FFFBF2;
  }

  .irc-app-floating .box {
    font-size: 10px;
    color: #6194F4;
  }

  .floating {
    right: 5px;
    bottom: 60px;
  }

  .floating a {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 3px solid #e63e90;
    background: #FFFBF2;
  }

  .floating .box {
    font-size: 10px;
    color: #e63e90;
  }
}

.active {
  opacity: 1;
  visibility: visible;
}

@keyframes pulsation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1.1);
  }
}

.hamburger {
  margin: 0 auto 0;
  width: 100%;
  padding: 0 50px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger .logo {
  max-width: 236px;
  margin-right: 100px;
}

@media only screen and (max-width: 1440px) {
  .hamburger .logo {
    max-width: calc(236 / 1440 * 100vw);
    margin-right: calc(100 / 1440 * 100vw);
  }
}

.hamburger .btn-gNav {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #FFFBF2;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

.gNav {
  height: auto;
}

.gNav .gNav-menu {
  display: flex;
  justify-content: space-between;
}

.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 20px;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 18px;
}

.gNav .gNav-menu li a {
  color: #FFFBF2;
  display: block;
  line-height: 1;
}

@media screen and (max-width: 1440px) {
  .gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 calc(20 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
  }
}

@media screen and (max-width: 750px) {
  .hamburger {
    padding: 0 0px 0 0;
  }

  .hamburger .logo {
    margin: 0 auto;
    max-width: 196px;
    padding-top: 0;
  }

  .btn-gNav {
    display: block;
  }

  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 50px;
    transition: 0.3s;
  }

  .gNav.open {
    right: 0;
  }

  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }

  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    font-size: 18px;
  }
}

.link-black {
  color: #000;
}

.underline {
  text-decoration: underline;
}

.irc-app-link {
  font-size: 15px;
}

.ticket-link {
  font-size: 15px;
  color: black
}

.ticket-link-box:hover {
  opacity: 0.8;
}
