/* heading
----------------------------------- */
hgroup.title {
  text-align: center;
  margin-bottom: 50px;
}
hgroup.title h2 {
  font-size: 3.2rem;
  font-weight: 500;
}
hgroup.title .en {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-blue1);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  hgroup.title {
    margin-bottom: 2.5rem;
  }
  hgroup.title h2 {
    font-size: 2.2rem;
  }
  hgroup.title .en {
    font-size: 1.6rem;
  }
}

/* list
----------------------------------- */
.list_bell > li + li {
  margin-top: 10px;
}
.list_bell > li {
  display: flex;
  align-items: center;
  color: #00215e;
  font-weight: 500;
  gap: 15px;
}
.list_bell > li::before {
  content: "";
  aspect-ratio: 34/38;
  width: 34px;
  background: url(../img/cmn/icon_bell.svg) no-repeat 0 0/contain;
  flex-shrink: 0;
}

/* btn
----------------------------------- */
.btn_01 a {
  display: inline-block;
  min-width: 220px;
  color: #fff;
  background: var(--color-blue1);
  padding: 0.5em 1.5em 0.5em 1em;
  position: relative;
}
.btn_01 a::after {
  content: "";
  width: 6px;
  height: 12px;
  mask: url(../img/cmn/icon_arrow_01.svg) no-repeat 0 0/contain;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}
.btn_01 a:hover {
  color: #fff;
}