@charset "UTF-8";
/* ==============================
   Main
============================== */
/* ==============================
      Main Visual
============================== */
.mv {
  overflow: hidden;
}
.mv__content {
  width: 100%;
}
.mv__date picture, .mv__date img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ==============================
   Call To Action
============================== */
.cat {
  text-align: center;
  padding: calc(20px + 1vw);
}

.cat__content {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cat__content picture,
.cat__content img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
}

/* ==============================
   News
============================== */
.news {
  padding: calc(20px + 1vw);
  background: #0067A9;
}

.news__inner {
  background: #fff;
  border-radius: 20px;
  padding: 10px calc(19px + 0.5vw);
  margin: 0 auto;
}

.news__title {
  font-size: calc(23px + 0.5vw);
  text-align: center;
  padding-bottom: calc(10px + 0.5vw);
  margin: 0;
}

.news__list {
  list-style: none;
}

.news__item {
  font-size: calc(13px + 0.5vw);
  margin-bottom: calc(10px + 0.5vw);
  border-bottom: 1px solid #ccc;
}

.news__date {
  min-width: 100px;
}

.news__text {
  margin: 0;
  flex: 1;
}

.news__btn {
  display: inline-block;
  margin-top: calc(10px + 0.5vw);
  padding: calc(8px + 0.5vw) calc(16px + 1vw);
  background: #0067A9;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .news__item {
    display: flex;
    align-items: center;
    gap: 1em;
    padding-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .news__item {
    font-size: calc(7px + 0.5vw);
  }
  .news__inner {
    max-width: 1200px;
    padding: 20px calc(39px + 0.5vw);
  }
  .news__title {
    font-size: calc(26px + 0.5vw);
  }
}
/* ==============================
   Works
============================== */
.works {
  padding: calc(20px + 1vw);
  background: #0067A9;
  color: #fff;
  text-align: center;
}

.works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(10px + 0.5vw);
  margin: calc(20px + 1vw) 0;
}

.works__item {
  position: relative;
  overflow: hidden;
  padding-bottom: 16px;
}

.works__thumb {
  position: relative;
  overflow: hidden;
}
.works__thumb .works__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.works__thumb .works__img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* 日付ラベル */
.works__date {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}

/* 曜日別カラー */
.works__date--sat {
  background: #1A4DFF;
}

.works__date--sun {
  background: #FF1A1A;
}

/* 作品タイトルオーバーレイ */
.works__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* チケット販売 */
.ticket__btn {
  border: solid 2px #fff;
}

@media (min-width: 768px) {
  .works__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==============================
   Access
============================== */
.access {
  padding: 0;
}

.access__wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.access__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

/* ==============================
   News single.php
============================== */
.post__inner,
.ntofound__inner {
  max-width: 900px;
  margin: 0 2rem;
  padding-bottom: 3rem;
}

.post__title,
.ntofound__title {
  font-size: calc(20px + 0.5vw);
  font-weight: bold;
  margin-bottom: 1rem;
}

.post__body,
.ntofound__body {
  margin-top: 3rem;
  font-size: calc(10px + 0.5vw);
}

.post__body p,
.ntofound__body p {
  margin-bottom: 1.5em;
}

.post__body img,
.ntofound__body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.post-navigation {
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .post__inner,
  .ntofound__inner {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */