.title-Article {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
  color: #0C3572;
}
.title-Article::before, .title-Article::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #0C3572;
  opacity: 0.5;
}
.title-Article::before {
  margin-right: 24px;
}
.title-Article::after {
  margin-left: 24px;
}

.title-Section {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #0C3572;
}

.tx-Link {
  font-weight: bold;
  color: #0C3572;
}

.btn-Link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: clamp(12px, 2.4vw, 24px) auto 0;
  padding: clamp(6px, 1.2vw, 12px) clamp(18px, 3.6vw, 36px);
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(12px, 2.4vw, 24px);
  letter-spacing: 0.2em;
  color: white;
  background: #0C3572;
  border-radius: 0.4em;
}
.btn-Link .Icon {
  width: 2.4rem;
}
@media (max-width: 500px) {
  .btn-Link {
    margin-top: 6vw;
    padding: 3vw 6vw;
    font-size: 5vw;
  }
}

.fix-Btn {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  margin-top: 4.8rem;
  padding: 2.4rem 1.2rem;
  background: white;
}
.fix-Btn .btn-Link {
  margin-top: 0;
}
.fix-Btn .btn-Link small {
  font-size: 0.7em;
}

.card-Section {
  display: flex;
  align-items: start;
  gap: 12px;
}
.card-Section .Caption {
  flex-grow: 1;
}
@media (max-width: 500px) {
  .card-Section {
    flex-direction: column;
  }
  .card-Section .Image {
    order: 1;
  }
  .card-Section .Caption {
    order: 2;
  }
}

.box-Normal {
  padding: 12px;
}

@media (max-width: 500px) {
  .omit {
    display: none;
  }
}

.anim-Zoom {
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.anim-Zoom:hover {
  transform: scale(1.04);
}
@media (max-width: 500px) {
  .anim-Zoom:hover {
    transform: none;
  }
}

.mb-06 {
  margin-bottom: 0.6rem !important;
}

.lg-image {
  max-width: min(80%, 800px) !important;
  max-height: 80% !important;
}

.lg-backdrop {
  background: rgba(0, 0, 0, 0.8) !important;
}/*# sourceMappingURL=utility.css.map */