@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

:root {
  --font-family--gothic: "Noto Sans JP", sans-serif;
  --font-family--min: "Noto Serif JP", serif;
  --color-black: #141d2a;
  --color-dark: #333;
  --color-main: #091a56;
  --color-blue: #2d99cd;
  --color-sky: #1689cc;
  --color-red: #ea3507;
  --color-button-bg: #0099cc;
  --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;
  color: #1e1e1e;
  -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: #1e1e1e;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #0066cc;
}

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: 1200px;
  }
}

@media (min-width: 992px) {

  .container__lg,
  .container-lg__lg,
  .container-md__lg,
  .container-sm__lg,
  .container-xl__lg {
    max-width: 1440px;
  }
}

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;
}

.site-header {
  background: var(--color-main);
}

.site-header-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  margin: 0;
}

@media (min-width: 992px) {
  .site-header-container {
    height: 120px;
    max-width: none;
    padding-left: 50px;
    padding-right: 90px;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .site-header-container {
    padding-right: 50px;
  }
}

.site-header-logo {
  text-align: left;
  margin: 0;
  padding: 0;
  width: auto !important;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .site-header-logo img {
    max-height: 83px;
  }
}

.site-header-contact-button {
  display: none;
}

@media (min-width: 992px) {
  .site-header-contact-button {
    display: grid;
    place-content: center;
    height: 50px;
    background: #0066cc;
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 0 1.5em;
  }
}

.site-header-contact-button:hover {
  background: #ff3300;
  color: white;
}

.site-header-nav-menu-btn {
  display: none;
}

@media (min-width: 992px) {
  .site-header-nav-menu-btn {
    display: block;
    width: 44px;
    height: 50px;
    position: absolute;
    top: 38px;
    right: 20px;
    z-index: 100;
    background: url("../images/common/bg-hamburger.png") center center no-repeat;
    background-size: contain;
  }
}

@media (min-width: 1200px) {
  .site-header-nav-menu-btn {
    display: none;
  }
}

.site-header-nav-menu-btn .bar {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  transition: 0.3s;
  position: absolute;
  right: 8px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.site-header-nav-menu-btn .bar:nth-child(1) {
  top: 19px;
}

.site-header-nav-menu-btn .bar:nth-child(2) {
  top: 30px;
}

.site-header-nav-menu-btn.is-active .bar {
  width: 30px;
  background: #ffcc33;
  right: 6px;
}

.site-header-nav-menu-btn.is-active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 25px;
}

.site-header-nav-menu-btn.is-active .bar:nth-child(2) {
  transform: rotate(-45deg);
  top: 25px;
}

.global-nav {
  position: absolute;
  background: var(--color-main);
  top: 0;
  right: 0;
  padding: 200px 100px;
  opacity: 0;
  max-height: 0;
  visibility: hidden;
}

@media (min-width: 1200px) {
  .global-nav {
    opacity: 1;
    visibility: visible;
    max-height: none;
    position: relative;
    background: transparent;
    padding: 0;
  }
}

.global-nav.is-active {
  opacity: 1;
  visibility: visible;
  max-height: none;
}

.global-nav__lg {
  display: none;
}

@media (min-width: 1200px) {
  .global-nav__lg {
    display: block;
  }
}

.global-nav-sm {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  position: absolute;
  background: var(--color-main);
  top: 0;
  right: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .global-nav-sm {
    display: none;
  }
}

.global-nav-sm.is-active {
  opacity: 1;
  visibility: visible;
  max-height: 100vh;
  overflow-y: auto;
  padding: 200px 100px;
}

@media (min-width: 992px) {
  .global-nav--layout--float-right {
    margin: auto;
  }
}

.site-header--layout--nav-float .site-header-logo {
  margin-right: 0;
}

.header_scrolled .site-header {
  background: var(--color-main);
}

.header_scrolled .site-header .global-nav__lg {
  display: none;
}

@media (min-width: 1200px) {
  .header_scrolled .site-header .global-nav__lg {
    display: block;
  }
}

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

@media (max-width: 1199.98px) {
  .header_scrolled .page-header {
    margin-top: 0 !important;
  }
}

.vk-mobile-nav-menu-btn {
  left: auto;
  right: 14px;
  top: 14px;
  background: url("../images/common/bg-hamburger.png") center center no-repeat;
  background-size: contain;
  border: none;
  width: 44px;
  height: 50px;
}

.vk-mobile-nav-menu-btn::before,
.vk-mobile-nav-menu-btn::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #e0e6ed;
  position: absolute;
  right: 8px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.vk-mobile-nav-menu-btn::before {
  top: 19px;
}

.vk-mobile-nav-menu-btn::after {
  top: 30px;
}

.vk-mobile-nav-menu-btn.menu-open {
  background: url("../images/common/bg-hamburger-close.png") center center no-repeat;
  background-size: contain;
  border: none;
}

.vk-mobile-nav-menu-btn.menu-open::before,
.vk-mobile-nav-menu-btn.menu-open::after {
  background: white;
}

.vk-mobile-nav-menu-btn.menu-open::before {
  transform: rotate(45deg);
  top: 25px;
}

.vk-mobile-nav-menu-btn.menu-open::after {
  transform: rotate(-45deg);
  top: 25px;
}

.vk-mobile-nav {
  background: #061332;
  color: white;
  padding: 100px 45px 45px;
}

.vk-mobile-nav nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 12px 26px 12px 15px;
}

.vk-mobile-nav nav ul li a::after {
  content: "→";
  font-size: 14px;
  width: 1em;
  height: 1em;
  color: #ea3507;
  opacity: 1;
  position: relative;
  left: 0;
  display: grid;
  place-content: center;
}

.vk-mobile-nav nav ul li.acc-parent-open a {
  border-bottom: none;
}

