:root {
  --color_base: #09576C;
  --color_body: #FFF9F6;
  --color_pink_01: #E95887;
  --color_pink_02: #ECA385;
  --color_red_01: #b45757;
  --color_greige_01: #E6CEC5;
  --color_orange_01: #E07D2E;
  --color_orange_02: #FF7B28;
  --color_orange_03: #FF9436;
  --color_orange_04: #FFA11F;
  --color_orange_05: #FF7F68;
  --color_yellow_01: #F4C334;
  --color_bluegreen_01: #B6D1CF;
  --headerFixedPadding: 0px;
}

/* ------------------------------------
// top
------------------------------------ */
.pagetitle img {
  width: clamp(16.4rem, 11.4vw, 16.4rem);
}

/* ------------------------------------
// #leadBlock
------------------------------------ */
#newsContainer {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #newsContainer {
    width: min(1200px, 100% - 3rem);
  }
}
#newsContainer {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #newsContainer {
    padding-inline: 2rem;
  }
}
#newsContainer {
  margin: 4rem auto;
}
#newsContainer > section + section {
  margin-top: 6rem;
}
#newsContainer > section {
  padding: clamp(1.5rem, 2.8vw, 4rem);
  position: relative;
}
#newsContainer > section::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: #FFF;
  filter: url(#doo-wap);
  z-index: 0;
}
#newsContainer > section > * {
  position: relative;
}
#newsContainer > section .date {
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  font-weight: 700;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
#newsContainer > section h2 {
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 2rem;
}
#newsContainer > section p + p {
  margin-top: 1.5em;
}