@charset "UTF-8";

#contents.common.event-page {
  padding-top: 0;
}

.event-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-mv-sec {
  margin-top: 0;
}

.event-mv .img img {
  display: block;
  width: 100%;
}

.event-ttl {
  color: var(--keyColor);
  line-height: 1.4;
}

.event-ttl .en {
  display: block;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .event-ttl .en {
    font-size: 2.8rem;
  }
}

.event-ttl .sub {
  display: block;
  margin-top: 8px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .event-ttl .sub {
    font-size: 1.8rem;
  }
}

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

.event-ttl-row {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .event-ttl-row {
    margin-bottom: 24px;
    text-align: left;
  }

  .event-outline .event-ttl-row {
    text-align: center;
  }
}

.event-ttl-row .sub {
  margin-top: 8px;
  font-size: 1.8rem;
}

.event-about-sec {
  margin-top: 0;
  padding: 80px 0 64px;
}
@media screen and (max-width: 768px) {
  .event-about-sec {
    padding: 48px 0 40px;
  }
}

.event-about {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .event-about {
    display: block;
  }
}

.event-about .txt-box {
  max-width: 500px;
  width: 100%;
}

.event-about .txt {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--greyK80);
}
@media screen and (max-width: 768px) {
  .event-about .txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.event-outline-sec p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--greyK80);
}
@media screen and (max-width: 768px) {
  .event-outline-sec p {
    font-size: 1.4rem;
  }
}

.event-outline-list .item {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--greyK80);
}
@media screen and (max-width: 768px) {
  .event-outline-list .item {
    font-size: 1.4rem;
  }
}

.event-outline-note {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .event-outline-sec .event-outline-note {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}

.event-about .img-box {
  width: calc(100% - 500px);
  box-sizing: border-box;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .event-about .img-box {
    width: 100%;
    max-width: none;
    margin-top: 24px;
    padding-left: 0;
  }
}

.event-about .img-box .img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: none;
  transition: box-shadow 1.8s ease;
}
@media (prefers-reduced-motion: reduce) {
  .event-about .img-box .img {
    transform: none;
    opacity: 1;
    transition: none;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  }
}

.event-about .img-box img {
  width: 100%;
  transform: scale(1.12);
  opacity: 0;
  transition: transform 2.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.8s ease;
}
@media (prefers-reduced-motion: reduce) {
  .event-about .img-box img {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.event-about .img-box.is-show .img {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.event-about .img-box.is-show img {
  transform: scale(1);
  opacity: 1;
}

.event-outline-sec {
  margin-top: 0;
  padding: 80px 0 64px;
}

.event-outline-sec .inner-wrap {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .event-outline-sec {
    padding: 48px 0 40px;
  }
}

.event-outline-ttl {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--keyColor);
  border-bottom: 1px solid;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .event-outline-ttl {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}

.event-ttl + .event-outline-ttl {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .event-ttl + .event-outline-ttl {
    margin-top: 32px;
  }
}

.event-outline-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border: 1px solid var(--silver);
}

.event-outline-table th,
.event-outline-table td {
  padding: 16px 20px;
  border: 1px solid var(--silver);
  background-color: var(--white);
  font-size: 1.6rem;
  line-height: 1.75;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .event-outline-table th,
  .event-outline-table td {
    padding: 12px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.event-outline-table th {
  width: 28%;
  background-color: var(--greyK5);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .event-outline-table th {
    width: 34%;
  }
}

.event-outline-list {
  padding-left: 1.4em;
}

.event-outline-list .item {
  list-style: disc;
}

.event-outline-table td a {
  text-decoration: underline;
  color: var(--keyColor);
}

.bg-blue {
  background-color: #eef8fe;
}

.event-contents-sec {
  margin-top: 0;
  padding: 80px 0 64px;
}
@media screen and (max-width: 768px) {
  .event-contents-sec {
    padding: 48px 0 40px;
  }
}

.event-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 40px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .event-card-list {
    row-gap: 32px;
  }
}

.event-card-list .item {
  position: relative;
  overflow: hidden;
  width: calc((100% - 80px) / 3);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 768px) {
  .event-card-list .item {
    width: 100%;
    border-radius: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-card-list .item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.event-card-list .item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.event-card-list .img-box {
  line-height: 1;
}

.event-card-list .img-box img {
  width: 100%;
  aspect-ratio: 716 / 534;
  object-fit: cover;
}

.event-card-list .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 16px 20px;
  background: linear-gradient(to top, rgba(1, 78, 152, 0.92) 0%, rgba(1, 78, 152, 0.55) 45%, rgba(1, 78, 152, 0) 100%);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .event-card-list .name {
    padding: 48px 12px 16px;
    font-size: 1.6rem;
  }
}

.event-note {
  margin-top: 32px;
  color: var(--keyColor);
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .event-note {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}

.event-soon-sec {
  margin-top: 0;
}

.event-page .page-btm-row {
  margin-top: 0;
}

.event-soon {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 180px 40px;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .event-soon {
    min-height: 280px;
    padding: 64px 16px;
  }
}

.event-soon-bg {
  position: absolute;
  left: 0;
  top: -15%;
  z-index: 0;
  width: 100%;
  height: 130%;
  background: url(/assets/images/fanmeeting/2026/fan2026_commingsoon.webp) center / cover no-repeat;
  pointer-events: none;
  will-change: transform;
}

.event-soon .ttl,
.event-soon .txt {
  position: relative;
  z-index: 1;
}

.event-soon .ttl {
  font-size: 5.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .event-soon .ttl {
    font-size: 3.2rem;
  }
}

.event-soon .txt {
  margin-top: 30px;
  font-size: 2rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .event-soon .txt {
    font-size: 1.4rem;
  }
}
