@charset "UTF-8";


/*----------------------------------------
公演活動：カテゴリー一覧
----------------------------------------*/
#event_category_list {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 12px;
}
#event_category_list li {
  font-size: 1rem;
  line-height: 1;
}
#event_category_list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  padding: 8px 15px 9px;
  transition: opacity, 0.3s;
}
#event_category_list li a:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: opacity, 0.3s;
}

@media screen and (max-width: 767px) {
  #event_category_list {
    margin: 0 0 25px;
  }
  #event_category_list li {
    font-size: 0.78125rem;
    letter-spacing: 0.5px;
  }
  #event_category_list li a {
    padding: 6px 9px 7px;
  }
}

#category_event-theater a {
  background-color: #93BF23;
}
#category_event-general a {
  background-color: #367EE4;
}
#category_event-elementary-school a {
  background-color: #17ADE0;
}
#category_event-kindergarten a {
  background-color: #F397D1;
}
#category_event-support-project a {
  background-color: #AE5FC7;
}
#category_event-senior-facility a {
  background-color: #ECA518;
}


/*----------------------------------------
公演活動：投稿記事コンテンツ
----------------------------------------*/
#event_post_wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
#event_post_wrap section {
  width: 100%;
  margin: 60px 0 0;
}
#event_post_wrap section a {
  color: #000000;
  text-decoration: underline;
}
#event_post_wrap section a:hover {
  color: var(--red);
}
#event_post_ttl {
  text-align: center;
  font-weight: 500;
  font-size: 2.125rem;
  line-height: 1.35;
  margin: 0 0 10px;
}
#event_post_main {
  width: 100%;
  text-align: center;
}
#event_post_main #event_post_main_img {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  line-height: 0;
}
#event_post_desc h2 {
  text-align: center;
  font-family: "Kaisei Opti", serif !important;
  font-weight: 500 !important;
  color: var(--red) !important;
  font-size: 2rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
}
.event_post_h3 {
  width: 100%;
  display: flex;
  align-items: center;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.4;
}
.event_post_h3::before, .event_post_h3::after {
  content: "";
  display: block;
  height: 1px;
  flex-grow: 1;
  background-color: #000000;
}
.event_post_h3::before {
  margin-right: 20px;
}
.event_post_h3::after {
  margin-left: 20px;
}
#event_post_prog dl {
  width: 100%;
  background-image: linear-gradient(to right, #333333 30%, transparent 30%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  display: flex;
  gap: 30px;
  padding: 20px 0;
}
#event_post_prog dl:last-child {
  background-image: none !important;
  padding-bottom: 0 !important;
}
#event_post_prog dl dt {
  width: 220px;
  flex-shrink: 0;
}
.event_post_sec .event_post_h3 {
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  #event_post_wrap section {
    margin: 40px 0 0;
  }
  #event_post_ttl {
    text-align: left;
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 1.65;
  }
  #event_post_main {
    text-align: left;
  }
  #event_post_main #event_post_main_img {
    margin: 15px auto;
  }
  #event_post_desc h2 {
    text-align: left;
    font-size: 1.09375rem !important;
    line-height: 1.6 !important;
  }
  .event_post_h3 {
    font-size: 1.09375rem;
    line-height: 1.4;
  }
  .event_post_h3::before {
    margin-right: 12px;
  }
  .event_post_h3::after {
    margin-left: 12px;
  }
  #event_post_prog .event_post_h3 {
    margin: 0 0 3px;
  }
  #event_post_prog dl {
    gap: 20px;
    padding: 12px 0;
  }
  #event_post_prog dl dt {
    width: 25%;
  }
  .event_post_sec .event_post_h3 {
    margin: 0 0 15px;
  }
}

