@charset "UTF-8";


/*----------------------------------------
公演活動：カテゴリーナビゲーション
----------------------------------------*/
@media screen and (min-width: 768px) {
  #event_category_nav {
    width: 100%;
  }
  #event_category_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    row-gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 0;
  }
  #event_category_nav p, #event_category_nav ul li {
    flex-shrink: 0;
    width: 31.5%;
    max-width: 400px;
  }
  #event_category_nav p a, #event_category_nav ul li a {
    width: 100%;
    height: 100%;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    line-height: 1.4;
    transition: all 0.3s;
  }
  #event_category_nav p a .material-symbols-outlined,
  #event_category_nav ul li a .material-symbols-outlined {
    margin: 0 12px 0 0;
    font-size: 34px !important;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 34 !important;
  }
  #event_category_nav p a:hover .material-symbols-outlined,
  #event_category_nav ul li a:hover .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 34 !important;
  }
}

@media screen and (max-width: 767px) {
  #event_category_nav {
    width: 100%;
  }
  #event_category_nav ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 10px;
    margin: 10px 0 0;
  }
  #event_category_nav p {
    width: calc(50% - 10px);
  }
  #event_category_nav p a, #event_category_nav ul li a {
    width: 100%;
    height: 100%;
    padding: 8px 5px;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #333333;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: all 0.3s;
  }
  #event_category_nav p a .material-symbols-outlined,
  #event_category_nav ul li a .material-symbols-outlined {
    margin: 0 6px 0 0;
  }
  #event_category_nav p a:hover .material-symbols-outlined,
  #event_category_nav ul li a:hover .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24 !important;
  }
}

#event_category_nav p a::after,
#event_category_nav ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #333333 50%, #333333 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
#event_category_nav p a:hover,
#event_category_nav ul li a:hover {
  color: var(--red);
  font-weight: 500;
  background-color: rgba(197, 24, 31, 0.1);
  transition: all 0.3s;
}
#event_category_nav p a:hover::after,
#event_category_nav ul li a:hover::after {
  background: var(--red);
}
#event_category_nav .event_category_current a {
  color: var(--red);
  font-weight: 500;
  background-color: rgba(197, 24, 31, 0.1);
}
#event_category_nav .event_category_current a .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 34 !important;
}
#event_category_nav .event_category_current a::after {
  background: var(--red);
}


/*----------------------------------------
公演活動：一覧
----------------------------------------*/
@media screen and (min-width: 768px) {
  #event_archive_ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px 0 0;
  }
  #event_archive_ul:after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 31.5%;
    max-width: 380px;
  }
  #event_archive_ul li {
    flex-shrink: 0;
    width: 31.5%;
    max-width: 380px;
    margin: 0 0 80px;
  }
  #event_archive_ul li a div {
    margin: 0 0 18px;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 400/560;
  }
  #event_archive_ul li a p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  #event_archive_ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 35px;
    margin: 45px 0 40px;
  }
  #event_archive_ul li {
    width: 100%;
  }
  #event_archive_ul li a div {
    margin: 0 0 8px;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 400/560;
  }
  #event_archive_ul li a p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

#event_archive_ul li a {
  color: #000000;
}
#event_archive_ul li a div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}
#event_archive_ul li a:hover {
  color: #000000;
}
#event_archive_ul li a:hover div img {
  transform: scale(1.05, 1.05);
  transition: transform 0.2s;
}

