@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;700&display=swap");
:root {
  --font-family--gothic: "Noto Sans JP", sans-serif;
  --font-family--min: "Noto Serif JP", serif;
  --color-text: #42474a;
  --color-dark: #333;
  --color-blue: #045daf;
  --color-red: #e40a1e;
  --color-button-arrow: #224466;
  --color-button-bg: var(--color-blue);
  --gradation-background: rgb(9, 129, 206);
  --gradation-blue: linear-gradient(90deg, rgba(0, 0, 153, 1) 0%, rgba(45, 153, 205, 1) 100%);
  --gradation-blue-normal-background: rgb(22, 137, 204);
  --gradation-blue-normal: linear-gradient(90deg, rgba(22, 137, 204, 1) 0%, rgba(22, 137, 204, 1) 100%);
  --gradation-background-2: rgb(7, 72, 169, 1);
  --gradation-blue-2: linear-gradient(90deg, rgba(9, 152, 211, 1) 0%, rgba(7, 72, 169, 1) 100%);
}

:root {
  --delay: 0;
  --duration: 1200ms;
  --iterations: 1;
}

html, body {
  font-family: var(--font-family--gothic);
  font-feature-settings: "palt" 1;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.5;
}
@media (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .tablet {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .pc {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .pc {
    display: none !important;
  }
}

a {
  color: #333;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

p {
  line-height: 2;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1224px;
  }
}

@media (min-width: 1200px) {
  .home .container, .home .container-lg, .home .container-md, .home .container-sm, .home .container-xl {
    max-width: 1060px;
  }
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
  padding-left: 20px;
  padding-right: 20px;
}

.page-header.has-image {
  height: 40vw;
  position: relative;
}
@media (min-width: 992px) {
  .page-header.has-image {
    height: 280px;
  }
}
.page-header.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header.has-image .page-header-inner {
  position: absolute;
  width: 100%;
}

.global-nav-list > li:hover:before, .global-nav-list > li[class*=current]:where(:not(.menu-item-anchor)):before {
  width: 0;
}

.global-nav-list > li .global-nav-name {
  font-size: 16px;
}
.global-nav-list > li ul.sub-menu {
  background: white;
  border-radius: 10px;
  margin-top: 8px;
  width: auto;
}
.global-nav-list > li ul.sub-menu li {
  font-size: 16px;
  font-weight: 600;
}
.global-nav-list > li ul.sub-menu li a {
  color: black;
  white-space: nowrap;
}
.global-nav-list > li ul.sub-menu li a::after {
  content: "→";
  color: var(--color-red);
  margin-left: 1em;
}
.global-nav-list > li ul.sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: black;
}

.device-pc .global-nav-list > li > a {
  position: relative;
}
.device-pc .global-nav-list > li > a:hover {
  color: var(--color-red);
}
.device-pc .global-nav-list > li.menu-item-has-children > a::after {
  content: "+";
  font-size: 20px;
  font-weight: 600;
  color: var(--color-red);
  position: absolute;
  right: 3px;
}
.device-pc .global-nav-list > li.menu-item-has-children::after {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}
.device-pc .global-nav-list > li.menu-item-has-children:hover::after {
  bottom: -8px;
}

@media (min-width: 992px) {
  .site-header--layout--nav-float .site-header-container {
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    height: 120px;
  }
}
.site-header--layout--nav-float .site-header-logo {
  flex-shrink: 0;
  margin-right: 0;
  width: auto;
}
.site-header--layout--nav-float .site-header-logo img {
  margin: 0;
}
@media (min-width: 992px) {
  .site-header--layout--nav-float .site-header-logo img {
    min-height: 70px;
    width: auto;
  }
}

.site-header__top {
  display: none;
}
@media (min-width: 992px) {
  .site-header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue);
    padding: 6px 18px;
  }
}
.site-header__inner {
  flex: 1;
}
.site-header__contact {
  display: none;
}
@media (min-width: 992px) {
  .site-header__contact {
    display: block;
  }
}
.site-header__contact a {
  display: grid;
  place-content: center;
  background: var(--color-blue);
  width: 150px;
  height: 52px;
  font-size: 16px;
  color: white;
}
.site-header__contact a:hover {
  background: var(--color-red);
}
@media (min-width: 768px) {
  .site-header-container.container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .site-header-container.container {
    max-width: 1320px;
  }
}

.header_scrolled .site-header-logo {
  display: block;
}

