@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-black: #141d2a;
  --color-main: #194b7b;
  --color-sky: #78b2ed ;
}

: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;
  color: black;
}

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;
}
a:hover {
  color: inherit;
}

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

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

.breadcrumb {
  border: none;
}
@media (min-width: 992px) {
  .breadcrumb {
    font-size: 14px;
  }
}

.breadcrumb-list {
  color: var(--color-main);
}
.breadcrumb-list li::after {
  content: "＞";
}
.breadcrumb-list li a {
  color: var(--color-main);
  text-decoration: none;
}

.page-header.has-image {
  height: 175px;
  margin-top: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .page-header.has-image {
    height: 350px;
    margin-top: 100px;
  }
}
.page-header.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header.has-image .page-header-inner {
  position: absolute;
  width: 100%;
}
.page-header.has-image .container {
  display: grid;
  place-items: center;
}
@media (min-width: 992px) {
  .page-header.has-image .container {
    font-size: 50px;
    place-items: flex-start;
  }
}
.page-header.has-image .page-header-title {
  display: grid;
  place-content: center;
  background: rgba(25, 75, 123, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 36px;
  max-width: 100%;
  font-weight: 600;
}
@media (min-width: 992px) {
  .page-header.has-image .page-header-title {
    font-size: 50px;
    padding: 14px 40px;
  }
}

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

.device-pc .global-nav-list > li > a {
  padding: 14px 1em;
  position: relative;
}
.device-pc .global-nav-list > li > a::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-sky);
  position: absolute;
  left: 0;
  bottom: 5px;
  opacity: 0;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.device-pc .global-nav-list > li > a:hover::after {
  opacity: 1;
}

.global-nav-list li {
  font-size: 17px;
}
.global-nav-list li .global-nav-name {
  font-size: 17px;
}
.global-nav-list li a {
  color: var(--color-main);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}
@media (min-width: 992px) {
  .site-header {
    height: auto;
  }
}
.site-header-logo {
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
  align-self: center;
}
@media (min-width: 992px) {
  .site-header-logo {
    display: block;
    width: auto !important;
    height: auto;
  }
}
.site-header-logo img {
  height: 39px;
}
@media (min-width: 992px) {
  .site-header-logo img {
    height: 66px;
  }
}
@media (min-width: 992px) {
  .site-header-container {
    display: flex;
    height: 100px;
    max-width: 100%;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .site-header-content {
    width: 100%;
  }
}
.site-header-content-top {
  display: none;
}
@media (min-width: 992px) {
  .site-header-content-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
  }
}
.site-header-content-bottom {
  align-self: flex-end;
}
.site-header-content-bottom .global-nav--layout--float-right {
  justify-content: flex-start !important;
}
.site-header-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-main);
  position: relative;
  margin-right: 13px;
}
.site-header-tel::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("../images/icons/icon_phone_sm.png") center center no-repeat;
  background-size: contain;
}
.site-header-time {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main);
  margin-right: 18px;
}
.site-header-buttons {
  display: flex;
}
.site-header-button {
  display: grid;
  place-items: center;
  width: 150px;
  height: 38px;
  background: var(--color-main);
  font-weight: 500;
  color: white;
  line-height: 1;
}
.site-header-button:hover {
  background: #546a83;
  color: white;
}
.site-header-button__light {
  background: var(--color-sky);
}

.vk-mobile-nav {
  background: var(--color-main);
  padding: 80px 50px;
}
.vk-mobile-nav nav ul {
  font-size: 15px;
  font-weight: 500;
  border-top: none;
}
.vk-mobile-nav nav ul li a {
  color: white;
  border-bottom: none;
}