.vk-mobile-nav .acc-btn {
  border: none;
  background: url("../images/icons/vk-menu-acc-icon-open.svg") center 50% no-repeat;
  right: 19px;
}

.vk-mobile-nav .acc-btn.acc-btn-close {
  background-image: url("../images/icons/vk-menu-close.svg");
}

.vk-menu-acc li.menu-item-has-children>a {
  padding: 12px 26px 12px 15px;
}

@media (min-width: 992px) {
  .vk-menu-acc li.menu-item-has-children>a {
    padding: 14px 1.5em;
  }
}

.vk-menu-acc li.menu-item-has-children a:not([href]):after,
.vk-menu-acc li.menu-item-has-children a[href=""]:after,
.vk-menu-acc li.menu-item-has-children a[href="#"]:after {
  display: none;
}

/* @media (min-width: 992px) {
  .vk-menu-acc ul.sub-menu {
    border-bottom: none;
  }
}
.vk-menu-acc ul.sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}
.vk-menu-acc ul.sub-menu li.menu-item-has-children a::after {
  display: none;
} */

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

.page-header-title,
h1.page-header-title {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-main);
}

@media (min-width: 992px) {

  .page-header-title,
  h1.page-header-title {
    font-size: 42px;
  }
}

.page-header {
  height: 130px;
  position: relative;
  border-bottom: 1px solid var(--color-main);
}

