@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP&family=Shippori+Antique&family=Yuji+Syuku&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanmp.css");
html {
  -ms-text-size-adjust: 100% !important;
  -webkit-text-size-adjust: 100% !important;
  font-size: 62.5% !important;
  background: none !important;
}

a,
address,
article,
aside,
audio,
b,
big,
blockquote,
body,
button,
caption,
center,
cite,
code,
dd,
details,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
i,
iframe,
img,
input,
label,
li,
main,
mark,
menu,
nav,
ol,
p,
pre,
q,
s,
section,
select,
small,
span,
strong,
summary,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
u,
ul,
video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
  color: #000;
  background-color: #fff;
  font-family: YakuHanMP, "Shippori Antique", sans-serif;
  font-size: clamp(1.4rem, 0.9428571429rem + 0.5952380952vw, 1.8rem);
  font-weight: 400;
  font-feature-settings: "palt" 1, "trad" 1;
  font-optical-sizing: auto;
  line-height: 1.78;
  letter-spacing: 0.066rem;
  position: relative;
  width: 100%;
}
body ::-moz-selection {
  background: rgba(0, 93, 151, 0.4);
  color: #fff;
}
body ::selection {
  background: rgba(0, 93, 151, 0.4);
  color: #fff;
}
body.no-scroll {
  overflow: hidden;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 400;
  line-height: 1.5;
}
body a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
body a:hover {
  text-decoration: none;
  transition: all 0.3s ease;
}
body a::before, body a::after {
  transition: all 0.3s ease;
}
body img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.preload * {
  transition: none !important;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.is-tb {
  display: none;
}
@media screen and (max-width: 1280px) {
  .is-tb {
    display: block;
  }
}

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

.inner {
  max-width: calc(980px + 8vw);
  padding-left: 4vw;
  padding-right: 4vw;
  margin-left: auto;
  margin-right: auto;
}

.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0dvh;
    left: 0;
    width: 100vw;
    transform: none;
  }
}
.fixed-btn a {
  display: block;
  padding: 4rem 2rem;
  background: rgb(180, 73, 55);
  line-height: 1;
}
.fixed-btn a:hover {
  background: rgb(101.8723404255, 41.314893617, 31.1276595745);
}
@media screen and (max-width: 767px) {
  .fixed-btn a {
    padding: 2rem;
    text-align: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
}

header .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 6rem;
  padding: 1.3888888889vw 2.0833333333vw;
  background: #fff;
}
header .logos h1 {
  width: 18.0555555556vw;
  min-width: 180px;
}
header .logos p {
  width: 9.4791666667vw;
  min-width: 100px;
  text-align: right;
}
header .fv {
  width: 100vw;
  height: 100%;
  aspect-ratio: 1440/720;
  position: relative;
}
@media screen and (max-width: 767px) {
  header .fv {
    aspect-ratio: 750/920;
  }
}
header .fv p {
  position: absolute;
  opacity: 0;
}
header .fv a {
  position: absolute;
  bottom: 5.7638888889vw;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
  z-index: 2;
  text-align: center;
}
header .fv a:hover {
  transform: translateX(-50%) scale(1.05);
}
@media screen and (max-width: 767px) {
  header .fv a {
    width: 86.6666666667vw;
    bottom: 48.8vw;
  }
}
header .fv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
}
header .fv .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav {
  width: 100vw;
  background: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 767px) {
  header nav {
    display: none;
  }
}
header nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 2rem 4vw;
  font-size: clamp(1.3rem, 0.9571428571rem + 0.4464285714vw, 1.6rem);
}
header nav a {
  line-height: 1;
  white-space: nowrap;
}
header nav a:hover, header nav a.current {
  color: rgb(233, 41, 34);
}
header nav .btn {
  display: block;
  background: rgb(233, 41, 34);
  padding: 2rem 4rem;
  font-size: clamp(1.4rem, 0.9428571429rem + 0.5952380952vw, 1.8rem);
  color: #fff !important;
  border-radius: 100vh;
}
header nav .btn:hover {
  background: rgb(150.0617283951, 19.6913580247, 14.9382716049);
  color: #fff !important;
}