.vk-mobile-nav-menu-btn {
  left: auto;
  right: 0;
  top: 0;
  border: none;
  width: 50px;
  height: 50px;
  background-image: none;
  background-color: var(--color-main);
  border-radius: 0;
}
.vk-mobile-nav-menu-btn span {
  width: 25px;
  height: 2px;
  background: white;
  position: absolute;
  top: 50%;
  left: 12.5px;
  transition: 0.2s ease-in-out 0.2s;
}
.vk-mobile-nav-menu-btn:before, .vk-mobile-nav-menu-btn:after {
  content: "";
  width: 25px;
  height: 2px;
  background: white;
  position: absolute;
  top: 50%;
  left: 12.5px;
  transition: margin 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s;
}
.vk-mobile-nav-menu-btn:before {
  margin-top: -0.5em;
}
.vk-mobile-nav-menu-btn:after {
  margin-top: 0.5em;
}
.vk-mobile-nav-menu-btn.menu-open {
  background-image: none;
  background-color: var(--color-main);
  border: none;
}
.vk-mobile-nav-menu-btn.menu-open span {
  background-color: transparent;
  transition-delay: 0s;
}
.vk-mobile-nav-menu-btn.menu-open:before, .vk-mobile-nav-menu-btn.menu-open:after {
  margin-top: 0;
  transition-delay: 0s, 0.25s, 0.25s;
}
.vk-mobile-nav-menu-btn.menu-open:before {
  transform: rotate(45deg);
}
.vk-mobile-nav-menu-btn.menu-open:after {
  transform: rotate(-45deg);
}

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