.vk-mobile-nav-menu-btn {
  left: auto;
  right: 10px;
  background: none;
  border: none;
  text-indent: 0;
  font-size: 12px;
  color: #8a9bab;
  text-transform: lowercase;
  width: 48px;
  height: 38px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vk-mobile-nav-menu-btn::before, .vk-mobile-nav-menu-btn::after {
  content: "";
  width: 26px;
  height: 5px;
  background: #8a9bab;
  display: block;
  position: absolute;
  left: 11px;
  top: 15px;
}
.vk-mobile-nav-menu-btn::before {
  top: 0;
}
.vk-mobile-nav-menu-btn::after {
  top: 14px;
}
.vk-mobile-nav-menu-btn.menu-open {
  background: none;
  border: none;
  text-indent: -9999px;
}
.vk-mobile-nav-menu-btn.menu-open::before {
  transform: rotate(45deg);
  background: white;
  top: 10px;
}
.vk-mobile-nav-menu-btn.menu-open::after {
  transform: rotate(-45deg);
  background: white;
  top: 10px;
}

.vk-mobile-nav {
  background: #7ea7d5;
  color: white;
}
.vk-mobile-nav nav {
  font-size: 15px;
}
.vk-mobile-nav nav ul {
  border-top-color: white;
}
.vk-mobile-nav nav ul li a {
  color: white;
  border-bottom-color: white;
  padding: 0.8em 0.7em;
}

.admin-bar .vk-mobile-nav-menu-btn {
  top: 61px;
}

.page-header {
  height: 140px;
  background: #3980d7;
}
@media (min-width: 992px) {
  .page-header {
    height: 280px;
  }
}

.page-header-title, h1.page-header-title {
  font-size: 18px;
  text-align: left;
}
@media (min-width: 992px) {
  .page-header-title, h1.page-header-title {
    font-size: 36px;
  }
}

.page-header-inner.container {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 992px) {
  .page-header-inner.container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.breadcrumb {
  background: #f3f7fb;
  border: none;
}
@media (min-width: 992px) {
  .breadcrumb {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .breadcrumb-list {
    padding: 20px 0;
  }
}
.breadcrumb-list .fa-home {
  display: none;
}
.breadcrumb-list a {
  text-decoration: none;
}

.footer-cta-mobile {
  display: flex;
  padding: 0 15px 50px 15px;
}
@media (min-width: 992px) {
  .footer-cta-mobile {
    display: none;
  }
}
.footer-cta-mobile__content {
  background: var(--color-blue);
  flex: 1;
  font-size: 19px;
  color: white;
  text-align: center;
  padding: 22px;
}
.footer-cta-mobile__content span {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-cta-mobile__arrow {
  display: grid;
  place-items: center;
  background: var(--color-button-arrow);
  width: 60px;
}
.footer-cta-mobile__arrow img {
  display: block;
  width: 22px;
}
.footer-cta-mobile:hover .footer-cta-mobile__arrow {
  background: var(--color-red);
}

.home .footer-cta-mobile {
  padding-top: 50px;
}

.site-footer {
  border-top: none;
  font-size: 13px;
  color: var(--color-text);
  position: relative;
}
@media (min-width: 992px) {
  .site-footer {
    font-size: 16px;
  }
}
.site-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .site-footer__container {
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    margin-inline: auto;
    max-width: 1180px;
  }
}
.site-footer__info {
  order: 2;
  padding: 20px 30px;
}
@media (min-width: 992px) {
  .site-footer__info {
    order: 1;
    flex: 1;
    padding-bottom: 110px;
  }
}
.site-footer__menu {
  order: 1;
  background: #f6fafe;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px 30px;
}
@media (min-width: 992px) {
  .site-footer__menu {
    order: 2;
    flex: 1;
    padding-left: 0;
    padding-bottom: 150px;
    position: relative;
  }
}
.site-footer__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -135px;
  width: calc(50vw + 120px);
  height: 100%;
  background: #f6fafe;
  z-index: -1;
}
.site-footer__logo {
  margin-bottom: 20px;
}
.site-footer__logo img {
  height: 60px;
}
@media (min-width: 992px) {
  .site-footer__logo img {
    height: 80px;
  }
}
@media (min-width: 992px) {
  .site-footer__addr {
    margin-bottom: 40px;
  }
}
.site-footer__addr-title {
  font-weight: 600;
}
.site-footer__addr p {
  font-weight: normal;
  margin-bottom: 0;
}

.site-footer-copyright {
  font-size: 12px;
  padding: 1em 0;
}
@media (min-width: 992px) {
  .site-footer-copyright {
    font-size: 15px;
  }
}

.footer-nav {
  border-bottom: none;
}
.footer-nav .container {
  padding: 0;
}

.footer-nav-list li {
  border-bottom: none;
  border-right: none;
  display: block;
}
@media (min-width: 992px) {
  .footer-nav-list li {
    padding: 1em 0;
  }
}
.footer-nav-list li:first-child {
  border-left: none;
}
.footer-nav-list li a {
  color: var(--color-text);
}
.footer-nav-list li a:hover {
  color: var(--color-blue);
}

.site-footer-cta {
  display: none;
}
@media (min-width: 992px) {
  .site-footer-cta {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(50vw + 120px);
    height: 150px;
    z-index: 1;
  }
}
.site-footer-cta__content {
  background: var(--color-blue);
  flex: 1;
  font-size: 24px;
  color: white;
  text-align: center;
  padding: 22px;
}
.site-footer-cta__content span {
  display: block;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.site-footer-cta__arrow {
  display: grid;
  place-items: center;
  background: var(--color-button-arrow);
  width: 170px;
}
.site-footer-cta__arrow img {
  display: block;
  width: 42px;
}
.site-footer-cta:hover .site-footer-cta__arrow {
  background: var(--color-red);
}

.p-front-hero {
  position: relative;
}
.p-front-hero__container {
  width: 100%;
  aspect-ratio: 75/108;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-hero__container {
    height: 800px;
  }
}
.p-front-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  width: 100%;
  height: 100%;
}
.p-front-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.p-front-hero__slide:first-child {
  position: relative;
}
.p-front-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}
@media (min-width: 992px) {
  .p-front-hero__dots {
    bottom: 32px;
  }
}
.p-front-hero__dot {
  width: 15px;
  height: 4px;
  border: none;
  background: #d6dce2;
  cursor: pointer;
  transition: background 0.3s;
}
@media (min-width: 992px) {
  .p-front-hero__dot {
    width: 30px;
    height: 8px;
  }
}
.p-front-hero__dot.is-active {
  background: #4c7fbd;
}

.p-front-hero-1 {
  background: url("../images/front/bg_hero_1.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  color: white;
}
.p-front-hero-1__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 720px;
  padding: 15px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-front-hero-1__container {
    max-width: 1280px;
    position: relative;
  }
}
.p-front-hero-1__header {
  font-size: 23px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .p-front-hero-1__header {
    font-size: 48px;
    margin-bottom: 66px;
  }
}
.p-front-hero-1__header-sub {
  font-size: 16px;
}
@media (min-width: 992px) {
  .p-front-hero-1__header-sub {
    font-size: 22px;
    margin-top: 16px;
  }
}
.p-front-hero-1__bottom {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-hero-1__bottom {
    font-size: 24px;
    text-align: left;
    margin-inline: auto;
    margin-top: -72px;
    width: 100%;
    max-width: 1100px;
  }
}
.p-front-hero-1__bottom span {
  font-size: 12px;
  font-weight: normal;
}
@media (min-width: 992px) {
  .p-front-hero-1__bottom span {
    font-size: 16px;
  }
}
.p-front-hero-1__bottom-sub {
  font-size: 15px;
}
@media (min-width: 992px) {
  .p-front-hero-1__bottom-sub {
    font-size: 20px;
  }
}
.p-front-hero-1__clip {
  margin-top: -40px;
}
@media (min-width: 992px) {
  .p-front-hero-1__clip {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.p-front-hero-1__image {
  position: relative;
  margin-bottom: 20px;
  margin-inline: auto;
  max-width: 1100px;
}
.p-front-hero-1__image img {
  width: 100%;
}
.p-front-hero-1__copy1, .p-front-hero-1__copy2 {
  font-size: 50px;
  font-weight: 300;
  position: absolute;
}
@media (min-width: 992px) {
  .p-front-hero-1__copy1, .p-front-hero-1__copy2 {
    font-size: 130px;
  }
}
.p-front-hero-1__copy1 {
  top: -60px;
}
@media (min-width: 992px) {
  .p-front-hero-1__copy1 {
    top: auto;
    bottom: 52px;
    left: -100px;
  }
}
.p-front-hero-1__copy2 {
  bottom: -8px;
  right: 0;
}
@media (min-width: 992px) {
  .p-front-hero-1__copy2 {
    bottom: -20px;
    right: -90px;
  }
}

.p-front-hero-2 {
  background: url("../images/front/bg_hero_2.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  color: white;
}
.p-front-hero-2__container {
  display: grid;
  place-items: center;
  height: 100%;
}
.p-front-hero-2__content {
  width: 260px;
  background: url("../images/front/bg_hero_1.png") center center no-repeat;
  position: relative;
  margin: auto;
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .p-front-hero-2__content {
    width: 1100px;
    height: 300px;
    max-width: calc(100% - 132px);
    padding: 16px 40px;
  }
}
.p-front-hero-2__copy {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5625;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .p-front-hero-2__copy {
    font-size: 30px;
    padding-top: 0;
    padding-right: 40px;
    text-align: right;
  }
}
.p-front-hero-2__en--1, .p-front-hero-2__en--2 {
  font-size: 50px;
  font-weight: 100;
  line-height: 1;
}
@media (min-width: 992px) {
  .p-front-hero-2__en--1, .p-front-hero-2__en--2 {
    font-size: 130px;
    position: absolute;
  }
}
.p-front-hero-2__en--1 {
  margin-left: -40px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .p-front-hero-2__en--1 {
    margin-left: 0;
    left: -66px;
    bottom: -46px;
  }
}
.p-front-hero-2__en--1 span {
  margin-left: 0.5em;
}
@media (min-width: 992px) {
  .p-front-hero-2__en--1 span {
    margin-left: 0;
  }
}
.p-front-hero-2__en--2 {
  text-align: right;
  margin-right: -40px;
}
@media (min-width: 992px) {
  .p-front-hero-2__en--2 {
    margin-right: 0;
    bottom: -148px;
    right: -188px;
  }
}

.p-front-section-title {
  font-size: 21px;
  color: var(--color-blue);
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .p-front-section-title {
    font-size: 34px;
  }
}
.p-front-section-title__sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  color: var(--color-red);
  position: relative;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .p-front-section-title__sub {
    font-size: 15px;
    gap: 7px;
  }
}
.p-front-section-title__sub::before {
  content: "";
  width: 11px;
  height: 11px;
  background: url("../images/icons/deco_title.png") center center no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .p-front-section-title__sub::before {
    width: 15px;
    height: 15px;
  }
}

.p-front-block-1 {
  display: grid;
  gap: 28px;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .p-front-block-1 {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
.p-front-block-1__desc {
  color: var(--color-blue);
  line-height: 2.5;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .p-front-block-1__desc {
    font-size: 18px;
  }
}
.p-front-block-1__desc + .c-button {
  margin-top: 40px;
}
.p-front-block-1__content {
  position: relative;
}

@media (min-width: 992px) {
  .p-front-plastic-clip .p-front-block-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .p-front-plastic-clip .p-front-block-1__content img {
    position: absolute;
    top: 0;
    left: 50px;
    width: calc(50vw - 50px);
    height: 350px;
    object-fit: cover;
    display: block;
    max-width: none;
  }
}

.p-front-injection-moulding {
  position: relative;
}
.p-front-injection-moulding::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 234px;
  background: url("../images/front/bg_injection_moulding.png") top right no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .p-front-injection-moulding::before {
    width: 1440px;
    height: 900px;
  }
}
.p-front-injection-moulding .container {
  position: relative;
}
.p-front-injection-moulding__images {
  display: grid;
  place-items: center;
  gap: 28px;
}
@media (min-width: 992px) {
  .p-front-injection-moulding__images {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
.p-front-injection-moulding__images img {
  display: block;
}
@media (min-width: 992px) {
  .p-front-injection-moulding .p-front-block-1 {
    padding-bottom: 60px;
  }
}

.p-front-super {
  position: relative;
}
@media (min-width: 992px) {
  .p-front-super .p-front-block-1 {
    padding-top: 120px;
  }
}
.p-front-super__table {
  color: var(--color-text);
}
@media (min-width: 992px) {
  .p-front-super__table {
    margin-top: 20px;
  }
}
.p-front-super__table-title {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .p-front-super__table-title {
    font-size: 18px;
  }
}
.p-front-super__table-row {
  font-size: 11px;
  font-weight: normal;
  padding: 8px 10px;
  background: #f0f4f7;
  margin-bottom: 1px;
}
@media (min-width: 992px) {
  .p-front-super__table-row {
    font-size: 16px;
    padding: 10px 16px;
  }
}
.p-front-super__table-row.blue {
  background: #dae9f8;
  font-weight: 500;
}
.p-front-super__table + p {
  font-size: 11px;
  font-weight: normal;
  color: var(--color-text);
  margin-top: 1em;
}
@media (min-width: 992px) {
  .p-front-super__table + p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.p-front-super__images {
  display: grid;
  place-items: center;
  gap: 28px;
}
@media (min-width: 992px) {
  .p-front-super__images {
    gap: 34px;
  }
}
.p-front-super__images img {
  display: block;
}

.p-front-about {
  display: grid;
  gap: 3px;
}
@media (min-width: 992px) {
  .p-front-about {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
}
.p-front-about__link {
  width: 100%;
  aspect-ratio: 750/354;
  display: grid;
  place-items: center;
}
@media (min-width: 992px) {
  .p-front-about__link {
    width: 100%;
    height: 340px;
  }
}
.p-front-about__link--company {
  background: url("../images/front/bg_company.png") center center no-repeat;
  background-size: cover;
}
.p-front-about__link--facility {
  background: url("../images/front/bg_facility.png") center center no-repeat;
  background-size: cover;
}
.p-front-about__link-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  background: rgba(4, 93, 175, 0.8);
  width: 188px;
  height: 38px;
  font-size: 18px;
  color: white;
  padding-left: 40px;
}
@media (min-width: 992px) {
  .p-front-about__link-text {
    font-size: 28px;
    width: 280px;
    height: 65px;
  }
}
.p-front-about__link-text .arrow {
  display: grid;
  place-items: center;
  background: rgba(34, 68, 102, 0.8);
  width: 38px;
  height: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}
@media (min-width: 992px) {
  .p-front-about__link-text .arrow {
    width: 65px;
    height: 65px;
  }
}
.p-front-about__link-text .arrow img {
  width: 15px;
}
@media (min-width: 992px) {
  .p-front-about__link-text .arrow img {
    width: 29px;
  }
}
.p-front-about__link:hover .arrow {
  background: rgba(228, 10, 30, 0.6);
}

.p-front-blog {
  background: url("../images/common/bg_gradation_blue.png") left bottom no-repeat;
  background-size: 100%;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .p-front-blog {
    padding-bottom: 80px;
  }
}
.p-front-blog__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-front-blog__slider {
  position: relative;
}
.p-front-blog__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 20px 24px;
}
.p-front-blog__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .p-front-blog__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow: visible;
    padding: 10px 0 60px;
  }
}
.p-front-blog__arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-front-blog__arrow span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.p-front-blog__arrow--prev {
  left: -5px;
}
.p-front-blog__arrow--prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.p-front-blog__arrow--next {
  right: -5px;
}
.p-front-blog__arrow--next span {
  transform: rotate(45deg);
  margin-right: 4px;
}
@media (min-width: 992px) {
  .p-front-blog__arrow {
    display: none;
  }
}
.p-front-blog__more {
  text-align: center;
}
.p-front-blog__more .c-button {
  padding-left: 26px;
  margin: auto;
}

.p-blog-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.p-blog-card:hover {
  background: rgba(34, 68, 102, 0.3);
}
.p-blog-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-blue);
}
.p-blog-card__date {
  font-size: 15px;
  color: var(--color-text);
}
.p-blog-card__vol {
  font-size: 15px;
  color: var(--color-blue);
}
.p-blog-card__thumb {
  display: block;
  margin-top: 16px;
  aspect-ratio: 3/2;
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-blog-card__thumb {
    border-radius: 4px;
  }
}
.p-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-blog-card__title {
  margin: 0.5em 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-blue);
  padding: 0;
  border-bottom: none;
}
@media (min-width: 992px) {
  .p-blog-card__title {
    font-size: 18px;
  }
}
.p-blog-card__title::after {
  display: none;
}
.p-blog-card__title a {
  color: var(--color-blue);
}
.p-blog-card__text {
  margin-top: 12px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.8;
  color: var(--color-text);
}
@media (min-width: 992px) {
  .p-blog-card__text {
    font-size: 15px;
  }
}
.p-blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.p-blog-card__tag {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  padding: 4px 12px;
  border: 1px solid #9ea9b9;
  border-radius: 2px;
  color: var(--color-text);
}
@media (min-width: 992px) {
  .p-blog-card__tag {
    font-size: 13px;
    border-radius: 4px;
  }
}

.p-front-case {
  padding: 60px 0;
  overflow: hidden;
}
.p-front-case__slider {
  position: relative;
  width: 100%;
  margin: auto;
}
.p-front-case__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 10px 4px 20px;
  scrollbar-width: none;
}
.p-front-case__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .p-front-case__track {
    gap: 24px;
  }
}
.p-front-case__nav {
  display: none;
}
@media (min-width: 992px) {
  .p-front-case__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 88%;
    max-width: 1200px;
    margin-top: 24px;
    margin-inline: auto;
  }
}
.p-front-case__scrollbar {
  position: relative;
  height: 1px;
  background: var(--color-text);
  cursor: pointer;
}
@media (min-width: 992px) {
  .p-front-case__scrollbar {
    flex: 1;
    max-width: 1200px;
  }
}
.p-front-case__thumb {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  background: var(--color-blue);
  will-change: left, width;
}
.p-front-case__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.p-front-case__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-front-case__arrow span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.p-front-case__arrow.js-case-prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.p-front-case__arrow.js-case-next span {
  transform: rotate(45deg);
  margin-right: 4px;
}
@media (max-width: 991.98px) {
  .p-front-case__arrow {
    position: absolute;
    top: 46%;
    z-index: 2;
    width: 40px;
    height: 40px;
  }
  .p-front-case__arrow.js-case-prev {
    left: -4px;
  }
  .p-front-case__arrow.js-case-next {
    right: -4px;
  }
}
@media (max-width: 991.98px) {
  .p-front-case__arrows {
    display: contents;
  }
  .p-front-case__nav {
    display: block;
  }
  .p-front-case__scrollbar {
    display: none;
  }
}

