@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
strengthen
----------------------------------------*/
.c_event_lists {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c_event_lists {
    gap: 20px;
  }
}
.c_event_list {
  border-bottom: 1px solid var(--border_color);
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c_event_list {
    padding-bottom: 20px;
  }
}
.c_event_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c_event_item {
    gap: 15px;
  }
}
.c_event_item_head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c_event_item_head {
    gap: 15px;
  }
}
.c_event_item_time {
  font-family: var(--font_en);
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c_event_item_time {
    font-size: 1.4rem;
  }
}
.c_event_item_ttl {
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
}
@media screen and (max-width: 768px) {
  .c_event_item_ttl {
    font-size: 1.6rem;
  }
}
.c_event_category {
  border-radius: 4px;
  border: 1px solid;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  min-width: 92px;
  padding: 3px 10px 2px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_event_category {
    font-size: 1.2rem;
    min-width: 73px;
    padding: 2px 10px;
  }
}
.c_event_category_main {
  background-color: var(--main_color);
  border-color: var(--main_color);
  color: rgb(255, 255, 255);
}
.c_event_category_gray {
  background-color: rgb(170, 170, 170);
  border-color: rgb(170, 170, 170);
  color: rgb(255, 255, 255);
}