@charset "UTF-8";

/* =============================================
   font / base override (about/css/uniq.css 準拠)
   ============================================= */
*,
*::after,
*::before {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: initial;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  box-sizing: border-box;
  min-inline-size: 0;
}

img {
  max-width: 100%;
}

/* =============================================
   page wrapper
   ============================================= */
.p-event {
  position: relative;
  z-index: 3;
  padding-block: 3rem 9rem;   /* PC 上 30px（special/number.php 準拠） */
  background: #F4FBFF;
}
@media screen and (max-width: 767px) {
  .p-event {
    padding-block: 2rem 5.6rem;   /* SP 上 20px */
  }
}

.p-event #breadChumbs {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 4rem 5rem;       /* 上余白は .p-event の padding に委ねる */
  color: #555;
}
.p-event #breadChumbs a {
  color: #182a86;
}
@media screen and (max-width: 767px) {
  .p-event #breadChumbs {
    font-size: 1.1rem;
    margin: 0 0 2.4rem 4vw;
  }
}

/* =============================================
   secMv : ページ見出し（graduate/description/css/uniq.css と同一定義）
   ============================================= */
.secMv {
  position: relative;
  z-index: 2;
  margin-top: var(--header-height);
  height: 160px;
}
@media screen and (max-width: 800px) {
  .secMv {
    height: 120px;
  }
}
.secMv .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.secMv .bg img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  object-position: center bottom;
}
.secMv .inner {
  display: flex;
  align-items: center;
  margin-inline: auto;
  width: 78.9165446559%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .secMv .inner {
    align-items: center;
    padding-top: 0;
  }
}
.secMv .ttl {
  width: 100%;
  text-align: center;
}
.secMv .ttl_jp,
.secMv .ttl_en {
  color: #fff;
  text-align: center;
  display: block;
}
.secMv .ttl_jp {
  font-family: "Noto Sans JP", "Roboto Condensed", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 2.9282576867vw;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .secMv .ttl_jp {
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-indent: 0.04em;
  }
}
.secMv .ttl_en {
  font-family: "Roboto Condensed", monospace;
  font-weight: 400;
  font-size: 1.0248901903vw;
  line-height: 1.5;
  margin-top: 0.5856515373vw;
}
@media screen and (max-width: 800px) {
  .secMv .ttl_en {
    font-size: 2.4154589372vw;
    line-height: 1.5;
    margin-top: 1.9323671498vw;
  }
}

/* =============================================
   c-cat-filter : カテゴリフィルタ
   ============================================= */
.c-cat-filter {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-cat-filter {
    margin-bottom: 2rem;
  }
}

.c-cat-filter_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-cat-filter_list {
    gap: 0.8rem;
    justify-content: flex-start;
  }
}

.c-cat-filter_btn {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 0.15rem solid #c8d0dc;
  color: #555;
  border-radius: calc(infinity * 1px);
  padding: 0.8rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.c-cat-filter_btn:focus-visible {
  outline: 0.2rem solid #182a86;
  outline-offset: 0.2rem;
}
@media (any-hover: hover) {
  .c-cat-filter_btn:hover {
    background: #182a86;
    border-color: #182a86;
    color: #fff;
  }
}
.c-cat-filter_btn.is-active {
  background: #182a86;
  border-color: #182a86;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-cat-filter_btn {
    padding: 0.6rem 1.6rem;
    font-size: 1.2rem;
  }
}

/* =============================================
   sec-event-list : カードリストのラッパ
   ============================================= */
.sec-event-list_list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-event-list_list {
    gap: 3.2rem;   /* SP: カード間余白を2倍に */
  }
}

/* =============================================
   c-event-card : イベントカード
   ============================================= */
.c-event-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "mv"
    "body";
  background: #fff;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.2));
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c-event-card {
    grid-template-columns: 7fr 9fr;
    grid-template-areas: "body mv";
  }
}
@media (any-hover: hover) {
  .c-event-card:has(:is(.c-event-card_btn_link, .c-event-card_ttl_link, .c-event-card_mv_link):hover) {
    box-shadow: 0 0.8rem 1.6rem rgba(24, 42, 134, 0.12);
    transform: translateY(-0.2rem);
  }
}