.p-case-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  box-sizing: border-box;
  background: #f3f7fb;
  padding: 15px;
}
@media (min-width: 992px) {
  .p-case-card {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .p-case-card {
    flex: 0 0 280px;
  }
}
.p-case-card:hover {
  background: #b4c1ce;
}
.p-case-card__thumb {
  display: block;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.p-case-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-case-card__title {
  font-size: 14px;
  padding: 0;
  background: none;
  color: var(--color-text);
}
@media (min-width: 992px) {
  .p-case-card__title {
    font-size: 18px;
  }
}
.p-case-card__spec {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-case-card__spec li {
  position: relative;
  padding-left: 1em;
  font-size: 12px;
  color: var(--color-blue);
}
@media (min-width: 992px) {
  .p-case-card__spec li {
    font-size: 16px;
  }
}
.p-case-card__spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  background: var(--color-blue);
}
.p-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.p-case-card__tag {
  font-size: 12px;
  font-weight: 100;
  padding: 4px 12px;
  border: 1px solid #9ea9b9;
  background: #fff;
  color: var(--color-text);
}
@media (min-width: 992px) {
  .p-case-card__tag {
    font-size: 13px;
    border-radius: 4px;
    color: var(--color-text);
  }
}

.vk_post .vk_post_title {
  font-size: 16px;
  border-top: 1px solid #aac0ca;
  border-bottom: 1px solid #aac0ca;
  text-align: left;
  padding: 12px 16px;
}
.vk_post .vk_post_excerpt.media-text {
  font-size: 13px;
  color: black;
  padding: 16px;
}
@media (min-width: 992px) {
  .vk_post .vk_post_excerpt.media-text {
    font-size: 15px !important;
  }
}
.vk_post .vk_post_excerpt.media-text p {
  margin-bottom: 0;
}

.post-type-archive-case .main-section--col--two .vk_posts, .tax-case-cat .main-section--col--two .vk_posts {
  gap: 20px;
}
@media (min-width: 992px) {
  .post-type-archive-case .main-section--col--two .vk_posts, .tax-case-cat .main-section--col--two .vk_posts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .post-type-archive-case .main-section--col--two .vk_posts, .tax-case-cat .main-section--col--two .vk_posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .post-type-archive-case .main-section--col--two .vk_posts .vk_post, .tax-case-cat .main-section--col--two .vk_posts .vk_post {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .post-type-archive-case .main-section--col--two .vk_post.media.vk_post-case, .tax-case-cat .main-section--col--two .vk_post.media.vk_post-case {
    margin: 0 0 40px;
  }
}
.post-type-archive-case .vk_post_title a:hover, .tax-case-cat .vk_post_title a:hover {
  color: var(--color-blue);
}

.vk_post.media.vk_post-case {
  flex-direction: column;
  border: 1px solid #aac0ca;
  padding: 0 !important;
  margin-bottom: 34px;
}
@media (min-width: 992px) {
  .vk_post.media.vk_post-case.vk_post-col-sm-12 {
    padding: 1em;
  }
}
.vk_post.media.vk_post-case .media-img {
  width: calc(100% - 32px);
  margin: 16px 0;
  left: 16px;
}
.vk_post.media.vk_post-case .media-body {
  width: 100%;
}
@media (min-width: 992px) {
  .vk_post.media.vk_post-case .media-body {
    padding-bottom: 10px;
  }
}
.vk_post.media.vk_post-case .vk_post_btnOuter {
  position: absolute;
  right: -1px;
  bottom: -34px;
}
@media (min-width: 992px) {
  .vk_post.media.vk_post-case .vk_post_btnOuter {
    bottom: -40px;
  }
}
.vk_post.media.vk_post-case .vk_post_btn {
  text-indent: -9999px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: #224466 url("../images/icons/ar_4@4x.png") center center no-repeat;
  background-size: 14px;
}
@media (min-width: 992px) {
  .vk_post.media.vk_post-case .vk_post_btn {
    width: 40px;
    height: 40px;
    background-size: 16px;
  }
}
.vk_post.media.vk_post-case .vk_post_btn:hover {
  background-color: #e40a1e;
  border-color: #e40a1e;
}

.post-type-archive-blog .main-section--col--two .vk_posts, .tax-blog-cat .main-section--col--two .vk_posts {
  gap: 20px;
}
@media (min-width: 992px) {
  .post-type-archive-blog .main-section--col--two .vk_posts, .tax-blog-cat .main-section--col--two .vk_posts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .post-type-archive-blog .main-section--col--two .vk_posts .vk_post, .tax-blog-cat .main-section--col--two .vk_posts .vk_post {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .post-type-archive-blog .main-section--col--two .vk_post.media.vk_post-case, .tax-blog-cat .main-section--col--two .vk_post.media.vk_post-case {
    margin: 0 0 40px;
  }
}
.post-type-archive-blog .vk_post_title a:hover, .tax-blog-cat .vk_post_title a:hover {
  color: var(--color-blue);
}

.site-body .c-faq__container {
  padding: 10px;
}
@media (min-width: 992px) {
  .site-body .c-faq__container {
    padding: 15px;
  }
}
.site-body .c-faq-row {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .site-body .c-faq-row {
    margin-bottom: 24px;
  }
}
.site-body .c-faq-row__title {
  align-items: flex-start;
  gap: 6px;
  font-size: 16px;
  margin-bottom: 5px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-body .c-faq-row__title {
    font-size: 18px;
    gap: 8px;
  }
}
.site-body .c-faq-row__title::before {
  content: "Q.";
  color: orangered;
  width: 20px;
  height: auto;
}
.site-body .c-faq-row__title::after {
  display: none;
}
.site-body .c-faq-row__body {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
  height: 0;
  opacity: 0;
}
.site-body .c-faq-row__body::before {
  content: "A.";
  flex-shrink: 0;
  width: 1.2em;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.site-body .c-faq-row__body.active {
  height: auto;
  opacity: 1;
}
.site-body .c-faq-row__body p {
  line-height: 1.6;
}

.wpcf7-form {
  max-width: 920px;
  margin: auto;
}
.wpcf7-form .require {
  background: #cc0000;
  font-size: 0.88em;
  color: white;
  padding: 0 6px;
  margin-left: 0.5em;
  display: inline-block;
}
.wpcf7-form .privacy-area .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .privacy-area .require {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .wpcf7-form .privacy-area .require {
    font-size: 12px;
  }
}
.wpcf7-form .button-area {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 24px;
}
.wpcf7-form .button-area .wpcf7-spinner {
  position: absolute;
}
.wpcf7-form input[type=date].wpcf7-not-valid, .wpcf7-form input[type=email].wpcf7-not-valid, .wpcf7-form input[type=number].wpcf7-not-valid, .wpcf7-form input[type=password].wpcf7-not-valid, .wpcf7-form input[type=tel].wpcf7-not-valid, .wpcf7-form input[type=text].wpcf7-not-valid, .wpcf7-form input[type=url].wpcf7-not-valid, .wpcf7-form select.wpcf7-not-valid, .wpcf7-form textarea.wpcf7-not-valid {
  border-color: #dc3232;
  background: rgba(255, 0, 0, 0.03);
}

.p-contact__table {
  border: none;
  margin-bottom: 2em;
}
.p-contact__table th, .p-contact__table td {
  display: block;
  border: none;
  text-align: left;
}
@media (min-width: 992px) {
  .p-contact__table th, .p-contact__table td {
    display: table-cell;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
  }
}
.p-contact__table th {
  position: relative;
}
.p-contact__table th .require {
  position: absolute;
  margin-right: 10px;
}
.p-contact__table td {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5em;
}

h3.section-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  h3.section-title {
    font-size: 28px;
  }
}
h3.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
}
@media (min-width: 992px) {
  h3.section-title::after {
    height: 3px;
  }
}
h3.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12.5px;
  height: 2px;
  background: var(--color-red);
  z-index: 1;
}
@media (min-width: 992px) {
  h3.section-title::before {
    width: 20px;
    height: 3px;
  }
}

.site-body h2 {
  font-size: 17px;
  text-align: center;
  position: relative;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #cfdadf;
  padding: 0.5em;
}
@media (min-width: 992px) {
  .site-body h2 {
    font-size: 28px;
  }
}
.site-body h2::after {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #57bef1 0%, #040d24 50%, #0c7ae8 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.site-body h3 {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  border-bottom-color: black;
}
@media (min-width: 992px) {
  .site-body h3 {
    font-size: 26px;
    gap: 15px;
  }
}
.site-body h3::before {
  content: "";
  width: 6px;
  height: 55px;
  background: linear-gradient(to bottom, #040d24 0%, #0c7ae8 35%, #57bef1 100%);
}
@media (min-width: 992px) {
  .site-body h3::before {
    width: 10px;
    height: 50px;
  }
}
.site-body h3::after {
  display: none;
}
.site-body h4 {
  font-size: 16px;
  color: var(--color-blue);
  text-align: left;
  border-top: none;
  background: none;
  padding: 0.5em 0;
}
@media (min-width: 992px) {
  .site-body h4 {
    font-size: 24px;
  }
}
.site-body h5 {
  font-size: 16px;
  color: #333333;
  text-align: center;
  position: relative;
  border-bottom: none;
}
@media (min-width: 992px) {
  .site-body h5 {
    font-size: 22px;
  }
}
.site-body h6 {
  font-size: 13px;
}
@media (min-width: 992px) {
  .site-body h6 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .main-section > .vk_posts > .vk_post-col-lg-12 .vk_post_title {
    font-size: 16px;
    height: 42px;
  }
}

.site-body ol {
  counter-reset: list-number;
}
.site-body ol li {
  list-style: none;
  counter-increment: list-number;
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media (min-width: 992px) {
  .site-body ol li {
    font-size: 18px;
  }
}
.site-body ol li::before {
  flex-shrink: 0;
  content: counter(list-number);
  display: grid;
  place-content: center;
  width: 20px;
  height: 20px;
  background: #454f5b;
  border-radius: 2px;
  font-size: 13px;
  color: white;
  line-height: 1;
}
@media (min-width: 992px) {
  .site-body ol li::before {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    font-size: 18px;
  }
}

.font-mincho {
  font-family: var(--font-family--min);
}

.wp-block-button__link {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-blue);
  background: var(--color-blue);
}
@media (min-width: 992px) {
  .wp-block-button__link {
    font-size: 16px;
  }
}
.wp-block-button__link:hover {
  color: white;
}

.wp-block-button .wp-block-button__link {
  font-size: 13px;
  color: white;
  display: flex;
  align-items: center;
  width: 188px;
  height: 100%;
  min-height: 38px;
  padding: 0 18px;
  background: var(--color-blue);
  position: relative;
}
@media (min-width: 992px) {
  .wp-block-button .wp-block-button__link {
    font-size: 16px;
    width: 250px;
    min-height: 50px;
    padding: 0 25px;
  }
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  width: 38px;
  height: 100%;
  background: #224466 url("../images/icons/ar_3@4x.png") center center no-repeat;
  background-size: 15px;
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-content: center;
  border-left: 1px solid white;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .wp-block-button .wp-block-button__link::after {
    width: 50px;
  }
}
.wp-block-button .wp-block-button__link:hover {
  color: white;
}
.wp-block-button .wp-block-button__link:hover::after {
  background-color: var(--color-red);
}

.wp-block-buttons .wp-block-button__link {
  border-radius: 0;
}
.wp-block-buttons > .wp-block-button {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .wp-block-buttons > .wp-block-button {
    margin: 0;
  }
}

.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  padding-right: 50px;
}

.c-button {
  font-size: 13px;
  color: white;
  display: flex;
  align-items: center;
  width: 188px;
  height: 38px;
  padding: 0 18px;
  background: var(--color-blue);
  position: relative;
}
@media (min-width: 992px) {
  .c-button {
    font-size: 16px;
    width: 250px;
    height: 50px;
    padding-left: 68px;
  }
}
.c-button::after {
  content: "";
  width: 38px;
  height: 38px;
  background: #224466 url("../images/icons/ar_3@4x.png") center center no-repeat;
  background-size: 15px;
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-content: center;
  border-left: 1px solid white;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .c-button::after {
    width: 50px;
    height: 50px;
  }
}
.c-button:hover {
  color: white;
}
.c-button:hover::after {
  background-color: var(--color-red);
}

.wp-block-table table {
  font-size: 11px;
}
@media (min-width: 992px) {
  .wp-block-table table {
    font-size: 15px;
  }
}
.wp-block-table table th, .wp-block-table table td {
  border-style: solid;
  border-color: #b2b1b1;
}
.wp-block-table table th {
  background: #454f5b;
  color: white;
  border-width: 1px;
}
.wp-block-table table td {
  border-width: 1px;
}
.wp-block-table table tr:nth-child(odd) {
  background: #eaebed;
}

@media (min-width: 992px) {
  .vk_post .media-img {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .sub-section .vk_post .media-img {
    width: 35%;
  }
}
.sub-section .vk_post .vk_post_title {
  height: auto;
}

.site-body .c-category-widget__title {
  border: 1px solid #e40a1e;
  font-size: 13px;
  color: #e40a1e;
}
@media (min-width: 992px) {
  .site-body .c-category-widget__title {
    font-size: 18px;
  }
}
.site-body .c-category-widget__title::after {
  display: none;
}
.site-body .c-category-widget__list {
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 992px) {
  .site-body .c-category-widget__list {
    font-size: 16px;
    gap: 8px;
  }
}
.site-body .c-category-widget__list-item {
  background: #f3f7fb;
  border-left: 2px solid #e40a1e;
  margin: 0;
  padding: 10px 16px;
  position: relative;
}
@media (min-width: 992px) {
  .site-body .c-category-widget__list-item {
    padding: 13px 20px;
  }
}
.site-body .c-category-widget__list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #e40a1e;
}
@media (min-width: 992px) {
  .site-body .c-category-widget__list-item::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
  }
}
.site-body .c-category-widget__list-item a {
  text-decoration: none;
}
.site-body .c-category-widget__list .c-category-widget__list {
  padding-left: 1em;
  margin-bottom: 0;
}

.u-center {
  text-align: center;
}

@media (min-width: 992px) {
  .main-section--col--two {
    width: calc(100% - var(--vk-width-col-2-sub) - 40px);
  }
}

.widget-title.sub-section-title {
  border: 1px solid #e40a1e;
  font-size: 13px;
  color: #e40a1e;
  text-align: center;
  padding: 0.5em;
}
@media (min-width: 992px) {
  .widget-title.sub-section-title {
    font-size: 18px;
  }
}
.widget-title.sub-section-title::after {
  display: none;
}

.widget ul {
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 992px) {
  .widget ul {
    font-size: 16px;
    gap: 8px;
  }
}
.widget ul li {
  background: #f3f7fb;
  border-left: 2px solid #e40a1e;
  margin: 0;
  padding: 10px 16px;
  position: relative;
}
@media (min-width: 992px) {
  .widget ul li {
    padding: 13px 20px;
  }
}
.widget ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #e40a1e;
}
@media (min-width: 992px) {
  .widget ul li::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
  }
}
.widget ul li a {
  text-decoration: none;
}

.main-section > .vk_posts > .media.vk_post-col-sm-12:first-child {
  border-top: 1px solid #aac0ca;
}

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