@charset "UTF-8";
:root {
  --color-navy: #0b285c;
  --color-blue: #2d50b6;
  --color-sky: #2cbbe4;
  --color-light: #ebf7ff;
  --color-yellow: #ffcd39;
  --color-text: #081119;
  --color-muted: #949eb5;
  --font-main: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: min(4.2666666667vw, 24px);
  }
}
@media (min-width: 768px) and (max-width: 1240px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 16px;
  }
}
body {
  min-width: 320px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.72;
}
ul,
ol {
  list-style: none;
}
button,
input,
textarea,
select {
  font: inherit;
  outline: none;
}
button {
  cursor: pointer;
}
section {
  position: relative;
  scroll-margin-top: 6rem;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  a:hover {
    opacity: 1;
  }
}

/* =========================
   header
========================= */
.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.125rem 0;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: min(100% - 3rem, 87.5rem); */
  width: 73.75rem;
  height: 3.75rem;
  margin-inline: auto;
  padding: 0 0.75rem 0 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.375rem 1.25rem rgba(5, 28, 70, 0.14);
}
.l-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
}
.l-header__logo {
  width: 7.75rem;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.l-header__nav-list a:hover {
  opacity: 1;
  color: var(--color-blue);
}
.l-header__nav-list a:hover.c-btn--nav {
  color: var(--color-navy);
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  min-height: 3.25rem;
  padding: 0.75rem 2rem;
  border: 0;
  border-radius: 1.625rem;
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 0.5rem 1.375rem rgba(22, 89, 201, 0.22);
}
.c-btn:hover {
  opacity: 1;
  background-color: #fff;
  border: 1px solid var(--color-yellow);
}
.c-btn--nav {
  width: 12.5rem;
  min-height: 2.875rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: none;
}
.c-btn--nav:hover {
  opacity: 1;
  background-color: #fff;
  border: 1px solid var(--color-yellow);
}
.c-btn--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0.12rem 0.15rem 0.25rem 0 #001f55;
}
.c-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.c-btn--blue {
  background: var(--color-blue);
}
.btn-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 16.625rem;
  height: 3.75rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}
.btn-grad:hover {
  opacity: 1;
  background: #fff;
  border: 1px solid var(--color-blue);
  color: var(--color-navy);
}
.btn-grad span {
  position: relative;
  width: 1.3125rem;
  height: 1.3125rem;
  flex-shrink: 0;
  background: url(../img/btn_arrow_w.webp) no-repeat;
  background-size: contain;
}
.btn-grad:hover span {
  background: url(../img/btn_arrow.webp) no-repeat;
  background-size: contain;
}
.l-header__menu-btn {
  display: none;
  position: relative;
  z-index: 1002;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
}
.l-header__menu-btn span {
  position: absolute;
  left: 0.5625rem;
  width: 1.875rem;
  height: 0.125rem;
  background: var(--color-navy);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}
.l-header__menu-btn span:nth-child(1) {
  top: 0.9375rem;
}
.l-header__menu-btn span:nth-child(2) {
  top: 1.4375rem;
}
.l-header__menu-btn span:nth-child(3) {
  top: 1.9375rem;
}
.l-header__menu-btn.active span {
  background: #fff;
}
.l-header__menu-btn.active span:nth-child(1) {
  top: 1.4375rem;
  transform: rotate(45deg);
}
.l-header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.l-header__menu-btn.active span:nth-child(3) {
  top: 1.4375rem;
  transform: rotate(-45deg);
}

