@charset "UTF-8";
:root {
  --vk-size-text: 16px;
  --vk-line-height: 1.8em;
  --vk-color-text-body: #353535;
  --vk-color-text-link: #353535;
  --vk-color-text-link-hover: #0046A5;
  --vk-size-radius: 50px;
  --vk-size-text: 16px;
  --vk-margin-headding-bottom: 0.5em;
  --vk-margin-element-bottom: 1.75rem;
  --vk-color-primary: #353535;
  --flex-row-gap: 15px;
  --flex-column-gap: 15px;
  --wp--style--global--wide--size: calc( var(--vk-width-container) - var(--vk-width-container-padding) * 2 + ( 100vw - ( var(--vk-width-container) - var(--vk-width-container-padding) * 2 ) ) / 2.5 );
}

@media (min-width: 992px) {
  :root {
    --flex-row-gap: 24px;
    --flex-column-gap: 50px;
    --vk-size-text: 18px;
  }
}
@media (min-width: 1260px) {
  :root {
    --vk-width-container: 1230px;
  }
}
* {
  box-sizing: border-box;
}

.blc_common1 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .blc_common1 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.blc_common2 {
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .blc_common2 {
    padding: 50px;
  }
}

.blc_common3 {
  padding: 20px;
  border: 1px solid #dedbdb;
  border-radius: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .blc_common3 {
    padding: 60px 80px;
  }
}

.blc_narrow {
  width: 1000px;
  max-width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
}

.blc_serif {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 20px;
  border: 1px solid var(--vk-color-text-body);
  text-align: center;
  z-index: 1;
  margin-bottom: 3rem !important;
}
@media (min-width: 992px) {
  .blc_serif {
    padding: 30px 40px;
  }
}
.blc_serif::before, .blc_serif::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.blc_serif::before {
  bottom: -18px; /* 少し下にして::afterを重ねる */
  border-width: 18px 18px 0 18px;
  border-color: var(--vk-color-text-body) transparent transparent transparent;
  z-index: 1;
}
.blc_serif::after {
  bottom: -17px;
  border-width: 17px 17px 0 17px;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}

.blc_bb1 {
  position: relative;
}
.blc_bb1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 4px;
  pointer-events: none;
  background-image: radial-gradient(circle, #ccc 2px, transparent 2px);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  z-index: 1;
}

.blc_bb2 {
  position: relative;
}
.blc_bb2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 4px;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 2px, transparent 2px);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  z-index: 1;
}

.blc_flex_1-4 {
  align-items: stretch;
  gap: var(--flex-column-gap) var(--flex-row-gap);
}
.blc_flex_1-4 > div.blc_child {
  width: 100%;
  align-items: stretch;
}
@media (min-width: 992px) {
  .blc_flex_1-4 > div.blc_child {
    width: calc((100% - var(--flex-row-gap) * 3) / 4);
    align-items: stretch;
  }
}

.blc_flex_2-4 {
  align-items: stretch;
  gap: var(--flex-column-gap) var(--flex-row-gap);
}
.blc_flex_2-4 > div.blc_child {
  width: calc((100% - var(--flex-row-gap)) / 2);
  align-items: stretch;
}
@media (min-width: 992px) {
  .blc_flex_2-4 > div.blc_child {
    width: calc((100% - var(--flex-row-gap) * 3) / 4);
    align-items: stretch;
  }
}

.blc_flex_3-4 {
  align-items: stretch;
  gap: var(--flex-column-gap) var(--flex-row-gap);
}
.blc_flex_3-4 > div.blc_child {
  width: calc((100% - var(--flex-row-gap) * 2) / 3);
  align-items: stretch;
}
@media (min-width: 992px) {
  .blc_flex_3-4 > div.blc_child {
    width: calc((100% - var(--flex-row-gap) * 3) / 4);
    align-items: stretch;
  }
}

.blc_bg_gray {
  background-color: #cecece;
}

