* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --base-bgColor: #000;
  --base-Color: #fff;
  --colorNaby: #041f43;
  --font-Notable: "Notable", sans-serif;
  --fontWeight700: 700;
}

/*-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: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--base-Color);
}

a {
  color: #fff;
}
a:hover {
  opacity: 0.8;
}

a.link {
  color: #0f2662;
  text-decoration: none;
  position: relative;
}

.center {
  text-align: center;
}

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

#main img {
  width: 100%;
}

#logo {
  position: absolute;
  top: 2%;
  left: 1%;
}

#logo img {
  width: 390px;
}

@media (max-width: 768px) {
  #logo {
    position: absolute;
    top: 2%;
    left: 0%;
    display: flex;
    justify-content: center;
  }

  #logo img {
    width: 80%;
  }
}

.menu-list {
  display: flex;
  justify-content: center;
  z-index: 1;
  margin-top: -7rem;
  padding: 0 2rem 0.5rem;
  background: var(--colorNaby);
  color: var(--base-Color);
  font-size: 1.6rem;
  font-family: var(--font-Notable);
  border: 1px solid var(--base-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(--base-Color);
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto;
}

#container {
  background: url(../images/bg.jpg) center;
  background-size: cover;
}

.title {
  font-family: var(--font-Notable);
  font-size: 3.5rem;
  text-align: center;
  margin: 6rem 0;
}

.schedule_wrapper {
  display: flex;
  flex-direction: column;
}

.schedule {
  width: 100%;
}

@media (max-width: 768px) {
}

@media (max-width: 700px) {
  .schedule {
    width: 100%;
    max-width: auto;
    display: flex;
    flex-direction: column;
  }
}

.schedule_inner {
  width: 90%;
  max-width: 900px;
  margin: 4rem auto;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .schedule_inner {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .schedule_inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}

.day {
  font-size: 3rem;
  font-family: var(--font-Notable);
  width: 100px;
}
@media (max-width: 882px) {
  .day {
    width: 95px;
  }
}

.day span {
  font-size: 1.5rem;
  padding-left: 0.5rem;
}

.place {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  flex-grow: 2;
}

.place span.pref {
  font-size: 1.4rem;
  border: 1px solid var(--base-Color);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 86px;
  height: 30px;
  line-height: 30px;
  margin-right: 3rem;
}

@media (max-width: 882px) {
  .place {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .place {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    flex-grow: 1;
    gap: 20px;
  }
  .place span.pref {
    font-size: 1.6rem;
    border: 1px solid var(--base-Color);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 86px;
    height: 35px;
    line-height: 30px;
    margin-right: 0;
  }
}

@media (max-width: 700px) {
  .place {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 2.8rem;
    flex-grow: 1;
    gap: 20px;
  }
  .place span.pref {
    font-size: 1.6rem;
    border: 1px solid var(--base-Color);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 86px;
    height: 35px;
    line-height: 30px;
    margin-right: 0;
  }
}

.time {
  font-size: 1.6rem;
}

.time span {
  font-size: 1.2rem;
  border: 1px solid var(--base-Color);
  margin-right: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  width: 90px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .time span {
    font-size: 1rem;
    border: 1px solid var(--base-Color);
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .time span {
    font-size: 1.2rem;
    border: 1px solid var(--base-Color);
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
}

.ticket {
  text-align: center;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket span {
  font-size: 1.6rem;
  border: 1px solid var(--base-Color);
  width: 48px;
  height: 26px;
  margin-top: 5px;
  margin-right: 1rem;
  display: inline-block;
}

.ticket_link {
  margin: 3.8rem auto;
}

.btn_ticket {
  display: inline-block;
  padding: 1.5rem 3rem;
  text-decoration: none;
  color: var(--base-Color);
  background: var(--colorNaby);
  border-radius: 9999px;
  border: 1px solid var(--base-Color);
  font-size: 1.6rem;
}

.comingsoon {
  text-align: center;
  font-size: 8rem;
  margin: 3rem 0 12rem;
  font-family: var(--font-Notable);
}

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

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

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