@media (max-width: 1199.98px) {
  .page-header {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .page-header {
    height: 260px;
    border-bottom: none;
  }
}

.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .page-header-inner {
  position: absolute;
  width: 100%;
}

.page-header.has-title-en .page-header-title,
.page-header.has-title-en h1.page-header-title {
  font-size: 15px;
  color: var(--color-red);
}

@media (min-width: 992px) {

  .page-header.has-title-en .page-header-title,
  .page-header.has-title-en h1.page-header-title {
    font-size: 20px;
  }
}

.page-header__read {
  font-size: 50px;
  font-weight: 200;
  line-height: 1;
  color: var(--color-main);
}

@media (min-width: 992px) {
  .page-header__read {
    font-size: 100px;
  }
}

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

.global-nav-list {
  flex-direction: column;
  align-items: flex-start;
  width: 358px;
}

@media (min-width: 1200px) {
  .global-nav-list {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

.global-nav-list>li {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  width: 100%;
  margin-bottom: 26px;
}

@media (min-width: 992px) {
  .global-nav-list>li {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .global-nav-list>li {
    font-size: 16px;
    margin: 0;
    width: auto;
    text-align: center;
    white-space: nowrap;
  }
}

.global-nav-list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: white;
  text-align: left;
  position: relative;
}

@media (min-width: 1200px) {
  .global-nav-list>li>a {
    text-align: center;
    width: auto;
  }
}

.global-nav-list>li>a::after {
  content: "→";
  font-size: 22px;
  width: 1em;
  height: 1em;
  color: #ea3507;
  opacity: 1;
  position: relative;
  left: 0;
  display: grid;
  place-content: center;
  background: none;
}

@media (min-width: 1200px) {
  .global-nav-list>li>a::after {
    content: "";
    width: calc(100% - 36px);
    height: 3px;
    background: #0066cc;
    position: absolute;
    bottom: 0;
    left: 18px;
    opacity: 0;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
  }
}

.global-nav-list>li>a:hover {
  color: #0066cc;
}

@media (min-width: 992px) {
  .global-nav-list>li>a:hover::after {
    opacity: 1;
  }
}

.global-nav-list>li .global-nav-name {
  font-size: 16px;
}

.global-nav-list>li.has-megamenu a {
  cursor: pointer;
  overflow: visible;
}

@media (min-width: 1200px) {
  .global-nav-list>li.has-megamenu a::after {
    opacity: 0;
    visibility: hidden;
    background: none;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #16347a;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
  }
}

.global-nav-list>li.has-megamenu.is-active a::after {
  opacity: 1;
  visibility: visible;
}

/* .global-nav-list > li ul.sub-menu {
  position: relative;
  opacity: 1;
  max-height: none;
  background: none;
  box-shadow: none;
  left: 1em;
  margin-left: 0;
  width: auto;
}
@media (min-width: 1200px) {
  .global-nav-list > li ul.sub-menu {
    display: none;
  }
}
.global-nav-list > li ul.sub-menu li {
  font-size: 16px;
}
.global-nav-list > li ul.sub-menu li a {
  border-bottom: none;
}
.global-nav-list > li ul.sub-menu li a:hover {
  color: #0066cc;
  background: none;
}
.global-nav-list > li ul.sub-menu .acc-btn {
  border: none;
  background: url("../images/icons/vk-menu-acc-icon-open.svg") center 50% no-repeat;
}
.global-nav-list > li ul.sub-menu .acc-btn.acc-btn-close {
  background-image: url("../images/icons/vk-menu-close.svg");
}
.global-nav-list > li ul.sub-menu .sub-menu {
  max-height: 0;
  opacity: 0;
}
.global-nav-list > li ul.sub-menu .sub-menu.acc-child-open {
  max-height: 80vh;
  overflow-y: auto;
  opacity: 1;
}
.global-nav-list.vk-menu-acc .sub-menu .acc-btn {
  right: 50px;
} */

.c-mega-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 40px;
  opacity: 0;
  visibility: hidden;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1200px) {
  .c-mega-menu.is-active {
    opacity: 1;
    visibility: visible;
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    -ms-transition: 0.1s;
    transition: 0.1s;
  }
}

.c-mega-menu-container {
  display: flex;
  gap: 98px;
  background: #16347a;
  padding: 40px 100px 20px 50px;
}

.c-mega-menu-header {
  white-space: nowrap;
}

.c-mega-menu-header__sub {
  font-size: 16px;
  font-weight: 600;
  color: #ea3507;
}

.c-mega-menu-header__main {
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.c-mega-menu-list {
  display: flex;
  gap: 40px;
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.c-mega-menu-list li {
  line-height: 1;
  margin-bottom: 1.6em;
}

.c-mega-menu-list li a {
  color: white;
  white-space: nowrap;
}

.c-mega-menu-list li a:hover {
  color: #ea3507;
}

/* .c-mega-menu-list .sub-menu {
  font-weight: 400;
  margin-top: 1.6em;
  margin-bottom: 0;
  padding: 0;
}
.c-mega-menu-list .sub-menu li a::before {
  content: ">";
  color: #ea3507;
  margin-right: 6px;
} */

.breadcrumb .fa-home {
  display: none;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-list li::after {
  content: "＞";
}

.site-footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.site-footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .site-footer-info {
    flex-direction: row;
    gap: 8px;
  }
}

@media (min-width: 1200px) {
  .site-footer-info {
    gap: 28px;
  }
}

.site-footer-info__name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .site-footer-info__name {
    margin-bottom: 0;
  }
}

.site-footer-info__name img {
  width: 183px;
  vertical-align: bottom;
}

@media (min-width: 992px) {
  .site-footer-info__name img {
    width: auto;
  }
}

.site-footer-info__addr {
  font-size: 13px;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .site-footer-info__addr {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0;
    padding-top: 21px;
  }
}

@media (min-width: 1200px) {
  .site-footer-info__addr {
    gap: 14px;
  }
}

.site-footer-info__addr .name {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (min-width: 992px) {

  .site-footer-info__addr .addr,
  .site-footer-info__addr .tel {
    font-size: 14px;
    font-weight: 400;
  }
}

@media (min-width: 1200px) {

  .site-footer-info__addr .addr,
  .site-footer-info__addr .tel {
    font-size: 16px;
  }
}

.site-footer-info__addr .addr {
  margin-bottom: 0.6em;
}

@media (min-width: 992px) {
  .site-footer-info__addr .addr {
    margin-bottom: 0;
  }
}

.site-footer-nav {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .site-footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .site-footer-nav-main {
    flex-grow: 1;
  }
}

@media (min-width: 992px) {
  .site-footer-nav-main .site-footer-nav-menu {
    font-size: 15px;
  }
}

.site-footer-nav-main .site-footer-nav-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 500;
}

@media (min-width: 992px) {
  .site-footer-nav-main .site-footer-nav-menu-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer-nav-main .site-footer-nav-menu-list li {
  margin-top: 0.8em;
}

.site-footer-nav-main .site-footer-nav-menu-list li a:hover {
  color: #0066cc;
}

.site-footer-nav-main .site-footer-nav-menu-list .sub-menu {
  font-weight: 400;
  padding-left: 0;
}

.site-footer-nav-main .site-footer-nav-menu-list .sub-menu a:hover {
  color: #0066cc;
}

.site-footer-nav-main .site-footer-nav-menu-list .sub-menu a::before {
  content: ">";
  color: #ea3507;
  margin-right: 6px;
}

.site-footer-nav-header {
  font-weight: 500;
}

@media (min-width: 992px) {
  .site-footer-nav-header {
    border-bottom: 1px solid #7f92ac;
    padding-bottom: 20px;
  }
}

.site-footer-nav-header__sub {
  font-size: 13px;
  color: var(--color-red);
}

@media (min-width: 992px) {
  .site-footer-nav-header__sub {
    font-size: 16px;
  }
}

.site-footer-nav-header__main {
  font-size: 15px;
}

@media (min-width: 992px) {
  .site-footer-nav-header__main {
    font-size: 18px;
  }
}

.site-footer-nav-sub .site-footer-nav-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
  font-size: 15px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .site-footer-nav-sub .site-footer-nav-menu-list {
    font-size: 18px;
  }
}

.site-footer-nav-sub .site-footer-nav-menu-list .en-title {
  display: block;
  font-size: 13px;
  color: var(--color-red);
}

@media (min-width: 992px) {
  .site-footer-nav-sub .site-footer-nav-menu-list .en-title {
    font-size: 16px;
  }
}

.site-footer-nav-sub .site-footer-nav-menu-list a:hover {
  color: #0066cc;
}

.site-footer-nav-inquiry {
  padding-top: 20px;
}

@media (min-width: 992px) {
  .site-footer-nav-inquiry {
    font-size: 15px;
  }
}

.site-footer-nav-inquiry .contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0066cc;
  width: 250px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-inline: auto;
  margin-top: 44px;
  padding-left: 28px;
  position: relative;
}

@media (min-width: 992px) {
  .site-footer-nav-inquiry .contact {
    width: 270px;
    height: 64px;
    font-size: 16px;
    padding: 0;
    justify-content: center;
  }
}

.site-footer-nav-inquiry .contact::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url("../images/icons/icon-mail-wht.png") center center no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .site-footer-nav-inquiry .contact::before {
    width: 25px;
    height: 25px;
  }
}

.site-footer-nav-inquiry .contact:hover {
  background: var(--color-red);
}

.site-footer-copyright {
  font-size: 11px;
  color: #1e1e1e;
  padding: 0;
}

@media (min-width: 992px) {
  .site-footer-copyright {
    font-size: 13px;
    position: absolute;
    bottom: 2px;
    left: 283px;
  }
}

@media (min-width: 992px) {
  .site-footer-copyright {
    left: 302px;
  }
}

.l-footer-cta {
  background: url("../images/front/bg_cta.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .l-footer-cta {
    padding-bottom: 82px;
    padding-top: 96px;
  }
}

.l-footer-cta-header {
  margin-bottom: 26px;
}

@media (min-width: 992px) {
  .l-footer-cta-header {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 54px;
  }
}

.l-footer-cta-title {
  text-align: center;
}

@media (min-width: 992px) {
  .l-footer-cta-title {
    text-align: left;
    margin-bottom: 0;
  }
}

.l-footer-cta-title__sub {
  font-size: 15px;
  color: #ea3507;
  display: block;
}

@media (min-width: 992px) {
  .l-footer-cta-title__sub {
    font-size: 24px;
    margin-bottom: 42px;
  }
}

.l-footer-cta-title__main {
  font-size: 45px;
  font-weight: 200;
  color: white;
}

@media (min-width: 992px) {
  .l-footer-cta-title__main {
    font-size: 120px;
  }
}

.l-footer-cta-desc {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
}

@media (min-width: 992px) {
  .l-footer-cta-desc {
    font-size: 24px;
  }
}

.l-footer-cta-block {
  background: white;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .l-footer-cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }
}

