@charset "UTF-8";
/* noto-sans-jp-regular - japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/*リセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-size: 100%;
  font-weight: 400;
  line-height: 1;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button], input[type=text], input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

th, td {
  border-collapse: collapse;
}

table th, table td {
  white-space: nowrap;
}

ul, ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  height: auto;
}

a {
  color: unset;
  text-decoration: none;
}

:root {
  --text-shadow: 0 0 12px rgba(12, 52, 113, 0.2);
  --box-shadow: 0 4px 4px rgba(73, 103, 147, 0.08);
  --main-green: #429A9A;
  --main-blue: #4372BA;
  --text-color: #333333;
  --background-color: #ECF3F1;
  --border-color: #D9DFE8;
}

* {
  word-break: break-all;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  line-height: 1.6;
  color: var(--text-color);
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
body.fixed {
  overflow-y: hidden;
}

.text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 820px) {
  .text {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.text:last-child {
  margin-bottom: 0;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}

img.img--round {
  border-radius: 8px;
}

.tel {
  text-decoration: underline;
}

.content-area {
  padding: 56px 40px 80px;
}
@media (max-width: 820px) {
  .content-area {
    padding: 32px 24px 56px;
  }
}
.content-area__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.breadcrumb {
  padding: 16px 40px;
  background-color: var(--background-color);
}
@media (max-width: 820px) {
  .breadcrumb {
    padding: 8px 16px;
  }
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.breadcrumb__list li {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 820px) {
  .breadcrumb__list li {
    font-size: 1.4rem;
  }
}
.breadcrumb__list li::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-left: 8px;
  background-image: url("../../dist/img/common/breadcrumb-arrow.svg");
}
.breadcrumb__list li:last-child::after {
  display: none;
}
.breadcrumb__list li a {
  font-weight: 400;
  text-decoration: underline;
}
.breadcrumb__list li a:hover {
  opacity: 1;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
  transition: ease-out 0.3s;
}

.link {
  color: var(--main-blue);
  font-weight: 700;
}

.button-layout {
  margin: 48px auto;
  text-align: center;
}
@media (max-width: 820px) {
  .button-layout {
    margin: 32px auto;
  }
}
.button-layout:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-block;
  position: relative;
  width: 320px;
  padding: 24px 80px 24px 48px;
  color: var(--main-blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border: 2px solid var(--main-blue);
  border-radius: 100vw;
  box-shadow: var(--box-shadow);
}
@media (max-width: 820px) {
  .button {
    width: 280px;
    padding: 16px 64px 16px 32px;
    font-size: 1.6rem;
  }
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../../dist/img/common/button-arrow.svg);
}
.button--back {
  padding: 24px 48px 24px 80px;
}
@media (max-width: 820px) {
  .button--back {
    padding: 16px 32px 16px 64px;
  }
}
.button--back::after {
  right: auto;
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-list__item {
  display: flex;
  gap: 24px;
  font-size: 1.8em;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .news-list__item {
    flex-direction: column;
    gap: 0;
    font-size: 1.6rem;
  }
}
.news-list__date {
  color: var(--main-green);
  font-weight: 700;
  word-break: normal;
}
.news-list__new-label {
  margin-left: 8px;
  padding: 4px 8px;
  background-color: var(--background-color);
  color: var(--main-green);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  border-radius: 4px;
}
@media (max-width: 820px) {
  .news-list__new-label {
    font-size: 1.2rem;
  }
}

.table {
  width: 100%;
  margin-bottom: 80px;
  table-layout: fixed;
  border-radius: 8px;
  border-spacing: 0;
  border-collapse: separate;
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
@media (max-width: 820px) {
  .table {
    margin-bottom: 56px;
  }
}
.table th {
  width: 25%;
  background-color: var(--background-color);
}
.table th, .table td {
  padding: 32px 48px;
  font-size: 2rem;
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}
@media (max-width: 820px) {
  .table th, .table td {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 1.6rem;
  }
}
.table th .hankaku::before, .table td .hankaku::before {
  content: " ";
}
.table th .zenkaku::before, .table td .zenkaku::before {
  content: "　";
}
.table th b, .table td b {
  font-weight: 400;
  font-size: 2.4rem;
}
@media (max-width: 820px) {
  .table th b, .table td b {
    font-size: 2rem;
  }
}
.table th {
  text-align: center;
}
@media (max-width: 820px) {
  .table th {
    padding: 8px 24px;
  }
}
.table tr:first-child th {
  border-radius: 8px 0 0 0;
}
@media (max-width: 820px) {
  .table tr:first-child th {
    border-radius: 8px 8px 0 0;
  }
}
.table tr:first-child td {
  border-radius: 0 8px 0 0;
}
@media (max-width: 820px) {
  .table tr:first-child td {
    border-radius: 0;
  }
}
.table tr:last-child th {
  border-radius: 0 0 0 8px;
}
@media (max-width: 820px) {
  .table tr:last-child th {
    border-radius: 0;
  }
}
.table tr:last-child td {
  border-radius: 0 0 8px 0;
}
@media (max-width: 820px) {
  .table tr:last-child td {
    border-radius: 0 0 8px 8px;
  }
}

.media {
  margin: 32px 0;
  text-align: center;
}
@media (max-width: 820px) {
  .media {
    margin: 24px 0;
  }
}
.media:first-child {
  margin-top: 0;
}
.media:last-child {
  margin-bottom: 0;
}
.media img {
  max-width: 100%;
  border-radius: 16px;
}

.media-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 820px) {
  .media-layout {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
.media-layout__img {
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 820px) {
  .media-layout__img {
    max-width: 80%;
  }
}
@media (max-width: 820px) {
  .media-layout__img img {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .media-layout p {
    text-align: center;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  box-shadow: var(--box-shadow);
  z-index: 99999;
  transition: all 0.3s;
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 40px;
  background-color: #FFF;
}
@media (max-width: 820px) {
  .header__inner {
    padding: 8px;
    gap: 32px;
  }
}
.header__logo {
  width: 320px;
}
@media (max-width: 820px) {
  .header__logo {
    width: 240px;
  }
}
.header__logo img {
  width: 100%;
}
.header__button {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--background-color);
  border: none;
  border-radius: 8px;
}
@media (max-width: 820px) {
  .header__button {
    display: block;
  }
}
.header__button span {
  width: 24px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-green);
  border-radius: 1px;
  transition: all 0.2s ease-in-out;
}
.header__button span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__button span:nth-child(1) {
  top: 16px;
}
.header__button span:nth-child(3) {
  bottom: 16px;
}
.header__navigation {
  display: flex;
  gap: 40px;
  font-size: 1.8rem;
  background-color: #FFF;
}
@media (max-width: 820px) {
  .header__navigation {
    display: block;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 0 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 820px) {
  .header__navigation li {
    display: block;
  }
}
.header__navigation li a {
  display: block;
}
@media (max-width: 820px) {
  .header__navigation li a {
    padding: 16px 0;
    text-align: center;
  }
}
.header__overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(73, 103, 147, 0.32);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}
.header.open .header__overlay {
  visibility: visible;
  opacity: 1;
}
.header.open .header__navigation {
  visibility: visible;
  opacity: 1;
}
.header.open .header__button span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}
.header.open .header__button span:nth-child(2) {
  opacity: 0;
}
.header.open .header__button span:nth-child(3) {
  bottom: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.header._hidden {
  box-shadow: none;
  transform: translateY(-100%);
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
}
.footer__inner {
  width: 100%;
  padding: 80px 40px;
  text-align: center;
  background-color: var(--background-color);
}
@media (max-width: 820px) {
  .footer__inner {
    padding: 40px 16px;
  }
}
.footer__inner small {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .footer__inner small {
    font-size: 1.4rem;
  }
}

.br--sp {
  display: none;
}
@media (max-width: 430px) {
  .br--sp {
    display: block;
  }
}

.top-mv {
  position: relative;
  overflow: hidden;
}
.top-mv__content {
  width: 100%;
  max-width: 1160px;
  margin: 48px auto 400px;
  padding: 0 24px;
  color: #FFF;
  font-weight: 700;
}
@media (max-width: 820px) {
  .top-mv__content {
    margin: 24px 0 140px;
    padding: 0 16px;
  }
}
.top-mv__content-title {
  margin-bottom: 24px;
  font-size: min(6rem, 5vw);
  text-align: center;
  text-shadow: var(--text-shadow);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .top-mv__content-title {
    margin-bottom: 16px;
    font-size: 3.2rem;
    text-align: left;
  }
}
.top-mv__content-text {
  font-size: 2.4rem;
  text-shadow: var(--text-shadow);
  text-align: center;
  line-height: 2.4;
}
@media (max-width: 820px) {
  .top-mv__content-text {
    font-size: 2rem;
    text-align: left;
  }
}
@media (max-width: 820px) and (max-width: 430px) {
  .top-mv__content-text {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.top-mv__content-text strong {
  display: inline-block;
  margin-right: 8px;
  padding: 8px;
  background-color: #FFF;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--main-green);
  text-shadow: none;
  border-radius: 4px;
}
@media (max-width: 820px) {
  .top-mv__content-text strong {
    font-size: 2.4rem;
  }
}
.top-mv__content-text b {
  display: inline-block;
  margin-right: 8px;
  padding: 8px;
  background-color: #FFF;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--main-blue);
  text-shadow: none;
  border-radius: 4px;
}
@media (max-width: 820px) {
  .top-mv__content-text b {
    font-size: 2rem;
  }
}
.top-mv__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1920px) {
  .top-mv__shape {
    width: 100vw;
    max-width: 2560px;
  }
}
@media (max-width: 820px) {
  .top-mv__shape {
    width: 100vw;
  }
}
.top-mv__anchor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -32px);
  filter: drop-shadow(var(--box-shadow));
  transition: all 0.3s;
  z-index: 9999;
}
.top-mv__anchor:hover {
  transform: translate(-50%, -24px);
  filter: none;
}
.top-mv__img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  z-index: -100;
}
@media (max-width: 820px) {
  .top-mv__img {
    height: auto;
    top: -120px;
  }
}
@media (max-width: 820px) and (max-width: 430px) {
  .top-mv__img {
    top: 0;
  }
}
@media (min-width: 1920px) {
  .top-mv__img img {
    width: 100vw;
    height: auto;
  }
}

.top-heading-02 {
  padding: 100px 0 40px;
}
@media (max-width: 820px) {
  .top-heading-02 {
    padding: 56px 0 24px;
  }
}
.top-heading-02:first-child {
  padding-top: 0;
}
.top-heading-02 h2 {
  font-weight: 700;
  font-size: 4.8rem;
  color: var(--main-blue);
  text-align: center;
}
@media (max-width: 820px) {
  .top-heading-02 h2 {
    font-size: 3.2rem;
  }
}
.top-heading-02__sub {
  margin-top: 24px;
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .top-heading-02__sub {
    margin-top: 16px;
    font-size: 1.6rem;
  }
}
.top-heading-02__sub b {
  color: var(--main-green);
  font-size: 3.2rem;
}
@media (max-width: 820px) {
  .top-heading-02__sub b {
    font-size: 2rem;
  }
}

.top-content-area {
  padding: 100px 40px 120px;
}
@media (max-width: 820px) {
  .top-content-area {
    padding: 48px 24px 72px;
  }
}
.top-content-area--color {
  background-color: var(--background-color);
}
.top-content-area--first {
  position: relative;
  z-index: 100;
}
.top-content-area__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.top-text {
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .top-text {
    font-size: 1.6rem;
  }
}
.top-text strong {
  color: var(--main-blue);
  font-size: 2.4rem;
  line-height: 1;
}
@media (max-width: 820px) {
  .top-text strong {
    font-size: 2rem;
  }
}

.top-news-area {
  padding: 0 40px;
}
@media (max-width: 820px) {
  .top-news-area {
    padding: 0 24px;
  }
}

.top-news {
  position: relative;
  width: 100%;
  max-width: 920px;
  padding: 56px 80px 48px;
  margin: -80px auto 0;
  border-radius: 24px;
  border: 2px solid var(--border-color);
}
@media (max-width: 820px) {
  .top-news {
    margin: 48px auto 0;
    padding: 40px 24px 32px;
    border-radius: 16px;
  }
}
.top-news__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 80px;
  background-color: var(--main-green);
  color: #FFF;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  border-radius: 9999px;
}
@media (max-width: 820px) {
  .top-news__heading {
    font-size: 1.6rem;
    padding: 8px 48px;
  }
}

.top-card-layout {
  display: flex;
  gap: 32px;
}
@media (max-width: 820px) {
  .top-card-layout {
    flex-direction: column;
    gap: 24px;
  }
}

.top-card {
  width: calc((100% - 48px) / 3);
  padding: 64px 40px 48px;
  position: relative;
  background-color: var(--background-color);
  border-radius: 24px;
}
@media (max-width: 820px) {
  .top-card {
    width: 100%;
    padding: 32px;
  }
}
.top-card__number {
  display: inline-flex;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-green);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: #FFF;
  border-radius: 24px 0 48px 0;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .top-card__number {
    width: 56px;
    height: 56px;
    font-size: 2.4rem;
    border-radius: 12px 0 24px 0;
  }
}
.top-card__number span {
  transform: translateY(-3px);
}
.top-card__img {
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 820px) {
  .top-card__img {
    margin-bottom: 8px;
  }
}
.top-card__img img {
  max-width: 100%;
}

.top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding: 80px 100px;
  background-color: #FFF;
  border-radius: 40px;
}
@media (max-width: 820px) {
  .top-box {
    gap: 16px;
    flex-direction: column;
    margin-bottom: 24px;
    padding: 48px 24px 32px;
    border-radius: 20px;
  }
}
.top-box:last-child {
  margin-bottom: 0;
}
.top-box__content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .top-box__content {
    display: block;
  }
}
.top-box__content-inner {
  position: relative;
  z-index: 1;
}
.top-box__number {
  position: relative;
}
.top-box__number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background-color: #F3F4C7;
  border-radius: 50%;
}
@media (max-width: 820px) {
  .top-box__number::before {
    width: 100px;
    height: 100px;
  }
}
.top-box__number span {
  display: block;
  position: relative;
  font-size: 8rem;
  color: var(--main-blue);
  line-height: 1;
  font-weight: 700;
  z-index: 1;
  transform: translateY(-2px);
  word-break: normal;
}
@media (max-width: 820px) {
  .top-box__number span {
    margin-bottom: 8px;
    font-size: 4rem;
    text-align: center;
  }
}
.top-box__heading {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .top-box__heading {
    display: block;
    min-height: auto;
    margin-bottom: 16px;
    font-size: 2.4rem;
    text-align: center;
  }
}
@media (max-width: 820px) {
  .top-box__img {
    width: 160px;
  }
  .top-box__img img {
    max-width: 100%;
  }
}

.top-banner-area {
  margin-top: 100px;
  padding: 0 40px;
}
@media (max-width: 820px) {
  .top-banner-area {
    margin-top: 48px;
    padding: 0 24px;
  }
}
.top-banner-area__item {
  text-align: center;
}
.top-banner-area__item img {
  max-width: 100%;
  border-radius: 16px;
}

.news-heading {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}
@media (max-width: 820px) {
  .news-heading {
    padding: 40px 16px;
  }
}
.news-heading__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.news-heading h1 {
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 820px) {
  .news-heading h1 {
    font-size: 2.4rem;
  }
}
.news-heading__sub {
  margin-top: 16px;
  font-size: 2rem;
}
@media (max-width: 820px) {
  .news-heading__sub {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
.news-heading__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -100;
}
.news-heading__bg img {
  height: 100%;
  width: auto;
}
@media (min-width: 1920px) {
  .news-heading__bg img {
    width: 100vw;
  }
}

.news-content h2 {
  margin: 48px 0 32px;
  padding: 16px 24px;
  background-color: var(--background-color);
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 700;
  border-left: 4px solid var(--main-green);
  border-radius: 0 8px 8px 0;
}
@media (max-width: 820px) {
  .news-content h2 {
    margin: 32px 0 24px;
    font-size: 2.4rem;
  }
}
.news-content h3 {
  margin: 40px 0 24px;
  color: var(--main-green);
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 820px) {
  .news-content h3 {
    margin: 24px 0 16px;
    font-size: 2rem;
  }
}
.news-content p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 820px) {
  .news-content p {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.news-content p:last-child {
  margin-bottom: 0;
}
.news-content p--center {
  text-align: center;
}
.news-content p--right {
  text-align: right;
}
.news-content a {
  color: var(--main-blue);
  font-weight: 700;
}
.news-content .wp-block-image {
  margin: 32px 0;
  text-align: center;
}
@media (max-width: 820px) {
  .news-content .wp-block-image {
    margin: 24px 0;
  }
}
.news-content .wp-block-image:first-child {
  margin-top: 0;
}
.news-content .wp-block-image:last-child {
  margin-bottom: 0;
}
.news-content .wp-block-image img {
  max-width: 100%;
}

/*# sourceMappingURL=main.css.map */
