@charset "utf-8";

/* 20260202 ADD */
/* TOP */
.top-event-list-item {
  width: calc(100% / 4 - 2%);
  margin: 0 1% 2%;
}
.top-event.v2 .top-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-event.v2 .top-article {
  width: 100%;
  margin: 0;
}
.top-event.v2 .top-article a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.top-event.v2 .top-article a:hover {
  opacity: 1;
}
.top-event.v2 .top-article a.end {
  pointer-events: none;
}
.top-event.v2 .top-article a.end::before {
  content: "こちらのイベントは終了しました";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 10;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.top-event.v2 .top-article--img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top-event.v2 .top-article--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.top-event.v2 .top-article a:hover .top-article--img img {
  transform: scale(1.1);
}
.top-event.v2 .top-article--metas {
  padding: 10px 0;
}
.top-event.v2 .top-article--tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 5px 0;
}
.top-event.v2 .top-article--tag {
  color: #231815;
  font-size: 10px;
  display: inline-block;
  padding: 2px 12px;
  border: 1px solid #231815;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
  background: transparent;
}
.top-event.v2 .top-article--title {
  font-size: 16px;
  min-height: 52px;
  font-weight: bold;
  line-height: 1.6;
}
.top-event.v2 .top-article--short {
  font-size: 12px;
  margin: 0;
}
.top-event.v2 .top-article--short.date {
  background: #efefef;
  text-align: center;
  padding: 2px 4px;
  margin: 2px 0;
}
.top-event.v2 .top-article--btn {
  width: 100%;
  max-width: 200px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: .8em;
  border-radius: 2em;
  white-space: nowrap;
  line-height: 1;
  margin: 10px auto 0;
  transition: .3s ease;
  background: linear-gradient(150deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 35%, #000 100%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
.top-event.v2 .top-article a:hover .top-article--btn {
  color: #000;
  background: transparent;
}
.top-article-bottom--vm a {
  display: inline-block;
  padding: 15px 60px;
  background: linear-gradient(150deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 35%, #000 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 2em;
  transition: .3s ease;
}
.top-article-bottom--vm a:hover {
  opacity: 0.8;
}
.top-article-bottom--vm {
  margin-top: 30px;
}
#sec01.top .top-event.v2 .more {
  margin: 80px auto;
}

@media only screen and (max-width: 767px) {
  .top-event-list-item {
    width: calc(50% - 10px);
    margin: 0 5px 20px;
  }
  .top-event.v2 .top-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .top-event.v2 .top-article--short {
    font-size: 11px;
    display: none;
  }
  .top-event.v2 .top-article--title {
    font-size: 14px;
    min-height: 45px;
  }
  .top-event.v2 .top-article--btn {
    font-size: 11px;
    padding: .8em .4em;
    margin-top: 5px;
  }
  .top-event.v2 .top-article--tag {
    font-size: 11px;
  }
  .top-article-bottom--vm a {
    padding: 12px 40px;
    font-size: 14px;
  }
  #sec01.top .top-event.v2 .more {
    margin: 60px auto;
  }
}

/* EVENT ARCHIVE */
.event-archive-v2 .wrap {
  max-width: 1240px;
}
.event-archive-v2 .works-archive-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-archive-v2 .works-archive-article {
  width: 100%;
  padding: 1em;
  background: #FFF;
  box-shadow: 0 0 12px #CCC;
}
.event-archive-v2 .works-archive-article a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}
.event-archive-v2 .works-archive-article a:hover {
  opacity: 1;
}
.event-archive-v2 .works-archive-article a.end {
  pointer-events: none;
}
.event-archive-v2 .works-archive-article a.end::before {
  content: "こちらのイベントは終了しました";
  width: calc(100% + 2em);
  height: calc(100% + 2em);
  position: absolute;
  top: -1em;
  left: -1em;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 8;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.event-archive-v2 .works-archive-article--img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.event-archive-v2 .works-archive-article--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.event-archive-v2 .works-archive-article a:hover .works-archive-article--img img {
  transform: scale(1.1);
}
.event-archive-v2 .works-archive-article--tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 5px;
}
.event-archive-v2 .works-archive-article--tag {
  color: #231815;
  font-size: 12px;
  display: inline-block;
  padding: 2px 12px;
  border: 1px solid #231815;
  border-radius: 12px;
  text-align: center;
  background: transparent;
}
.event-archive-v2 .works-archive-article--title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0;
}
.event-archive-v2 .works-archive-article--short {
  margin: 0;
}
.event-archive-v2 .works-archive-article--short.date {
  background: #efefef;
  text-align: center;
  padding: 2px 4px;
  margin: 10px 0;
}
.event-archive-v2 .works-archive-article--meta {
  margin: 0;
}
.event-archive-v2 .works-archive-article--btn {
  width: 100%;
  max-width: 200px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: .8em;
  border-radius: 2em;
  white-space: nowrap;
  line-height: 1;
  margin: 20px auto 0;
  transition: .3s ease;
  background: linear-gradient(150deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 35%, #000 100%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
.event-archive-v2 .works-archive-article a:hover .works-archive-article--btn {
  color: #000;
  background: transparent;
}
.archive-notfound {
  text-align: center;
  padding: 40px 0;
}
@media only screen and (max-width: 991px) {
  .event-archive-v2 .works-archive-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .event-archive-v2 .works-archive-article a {
    padding: 0;
  }
  .event-archive-v2 .works-archive-article--tag {
    font-size: 10px;
    padding: 2px 6px;
  }
  .event-archive-v2 .works-archive-article--title {
    margin-top: 0.5em;
    font-size: 14px;
  }
  .event-archive-v2 .works-archive-article--short {
    display: none;
  }
  .event-archive-v2 .works-archive-article--meta {
    display: none;
  }
  .event-archive-v2 .works-archive-article--btn {
    font-size: 11px;
    padding: .8em .4em;
    margin-top: 10px;
  }
}