@charset "UTF-8";
/* stylelint-disable no-descending-specificity */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.event-card__eyecatch-link {
  display: block;
  overflow: hidden;
  background-color: black;
  border-radius: 8px;
  aspect-ratio: 16/9;
}
.event-card__eyecatch {
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.event-card__eyecatch-link:hover .event-card__eyecatch {
  width: 100%;
  height: 100%;
  margin: 0;
}
.event-card__pickup {
  display: none;
}
.event-card__deadline-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  background: #4fb5ee;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.event-card__deadline-badge--expired {
  background: #999;
}
.event-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.event-card__category-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  background-color: #ffd42c;
  border-radius: 6px;
}
.event-card__tags {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.event-card__tag {
  display: inline;
}
.event-card__tag:not(:last-child)::after {
  margin: 0 8px;
  content: "|";
}
.event-card__date {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
}
.event-card--secondary {
  flex-direction: row;
  gap: 16px;
}
.event-card--secondary .event-card__eyecatch-link {
  flex-shrink: 0;
  width: 360px;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--secondary .event-card__eyecatch-link {
    width: 260px;
  }
}
@media (width < 768px) {
  .event-card--secondary .event-card__eyecatch-link {
    width: 200px;
  }
}
.event-card--mv {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (width < 768px) {
  .event-card--mv {
    flex-direction: column;
    align-items: flex-start;
  }
}
.event-card--mv .event-card__eyecatch {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 1px black solid;
}
.event-card--mv .event-card__eyecatch-link {
  flex: 2;
}
@media (width < 768px) {
  .event-card--mv .event-card__eyecatch-link {
    flex: auto;
    width: 100%;
  }
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv .event-card__eyecatch-link {
    flex: auto;
    width: 100%;
  }
}
.event-card--mv .event-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding-left: 10px;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv .event-card__content {
    width: 100%;
  }
}
@media (width < 768px) {
  .event-card--mv .event-card__content {
    flex: auto;
    gap: 8px;
    width: 100%;
    padding-left: 0;
  }
}
.event-card--mv .event-card__pickup {
  display: block;
  color: transparent;
  font-weight: 800;
  font-size: 16px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 0.6px #000;
  text-stroke: 0.6px #000;
}
@media (width < 768px) {
  .event-card--mv .event-card__pickup {
    font-size: 12px;
  }
}
.event-card--mv .event-card__mv-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-header {
    gap: 4px;
    margin-bottom: 16px;
  }
}
.event-card--mv .event-card__mv-subtitle {
  color: #000;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-subtitle {
    font-size: 14px;
  }
}
.event-card--mv .event-card__mv-title {
  color: transparent;
  font-weight: 800;
  font-size: 66px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 1.5px #000;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-title {
    font-size: 40px;
    -webkit-text-stroke: 1px #000;
  }
}
.event-card--mv .event-card__category-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 16px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  background-color: #ffd42b;
  border-radius: 20px;
}
@media (width < 768px) {
  .event-card--mv .event-card__category-badge {
    padding: 4px 12px;
    font-size: 12px;
  }
}
.event-card--mv .event-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  margin-top: auto;
  padding-top: 24px;
}
.event-card--mv .event-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (width < 768px) {
  .event-card--mv .event-card__button {
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}
.event-card--mv .event-card__button--primary {
  color: #fff;
  background-color: #010b1c;
}
.event-card--mv .event-card__button--primary:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}
.event-card--mv .event-card__button--secondary {
  color: #000;
  background-color: #ffd42b;
}
.event-card--mv .event-card__button--secondary:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}
.event-card--mv .event-card__title {
  display: -webkit-box;
  min-height: 67.2px;
  overflow: hidden;
  font-size: 24px;
  line-height: 1.4;
  white-space: normal;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (width < 768px) {
  .event-card--mv .event-card__title {
    min-height: 42px;
    font-size: 15px;
  }
}
.event-card--mv .event-card__tag {
  font-size: 11px;
}

/* Simple ended styles: remove gradients/icons, darken image (only for actual event-end)
   MVカード(`event-card--mv`)は終了状態でも同じデザインにしたいため除外する */
.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch-link::after,
.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch-link::before {
  display: none !important;
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch {
  transform: scale(1.02);
  opacity: 1;
  filter: brightness(0.35);
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__content {
  opacity: 1;
}

/* 終了後イベント: タイトルや補助テキストをグレー表示にする
   ただし MV は除外する */
.event-card.event-card--ended:not(.event-card--mv) .event-card__title,
.event-card.event-card--ended:not(.event-card--mv) .event-card__pickup,
.event-card.event-card--ended:not(.event-card--mv) .event-card__tags,
.event-card.event-card--ended:not(.event-card--mv) .event-card__tag,
.event-card.event-card--ended:not(.event-card--mv) .event-card__date,
.event-card.event-card--ended:not(.event-card--mv) .event-card__mv-subtitle,
.event-card.event-card--ended:not(.event-card--mv) .event-card__mv-title {
  color: rgba(0, 0, 0, 0.56);
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__title-link {
  color: inherit;
}

/* stylelint-disable no-descending-specificity */
.c-special-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 141px;
  padding: 0 20px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-special-feature {
    justify-content: center;
    height: auto;
    min-height: 85px;
    padding: 10px 20px;
  }
}
.c-special-feature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.c-special-feature__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 328px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
}
@media (width < 768px) {
  .c-special-feature__body {
    max-width: 100%;
  }
}
.c-special-feature__title {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-special-feature__tags {
  display: flex;
  align-items: center;
}
.c-special-feature__tag {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  white-space: nowrap;
}
.c-special-feature__tag:not(:last-child)::after {
  margin: 0 16px;
  content: "|";
}
@media (width >= 1280px) {
  .c-special-feature--horizontal {
    height: 145px;
  }
  .c-special-feature--horizontal .c-special-feature__bg {
    object-position: center;
  }
  .c-special-feature--horizontal .c-special-feature__body {
    max-width: 328px;
  }
}

/* stylelint-disable no-descending-specificity */
.c-new-events {
  padding: 60px 40px 80px;
  background-color: #ffd42b;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events {
    padding: 48px 24px 60px;
  }
}
@media (width < 768px) {
  .c-new-events {
    padding: 40px 16px 60px;
  }
}
.c-new-events__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-new-events__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.c-new-events__title {
  font-weight: 700;
  font-size: 20px;
}
@media (width < 768px) {
  .c-new-events__title {
    font-size: 16px;
  }
}
.c-new-events__subtitle {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  margin-top: 8px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events__subtitle {
    font-size: 28px;
  }
}
@media (width < 768px) {
  .c-new-events__subtitle {
    font-size: 20px;
    -webkit-text-stroke-width: 0.6px;
  }
}
.c-new-events__more {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media (width < 768px) {
  .c-new-events__more {
    font-size: 12px;
  }
}
.c-new-events__more:hover {
  opacity: 0.7;
}
.c-new-events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events__grid {
    gap: 16px;
  }
}
@media (width < 768px) {
  .c-new-events__grid {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    overflow-x: auto;
  }
  .c-new-events__grid .event-card {
    flex: 0 0 80%;
  }
  .c-new-events__grid .event-card:only-child {
    flex: 0 0 100%;
  }
}
.c-new-events.event-detail-related {
  padding: 0 40px 80px;
  background-color: transparent;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events.event-detail-related {
    padding: 0 24px 60px;
  }
}
@media (width < 768px) {
  .c-new-events.event-detail-related {
    padding: 0 16px 60px;
  }
}

.c-company-cta {
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-company-cta {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .c-company-cta {
    padding: 0 16px;
  }
}
.c-company-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #010b1c;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-company-cta__inner {
    padding: 14px 10px;
  }
}
.c-company-cta__content {
  display: flex;
  gap: 38px;
  align-items: center;
}
@media (width < 768px) {
  .c-company-cta__content {
    gap: 14px;
  }
}
.c-company-cta__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
@media (width < 768px) {
  .c-company-cta__text {
    flex: 1;
    min-width: 0;
  }
}
.c-company-cta__title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  font-family: Roboto, sans-serif;
  line-height: 1;
}
@media (width < 768px) {
  .c-company-cta__title {
    font-size: 13px;
  }
}
.c-company-cta__description {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  line-height: 1.5;
}
@media (width < 768px) {
  .c-company-cta__description {
    font-size: 8px;
  }
}
.c-company-cta__buttons {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (width < 1280px) and (width >= 768px) {
  .c-company-cta__buttons {
    flex-direction: column;
    gap: 16px;
  }
}
@media (width < 768px) {
  .c-company-cta__buttons {
    flex-direction: column;
    gap: 8px;
  }
}
.c-company-cta__btn {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 12px 40px;
  font-weight: 800;
  font-size: 12px;
  font-family: Inter, sans-serif;
  line-height: 1.5;
  letter-spacing: 6px;
  white-space: nowrap;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (width < 1280px) and (width >= 768px) {
  .c-company-cta__btn {
    width: 100%;
  }
}
@media (width < 768px) {
  .c-company-cta__btn {
    width: 100%;
    padding: 6px 20px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}
.c-company-cta__btn:hover {
  opacity: 0.8;
}
.c-company-cta__btn--primary {
  color: #000;
  background-color: #ffd42b;
  border: none;
}
.c-company-cta__btn--secondary {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

/* stylelint-disable no-descending-specificity */
.c-blog-card {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.2s;
}
.c-blog-card:hover {
  opacity: 0.8;
}
@media (width < 768px) {
  .c-blog-card {
    flex-direction: column;
    gap: 12px;
  }
}
.c-blog-card__thumbnail-wrap {
  flex-shrink: 0;
  width: 258px;
  max-width: calc(50% - 14px);
  aspect-ratio: 258/145;
  height: auto;
  overflow: hidden;
  background-color: #d9d9d9;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-blog-card__thumbnail-wrap {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 258/145;
  }
}
.c-blog-card__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.c-blog-card__thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border-radius: 8px;
}
.c-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}
.c-blog-card__label {
  align-self: flex-start;
  padding: 5px 10px;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  background-color: #000b1c;
  border-radius: 8px;
}
.c-blog-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-blog-card__author {
  color: #000;
  font-weight: 800;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  line-height: 1.45;
}
.c-blog-card__tags {
  display: flex;
  align-items: center;
}
.c-blog-card__tag {
  color: #000;
  font-weight: 500;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}
.c-blog-card__tag:not(:last-child)::after {
  margin: 0 16px;
  color: #000;
  font-weight: 300;
  content: "|";
}

.mv {
  margin: 60px 40px 80px;
}
@media (width < 1280px) and (width >= 768px) {
  .mv {
    margin: 40px 24px 60px;
  }
}
@media (width < 768px) {
  .mv {
    margin: 20px 16px 40px;
  }
}
.mv {
  /* メインスライダー */
}
.mv__slider {
  width: 100%;
  height: fit-content;
  margin-bottom: 28px;
}
@media (width < 1280px) and (width >= 768px) {
  .mv__slider {
    margin-bottom: 24px;
  }
}
@media (width < 768px) {
  .mv__slider {
    margin-bottom: 16px;
  }
}
.mv {
  /* サムネイル用スライダー */
}
.mv__thumbs {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0 30px;
  padding: 1px;
  overflow: hidden;
}
@media (width < 768px) {
  .mv__thumbs {
    padding: 0 20px;
  }
}
.mv__thumbs .swiper-wrapper {
  justify-content: flex-start;
  padding: 1px;
}
.mv__thumbs.is-justified .swiper-wrapper {
  justify-content: flex-start;
}
.mv__thumbs .swiper-button-next,
.mv__thumbs .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: block;
  width: 0;
  height: 16px;
  margin-top: 0;
  color: #000;
  transform: translateY(-50%);
}
.mv__thumbs .swiper-button-next::after,
.mv__thumbs .swiper-button-prev::after {
  font-size: 16px;
}
.mv__thumbs .swiper-button-prev {
  left: 0;
}
.mv__thumbs .swiper-button-next {
  right: 16px;
}
.mv__thumbs .swiper-slide {
  flex-shrink: 0;
  width: calc((100% - 90px) / 7);
  min-width: 160px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  aspect-ratio: 16/9;
}
.mv__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.mv__thumbs .swiper-slide img {
  display: block;
  box-sizing: border-box;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  border: 1px solid #000;
  border-radius: 4px;
}

.top-closing-soon {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-closing-soon {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .top-closing-soon {
    padding: 0 16px;
  }
}
.top-closing-soon {
  margin-top: 32px;
}
@media (width < 768px) {
  .top-closing-soon {
    margin-top: 24px;
  }
}
.top-closing-soon__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.top-closing-soon__title {
  font-weight: 700;
  font-size: 20px;
}
@media (width < 768px) {
  .top-closing-soon__title {
    font-size: 16px;
  }
}
.top-closing-soon__subtitle {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  margin-top: 8px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-closing-soon__subtitle {
    font-size: 28px;
  }
}
@media (width < 768px) {
  .top-closing-soon__subtitle {
    font-size: 20px;
    -webkit-text-stroke-width: 0.6px;
  }
}
.top-closing-soon__more {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5em;
  white-space: nowrap;
}
@media (width < 768px) {
  .top-closing-soon__more {
    font-size: 12px;
  }
}
.top-closing-soon .events-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
  padding-bottom: 16px;
  text-align: left;
}
.top-closing-soon .events-list .event-card {
  height: 100%;
}
@media (width < 1280px) and (width >= 768px) {
  .top-closing-soon .events-list {
    gap: 16px;
  }
}
@media (width < 768px) {
  .top-closing-soon .events-list {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    overflow-x: auto;
  }
  .top-closing-soon .events-list .event-card {
    flex: 0 0 80%;
  }
  .top-closing-soon .events-list .event-card:only-child {
    flex: 0 0 100%;
  }
}
.top-closing-soon .button-primary {
  margin: 0 auto;
  margin-top: 24px;
}