.l-footer-cta-block-header {
  display: grid;
  place-content: center;
  padding: 20px;
}

.l-footer-cta-block-header-oem {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 992px) {
  .l-footer-cta-block-header-oem {
    font-size: 24px;
  }
}

.l-footer-cta-block-header-tel {
  text-align: center;
}

.l-footer-cta-block-header-tel__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .l-footer-cta-block-header-tel__title {
    font-size: 20px;
    gap: 20px;
  }
}

.l-footer-cta-block-header-tel__title::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url("../images/icons/icon-phone.png") center center no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .l-footer-cta-block-header-tel__title::before {
    width: 26px;
    height: 26px;
  }
}

.l-footer-cta-block-header-tel__num {
  font-size: 29px;
  font-weight: bold;
  color: #ea3507;
}

@media (min-width: 992px) {
  .l-footer-cta-block-header-tel__num {
    font-size: 40px;
  }
}

.l-footer-cta-block-header-tel__time {
  font-size: 12px;
}

@media (min-width: 992px) {
  .l-footer-cta-block-header-tel__time {
    font-size: 14px;
  }
}

.l-footer-cta-block-main {
  display: grid;
  place-content: center;
  place-items: center;
  padding-bottom: 25px;
}

@media (min-width: 992px) {
  .l-footer-cta-block-main {
    padding-bottom: 0;
    place-items: flex-start;
  }
}

.l-footer-cta-block-main__mail {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .l-footer-cta-block-main__mail {
    font-size: 20px;
    gap: 22px;
  }
}

.l-footer-cta-block-main__mail::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url("../images/icons/icon-mail.png") center center no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .l-footer-cta-block-main__mail::before {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 992px) {
  .l-footer-cta-block__oem {
    height: 170px;
  }
}

@media (min-width: 992px) {
  .l-footer-cta-block__contact {
    height: 190px;
  }
}

@media (min-width: 992px) {
  .l-footer-cta-block__contact .p-front-cta-block-main {
    place-items: center;
  }
}

.l-footer-cta-button-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea3507;
  font-size: 13px;
  font-weight: 600;
  color: white;
  width: 250px;
  max-width: 96%;
  height: 50px;
}

@media (min-width: 992px) {
  .l-footer-cta-button-lg {
    font-size: 26px;
    width: 500px;
    height: 100px;
  }
}

.l-footer-cta-button-lg:hover {
  background: #0066cc;
  color: white;
}

.l-footer-cta-button-sm {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea3507;
  font-size: 13px;
  font-weight: 600;
  color: white;
  width: 250px;
  max-width: 96%;
  height: 50px;
}

@media (min-width: 992px) {
  .l-footer-cta-button-sm {
    font-size: 18px;
    width: 400px;
    height: 60px;
  }
}

.l-footer-cta-button-sm:hover {
  background: #0066cc;
  color: white;
}

.home .site-header {
  position: fixed;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 992px) {
  .home .site-header {
    position: relative;
    background: white;
  }
}

@media (min-width: 1200px) {
  .home .global-nav-list>li>a {
    color: var(--color-main);
  }
}

.home.header_scrolled .site-header {
  top: 0;
}

@media (min-width: 992px) {
  .home.header_scrolled .site-header {
    position: fixed;
  }
}

.admin-bar.home.header_scrolled .site-header {
  top: 46px;
}

@media (min-width: 992px) {
  .admin-bar.home.header_scrolled .site-header {
    top: 32px;
  }
}

@media (max-width: 1199.98px) {
  .p-front-hero {
    margin-top: 0 !important;
  }
}

.p-front-hero__container {
  width: 100%;
  height: 600px;
  position: relative;
}

@media (min-width: 992px) {
  .p-front-hero__container {
    height: 880px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.p-front-hero-slide-item {
  width: 100%;
  height: 600px;
}

@media (min-width: 992px) {
  .p-front-hero-slide-item {
    height: 880px;
  }
}

.p-front-hero-slide-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .p-front-hero-slide-item img {
    height: 880px;
  }
}

.p-front-hero-catch {
  width: 650px;
  max-width: calc(100% - 40px);
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(127, 146, 172, 0.72);
  /* background: rgba(127, 146, 172, 0.32); */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.32);
  color: white;
  padding: 20px 15px 40px;
  z-index: 100;
}

@media (min-width: 992px) {
  .p-front-hero-catch {
    width: 1330px;
    max-width: calc(100% - 180px);
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .p-front-hero-catch {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 58px;
    top: 240px;
  }
}

.p-front-hero-catch-header {
  font-weight: 500;
  text-align: center;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 0 20px;
  margin-bottom: 46px;
}

@media (min-width: 992px) {
  .p-front-hero-catch-header {
    border-left: 3px solid white;
    border-right: 3px solid white;
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .p-front-hero-catch-header {
    margin-bottom: 0;
  }
}

.p-front-hero-catch-header__sub {
  font-size: 13px;
}

@media (min-width: 1320px) {
  .p-front-hero-catch-header__sub {
    font-size: 26px;
  }
}

.p-front-hero-catch-header__main {
  font-size: 23px;
}

@media (min-width: 1320px) {
  .p-front-hero-catch-header__main {
    font-size: 46px;
  }
}

.p-front-hero-catch-header__main .plus {
  display: block;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

@media (min-width: 1320px) {
  .p-front-hero-catch-header__main .plus {
    font-size: 36px;
  }
}

.p-front-hero-catch-main {
  text-align: center;
}

.p-front-hero-catch-main__sub {
  font-size: 21px;
  font-weight: 600;
}

@media (min-width: 1320px) {
  .p-front-hero-catch-main__sub {
    font-size: 26px;
  }
}

.p-front-hero-catch-main__main {
  font-size: 30px;
  font-weight: bold;
}

@media (min-width: 1320px) {
  .p-front-hero-catch-main__main {
    font-size: 68px;
  }
}

.p-front-section-title {
  line-height: 1;
}

.p-front-section-title__sub {
  font-size: 15px;
  color: #ea3507;
  display: block;
}

@media (min-width: 992px) {
  .p-front-section-title__sub {
    font-size: 24px;
  }
}

.p-front-section-title__main {
  font-size: 45px;
  font-weight: 200;
  color: var(--color-main);
}

@media (min-width: 992px) {
  .p-front-section-title__main {
    font-size: 120px;
  }
}

.p-front-intro {
  padding: 55px 25px;
  position: relative;
}

@media (min-width: 992px) {
  .p-front-intro {
    padding: 72px 25px;
  }
}

.p-front-intro p {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 2.5;
  margin: 0;
  position: relative;
}

@media (min-width: 992px) {
  .p-front-intro p {
    font-size: 22px;
  }
}

.p-front-intro::before {
  content: "";
  background: #e9eef2;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: block;
  width: 74%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 992px) {
  .p-front-intro::before {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 60%;
  }
}

.p-front-feature {
  background: url("../images/front/bg_feature.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 46px;
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .p-front-feature {
    padding-top: 120px;
    padding-bottom: 90px;
  }
}

.p-front-feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 460px;
  margin: auto;
}

@media (min-width: 992px) {
  .p-front-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 40px;
  }
}

.p-front-feature-title {
  font-size: 22px;
  color: #ea3507;
  text-align: center;
}

@media (min-width: 992px) {
  .p-front-feature-title {
    font-size: 38px;
    margin-bottom: 50px;
  }
}

.p-front-feature-item {
  width: 100%;
  aspect-ratio: 65/100.4;
  padding: 30px;
}

@media (min-width: 992px) {
  .p-front-feature-item {
    padding: 20px;
    line-height: 1.6;
  }
}

.p-front-feature-item-header {
  height: 40%;
  display: grid;
  place-content: center;
}

.p-front-feature-item-main {
  height: 60%;
  font-size: 16px;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  padding-top: 68px;
  display: grid;
  place-content: center;
}

@media (min-width: 992px) {
  .p-front-feature-item-main {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .p-front-feature-item-main {
    font-size: 22px;
  }
}

.p-front-feature-item-main .color {
  color: #ffcc33;
}

.p-front-feature-item-num {
  font-size: 40px;
  font-weight: 500;
  color: #ffcc33;
}

@media (min-width: 992px) {
  .p-front-feature-item-num {
    font-size: 48px;
  }
}

@media (min-width: 1200px) {
  .p-front-feature-item-num {
    font-size: 55px;
  }
}

.p-front-feature-item-title {
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 2;
}

@media (min-width: 992px) {
  .p-front-feature-item-title {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .p-front-feature-item-title {
    font-size: 20px;
  }
}

.p-front-feature-item-title .color {
  color: #ffcc33;
}

.p-front-feature-item-icon {
  display: block;
  width: 55px;
  margin-inline: auto;
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .p-front-feature-item-icon {
    width: 72px;
  }
}

.p-front-feature-item__01 {
  background: url("../images/front/bg_feature_01.png") center center no-repeat;
  background-size: 100%;
}

.p-front-feature-item__02 {
  background: url("../images/front/bg_feature_02.png") center center no-repeat;
  background-size: 100%;
}

.p-front-feature-item__03 {
  background: url("../images/front/bg_feature_03.png") center center no-repeat;
  background-size: 100%;
}

.p-front-products {
  padding-top: 40px;
}

@media (min-width: 992px) {
  .p-front-products {
    padding-top: 90px;
  }
}

.p-front-products .p-front-section-title {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .p-front-products .p-front-section-title {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .p-front-products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-front-products-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 42px;
  height: 160vw;
  max-height: 610px;
}

@media (min-width: 992px) {
  .p-front-products-item {
    height: 780px;
    max-height: none;
    padding-top: 40px;
    padding-bottom: 65px;
  }
}

.p-front-products-item__01 {
  background: url("../images/front/bg_products_01.png");
  position: relative;
}

.p-front-products-item__01 .p-front-products-item-image {
  padding-left: 16px;
  padding-right: 16px;
}

.p-front-products-item__02 {
  background: #091a56 url("../images/front/bg_products_02.png");
  position: relative;
}

.p-front-products-item__02 .p-front-products-item-image {
  padding-left: 16px;
  padding-right: 16px;
}


.p-front-products-item__02 .p-front-products-item-button::before {
  background: #091a56;
}

.p-front-products-item__03 {
  background: #16347a url("../images/front/bg_products_03.png");
  position: relative;
}

.p-front-products-item__03 .p-front-products-item-image {
  padding-left: 16px;
  padding-right: 16px;
}


.p-front-products-item__03 .p-front-products-item-button::before {
  background: #16347a;
}

.p-front-products-item__04 {
  background: url("../images/front/bg_products_04.png");
  position: relative;
}

.p-front-products-item__04 .p-front-products-item-image {
  padding-left: 16px;
  padding-right: 16px;
}


.p-front-products-item__04 .p-front-products-item-button::before {
  background: #1f2a43;
}

.p-front-products-item-title {
  font-size: 28px;
  color: #ffcc33;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .p-front-products-item-title {
    font-size: clamp(1.25rem, -0.417rem + 2.67vw, 2.25rem);
    height: 65px;
    display: flex;
    align-items: center;
  }
}

.p-front-products-item-title__sub {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
}

.p-front-products-item-title__main {
  display: block;
}

.p-front-products-item-lineup {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: white;
}

@media (min-width: 992px) {
  .p-front-products-item-lineup {
    font-size: 20px;
  }
}

.p-front-products-item-lineup li a {
  display: grid;
  place-items: center;
  height: 38px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
}

.p-front-products-item-lineup li a:hover {
  border: 1px solid #7f92ac;
}

.p-front-products-item-image {
  margin-top: auto;
}

.p-front-products-item-button {
  position: absolute;
  right: 15px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 42px;
  background: #7f92ac;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.p-front-products-item-button::before {
  content: "";
  display: block;
  width: 42px;
  height: 40px;
  position: absolute;
  top: 1px;
  left: 1px;
  background: #020f3e;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.p-front-products-item-button span {
  position: relative;
  font-size: 24px;
  color: #7f92ac;
}

.p-front-products-item-button:hover {
  background: white;
}

.p-front-products-item-button:hover::before {
  background: #0066cc;
}

.p-front-products-item-button:hover span {
  color: white;
}

.p-front-case {
  padding-top: 50px;
  position: relative;
  background: url("../images/front/bg_case.png") center bottom no-repeat;
  background-size: 100%;
  padding-bottom: 48px;
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .p-front-case {
    padding-top: 90px;
    padding-bottom: 180px;
    margin-bottom: 85px;
  }
}

@media (min-width: 992px) {
  .p-front-case .container {
    max-width: 1200px;
  }
}

@media (min-width: 992px) {
  .p-front-case .p-front-section-title {
    margin-bottom: 132px;
  }
}

.p-front-case-list {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .p-front-case-list {
    flex-direction: row;
  }
}

.p-front-case-item-image {
  display: block;
  place-content: center;
  width: 100%;
  aspect-ratio: 4/2.6;
  border: 1px solid #1f2a43;
  background: white;
}

.p-front-case-item-image img {
  display: block;
  margin: auto;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.p-front-case-item-title {
  display: flex;
  align-items: center;
  background: #6f7884;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: white;
  height: 38px;
  padding: 0 20px;
}

@media (min-width: 992px) {
  .p-front-case-item-title {
    font-size: 16px;
    height: 50px;
  }
}

.p-front-case-item-content {
  background: #1b2b4f;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 992px) {
  .p-front-case-item-content {
    gap: 32px;
    min-height: 324px;
  }
}

.p-front-case-item-content-row {
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .p-front-case-item-content-row {
    font-size: 15px;
  }
}

.p-front-case-item-content-row-title {
  color: #ffcc33;
}

.p-front-case-item-content-row-desc {
  color: white;
  margin: 0;
}

.p-front-case-item-more {
  font-size: 13px;
  color: #7cace8;
  text-align: right;
}

@media (min-width: 992px) {
  .p-front-case-item-more {
    font-size: 16px;
  }
}

.p-front-case-list-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 25px;
}

@media (min-width: 992px) {
  .p-front-case-list-footer {
    padding-top: 56px;
  }
}

.p-front-case-list-footer-more {
  font-size: 15px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .p-front-case-list-footer-more {
    font-size: 18px;
  }
}

.case-swiper-button-next,
.case-swiper-button-prev {
  display: grid;
  place-items: center;
  width: 40px;
  height: 35px;
  background: #16347a;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  cursor: pointer;
}

@media (min-width: 992px) {

  .case-swiper-button-next,
  .case-swiper-button-prev {
    width: 54px;
    height: 46px;
  }
}

.case-swiper-button-next::before,
.case-swiper-button-prev::before {
  content: "";
  display: block;
  width: 38px;
  height: 33px;
  position: absolute;
  top: 1px;
  left: 1px;
  background: #7f92ac;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@media (min-width: 992px) {

  .case-swiper-button-next::before,
  .case-swiper-button-prev::before {
    width: 52px;
    height: 44px;
  }
}

.case-swiper-button-next span,
.case-swiper-button-prev span {
  position: relative;
  font-size: 15px;
  color: #7f92ac;
}

@media (min-width: 992px) {

  .case-swiper-button-next span,
  .case-swiper-button-prev span {
    font-size: 30px;
  }
}

.case-swiper-button-next:hover,
.case-swiper-button-prev:hover {
  background: 66cc;
}

.case-swiper-button-next:hover::before,
.case-swiper-button-prev:hover::before {
  background: white;
}

.case-swiper-button-next:hover span,
.case-swiper-button-prev:hover span {
  color: white;
}

.p-front-cta {
  background: url("../images/front/bg_cta.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .p-front-cta {
    padding-bottom: 82px;
    padding-top: 96px;
  }
}

.p-front-cta-header {
  margin-bottom: 26px;
}

@media (min-width: 992px) {
  .p-front-cta-header {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 54px;
  }
}

.p-front-cta-title {
  text-align: center;
}

@media (min-width: 992px) {
  .p-front-cta-title {
    text-align: left;
    margin-bottom: 0;
  }
}

.p-front-cta-title__sub {
  font-size: 15px;
  color: #ea3507;
  display: block;
}

@media (min-width: 992px) {
  .p-front-cta-title__sub {
    font-size: 24px;
    margin-bottom: 42px;
  }
}

.p-front-cta-title__main {
  font-size: 45px;
  font-weight: 200;
  color: white;
}

@media (min-width: 992px) {
  .p-front-cta-title__main {
    font-size: 120px;
  }
}

.p-front-cta-desc {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
}

@media (min-width: 992px) {
  .p-front-cta-desc {
    font-size: 24px;
  }
}

.p-front-cta-block {
  background: white;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .p-front-cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }
}

.p-front-cta-block-header {
  display: grid;
  place-content: center;
  padding: 20px;
}

.p-front-cta-block-header-oem {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 992px) {
  .p-front-cta-block-header-oem {
    font-size: 24px;
  }
}

.p-front-cta-block-header-tel {
  text-align: center;
}

.p-front-cta-block-header-tel__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .p-front-cta-block-header-tel__title {
    font-size: 20px;
    gap: 20px;
  }
}

.p-front-cta-block-header-tel__title::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url("../images/icons/icon-phone.png") center center no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .p-front-cta-block-header-tel__title::before {
    width: 26px;
    height: 26px;
  }
}

.p-front-cta-block-header-tel__num {
  font-size: 29px;
  font-weight: bold;
  color: #ea3507;
}

@media (min-width: 992px) {
  .p-front-cta-block-header-tel__num {
    font-size: 40px;
  }
}

.p-front-cta-block-header-tel__time {
  font-size: 12px;
}

@media (min-width: 992px) {
  .p-front-cta-block-header-tel__time {
    font-size: 14px;
  }
}

.p-front-cta-block-main {
  display: grid;
  place-content: center;
  place-items: center;
  padding-bottom: 25px;
}

@media (min-width: 992px) {
  .p-front-cta-block-main {
    padding-bottom: 0;
    place-items: flex-start;
  }
}

.p-front-cta-block-main__mail {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .p-front-cta-block-main__mail {
    font-size: 20px;
    gap: 22px;
  }
}

.p-front-cta-block-main__mail::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url("../images/icons/icon-mail.png") center center no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .p-front-cta-block-main__mail::before {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 992px) {
  .p-front-cta-block__oem {
    height: 170px;
  }
}

@media (min-width: 992px) {
  .p-front-cta-block__contact {
    height: 190px;
  }
}

@media (min-width: 992px) {
  .p-front-cta-block__contact .p-front-cta-block-main {
    place-items: center;
  }
}

.p-front-cta-button-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea3507;
  font-size: 13px;
  font-weight: 600;
  color: white;
  width: 250px;
  max-width: 96%;
  height: 50px;
}

@media (min-width: 992px) {
  .p-front-cta-button-lg {
    font-size: 26px;
    width: 500px;
    height: 100px;
  }
}

.p-front-cta-button-lg:hover {
  background: #0066cc;
  color: white;
}

.p-front-cta-button-sm {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea3507;
  font-size: 13px;
  font-weight: 600;
  color: white;
  width: 250px;
  max-width: 96%;
  height: 50px;
}

@media (min-width: 992px) {
  .p-front-cta-button-sm {
    font-size: 18px;
    width: 400px;
    height: 60px;
  }
}

.p-front-cta-button-sm:hover {
  background: #0066cc;
  color: white;
}

@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);
    gap: 1.2em;
  }
}

@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;
  }
}

.vk_post.media.vk_post-case {
  flex-direction: column;
  border: 1px solid var(--vk-color-border-hr, #e5e5e5);
  padding: 1em !important;
}

@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: 100%;
  margin-bottom: 1em;
}

.vk_post.media.vk_post-case .media-body {
  width: 100%;
}

.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;
}

.site-body h2 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 26px;
}

@media (min-width: 992px) {
  .site-body h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: left;
    line-height: 2;
    border-style: solid;
    border-color: var(--color-main);
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 1px;
    border-bottom-width: 1px;
    padding-left: 1em;
  }
}