.blc_bg_white {
  background-color: #fff;
}

.blc_radius {
  border-radius: 15px;
}

.blc_pb-80 {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .blc_pb-80 {
    padding-bottom: 80px;
  }
}

.blc_mb-40 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .blc_mb-40 {
    margin-bottom: 40px;
  }
}

h2 {
  font-size: 1.75rem;
  border-top: none;
  border-bottom: none;
  padding-top: 0px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 3.5rem;
  }
}

h3 {
  font-size: 1.33rem;
  border-bottom: none;
}
h3::after {
  content: none;
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  background-color: transparent;
  font-size: 1.25rem;
  padding: 0.5em;
}

.vk_button .vk_button_link:hover {
  box-shadow: none;
}
.vk_button.btn_s .vk_button_link.btn {
  width: 200px;
  max-width: 100%;
}
.vk_button.btn_m .vk_button_link.btn {
  width: 320px;
  max-width: 100%;
}
.vk_button.btn_l .vk_button_link.btn {
  width: 640px;
  max-width: 100%;
  font-size: 1.25rem;
  padding: 1em 1.5rem;
}
@media (min-width: 992px) {
  .vk_button.btn_l .vk_button_link.btn {
    font-size: 1.5rem;
  }
}

.cta {
  background: url(../../images/bg_cta.webp) left bottom/300px 350px no-repeat;
}
@media (min-width: 992px) {
  .cta {
    background: url(../../images/bg_cta.webp) left bottom no-repeat;
  }
}
.cta .vk_button {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cta .vk_button {
    margin-top: 90px;
  }
}

.dl_1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .dl_1 {
    padding-top: 50px;
  }
}
.dl_1 dt {
  width: 100%;
  border-top: 1px solid var(--vk-color-text-body);
  padding: 15px 0px 0px 0px;
  margin: 0px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .dl_1 dt {
    width: 30%;
    padding: 30px 0px;
  }
}
.dl_1 dd {
  width: 100%;
  padding: 0px 0px 15px 0px;
  margin: 0px;
}
@media (min-width: 992px) {
  .dl_1 dd {
    width: 70%;
    padding: 30px 0px;
    border-top: 1px solid var(--vk-color-text-body);
  }
}

.dl_2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
@media (min-width: 992px) {
  .dl_2 {
    gap: 20px 0px;
  }
}
.dl_2 dt {
  width: 100%;
  padding: 15px 0px 0px 0px;
  margin: 0px;
}
@media (min-width: 992px) {
  .dl_2 dt {
    font-weight: normal;
    width: 170px;
    padding: 10px 0px;
  }
}
.dl_2 dd {
  width: 100%;
  padding: 0px 0px 15px 0px;
  margin: 0px;
  border-bottom: 1px solid var(--vk-color-text-body);
}
@media (min-width: 992px) {
  .dl_2 dd {
    width: calc(100% - 170px);
    padding: 10px 10px 10px 30px;
    border-bottom: none;
    border-left: 1px solid var(--vk-color-text-body);
  }
}
.dl_2 dd:last-of-type {
  border-bottom: none;
}

.img_s {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.top_mv {
  position: relative;
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.top_mv .top_mv_bg {
  width: 100%;
}
.top_mv .top_mv_img {
  position: absolute;
  width: 180px;
  max-width: 90%;
  height: auto;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  aspect-ratio: 248/98;
}
@media (min-width: 992px) {
  .top_mv .top_mv_img {
    width: 248px;
  }
}

.top_about {
  background: url(../../images/bg_cmn_3-night.webp) bottom right/560px 640px no-repeat;
}
@media (min-width: 992px) {
  .top_about {
    background: url(../../images/bg_cmn_3-night.webp) top right no-repeat;
  }
}
.top_about figure {
  margin-bottom: 1rem;
}
.top_about figure img {
  width: 200px;
  height: auto;
}
@media (min-width: 992px) {
  .top_about figure img {
    width: auto;
  }
}

.top_service {
  background: #000 url(../../images/bg_cmn_2-janne_r.png) top left/560px 640px no-repeat;
  color: #ffffff;
}
@media (min-width: 992px) {
  .top_service {
    background: #000 url(../../images/bg_cmn_2-janne_r.png) top left no-repeat;
  }
}
.top_service .blc_flex_1-4 .blc_child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 15px 0px 15px;
  border-radius: 15px;
  color: var(--vk-color-text-body);
  min-height: 100%;
}
.top_service .blc_flex_1-4 .blc_child h4,
.top_service .blc_flex_1-4 .blc_child figure {
  text-align: center;
}
.top_service .blc_flex_1-4 .blc_child h4 {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}
.top_service .blc_flex_1-4 .blc_child h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background-image: radial-gradient(circle at center, #9f9f9f 1px, transparent 1px);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  z-index: 1;
}
.top_service .blc_flex_1-4 .blc_child p {
  margin-bottom: auto;
  font-size: 14px;
  padding-bottom: 1rem;
}
.top_service .blc_flex_1-4 .blc_child p:last-of-type {
  margin: 0px -15px !important;
  background-color: #cecece;
  border-radius: 0px 0px 15px 15px;
  line-height: 1;
  padding: 10px;
  flex-shrink: 0;
  width: calc(100% + 30px);
  font-weight: bold;
  text-align: center;
  display: none;
}

.top_information {
  background: url(../../images/bg_cmn_1-creo.webp) bottom right/560px 640px no-repeat;
}
@media (min-width: 992px) {
  .top_information {
    background: url(../../images/bg_cmn_1-creo.webp) top right no-repeat;
  }
}
.top_information figure img {
  width: 200px;
}
@media (min-width: 992px) {
  .top_information figure img {
    width: auto;
  }
}

.top_works {
  background: #ccc url(../../images/bg_cmn_2-janne_r.webp) top left/560px 640px no-repeat;
}
@media (min-width: 992px) {
  .top_works {
    background: #ccc url(../../images/bg_cmn_2-janne_r.webp) top left no-repeat;
  }
}
.top_works {
  color: #ffffff;
}
.top_works .blc_flex_3-4 figure {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.top_works .blc_flex_3-4 p {
  text-align: center;
  font-size: 14px;
}

.blc_service-ex {
  display: flex;
  flex-direction: column;
  gap: 0 3rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .blc_service-ex {
    flex-direction: row;
  }
}
.blc_service-ex p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0px !important;
  padding-top: 10px;
  font-size: 16px;
}
@media (min-width: 992px) {
  .blc_service-ex p {
    padding-top: 0px;
  }
}
.blc_service-ex p em {
  display: inline-block;
  background-color: #cecece;
  padding: 5px 10px;
  width: 150px;
  text-align: center;
  font-style: normal;
}
@media (min-width: 992px) {
  .blc_service-ex p em {
    width: 180px;
  }
}

.service_wrap.is-layout-constrained > .blc_bg_white + .blc_bg_white {
  margin-block-start: 20px;
}
@media (min-width: 992px) {
  .service_wrap.is-layout-constrained > .blc_bg_white + .blc_bg_white {
    margin-block-start: 40px;
  }
}

.about_blc1 {
  background: #cecece url(../../images/bg_cmn_3-night.webp) bottom right/560px 640px no-repeat;
}
@media (min-width: 992px) {
  .about_blc1 {
    background: #cecece url(../../images/bg_cmn_3-night.webp) top right no-repeat;
  }
}

.about_blc2 {
  background: url(../../images/bg_cmn_3-night_r.webp) top left/560px 640px no-repeat;
}
@media (min-width: 992px) {
  .about_blc2 {
    background: url(../../images/bg_cmn_3-night_r.webp) top left no-repeat;
  }
}

@media (max-width: 991.98px) {
  body, html {
    font-size: var(--vk-size-text);
  }
}

body {
  padding-top: 66px;
}
@media (min-width: 992px) {
  body {
    padding-top: 95px;
  }
}
body.home {
  padding-top: 0px;
}

.site-header {
  background-color: transparent;
  box-shadow: none;
  position: fixed;
  top: 10px;
  left: 0px;
  right: 0px;
  max-width: 100%;
  margin: 0px auto;
  height: 56px;
  padding: 0px 15px;
}
@media (min-width: 992px) {
  .site-header {
    top: 20px;
    height: auto;
  }
}
.site-header .site-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 2px 20px;
  max-width: 1200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .site-header .site-header-container {
    padding: 10px 20px;
  }
}
.site-header .site-header-logo {
  text-align: left;
  padding-left: 0px;
  padding-right: 10px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .site-header .site-header-logo {
    padding-left: 26px;
    width: auto;
    padding-top: 0px;
    margin-bottom: 0px;
    flex: 0 0 200px;
  }
}
.site-header .site-header-logo img {
  margin-left: 0px;
}
@media (max-width: 991.98px) {
  .site-header .site-header-logo img {
    max-height: 24px;
    height: 55px;
  }
}
@media (min-width: 992px) {
  .site-header .site-header-logo img {
    width: 200px;
    height: auto;
  }
}
.site-header .nav_sub {
  flex: 0 0 200px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  order: 3;
}
@media (max-width: 991.98px) {
  .site-header .nav_sub {
    display: none;
  }
}
.site-header .nav_sub li {
  margin: 0;
}
.site-header .nav_sub li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  padding: 5px;
}
.site-header .nav_sub li a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .site-header .global-nav {
    margin-right: auto;
  }
}
.site-header .global-nav .global-nav-list > li:before {
  content: none;
}
@media (min-width: 992px) {
  .site-header .global-nav .global-nav-list > li.nav-sns {
    display: none;
  }
}
.site-header .global-nav .global-nav-list > li .global-nav-name {
  font-size: 1rem;
}
.header_scrolled .site-header {
  box-shadow: none;
  animation: none;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  z-index: 1000;
  top: 10px;
  left: 0px;
  position: fixed;
}
@media (min-width: 992px) {
  .header_scrolled .site-header {
    top: 20px;
  }
}
@media (min-width: 992px) {
  .header_scrolled .site-header .global-nav {
    display: flex;
  }
}

.vk-mobile-nav-menu-btn {
  top: 15px;
  border: none;
}
.vk-mobile-nav-menu-btn.position-right {
  right: 35px;
}
.vk-mobile-nav-menu-btn.menu-open {
  border: none;
}

.site-footer {
  border-top: none;
  background-color: var(--vk-color-primary);
  color: #fff;
}
.site-footer .nav_sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 0px 0px 20px 0px;
  list-style: none;
}
.site-footer .nav_sub li a {
  color: #fff;
  font-size: 24px;
}
.site-footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 34px;
  list-style: none;
  flex-direction: column;
}
@media (min-width: 992px) {
  .site-footer .menu {
    flex-direction: row;
    gap: 18px 34px;
  }
}
.site-footer .menu li.nav-sns {
  display: none;
}
.site-footer .menu li a {
  color: #fff;
  font-size: 1rem;
  padding-left: 0px;
}
.site-footer .site-footer-copyright {
  padding-bottom: 0.5rem;
}

.page_top_btn {
  display: none !important;
}

.site-header + * {
  margin-top: 0px !important;
}

.home .site-body {
  padding-top: 0px;
}

.page .site-body {
  padding-bottom: 0px;
}
.page .main-section {
  margin-bottom: 0px;
}

.alignfull {
  padding-right: 15px;
  padding-left: 15px;
}

body:not(.post-type-post, .post-type-case) h2 {
  opacity: 0;
  transform: translateY(20px);
}
body:not(.post-type-post, .post-type-case) h2.is-active {
  animation: 1s ease-in-out 0s normal forwards fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
body .container :is(.is-layout-flow, .is-layout-constrained) p:where(:not(:last-child)) {
  --vk-margin-element-bottom: 2.25rem;
}

@media (max-width: 991.98px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 992px) {
  .sp-only {
    display: none;
  }
}

li a, p a {
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .txt_sp_left.has-text-align-center {
    text-align: left;
  }
}

.top_mv {
  width: 100vw;
  height: 100vh;
}
.top_mv figure {
  opacity: 0;
}
.top_mv .top_mv_bg {
  animation: topfadeInUp 1s ease-in-out 0s normal forwards;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: url(../../images/bg_top_mv_pc.jpg) center center/cover no-repeat;
}
@media ((max-width: 991.98px) and (orientation: portrait)) {
  .top_mv .top_mv_bg {
    background: url(../../images/bg_top_mv_sp.jpg) center center/cover no-repeat;
  }
}
.top_mv .top_mv_img {
  animation: topfadeInUp 1s ease-in-out 1s normal forwards;
}

@keyframes topfadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url], select, textarea {
  border-radius: 10px;
}

.dl_form {
  display: flex;
  flex-wrap: wrap;
}
.dl_form dt {
  margin: 0px;
  padding: 10px 0px;
  font-weight: normal;
  width: 100%;
}
@media (min-width: 992px) {
  .dl_form dt {
    width: 220px;
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
  }
}
.dl_form dt .form_required {
  display: inline-block;
  border: 1px solid var(--vk-color-primary);
  background-color: var(--vk-color-primary);
  border-radius: 5px;
  font-weight: normal;
  padding: 2px 5px;
  margin-left: 5px;
  color: #FFFFFF;
  line-height: 1;
  font-size: 11px;
}
.dl_form dt .form_optional {
  display: inline-block;
  border: 1px solid #CCCCCC;
  background-color: #CCCCCC;
  border-radius: 5px;
  font-weight: normal;
  padding: 2px 5px;
  margin-left: 5px;
  color: #FFFFFF;
  line-height: 1;
  font-size: 11px;
}
.dl_form dd {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #CCCCCC;
  width: 100%;
}
@media (min-width: 992px) {
  .dl_form dd {
    width: calc(100% - 220px);
    padding: 10px 0px;
  }
}
.dl_form dd input[type=email], .dl_form dd input[type=tel], .dl_form dd input[type=text], .dl_form dd input[type=url], .dl_form dd textarea, .dl_form dd select {
  border-radius: 10px;
  margin-bottom: 0px;
}
.dl_form dd span:has(> select.form_s_md) {
  position: relative;
}
.dl_form dd span:has(> select.form_s_md)::after {
  content: "\f078";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 1.5em;
  font: var(--fa-font-solid);
  pointer-events: none;
  margin: auto 0px;
  height: 1em;
}
.dl_form dd span:has(> select.form_s_md) select {
  padding-right: 30px;
}
@media (min-width: 992px) {
  .dl_form dd .form_s {
    width: 70%;
  }
}
.dl_form dd .form_s_y {
  width: 5em;
}
.dl_form dd .form_s_md {
  width: 4.5em;
}
.dl_form dd .form_float {
  float: left;
  margin-right: 5px;
}
.dl_form dd .form_ex {
  display: block;
  width: 100%;
  clear: both;
}
.dl_form dd .error {
  clear: both;
}

form .form_conf,
form .form_ent {
  display: none;
}

.mw_wp_form_confirm .form_conf {
  display: inherit;
}

.mw_wp_form_input .form_ent {
  display: inherit;
}

.form_submit.vk_button {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
.form_submit.vk_button .btn:hover {
  opacity: 0.8;
}
.form_submit.vk_button br {
  display: none;
}/*# sourceMappingURL=style.css.map */