html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #0072a0;
  color: #180614;
}

.theater-header {
  width: 100vw;
  background: #0072a0;
  padding: clamp(10px, 10vw, 20px) 0 clamp(40px, 10vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  overflow: hidden;
}

.theater-header-logo {
  display: block;
  width: 65vw;
  max-width: 300px;
  min-width: 220px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.theater-main {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

h2.ttl {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

h2.ttl>img {
  display: block;
  height: clamp(18px, 5vw, 26px);
  width: auto;
  margin: 0 auto 15px;
}

.theater-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.theater-table th,
.theater-table td {
  padding: 10px 13px;
  font-size: clamp(.9rem, 3.6vw, 1rem);
  text-align: center;
  width: calc(100%/3);
}

.theater-table th {
  font-weight: 600;
  font-size: clamp(.96rem, 4.2vw, 1.12rem);
}

.area-head td {
  background: rgba(0, 114, 160, 0.2);
  font-weight: 600;
  font-size: clamp(.96rem, 4.2vw, 1.12rem);
  text-align: center;
  padding: 13px 0;
}

.theater-table a {
  color: #180614;
  text-decoration: underline;
  transition: 0.6s;
}

.theater-table a:hover {
  opacity: .6;
}

.theater-back-wrap {
  text-align: center;
  padding: clamp(40px, 10vw, 80px) 0;
}

.theater-back-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
  font-size: clamp(.96rem, 4.2vw, 1.12rem);
  font-weight: 600;
  padding: 1.1em 2.0em;
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
  transition: 0.6s;
}

.theater-back-btn:hover {
  opacity: .9;
}