.c-event-card._is-closed {
  opacity: 0.6;
}
.c-event-card._is-closed .c-event-card_ttl {
  color: #999;
}
.c-event-card._is-closed .c-event-card_meta_value,
.c-event-card._is-closed .c-event-card_meta_label {
  color: #aaa;
}

/* card body */
.c-event-card_body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-event-card_body {
    padding: 1.6rem;
    gap: 1.2rem;
  }
}

/* badges */
.c-event-card_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-event-card_badges {
    margin-bottom: 0.8rem;
  }
}

.c-event-card_badges_item {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: calc(infinity * 1px);
  border: 2px solid transparent;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-event-card_badges_item {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
  }
}

/* badges: category */
.c-event-card_badges_item._cat-a {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #6495ed;
}
.c-event-card_badges_item._cat-b {
  background: #d1fae5;
  color: #065f46;
  border-color: #34d399;
}
.c-event-card_badges_item._cat-c {
  background: #ede9fe;
  color: #5b21b6;
  border-color: #a78bfa;
}

/* badges: status */
.c-event-card_badges_item._status-open {
  background: #d1fae5;
  color: #065f46;
  border-color: #6ee7b7;
}
.c-event-card_badges_item._status-soon {
  background: #fef3c7;
  color: #92400e;
  border-color: #fcd34d;
}
.c-event-card_badges_item._status-end {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #d1d5db;
}

/* title */
.c-event-card_ttl {
  font-size: 2.8rem;
  line-height: 1.55;
  font-weight: 700;
  color: #182a86;
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-event-card_ttl {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.c-event-card_ttl_link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .c-event-card_ttl_link:hover {
    color: #e8873b;
  }
}

/* meta */
.c-event-card_meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-event-card_meta {
    gap: 0.4rem;
  }
}

.c-event-card_meta_row {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0 1rem;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .c-event-card_meta_row {
    grid-template-columns: 4.0rem 1fr;
  }
}

.c-event-card_meta_label {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, rgb(158, 185, 165) 0%, rgb(115, 150, 221) 43%);
  border-radius: 0.3rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-event-card_meta_label {
    font-size: 1.4rem;
  }
}

.c-event-card_meta_value {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-event-card_meta_value {
    font-size: 1.6rem;
    line-height: 1.55;
  }
}

/* button */
.c-event-card_btn {
  margin-top: auto;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-event-card_btn {
    align-self: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .c-event-card_btn {
    width: 100%;
  }
}

.c-event-card_btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.8rem;
  padding: 0.8rem 2.2rem;
  border: 0.15rem solid #e8873b;
  border-radius: calc(infinity * 1px);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #e8873b;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .c-event-card_btn_link:hover:not(._is-disabled) {
    background: #fff;
    color: #e8873b;
  }
}
.c-event-card_btn_link._is-disabled {
  pointer-events: none;
  background: #fff;
  border-color: #ccc;
  color: #bbb;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .c-event-card_btn_link {
    width: 100%;
    padding: 1rem 1.6rem;
    font-size: 1.3rem;
  }
}

.c-event-card_btn_link_arrow {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  transform: rotate(45deg);
}
/* card MV */
.c-event-card_mv {
  grid-area: mv;
  margin: 0;
  position: relative;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-event-card_mv {
    border-left: 0.15rem solid #e0e6ee;
  }
}
@media screen and (max-width: 767px) {
  .c-event-card_mv {
    height: auto;
    min-height: unset;
  }
}

/* card MV 背景ぼかし（PC のみ） */
.c-event-card_mv_bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-event-card_mv_bg {
    display: block;
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    opacity: 0.3;
    z-index: 0;
  }
  .c-event-card_mv_link {
    position: relative;
    z-index: 1;
  }
  .c-event-card_mv img {
    position: relative;
    z-index: 1;
  }
}

.c-event-card_mv_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.c-event-card_mv img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =============================================
   c-pagination : ページネーション
   ============================================= */
.c-pagination {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 3.2rem;
  }
}

