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

:root {
  --base-bgColor: #757575;
  --base-Color: #fff;
  --point-Color: #ffeb00;
}

/*-RESET-------------------------*/
html,
body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
}

ul {
  list-style: none;
}

ol {
  list-style-position: inside;
}

p {
  margin: 5px 0;
}

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

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

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

/*-RESET-------------------------*/
html {
  font-size: 62.5%;
  background: var(--base-bgColor);
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "ヒラギノ角ゴシック W8", "Hiragino Sans W8", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--base-Color);
}

a {
  color: var(--point-Color);
}
a:hover {
  opacity: 0.8;
}

a.link {
  color: var(--point-Color);
  text-decoration: none;
  position: relative;
}
.center {
  text-align: center;
}

.font50 {
  font-size: 5rem;
}

.font40 {
  font-size: 4rem;
}

.font30 {
  font-size: 3rem;
}

.font24 {
  font-size: 2.4rem;
}

.font20 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .font50 {
    font-size: 4rem;
  }

  .font40 {
    font-size: 3rem;
  }

  .font30 {
    font-size: 2rem;
  }

  .font24 {
    font-size: 1.8rem;
  }

  .font20 {
    font-size: 1.5rem;
  }
}

.textY {
  color: var(--point-Color);
}

#main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

#main img {
  width: 100%;
}

#logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#logo img {
  width: 200px;
}

@media (max-width: 768px) {
  #logo img {
    width: 100px;
  }
}

@media (max-width: 414px) {
  #logo img {
    width: 80px;
  }
}

.menu-list {
  display: flex;
  justify-content: center;
  z-index: 1;
  margin-top: -7rem;
  padding: 0 2rem 0.5rem;
  background: var(--base-bgColor);
  color: var(--point-Color);
  font-size: 1.6rem;
  border: 1px solid var(--point-Color);
  border-radius: 9999px;
}

.menu-list li {
  width: 100%;
  display: flex;
  margin: 0;
}

.menu-list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 1rem;
}

.menu-list li + li {
  position: relative;
}

.menu-list li + li::before {
  content: "";
  display: block;
  height: 1em;
  border-left: 2px solid var(--point-Color);
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto;
}

.contents {
  width: 90%;
  margin: 13rem auto;
}

.title {
  width: 340px;
  font-size: 2.4rem;
  text-align: center;
  margin: 6rem auto;
  border-bottom: 1px solid #fff;
}

.schedule {
  display: flex;
  justify-content: center;
  gap: 75px;
  color: var(--point-Color);
}

@media (max-width: 640px) {
  .schedule {
    flex-direction: column;
    gap: 75px;
    color: var(--point-Color);
  }
}

.ticketBox {
  width: 70%;
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid var(--base-Color);
  text-align: center;
  font-size: 3rem;
  margin-top: 5rem;
  padding: 20px 20px 0;
}

@media (max-width: 640px) {
  .ticketBox {
    width: 80%;
    font-size: 2rem;
  }
}

.btn_ticket {
  display: inline-block;
  margin: 2rem 0 3rem;
  padding: 1.5rem 3rem;
  text-decoration: none;
  color: var(--base-bgColor);
  background: var(--point-Color);
  font-size: 1.6rem;
}

.btn_ticket a {
  color: var(--base-bgColor);
  text-decoration: none;
}

.comingsoon {
  text-align: center;
  font-size: 8rem;
  margin: 3rem 0 12rem;
}

@media (max-width: 768px) {
  .comingsoon {
    font-size: 5rem;
  }
}

@media (max-width: 414px) {
  .comingsoon {
    font-size: 4rem;
  }
}

footer {
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem 0;
}
