@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width:1000px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #270a0a;
  background: #f0ebe1;
  line-height: 1;
}
body.is-hidden {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: var(--main-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (min-width:1001px) {
  a:hover {
    opacity: 0.7;
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  border-bottom: 1px solid #e25418;
  z-index: 10;
  background: #f0ebe1;
}
@media (max-width:1000px) {
  .header {
    height: 10rem;
  }
}
.header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/bg.png) repeat center top/contain;
  mix-blend-mode: color-dodge;
  -webkit-filter: invert(1) brightness(0.4);
          filter: invert(1) brightness(0.4);
  z-index: -1;
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3rem 0 2rem;
}
@media (max-width:1000px) {
  .header_inner {
    padding: 0 0rem 0 2rem;
  }
}
.header_logo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media (max-width:1000px) {
  .header_logo_wrapper {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.header_logo.tfm {
  width: 14.8rem;
}
@media (max-width:1000px) {
  .header_logo.tfm {
    width: 20.2rem;
  }
}
.header_logo.yoasobi {
  width: 14.7rem;
}
@media (max-width:1000px) {
  .header_logo.yoasobi {
    width: 19.5rem;
  }
}
.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
.header_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_nav_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8rem;
  height: 8rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header_nav_item a:hover {
  background-color: #e25418;
}
.header_nav_item a:hover img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.header_nav_item:nth-of-type(1) img {
  width: 5.05rem;
}
.header_nav_item:nth-of-type(2) img {
  width: 6.2rem;
}
.header_nav_item:nth-of-type(3) img {
  width: 4.65rem;
}
.header_nav_item:nth-of-type(4) img {
  width: 5.9rem;
}
.header_nav_item:nth-of-type(5) img {
  width: 6.65rem;
}
.header_nav_item:nth-of-type(6) img {
  width: 6.65rem;
}
.header_nav_item:nth-of-type(7) img {
  width: 5.85rem;
}

/* menu_sp */
.ham {
  position: relative;
  width: 10rem;
  height: 10rem;
  background-color: #e25418;
  cursor: pointer;
}
.ham_line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5.2rem;
  height: 0.3rem;
  background-color: #fff;
}
.ham_line:nth-of-type(1) {
  top: calc(50% - 1.4rem);
}
.ham_line:nth-of-type(2) {
  top: 50%;
}
.ham_line:nth-of-type(3) {
  top: calc(50% + 1.4rem);
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #f0ebe1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  z-index: 11;
}
.menu.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width:1001px) {
  .menu {
    display: none;
  }
}
.menu::before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/bg.png) repeat center top/contain;
  mix-blend-mode: color-dodge;
  -webkit-filter: invert(1) brightness(0.4);
          filter: invert(1) brightness(0.4);
  z-index: -1;
}
.menu_close {
  position: fixed;
  right: 0;
  top: 0;
  width: 10rem;
  height: 10rem;
  background-color: #e25418;
  z-index: 12;
  cursor: pointer;
}
.menu_close::before, .menu_close::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 5.2rem;
  height: 0.3rem;
  background-color: #fff;
}
.menu_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.menu_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.menu_content_wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
.menu_content {
  padding: 12rem 0 6rem;
}
.menu_logo {
  width: 32.2rem;
  margin-inline: auto;
}
.menu_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5rem;
  margin-top: 5.5rem;
}
.menu_nav_item {
  list-style: none;
}
.menu_nav_item a {
  display: block;
}
.menu_nav_item:nth-of-type(1) a {
  width: 10rem;
}
.menu_nav_item:nth-of-type(2) a {
  width: 12.35rem;
}
.menu_nav_item:nth-of-type(3) a {
  width: 9.2rem;
}
.menu_nav_item:nth-of-type(4) a {
  width: 11.8rem;
}
.menu_nav_item:nth-of-type(5) a {
  width: 13.3rem;
}
.menu_nav_item:nth-of-type(6) a {
  width: 13.25rem;
}
.menu_nav_item:nth-of-type(7) a {
  width: 11.75rem;
}

/* side_link */
.side_link {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #e25418;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 10;
}
.side_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 25.5rem;
  background: #f0ebe1;
  border-radius: 0.5rem;
  border: 1px solid #e25418;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
