@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --noto: "Noto Sans JP", sans-serif;
  --rubik: "Rubik", sans-serif;
  --red: #e60012;
  --transition: 0.4s;
}

.rubik {
  font-family: var(--rubik);
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-f {
    display: flex !important;
  }
}

.img-wrap {
  width: fit-content;
}
.img-wrap img {
  width: 100%;
  height: auto;
}

html {
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

body {
  margin: 0;
  font-family: var(--noto);
  font-weight: 400;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  overflow: visible;
  clear: both;
  color: inherit;
  border-top-width: 1px;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 100%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=search] {
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

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

html body .day {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
html body .day__btns {
  display: flex;
  background: #fff;
  border-radius: 35px;
  height: 70px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border: solid 2px var(--red);
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  html body .day__btns {
    height: 56px;
  }
}
html body .day__btn {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: var(--red);
}
html body .day__btn .text2 {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: relative;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  border-radius: 35px;
}
@media screen and (max-width: 768px) {
  html body .day__btn .text2 {
    font-size: 16px;
  }
}
html body .day__btn:first-child::after {
  content: "";
  background: var(--red);
  width: 100%;
  height: 100%;
  border-radius: 35px;
  position: absolute;
  top: 0;
  left: 100%;
  transition: all 0.3s ease-in-out;
}
html body .day__btn.is-active {
  cursor: auto;
}
html body .day__btn.is-active .date {
  -webkit-mask-image: url(../img/btn-bg.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/btn-bg.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  color: var(--red);
}
html body .day__btn.is-active .text2 {
  color: #fff;
}
html body .day__btn.is-active::after {
  left: 0;
}
html body .item-box-list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  html body .item-box-list {
    gap: 40px;
  }
}
html body .item-box-list .item-box {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
html body .item-box-list .item-box:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #666666;
}
html body .item-box-list .item-box.border-none {
  border: none;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box {
    flex-direction: column;
    gap: 20px;
  }
}
html body .item-box-list .item-box__title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
html body .item-box-list .item-box__title .small {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box__title .small {
    font-size: 14px;
  }
}
html body .item-box-list .item-box__text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box__text {
    font-size: 14px;
  }
}
html body .item-box-list .item-box__text a {
  text-decoration: underline;
}
html body .item-box-list .item-box__left {
  width: 65%;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box__left {
    width: 100%;
  }
}
html body .item-box-list .item-box__left.full {
  width: 100%;
}
html body .item-box-list .item-box__right {
  width: 30%;
}
@media screen and (max-width: 768px) {
  html body .item-box-list .item-box__right {
    width: 100%;
  }
}
html body .item-box-list .item-box__right img {
  width: 100%;
}
html body .item-box-list .item-box__right figcaption {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
}
html body .mini-stage-title {
  margin-bottom: 20px;
  font-weight: bold;
}
html body .mini-stage-title.mt {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  html body .mini-stage-title.mt {
    margin-top: 30px;
  }
}
html body .table-wrapper {
  margin-bottom: 80px;
  overflow-x: auto;
}
html body table.mini-stage {
  position: relative;
  min-width: 1100px;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage {
    min-width: 800px;
  }
}
html body table.mini-stage:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 100%;
  background-color: #111;
  z-index: 1;
}
html body table.mini-stage.border-t {
  border-top: solid 1px #666666;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage {
    width: auto;
  }
}
html body table.mini-stage img {
  width: 100%;
}
html body table.mini-stage .time {
  width: 100px;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage .time:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
    background: #111;
    z-index: -1;
  }
}
html body table.mini-stage th {
  font-family: var(--rubik);
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage th {
    font-size: 12px;
  }
}
html body table.mini-stage th.wid {
  width: 333.3333333333px;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage th.wid {
    width: 233.3333333333px;
  }
}
html body table.mini-stage th.bg {
  padding: 15px 0;
  line-height: 1.35;
  background-color: #323232;
}
html body table.mini-stage th.bg span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage th.bg span {
    font-size: 16px;
  }
}
html body table.mini-stage th:last-child {
  border-right: none;
}
html body table.mini-stage td {
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
html body table.mini-stage td:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage td:last-child {
    width: 500px;
  }
}
html body table.mini-stage td.wid1 {
  width: 700px !important;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage td.wid1 {
    width: 500px !important;
  }
}
html body table.mini-stage td.wid2 {
  width: 300px !important;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage td.wid2 {
    width: 200px !important;
  }
}
html body table.mini-stage td.contents-name {
  vertical-align: middle;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage td.contents-name {
    width: 100px;
    padding: 10px 15px;
    font-size: 12px;
  }
}
html body table.mini-stage td.contents-name.border-r {
  border-right: 1px solid #666666;
}
html body table.mini-stage td.contents-name span {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html body table.mini-stage td.contents-name span {
    font-size: 15px;
    display: block;
    line-height: 1.5;
    margin-top: 2px;
  }
}
html body table.mini-stage td.contents-name span.buffer {
  font-size: 16px;
  font-weight: normal;
}

.dls-wrapper {
  gap: 100px !important;
}
@media screen and (max-width: 768px) {
  .dls-wrapper {
    gap: 80px !important;
  }
}
.dls-wrapper dl dd {
  position: relative;
}
.dls-wrapper dl dd img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.dls-wrapper dl dd img.mt {
  margin-top: 30px;
}
.dls-wrapper dl dd img.mb {
  margin-bottom: 30px;
}
.dls-wrapper dl dd.pa30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .dls-wrapper dl dd.pa30 {
    padding-bottom: 20px;
  }
}
.dls-wrapper dl dd .link_txt {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .dls-wrapper dl dd .link_txt {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