/* =========================
   page top
========================= */
.c-page-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-en);
  font-weight: 700;
  box-shadow: 0 0.5rem 1.5rem rgba(13, 45, 105, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-page-top__arrow {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-navy);
  mask-image: url(../img/pagetop.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url(../img/pagetop.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: transform 0.3s ease;
}
.c-page-top:hover .c-page-top__arrow {
  transform: translateY(-0.3rem);
}

/* =========================
   scroll animation
========================= */
.js-io-fade,
.js-io-up,
.js-io-left,
.js-io-right {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--io-delay, 0ms);
}
.js-io-up {
  transform: translateY(2rem);
}
.js-io-left {
  transform: translateX(-2rem);
}
.js-io-right {
  transform: translateX(2rem);
}
.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================
   responsive
========================= */
@media (max-width: 767px) {
  .l-header {
    padding: 0.6rem 0;
  }
  .l-header__inner {
    width: min(100% - 1rem, 87.5rem);
    min-height: 3.25rem;
    padding-left: 1rem;
  }
  .l-header__menu-btn {
    display: block;
  }
  .l-header__nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100svh;
    padding: 1rem 1.5rem 2rem;
    background: rgba(13, 45, 105, 0.96);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .l-header__nav.open {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav-inner {
    width: 100%;
  }
  .l-header__nav-list {
    display: grid;
    gap: 1.875rem;
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }
  .c-page-top {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .c-btn {
    width: 100%;
    min-width: 0;
  }
  .c-btn--nav {
    min-height: 3.25rem;
  }
}

/* =========================
   CTA consult
========================= */
.cta-consult {
  position: relative;
  padding-top: 4.375rem;
}
.cta-consult__inner {
  position: relative;
  min-height: 20rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(110deg, #3152ba 0%, #20acc6 100%);
}
.cta-consult__inner::after {
  content: "";
  background: url(../img/bg_logo_02.webp) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  aspect-ratio: 893/483;
  width: 27.3125rem;
  height: auto;
  bottom: -4rem;
  right: 2.5rem;
  mix-blend-mode: overlay;
}
.cta-consult__inner_cts {
  padding: 6.25rem 1.5rem;
}
.cta-consult__title {
  position: relative;
  z-index: 2;
  margin: 0 0 1.3rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.cta-consult__text {
  position: relative;
  z-index: 2;
  margin: 0 0 3rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}
.cta-consult__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 22.875rem;
  height: 4.5rem;
  padding: 0.8rem 2rem;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #ffc62f;
  box-shadow: 0.12rem 0.15rem 0.25rem 0 #001f55;
  color: #001f55;
  font-size: 1.5625rem;
  font-weight: 700;
  text-decoration: none;
}
.cta-consult__btn span {
  position: relative;
  width: 1.3125rem;
  height: 1.3125rem;
  flex-shrink: 0;
  background: url(../img/btn_arrow.webp) no-repeat;
  background-size: contain;
}
.cta-consult__btn:hover {
  opacity: 1;
  background-color: #fff;
  border: 1px solid var(--color-yellow);
}
@media (max-width: 767px) {
  .cta-consult {
    padding-top: 2.2rem;
  }
  .cta-consult__inner {
    min-height: auto;
  }
  .cta-consult__inner::after {
    bottom: -2.5rem;
    right: -2rem;
    width: 16rem;
  }
  .cta-consult__inner_cts {
    padding: 4rem 1.25rem 3.5rem;
  }
  .cta-consult__title {
    font-size: 1.65rem;
  }
  .cta-consult__text {
    font-size: 0.78rem;
    text-align: left;
  }
  .cta-consult__text br {
    display: none;
  }
  .cta-consult__btn {
    width: 100%;
  }
}

/* =========================
   footer
========================= */
.l-footer {
  padding: 3.5rem 1.5rem 1.5rem;
  background: #fff;
  color: #001f55;
  font-family: "Noto Sans JP", sans-serif;
}
.l-footer__inner {
  max-width: 73.75rem;
  margin: 0 auto;
}
.l-footer__main {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.l-footer__logo {
  display: inline-block;
  width: 9.875rem;
  margin-bottom: 1.6rem;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__address {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
.l-footer__tel {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  margin: 0 0 0.9rem;
  font-weight: 700;
  line-height: 1;
}
.l-footer__tel span {
  font-size: 1.5625rem;
}
.l-footer__tel a {
  color: inherit;
  font-size: 1.5625rem;
  text-decoration: none;
}
.l-footer__company {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.l-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 3rem;
  padding-top: 1.2rem;
}
.l-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.l-footer__nav a,
.l-footer__nav span {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.l-footer__nav span {
  color: var(--color-muted);
  font-size: 0.75rem;
}
.l-footer__cta {
  padding-top: 0.7rem;
}
.c-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 19.375rem;
  height: 3.75rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #ffc62f;
  box-shadow: 0.12rem 0.15rem 0.25rem 0 #001f55;
  color: #001f55;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.c-btn-contact:hover {
  opacity: 1;
  background-color: #fff;
  border: 1px solid var(--color-yellow);
}
.c-btn-contact span {
  position: relative;
  width: 1.3125rem;
  height: 1.3125rem;
  flex-shrink: 0;
  background: url(../img/btn_arrow.webp) no-repeat;
  background-size: contain;
}
.l-footer__line {
  height: 1px;
  margin: 2.8rem 0 1rem;
  background: var(--color-navy);
}
.l-footer__bottom {
  position: relative;
  min-height: 1.8rem;
}
.l-footer__copy {
  margin: 0;
  color: var(--color-text);
  font-size: 0.625rem;
  line-height: 1.8;
  text-align: center;
}
.l-footer__bottom-nav {
  position: absolute;
  top: 0;
  right: 5rem;
  display: flex;
  gap: 2.2rem;
}
.l-footer__bottom-nav a {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  .l-footer__main {
    gap: 2.5rem;
    flex-direction: column;
  }
  .l-footer__nav {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0;
  }
  .l-footer__cta {
    padding-top: 0;
    width: 100%;
  }
  .c-btn-contact {
    width: 100%;
  }
  .l-footer__line {
    margin-top: 2.5rem;
  }
  .l-footer__bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .l-footer__bottom-nav {
    position: static;
    justify-content: center;
  }
}

/* =========================
   CTA character animation
========================= */
.js-cta-char {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js-cta-char.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 位置 */
.cta-consult__characters {
  position: absolute;
  left: calc(50% - 31rem);
  top: 0.25rem;
  display: flex;
  gap: 0.6rem;
  z-index: 0;
}
.cta-consult__characters img {
  display: block;
  width: 6.25rem;
  height: auto;
}
@media (max-width: 767px) {
  .cta-consult__characters {
    left: 1.5rem;
    top: -0.6rem;
    gap: 0.4rem;
  }
  .cta-consult__characters img {
    display: block;
    width: 4.25rem;
    height: auto;
  }
}

/* =========================
   header submenu
========================= */
.l-header__nav-item {
  position: relative;
}
.l-header__nav-link {
  position: relative;
  z-index: 2;
}
.l-header__submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  z-index: 20;
  width: 10rem;
  padding: 0.75rem 1.35rem;
  margin: 0;
  list-style: none;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.35rem 1.25rem rgba(0, 31, 85, 0.18);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.25rem);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.l-header__submenu li + li {
  border-top: 1px solid rgba(0, 31, 85, 0.35);
}
.l-header__submenu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-navy);
  font-size: 0.825rem;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__submenu a:hover {
  color: var(--color-blue);
}
.l-header__nav-item--parent:hover .l-header__submenu,
.l-header__nav-item--parent:focus-within .l-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.l-header__submenu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 767px) {
  .l-header__submenu {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    transition: max-height 0.25s ease;
  }
  .l-header__nav-item--parent.is-open .l-header__submenu {
    max-height: 14rem;
    padding-top: 0.5rem;
  }
  .l-header__nav-list a:hover {
    color: #fff;
  }
  .l-header__nav-item--parent.is-open .l-header__submenu {
    max-height: 14rem;
    padding-top: 0rem;
    margin: 0.5rem auto 0;
    transform: none;
    background-color: rgba(255, 255, 255, 0.8);
    width: 80%;
  }
}

/* =========================
   section style
========================= */
.l-container {
  width: 62.5rem;
  margin-inline: auto;
}
/* うす水色グラデ */
.sec-bg-a {
  overflow: clip;
  background: linear-gradient(135deg, #fff 30%, #f2fdff 80%, #e1efff 100%);
}
/* 青グラデ */
.sec-bg-b {
  overflow: clip;
  background: linear-gradient(135deg, #52b4ff 50%, #2c72d0 100%);
}
/* 紫グラデ */
.sec-bg-c {
  overflow: clip;
  background: linear-gradient(-135deg, #c4d5ff 0%, #6492ff 100%);
}
.sec__inner_cts {
  padding: 7.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.u-center {
  text-align: center;
}
.c-section-kicker {
  color: var(--color-sky);
  font-family: var(--font-en);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  line-height: 1.3;
}
.c-section-title {
  margin-top: 1.25rem;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--color-navy);
  margin-bottom: 1.75rem;
}
.sec-bg-b .c-section-kicker,
.sec-bg-b .c-section-title,
.sec-bg-c .c-section-kicker,
.sec-bg-c .c-section-title {
  color: #fff;
}

.cts-card {
  position: relative;
  border-radius: 1.25rem;
  background: #fff;
  color: var(--color-text);
}
.cts-card_head {
  display: flex;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem 2rem;
  border-radius: 1.25rem 1.25rem 0 0;
  background: linear-gradient(100deg, #173ca5 56%, #658cff 100%);
}
.cts-card_head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.cts-card_body {
  padding: 2.75rem 2.875rem 1.5rem;
}
.cts-card_text {
  min-height: 5.25rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .l-container {
    width: 100%;
  }
  .p-section {
    padding: 4.5rem 0;
  }
  .sec__inner_cts {
    padding: 4rem 1.25rem 3.5rem;
  }
  .c-section-title {
    margin-top: 0.5rem;
    font-size: 2.25rem;
  }

  .cts-card_head {
    min-height: 4.5rem;
    padding: 0.875rem 1.25rem 0.875rem 5.75rem;
  }
  .cts-card_head h3 {
    font-size: 1.35rem;
  }
  .cts-card_body {
    padding: 2rem 1.5rem 1.5rem;
  }
  .cts-card_text {
    min-height: 0;
    font-size: 0.875rem;
  }

  .btn-grad {
    width: 100%;
  }
}

/* =========================
  news style
========================= */
.p-news {
  background: #fff;
}
.p-news__cts {
  padding: 2rem 3.125rem;
}

/* ---------------------------------
  filter
--------------------------------- */
.p-news__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-bottom: 2.75rem;
}
.p-news__filter {
  appearance: none;
  border: 1px solid var(--color-blue);
  background: #fff;
  min-width: 8.5rem;
  padding: 0.125rem 2.5rem;
  border-radius: 0.3125rem;

  color: var(--color-blue);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;

  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.p-news__filter:hover,
.p-news__filter.is-active {
  background-color: var(--color-blue);
  color: #fff;
}

/* ---------------------------------
  news list
--------------------------------- */
.p-news__list {
  max-width: 62.5rem;
  margin-inline: auto;
  transition: opacity 0.3s ease;
}
.p-news__list.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.p-news__item {
  display: grid;
  grid-template-columns: 5rem 8rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #a8a8a8;
}
.p-news__date {
  color: #a8a8a8;
  font-family: var(--font-en);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ---------------------------------
  category
--------------------------------- */
.p-news__category {
  display: flex;
  align-items: center;
}
.p-news__category-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 6rem;

  padding: 0.25rem 0.5rem;

  border-radius: 0.3125rem;

  background-color: var(--color-blue);

  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* ---------------------------------
  title
--------------------------------- */
.p-news__content {
  min-width: 0;
}
.p-news__title-text {
  color: #727272;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
.p-news__title-text a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news__title-text a:hover {
  opacity: 0.7;
}

/* ---------------------------------
  no posts
--------------------------------- */
.p-news__no-posts {
  padding: 2rem 0;
  text-align: center;
}
.p-news__no-posts p {
  color: #727272;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------------------------------
  button
--------------------------------- */
#news .btn-grad {
  margin-top: 3.125rem;
}

/* ---------------------------------
  responsive
--------------------------------- */
@media (max-width: 767px) {
  .p-news__cts {
    padding: 1.5rem 0;
  }
  .p-news__filters {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .p-news__filter {
    min-width: calc(50% - 0.375rem);

    padding: 0.5rem 1rem;

    font-size: 0.9375rem;
  }
  .p-news__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;

    padding: 1rem 0;
  }
  .p-news__date {
    font-size: 0.875rem;
  }
  .p-news__category-text {
    width: fit-content;
    min-width: auto;

    font-size: 0.8125rem;
  }
  .p-news__title-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  #news .btn-grad {
    margin-top: 2rem;
  }
}