.side_link a span {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
.side_link a:hover {
  background: #e25418;
  color: #fff;
}

/* main */
main {
  position: relative;
  padding-bottom: 18rem;
}
@media (max-width:1000px) {
  main {
    padding-bottom: 8.5rem;
  }
}
main::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/bg.png) repeat center top/contain;
  mix-blend-mode: color-dodge;
  -webkit-filter: invert(1) brightness(0.4);
          filter: invert(1) brightness(0.4);
  z-index: -1;
}

/* kv */
.kv {
  padding-top: 11.5rem;
}
@media (max-width:1000px) {
  .kv {
    padding-top: 16.8rem;
  }
}
.kv_logo {
  width: 51.6rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .kv_logo {
    width: 57.8rem;
  }
}
.kv_catch {
  max-width: 81.05rem;
  margin-inline: auto;
  margin-top: 3.5rem;
}
@media (max-width:1000px) {
  .kv_catch {
    width: 61.9rem;
    margin-top: 4.5rem;
  }
}
.kv_date_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 11rem;
  background: #e25418;
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .kv_date_wrapper {
    height: 22.4rem;
    margin-top: 6rem;
  }
}
.kv_date_wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/bg.png) repeat center top 10rem/contain;
  mix-blend-mode: color-dodge;
  -webkit-filter: invert(1) brightness(1.2);
          filter: invert(1) brightness(1.2);
}
.kv_date {
  width: 73.6rem;
}
@media (max-width:1000px) {
  .kv_date {
    width: 44.9rem;
  }
}

/* bnr */
.bnr-wrapper {
  padding: 0 2rem;
}
.bnr-wrapper a {
  display: block;
  margin: 8rem auto 0;
  max-width: 650px;
}

/* about */
.about {
  margin-top: 9rem;
}
@media (max-width:1000px) {
  .about {
    margin-top: 11rem;
  }
}
.about_inner {
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .about_inner {
    padding: 0 2rem;
  }
}
.about_ttl {
  width: 20.8rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .about_ttl {
    width: 31.2rem;
  }
}
.about_txt {
  font-size: 1.6rem;
  line-height: 4.6rem;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width:1000px) {
  .about_txt {
    font-size: 2.6rem;
    line-height: 5rem;
    text-align: left;
    margin-top: 2.5rem;
  }
}

/* cast */
.cast {
  position: relative;
  padding: 7rem 0 8rem;
  margin-top: 7.2rem;
  background: #e25418;
}
@media (max-width:1000px) {
  .cast {
    padding: 8rem 0 15rem;
    margin-top: 6rem;
  }
}
.cast::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/bg.png) repeat center top 10rem/contain;
  mix-blend-mode: color-dodge;
  -webkit-filter: invert(1) brightness(1.2);
          filter: invert(1) brightness(1.2);
  z-index: 0;
}
.cast_inner {
  position: relative;
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .cast_inner {
    padding: 0;
  }
}
.cast_ttl {
  width: 15.2rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .cast_ttl {
    width: 22.8rem;
  }
}
.cast_img {
  position: relative;
  width: 50.9rem;
  margin: 2rem auto 0;
}
@media (max-width:1000px) {
  .cast_img {
    margin: 3.2rem auto 0;
  }
}
.cast_img::before {
  position: absolute;
  content: "";
  left: -2rem;
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 7.95rem;
  height: 24.5rem;
  background: url(../img/cast_mod01.png) no-repeat center center/7.95rem auto;
}
.cast_img::after {
  position: absolute;
  content: "";
  right: -1.6rem;
  bottom: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 14.6rem;
  height: 2rem;
  background: url(../img/cast_mod02.png) no-repeat center center/14.6rem auto;
}
@media (max-width:1000px) {
  .cast_img::after {
    right: auto;
    left: 50%;
    bottom: -4.8rem;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    width: 18.3rem;
    height: 2.5rem;
    background: url(../img/cast_mod02.png) no-repeat center center/18.3rem auto;
  }
}

