/* event-nav
--------------------------------------------------------- */
.header.event {
  height: 50px;
  background: #000;
}

.header.event .header__inner {
  height: 100%;
}

body.archive.event {
  color: #000;
}

body.archive.event #footer {
  position: absolute;
  margin: 0;
  margin-top: -1px;
  left: 0;
  width: 100vw;
}

@media screen and (max-width: 768px) {
  .header.event.open .header__inner {
    background: #000;
  }
}

.gnav.event {
  background: #000000cc;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .gnav.event {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .gnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .gnav.is-open.event {
    height: 100vh;
    top: -10px;
  }
}

@media screen and (orientation: landscape) {
  .gnav.event.is-open {
    height: auto;
    overflow: hidden;
  }
}

.gnav__list.event {
  font-size: 0;
  justify-content: center;
  display: flex;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .gnav__list.event {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
  }
}

.gnav__item--event {
  position: relative;
  display: table-cell;
  letter-spacing: 0.0625em;
  color: #fff;
  transition: 0.4s background, color cubic-bezier(0.36, 0.1, 0.16, 1);
}

@media screen and (max-width: 768px) {
  body.archive.event .gnav__item--event.active {
    color: #545454;
    background: #fff;
  }

  .gnav__item--event:hover {
    color: #545454;
    background: #fff;
  }
}

@media not screen and (max-width: 768px) {
  body.archive.event .gnav__item--event.active {
    color: #fff;
    background: transparent;
  }

  body.archive.event .gnav__item--event.active a {
    color: #fff;
    background: transparent;
    text-decoration: underline;
  }

  .gnav__item--event:hover {
    color: #fff;
    background: transparent;
  }

  .gnav__item--event:hover a {
    text-decoration: underline;
  }
}

@media not screen and (max-width: 768px) {
  .gnav__item--event:not(:last-of-type)::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    height: 16px;
    width: 1px;
    background: #fff;
  }
}


@media screen and (max-width: 768px) {
  .gnav__item--event {
    border-bottom: 1px solid #ffffff80
      /* opacity 0.5 */
    ;
  }
}

@media screen and (max-width: 768px) {
  .gnav-btn.event {
    left: auto;
    right: 10px;
  }

  .gnav-btn.event:hover::after {
    color: #fff;
  }

  .gnav-btn.event span {
    width: 36%;
    height: 1px;
  }

  .gnav-btn.event span:nth-of-type(1) {
    margin-top: -14px;
  }

  .gnav-btn.event span:nth-of-type(2) {
    margin-top: -7px;
  }

  .gnav-btn.event span:nth-of-type(3) {
    margin-top: 0px;
  }

  .gnav-btn.event.is-open span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }

  .gnav-btn.event.is-open span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .gnav-btn.event::after {
    content: "MENU";
    position: absolute;
    font-size: 12px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .gnav__item--event .gnav__link {
    font-size: 24px;
    height: 48px;
    padding-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* event
--------------------------------------------------------- */

.event_main {
  padding-top: 0;
}

.event .wrapper {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .event_main {
    display: flex;
    flex-direction: column;
    min-height: cacl(100vh -108px);
  }
}

.contents.event {
  width: 980px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .contents.event {
    width: 100%;
    height: auto;
    padding-inline: 26px;
    flex: 1;
  }
}

.page-title.event {
  margin: 0;
  width: 100vw;
  max-width: 1920px;
}

.page-title.event img {
  width: 100%;
}

@media not screen and (max-width: 768px) {

  .page-title.event img {
    object-fit: cover;
  }
}

.event_message-title {
  font-size: 60px;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .event_message-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

.event_message-title.--posts {
  margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .event_message-title.--posts {
    margin-bottom: 12px;
  }
}

.event_news {
  position: relative;
  padding-top: 60px;
  padding-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .event_news {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}

.event_news::before,
.event_featured::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  width: calc(100vw + 4px );
  height: 100%;
  z-index: -9;
  transform: translate(-50%, -50%);
}

.event_news::before {
  background-color: hsla(0, 0%, 100%, 1);
  background-image:
    radial-gradient(at 30% 46%, hsla(60, 100%, 80%, 0.15) 0px, transparent 50%),
    radial-gradient(at 84% 83%, hsla(180, 77%, 77%, 0.26) 0px, transparent 50%),
    radial-gradient(at 9% 11%, hsla(180, 48%, 95%, 1) 0px, transparent 50%);
}

.event_featured::before {
  background-color: hsla(232, 77%, 10%, 1);
  background-image:
    radial-gradient(at 15% 12%, hsla(237, 65%, 47%, 0.66) 0px, transparent 50%),
    radial-gradient(at 81% 87%, hsla(237, 65%, 47%, 0.75) 0px, transparent 50%);
}

.event_featured {
  position: relative;
  padding-top: 60px;
  padding-bottom: 88px;
  color: #fff;
}

body.event-featured .event_featured {
  padding-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .event_featured {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}

.event_list {
  font-size: 24px;
  display: grid;
  gap: 45px;
  margin-bottom: 76px;
}

@media screen and (max-width: 768px) {
  .event_list {
    font-size: 10px;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.event_item {
  display: flex;
  gap: 56px;
}

@media screen and (max-width: 768px) {
  .event_item {
    gap: 12px
  }
}

.event_summary {
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.event_summary a {
  display: grid;
  color: #000;
}

.event_featured .event_summary a {
  color: #fff;
}

.event_summary a:hover,
.event_featured .event_summary a:hover {
  text-decoration: none;
  color: #d2130b;
}

@media screen and (max-width: 768px) {
  .event_summary a span {
    font-size: 12px;
  }
}

.event_thumbnail {
  max-width: 300px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .event_thumbnail {
    max-width: 103px;
  }
}

.event_thumbnail img {
  width: 100%;
  aspect-ratio: 300 / 200;
  object-fit: cover;
}

.event_date {
  line-height: 1.0;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
  .event_date {
    font-size: 9px;
  }
}

.event_more_link {
  text-align: center;
}

.event_more_link a {
  display: inline-block;
  border: solid 1px #d2130b;
  background: #d2130b;
  color: #fff;
  font-size: 30px;
  padding: 18px 48px;
  transition: all 0.3s;
}

.event_more_link a:hover {
  border: solid 1px currentColor;
  background: #fff;
  color: #d2130b;
}

@media screen and (max-width: 768px) {
  .event_more_link a {
    font-size: 10px;
    padding: 5px 14px;
  }
}

.event_more_link span {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .event_more_link span {
    font-size: 8px;
  }
}

.event_footer {
  text-align: center;
  padding-block: 64px;
  background: #000;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .event_footer {
    font-size: 9px;
    padding-block: 16px;
  }
}

@media screen and (max-width: 768px) {
  body.tax-event_category.event .event_main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 108px);
  }
}

@media screen and (max-width: 768px) {
  body.tax-event_category.event .section {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  body.tax-event_category.event .contents.event {
    width: 100%;
    height: auto;
    padding-inline: 26px;
    display: flex;
    flex: 1;
    margin-top: -1px;
  }

  body.tax-event_category.event .contents.event section {
    height: auto;
    flex: 1;
  }
}

body.single-event #news_detail {
  color: #000;
}

body.single-event #news_detail .page-title {
  width: auto;
}

body.single-event #news_detail .news_title::before {
  background: #d2130b;
}

body.single-event #news_detail a {
  color: #000;
}

body.single-event #news_detail a:hover {
  color: #d2130b;
}

body.single-event #news_detail .back_topic a {
  color: #d2130b;
}

body.event .page_list {
  margin-top: 30px;
  text-align: center;
}

body.event .page_list li {
  display: inline-block;
  padding: 0 10px;
}

body.event .page_list li .prev_page:before {
  content: "＜";
}

body.event .page_list li .next_page:before {
  content: "＞";
}

body.event .page_list li a {
  color: #d2130b;
  text-decoration: underline;
}