article .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 6rem;
}
article .ttl::before, article .ttl::after {
  content: "";
  width: 6.8rem;
  height: 1px;
  background: #000;
}
article .ttl h2 {
  text-align: center;
  position: relative;
  white-space: nowrap;
  letter-spacing: normal;
}
article .ttl .jp {
  display: block;
  font-family: YakuHanMP, "Yuji Syuku", serif;
  font-size: clamp(3.6rem, 2.9142857143rem + 0.8928571429vw, 4.2rem);
  position: relative;
  z-index: 2;
}
article .ttl .en {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 1.7714285714rem + 5.505952381vw, 9.7rem);
  opacity: 0.08;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  z-index: 1;
}
article .news {
  background: url("../img/bg01.webp") repeat-y top left/100%;
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
}
article .news .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem 9.375vw;
}
@media screen and (max-width: 767px) {
  article .news .inner {
    flex-direction: column;
  }
  article .news .inner > * {
    width: 100% !important;
  }
}
@media screen and (min-width: 767px) {
  article .news .ttl {
    display: block;
  }
  article .news .ttl::before, article .news .ttl::after {
    display: none;
  }
  article .news .ttl h2 {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  article .news .ttl {
    margin-bottom: 0;
  }
}
article .news dl {
  width: 47.2222222222vw;
}
article .news dt {
  font-size: clamp(1.3rem, 0.9571428571rem + 0.4464285714vw, 1.6rem);
  color: #666;
}
article .news dd {
  padding: 1rem 0 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
article .news dd:last-child {
  margin-bottom: 0;
}
article .news dd a:hover {
  text-decoration: underline;
}
article .news dd p a {
  color: rgb(180, 73, 55);
  text-decoration: underline;
}
article .news dd p a:hover {
  text-decoration: none;
}
article .information {
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
}
article .information .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  article .information .wrap {
    flex-direction: column;
  }
  article .information .wrap > * {
    width: 100% !important;
  }
}
article .information .seat {
  width: 37.5vw;
}
article .information .seat a {
  display: block;
  border: 1px solid #000;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  line-height: 1;
  position: relative;
}
article .information .seat a::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: #000;
  -webkit-mask: url("../img/icon-zoom.svg") no-repeat center/contain;
          mask: url("../img/icon-zoom.svg") no-repeat center/contain;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all;
}
article .information .seat a:hover {
  background: #000;
  color: #fff;
}
article .information .seat a:hover::after {
  background: #fff;
  transform: translateY(-50%) scale(1.35);
}
article .information div.price {
  width: 27.7777777778vw;
}
article .information h3 {
  text-align: center;
  font-size: clamp(2rem, 1.5428571429rem + 0.5952380952vw, 2.4rem);
}
article .information table {
  width: 100%;
  margin-top: 2.4rem;
}
article .information table tr:nth-child(odd) td {
  background: #f2f2f2;
}
article .information table tr:nth-child(1) .color {
  background: #772100;
}
article .information table tr:nth-child(2) .color {
  background: #b98a00;
}
article .information table tr:nth-child(3) .color {
  background: #ccbb66;
}
article .information table tr:nth-child(4) .color {
  background: #facd78;
}
article .information table tr:nth-child(5) .color {
  background: #5c7885;
}
article .information table tr:nth-child(6) .color {
  background: #a3bfce;
}
article .information table tr:nth-child(7) .color {
  background: #bdb499;
}
article .information table td {
  padding: 1rem;
  line-height: 1.35;
}
article .information table td:last-child {
  text-align: right;
}
article .information table td span.color {
  display: block;
  width: 3rem;
  height: 3rem;
  border: 1px solid #333;
  border-radius: 100vh;
}
article .information table td span.goods {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 1rem;
  background: rgb(233, 41, 34);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
article .information table td span:not([class]) {
  font-size: clamp(1rem, 0.7714285714rem + 0.2976190476vw, 1.2rem);
}
article .information table td small {
  font-size: 80%;
}
article .information .wheelchair {
  padding: 2rem clamp(2rem, -0.2857142857rem + 2.9761904762vw, 4rem);
  margin-top: 3rem;
  background: #f2f2f2;
  text-align: center;
}
article .information .wheelchair h4 {
  font-size: clamp(1.5rem, 1.1571428571rem + 0.4464285714vw, 1.8rem);
}
article .information .wheelchair p {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  font-size: clamp(1.2rem, 0.9714285714rem + 0.2976190476vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  article .information .wheelchair p {
    text-align: left;
  }
}
article .information ul.caution {
  padding-left: 1em;
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.1857142857rem + 0.1488095238vw, 1.4rem);
}
article .information ul.caution li {
  text-indent: -1em;
}
article .information ul.caution li:before {
  content: "※";
}
article .information .special {
  margin-top: 5rem;
  padding: 3rem clamp(3rem, 0.4857142857rem + 3.2738095238vw, 5.2rem);
  background: #fffff4;
  border: 10px solid;
  border-top-color: #ceb26a;
  border-right-color: #b44937;
  border-bottom-color: #ceb26a;
  border-left-color: #b44937;
}
article .information .special .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
article .information .special .item:first-child {
  padding-top: 0;
}
article .information .special .item figure {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
article .information .special .item figure img {
  width: calc(33% - 0.75rem);
}
@media screen and (max-width: 767px) {
  article .information .special .item figure img {
    width: 100%;
  }
}
article .information .special .item figure figcaption {
  width: 100%;
  text-align: right;
  font-size: 1.1rem;
}
article .information .special .name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 1rem;
  font-family: YakuHanMP, "Yuji Syuku", serif;
  font-size: clamp(2.8rem, 2.1142857143rem + 0.8928571429vw, 3.4rem);
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  article .information .special .name {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
article .information .special .name span {
  font-family: YakuHanMP, "Shippori Antique", sans-serif;
  font-size: clamp(1.3rem, 0.9571428571rem + 0.4464285714vw, 1.6rem);
}
article .information .special .price {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  article .information .special .price {
    width: 100%;
    text-align: center;
  }
}
article .information .special .price strong {
  font-size: 160%;
}
article .information .special ul {
  margin-top: 3rem;
  padding-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.1857142857rem + 0.1488095238vw, 1.4rem);
}
article .information .special ul li {
  text-indent: -1em;
}
article .information .special ul li:before {
  content: "※";
}
article .information .special h3 {
  background: url("../img/bg03.webp") no-repeat center/cover;
  padding: 2rem;
  margin-top: 3rem;
  font-family: YakuHanMP, "Yuji Syuku", serif;
  font-size: clamp(2rem, 0.8571428571rem + 1.4880952381vw, 3rem);
  text-align: center;
  color: #fff;
  line-height: 1.25;
  letter-spacing: normal;
}
article .information .inner > a {
  display: block;
  text-align: center;
  margin-top: 5rem;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
}
article .information .inner > a:hover {
  transform: scale(1.05);
}
article .schedule {
  background: url("../img/bg02.webp") no-repeat top center/cover;
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
}
article .schedule h2 .en {
  color: #fff;
  opacity: 0.16;
}
article .schedule p {
  margin: 3rem 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.1857142857rem + 0.1488095238vw, 1.4rem);
}
article .schedule ul {
  display: flex;
  justify-content: center;
  gap: 2rem 3.4722222222vw;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
article .schedule figcaption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: clamp(1.3rem, 1.0714285714rem + 0.2976190476vw, 1.5rem);
}
article .access {
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
  text-align: center;
}
article .access .note {
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  font-size: clamp(1.3rem, 0.9571428571rem + 0.4464285714vw, 1.6rem);
}
article .access iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 980/400;
  min-height: 400px;
  margin-top: 3rem;
}
article .access ul {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 840px;
  gap: 2rem 4rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 767px) {
  article .access ul {
    flex-direction: column;
  }
}
article .access li {
  width: 100%;
  border: 1px solid #ccc;
  padding: 4rem;
  border-radius: 0.5rem;
}
article .access li h3 {
  color: rgb(180, 73, 55);
  font-size: clamp(1.8rem, 1.5714285714rem + 0.2976190476vw, 2rem);
}
article .access li dl {
  margin-top: 2rem;
}
article .arena {
  background: #363636;
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
}
article .arena .ttl::before,
article .arena .ttl::after {
  background: #fff;
}
article .arena h2 .jp {
  color: #fff;
}
article .arena h2 .en {
  opacity: 0.16;
}
article .arena figure {
  max-width: 700px;
  margin: 0 auto;
}
article .arena a {
  display: block;
  width: 100%;
  max-width: 540px;
  border: 1px solid #fff;
  text-align: center;
  padding: 2rem;
  margin: 3rem auto 0;
  color: #fff;
  font-size: clamp(1.8rem, 1.5714285714rem + 0.2976190476vw, 2rem);
  line-height: 1;
  position: relative;
}
article .arena a::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: #fff;
  -webkit-mask: url("../img/icon-zoom.svg") no-repeat center/contain;
          mask: url("../img/icon-zoom.svg") no-repeat center/contain;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all;
}
article .arena a:hover {
  background: #fff;
  color: #000;
}
article .arena a:hover::after {
  background: #000;
  transform: translateY(-50%) scale(1.35);
}
article .faq {
  background: url("../img/bg01.webp") repeat-y top left/100%;
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
}
article .faq dl {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  padding: 2rem 1rem;
}
article .faq dl:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
article .faq dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
article .faq dt::before {
  content: "Q.";
  font-size: 145%;
  margin-right: 0.6rem;
}
article .faq dt::after {
  content: "＋";
  margin-left: auto;
  transition: transform 0.3s ease;
}
article .faq dd {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
article .faq dd > div {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  font-size: 90%;
  border-radius: 1rem;
}
article .faq dl.is-open dt::after {
  transform: rotate(45deg);
}
article .faq dl.is-open dd {
  grid-template-rows: 1fr;
  margin-top: 1.4rem;
}
article .faq dl.is-open dd > div {
  padding: 2rem;
}
article .ticket {
  background: url("../img/bg04.webp") no-repeat bottom center/cover;
  padding: clamp(6rem, 3.7142857143rem + 2.9761904762vw, 8rem) 0;
  text-align: center;
}
article .ticket .ttl::before,
article .ticket .ttl::after {
  background: #fff;
}
article .ticket h2 .jp {
  color: #fff;
}
article .ticket h2 .en {
  opacity: 0.16;
}
article .ticket .countdown {
  background: #fff;
  padding: 1.5rem 3rem;
  margin: 2.6rem 0;
}
article .ticket .countdown #timer {
  font-size: clamp(1.8rem, 1.1142857143rem + 0.8928571429vw, 2.4rem);
  color: #005793;
}
article .ticket .countdown #timer span {
  font-size: 160%;
}
article .ticket .buyfor ul {
  display: flex;
  justify-content: space-between;
  gap: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  article .ticket .buyfor ul {
    flex-direction: column;
  }
}
article .ticket .buyfor a {
  display: block;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
}
article .ticket .buyfor a:hover {
  transform: scale(1.05);
}
article .ticket .buyfor p {
  margin-top: 2rem;
  color: #fff;
  font-size: 90%;
}

footer {
  padding: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 12rem;
  }
}
footer h5 {
  padding: 0 4vw;
  font-size: clamp(2rem, 1.3142857143rem + 0.8928571429vw, 2.6rem);
  text-align: center;
}
footer > p {
  padding: 0 4vw;
  margin-top: 2rem;
  font-size: clamp(1.3rem, 1.1857142857rem + 0.1488095238vw, 1.4rem);
  text-align: center;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 5rem;
  border-top: 1px solid #000;
  padding: 3rem;
  margin-top: 3rem;
  font-size: clamp(1.4rem, 1.1714285714rem + 0.2976190476vw, 1.6rem);
}
@media screen and (max-width: 767px) {
  footer .wrap {
    flex-direction: column;
    text-align: center;
  }
}
footer .wrap ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 1.5em;
}
@media screen and (max-width: 767px) {
  footer .wrap ul {
    justify-content: center;
  }
}
footer .wrap ul a:hover {
  text-decoration: underline;
}
footer .wrap .copy {
  margin-top: 1.5rem;
  font-size: 85%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer .wrap .copy {
    text-align: center;
  }
}

.buyfor {
  display: none !important;
}

.is-released .ready,
.is-released .countdown,
.is-released .wait {
  display: none !important;
}

.is-released .buyfor {
  display: block !important;
}

.modaal-content-container {
  padding: 0 !important;
}/*# sourceMappingURL=style.css.map */