/* table */
.table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width:1000px) {
  .table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.table tr:not(:last-of-type) {
  border-bottom: 1px dashed #270a0a;
}
@media (max-width:1000px) {
  .table tr:not(:last-of-type) {
    border: none;
  }
}
.table th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffe8a4;
  width: 23rem;
}
@media (max-width:1000px) {
  .table th {
    width: 100%;
    padding: 2.4rem 0 2rem;
  }
}
.table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table_contents {
  border-top: 2px solid #270a0a;
  border-bottom: 2px solid #270a0a;
}
@media (max-width:1000px) {
  .table_contents {
    border: none;
  }
}
.table_contents_wrapper {
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 2.5rem rgba(226, 84, 24, 0.32);
          box-shadow: 0 0 2.5rem rgba(226, 84, 24, 0.32);
  padding: 2.8rem 2.4rem;
}
@media (max-width:1000px) {
  .table_contents_wrapper {
    border-radius: 1rem;
    padding: 4rem 3rem 7rem;
  }
}

/* event */
.event {
  margin-top: 7rem;
}
@media (max-width:1000px) {
  .event {
    margin-top: 10.5rem;
  }
}
.event_inner {
  max-width: 970px;
  margin-inline: auto;
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .event_inner {
    padding: 0 3.5rem;
  }
}
.event_ttl {
  width: 20.5rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .event_ttl {
    width: 30.8rem;
  }
}
.event_contents_wrapper {
  margin-top: 3.2rem;
}
@media (max-width:1000px) {
  .event_contents_wrapper {
    margin-top: 3rem;
  }
}
.event_row {
  height: 7.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width:1000px) {
  .event_row {
    height: auto;
  }
  .event_row:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.event_head {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width:1000px) {
  .event_head {
    font-size: 2.8rem;
  }
}
.event_body {
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 3.2rem;
}
@media (max-width:1000px) {
  .event_body {
    width: 100%;
    font-size: 2.8rem;
    padding-left: 0;
    padding-top: 2.5rem;
  }
}
.event_body span {
  font-size: 1.2rem;
}
@media (max-width:1000px) {
  .event_body span {
    display: block;
    font-size: 2.4rem;
    margin-top: 2.7rem;
  }
}

/* ticket */
.ticket {
  margin-top: 8rem;
}
@media (max-width:1000px) {
  .ticket {
    margin-top: 10.5rem;
  }
}
.ticket_inner {
  max-width: 970px;
  margin-inline: auto;
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .ticket_inner {
    padding: 0 3.5rem;
  }
}
.ticket_ttl {
  width: 22.2rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .ticket_ttl {
    width: 33.3rem;
  }
}
.ticket_contents_wrapper {
  margin-top: 2.2rem;
}
@media (max-width:1000px) {
  .ticket_contents_wrapper {
    margin-top: 3rem;
  }
}
.ticket_attention {
  border: 0.8rem solid #eeeeee;
  padding: 2.5rem 2rem 1.5rem;
}
@media (max-width:1000px) {
  .ticket_attention {
    padding: 5rem 2.5rem 2.5rem;
  }
}
.ticket_attention_head {
  font-size: 2.2rem;
  font-weight: 900;
  color: #e25418;
  text-align: center;
}
@media (max-width:1000px) {
  .ticket_attention_head {
    font-size: 3.4rem;
  }
}
.ticket_attention_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3rem;
  margin-top: 3rem;
}
@media (max-width:1000px) {
  .ticket_attention_txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-top: 2.5rem;
  }
}
.ticket_contents {
  margin-top: 3rem;
}
.ticket_head {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.65rem;
  padding: 4rem 0;
}
@media (max-width:1000px) {
  .ticket_head {
    font-size: 2.8rem;
    line-height: 1;
    padding: inherit;
  }
}
.ticket_body {
  padding: 3rem 2rem 3rem 2.5rem;
}
@media (max-width:1000px) {
  .ticket_body {
    padding: 3rem 0 3.5rem;
  }
}
.ticket_body b {
  font-size: 2.6rem;
  font-weight: 900;
}
@media (max-width:1000px) {
  .ticket_body b {
    font-size: 4rem;
  }
}
.ticket_body small {
  display: inline-block;
  font-size: 1.2rem;
}
@media (max-width:1000px) {
  .ticket_body small {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.ticket_body span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
}
@media (max-width:1000px) {
  .ticket_body span {
    font-size: 2.8rem;
  }
}
.ticket_price p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width:1000px) {
  .ticket_price p {
    font-size: 2.8rem;
  }
}
.ticket_price small {
  line-height: 2.4rem;
  margin-top: 2rem;
}
@media (max-width:1000px) {
  .ticket_price small {
    line-height: 3.6rem;
    margin-top: 4rem;
  }
}
.ticket_schedule h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 900;
  padding-left: 1.6rem;
}
@media (max-width:1000px) {
  .ticket_schedule h3 {
    font-size: 3.2rem;
    padding-left: 2.6rem;
  }
}
.ticket_schedule h3:not(:first-of-type) {
  margin-top: 3rem;
}
@media (max-width:1000px) {
  .ticket_schedule h3:not(:first-of-type) {
    margin-top: 3.5rem;
  }
}
.ticket_schedule h3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 0.9rem solid #e25418;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
}
@media (max-width:1000px) {
  .ticket_schedule h3::before {
    border-left: 1.7rem solid #e25418;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
  }
}
.ticket_schedule p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width:1000px) {
  .ticket_schedule p {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
.ticket_schedule a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42rem;
  height: 6rem;
  border-radius: 0.5rem;
  background: -webkit-gradient(linear, right top, left top, from(rgb(242, 142, 38)), to(rgb(253, 100, 79)));
  background: linear-gradient(270deg, rgb(242, 142, 38) 0%, rgb(253, 100, 79) 100%);
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width:1000px) {
  .ticket_schedule a {
    width: 58rem;
    height: 9rem;
    margin-top: 3rem;
    font-size: 2.8rem;
    margin-inline: auto;
  }
}
.ticket_schedule a.is-off {
  pointer-events: none;
  background: #ccc;
}
.ticket_schedule a:hover {
  opacity: 0.6;
}
.ticket_schedule a::before {
  position: absolute;
  content: "";
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width:1000px) {
  .ticket_schedule a::before {
    right: 4.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.ticket_schedule small {
  margin-top: 1rem;
}
@media (max-width:1000px) {
  .ticket_schedule small {
    line-height: 3.6rem;
    margin-top: 2.5rem;
  }
}
.ticket_digital p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width:1000px) {
  .ticket_digital p {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.ticket_digital p:not(:first-of-type) {
  margin-top: 2rem;
}
@media (max-width:1000px) {
  .ticket_digital p:not(:first-of-type) {
    margin-top: 4.5rem;
  }
}
.ticket_digital div {
  border: 1px dashed #270a0a;
  padding: 1.5rem 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .ticket_digital div {
    padding: 3rem 3rem;
    margin-top: 3.5rem;
  }
}
.ticket_digital a {
  color: #e25418;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ticket_digital a:hover {
  opacity: 0.6;
}
.ticket_digital small {
  margin-top: 1rem;
}
@media (max-width:1000px) {
  .ticket_digital small {
    line-height: 3.6rem;
    margin-top: 3.5rem;
  }
}
.ticket_resale p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width:1000px) {
  .ticket_resale p {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.ticket_resale span {
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .ticket_resale span {
    line-height: 3.6rem;
    margin-top: 4rem;
  }
}
.ticket_resale small {
  line-height: 2.4rem;
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .ticket_resale small {
    line-height: 3.6rem;
    margin-top: 4rem;
  }
}
.ticket_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width:1000px) {
  .ticket_contact {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ticket_contact a {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width:1000px) {
  .ticket_contact a {
    font-size: 2.4rem;
  }
}
.ticket_contact a:hover {
  opacity: 0.6;
}

/* notice */
.notice {
  margin-top: 6.5rem;
}
@media (max-width:1000px) {
  .notice {
    margin-top: 9rem;
  }
}
.notice_inner {
  max-width: 970px;
  margin-inline: auto;
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .notice_inner {
    padding: 0 3.5rem;
  }
}
.notice_ttl {
  width: 20.9rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .notice_ttl {
    width: 31.4rem;
  }
}
.notice_contents_wrapper {
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .notice_contents_wrapper {
    margin-top: 3.5rem;
  }
}
.notice_head {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.65rem;
  padding: 4rem 0;
}
@media (max-width:1000px) {
  .notice_head {
    font-size: 2.8rem;
    line-height: 1;
    padding: inherit;
  }
}
.notice_body {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  padding: 3rem 0rem 3rem 3rem;
}
@media (max-width:1000px) {
  .notice_body {
    font-size: 2.4rem;
    line-height: 3.6rem;
    padding: 3.5rem 0rem 4.5rem;
  }
}
.notice_body em {
  font-style: normal;
  color: #e25418;
  font-weight: 700;
}
.notice_body span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.4rem;
  border: 1px dashed #270a0a;
  padding: 1.5rem 1.5rem;
  margin-top: 2rem;
}
@media (max-width:1000px) {
  .notice_body span {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 3.6rem;
    padding: 3rem 3rem;
    margin-top: 4rem;
  }
}
.notice_body small {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin-top: 1.5rem;
}
@media (max-width:1000px) {
  .notice_body small {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 3.6rem;
    margin-top: 4rem;
  }
}

/* goods */
.goods {
  text-align: center;
  line-height: 1.5;
  margin-top: 6rem;
}
@media (max-width:1000px) {
  .goods {
    margin-top: 10.5rem;
  }
}
.goods_inner {
  max-width: 970px;
  margin-inline: auto;
  padding: 0 4rem;
}
@media (max-width:1000px) {
  .goods_inner {
    padding: 0 3.5rem;
  }
}
.goods_ttl {
  width: 17.9rem;
  margin-inline: auto;
}
@media (max-width:1000px) {
  .goods_ttl {
    width: 26.9rem;
  }
}
.goods_contents_wrapper {
  margin-top: 2.4rem;
  padding: 6rem 10rem;
}
@media (max-width:1000px) {
  .goods_contents_wrapper {
    margin-top: 4rem;
    padding: 4rem 3rem;
  }
}
.goods_img {
  margin: 3rem auto 0;
}
.goods_txt-01 {
  font-size: 2rem;
  font-weight: 700;
  color: #e25418;
}
@media (max-width:1000px) {
  .goods_txt-01 {
    font-size: 2.8rem;
  }
}
.goods_txt-02 {
  font-size: 1.4rem;
  color: #e25418;
  margin-top: 1.5rem;
}
@media (max-width:1000px) {
  .goods_txt-02 {
    font-size: 2rem;
  }
}
.goods_txt-03 {
  font-size: 1.6rem;
  text-align: left;
  margin: 3rem auto 0;
}
@media (max-width:1000px) {
  .goods_txt-03 {
    font-size: 2rem;
  }
}
.goods_txt-04 {
  font-size: 1.2rem;
  text-align: left;
  margin: 1.5rem auto 0;
}
@media (max-width:1000px) {
  .goods_txt-04 {
    font-size: 1.5rem;
  }
}
.goods_txt-05 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e25418;
  margin-top: 3rem;
}
@media (max-width:1000px) {
  .goods_txt-05 {
    font-size: 2.6rem;
  }
}
.goods_txt-05 b {
  font-size: 3.6rem;
}
.goods_txt-06 {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 5rem;
}
@media (max-width:1000px) {
  .goods_txt-06 {
    font-size: 1.8rem;
  }
}
.goods_txt-06 .u-orange {
  font-style: normal;
  color: #e25418;
}
.goods_txt-06 .u-underline {
  font-style: normal;
  text-decoration: underline;
}
.goods_txt-06 a {
  font-weight: 500;
  text-decoration: underline;
}
.goods_txt-06 .span-01 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width:1000px) {
  .goods_txt-06 .span-01 {
    font-size: 2.4rem;
  }
}
.goods_txt-06 .span-02 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width:1000px) {
  .goods_txt-06 .span-02 {
    font-size: 2.2rem;
  }
}
.goods_txt-06 .span-03 {
  font-size: 1.2rem;
}
@media (max-width:1000px) {
  .goods_txt-06 .span-03 {
    font-size: 1.6rem;
  }
}
.goods_txt-06 .span-04 {
  font-weight: 700;
  text-decoration: underline;
  color: #e25418;
}
.goods_txt-06 .span-05 {
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: underline;
  color: #e25418;
}
@media (max-width:1000px) {
  .goods_txt-06 .span-05 {
    font-size: 2.8rem;
  }
}
.goods_coming_soon {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
}
@media (max-width:1000px) {
  .goods_coming_soon {
    font-size: 3.4rem;
  }
}
.goods_coming_soon span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1.8rem;
}
@media (max-width:1000px) {
  .goods_coming_soon span {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-top: 3.5rem;
  }
}
.goods_coming_soon_wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 20rem;
  border: 0.8rem solid #eeeeee;
}
@media (max-width:1000px) {
  .goods_coming_soon_wrapper {
    height: 26rem;
  }
}

/* side_txt */
.side_txt {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
}
@media (max-width:1000px) {
  .side_txt {
    display: none;
  }
}
.side_txt img {
  width: 10.1rem;
  animation: loop 60s linear reverse infinite;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/* footer */
.footer {
  background-color: #fff;
}
.footer_bnr_wrapper {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
@media (max-width:1000px) {
  .footer_bnr_wrapper {
    border-bottom: none;
  }
}
.footer_bnr_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 6rem calc((100% - 800px) / 2) 7rem;
  row-gap: 6rem;
  border-bottom: 2px dashed #000;
}
@media (max-width:1000px) {
  .footer_bnr_top {
    padding: 4.5rem 0 8rem;
  }
}
.footer_bnr_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 6rem;
  padding: 0.5rem 7rem 0.5rem 0;
}
@media (max-width:1000px) {
  .footer_bnr_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
    padding: 0.5rem 0 11rem;
    border-bottom: none;
  }
}
.footer_bnr.kanro {
  display: block;
  width: 25.7rem;
  margin-right: 2.5rem;
}
@media (max-width:1000px) {
  .footer_bnr.kanro {
    width: 36.1rem;
    margin-right: 3.5rem;
  }
}
.footer_bnr.nissin {
  display: block;
  width: 16.9rem;
  margin-right: 6.5rem;
}
@media (max-width:1000px) {
  .footer_bnr.nissin {
    width: 23.7rem;
    margin-right: 0;
  }
}
.footer_bnr.iemon {
  display: block;
  width: 13.6rem;
}
@media (max-width:1000px) {
  .footer_bnr.iemon {
    width: 19.1rem;
    margin: 0 2rem;
  }
}
.footer_bnr.canon {
  display: block;
  width: 27rem;
  margin-right: 6rem;
}
@media (max-width:1000px) {
  .footer_bnr.canon {
    width: 53rem;
    margin-right: 0;
  }
}
.footer_bnr.ai {
  display: block;
  width: 27rem;
}
@media (max-width:1000px) {
  .footer_bnr.ai {
    width: 47.7rem;
  }
}
.footer_bnr.artist {
  display: block;
  width: 45rem;
}
@media (max-width:1000px) {
  .footer_bnr.artist {
    width: 56.5rem;
  }
}
.footer_bnr.yoasobi {
  display: block;
  width: 28.6rem;
}
@media (max-width:1000px) {
  .footer_bnr.yoasobi {
    width: 35.8rem;
  }
}
.footer_bottom {
  position: relative;
  width: 100%;
  height: 7rem;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width:1000px) {
  .footer_bottom {
    height: 19rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.5rem;
  }
}
.footer_share {
  position: absolute;
  top: 50%;
  left: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media (max-width:1000px) {
  .footer_share {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
.footer_sns {
  display: block;
  width: 4rem;
}
@media (max-width:1000px) {
  .footer_sns {
    width: 8rem;
  }
}
.footer_copy {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (max-width:1000px) {
  .footer_copy {
    font-size: 2rem;
  }
}

.page-top {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6.2rem;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-top:hover {
  opacity: 0.5;
}
@media (max-width:1000px) {
  .page-top {
    width: 8.4rem;
  }
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:1000px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */