@charset "UTF-8";
:root {
  --vk-color-text-body: #444444;
  --vk-color-text-link: #555555;
  --vk-color-text-link-hover: #1e73be;
  --vk-color-text-header: #444444;
  --vk-color-text-meta: #666666;
  /* 一旦非推奨 */
  --vk-color-text-light: #666666;
  --vk-color-border-hr: rgba(0, 0, 0, 0.06);
  --vk-color-border-form: rgba(0, 0, 0, 0.2);
  --vk-color-primary: #337ab7;
  --vk-color-primary-dark: #b00;
  --vk-color-accent-bg: rgba(0, 0, 0, 0.02);
  --vk-color-header-bg: #fff;
  --vk-color-footer-bg: #f5f5f5;
  --vk-width-container: 100%;
  --vk-width-container-padding: 25px;
  --vk-width-col-2-main: 66.6%;
  --vk-width-col-2-sub: calc(var(--vk-width-container) * 0.27);
  --vk-margin-meta: 0.5rem;
  --vk-margin-headding-bottom: 1rem;
  --vk-margin-element-bottom: 1rem;
  --vk-margin-block-bottom: 2rem;
  --vk-margin-section-bottom: 3rem;
  --vk-size-text: 16px;
  --vk-size-text-meta: 0.75rem;
  --vk-size-text-sm: 0.875rem;
  --vk-size-text-xs: 0.75rem;
  --vk-size-radius: 5px;
  --vk-size-radius-sm: calc(var(--vk-size-radius) * 0.5);
  --vk-size-radius-lg: calc(var(--vk-size-radius) * 1.5);
  --vk-line-height: 1.7em;
  --vk-line-height-low: 1.5em;
}
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

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

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */

.vk-mobile-nav-menu-btn {
  left: auto !important;
  right: 8px !important;
  top: 32px !important;
  width: 32px !important;
  height: 32px !important;
  border: 1px solid #0096df !important;
  background: url(../img/common/menu.svg) center 50% no-repeat !important;
}
.site-header > .container {
  max-width: none !important;
}
.site-header .global-nav .global-nav-list li > .acc-btn {
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
  rotate: 0;
}
.site-header .global-nav .global-nav-list li.acc-parent-open > .acc-btn {
  rotate: -180deg;
}
.site-header .global-nav .global-nav-list .disabled {
  background: #8d8d8d;
  pointer-events: none;
}
.site-header .global-nav .global-nav-list .disabled a {
  pointer-events: none;
}
.site-header .global-nav .global-nav-list > li > a {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.page-child .page-header {
  display: none;
}

.page-header {
  display: none !important;
}

.c-page-header {
  background: -webkit-gradient(linear, left top, right top, from(#00b4ff), color-stop(50%, #0096df), to(#036eb8));
  background: linear-gradient(90deg, #00b4ff 0%, #0096df 50%, #036eb8 100%);
  line-height: var(--vk-line-height-low);
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.site-footer {
  background-color: #fff;
  overflow: hidden;
}
.site-footer > .container {
  max-width: 1250px !important;
}
.site-footer .site-footer-content {
  padding-top: 4.75rem;
}
.site-footer #block-15 .menu-item a,
.site-footer #block-12 .menu-item a {
  border: none;
  padding: 0;
}
.site-footer #block-15 .menu-item.disabled > a,
.site-footer #block-12 .menu-item.disabled > a {
  pointer-events: none;
  cursor: default;
}
.site-footer #block-15 .menu-item.disabled > a::before, .site-footer #block-15 .menu-item.disabled > a::after,
.site-footer #block-12 .menu-item.disabled > a::before,
.site-footer #block-12 .menu-item.disabled > a::after {
  content: none !important;
}
.site-footer #block-15 .menu > .menu-item,
.site-footer #block-12 .menu > .menu-item {
  font-size: 20px;
}
.site-footer #block-15 .menu > .menu-item > a,
.site-footer #block-12 .menu > .menu-item > a {
  position: relative;
  padding-right: 25px;
  color: #0096DF;
}
.site-footer #block-15 .menu > .menu-item > a::before,
.site-footer #block-12 .menu > .menu-item > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  -webkit-mask: url(../img/common/arrow-right.png.webp);
          mask: url(../img/common/arrow-right.png.webp);
  -webkit-mask-size: 10px 3px;
          mask-size: 10px 3px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.site-footer #block-15 .menu > .menu-item > a::after,
.site-footer #block-12 .menu > .menu-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.site-footer #block-15 .menu > .menu-item + .menu-item,
.site-footer #block-12 .menu > .menu-item + .menu-item {
  margin-top: 10px;
}
.site-footer #block-15 .menu > .menu-item > .sub-menu,
.site-footer #block-12 .menu > .menu-item > .sub-menu {
  margin-top: 10px;
}
.site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item,
.site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}
.site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item::before,
.site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item::before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #0096DF;
}
.site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item,
.site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item {
  font-size: 16px;
}
.site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item + .menu-item,
.site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item + .menu-item {
  margin-top: 10px;
}
.site-footer #block-15 {
  margin-top: 3%;
  position: relative;
}
.site-footer #block-15::before, .site-footer #block-15::after {
  width: 100vw;
  height: 1px;
  background-color: #B5B5B6;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.site-footer #block-15::before {
  top: 0;
}
.site-footer #block-15::after {
  bottom: 0;
}
.site-footer #block-15 .is-layout-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
.site-footer #block-15 .is-layout-flex > .wp-block-column + .wp-block-column {
  border-left: none;
}
.site-footer #block-12 {
  position: relative;
  z-index: 1;
}
.site-footer #block-12::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  background: linear-gradient(135deg, #00B4FF, #0096DF, #036EB8);
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
}
.site-footer #block-12 > .wp-block-columns {
  padding: 40px;
}
.site-footer #block-12 .option-menu .menu-item {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
}
.site-footer #block-12 .option-menu .menu-item::before {
  content: "";
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 7px;
}
.site-footer #block-12 .option-menu .menu-item a {
  color: #fff;
}
.site-footer #block-12 .option-menu .menu-item a::before, .site-footer #block-12 .option-menu .menu-item a::after {
  content: none;
}
.site-footer #block-12 .option-menu-flex ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 60px;
}
.site-footer #block-12 .option-menu-flex ul .menu-item {
  width: calc(33.3333333333% - 40px);
}
.site-footer #block-12 .option-menu-flex ul .menu-item + .menu-item {
  margin-top: 0;
}
.site-footer .widget_media_image .wp-block-image img {
  max-width: 425px;
}
.site-footer .parent-no-link .disabled > a {
  display: none;
}
.site-footer .coming-soon {
  opacity: 0.5;
}
.site-footer .affiliates-area {
  padding-top: 40px;
  position: relative;
}
.site-footer .affiliates-area::before {
  content: "";
  height: 1px;
  width: 100vw;
  background-color: #fff;
  position: absolute;
  top: 0;
  margin: auto;
}
.site-footer .site-footer-copyright {
  background-color: #000;
  color: #fff;
  width: 100vw;
  max-width: none !important;
}
.site-footer .site-footer-copyright p:last-child {
  display: none !important;
}

.c-ttl01 {
  position: relative;
  padding-bottom: 10px !important;
}

.c-ttl02 {
  margin-bottom: 2.5rem !important;
  font-weight: 700 !important;
  font-size: 2.25rem !important;
  padding-bottom: 1.5rem !important;
  position: relative;
}
.c-ttl02::after {
  position: absolute;
  content: "" !important;
  background-color: #0096df;
  width: 4.5rem;
  height: 1px;
  bottom: 0;
  inset-inline: 0;
  margin: auto;
}

.c-ttl03 {
  font-size: 22px;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.c-ttl03::after {
  content: "";
  width: 5px;
  height: 1.7rem;
  background-color: #0096DF;
  position: absolute;
  left: 0;
  top: 0;
}

.c-ttl04 {
  width: 100%;
  border-bottom: 1px solid #e8e8e8 !important;
}

.c-ttl05 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545454545;
  padding-left: 0.5em !important;
  border-left: 5px solid #0096df !important;
}

.c-ttl06 {
  font-size: 1.125rem;
  position: relative;
  padding-left: 1.25em !important;
  margin-bottom: 0.5em !important;
}
.c-ttl06::after {
  position: absolute;
  content: "■" !important;
  color: #0096DF;
  top: 0;
  left: 0;
}

h2.c-ttl03 {
  border-top: none !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

h3.c-ttl06::after {
  line-height: 1.4em !important;
  display: block !important;
  overflow: initial !important;
  bottom: auto !important;
  width: auto !important;
  border-bottom: none !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

hr {
  display: none !important;
}

.site-body {
  padding: 0 !important;
}

.main-section {
  margin-bottom: 0 !important;
}
.c-btn01 {
  width: 100%;
  max-width: 510px !important;
}
.c-btn01.active {
  pointer-events: none;
}
.c-btn01.active a {
  background: linear-gradient(-45deg, rgba(3, 110, 184, 0.4), rgba(0, 150, 223, 0.4), rgba(0, 180, 255, 0.4)) !important;
}
.c-btn01.mw-none {
  max-width: none !important;
}
.c-btn01.wi-fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
}

.c-btn02 {
  display: block;
  text-align: center;
  background: #F08000;
  color: #fff;
  padding: 10px 40px;
  border-radius: 40px;
  border: 1px solid #F08000;
  min-width: 280px;
  max-width: 500px;
  padding: 20px 70px;
  font-size: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn02.back-btn {
  border: 1px solid #A0A0A0;
  background: #A0A0A0;
  color: #fff;
}

.c-detail-link {
  position: relative;
  margin-right: 0 !important;
  margin-left: auto;
  padding-right: 15px;
}
.c-detail-link::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.arrow-right {
  position: relative;
}
.arrow-right::after {
  content: "";
  width: 14px;
  height: 20px;
  -webkit-mask: url(../img/common/arrow-right.svg) no-repeat;
          mask: url(../img/common/arrow-right.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.banner01 {
  position: relative;
}
.banner01::after {
  content: "";
  width: 28px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 37px;
  margin: auto;
  -webkit-mask: url("../img/common/arrow-right.png.webp") no-repeat;
          mask: url("../img/common/arrow-right.png.webp") no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
.banner01 img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* -----------------------------------------------
* cta Module
-------------------------------------------------- */
.cta-btn a {
  width: 100%;
  max-width: 548px;
}

.c-txt {
  text-align: center;
}

.c-conduct-wrap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
.c-conduct-wrap .conduct-cont {
  border-radius: 50px 0px 50px 0px !important;
}
.c-conduct-wrap .conduct-cont .num {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid #0096DF;
}
.c-conduct-wrap .sp-flex > div {
  padding-left: 35px;
  padding-right: 35px;
}

.c-wi-900 {
  max-width: 900px;
  margin-inline: auto;
}

.c-link-btn-list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-table01 {
  border: 1px solid #b5b5b6 !important;
  font-family: "Noto Sans JP", sans-serif !important;
}
.c-table01.middle td {
  vertical-align: middle;
}
.c-table01#tablepress-company_group tr th.column-1,
.c-table01#tablepress-company_group tr td.column-1 {
  width: max(325px, 30%);
}
.c-table01#tablepress-company_group tr td.column-1 a {
  padding-left: 1.5em;
  position: relative;
  display: inline-block;
}
.c-table01#tablepress-company_group tr td.column-1 a::before {
  position: absolute;
  content: "＞ ";
  color: #0096df;
  font-weight: 700;
  left: 0;
  top: 0;
}
.c-table01#tablepress-company_group tr td.column-1 a:not(:hover) {
  color: #333333;
}
.c-table01 .ttl {
  font-size: 22px;
  padding-left: 10px;
  border-left: 5px solid #337ab7;
}
.c-table01 tr th,
.c-table01 tr td {
  border-color: #b5b5b6 !important;
  padding: 15px 30px;
}
.c-table01 tr th.column-1,
.c-table01 tr td.column-1 {
  background-color: #E9F4FC;
  width: 200px;
}
.c-table01 tr th {
  background-color: #ffffff;
  font-size: 16px;
}
.c-table01 tr td {
  font-size: 18px;
  letter-spacing: 0.1em;
}
.c-table01 .tel {
  font-size: 16px !important;
}
.c-table01 .link {
  color: #0000FF;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-table01.border {
  border: 1px solid #808080 !important;
}
.c-table01.border .column-2 {
  border-right: 1px solid #808080 !important;
}
.c-table01.border .row-1 > td {
  text-align: center !important;
}
.c-table01:not(.first_column_th) th {
  text-align: center;
}
.c-table01.th-vert-mid th {
  vertical-align: middle !important;
}
.c-table01.td-vert-mid td {
  vertical-align: middle !important;
}

.c-table02 tr,
.c-table02 td,
.c-table02 th {
  padding: 10px !important;
}
.c-table02 .column-1 {
  width: 130px;
}
.c-table02 .row-1 .column-1 {
  background-color: #fff !important;
}
.c-table02 .row-1 th {
  background-color: #0058A4;
  color: #fff;
  vertical-align: middle;
}
.c-table02 tbody td {
  background-color: #F7F7F7;
}
.c-table02 tbody .column-1 {
  background-color: #0096DF;
  color: #fff;
  vertical-align: middle;
}

.c-table03 thead th {
  background-color: #0058A4;
  color: #fff;
  vertical-align: middle;
}
.c-table03 tbody tr:nth-child(odd) .column-1,
.c-table03 tbody tr:nth-child(odd) .column-2,
.c-table03 tbody tr:nth-child(odd) .column-3,
.c-table03 tbody tr:nth-child(odd) .column-4 {
  background-color: #E9F4FC;
}
.c-table03 tbody tr:nth-child(even) .column-3 {
  background-color: #fff;
}

.c-list01 {
  padding-left: 0 !important;
}
.c-list01 > li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list01 > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  background-color: #0096DF;
  border-radius: 50%;
}

.c-list02 {
  list-style: decimal;
  padding-left: 1em;
}
.c-list02 > li::marker {
  color: #0096DF;
}

.c-list03 {
  list-style: decimal;
  padding-left: 1em;
}
.c-list03 > li + li {
  margin-top: 16px;
}
.c-list03 > li::marker {
  color: #0096DF;
  font-weight: 700;
}
.c-list03 > li > strong {
  color: #0096DF;
}

.c-ttl04 {
  padding-left: 0 !important;
}
.c-ttl04 li {
  padding-left: 9px;
  position: relative;
}
.c-ttl04 li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  background-color: #0096df;
  border-radius: 50%;
}

.c-desc-block {
  gap: 20px;
}
.c-desc-block .c-ttl05 {
  margin-bottom: 0 !important;
}
.c-desc-block > .wp-block-group {
  display: grid;
  grid-template-columns: min(30%, 400px) 1fr;
  grid-template-areas: "img desc";
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px 50px;
}
.c-desc-block > .wp-block-group .img-area {
  grid-area: img;
}
.c-desc-block > .wp-block-group .img-area > .wp-block-column {
  -webkit-box-flex: 1 !important;
  -webkit-flex-grow: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
}
.c-desc-block > .wp-block-group .desc-area {
  grid-area: desc;
  gap: 40px;
}
.c-desc-block > .wp-block-group .desc-area > .wp-block-group {
  gap: 0 !important;
}
.c-desc-block > .wp-block-group .desc-area .c-ttl04 {
  padding-top: 0 !important;
}
.c-desc-block > .wp-block-group .desc-area *:not(.c-ttl04) {
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 0.1em;
}

.c-btn-hover a {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.c-btn-hover a::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 180, 255, 0.4) 0%, rgba(0, 150, 223, 0.4) 0%, rgba(3, 110, 184, 0.4) 100%);
  scale: 0 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
  top: 0;
  left: 0;
}
.c-btn-hover a:focus-visible {
  -webkit-filter: none !important;
          filter: none !important;
}
.c-btn-hover a:focus-visible::before {
  scale: 1;
}

.c-post-list {
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}
.c-post-list .post {
  padding: 0 !important;
}
.c-post-list .post img {
  width: 100%;
  aspect-ratio: 372/220;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-list .post .txt-box {
  padding: 33px 30px 0;
  border-left: 4px solid #0096DF;
}
.c-post-list .post .item-ttl {
  font-size: 23px;
}
.c-post-list .post .item-ttl + p {
  font-size: 14px;
  margin-top: 20px;
}
.c-post-list .post .link-btn {
  width: 100%;
  max-width: 150px;
}
.c-post-list .post .link-btn .wp-block-button__link {
  border-radius: 60px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  position: relative;
  font-size: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 5px 0;
}
.c-post-list .post .link-btn .wp-block-button__link::after {
  content: "";
  background-color: #fff;
  -webkit-mask: url(../img/common/arrow-right.svg) no-repeat;
          mask: url(../img/common/arrow-right.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  width: 10px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  -webkit-transition: inherit;
  transition: inherit;
}

.is-active > a {
  color: #0096df;
}

a {
  -webkit-text-decoration-style: solid !important;
          text-decoration-style: solid !important;
}

p a {
  color: #0000ff;
  -webkit-text-decoration-color: #0000ff !important;
          text-decoration-color: #0000ff !important;
}

.c-margin-0 {
  margin: 0 !important;
}

.c-p-margin-0 p {
  margin: 0 !important;
}

.breadcrumb .container {
  max-width: 1210px !important;
}
.breadcrumb .breadcrumb-list {
  padding-block: 40px !important;
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item {
  color: #0096df;
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item::after {
  content: "＞";
  color: #333333;
  font-size: 0.8em;
  margin-inline: 1em;
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item:last-child::after {
  content: "";
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item > a {
  color: #333333;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  display: inline-block;
  -webkit-transition: -webkit-text-decoration 0.3s ease-in-out;
  transition: -webkit-text-decoration 0.3s ease-in-out;
  transition: text-decoration 0.3s ease-in-out;
  transition: text-decoration 0.3s ease-in-out, -webkit-text-decoration 0.3s ease-in-out;
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item > a:focus-visible {
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
}
.breadcrumb .breadcrumb-list .breadcrumb-list__item > a > i {
  display: none;
  margin: 0;
  padding: 0;
}

.c-align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-iframe-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 270px;
}

.c-solution-merit {
  gap: 3.5rem;
}
.c-solution-merit > .wp-block-group {
  width: 100%;
  gap: 10px;
}
.c-solution-merit > .wp-block-group > h4 {
  width: 100%;
  padding: 8px 16px !important;
  margin-bottom: 0 !important;
}
.c-solution-merit > .wp-block-group ul {
  padding-left: 0 !important;
  list-style: none !important;
}
.c-solution-merit > .wp-block-group li {
  position: relative;
  padding-left: 1.5em;
}
.c-solution-merit > .wp-block-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
}

body {
  overflow-x: visible !important;
}

.service-detail .site-body-container {
  max-width: 1210px !important;
  padding-block: 50px 220px;
  display: grid;
  grid-template-columns: min(30%, 300px) 1fr;
  gap: 48px;
}

.sidebar .sidebar-contents {
  border: 1px solid #0096df;
}
.sidebar .sidebar-contents .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar .sidebar-contents .head > .title {
  border: 0 !important;
  margin: 0 !important;
}
.sidebar .sidebar-contents .head > .title .en-ttl,
.sidebar .sidebar-contents .head > .title .ttl {
  display: block;
  text-align: center;
}
.sidebar .sidebar-contents .head > .title .en-ttl {
  color: #0096df;
  font-size: 1.75rem;
}
.sidebar .sidebar-contents .head > .title .ttl {
  font-size: 1.25rem;
  letter-spacing: 1em;
  padding-left: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.sidebar .sidebar-contents .head > .title .ttl.no-space {
  letter-spacing: 0;
}
.sidebar .sidebar-contents .nav {
  border-top: 1px solid #0096df;
}
.sidebar .sidebar-contents .term-list {
  padding: 0 !important;
  margin: 0 !important;
}
.sidebar .sidebar-contents .term-list .term:not(:first-child) {
  border-top: 1px solid #0096df;
}
.sidebar .sidebar-contents .term-list .term > a {
  padding: 1em 1em 1em 1.5em;
  width: 100%;
  display: inline-block;
}
.sidebar .sidebar-contents .term-list .term > a:focus-visible {
  background-color: #edf7fd;
}
.sidebar .sidebar-contents .term-list .term.is-current > a {
  pointer-events: none;
  border-left: 3px solid #0096df;
  background-color: #edf7fd;
}
.sidebar .sidebar-contents .term-list .post-list {
  padding: 0 !important;
  margin: 0 !important;
}
.sidebar .sidebar-contents .term-list .post-list .post {
  padding: 0 !important;
  border-top: 1px solid #0096df;
}
.sidebar .sidebar-contents .term-list .post-list .post > a {
  padding: 0.5em 1em 0.5em 2.5em;
  width: 100%;
  display: inline-block;
  color: #646464;
  position: relative;
}
.sidebar .sidebar-contents .term-list .post-list .post > a:focus-visible {
  background-color: #edf7fd;
}
.sidebar .sidebar-contents .term-list .post-list .post > a::before {
  position: absolute;
  content: "";
  background-color: #0096df;
  width: 10px;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 1.5em;
  margin: auto;
}
.sidebar .sidebar-contents .term-list .is-active > a {
  color: #0096df !important;
  pointer-events: none;
}

.document-form .sidebar-contents .head > .title .ttl {
  padding: 0;
}

.img-width-max img {
  width: 100%;
}

.wp-singular .wp-block-image img {
  width: 100%;
}

.not-found .main-block {
  padding: 100px 0;
}
.not-found .lead {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}
.not-found .c-btn01 {
  margin: 40px auto 0;
  border: 2px solid #0096df;
  color: #0096df;
  background-color: #fff;
  padding: 20px 40px;
  display: block;
  text-align: center;
  font-size: 18px;
}

/* -----------------------------------------------
* contact Module
* contact ページ用
-------------------------------------------------- */
.post-name-form .contact-section,
.post-name-contact .contact-section,
.post-type-document .contact-section {
  margin-top: 40px;
}
.post-name-form .contact-outer-wrap,
.post-name-contact .contact-outer-wrap,
.post-type-document .contact-outer-wrap {
  margin: 0 auto;
  max-width: 900px;
}
.post-name-form .contact-inner-wrap,
.post-name-contact .contact-inner-wrap,
.post-type-document .contact-inner-wrap {
  margin-top: 30px;
  margin-inline: auto;
}
.post-name-form .c-contact-step,
.post-name-contact .c-contact-step,
.post-type-document .c-contact-step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.post-name-form .c-contact-step li,
.post-name-contact .c-contact-step li,
.post-type-document .c-contact-step li {
  z-index: 1;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  height: 80px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 90px;
  background: #fff;
}
.post-name-form .c-contact-step li.active,
.post-name-contact .c-contact-step li.active,
.post-type-document .c-contact-step li.active {
  color: #fff;
  border: none;
  background: rgb(179, 29, 35);
}
.post-name-form .c-contact-step::before,
.post-name-contact .c-contact-step::before,
.post-type-document .c-contact-step::before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 400px;
  height: 3px;
  background: #ccc;
}
.post-name-form .q-wrap,
.post-name-contact .q-wrap,
.post-type-document .q-wrap {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.post-name-form .q-wrap.consent-area,
.post-name-contact .q-wrap.consent-area,
.post-type-document .q-wrap.consent-area {
  display: block;
  padding: 0 !important;
}
.post-name-form .q-wrap.consent-area .checkbox-group,
.post-name-contact .q-wrap.consent-area .checkbox-group,
.post-type-document .q-wrap.consent-area .checkbox-group {
  display: block;
  margin: auto;
}
.post-name-form .label-area,
.post-name-contact .label-area,
.post-type-document .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 280px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.post-name-form .input-area,
.post-name-contact .input-area,
.post-type-document .input-area {
  width: calc(100% - 270px);
}
.post-name-form .input-area > p,
.post-name-contact .input-area > p,
.post-type-document .input-area > p {
  margin-bottom: 0 !important;
}
.post-name-form .contact-label,
.post-name-contact .contact-label,
.post-type-document .contact-label {
  font-size: 18px;
  position: relative;
  padding-left: 15px;
  padding-right: 55px;
}
.post-name-form .contact-label::before,
.post-name-contact .contact-label::before,
.post-type-document .contact-label::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #0096DF;
}
.post-name-form .required-txt,
.post-name-contact .required-txt,
.post-type-document .required-txt {
  padding: 1px 11px 3px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 11px;
  width: 46px;
  text-align: center;
  border-radius: 20px;
  background: #E60012;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: bold;
  margin: auto;
}
.post-name-form .error-txt,
.post-name-contact .error-txt,
.post-type-document .error-txt {
  margin-top: 4px;
  color: rgb(179, 29, 35);
  font-size: 14px;
  font-weight: bold;
}
.post-name-form input[type=text],
.post-name-form input[type=tel],
.post-name-form input[type=email],
.post-name-form textarea,
.post-name-form select,
.post-name-contact input[type=text],
.post-name-contact input[type=tel],
.post-name-contact input[type=email],
.post-name-contact textarea,
.post-name-contact select,
.post-type-document input[type=text],
.post-type-document input[type=tel],
.post-type-document input[type=email],
.post-type-document textarea,
.post-type-document select {
  padding: 8px 18px;
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #B4B4B4;
  border-radius: 5px;
  background: #F7F7F2;
  margin-bottom: 0;
}
.post-name-form input[type=text].errored,
.post-name-form input[type=tel].errored,
.post-name-form input[type=email].errored,
.post-name-form textarea.errored,
.post-name-form select.errored,
.post-name-contact input[type=text].errored,
.post-name-contact input[type=tel].errored,
.post-name-contact input[type=email].errored,
.post-name-contact textarea.errored,
.post-name-contact select.errored,
.post-type-document input[type=text].errored,
.post-type-document input[type=tel].errored,
.post-type-document input[type=email].errored,
.post-type-document textarea.errored,
.post-type-document select.errored {
  border: 1px solid rgb(179, 29, 35);
}
.post-name-form .radio-group,
.post-name-form .checkbox-group,
.post-name-contact .radio-group,
.post-name-contact .checkbox-group,
.post-type-document .radio-group,
.post-type-document .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.post-name-form .radio-group .wpcf7-radio .wpcf7-list-item,
.post-name-form .radio-group .wpcf7-checkbox .wpcf7-list-item,
.post-name-form .checkbox-group .wpcf7-radio .wpcf7-list-item,
.post-name-form .checkbox-group .wpcf7-checkbox .wpcf7-list-item,
.post-name-contact .radio-group .wpcf7-radio .wpcf7-list-item,
.post-name-contact .radio-group .wpcf7-checkbox .wpcf7-list-item,
.post-name-contact .checkbox-group .wpcf7-radio .wpcf7-list-item,
.post-name-contact .checkbox-group .wpcf7-checkbox .wpcf7-list-item,
.post-type-document .radio-group .wpcf7-radio .wpcf7-list-item,
.post-type-document .radio-group .wpcf7-checkbox .wpcf7-list-item,
.post-type-document .checkbox-group .wpcf7-radio .wpcf7-list-item,
.post-type-document .checkbox-group .wpcf7-checkbox .wpcf7-list-item {
  display: block;
}
.post-name-form .radio-group label,
.post-name-form .checkbox-group label,
.post-name-contact .radio-group label,
.post-name-contact .checkbox-group label,
.post-type-document .radio-group label,
.post-type-document .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
.post-name-form .radio-group label::before, .post-name-form .radio-group label::after,
.post-name-form .checkbox-group label::before,
.post-name-form .checkbox-group label::after,
.post-name-contact .radio-group label::before,
.post-name-contact .radio-group label::after,
.post-name-contact .checkbox-group label::before,
.post-name-contact .checkbox-group label::after,
.post-type-document .radio-group label::before,
.post-type-document .radio-group label::after,
.post-type-document .checkbox-group label::before,
.post-type-document .checkbox-group label::after {
  content: "";
  position: absolute;
}
.post-name-form .radio-group label::before,
.post-name-form .checkbox-group label::before,
.post-name-contact .radio-group label::before,
.post-name-contact .checkbox-group label::before,
.post-type-document .radio-group label::before,
.post-type-document .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #B4B4B4;
  border-radius: 15px;
  background: #F7F7F2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.post-name-form .radio-group label::after,
.post-name-form .checkbox-group label::after,
.post-name-contact .radio-group label::after,
.post-name-contact .checkbox-group label::after,
.post-type-document .radio-group label::after,
.post-type-document .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  background: rgb(179, 29, 35);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.post-name-form .radio-group label:has(input:checked)::after,
.post-name-form .checkbox-group label:has(input:checked)::after,
.post-name-contact .radio-group label:has(input:checked)::after,
.post-name-contact .checkbox-group label:has(input:checked)::after,
.post-type-document .radio-group label:has(input:checked)::after,
.post-type-document .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.post-name-form .radio-group label:has(input:checked)::before,
.post-name-form .checkbox-group label:has(input:checked)::before,
.post-name-contact .radio-group label:has(input:checked)::before,
.post-name-contact .checkbox-group label:has(input:checked)::before,
.post-type-document .radio-group label:has(input:checked)::before,
.post-type-document .checkbox-group label:has(input:checked)::before {
  background: #F7F7F2;
}
.post-name-form .radio-group + .error-txt,
.post-name-form .checkbox-group + .error-txt,
.post-name-contact .radio-group + .error-txt,
.post-name-contact .checkbox-group + .error-txt,
.post-type-document .radio-group + .error-txt,
.post-type-document .checkbox-group + .error-txt {
  margin-top: 8px;
}
.post-name-form .consent-area,
.post-name-contact .consent-area,
.post-type-document .consent-area {
  text-align: center;
}
.post-name-form .consent-area .checkbox-group,
.post-name-contact .consent-area .checkbox-group,
.post-type-document .consent-area .checkbox-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-name-form .checkbox-group label::before,
.post-name-contact .checkbox-group label::before,
.post-type-document .checkbox-group label::before {
  border-radius: 0;
}
.post-name-form .checkbox-group label::after,
.post-name-contact .checkbox-group label::after,
.post-type-document .checkbox-group label::after {
  top: 3px;
  width: 8px;
  height: 14px;
  background: transparent;
  border-right: 2px solid rgb(179, 29, 35);
  border-bottom: 2px solid rgb(179, 29, 35);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 8px;
  border-radius: 0;
}
.post-name-form .select-wrap,
.post-name-contact .select-wrap,
.post-type-document .select-wrap {
  position: relative;
}
.post-name-form .select-wrap select,
.post-name-contact .select-wrap select,
.post-type-document .select-wrap select {
  cursor: pointer;
  padding-right: 20px;
}
.post-name-form .select-wrap::before,
.post-name-contact .select-wrap::before,
.post-type-document .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid rgb(179, 29, 35);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -2px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.post-name-form .btn-wrap,
.post-name-contact .btn-wrap,
.post-type-document .btn-wrap {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.post-name-form .contact-btn,
.post-name-contact .contact-btn,
.post-type-document .contact-btn {
  display: block;
  text-align: center;
  background: #F08000;
  color: #fff;
  padding: 10px 40px;
  border-radius: 40px;
  border: 1px solid #F08000;
  min-width: 280px;
  max-width: 500px;
  padding: 20px 70px;
  font-size: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.post-name-form .contact-btn.back-btn,
.post-name-contact .contact-btn.back-btn,
.post-type-document .contact-btn.back-btn {
  border: 1px solid #A0A0A0;
  background: #A0A0A0;
  color: #fff;
}
.post-name-form .confirm-block,
.post-name-contact .confirm-block,
.post-type-document .confirm-block {
  display: none;
}
.post-name-form .confirm-block .q-wrap,
.post-name-contact .confirm-block .q-wrap,
.post-type-document .confirm-block .q-wrap {
  border-bottom: 1px solid #ccc;
}
.post-name-form .int,
.post-name-contact .int,
.post-type-document .int {
  text-align: center;
  margin-top: 20px;
  display: block;
}
.post-name-form .document-form .input-area,
.post-name-contact .document-form .input-area,
.post-type-document .document-form .input-area {
  width: 100%;
}
.post-name-form .document-form .checkbox-group,
.post-name-contact .document-form .checkbox-group,
.post-type-document .document-form .checkbox-group {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-name-form .wpcf7-not-valid-tip {
  display: none !important;
}

.post-type-document .required-txt {
  padding: 1px 11px 3px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 11px;
  width: 46px;
  text-align: center;
  border-radius: 20px;
  background: #E60012;
  position: absolute;
  right: 0;
  font-weight: bold;
  margin: auto;
}
.post-type-document .label-area {
  width: 200px;
}
.post-type-document .checkbox-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-type-document .checkbox-group .wpcf7-list-item {
  margin-left: 0 !important;
}

.anm-fadeInBottom {
  --fadeBottom: -100px;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.anm-fadeInBottom.is-animated {
  -webkit-animation: fadeInUp 1.5s both;
          animation: fadeInUp 1.5s both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(var(--fadeBottom));
            transform: translateY(var(--fadeBottom));
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(var(--fadeBottom));
            transform: translateY(var(--fadeBottom));
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    left: -100px;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    left: -100px;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-block-item::before {
  content: "";
  max-width: 748px;
  height: 600px;
  width: 38.9583333333vw;
  position: absolute;
  left: -100px;
  top: 0;
  -webkit-clip-path: polygon(0 0, 60.1% 0, 100.1% 100%, 0% 100%);
          clip-path: polygon(0 0, 60.1% 0, 100.1% 100%, 0% 100%);
  background: linear-gradient(-45deg, rgba(0, 180, 255, 0.6), rgba(0, 150, 223, 0.6), rgba(3, 110, 184, 0.6));
  z-index: 1;
  opacity: 0;
  -webkit-animation: fadeInLeft 0.5s 0.3s both;
          animation: fadeInLeft 0.5s 0.3s both;
}
.home .mv-block-item .anm-fadeInBottom {
  position: relative;
  z-index: 2;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.home .sec-service01 h2 {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(70%, rgba(0, 150, 223, 0.25)), color-stop(90%, rgba(0, 150, 223, 0.25)), color-stop(90%, transparent));
  background-image: linear-gradient(transparent 65%, rgba(0, 150, 223, 0.25) 70%, rgba(0, 150, 223, 0.25) 90%, transparent 90%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .sec-service01 .box {
  max-width: 890px;
  margin-inline: auto;
}
.home .sec-service02 .wp-block-column {
  border-color: #b5b5b6;
}
.home .company > .wp-image-205,
.home .company > .wp-block-cover__background {
  top: 140px;
}
.home .company .is-layout-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .company .inner-box {
  max-width: 1400px !important;
  padding: 0 2.5rem !important;
}
.home .sec-service02 .wp-block-columns .wp-block-column {
  position: relative;
  overflow: hidden;
}
.home .overlay-text {
  position: absolute;
  bottom: -100%;
  /* 初期状態は画面外下 */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 半透明背景 */
  color: #fff;
  padding: 20px 0;
  -webkit-transition: bottom 0.4s ease;
  transition: bottom 0.4s ease;
  height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv-block.mv-block-item {
  position: relative;
  min-height: 600px;
}

/* -----------------------------------------------
* company Module
* company ページ用
-------------------------------------------------- */
/* -----------------------------------------------
* company Module
* company ページ用
-------------------------------------------------- */
.profile .history-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  position: relative;
}
.profile .history-item::after {
  content: "";
  width: 1px;
  height: calc(100% + 1rem);
  background-color: #B5B5B6;
  z-index: 1;
  position: absolute;
  left: 6px;
  top: 30px;
}
.profile .history-item:last-child::after {
  content: none;
}
.profile .history-item .year {
  width: 100px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-left: 30px;
  position: relative;
  height: 100%;
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #337ab7;
  font-size: 32px;
}
.profile .history-item .year::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #337ab7;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.profile .history-item .event {
  width: 100%;
  padding-top: 13px;
}

/* -----------------------------------------------
* topics Module
* topics ページ用
-------------------------------------------------- */
.post-type-topics .content + .c-ttl03 {
  margin-top: 40px;
}
.post-type-topics .content + .black_icon {
  margin-top: 80px;
}
.post-type-topics .c-ttl03 {
  margin-bottom: 0 !important;
}
.post-type-topics .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
  padding: 17px 0;
  border-bottom: 1px solid #C8C8C8;
  margin-bottom: 0;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
.post-type-topics .item dt {
  width: 100px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.post-type-topics .item dd {
  width: calc(100% - 175px);
  font-size: 18px;
}
.post-type-topics .item dd a {
  color: #0000FF;
}

/* -----------------------------------------------
* company Module
* company ページ用
-------------------------------------------------- */

/* -----------------------------------------------
* topics Module
* topics ページ用
-------------------------------------------------- */
.map-wrap {
  position: relative;
}
.map-wrap .btn-wrap {
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  position: absolute;
  height: 100%;
}
.map-wrap .btn-wrap > div {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}
.map-wrap .btn-wrap > div a {
  border-radius: 20px;
  padding: 2px 15px;
}
.map-wrap .btn-wrap .hokkaido {
  right: 17%;
  top: 34%;
}
.map-wrap .btn-wrap .hokkaido a {
  background-color: #427BBF !important;
}
.map-wrap .btn-wrap .kanto {
  right: 24%;
  bottom: 21.5%;
}
.map-wrap .btn-wrap .kanto a {
  background-color: #00B6DB !important;
}
.map-wrap .btn-wrap .chubu {
  right: 46%;
  bottom: 44%;
}
.map-wrap .btn-wrap .chubu a {
  background-color: #7CBE35 !important;
}
.map-wrap .btn-wrap .kansai {
  right: 41%;
  bottom: 5%;
}
.map-wrap .btn-wrap .kansai a {
  background-color: #5966AE !important;
}
.map-wrap .btn-wrap .chugoku {
  left: 32%;
  bottom: 35%;
}
.map-wrap .btn-wrap .chugoku a {
  background-color: #ED7787 !important;
}
.map-wrap .btn-wrap .sikoku {
  left: 34%;
  bottom: 0%;
}
.map-wrap .btn-wrap .sikoku a {
  background-color: #F39800 !important;
}
.map-wrap .btn-wrap .kyushu-okinawa {
  left: 16.5%;
  bottom: 26%;
}
.map-wrap .btn-wrap .kyushu-okinawa a {
  background-color: #00A784 !important;
}

body:not(.post-type-archive).single, body:not(.post-type-archive).archive {
  overflow-x: visible;
}
body:not(.post-type-archive).single.single-solution-sales .main-section > .wp-block-image img, body:not(.post-type-archive).archive.single-solution-sales .main-section > .wp-block-image img {
  width: 100%;
}
body:not(.post-type-archive).single.single-document .site-body-container .main-section h2, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2 {
  font-size: 26px;
  padding-bottom: 20px;
  color: #0096DF;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding: 0 !important;
  line-height: 1.5em;
  border: 0 !important;
}
body:not(.post-type-archive).single.single-document .site-body-container .main-section h2::after, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2::after {
  content: initial !important;
}
body:not(.post-type-archive).single.single-document .site-body-container .main-section h2.ttl01, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2.ttl01 {
  font-size: 22px;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  border-top: none !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}
body:not(.post-type-archive).single.single-document .site-body-container .main-section h2.ttl01::after, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2.ttl01::after {
  content: "";
  width: 5px;
  height: 1.4em;
  background-color: #0096DF;
  position: absolute;
  left: 0;
  top: 0;
}
body:not(.post-type-archive).single .site-body-container, body:not(.post-type-archive).archive .site-body-container {
  max-width: 1210px !important;
  padding-block: 50px 220px;
  display: grid;
  grid-template-columns: min(30%, 300px) 1fr;
  gap: 48px;
}
body:not(.post-type-archive).single .site-body-container::after, body:not(.post-type-archive).archive .site-body-container::after {
  content: unset;
}
body:not(.post-type-archive).single .site-body-container .page-header, body:not(.post-type-archive).archive .site-body-container .page-header {
  background: -webkit-gradient(linear, left top, right top, from(#00b4ff), color-stop(50%, #0096df), to(#036eb8));
  background: linear-gradient(90deg, #00b4ff 0%, #0096df 50%, #036eb8 100%);
}
body:not(.post-type-archive).single .site-body-container .main-section, body:not(.post-type-archive).archive .site-body-container .main-section {
  width: 100% !important;
}
body:not(.post-type-archive).single .site-body-container .main-section h2, body:not(.post-type-archive).archive .site-body-container .main-section h2 {
  font-size: 22px;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  border-top: none !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}
body:not(.post-type-archive).single .site-body-container .main-section h2::after, body:not(.post-type-archive).archive .site-body-container .main-section h2::after {
  content: "";
  width: 5px;
  height: 1.4em;
  background-color: #0096DF;
  position: absolute;
  left: 0;
  top: 0;
}
body:not(.post-type-archive).single .main-section > *:last-child {
  margin-bottom: 0 !important;
}
body:not(.post-type-archive).single .main-section > .wp-block-image {
  margin-bottom: 50px;
}
body:not(.post-type-archive).single .main-section .wp-block-group > *:last-child {
  margin-bottom: 0 !important;
}
body:not(.post-type-archive).single .main-section h1 {
  text-align: center;
  margin-top: 80px;
}
body:not(.post-type-archive).single .main-section h3 {
  position: relative;
  outline: unset;
  outline-offset: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: unset;
  overflow: unset;
  color: inherit;
  border: none;
  margin-bottom: 1.2em;
  border-radius: 4px;
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
  color: var(--wp--preset--color--white) !important;
  padding: var(--vk-heading-has-background-padding);
  font-size: 20px !important;
}
body:not(.post-type-archive).single .main-section h3::after {
  content: unset;
}
body:not(.post-type-archive).single .main-section ul {
  list-style: disc;
}
body:not(.post-type-archive).single .main-section ol {
  list-style: decimal;
}
body:not(.post-type-archive).single .main-section .is-style-vk-numbered-circle-mark > li::before {
  color: inherit;
  background: transparent;
  line-height: 1.6rem;
  width: 1.65em;
  height: 1.65em;
  border: 1px solid;
}
body:not(.post-type-archive).single .sidebar .term-list .term.is-current > a {
  pointer-events: all !important;
}
body:not(.post-type-archive).archive .main-section .post-list {
  padding: 0 !important;
  margin-top: 70px !important;
  margin-bottom: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100vw - 30px, 256px), 1fr));
  gap: 50px 30px;
}
body:not(.post-type-archive).archive .main-section .post-list > li {
  margin: 0 !important;
}
body:not(.post-type-archive).archive .main-section .post-list > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
body:not(.post-type-archive).archive .main-section .post-list > li > a:not(:hover) {
  color: #333;
}
body:not(.post-type-archive).archive .main-section .post-list > li > a .txt-area {
  height: 100%;
}
body:not(.post-type-archive).archive .main-section .post-list > li > a .txt-area h2 {
  height: 100%;
  border-bottom: 0;
  margin: 0 !important;
  padding-top: 10px !important;
  font-size: 20px;
}
body:not(.post-type-archive).archive .main-section .post-list > li > a .txt-area h2::after {
  height: 100%;
}
body:not(.post-type-archive).archive:not(.term-column) .main-section .post-list .img-area {
  aspect-ratio: 256/200;
}
body:not(.post-type-archive).archive:not(.term-column) .main-section .post-list .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------------------
* company Module
* company ページ用
-------------------------------------------------- */

/* -----------------------------------------------
* company Module
* company ページ用
-------------------------------------------------- */

/* -----------------------------------------------
* document Module
* documentページ用
-------------------------------------------------- */
body.post-name-document-search,
body.post-name-solusion-search,
.document {
  padding-bottom: 60px !important;
}
body.post-name-document-search .site-body-container,
body.post-name-solusion-search .site-body-container,
.document .site-body-container {
  max-width: 1210px !important;
  padding-top: 50px;
}
body.post-name-document-search #vkfs_category,
body.post-name-solusion-search #vkfs_category,
.document #vkfs_category {
  row-gap: 50px;
}
body.post-name-document-search .cat-list ul,
body.post-name-solusion-search .cat-list ul,
.document .cat-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
body.post-name-document-search .cat-list label,
body.post-name-solusion-search .cat-list label,
.document .cat-list label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
body.post-name-document-search .cat-list label::before, body.post-name-document-search .cat-list label::after,
body.post-name-solusion-search .cat-list label::before,
body.post-name-solusion-search .cat-list label::after,
.document .cat-list label::before,
.document .cat-list label::after {
  content: "";
  position: absolute;
}
body.post-name-document-search .cat-list label::before,
body.post-name-solusion-search .cat-list label::before,
.document .cat-list label::before {
  top: 0px;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #B4B4B4;
  background: #F7F7F2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body.post-name-document-search .cat-list label::after,
body.post-name-solusion-search .cat-list label::after,
.document .cat-list label::after {
  top: 0;
  bottom: 2px;
  margin: auto;
  width: 8px;
  height: 12px;
  background: transparent;
  border-right: 2px solid #337ab7;
  border-bottom: 2px solid #337ab7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 6px;
  opacity: 0;
  border-radius: 0;
}
body.post-name-document-search .cat-list label:has(input:checked)::after,
body.post-name-solusion-search .cat-list label:has(input:checked)::after,
.document .cat-list label:has(input:checked)::after {
  opacity: 1;
}
body.post-name-document-search .cat-list label:has(input:checked)::before,
body.post-name-solusion-search .cat-list label:has(input:checked)::before,
.document .cat-list label:has(input:checked)::before {
  background: #F7F7F2;
}
body.post-name-document-search .search-btn,
body.post-name-solusion-search .search-btn,
.document .search-btn {
  display: block;
  text-align: center;
  background: #F08000;
  color: #fff;
  padding: 5px 40px;
  border-radius: 40px;
  border: 1px solid #F08000;
  min-width: 280px;
  max-width: 500px;
  margin-inline: auto;
  padding: 20px 70px;
  font-size: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body.post-name-document-search .search-box,
body.post-name-solusion-search .search-box,
.document .search-box {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-block: 30px;
  padding-inline: 60px;
  border: 4px solid #0096DF;
}
body.post-name-document-search .search-box .c-ttl03,
body.post-name-solusion-search .search-box .c-ttl03,
.document .search-box .c-ttl03 {
  border-bottom: 0 !important;
  padding-bottom: 0;
}
body.post-name-document-search .search-box .archive-document-list.row,
body.post-name-solusion-search .search-box .archive-document-list.row,
.document .search-box .archive-document-list.row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 48px;
  margin-inline: 0 !important;
}
body.post-name-document-search .search-box .document-link:focus-visible img,
body.post-name-solusion-search .search-box .document-link:focus-visible img,
.document .search-box .document-link:focus-visible img {
  -webkit-filter: opacity(80%);
          filter: opacity(80%);
}
body.post-name-document-search .search-box .document-title,
body.post-name-solusion-search .search-box .document-title,
.document .search-box .document-title {
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 0 !important;
}
body.post-name-document-search .search-box .document-item,
body.post-name-solusion-search .search-box .document-item,
.document .search-box .document-item {
  padding: 0 !important;
  max-width: none !important;
  background-color: #fff;
}
body.post-name-document-search .search-box .document-item img,
body.post-name-solusion-search .search-box .document-item img,
.document .search-box .document-item img {
  width: 100%;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  aspect-ratio: 320/190;
  -o-object-fit: contain;
     object-fit: contain;
}

#vkfs_keyword,
#vkfs_solution-keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#vkfs_keyword li,
#vkfs_solution-keyword li {
  padding: 0 !important;
}
#vkfs_keyword li label,
#vkfs_solution-keyword li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.3rem 1rem;
  border: 2px solid #172AFF;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #172AFF;
  background-color: #fff;
}
#vkfs_keyword li label input[type=checkbox],
#vkfs_solution-keyword li label input[type=checkbox] {
  display: none;
}
#vkfs_keyword li label:has(input[type=checkbox]:checked),
#vkfs_solution-keyword li label:has(input[type=checkbox]:checked) {
  background-color: #172AFF;
  color: #fff;
}

.vkfs__input-form {
  margin-top: 30px;
}
.vkfs__input-form label {
  font-size: 18px;
}

.vkfs_submit {
  max-width: 420px;
  margin: auto;
  display: block;
  margin-top: 80px !important;
}

.vkfs__label-name {
  font-size: 22px;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  border-top: none !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}
.vkfs__label-name::after {
  content: "";
  width: 5px;
  height: 1.4em;
  background-color: #0096DF;
  position: absolute;
  left: 0;
  top: 0;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.wp-block-columns.infrastructureconstruction .c-lead-area {
  padding-right: 7.06rem !important;
}

.white-box.infrastructureconstruction {
  padding: 1.94rem 4.38rem !important;
}

.c-table02.infrastructureconstruction .column-2, .c-table02.infrastructureconstruction .column-3 {
  white-space: nowrap;
  min-width: 75px !important;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.case-study {
  padding-bottom: 120px !important;
}
.case-study .child-cat {
  color: #0096df;
  font-size: 20px;
  font-weight: bold;
}
.case-study .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  gap: 30px;
  background-color: #E9F4FC;
}
.case-study .box + h2 {
  margin-top: 60px;
}
.case-study .img-box {
  text-align: center;
  background-color: #fff;
  height: 100%;
}
.case-study .img-box img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.case-study h3 {
  border-bottom: none;
  font-size: 19px;
  padding-bottom: 0;
}
.case-study h3::after {
  content: none;
}
@media (min-width: 576px) {
  :root {
    --vk-width-container: 540px !important;
  }
}
@media (min-width: 768px) {
  :root {
    --vk-width-container: 720px !important;
  }
}
@media (min-width: 992px) {
  :root {
    --vk-width-container: 960px !important;
  }
}
@media (min-width: 1200px) {
  :root {
    --vk-width-container: 1070px !important;
  }
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: var(--vk-width-container) !important;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .admin-bar .vk-mobile-nav-menu-btn {
    right: 10px;
    border-color: #337ab7;
    background: url(../img/common/menu.svg) center 50% no-repeat rgba(255, 255, 255, 0.8);
  }
  .c-page-header {
    font-size: 1.7rem;
    padding: 2rem 1rem;
  }
  .site-footer .site-footer-content {
    padding-top: 20px;
  }
  .site-footer #block-15 .menu > .menu-item,
  .site-footer #block-12 .menu > .menu-item {
    font-size: 13px;
  }
  .site-footer #block-15 .menu > .menu-item > a,
  .site-footer #block-12 .menu > .menu-item > a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0;
  }
  .site-footer #block-15 .menu > .menu-item > a::before,
  .site-footer #block-12 .menu > .menu-item > a::before {
    width: 14px;
    height: 14px;
    -webkit-mask-size: 6px 3px;
            mask-size: 6px 3px;
    top: 3px;
  }
  .site-footer #block-15 .menu > .menu-item > a::after,
  .site-footer #block-12 .menu > .menu-item > a::after {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  .site-footer #block-15 .menu > .menu-item > .sub-menu,
  .site-footer #block-12 .menu > .menu-item > .sub-menu {
    margin-top: 6px;
  }
  .site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item,
  .site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item {
    padding-left: 14px;
    font-size: 12px;
  }
  .site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item,
  .site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item {
    font-size: 11px;
  }
  .site-footer #block-15 .menu > .menu-item > .sub-menu > .menu-item + .menu-item,
  .site-footer #block-12 .menu > .menu-item > .sub-menu > .menu-item + .menu-item {
    margin-top: 6px;
  }
  .site-footer #block-15 .is-layout-flex figure,
  .site-footer #block-15 .is-layout-flex .wp-block-column-is-layout-flow p {
    font-size: 13px;
  }
  .site-footer #block-15 .is-layout-flex {
    gap: 10px 0;
  }
  .site-footer #block-15 .menu > .menu-item a {
    font-size: 11px;
  }
  .site-footer #block-12 > .wp-block-columns {
    margin-bottom: 0 !important;
    padding-right: 0 !important;
  }
  .site-footer #block-12 .option-menu .menu-item::before {
    top: 5px;
    width: 8px;
    height: 8px;
  }
  .site-footer #block-12 .option-menu-flex ul {
    gap: 5px 10px;
  }
  .site-footer #block-12 .option-menu-flex ul .menu-item {
    width: calc(50% - 5px);
  }
  .site-footer .wp-container-core-columns-is-layout-087408a8 > div.wp-block-column {
    width: calc(50% - 18px) !important;
    -webkit-flex-basis: calc(50% - 18px) !important;
        -ms-flex-preferred-size: calc(50% - 18px) !important;
            flex-basis: calc(50% - 18px) !important;
  }
  .c-ttl01 h2 {
    font-size: 28px !important;
  }
  .c-ttl01 p {
    font-size: 14px !important;
    margin-top: -5px !important;
  }
  .c-ttl02 {
    font-size: 1.5rem !important;
  }
  .c-ttl05 {
    font-size: 1.25rem;
  }
  .c-btn01 a {
    font-size: 13px;
  }
  .c-btn01.wi-sp-full {
    width: 100% !important;
  }
  .c-btn02 {
    width: 100%;
    font-size: 18px;
    padding: 10px 20px;
  }
  .banner01 {
    min-height: 85px !important;
  }
  .banner01 p {
    font-size: 20px !important;
  }
  .vk_block-margin-lg--height {
    height: 3rem !important;
  }
  .vk_block-margin-sm--margin-bottom {
    margin-bottom: 10px !important;
  }
  .vk_block-margin-md--margin-bottom {
    margin-bottom: 22px;
  }
  .vk_block-margin-xl--height {
    height: 4rem !important;
  }
  .c-lead-box h3 {
    font-size: 21px !important;
  }
  .c-lead-box p.has-text-align-center {
    font-size: 13px !important;
    text-align: left !important;
  }
  .sp-block {
    display: block !important;
  }
  .sp-block img {
    display: block;
    width: 100%;
  }
  .sp-block .wp-block-image + div {
    margin-top: 20px;
  }
  .sp-block div + div {
    margin-top: 20px;
  }
  .sp-block figure {
    width: 100% !important;
  }
  .sp-block figure img {
    display: block;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .sp-block figure + figure {
    margin-top: 20px !important;
  }
  .c-txt {
    text-align: left !important;
  }
  .c-conduct-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  .c-conduct-wrap .conduct-cont {
    width: 100%;
    height: 100%;
    padding-top: 1rem !important;
    padding-bottom: 0.3rem !important;
  }
  .c-conduct-wrap .conduct-cont .num {
    line-height: 1 !important;
    font-size: 1.5rem !important;
    padding-bottom: 10px;
  }
  .c-conduct-wrap .conduct-cont .ttl {
    font-size: 1.0625rem !important;
    margin: 10px;
  }
  .c-conduct-wrap .conduct-cont:nth-child(3n) {
    grid-area: 2/1/3/3;
  }
  .c-conduct-wrap .sp-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin: 0 auto;
  }
  .c-conduct-wrap .sp-flex .num {
    border-bottom: inherit;
    position: relative;
    margin: 0 !important;
    line-height: 1;
  }
  .c-conduct-wrap .sp-flex .num::before {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    right: -10px;
    top: 25%;
    bottom: auto;
    background-color: #0096DF;
  }
  .c-conduct-wrap .sp-flex .ttl {
    margin: 0 !important;
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-left: 10px;
  }
  .c-conduct-wrap.adj {
    display: block;
  }
  .c-conduct-wrap.adj > div + div {
    margin-top: 30px;
  }
  .c-info-area > .wp-block-columns {
    padding: 0 10px;
  }
  .c-table01#tablepress-company_group tr th.column-1,
  .c-table01#tablepress-company_group tr td.column-1 {
    width: max(140px, 30%);
  }
  .c-table01#tablepress-licence_pmark img {
    width: 100% !important;
    max-width: 300px;
  }
  .c-table01 tr th,
  .c-table01 tr td {
    padding: 10px 5px;
    font-size: 0.75rem !important;
  }
  .c-table01 tr th.column-1,
  .c-table01 tr td.column-1 {
    width: 30%;
  }
  .c-table01 tr th.column-3,
  .c-table01 tr td.column-3 {
    width: 30%;
  }
  .c-table01 tr th {
    font-size: 14px;
  }
  .c-table01 tr td {
    font-size: 14px;
  }
  .c-table01 .tel {
    font-size: 12px !important;
  }
  .c-table02 tr,
  .c-table02 td,
  .c-table02 th {
    padding: 5px !important;
  }
  .c-table02 {
    font-size: 0.75rem;
  }
  .c-table02 .column-1 {
    width: 80px;
  }
  .c-list01 > li::before {
    width: 12px;
    height: 12px;
  }
  .c-desc-block > .wp-block-group {
    grid-template-columns: 100%;
    grid-template-areas: "desc" "img";
  }
  .c-desc-block > .wp-block-group .img-area {
    max-width: 400px;
    margin-inline: auto;
    text-align: center;
  }
  .c-desc-block > .wp-block-group .desc-area {
    gap: 20px;
  }
  .c-post-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .c-post-list .post .txt-box {
    padding: 16px 15px 0;
  }
  .c-post-list .post .item-ttl {
    font-size: 18px;
  }
  .c-post-list .post .item-ttl + p {
    font-size: 13px;
  }
  .c-post-list .post .link-btn .wp-block-button__link {
    border-radius: 30px;
  }
  .c-iframe-map {
    -webkit-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
            flex-basis: auto !important;
    margin-inline: auto;
    width: 100%;
    max-height: 270px;
    height: 100%;
  }
  .c-img-sp-full {
    max-width: 400px !important;
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
  .c-img-sp-full img {
    width: 100% !important;
  }
  .c-solution-merit {
    gap: 2rem;
    padding: 1.5em 1em !important;
  }
  .c-kv {
    min-height: 250px !important;
  }
  .c-kv p {
    line-height: 1.4em;
    font-size: 2rem;
  }
  .c-kv p:nth-child(1) {
    margin-bottom: 1rem;
  }
  .service-detail .site-body-container {
    padding-block: 40px 60px;
    grid-template-columns: 100%;
  }
  .sidebar .sidebar-contents .head {
    padding: 20px;
  }
  .not-found .main-block {
    padding: 50px 0;
  }
  .not-found .lead {
    font-size: 18px;
    margin-top: 20px;
  }
  .not-found .c-btn01 {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
  }
  .post-name-form .c-contact-step,
  .post-name-contact .c-contact-step,
  .post-type-document .c-contact-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
  }
  .post-name-form .c-contact-step li,
  .post-name-contact .c-contact-step li,
  .post-type-document .c-contact-step li {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
  .post-name-form .c-contact-step::before,
  .post-name-contact .c-contact-step::before,
  .post-type-document .c-contact-step::before {
    width: 3px;
    height: 100px;
  }
  .post-name-form .q-wrap,
  .post-name-contact .q-wrap,
  .post-type-document .q-wrap {
    padding: 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .post-name-form .label-area,
  .post-name-contact .label-area,
  .post-type-document .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .post-name-form .input-area,
  .post-name-contact .input-area,
  .post-type-document .input-area {
    width: 100%;
  }
  .post-name-form .contact-label,
  .post-name-contact .contact-label,
  .post-type-document .contact-label {
    font-size: 16px;
    margin-bottom: 0;
  }
  .post-name-form input[type=text],
  .post-name-form input[type=tel],
  .post-name-form input[type=email],
  .post-name-form textarea,
  .post-name-form select,
  .post-name-contact input[type=text],
  .post-name-contact input[type=tel],
  .post-name-contact input[type=email],
  .post-name-contact textarea,
  .post-name-contact select,
  .post-type-document input[type=text],
  .post-type-document input[type=tel],
  .post-type-document input[type=email],
  .post-type-document textarea,
  .post-type-document select {
    padding: 10px 10px;
  }
  .post-name-form .radio-group,
  .post-name-form .checkbox-group,
  .post-name-contact .radio-group,
  .post-name-contact .checkbox-group,
  .post-type-document .radio-group,
  .post-type-document .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post-name-form .radio-group .wpcf7-radio,
  .post-name-form .radio-group .wpcf7-checkbox,
  .post-name-form .checkbox-group .wpcf7-radio,
  .post-name-form .checkbox-group .wpcf7-checkbox,
  .post-name-contact .radio-group .wpcf7-radio,
  .post-name-contact .radio-group .wpcf7-checkbox,
  .post-name-contact .checkbox-group .wpcf7-radio,
  .post-name-contact .checkbox-group .wpcf7-checkbox,
  .post-type-document .radio-group .wpcf7-radio,
  .post-type-document .radio-group .wpcf7-checkbox,
  .post-type-document .checkbox-group .wpcf7-radio,
  .post-type-document .checkbox-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .post-name-form .radio-group .wpcf7-radio .wpcf7-list-item,
  .post-name-form .radio-group .wpcf7-checkbox .wpcf7-list-item,
  .post-name-form .checkbox-group .wpcf7-radio .wpcf7-list-item,
  .post-name-form .checkbox-group .wpcf7-checkbox .wpcf7-list-item,
  .post-name-contact .radio-group .wpcf7-radio .wpcf7-list-item,
  .post-name-contact .radio-group .wpcf7-checkbox .wpcf7-list-item,
  .post-name-contact .checkbox-group .wpcf7-radio .wpcf7-list-item,
  .post-name-contact .checkbox-group .wpcf7-checkbox .wpcf7-list-item,
  .post-type-document .radio-group .wpcf7-radio .wpcf7-list-item,
  .post-type-document .radio-group .wpcf7-checkbox .wpcf7-list-item,
  .post-type-document .checkbox-group .wpcf7-radio .wpcf7-list-item,
  .post-type-document .checkbox-group .wpcf7-checkbox .wpcf7-list-item {
    font-size: 13px;
  }
  .post-name-form .btn-wrap,
  .post-name-contact .btn-wrap,
  .post-type-document .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .post-name-form .contact-btn,
  .post-name-contact .contact-btn,
  .post-type-document .contact-btn {
    width: 100%;
    font-size: 18px;
    padding: 10px 20px;
  }
  .post-name-form .confirm-block .q-wrap .input-area,
  .post-name-contact .confirm-block .q-wrap .input-area,
  .post-type-document .confirm-block .q-wrap .input-area {
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  .anm-fadeInBottom {
    --fadeBottom: -50px;
  }
  .home .mv-block-item {
    max-height: 600px;
    height: 80vw;
    min-height: auto;
  }
  .home .mv-block-item h2 {
    font-size: 26px !important;
    text-align: center;
  }
  .home .mv-block-item p {
    font-size: 10px !important;
    text-align: center;
  }
  .home .sec-service02 .wp-block-column + .wp-block-column {
    border-top: none;
  }
  .home .vk_block-margin-xl--margin-top {
    margin-top: 0 !important;
  }
  .home .company.wp-block-cover {
    padding: 0 !important;
    padding-bottom: 40px !important;
  }
  .home .company > .wp-image-205,
  .home .company > .wp-block-cover__background {
    top: 125px;
  }
  .home .company .inner-box {
    padding: 0 20px !important;
  }
  .home .company .inner-box .wp-block-cover__inner-container {
    max-width: 100%;
  }
  .home .company .list {
    gap: 36px;
  }
  .home .company .list > div {
    -webkit-flex-basis: calc(50% - 18px) !important;
        -ms-flex-preferred-size: calc(50% - 18px) !important;
            flex-basis: calc(50% - 18px) !important;
    width: calc(50% - 18px);
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .home .company .list > div h3 {
    font-size: 16px;
  }
  .home .company .list > div p {
    font-size: 10px;
  }
  .home .service .c-lead-area {
    padding-right: 0 !important;
  }
  .home .vk-cols--fit.wp-block-columns .wp-block-column:not(:only-child),
  .home .vk-cols--fit.wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column:not(:only-child) {
    -webkit-flex-basis: 100% !important;
        -ms-flex-preferred-size: 100% !important;
            flex-basis: 100% !important;
  }
  .home .is-layout-flex .c-lead-area {
    margin-top: 24px;
  }
  .home .is-layout-flex .c-lead-area .wp-block-heading {
    text-align: center;
    font-size: 21px;
  }
  .home .is-layout-flex .c-lead-area p {
    margin-top: 16px;
  }
  .profile .history-item::after {
    top: 10px;
    left: 5px;
  }
  .profile .history-item .year {
    width: 80px;
    font-size: 26px;
    padding-left: 20px;
  }
  .profile .history-item .year::before {
    width: 10px;
    height: 10px;
  }
  .profile .history-item .event {
    font-size: 14px;
    padding-top: 7px;
  }
  .post-type-topics .content + .c-ttl03 {
    margin-top: 20px;
  }
  .post-type-topics .content + .black_icon {
    margin-top: 50px;
  }
  .post-type-topics .item {
    padding: 10px 0;
    gap: 20px;
  }
  .post-type-topics .item dt {
    width: 75px;
    font-size: 14px;
  }
  .post-type-topics .item dd {
    width: calc(100% - 115px);
    font-size: 14px;
  }
  .licence .c-table01:not(#tablepress-licence_pmark) td img {
    width: 100% !important;
    max-width: 90px;
  }
  .map-wrap .btn-wrap > div a {
    padding: 2px 10px;
    max-width: 32vw;
    font-size: 0.65rem;
  }
  .map-wrap .btn-wrap .hokkaido {
    right: 0%;
    top: 33%;
  }
  .map-wrap .btn-wrap .kanto {
    right: 9%;
  }
  .map-wrap .btn-wrap .chubu {
    right: 43%;
  }
  .map-wrap .btn-wrap .kansai {
    right: 29%;
  }
  .map-wrap .btn-wrap .chugoku {
    left: 22%;
  }
  .map-wrap .btn-wrap .sikoku {
    left: 20%;
  }
  .map-wrap .btn-wrap .kyushu-okinawa {
    left: 0;
  }
  body:not(.post-type-archive).single.single-document .site-body-container .main-section h2, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2 {
    font-size: 20px;
    padding-bottom: 16px;
  }
  body:not(.post-type-archive).single.single-document .site-body-container .main-section h2.ttl01, body:not(.post-type-archive).archive.single-document .site-body-container .main-section h2.ttl01 {
    font-size: 20px;
    padding-bottom: 16px;
    padding-left: 16px;
  }
  body:not(.post-type-archive).single .site-body-container, body:not(.post-type-archive).archive .site-body-container {
    padding-block: 40px 60px;
    grid-template-columns: 100%;
  }
  body:not(.post-type-archive).single .site-body-container .main-section h2, body:not(.post-type-archive).archive .site-body-container .main-section h2 {
    font-size: 20px;
    padding-bottom: 16px;
    padding-left: 16px;
  }
  body:not(.post-type-archive).single .main-section > * + .c-solution-merit,
  body:not(.post-type-archive).single .main-section > * + h2 {
    margin-top: 40px;
  }
  body:not(.post-type-archive).single .main-section > * + h3 {
    margin-top: 40px;
  }
  body:not(.post-type-archive).single .main-section h1 {
    margin-top: 40px;
    margin-bottom: 28px;
  }
  body:not(.post-type-archive).single .main-section h3 {
    font-size: 18px !important;
  }
  body:not(.post-type-archive).archive .main-section .post-list {
    margin-top: 40px !important;
    gap: 30px 20px;
  }
  body:not(.post-type-archive).archive .main-section .post-list > li > a .txt-area h2 {
    font-size: 18px;
  }
  .callcenter-grid {
    display: block !important;
  }
  .callcenter-grid > div + div {
    margin-top: 20px;
  }
  .callcenter-grid .adj01 img, .callcenter-grid .adj02 img, .callcenter-grid .adj03 img, .callcenter-grid .adj04 img {
    margin: 0 auto !important;
  }
  .callcenter-grid .adj01 img, .callcenter-grid .adj03 img {
    width: 160px !important;
  }
  .callcenter-grid .adj02 img, .callcenter-grid .adj04 img {
    width: 250px !important;
  }
  .sp-block.service img {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  body.post-name-document-search,
  body.post-name-solusion-search,
  .document {
    padding-bottom: 40px !important;
  }
  body.post-name-document-search .site-body-container,
  body.post-name-solusion-search .site-body-container,
  .document .site-body-container {
    padding-top: 40px;
  }
  body.post-name-document-search #vkfs_category,
  body.post-name-solusion-search #vkfs_category,
  .document #vkfs_category {
    row-gap: 30px;
  }
  body.post-name-document-search .search-btn,
  body.post-name-solusion-search .search-btn,
  .document .search-btn {
    width: 100%;
    font-size: 18px;
    padding: 10px 20px;
  }
  body.post-name-document-search .search-box,
  body.post-name-solusion-search .search-box,
  .document .search-box {
    margin-top: 40px;
    padding: 30px 20px;
    border-width: 2px;
  }
  body.post-name-document-search .search-box .archive-document-list.row,
  body.post-name-solusion-search .search-box .archive-document-list.row,
  .document .search-box .archive-document-list.row {
    grid-template-columns: repeat(auto-fill, minmax(min(100% - 40px, 200px), 1fr));
    gap: 30px;
  }
  body.post-name-document-search .search-box .document-title,
  body.post-name-solusion-search .search-box .document-title,
  .document .search-box .document-title {
    font-size: 16px;
  }
  .vkfs__input-form label {
    font-size: 16px;
  }
  .vkfs_submit {
    margin-top: 40px !important;
  }
  .vkfs__label-name {
    font-size: 20px;
    padding-bottom: 16px;
    padding-left: 16px;
  }
  .white-box.infrastructureconstruction {
    padding: 20px !important;
  }
  .overflow-adj {
    width: 100%;
    overflow: scroll;
  }
  .overflow-adj > table {
    min-width: 600px;
  }
  .c-table02.infrastructureconstruction .column-2, .c-table02.infrastructureconstruction .column-3 {
    min-width: 20px !important;
  }
  .case-study {
    padding-bottom: 60px !important;
  }
  .case-study .child-cat {
    font-size: 18px;
  }
  .case-study .box {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case-study .box + h2 {
    margin-top: 40px;
  }
  .case-study h3 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-page-header {
    height: 230px;
    font-size: 2rem;
    margin: 0;
  }
  .site-footer .container.site-footer-content .col-lg-4 {
    max-width: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .site-footer #block-15::before, .site-footer #block-15::after {
    content: "";
  }
  .site-footer #block-15 .is-layout-flex > .wp-block-column {
    padding: 20px;
    border: 1px solid #B5B5B6;
  }
  .site-footer #block-15 .is-layout-flex figure,
  .site-footer #block-15 .is-layout-flex .wp-block-column-is-layout-flow p {
    text-align: end;
    font-size: 20px;
  }
  .c-btn02:hover {
    background: #fff !important;
    color: #F08000 !important;
  }
  .c-btn02.back-btn:hover {
    background-color: #fff;
    color: #A0A0A0;
  }
  .arrow-right:hover::after {
    right: 18px;
  }
  .wp-block-column-vk-link:hover + .banner01 img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .c-table01 .link:hover {
    color: #0000D3;
  }
  .c-table01.border .column-3 {
    width: 20rem;
  }
  .c-post-list .post:hover {
    color: #333333;
  }
  .c-post-list .post:hover .wp-block-button__link {
    color: #000;
    background-color: #fff;
  }
  .c-post-list .post:hover .wp-block-button__link::after {
    background-color: #000;
  }
  .c-iframe-map {
    aspect-ratio: 425/350;
  }
  .c-pc-align-center {
    text-align: center !important;
  }
  .sidebar .sidebar-contents {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
  }
  .sidebar .sidebar-contents .head {
    min-height: 300px;
    padding: 0 30px;
  }
  .sidebar .sidebar-contents .nav {
    max-height: calc(var(--vh, 1vh) * 80 - 300px);
    overflow-y: auto;
  }
  .not-found .c-btn01:hover {
    color: #fff;
    background-color: #0096DF;
  }
  .post-name-form .contact-inner-wrap,
  .post-name-contact .contact-inner-wrap,
  .post-type-document .contact-inner-wrap {
    max-width: 85%;
  }
  .post-name-form .label-area > p,
  .post-name-contact .label-area > p,
  .post-type-document .label-area > p {
    margin-bottom: 0 !important;
  }
  .post-name-form .radio-group .wpcf7-radio,
  .post-name-form .radio-group .wpcf7-checkbox,
  .post-name-form .checkbox-group .wpcf7-radio,
  .post-name-form .checkbox-group .wpcf7-checkbox,
  .post-name-contact .radio-group .wpcf7-radio,
  .post-name-contact .radio-group .wpcf7-checkbox,
  .post-name-contact .checkbox-group .wpcf7-radio,
  .post-name-contact .checkbox-group .wpcf7-checkbox,
  .post-type-document .radio-group .wpcf7-radio,
  .post-type-document .radio-group .wpcf7-checkbox,
  .post-type-document .checkbox-group .wpcf7-radio,
  .post-type-document .checkbox-group .wpcf7-checkbox {
    margin-top: 7px;
  }
  .post-name-form .radio-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-name-form .radio-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item,
  .post-name-form .checkbox-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-name-form .checkbox-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item,
  .post-name-contact .radio-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-name-contact .radio-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item,
  .post-name-contact .checkbox-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-name-contact .checkbox-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item,
  .post-type-document .radio-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-type-document .radio-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item,
  .post-type-document .checkbox-group .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .post-type-document .checkbox-group .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 5px;
  }
  .post-name-form .contact-btn:hover,
  .post-name-contact .contact-btn:hover,
  .post-type-document .contact-btn:hover {
    background: #fff !important;
    color: #F08000 !important;
  }
  .post-name-form .contact-btn.back-btn:hover,
  .post-name-contact .contact-btn.back-btn:hover,
  .post-type-document .contact-btn.back-btn:hover {
    background-color: #fff;
    color: #A0A0A0;
  }
  .home .sec-service02 .wp-block-column + .wp-block-column {
    border-left: none;
  }
  .home .company .wp-block-cover-is-layout-constrained {
    max-width: 1440px !important;
  }
  .home .wp-block-column:hover .overlay-text {
    bottom: 0;
    /* ホバー時にスライドアップ */
  }
  .post-type-topics .item dd a:hover {
    text-decoration: underline;
  }
  .licence .c-table01 th, .licence .c-table01 td {
    padding: 30px 20px !important;
  }
  .map-wrap .btn-wrap > div a {
    min-width: 137px;
  }
  body:not(.post-type-archive).single .site-body-container .page-header, body:not(.post-type-archive).archive .site-body-container .page-header {
    height: 230px;
  }
  body:not(.post-type-archive).single .site-body-container .main-section, body:not(.post-type-archive).archive .site-body-container .main-section {
    grid-column: 2;
    grid-row: 1/2;
  }
  body:not(.post-type-archive).single .main-section > * + .c-solution-merit,
  body:not(.post-type-archive).single .main-section > * + h2 {
    margin-top: 90px;
  }
  body:not(.post-type-archive).single .main-section > * + h3 {
    margin-top: 60px;
  }
  body.post-name-document-search #vkfs_keyword,
  body.post-name-solusion-search #vkfs_keyword,
  .document #vkfs_keyword {
    gap: 20px;
  }
  body.post-name-document-search .search-btn:hover,
  body.post-name-solusion-search .search-btn:hover,
  .document .search-btn:hover {
    background: #fff !important;
    color: #F08000 !important;
  }
  .case-study .img-box {
    width: 35%;
  }
  .case-study .txt-box {
    width: 75%;
  }
}
@media only screen and (min-width: 992px) {
  .header_scrolled .site-header {
    padding-block: 0 !important;
  }
  .header_scrolled .site-header .global-nav {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-right: 0 !important;
  }
  .site-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 32px 0px !important;
  }
  .site-header > .container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding-inline: 0 !important;
  }
  .site-header .site-header-logo {
    max-width: 1196px !important;
    margin-inline: auto !important;
    padding-inline: 8px !important;
    margin-bottom: 32px !important;
    padding-top: 0 !important;
  }
  .site-header .global-nav {
    margin-left: 0 !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    background-color: #ebebeb !important;
  }
  .site-header .global-nav .global-nav-list {
    max-width: 1196px !important;
    width: 100%;
    padding-inline: 8px !important;
  }
  .site-header .global-nav .global-nav-list li {
    padding: 0;
  }
  .site-header .global-nav .global-nav-list li .global-nav-name {
    font-size: 15px;
  }
  .site-header .global-nav .global-nav-list li .global-nav-description {
    font-size: 10px;
    color: #337ab7;
  }
  .site-header .global-nav .global-nav-list > li {
    padding-block: 0 !important;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-left: 1px solid #fff;
  }
  .site-header .global-nav .global-nav-list > li::before {
    content: inherit;
  }
  .site-header .global-nav .global-nav-list > li:not(:hover):not(.acc-parent-open) .sub-menu {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: none;
        touch-action: none;
  }
  .site-header .global-nav .global-nav-list > li:last-child {
    border-right: 1px solid #fff;
  }
  .site-header .global-nav .global-nav-list > li:not(.menu-item-object-page) > a::before {
    content: initial !important;
  }
  .site-header .global-nav .global-nav-list > li:focus-visible > a::before {
    width: 100%;
  }
  .site-header .global-nav .global-nav-list > li > a {
    padding: 18px 16px !important;
    position: relative;
  }
  .site-header .global-nav .global-nav-list > li > a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 11px;
    width: 0;
    border-bottom: 1px solid #0096df;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .site-header .global-nav .global-nav-list > li .menu-item-has-children {
    gap: 12px;
  }
  .site-header .global-nav .global-nav-list > li .menu-item-has-children:hover > .sub-menu, .site-header .global-nav .global-nav-list > li .menu-item-has-children:focus-within > .sub-menu {
    top: calc(100% - 4px);
    opacity: 1;
    max-height: 80vh;
    pointer-events: initial !important;
    -webkit-user-select: initial !important;
       -moz-user-select: initial !important;
        -ms-user-select: initial !important;
            user-select: initial !important;
    -ms-touch-action: initial !important;
        touch-action: initial !important;
  }
  .site-header .global-nav .global-nav-list > li .menu-item-has-children > a {
    padding-right: 1.2em;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .site-header .global-nav .global-nav-list > li li {
    padding: 0;
  }
  .site-header .global-nav .global-nav-list > li li + li {
    margin-top: 8px;
  }
  .site-header .global-nav .global-nav-list > li .sub-menu {
    padding: 8px 12px;
    background-color: #0096df !important;
  }
  .site-header .global-nav .global-nav-list > li .acc-btn {
    border: none;
    background-image: url("../img/common/header-arrow.svg");
    background-size: contain;
    width: 1em;
    padding: 2px;
    display: inline-block;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children::after {
    border-bottom-color: #0096df !important;
    bottom: 0;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .acc-btn {
    position: initial;
    display: inline-block;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu {
    top: calc(100% - 1px);
    inset-inline: 0;
    margin: auto;
    overflow-x: visible;
    overflow-y: initial;
    height: auto;
    max-height: none;
    width: 80%;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children:not(.acc-parent-open) .sub-menu {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: none;
        touch-action: none;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children > .acc-btn {
    position: initial;
    display: inline-block;
    z-index: 10;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
    width: 1em;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children a {
    padding-right: 1.2em;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: inline-block;
    width: 100%;
    overflow: initial;
    z-index: 11;
    background-color: #0096df;
    -webkit-box-shadow: inset -1px -1px 8px 4px #e8e8e8;
            box-shadow: inset -1px -1px 8px 4px #e8e8e8;
  }
}
@media only screen and (max-width: 991px) {
  .header_scrolled .site-header-logo {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .vk-mobile-nav {
    padding-top: calc(max(16px, 4.2666666667vw) * 2 + 32px) !important;
  }
  .site-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
  }
  .site-header .site-header-logo {
    padding-block: 32px !important;
    margin: 0 !important;
    margin-right: 50px !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .site-header-logo img {
    margin-left: 0 !important;
    max-height: 32px !important;
  }
  .breadcrumb .breadcrumb-list {
    padding-block: 20px !important;
  }
}
@media only screen and (max-width: 750px) {
  .vk-mobile-nav-menu-btn {
    top: max(16px, 4.2666666667vw) !important;
    width: max(28px, 4.2666666667vw) !important;
    height: max(28px, 4.2666666667vw) !important;
  }
}
@media only screen and (max-width: 991px) and (max-width: 750px) {
  .vk-mobile-nav {
    padding-top: calc(max(16px, 4.2666666667vw) * 2 + max(28px, 4.2666666667vw)) !important;
  }
  .site-header .site-header-logo {
    padding-block: max(16px, 4.2666666667vw) !important;
    min-height: calc(max(16px, 4.2666666667vw) * 2 + max(28px, 4.2666666667vw)) !important;
  }
  .site-header .site-header-logo img {
    width: auto !important;
    max-height: clamp(20px, 5.3333333333vw, 32px);
  }
}
@media only screen and (min-width: 992px) and (any-hover: hover) {
  .site-header .global-nav .global-nav-list > li:hover > a::before {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .site-header .global-nav .global-nav-list > li .menu-item-has-children > a {
    padding-left: 1.2em;
  }
  .site-header .global-nav .global-nav-list > li.menu-item-has-children > .sub-menu li.menu-item-has-children a {
    padding-left: 1.2em;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .c-page-header {
    font-size: clamp(18px, 7.4666666667vw, 2rem);
  }
  .c-ttl02 {
    font-size: clamp(1.25rem, 5.6vw, 1.5rem) !important;
  }
}
@media only screen and (max-width: 781px) {
  .c-link-btn-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  .c-link-btn-list .wp-block-buttons > img {
    width: 22px;
  }
}
@media only screen and (max-width: 781px) and (max-width: 767px) {
  .c-link-btn-list .wp-block-buttons {
    max-width: 100%;
  }
  .c-link-btn-list .wp-block-buttons > img {
    width: 16px !important;
    right: 10px;
  }
}
@media (any-hover: hover) {
  .c-btn-hover a:hover {
    -webkit-filter: none !important;
            filter: none !important;
  }
  .c-btn-hover a:hover::before {
    scale: 1;
  }
  .breadcrumb .breadcrumb-list .breadcrumb-list__item > a:hover {
    -webkit-text-decoration: underline currentColor;
            text-decoration: underline currentColor;
  }
  .sidebar .sidebar-contents .term-list .term > a:hover {
    background-color: #edf7fd;
  }
  .sidebar .sidebar-contents .term-list .post-list .post > a:hover {
    background-color: #edf7fd;
  }
  body.post-name-document-search .search-box .document-link:hover img,
  body.post-name-solusion-search .search-box .document-link:hover img,
  .document .search-box .document-link:hover img {
    -webkit-filter: opacity(80%);
            filter: opacity(80%);
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .breadcrumb .breadcrumb-list {
    padding-block: 12px !important;
  }
}
@media only screen and (max-width: 375px) {
  body:not(.post-type-archive).single .site-body-container .page-header .page-header-title, body:not(.post-type-archive).archive .site-body-container .page-header .page-header-title {
    font-size: clamp(18px, 7.4666666667vw, 2rem);
  }
}
@media only screen and (max-width: 1000px) {
  .wp-block-columns.infrastructureconstruction {
    display: block !important;
  }
  .wp-block-columns.infrastructureconstruction .c-lead-area {
    padding-right: 0 !important;
  }
  .wp-block-columns.infrastructureconstruction img {
    margin: 0 auto;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */