@charset "utf-8";

/* J's OSAKA INFORMATIONページ専用 */
.information-page {
  min-width: 0;
  background: #000;
  color: #fff;
}

.information-page .wrapper {
  min-width: 0;
}

.information-page .header {
  position: relative;
  z-index: 20;
}

.information-page #logo {
  margin: 0;
}

.information-main {
  padding: 42px 18px 68px;
  background: #080808;
}

.information-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.information-topicpath {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #8f8f8f;
  font-size: 12px;
}

.information-topicpath a {
  color: #c9c9c9;
}

.information-heading {
  margin-bottom: 46px;
  text-align: center;
}

.information-heading__en,
.section-title > p {
  margin: 0 0 7px;
  color: #e6002d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.information-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.35;
}

.information-heading > p:last-child {
  margin: 14px 0 0;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.section-title h2::after {
  content: "";
  flex: 1;
  height: 7px;
  background: repeating-linear-gradient(135deg, #e6002d 0 14px, transparent 14px 24px);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.latest-card,
.archive-card {
  overflow: hidden;
  border: 1px solid #343434;
  border-radius: 13px;
  background: #171717;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
}

.latest-card {
  display: flex;
  flex-direction: column;
}

.latest-card__image,
.event-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0d0d0d;
}

.latest-card__image {
  aspect-ratio: 325 / 185;
}

.event-card__image {
  aspect-ratio: 325 / 185;
}

.latest-card__image img,
.event-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

a.latest-card__image::after,
a.event-card__image::after {
  content: "拡大";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

a.latest-card__image:hover img,
a.event-card__image:hover img {
  opacity: .84;
  transform: scale(1.025);
}

.latest-card__image--empty,
.event-card__image--empty {
  display: grid;
  place-items: center;
  color: #555;
  font-family: Georgia, serif;
  font-size: 20px;
}

.latest-card__body {
  flex: 1;
  padding: 20px 20px 22px;
}

.event-update {
  margin: 0 0 7px;
  color: #e6002d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.latest-card h3,
.archive-card h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
}

.latest-card__text {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #333;
  color: #c9c9c9;
  font-size: 13px;
  line-height: 1.8;
}

.latest-card__text p {
  margin: 0;
}

.latest-card__text p + p {
  margin-top: 9px;
}

.event-archive {
  margin-top: 74px;
}

.archive-intro {
  margin: -9px 0 18px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.7;
}

.archive-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 13px;
}

.archive-actions button {
  padding: 8px 13px;
  border: 1px solid #3a3a3a;
  border-radius: 7px;
  background: #1b1b1b;
  color: #bbb;
  font-size: 11px;
  cursor: pointer;
}

.archive-actions button:hover,
.archive-actions button:focus-visible {
  border-color: #e6002d;
  color: #fff;
}

.archive-years {
  display: grid;
  gap: 10px;
}

.archive-year {
  overflow: hidden;
  border: 1px solid #303030;
  border-radius: 11px;
  background: #121212;
}

.archive-year > summary {
  display: grid;
  grid-template-columns: auto 1fr 22px;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 12px 20px;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.archive-year > summary::-webkit-details-marker {
  display: none;
}

.archive-year > summary span {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.archive-year > summary small {
  color: #777;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.archive-year > summary i,
.archive-year > summary i::after {
  display: block;
  width: 16px;
  height: 2px;
  background: #e6002d;
}

.archive-year > summary i {
  position: relative;
}

.archive-year > summary i::after {
  content: "";
  position: absolute;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.archive-year[open] > summary {
  border-bottom: 1px solid #333;
}

.archive-year[open] > summary i::after {
  transform: rotate(0deg);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.archive-card {
  display: grid;
  grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
  min-width: 0;
  border-radius: 9px;
  box-shadow: none;
}

.archive-card__body {
  min-width: 0;
  padding: 15px;
}

.archive-card h3 {
  font-size: 15px;
  overflow-wrap: anywhere;
}

.event-detail {
  margin-top: 13px;
  border-top: 1px solid #333;
}

.event-detail > summary {
  padding: 10px 0 0;
  color: #b4b4b4;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.event-detail[open] > summary {
  color: #ff476b;
}

.event-detail > div {
  padding-top: 10px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.7;
}

.event-detail p {
  margin: 0;
}

.event-detail p + p {
  margin-top: 7px;
}

.information-footer {
  padding: 28px 16px;
  border-top: 1px solid #222;
  background: #000;
  color: #777;
  font-size: 11px;
  text-align: center;
}

.information-footer p {
  margin: 0;
}

.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.event-lightbox.is-open {
  display: flex;
}

.event-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, .9);
  cursor: zoom-out;
}

.event-lightbox figure {
  position: relative;
  z-index: 1;
  max-width: min(920px, 94vw);
  max-height: 91vh;
  margin: 0;
  padding: 12px;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  background: #111;
}

.event-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(91vh - 64px);
  margin: auto;
}

.event-lightbox figcaption {
  padding: 8px 4px 1px;
  color: #bbb;
  font-size: 11px;
  text-align: center;
}

.event-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid #555;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.information-lightbox-open {
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  .latest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .latest-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .information-main {
    padding: 24px 10px 44px;
  }

  .information-topicpath {
    margin: 0 5px 22px;
    font-size: 11px;
  }

  .information-heading {
    margin-bottom: 36px;
    padding: 0 8px;
  }

  .information-heading__en,
  .section-title > p {
    font-size: 10px;
  }

  .information-heading h1 {
    font-size: 29px;
  }

  .information-heading > p:last-child {
    font-size: 13px;
  }

  .section-title {
    margin-bottom: 18px;
  }

  .section-title h2 {
    gap: 12px;
    font-size: 23px;
  }

  .section-title h2::after {
    height: 5px;
  }

  .latest-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .latest-card:first-child {
    display: flex;
    grid-column: auto;
  }

  .latest-card__body {
    padding: 17px;
  }

  .latest-card h3 {
    font-size: 17px;
  }

  .latest-card__text {
    margin-top: 11px;
    padding-top: 10px;
    font-size: 12px;
  }

  .event-archive {
    margin-top: 52px;
  }

  .archive-intro {
    font-size: 12px;
  }

  .archive-actions {
    justify-content: flex-start;
  }

  .archive-year > summary {
    min-height: 58px;
    padding: 10px 15px;
  }

  .archive-year > summary span {
    font-size: 22px;
  }

  .archive-grid {
    gap: 9px;
    padding: 10px;
  }

  .archive-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .archive-card__body {
    padding: 11px;
  }

  .archive-card h3 {
    font-size: 13px;
    line-height: 1.4;
  }

  .event-update {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .event-detail {
    margin-top: 9px;
  }

  .event-detail > summary {
    padding-top: 8px;
    font-size: 10px;
  }

  .event-detail > div {
    font-size: 10px;
  }

  .event-lightbox {
    padding: 16px;
  }

  .event-lightbox__close {
    top: -10px;
    right: -8px;
  }
}

@media only screen and (max-width: 380px) {
  .archive-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}
