@charset "UTF-8";
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes logo_pc {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 30%);
    transform: translate(-50%, 30%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 20%);
    transform: translate(-50%, 20%);
    @media screen and (max-width: 767px) {
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
  }
}

@keyframes logo_pc {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 30%);
    transform: translate(-50%, 30%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 20%);
    transform: translate(-50%, 20%);
    @media screen and (max-width: 767px) {
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
  }
}

@-webkit-keyframes logo_sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -42%);
    transform: translate(-50%, -42%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes logo_sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -42%);
    transform: translate(-50%, -42%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes nav {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes nav {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/***********************/
body {
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  background: url(/assets/img/bg.jpg) top left;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-size: 20%;
    font-size: 13px;
  }
}

.wrapper {
  opacity: 0;
  overflow: hidden;
  -webkit-animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
  animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
}

.wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url(/assets/img/line.jpg) repeat-x;
  background-size: contain;
  height: 20px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .wrapper::before {
    display: none;
  }
}

nav {
  opacity: 0;
  position: fixed;
  width: 100%;
  background: #ed1c24;
  z-index: 100;
  -webkit-animation: nav 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s forwards;
  animation: nav 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s forwards;
}

nav .menu {
  position: relative;
  font-family: "Righteous", cursive;
  font-size: 0;
  letter-spacing: -0.04em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  nav .menu {
    padding: 6px 0;
  }
}

nav .menu li {
  letter-spacing: 0.05em;
  font-size: 22px;
  display: inline-block;
  margin: 0 8px;
  padding: 18px 0 20px;
}

@media screen and (max-width: 767px) {
  nav .menu li {
    font-size: 14px;
    padding: 2px 0;
    margin: 0 5px;
    letter-spacing: 0.05em;
  }
}

nav .menu li:hover a {
  color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

nav .menu a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

nav::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  bottom: -10px;
}

@media screen and (max-width: 767px) {
  nav::after {
    height: 6px;
    bottom: -6px;
  }
}

.main {
  position: relative;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 50px;
  }
}

.main::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  bottom: -10px;
}

@media screen and (max-width: 767px) {
  .main::after {
    height: 6px;
    bottom: -6px;
  }
}

.main_kv {
  width: 100%;
}

.main_ttl {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 20%);
  transform: translate(-50%, 20%);
  -webkit-animation: logo_pc 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
  animation: logo_pc 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
}

@media screen and (max-width: 767px) {
  .main_ttl {
    -webkit-animation: logo_sp 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
    animation: logo_sp 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
    width: 85%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.about {
  position: relative;
  padding: 80px 0 160px;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0 120px;
  }
}

.about h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 6px;
  left: 0.2em;
}

@media screen and (max-width: 767px) {
  .about h2 {
    font-size: 35px;
    top: 4px;
    left: 0.1em;
  }
}

.about .event_cap {
  color: #ed1c24;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .about .event_cap {
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: normal;
  }
}

.about .att {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .about .att {
    font-size: 10px;
    line-height: 1.5em;
  }
}

.about dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .about dl {
    display: block;
    width: 83%;
    margin-top: 20px;
  }
}

.about dl dt p {
  position: relative;
  color: #fff;
  background: #ed1c24;
  font-size: 18px;
  letter-spacing: normal;
  width: 190px;
  padding: 5px 0 7px 8px;
}

@media screen and (max-width: 767px) {
  .about dl dt p {
    font-size: 14px;
    width: 50%;
    padding: 4px 0 5px 5px;
  }
}