.c-pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-pagination_list {
    gap: 0.6rem;
  }
}

.c-pagination_list_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 0.15rem solid #dde2eb;
  border-radius: 0.6rem;
  background: #fff;
  color: #555;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (any-hover: hover) {
  .c-pagination_list_link:hover {
    background: #182a86;
    border-color: #182a86;
    color: #fff;
  }
}
.c-pagination_list_link.is-active {
  background: #182a86;
  border-color: #182a86;
  color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-pagination_list_link {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.3rem;
  }
}

/* =============================================
   詳細ページ : page wrapper
   ============================================= */
.p-event-detail {
  position: relative;
  z-index: 3;
  padding-block: 2rem 9rem;
  background: #F4FBFF;
}
@media screen and (max-width: 767px) {
  .p-event-detail {
    padding-block: 1.0rem 5.6rem;
  }
}

/* =============================================
   c-event-detail_head : タイトルバー（フルカラム）
   ============================================= */
.c-event-detail_head {
  margin-bottom: 0;
}

.c-event-detail_head .c-wrap {
  padding-block: 2.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-event-detail_head .c-wrap {
    padding-block: 1.0rem 1.2rem;
  }
}

.c-event-detail_head .c-event-card_badges {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-event-detail_head .c-event-card_badges {
    margin-bottom: 0.8rem;
  }
}

.c-event-detail_ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #182a86;
  letter-spacing: 0.04em;
  margin-bottom: 1.0rem;
}
@media screen and (max-width: 767px) {
  .c-event-detail_ttl {
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 1.0rem;
  }
}

/* =============================================
   c-event-detail_mv : MV
   - PC: 2カラム本文（.c-wrap = max 960px / 355÷375 幅）と同寸、
         アスペクト比 8:3（元画像 16:9 の縦 2/3 を表示、上下 1/6 ずつトリム）
   - SP: フル幅・16:9（現状維持）
   ============================================= */
.c-event-detail_mv {
  margin: 0 auto 4rem;
  width: calc(355 / 375 * 100%);
  max-width: 960px;
  background: #e7eef7;
}
@media screen and (max-width: 767px) {
  .c-event-detail_mv {
    margin: 0 auto 2.4rem;
    width: 100%;
    max-width: none;
  }
}
.c-event-detail_mv img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   c-event-detail_cols : 2カラムレイアウト（5:5）
   ============================================= */
.c-event-detail_cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media screen and (min-width: 768px) {
  .c-event-detail_cols {
    grid-template-columns: 4fr 6fr;
    gap: 3.2rem;
    align-items: stretch;
  }
}

.c-event-detail_cols_left,
.c-event-detail_cols_right {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-event-detail_cols_left,
  .c-event-detail_cols_right {
    gap: 2rem;
  }
}

/* =============================================
   c-event-info : 開催概要テーブル
   ============================================= */
.c-event-info_label {
  display: inline-flex;
  align-items: center;
  gap: 0 0.6rem;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: 700;
  color: #182a86;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.c-event-info_icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  fill: #182a86;
}

.c-event-info_table-wrap {
  background: #fff;
  border: 0.1rem solid #e0e6ee;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-event-info_table-wrap {
    padding: 0.4rem 1.2rem;
  }
}

.c-event-info_table {
  width: 100%;
  border-collapse: collapse;
}

.c-event-info_table tr {
  border-bottom: 0.1rem solid #e8eef6;
}
.c-event-info_table tr:last-child {
  border-bottom: none;
}

.c-event-info_table_th,
.c-event-info_table_td {
  padding: 1.2rem 0.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-event-info_table_th,
  .c-event-info_table_td {
    padding: 1rem 0.2rem;
    font-size: 1.6rem;
  }
}

.c-event-info_table_th {
  width: 8.8rem;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-event-info_table_th {
    width: 8.4rem;
  }
}

.c-event-info_table_td {
  color: #222;
  font-weight: 500;
}

.c-event-info_date {
  display: flex;
  align-items: baseline;
  gap: 0 0.6rem;
  margin-bottom: 0.4rem;
}
.c-event-info_date:last-of-type {
  margin-bottom: 0.6rem;
}
.c-event-info_date_no {
  display: inline-block;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  color: #182a86;
  min-width: 1.4rem;
}
.c-event-info_date_txt {
  flex: 1;
}