.admin-bar .site-header {
  top: 46px;
}
@media (min-width: 992px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
.admin-bar .vk-mobile-nav-menu-btn {
  top: 46px;
}

.site-footer {
  background: #dfe8f0;
  padding-top: 60px;
  padding-bottom: 20px;
  color: var(--color-main);
  border-top: none;
}
@media (min-width: 992px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.site-footer-logo {
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.site-footer-logo img {
  display: block;
  height: 65px;
  mix-blend-mode: multiply;
}
@media (min-width: 992px) {
  .site-footer-logo img {
    height: 130px;
  }
}
.site-footer-desc {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .site-footer-desc {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.site-footer-name {
  text-align: center;
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  .site-footer-name {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 0;
  }
}
.site-footer-name__main {
  font-size: 27px;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .site-footer-name__main {
    font-size: 30px;
    margin-bottom: 0;
  }
}
.site-footer-name__sub {
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .site-footer-name__sub {
    font-size: 20px;
  }
}
.site-footer-copyright {
  font-size: 12px;
  text-align: center;
  padding: 0;
}
@media (min-width: 992px) {
  .site-footer-copyright {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    line-height: 1;
  }
}

.footer-nav {
  display: none;
  border: none;
}
@media (min-width: 992px) {
  .footer-nav {
    display: block;
    margin-bottom: 70px;
  }
}
.footer-nav-list {
  display: flex;
  justify-content: center;
  align-self: center;
  font-size: 18px;
  font-weight: 600;
}
.footer-nav-list li {
  border: none;
}
.footer-nav-list li:first-child {
  border-left: none;
}
.footer-nav-list li a {
  color: var(--color-main);
}

.home .container {
  max-width: 1310px;
}

.p-front-hero {
  margin-top: 50px;
  height: 450px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-front-hero {
    margin-top: 100px;
    height: 680px;
  }
}
.p-front-hero__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  z-index: 100;
  text-align: center;
  color: white;
}
.p-front-hero-title {
  font-size: 20px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .p-front-hero-title {
    font-size: 64px;
    margin-bottom: 10px;
  }
}
.p-front-hero-desc {
  font-size: 15px;
  line-height: 2;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .p-front-hero-desc {
    font-size: 28px;
  }
}
.p-front-hero .hero-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-front-hero .hero-container {
    height: 680px;
  }
}
.p-front-hero .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-front-hero .swiper-slide {
  height: 450px;
}
@media (min-width: 992px) {
  .p-front-hero .swiper-slide {
    height: 680px;
  }
}
.p-front-hero .swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .p-front-hero .swiper-slide img {
    height: 680px;
  }
}
.p-front-hero .main-hero-swiper {
  z-index: 50;
}
.p-front-hero .left-swiper, .p-front-hero .right-swiper {
  width: 50%;
  height: 100%;
  top: 0;
}
.p-front-hero .left-swiper {
  left: 0;
}
.p-front-hero .right-swiper {
  right: 0;
  left: auto;
}
.p-front-hero .right-swiper img {
  object-position: left;
}
.p-front-hero .dummy-slide {
  opacity: 0;
  pointer-events: none;
}

.site-front-body {
  position: relative;
}
.site-front-body::before {
  content: "";
  width: calc(100% - 40px);
  max-width: 1270px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to right, #b7d0ea, #b7d0ea 1px, transparent 1px, transparent 33.3333333333%);
  z-index: 0;
}
@media (min-width: 992px) {
  .site-front-body::before {
    width: 100%;
    background-image: repeating-linear-gradient(to right, #b7d0ea, #b7d0ea 1px, transparent 1px, transparent 25%);
    border-right: 1px solid #b7d0ea;
  }
}

.p-front-news {
  background: #052c5d;
  position: relative;
}
.p-front-news-container {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .p-front-news-container {
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 36px 20px;
  }
}
.p-front-news-header {
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .p-front-news-header {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.p-front-news-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .p-front-news-body {
    flex-direction: row;
    gap: 34px;
    margin-bottom: 0;
    flex-grow: 2;
  }
}
.p-front-news-date {
  font-size: 13px;
  color: #8bbdef;
}
@media (min-width: 992px) {
  .p-front-news-date {
    font-size: 18px;
  }
}
.p-front-news-title {
  font-size: 12px;
  color: #8bbdef;
}
@media (min-width: 992px) {
  .p-front-news-title {
    font-size: 16px;
  }
}
.p-front-news-more {
  text-align: right;
}
.p-front-news-more a {
  font-size: 12px;
  color: #cccccc;
}
@media (min-width: 992px) {
  .p-front-news-more a {
    font-size: 16px;
  }
}
.p-front-news-more a:hover {
  color: white;
}

.p-front-section-title {
  border: none;
  padding: 0;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.p-front-section-title__sub {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--color-main);
  letter-spacing: 0.15em;
}
@media (min-width: 992px) {
  .p-front-section-title__sub {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.p-front-section-title__main {
  display: block;
  font-size: 25px;
}
@media (min-width: 992px) {
  .p-front-section-title__main {
    font-size: 46px;
  }
}

.p-front-about {
  background: url("../images/front/bg_front_about_sp.jpg") center right no-repeat;
  background-size: cover;
  position: relative;
}
.p-front-about-content {
  padding: 50px 22px 30px 45px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-about-content {
    padding: 80px 22px 80px 232px;
  }
}
@media (min-width: 992px) {
  .p-front-about-content::before {
    display: block;
    content: "";
    width: 190px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/front/fig_about.png") center center no-repeat;
    background-size: contain;
  }
}
.p-front-about-desc {
  font-size: 18px;
  font-weight: bold;
  color: #052c5d;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .p-front-about-desc {
    font-size: 30px;
  }
}
.p-front-about-title {
  font-size: 36px;
  line-height: 1.4;
  color: white;
  text-shadow: 1px 1px 2px rgb(25, 75, 123);
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .p-front-about-title {
    font-size: 90px;
    text-shadow: 2px 2px 2px rgb(25, 75, 123);
    margin-bottom: 56px;
  }
}
.p-front-about p {
  color: white;
  line-height: 2.5;
}
@media (min-width: 992px) {
  .p-front-about p {
    font-size: 20px;
    max-width: 720px;
  }
}

.p-front-pickup {
  padding-top: 50px;
}
.p-front-pickup .p-front-section-title {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .p-front-pickup .p-front-section-title {
    margin-bottom: 55px;
  }
}
.p-front-pickup-header {
  position: relative;
}
.p-front-pickup-header-image {
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-pickup-header-image {
    position: absolute;
    left: 0;
    top: -50px;
  }
}
.p-front-pickup-header-image img {
  width: 156px;
}
@media (min-width: 992px) {
  .p-front-pickup-header-image img {
    width: auto;
  }
}
.p-front-pickup-header + .p-front-pickup-block {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .p-front-pickup-header + .p-front-pickup-block {
    padding-top: 0;
  }
}
.p-front-pickup-cta {
  display: block;
  background: var(--color-sky);
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 2;
  padding: 50px 0 25px;
  margin-top: 60px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-pickup-cta {
    font-size: 30px;
    padding: 60px 0 50px;
  }
}
.p-front-pickup-cta .arrow {
  display: grid;
  place-content: center;
  background: var(--color-main);
  width: 33px;
  height: 20px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  margin: 12px auto 0;
}
@media (min-width: 992px) {
  .p-front-pickup-cta .arrow {
    width: 66px;
    height: 40px;
    position: absolute;
    bottom: 58px;
    left: calc(50% + 240px);
    border-radius: 4px;
    font-size: 18px;
  }
}
.p-front-pickup-cta:hover {
  background: #e03c3c;
  color: white;
}

.p-front-pickup-block {
  padding-top: 50px;
  width: 100%;
  max-width: 1270px;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-pickup-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
    height: 500px;
  }
}
.p-front-pickup-block-main {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .p-front-pickup-block-main {
    display: grid;
    place-content: center;
    margin-bottom: 0;
    padding: 0 12.5%;
  }
}
.p-front-pickup-block-main p {
  line-height: 2.2;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .p-front-pickup-block-main p {
    font-size: 16px;
  }
}
.p-front-pickup-block-title {
  font-size: 22px;
  color: var(--color-main);
  text-align: center;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.98);
  border-bottom: none;
  padding: 0;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .p-front-pickup-block-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.p-front-pickup-block-title::after {
  display: none;
}
.p-front-pickup-block-title .sm {
  font-size: 15px;
  line-height: 1;
}
@media (min-width: 992px) {
  .p-front-pickup-block-title .sm {
    display: inline-block;
    font-size: 25px;
  }
}
.p-front-pickup-block-image {
  position: relative;
}
@media (min-width: 992px) {
  .p-front-pickup-block-image {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50vw;
    height: 100%;
  }
}
.p-front-pickup-block-image img {
  display: block;
}
@media (min-width: 992px) {
  .p-front-pickup-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-front-pickup-block-image-caption {
  font-size: 10px;
  position: absolute;
  left: 20px;
  bottom: 8px;
  margin: 0;
}
@media (min-width: 992px) {
  .p-front-pickup-block-image-caption {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__reverse .p-front-pickup-block-main {
    grid-column: 2/3;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__reverse .p-front-pickup-block-image {
    left: auto;
    right: 50%;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1270px;
    margin-inline: auto;
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block {
    display: block;
    height: auto;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block:nth-child(1) {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block:nth-child(2) {
    padding-right: 20px;
  }
}
.p-front-pickup-block__vertical .p-front-pickup-block:nth-child(2) .p-front-pickup-block-image-caption {
  color: white;
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block-title {
    height: 118px;
  }
}
@media (min-width: 1048px) {
  .p-front-pickup-block__vertical .p-front-pickup-block-title {
    height: auto;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block-main {
    padding: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block-main .container {
    padding: 0;
  }
}
.p-front-pickup-block__vertical .p-front-pickup-block-image {
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-pickup-block__vertical .p-front-pickup-block-image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
}
.p-front-pickup-block__vertical .p-front-pickup-block-image-caption {
  left: auto;
  right: 20px;
}
.p-front-pickup-block__vertical .p-front-pickup-block-image img {
  width: 100%;
}

.p-front-feature {
  background: var(--color-main);
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-feature {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-front-feature .p-front-section-title__sub {
  color: var(--color-sky);
}
.p-front-feature-header {
  margin-inline: auto;
  margin-bottom: 36px;
  max-width: 1050px;
}
@media (min-width: 992px) {
  .p-front-feature-header {
    margin-bottom: 40px;
  }
}
.p-front-feature-header-image {
  margin-bottom: 25px;
}
.p-front-feature-header-image img {
  display: block;
  margin: auto;
  width: 196px;
}
@media (min-width: 992px) {
  .p-front-feature-header-image img {
    width: auto;
  }
}
.p-front-feature-header-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: var(--color-sky);
  background: url("../images/front/fig_feature.png") center bottom no-repeat;
  background-size: contain;
  padding-bottom: 44px;
}
@media (min-width: 992px) {
  .p-front-feature-header-title {
    font-size: 34px;
    padding-bottom: 110px;
  }
}
.p-front-feature-size {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-inline: auto;
  margin-bottom: 55px;
  max-width: 1050px;
}
@media (min-width: 992px) {
  .p-front-feature-size {
    flex-direction: row;
    justify-content: center;
  }
}
.p-front-feature-size-item {
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-feature-size-item:nth-child(1) {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .p-front-feature-size-item:nth-child(2) {
    width: 440px;
  }
}
@media (min-width: 992px) {
  .p-front-feature-size-item:nth-child(3) {
    width: 250px;
  }
}
.p-front-feature-size-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-sky);
  border-bottom: 1px solid #6699cc;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .p-front-feature-size-item-title {
    font-size: 24px;
    padding-bottom: 16px;
  }
}
.p-front-feature-size-item-value {
  font-size: 40px;
  line-height: 1;
  padding-top: 8px;
}
@media (min-width: 992px) {
  .p-front-feature-size-item-value {
    font-size: 60px;
    display: grid;
    align-items: flex-end;
    place-items: center;
    width: 100%;
    height: 110px;
  }
}
.p-front-feature-size-item-value span {
  display: block;
  font-size: 16px;
}
@media (min-width: 992px) {
  .p-front-feature-size-item-value span {
    font-size: 24px;
  }
}
.p-front-feature .p-front-feature-articles {
  display: grid;
  gap: 30px;
}
@media (min-width: 992px) {
  .p-front-feature .p-front-feature-articles {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
}
.p-front-feature .p-front-feature-article-header {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .p-front-feature .p-front-feature-article-header {
    margin-bottom: 12px;
  }
}
.p-front-feature .p-front-feature-article-header-num {
  display: grid;
  place-content: center;
  width: 38px;
  height: 50px;
  background: #194B7B;
  background: linear-gradient(0deg, rgb(25, 75, 123) 10%, rgb(120, 178, 237) 70%);
  font-size: 25px;
  color: var(--color-main);
  line-height: 1;
}
@media (min-width: 992px) {
  .p-front-feature .p-front-feature-article-header-num {
    width: 60px;
    height: 80px;
    font-size: 40px;
    padding-bottom: 14px;
  }
}
.p-front-feature .p-front-feature-article-title {
  font-size: 17px;
  padding: 0;
  margin: 0;
  border: none;
}
@media (min-width: 992px) {
  .p-front-feature .p-front-feature-article-title {
    font-size: 26px;
  }
}
.p-front-feature .p-front-feature-article-title::after {
  display: none;
}
.p-front-feature .p-front-feature-article-image {
  margin-bottom: 1em;
}
.p-front-feature .p-front-feature-article p {
  margin-bottom: 0;
}

.p-front-cta {
  background: #6699cc;
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-front-cta-desc {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-cta-desc {
    font-size: 24px;
  }
}
.p-front-cta-title {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 992px) {
  .p-front-cta-title {
    font-size: 150px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .p-front-cta-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
}
.p-front-cta-tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 37.5px;
  font-weight: bold;
  gap: 10px;
}
@media (min-width: 992px) {
  .p-front-cta-tel-num {
    font-size: 50px;
    line-height: 1;
  }
}
.p-front-cta-tel-num::before {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
  background: url("../images/icons/icon_phone.png") center center no-repeat;
  background-size: contain;
}
.p-front-cta-time {
  font-size: 13px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .p-front-cta-time {
    margin-bottom: 0;
    font-size: 17px;
  }
}
.p-front-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 255px;
  height: 60px;
  background: #194b7b;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-inline: auto;
  border-radius: 2px;
}
@media (min-width: 992px) {
  .p-front-cta-button {
    width: 340px;
    height: 80px;
    margin: 0;
    border-radius: 4px;
    font-size: 20px;
  }
}
.p-front-cta-button:hover {
  background: #e03c3c;
  color: white;
}
.p-front-cta-button::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background: url("../images/icons/icon_mail.png") center center no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .p-front-cta-button::before {
    width: 40px;
    height: 40px;
  }
}

.p-front-products {
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-products {
    margin-bottom: 100px;
  }
}
.p-front-products-desc {
  font-size: 15px;
  line-height: 2.5;
  text-align: center;
  color: var(--color-main);
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .p-front-products-desc {
    font-size: 20px;
  }
}
.p-front-products-industry {
  display: grid;
  gap: 22px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .p-front-products-industry {
    grid-template-columns: 1fr 1fr;
    gap: 40px 50px;
    margin-bottom: 50px;
  }
}
.p-front-products-industry-card-title {
  background: var(--color-main);
  width: 100%;
  height: 36px;
  display: grid;
  place-content: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
}
@media (min-width: 992px) {
  .p-front-products-industry-card-title {
    height: 65px;
    font-size: 26px;
  }
}
.p-front-products-industry-card-image {
  margin-bottom: 0.5em;
}
.p-front-products-industry-card-image img {
  width: 100%;
}
.p-front-products-industry-card-content {
  font-weight: normal;
  line-height: 2;
}
@media (min-width: 992px) {
  .p-front-products-industry-card-content {
    font-size: 16px;
  }
}
.p-front-products-industry-card-caption {
  font-size: 0.8em;
  text-align: right;
}
.p-front-products-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .p-front-products-images {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1600px;
    gap: 24px 12px;
    margin: 0 auto 50px;
  }
}
.p-front-products-images img {
  display: block;
}
.p-front-products-images img:last-child {
  display: none;
}
@media (min-width: 992px) {
  .p-front-products-images img:last-child {
    display: block;
  }
}
.p-front-products-more .c-button {
  margin: auto;
}

.p-front-bn_link {
  width: 100%;
  height: 198px;
  display: grid;
  place-content: center;
  background: var(--color-main);
}
.p-front-bn_link:hover {
  filter: brightness(0.9);
}
.p-front-bn_link-title {
  font-size: 19px;
  font-weight: bold;
  color: white;
  text-align: center;
  background: rgba(25, 75, 123, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 60px 14px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-bn_link-title {
    font-size: 30px;
    padding: 10px 80px 14px;
  }
}
.p-front-bn_link-title::after {
  content: "";
  width: 10px;
  height: 12px;
  display: block;
  background: url("../images/icons/arrow_link.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 35px;
  top: 35px;
}
@media (min-width: 992px) {
  .p-front-bn_link-title::after {
    width: 14px;
    height: 18px;
    right: 40px;
    top: 49px;
  }
}
.p-front-bn_link-title__en {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
}
@media (min-width: 992px) {
  .p-front-bn_link-title__en {
    font-size: 16px;
  }
}

.p-front-equipments {
  margin-bottom: 5px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-equipments {
    margin-bottom: 100px;
  }
}
.p-front-equipments .p-front-bn_link {
  background: var(--color-main) url("../images/front/img_link_equipments.jpg") center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .p-front-equipments .p-front-bn_link {
    width: 100%;
    max-width: 1270px;
    height: 300px;
    margin-inline: auto;
  }
}

.p-front-info {
  position: relative;
}
@media (min-width: 992px) {
  .p-front-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 100px;
  }
}
.p-front-info .p-front-bn_link {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .p-front-info .p-front-bn_link {
    height: 420px;
    margin-bottom: 0;
  }
}
.p-front-info .p-front-bn_link:nth-child(1) {
  background: var(--color-main) url("../images/front/img_link_company.jpg") center center no-repeat;
  background-size: cover;
}
.p-front-info .p-front-bn_link:nth-child(2) {
  background: var(--color-main) url("../images/front/img_link_quality.jpg") center center no-repeat;
  background-size: cover;
}

.p-front-links {
  background: var(--color-main);
  padding: 20px 0;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-links {
    padding: 0;
  }
}
.p-front-links .container {
  display: flex;
  justify-content: center;
}
.p-front-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 154px;
  padding-left: 25px;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-link {
    height: 280px;
    padding-left: 70px;
  }
}
.p-front-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(25, 75, 123, 0.5);
  opacity: 0;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-front-link-title {
  font-size: 17px;
  color: white;
  position: relative;
}
@media (min-width: 992px) {
  .p-front-link-title {
    font-size: 28px;
  }
}
.p-front-link-title .icon {
  display: inline-block;
  margin-left: 14px;
  width: 8px;
}
@media (min-width: 992px) {
  .p-front-link-title .icon {
    width: 14px;
  }
}
.p-front-link-title__en {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: white;
  position: absolute;
  left: 25px;
  top: 40px;
}
@media (min-width: 992px) {
  .p-front-link-title__en {
    font-size: 16px;
    left: 70px;
    top: 82px;
  }
}
.p-front-link__column {
  background: url("../images/front/bg_link_column.png") right center no-repeat;
  background-size: cover;
}
.p-front-link__recruit {
  background: url("../images/front/bg_link_recruit.png") right center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .p-front-link__recruit {
    width: 50%;
  }
}
.p-front-link:hover::before {
  opacity: 1;
}

.p-page-intro {
  max-width: 1040px;
  margin-inline: auto;
}
.p-page-intro p {
  font-weight: 600;
  color: var(--color-main);
  line-height: 2.5;
}
@media (min-width: 992px) {
  .p-page-intro p {
    font-size: 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);
    gap: 1.2em;
  }
}
@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;
  }
}

.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: 24px;
  text-align: center;
  color: var(--color-main);
  position: relative;
  padding-bottom: 18px;
  border: none;
}
@media (min-width: 992px) {
  .site-body h2 {
    font-size: 40px;
  }
}
.site-body h2::after {
  content: "";
  width: 60px;
  height: 3px;
  position: absolute;
  left: calc(50% - 30px);
  bottom: 0;
  background: var(--color-sky);
}
.site-body h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  border-top: 1px solid var(--color-main);
  border-bottom: none;
  padding-top: 0.8em;
}
@media (min-width: 992px) {
  .site-body h3 {
    font-size: 34px;
  }
}
.site-body h3::after {
  border-bottom: 3px solid #194b7b;
  width: 60px;
  bottom: auto;
  top: -2px;
}
@media (min-width: 992px) {
  .site-body h3::after {
    width: 100px;
    border-bottom-width: 5px;
    top: -3px;
  }
}
.site-body h4 {
  font-size: 15px;
  color: var(--color-main);
  padding: 0;
  background: none;
  border-radius: 0;
}
@media (min-width: 992px) {
  .site-body h4 {
    font-size: 24px;
  }
}
.site-body h5 {
  display: grid;
  place-content: center;
  justify-content: flex-start;
  height: 26px;
  background: var(--color-main);
  font-size: 12px;
  color: white;
  padding: 0 10px;
  position: relative;
}
@media (min-width: 992px) {
  .site-body h5 {
    height: 44px;
    font-size: 18px;
    padding: 0 15px;
  }
}
.site-body h5:where(:not(.wp-block-post-title)) {
  padding-bottom: 0;
}
.site-body h6 {
  background: #d4dff5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 1em 1em;
}
@media (min-width: 992px) {
  .site-body h6 {
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 20px;
  }
}

@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;
  }
}
.site-body ul.wp-block-list {
  font-size: 12px;
  color: var(--color-main);
  list-style: none;
  padding-left: 0;
}
@media (min-width: 992px) {
  .site-body ul.wp-block-list {
    font-size: 18px;
  }
}
.site-body ul.wp-block-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 0.85em;
  margin-bottom: 0.85em;
}
@media (min-width: 992px) {
  .site-body ul.wp-block-list li {
    padding-left: 46px;
  }
}
.site-body ul.wp-block-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url("../images/icons/list_mark.png") left center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 3px;
}
@media (min-width: 992px) {
  .site-body ul.wp-block-list li::before {
    width: 28px;
    height: 28px;
    top: 0;
  }
}

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

.wp-block-button .wp-block-button__link {
  display: grid;
  place-content: center;
  width: 210px;
  height: 45px;
  padding: 0;
  background: white;
  border: 1px solid black;
  font-size: 12px;
  position: relative;
}
@media (min-width: 992px) {
  .wp-block-button .wp-block-button__link {
    font-size: 16px;
    width: 280px;
    height: 56px;
    max-width: 100%;
  }
}
.wp-block-button .wp-block-button__link::after {
  content: "＞";
  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: #546a83;
  filter: none;
}
.wp-block-button .wp-block-button__link:hover::after {
  color: white;
}

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

.c-button {
  display: grid;
  place-content: center;
  width: 210px;
  height: 45px;
  padding: 0;
  background: white;
  border: 1px solid black;
  font-size: 12px;
  position: relative;
}
@media (min-width: 992px) {
  .c-button {
    font-size: 16px;
    width: 280px;
    height: 56px;
    max-width: 100%;
  }
}
.c-button::after {
  content: "＞";
  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: #546a83;
  filter: none;
  color: white;
}
.c-button:hover::after {
  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;
  padding: 0.3em 0;
  color: #fff;
  background-color: var(--vk-color-primary);
}
.site-body .c-category-widget__list {
  list-style: none;
  font-weight: 500;
  padding: 0.8em 1em;
  background: #f7f7f7;
}
.site-body .c-category-widget__list-item {
  margin: 0;
}
.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;
}

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