.about dl dt p::after {
  position: absolute;
  top: 0;
  right: -50px;
  width: 50px;
  height: 100%;
  content: "";
  background: url(/assets/img/txt_deco.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .about dl dt p::after {
    right: -29px;
    width: 30px;
  }
}

.about dl dt p.s {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about dl dt p.s {
    font-size: 13px;
  }
}

.about dl dd {
  width: 700px;
  margin-left: 100px;
}

@media screen and (max-width: 767px) {
  .about dl dd {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.about dl dd a {
  color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.about dl dd a:hover {
  color: #ed1c24;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.about .chara_01 {
  position: absolute;
  bottom: 0;
  left: 10px;
}

@media screen and (max-width: 767px) {
  .about .chara_01 {
    width: 20%;
  }
}

.about .chara_02 {
  position: absolute;
  bottom: 0;
  right: 5px;
}

@media screen and (max-width: 767px) {
  .about .chara_02 {
    width: 20%;
  }
}

.special {
  position: relative;
  padding: 100px 0 160px;
}

@media screen and (max-width: 767px) {
  .special {
    padding: 50px 0 70px;
  }
}

.special::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 180%;
  top: 0px;
}

@media screen and (max-width: 767px) {
  .special::after {
    height: 5px;
  }
}

.special h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 6px;
  left: 0.2em;
}

@media screen and (max-width: 767px) {
  .special h2 {
    font-size: 35px;
    top: 4px;
    left: 0.1em;
  }
}

.special_cap {
  color: #ed1c24;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .special_cap {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.special_shikishi {
  width: 50%;
  margin: 0 auto;
  background: #ed1c24;
}

.special_shikishi img {
  border: #ed1c24 2px solid;
}

@media screen and (max-width: 767px) {
  .special_shikishi {
    width: 80%;
  }
}

.ticket {
  position: relative;
  padding: 100px 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .ticket {
    padding: 50px 0;
  }
}

.ticket::after {
  content: "";
  position: absolute;
  background: url(/assets/img/bg_pat.png) top left;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.ticket::before {
  content: "";
  position: absolute;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.ticket h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 0;
  right: 0.2em;
}

@media screen and (max-width: 767px) {
  .ticket h2 {
    font-size: 35px;
    right: 0.1em;
  }
}

.ticket_wrap {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .ticket_wrap {
    width: 83%;
  }
}

.ticket_ttl_01 {
  position: relative;
  color: #ed1c24;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}

.ticket_ttl_01::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_w.png) repeat-x;
  background-size: contain;
  height: 4px;
  width: 22em;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .ticket_ttl_01::after {
    height: 3px;
    bottom: -6px;
    width: 98%;
  }
}

@media screen and (max-width: 767px) {
  .ticket_ttl_01 {
    font-size: 17px;
    line-height: 1.5em;
  }
}

.ticket_ttl_02 {
  position: relative;
  color: #ed1c24;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}

.ticket_ttl_02::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_w.png) repeat-x;
  background-size: contain;
  height: 4px;
  width: 4.2em;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .ticket_ttl_02::after {
    height: 3px;
    bottom: -6px;
    width: 98%;
  }
}

@media screen and (max-width: 767px) {
  .ticket_ttl_02 {
    font-size: 17px;
    line-height: 1.5em;
  }
}

.ticket_ttl_02.streaming {
  margin-bottom: 40px;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .ticket_ttl_02.streaming {
    margin-bottom: 20px;
    padding-top: 50px;
  }
}

.ticket_lead {
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .ticket_lead {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.ticket_lead.c {
  text-align: center;
}

.ticket_box {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .ticket_box {
    margin-bottom: 50px;
  }
}

.ticket_cap {
  color: #ed1c24;
  font-size: 18px;
  font-weight: 500;
  background: #000;
  border: 1px #aaa solid;
  padding: 18px;
}

@media screen and (max-width: 767px) {
  .ticket_cap {
    font-size: 15px;
    line-height: 1.5em;
    padding: 12px;
  }
}

.ticket_description {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .ticket_description {
    margin-bottom: 20px;
  }
}

.ticket_description dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000;
  border-bottom: 1px #aaa solid;
}

@media screen and (max-width: 767px) {
  .ticket_description dl {
    display: block;
  }
}

.ticket_description dl dt {
  padding: 18px;
  width: 25%;
  border-left: 1px #aaa solid;
  border-right: 1px #aaa solid;
}

@media screen and (max-width: 767px) {
  .ticket_description dl dt {
    width: 100%;
    border-bottom: 1px #aaa solid;
    padding: 12px;
  }
}

.ticket_description dl dd {
  padding: 15px;
  width: 75%;
  border-right: 1px #aaa solid;
}

@media screen and (max-width: 767px) {
  .ticket_description dl dd {
    width: 100%;
    border-left: 1px #aaa solid;
  }
}

.ticket_note {
  font-size: 13px;
  list-style: 1.5em;
  font-weight: 400;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .ticket_note {
    font-size: 11px;
    margin-bottom: 50px;
  }
}

.ticket_note li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.ticket_note.b {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .ticket_note.b {
    font-size: 12px;
  }
}

.ticket_attention {
  background: #000;
  border: 1px #aaa solid;
  padding: 40px;
  font-size: 13px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .ticket_attention {
    font-size: 11px;
    padding: 20px 15px;
  }
}

.ticket_attention_cap {
  text-align: center;
  color: #ed1c24;
  font-size: 18px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .ticket_attention_cap {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.ticket_attention ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.ticket a {
  color: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.ticket a:hover {
  color: #ed1c24;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.ticket .chara_03 {
  position: absolute;
  bottom: -180px;
  right: -100px;
}

@media screen and (max-width: 767px) {
  .ticket .chara_03 {
    width: 20%;
    right: -8%;
    bottom: -100px;
  }
}

.ticket .chara_04 {
  position: absolute;
  bottom: -180px;
  left: -90px;
}

@media screen and (max-width: 767px) {
  .ticket .chara_04 {
    width: 20%;
    left: -8%;
    bottom: -100px;
  }
}

/****************************************/
.goods {
  position: relative;
  padding-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 100px;
}

.goods::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  bottom: -10px;
}

@media screen and (max-width: 767px) {
  .goods::after {
    height: 5px;
  }
}

@media screen and (max-width: 767px) {
  .goods {
    padding-top: 50px;
    margin-bottom: 10px;
    padding-bottom: 70px;
  }
}

.goods h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 9px;
  right: 0.2em;
}

@media screen and (max-width: 767px) {
  .goods h2 {
    font-size: 35px;
    top: 10px;
    right: 0.1em;
  }
}

.goods_contents {
  width: 1000px;
  margin: 0 auto 10px;
}

@media screen and (max-width: 767px) {
  .goods_contents {
    width: 83%;
    margin: 0 auto 40px;
  }
}

.goods dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .goods dl {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}

.goods dl dt p {
  position: relative;
  color: #fff;
  background: #ed1c24;
  font-size: 18px;
  letter-spacing: normal;
  width: 190px;
  padding: 5px 0 7px 8px;
}

@media screen and (max-width: 767px) {
  .goods dl dt p {
    font-size: 14px;
    width: 50%;
    padding: 4px 0 5px 5px;
  }
}

.goods dl dt p::after {
  position: absolute;
  top: 0;
  right: -50px;
  width: 50px;
  height: 100%;
  content: "";
  background: url(/assets/img/txt_deco.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .goods dl dt p::after {
    right: -29px;
    width: 30px;
  }
}

.goods dl dt p.s {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .goods dl dt p.s {
    font-size: 13px;
  }
}

.goods dl dd {
  width: 700px;
  margin-left: 100px;
  padding-top: 5px;
}

@media screen and (max-width: 767px) {
  .goods dl dd {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.goods dl dd a {
  color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.goods dl dd a:hover {
  color: #ed1c24;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.goods_list {
  width: 1000px;
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .goods_list {
    width: 83%;
    margin: 30px auto 0;
  }
}

.goods_item {
  width: 31.5%;
  margin-left: 1.5%;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .goods_item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .goods_item:nth-child(n + 1):nth-child(-n + 3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .goods_item {
    width: 49%;
    margin-left: 2%;
    margin-top: 20px;
  }
  .goods_item:nth-child(2n + 1) {
    margin-left: 0;
  }
  .goods_item:nth-child(n + 1):nth-child(-n + 2) {
    margin-top: 0;
  }
}

.goods_img {
  background: #ed1c24;
}

.goods_img img {
  border: #ed1c24 solid 2px;
}

@media screen and (max-width: 767px) {
  .goods_img img {
    border: #ed1c24 solid 1.5px;
  }
}

.goods_name {
  margin-top: 15px;
  color: #ed1c24;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1em;
}

.goods_name span {
  font-size: 14px;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .goods_name {
    margin-top: 10px;
    font-size: 15px;
  }
  .goods_name span {
    font-size: 12px;
  }
}

.goods_price {
  color: #ed1c24;
  font-weight: 600;
  font-size: 17px;
  margin-top: 10px;
}

.goods_price span {
  font-size: 12px;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .goods_price {
    font-size: 14px;
    margin-top: 6px;
  }
  .goods_price span {
    font-size: 11px;
    vertical-align: baseline;
  }
}

.goods_note {
  font-size: 12px;
  line-height: 1.5em;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .goods_note {
    font-size: 11px;
    margin-top: 5px;
  }
}

.goods .att {
  width: 1000px;
  margin: 50px auto 0;
  font-size: 12px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .goods .att {
    width: 83%;
    font-size: 10px;
    margin: 40px auto 0;
  }
}

.goods_link {
  position: relative;
  text-align: center;
  background: #ed1c24;
  width: 400px;
  margin: 30px 0 50px;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.goods_link p {
  color: #fff;
  padding: 25px 0 27px;
  font-size: 20px;
}

.goods_link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .goods_link {
    width: 70%;
    margin: 10px 0 30px;
  }
  .goods_link p {
    padding: 20px 0 22px;
    font-size: 15px;
  }
}

.goods_link:hover {
  background: #000;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.goods .note {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .goods .note {
    font-size: 11px;
    margin-top: 15px;
  }
}

/****************************************/
.attention {
  position: relative;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .attention {
    padding-top: 60px;
  }
}

.attention h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -14px;
  left: 0.2em;
}

@media screen and (max-width: 767px) {
  .attention h2 {
    font-size: 35px;
    top: 0;
    left: 0.1em;
  }
}

.attention_box {
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .attention_box {
    padding-bottom: 40px;
  }
}

.attention_cap {
  color: #ed1c24;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .attention_cap {
    font-size: 15px;
  }
}

.attention_txt {
  width: 1000px;
  margin: 0 auto;
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.5em;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .attention_txt {
    width: 83%;
    font-size: 11px;
    text-align: justify;
  }
}

.attention_txt a {
  color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.attention_txt a:hover {
  color: #ed1c24;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.attention_txt li {
  padding-left: 1em;
  text-indent: -1em;
}

.attention_txt .b {
  font-weight: 600;
}

/*****************************************/
.bnr_area {
  font-size: 0;
  letter-spacing: -0.04em;
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .bnr_area {
    margin-top: 80px;
  }
}

.bnr_area li {
  letter-spacing: normal;
  font-size: 16px;
  display: inline-block;
  width: 300px;
  margin: 0 15px;
  border: solid #ccc 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

@media screen and (max-width: 767px) {
  .bnr_area li {
    width: 40%;
    margin: 0 1%;
  }
}

.bnr_area li:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

/*****************************************/
.footer {
  position: relative;
  margin-top: 150px;
  padding: 0 7% 0 7.5%;
  background: #ed1c24;
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.footer::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  top: -10px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .footer::after {
    height: 6px;
    top: -6px;
  }
}

.footer_inner {
  padding: 50px 0;
}

.footer_link {
  font-size: 0;
  letter-spacing: -0.04em;
  text-align: center;
}

.footer_link li {
  position: relative;
  letter-spacing: normal;
  font-size: 12px;
  display: inline-block;
  margin-right: 18px;
  padding-right: 8px;
}

.footer_link li a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.footer_link li a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.footer_link li::after {
  content: "";
  position: absolute;
  top: 51%;
  right: -6px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  background: #fff;
}

.footer_link li:last-child::after {
  content: "";
  background: transparent;
}

.footer_legal {
  margin-top: 8px;
}

.footer_copy {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .footer {
    position: relative;
    margin: 120px 0 0 0;
    padding: 0;
    width: 100%;
    font-size: 10px;
    line-height: 1.5em;
    text-align: center;
  }
  .footer::before {
    height: 10px;
  }
  .footer_inner {
    padding: 25px 0 30px;
  }
  .footer_link li {
    font-size: 10px;
  }
  .footer_legal {
    margin-top: 5px;
  }
  .footer_copy {
    margin-top: 10px;
  }
}

.bnr_att {
  position: absolute;
  bottom: 30px;
  left: 25px;
  width: 320px;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

@media screen and (min-width: 768px) {
  .bnr_att:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  }
}

@media screen and (max-width: 767px) {
  .bnr_att {
    width: 70%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.event {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .event {
    width: 83%;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

.event::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 180%;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .event::after {
    height: 5px;
  }
}

.event #event_ticket {
  padding-top: 60px;
}

.event_box {
  background: #fff;
  padding: 50px;
  border: 2px solid #ed1c24;
  border-radius: 15px;
  margin-bottom: 20px;
}

.event_box h3 {
  text-align: center;
  color: #ed1c24;
  font-size: 19px;
  line-height: 1.5em;
  border-bottom: 2px solid #000;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .event_box {
    padding: 6% 3.5%;
  }
  .event_box h3 {
    font-size: 15px;
    border-bottom: 1px solid #000;
    padding-bottom: 14px;
  }
}

.event_txt {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5em;
}

.event_txt p {
  margin-bottom: 16px;
}

.event_txt a {
  color: #000;
}

.event_txt span {
  color: #ed1c24;
}

@media screen and (max-width: 767px) {
  .event_txt {
    margin-top: 15px;
    font-size: 12px;
  }
  .event_txt p {
    margin-bottom: 10px;
  }
}

.bddvd {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .bddvd {
    padding: 60px 0 50px;
  }
}

.bddvd h2 {
  position: absolute;
  color: #ed1c24;
  font-family: "Righteous", cursive;
  font-size: 80px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 6px;
  right: 0.2em;
}

@media screen and (max-width: 767px) {
  .bddvd h2 {
    font-size: 35px;
    right: 0.1em;
  }
}

.bddvd::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 180%;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .bddvd::after {
    height: 5px;
  }
}

.bddvd_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 0;
  width: 1000px;
}

@media screen and (max-width: 767px) {
  .bddvd_box {
    display: block;
    width: 83%;
  }
}

.bddvd_jk {
  width: 45%;
}

.bddvd_jk img {
  border: 2px solid #ee1c25;
}

@media screen and (max-width: 767px) {
  .bddvd_jk {
    width: 100%;
    margin-bottom: 20px;
  }
}

.bddvd_txt {
  width: 50%;
  margin-left: 5%;
}

@media screen and (max-width: 767px) {
  .bddvd_txt {
    width: 100%;
    margin-left: 0;
  }
}

.bddvd_txt .bddvd_date {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ed1c24;
}

@media screen and (max-width: 767px) {
  .bddvd_txt .bddvd_date {
    font-size: 20px;
  }
}

.bddvd_txt .bdbvd_price {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5em;
}

.bddvd_txt .bdbvd_price span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .bddvd_txt .bdbvd_price {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .bddvd_txt .bdbvd_price span {
    font-size: 10px;
  }
}

.bddvd_txt dl {
  font-size: 14px;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .bddvd_txt dl {
    font-size: 13px;
  }
}

.bddvd_txt dl dt {
  color: #ed1c24;
  font-weight: 600;
}

.bddvd_txt dl dd {
  padding-left: 1em;
  text-indent: -1em;
}

.bddvd_txt .note {
  font-size: 10px;
}

.bddvd_shop {
  margin: 50px auto 0;
  width: 1000px;
}

@media screen and (max-width: 767px) {
  .bddvd_shop {
    width: 83%;
    margin: 40px auto 0;
  }
}

.bddvd_shop_cap {
  text-align: center;
  color: #ed1c24;
  font-size: 30px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .bddvd_shop_cap {
    font-size: 20px;
  }
}

.bddvd_shop_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .bddvd_shop_list {
    margin-top: 20px;
  }
}

.bddvd_shop_item {
  width: 23.5%;
  margin-left: 1.5%;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .bddvd_shop_item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .bddvd_shop_item:nth-child(n + 1):nth-child(-n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .bddvd_shop_item {
    width: 49%;
    margin-left: 2%;
    margin-top: 10px;
  }
  .bddvd_shop_item:nth-child(2n + 1) {
    margin-left: 0;
  }
  .bddvd_shop_item:nth-child(n + 1):nth-child(-n + 2) {
    margin-top: 0;
  }
}

.bddvd_shop_item .shop {
  color: #ed1c24;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1em;
  height: 2.2em;
  position: relative;
}

.bddvd_shop_item .shop > p {
  position: absolute;
  bottom: 0;
}

.bddvd_shop_item .shop span {
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .bddvd_shop_item .shop {
    font-size: 13px;
  }
  .bddvd_shop_item .shop span {
    font-size: 10px;
  }
}

.bddvd_shop_item .img {
  background: #ed1c24;
}

.bddvd_shop_item .img img {
  border: #ed1c24 solid 2px;
}

.bddvd_shop_item .name {
  font-size: 14px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .bddvd_shop_item .name {
    font-size: 12px;
  }
}

.bddvd_shop .note {
  margin-top: 50px;
  font-size: 10px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .bddvd_shop .note {
    margin-top: 30px;
  }
}



.form {
  margin: 100px auto 0;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .form {
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
}

.form::after {
  content: "";
  position: absolute;
  background: url(/assets/img/line_r.png) repeat-x;
  background-size: contain;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 180%;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .form::after {
    height: 5px;
  }
}

.form_link {
  position: relative;
  text-align: center;
  background: #ed1c24;
  width: 600px;
  margin: 0 auto;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.form_link p {
  color: #fff;
  padding: 25px 0 27px;
  font-size: 20px;
  line-height: 1.5em;
}

.form_link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .form_link {
    width: 84%;
  }
  .form_link p {
    padding: 15px 0 17px;
    font-size: 14px;
  }
}

.form_link:hover {
  background: #000;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}