/* =============================================
   c-event-line-cta : LINE申込ボタン（受付中のみ表示）
   - 既定（PC）: 左カラム内のオリジナルを表示、エディタ下の ._sp は非表示
   - SP: オリジナルを非表示、エディタ直下の ._sp を表示
   ============================================= */
.c-event-line-cta._sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-event-line-cta:not(._sp) {
    display: none;
  }
  .c-event-line-cta._sp {
    display: block;
  }
}

.c-event-line-cta_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-event-line-cta_list {
    gap: 0.8rem;
  }
}

.c-event-line-cta_list_item {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 14rem;
}
@media screen and (max-width: 767px) {
  .c-event-line-cta_list_item {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.c-event-line-cta_card {
  background: #fff;
  border: 0.15rem solid #c8d0dc;
  border-radius: 0.8rem;
  padding: 1.4rem 1rem;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-event-line-cta_card {
    padding: 1.2rem 1rem;
  }
}

.c-event-line-cta_card_head {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  color: #182a86;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-event-line-cta_card_head {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
}

.c-event-line-cta_card_btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 0.8rem;
  background: linear-gradient(45deg, rgb(158, 185, 165) 0%, rgb(115, 150, 221) 43%);
  background-color: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-event-line-cta_card_btn_link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-event-line-cta_card_btn_link {
    font-size: 1.6rem;
    padding: 0.8rem;
  }
}

/* =============================================
   c-back-link : 一覧に戻る
   ============================================= */
.c-back-link {
  margin-top: 0.8rem;
}
.c-back-link._center {
  margin-top: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-back-link._center {
    margin-top: 3.2rem;
  }
}

.c-back-link_link {
  display: inline-flex;
  align-items: center;
  gap: 0 0.6rem;
  padding: 0.8rem 2rem;
  border: 0.15rem solid #182a86;
  border-radius: calc(infinity * 1px);
  background: #182a86;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (any-hover: hover) {
  .c-back-link_link:hover {
    background: #fff;
    color: #182a86;
  }
}
@media screen and (max-width: 767px) {
  .c-back-link_link {
    padding: 1rem 1.6rem;
  }
}

.c-back-link_arrow {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid currentColor;
  border-left: 0.2rem solid currentColor;
  transform: rotate(-45deg);
}

/* =============================================
   c-event-editor : 詳細エディタエリア
   ============================================= */
.c-event-editor_content {
  background: #fff;
  border: 0.1rem solid #e0e6ee;
  border-radius: 0.8rem;
  padding: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-event-editor_content {
    padding: 1.6rem;
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.c-event-editor_content > *:not(:first-child) {
  margin-top: 1.6rem;
}

.c-event-editor_content h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #182a86;
  letter-spacing: 0.04em;
  padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid #182a86;
}
@media screen and (max-width: 767px) {
  .c-event-editor_content h3 {
    font-size: 1.6rem;
  }
}

.c-event-editor_content h4 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #182a86;
  padding-left: 1rem;
  border-left: 0.3rem solid #182a86;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-event-editor_content h4 {
    font-size: 1.4rem;
  }
}

.c-event-editor_content p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.c-event-editor_content ul {
  padding-left: 0;
  list-style: none;
}
.c-event-editor_content ul > li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.8;
}
.c-event-editor_content ul > li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: calc(infinity * 1px);
  background: #182a86;
}
.c-event-editor_content ul > li + li {
  margin-top: 0.4rem;
}

.sec-event-list_list_item.is-hidden {
  display: none;
}

/* タイトル文字数省略 */
.u-pc { display: inline; }
.u-sp { display: none; }

@media (max-width: 800px) {
    .u-pc { display: none; }
    .u-sp { display: inline; }
}

/* 開催日注釈・開催形式補足 */
.c-event-info_dates_note,
.c-event-info_format_note {
  display: block;
  margin-top: 5px;
  font-weight: normal;
  color: #666;
}