.top-events__search {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-events__search {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .top-events__search {
    padding: 0 16px;
  }
}
.top-events__search {
  margin-top: 0;
  margin-bottom: 32px;
}

.top-events-search {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
@media (width < 768px) {
  .top-events-search {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.top-events-search__field {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 515px;
  max-width: 100%;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 24px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-events-search__field {
    width: 400px;
  }
}
@media (width < 768px) {
  .top-events-search__field {
    width: 100%;
  }
}
.top-events-search__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.top-events-search__input {
  flex: 1;
  width: auto;
  min-width: 0;
  padding: 0;
  color: #0b0b0b;
  font-weight: 500;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  background: transparent;
  border: none;
  outline: none;
}
.top-events-search__input::placeholder {
  color: #999;
}
.top-events-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  min-width: 0;
}
@media (width < 768px) {
  .top-events-search__tags {
    gap: 6px;
  }
}
.top-events-search__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #0b0b0b;
  font-weight: 500;
  font-size: 13px;
  font-family: Roboto, sans-serif;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  background-color: #f2f2f2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
@media (width < 768px) {
  .top-events-search__tag {
    padding: 8px;
    font-size: 12px;
  }
}
.top-events-search__tag:hover {
  background-color: #e0e0e0;
}
.top-events-search__tag--active {
  color: #fff;
  background-color: #000;
}
.top-events-search__tag--active:hover {
  background-color: #333;
}

.top-events {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-events {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .top-events {
    padding: 0 16px;
  }
}
.top-events {
  margin-top: 60px;
}
.top-events .p-category-tabs {
  margin: 0 32px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-events .p-category-tabs {
    margin: 0 20px;
  }
}
@media (width < 768px) {
  .top-events .p-category-tabs {
    margin: 0 12px;
  }
}
.top-events .p-category-tabs__container {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
@media (width < 768px) {
  .top-events .p-category-tabs__container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: hidden;
  }
}
.top-events .p-category-tab {
  --p-category-tab-icon-url: none;
  --p-category-tab-icon-color: #333;
  --p-category-tab-label-color: #666;
  --p-category-tab-active-color: #ffd014;
  display: flex;
  flex: 1 1 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 6px 16px;
  color: #333;
  text-decoration: none;
}
.top-events .p-category-tab:not(:last-child) {
  border-right: 1px solid #000;
}
.top-events .p-category-tab__icon {
  display: none;
}
.top-events .p-category-tab::before {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-color: var(--p-category-tab-icon-color);
  transition: background-color 200ms ease, transform 200ms ease;
  content: "";
  mask: var(--p-category-tab-icon-url) no-repeat center/contain;
}
@media (width < 768px) {
  .top-events .p-category-tab::before {
    width: 28px;
    height: 28px;
  }
}
.top-events .p-category-tab__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.top-events .p-category-tab__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  transition: color 200ms ease;
}
@media (width < 768px) {
  .top-events .p-category-tab__name {
    font-size: 16px;
  }
}
.top-events .p-category-tab__label {
  margin-top: 2px;
  color: var(--p-category-tab-label-color);
  font-size: 10px;
  line-height: 1;
  transition: color 200ms ease;
}
.top-events .p-category-tab--active {
  border-bottom-color: #000;
  --p-category-tab-icon-color: var(--p-category-tab-active-color);
}
.top-events .p-category-tab--active .p-category-tab__icon {
  display: none;
}
.top-events .p-category-tab--active .p-category-tab__name {
  font-weight: bold;
}
.top-events .p-category-tab--active .p-category-tab__label {
  color: var(--p-category-tab-active-color);
}
.top-events .p-category-tab:hover, .top-events .p-category-tab:focus-visible {
  cursor: pointer;
  /* ホバー時はアイコン色・ラベルをアクセントカラーに寄せる */
  --p-category-tab-icon-color: var(--p-category-tab-active-color);
}
.top-events .p-category-tab:hover .p-category-tab__name, .top-events .p-category-tab:focus-visible .p-category-tab__name {
  color: var(--p-category-tab-active-color);
}
.top-events .p-category-tab:hover .p-category-tab__label, .top-events .p-category-tab:focus-visible .p-category-tab__label {
  color: var(--p-category-tab-active-color);
}
.top-events .p-category-tab[data-category=学ぶ] {
  --p-category-tab-icon-url: url("../img/cat_seminar.svg");
}
.top-events .p-category-tab[data-category=競う] {
  --p-category-tab-icon-url: url("../img/cat_competition.svg");
}
.top-events .p-category-tab[data-category=見る] {
  --p-category-tab-icon-url: url("../img/cat_exhibition.svg");
}
.top-events .p-category-tab[data-category=働く] {
  --p-category-tab-icon-url: url("../img/cat_recruitment.svg");
}
.top-events .p-category-tab[data-category=すべて] {
  --p-category-tab-icon-url: url("../img/cat_all.svg");
}
@media (width < 768px) {
  .top-events .p-category-tab {
    flex: 0 0 20%;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    max-width: 20%;
    padding: 4px;
    text-align: center;
  }
  .top-events .p-category-tab::before {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
  }
  .top-events .p-category-tab__name {
    margin-bottom: 0;
    font-size: 11px;
  }
  .top-events .p-category-tab__label {
    color: #777;
    font-size: 9px;
  }
}
.top-events .event-container {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
@media (width < 768px) {
  .top-events .event-container {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
.top-events .event-container .event-aside {
  flex: 0 0 30%;
}
.top-events .event-container .event-aside__category-sub {
  color: transparent;
  font-weight: 800;
  font-size: 32px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  letter-spacing: 0.1em;
}
@media (width < 768px) {
  .top-events .event-container .event-aside__category-sub {
    display: none;
  }
}
.top-events .event-container .event-aside__category-name {
  margin-top: 8px;
  font-weight: 700;
  font-size: 60px;
}
@media (width < 768px) {
  .top-events .event-container .event-aside__category-name {
    display: block;
    margin-top: 0;
    font-size: 32px;
    text-align: left;
  }
}
.top-events .event-container .event-aside__category-description {
  margin-top: 16px;
  font-size: 14px;
}
@media (width < 768px) {
  .top-events .event-container .event-aside__category-description {
    display: none;
  }
}
.top-events .event-container .event-aside__category-image {
  display: block;
  width: 80%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  margin-top: 32px;
}
@media (width < 768px) {
  .top-events .event-container .event-aside__category-image {
    display: none;
    maring-top: 16px;
  }
}
.top-events .event-container .event-main-wrap {
  display: flex;
  flex: 1 1 70%;
  flex-direction: column;
  gap: 32px;
}
.top-events .event-container .event-main-wrap .event-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.top-events .event-container .event-main-wrap .event-main .event-card {
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.top-events .event-container .event-main-wrap .event-main .event-card__eyecatch-link {
  flex-shrink: 0;
}
.top-events .event-container .event-main-wrap .event-main .event-card__eyecatch {
  width: 100%;
  height: auto;
  margin: 0;
}
.top-events .event-container .event-main-wrap .event-main .event-card__content {
  flex: 1 1 auto;
}
.top-events .event-container .event-main-wrap .event-main > .event-card + .event-card {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #000;
}
.top-events .button-primary {
  margin: 0 auto;
}
.top-events #events-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 24px;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-align: center;
  background-color: #ffd42b;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (width < 768px) {
  .top-events #events-button {
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}
.top-events #events-button:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}
.top-events #events-button::after {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  transition: border-color 0.3s ease;
  content: "";
}
.top-events #events-button:hover::after {
  border-color: transparent transparent transparent #000;
}

.top-feature {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-feature {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .top-feature {
    padding: 0 16px;
  }
}
.top-feature {
  margin-top: 80px;
  padding-bottom: 80px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-feature {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
@media (width < 768px) {
  .top-feature {
    margin-top: 48px;
    padding-bottom: 60px;
  }
}
.top-feature__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.top-feature__title {
  font-weight: 700;
  font-size: 20px;
}
@media (width < 768px) {
  .top-feature__title {
    font-size: 16px;
  }
}
.top-feature__subtitle {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  margin-top: 8px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-feature__subtitle {
    font-size: 28px;
  }
}
@media (width < 768px) {
  .top-feature__subtitle {
    font-size: 20px;
    -webkit-text-stroke-width: 0.6px;
  }
}
.top-feature__more {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5em;
  white-space: nowrap;
}
@media (width < 768px) {
  .top-feature__more {
    font-size: 12px;
  }
}
.top-feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-feature__grid {
    gap: 24px;
  }
}
@media (width < 768px) {
  .top-feature__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.top-feature__grid .c-special-feature:nth-child(3) {
  display: none;
}
@media (width < 768px) {
  .top-feature__grid .c-special-feature:nth-child(3) {
    display: flex;
  }
}

.c-new-events.event-detail-related .c-new-events__inner {
  max-width: none;
}

.top-cta {
  margin-bottom: 80px;
}
.top-cta .c-company-cta__inner {
  max-width: none;
}
@media (width < 768px) {
  .top-cta {
    margin-bottom: 60px;
  }
}

.top-interview-article {
  width: 100%;
  background-color: #ffd42b;
}
.top-interview-article__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-interview-article__inner {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .top-interview-article__inner {
    padding: 0 16px;
  }
}
.top-interview-article__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (width < 768px) {
  .top-interview-article__inner {
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.top-interview-article__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (width < 768px) {
  .top-interview-article__content {
    gap: 16px;
  }
}
.top-interview-article__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.top-interview-article__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.top-interview-article__title {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
}
@media (width < 768px) {
  .top-interview-article__title {
    font-size: 16px;
  }
}
.top-interview-article__subtitle {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
  letter-spacing: 8px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-interview-article__subtitle {
    font-size: 28px;
    letter-spacing: 5.6px;
    -webkit-text-stroke-width: 1px;
  }
}
@media (width < 768px) {
  .top-interview-article__subtitle {
    font-size: 20px;
    letter-spacing: 2.6px;
    -webkit-text-stroke-width: 0.6px;
  }
}
.top-interview-article__link {
  flex-shrink: 0;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  font-family: Inter, sans-serif;
}
@media (width < 768px) {
  .top-interview-article__link {
    font-size: 12px;
  }
}
.top-interview-article__link {
  letter-spacing: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top-interview-article__link:hover {
  opacity: 0.7;
}
.top-interview-article__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-interview-article__row {
  display: flex;
  gap: 51px;
}
@media (width < 1280px) and (width >= 768px) {
  .top-interview-article__row {
    gap: 24px;
  }
}
@media (width < 768px) {
  .top-interview-article__row {
    flex-direction: column;
    gap: 16px;
  }
}
.top-interview-article__row .c-blog-card {
  flex: 1;
}
.top-interview-article__separator {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 2px solid #fff;
}
.top-interview-article__separator.is-sp-only {
  display: none;
}
@media (width < 768px) {
  .top-interview-article__separator.is-sp-only {
    display: block;
  }
}
.top-interview-article__archies {
  display: grid;
  grid-template: "area-image area-content" 1fr "area-image area-button" auto/1fr 330px;
  column-gap: 28px;
}
@media (width < 768px) {
  .top-interview-article__archies {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.top-interview-article__archies-image-wrap {
  display: flex;
  grid-area: area-image;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.top-interview-article__archies-image-link {
  width: 100%;
  cursor: pointer;
}
.top-interview-article__archies-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (width < 768px) {
  .top-interview-article__archies-image {
    max-height: none;
  }
}
.top-interview-article__archies-contents {
  display: flex;
  flex-direction: column;
  grid-area: area-content;
  justify-content: flex-start;
  color: #000;
  row-gap: 24px;
}
@media (width < 768px) {
  .top-interview-article__archies-contents {
    row-gap: 16px;
    text-align: left;
  }
}
.top-interview-article__archies-subtitle {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (width < 768px) {
  .top-interview-article__archies-subtitle {
    font-size: 16px;
  }
}
.top-interview-article__archies-title {
  color: transparent;
  font-weight: 800;
  font-size: 64px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
  letter-spacing: 6.4px;
}
@media (width < 768px) {
  .top-interview-article__archies-title {
    font-size: 64px;
  }
}
.top-interview-article__archies-description {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (width < 768px) {
  .top-interview-article__archies-description {
    font-size: 8px;
  }
}
.top-interview-article__archies-button {
  display: flex;
  grid-area: area-button;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 12px 0;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5em;
  text-decoration: none;
  background-color: #000b1c;
  border: 1px solid #000b1c;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.top-interview-article__archies-button::after {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  content: "";
}
.top-interview-article__archies-button:hover {
  opacity: 0.7;
}
@media (width < 768px) {
  .top-interview-article__archies-button {
    width: 100%;
    font-size: 12px;
  }
}