.site-body h2::after {
  content: "";
  width: 46px;
  height: 22px;
  background: url("../images/icons/deco_h2.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 23px);
}

.site-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-main);
  padding: 0.35em 0.35em 0.35em 22px;
  position: relative;
}

@media (min-width: 992px) {
  .site-body h3 {
    font-size: 34px;
    padding-left: 44px;
  }
}

.site-body h3::before,
.site-body h3::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  border-right: 2px;
}

.site-body h3::before {
  width: 6px;
  left: 0;
  background: #16347a;
}

@media (min-width: 992px) {
  .site-body h3::before {
    width: 12px;
  }
}

.site-body h3::after {
  width: 5px;
  left: 9px;
  background: #091a56;
}

@media (min-width: 992px) {
  .site-body h3::after {
    width: 10px;
    left: 17px;
  }
}

.site-body h4 {
  font-size: 20px;
  color: #1e1e1e;
  text-align: center;
  padding: 1em 0.5em;
  border-bottom: 1px solid var(--color-main);
}

@media (min-width: 992px) {
  .site-body h4 {
    font-size: 30px;
    margin-bottom: 1.6em;
  }
}

.site-body h5 {
  font-size: 16px;
  padding: 0.8em 0;
  border-bottom: 1px solid #0066cc;
  position: relative;
}

@media (min-width: 992px) {
  .site-body h5 {
    font-size: 24px;
    border-bottom-width: 2px;
  }
}

.site-body h6 {
  font-size: 13.5px;
  font-weight: 500;
  color: #16347a;
  border: 1px solid #0066cc;
  display: inline-block;
  padding: 0.25em 0.8em;
}

@media (min-width: 992px) {
  .site-body h6 {
    font-size: 18px;
    border-radius: 4px;
  }
}

@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: 1em;
  font-size: 13px;
  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: url("../images/icons/bg-list-mark.png") center center no-repeat;
  background-size: contain;
  font-size: 11px;
  color: white;
  line-height: 1;
}

@media (min-width: 992px) {
  .site-body ol li::before {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    font-size: 18px;
  }
}

.site-body a {
  color: #0066cc;
}

.wp-block-button__link {
  font-size: 12px;
  color: white;
}

@media (min-width: 992px) {
  .wp-block-button__link {
    font-size: 15px;
  }
}

.wp-block-button__link:hover {
  color: white;
}

.wp-block-button {
  max-width: 100%;
}

.wp-block-button .wp-block-button__link {
  display: grid;
  place-content: center;
  width: 305px;
  height: 50px;
  max-width: 100%;
  padding: 0 2em 0 1.6em;
  color: white;
  background: #0066cc;
  position: relative;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .wp-block-button .wp-block-button__link {
    width: 400px;
    height: 66px;
    border-radius: 4px;
  }
}

.wp-block-button .wp-block-button__link::after {
  content: "→";
  font-size: 18px;
  font-weight: 100;
  color: white;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 17px;
  top: calc(50% - 0.5em);
  display: grid;
  place-content: center;
}

@media (min-width: 992px) {
  .wp-block-button .wp-block-button__link::after {
    font-size: 20px;
  }
}

.wp-block-button .wp-block-button__link:hover {
  background: #ff3300;
  filter: none;
}

.wp-block-button .wp-block-button__link:hover::after {
  color: white;
}

.button-ss {
  width: 100%;
}

.button-ss .wp-block-button__link {
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: #091a56;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}

@media (min-width: 992px) {
  .button-ss .wp-block-button__link {
    font-size: 20px;
  }
}

.button-ss .wp-block-button__link::after {
  font-size: 16px;
  width: 22px;
  height: 25px;
  background: var(--color-main);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: calc(50% - 12px);
  right: 0;
  padding-bottom: 1px;
}

.button-ss .wp-block-button__link:hover {
  background: none;
}

.button-ss .wp-block-button__link:hover::after {
  background: #0066cc;
}

.button-md .wp-block-button__link {
  display: flex;
  align-items: center;
  place-content: flex-start;
  justify-content: flex-start;
  color: white;
  background: var(--color-main);
  width: 150px;
  height: 36px;
}

@media (min-width: 992px) {
  .button-md .wp-block-button__link {
    width: 200px;
    height: 50px;
  }
}

.wp-block-buttons>.wp-block-button {
  margin: 0 auto;
}

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

.c-button {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-blue);
  display: grid;
  place-content: center;
  width: 220px;
  height: 48px;
  padding: 0;
  background: #f8fbfe;
  border: 1px solid var(--color-blue);
  position: relative;
}

@media (min-width: 992px) {
  .c-button {
    font-size: 15px;
    width: 250px;
    height: 56px;
    max-width: 100%;
  }
}

.c-button:hover {
  color: white;
}

.c-button::after {
  content: "→";
  font-size: 18px;
  font-weight: 100;
  color: var(--color-blue);
  width: 1em;
  height: 1em;
  position: absolute;
  right: 17px;
  top: calc(50% - 0.5em);
  display: grid;
  place-content: center;
}

@media (min-width: 992px) {
  .c-button::after {
    font-size: 20px;
  }
}

.c-button:hover {
  background: var(--color-blue);
  filter: none;
}

.c-button:hover::after {
  color: white;
}

.btn-primary {
  color: white;
  background-color: #0066cc;
}

ul.page-numbers li span.page-numbers.current {
  background-color: #0066cc;
}

.vk_post .vk_post_btn {
  color: white;
}

.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: none;
  font-size: 18px;
  line-height: 1.6;
  padding: 0.3em 0.5em;
  color: #fff;
  background-color: #0066cc;
  border-radius: 4px;
}

.site-body .c-category-widget__list {
  list-style: none;
  font-weight: 500;
  padding: 0;
}

.site-body .c-category-widget__list-item {
  margin: 0;
  border-style: solid;
  border-color: var(--color-main);
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 1px;
  padding: 0.5em 1em;
}

.site-body .c-category-widget__list-item a {
  text-decoration: none;
  color: #1e1e1e;
}

.site-body .c-category-widget__list-item a:hover {
  color: #0066cc;
}

.site-body .c-category-widget__list .c-category-widget__list {
  padding-left: 1em;
  margin-bottom: 0;
}

.c-case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .c-case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .c-case-list {
    gap: 48px;
  }
}

.c-case-item-thumbnail {
  display: block;
  aspect-ratio: 16/9;
}

.c-case-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-case-item-button {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .c-case-item-button {
    padding: 0;
  }
}

.c-case-item-button .c-button {
  background: #0066cc;
  color: white !important;
  width: 100%;
  margin-top: auto;
}

@media (min-width: 768px) {
  .c-case-item-button .c-button {
    width: 240px;
    margin-inline: auto;
  }
}

@media (min-width: 992px) {
  .c-case-item-button .c-button {
    margin-right: 0;
  }
}

.c-case-item-button .c-button:hover {
  background: #ff3300;
  filter: none;
  border-color: #ff3300;
}

.c-case-item-button .c-button:hover::after {
  color: white;
}

.c-case-item-row {
  margin-bottom: 1em;
}

.c-case-item-row-title {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.c-case-item-row-desc {
  line-height: 1.3;
  margin: 0;
}

.no-click>a {
  pointer-events: none;
  cursor: default;
  color: gray;
}

.ft16 {
  font-size: clamp(0.813rem, 0.083rem + 1.17vw, 1.25rem);
}

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