@charset "UTF-8";

/*
 *--------------------------------------------------
 * 全体設定
 *--------------------------------------------------
 */

/* 見出し */
h2,h3 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  }
  
  h2.is-style-default {
    border:none;
  }
  
  h2.is-style-default::before{
  content: "";
  width: 50px;
  height: 1px;
  position: relative;
  display: inline-block; 
  margin-right: 0.5rem;
  vertical-align: middle;
  background-color: currentColor;
  }
  
  /* ボタン装飾 */
  .wp-block-button.is-style-outline .wp-block-button__link{
  position: relative;
  border-top:none;
  border-left:none;
  border-right:none;
  border-bottom:1px solid currentcolor;
  border-radius:0;
  background-color: transparent;
  }
  
  .wp-block-button.is-style-outline .wp-block-button__link:hover{
  border-bottom:1px solid  var(--vk-color-primary);
  }
  
  .wp-block-button.is-style-outline .wp-block-button__link::before {
  content: "";
   width: 100%;
   height: 100%;
   position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--vk-color-primary);
  transform-origin: 50% 0%;
  transform: scaleY(0);
   transition: transform ease .3s;
  }
    
  .wp-block-button.is-style-outline .wp-block-button__link:hover::before {
  transform-origin: 50% 100%;
  transform: scaleY(1);
  } 
  
  .wp-block-button.is-style-outline .wp-block-button__link::after{
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px currentcolor;
  border-right: solid 1px currentcolor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  transition:  .3s;
  }
  .wp-block-button.is-style-outline .wp-block-button__link:hover::after{
  right: 13px;
  }
  
  /* ボトム固定バナー */
  .site-footer {
    margin-bottom: 80px !important;
  }
  
  .mkc-button-cta_bottom {
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255,255,255,.9);
    padding: 1rem 0;
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
  }
  
  /*下層ページのパンくずリスト*/
  .breadcrumb {
    border-top: none;
    border-bottom: none;
  }
  
  .breadcrumb i {
    display: none;
  }
  
  .breadcrumb li a {
    text-decoration: none;
    color: var(--color-primary);
  }
  
  .breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--color-primary-vivid);
  }
  
  /*トップへ戻るボタン*/
  .page_top_btn {
    position: fixed;
    right: 2%;
    bottom: 11%;
    z-index: 99999;
    width: 42px;
    height: 42px;
    color: transparent;
    border-radius: 100em;
    border: 2px solid #fff;
    background: var(--vk-color-primary);
    box-shadow: none;
    background-image: var(--ver_page_top_button_url);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 0.3s;
    text-decoration: none;
  }
  
  
  /*
   *--------------------------------------------------
   * Header
   *--------------------------------------------------
   */
  
  
  /*
   *--------------------------------------------------
   * Footer
   *--------------------------------------------------
   */
  
  .footer-nav {
    border-bottom: none;
  }
  
  .site-footer-copyright {
    padding: 0;
  }
  
  
  /*
   *--------------------------------------------------
   * Topページ
   *--------------------------------------------------
   */
  
  /* ファーストビュー */
  @media (max-width:480px) {
    .mkc-column-fv h2 {
      font-size: 1.5rem !important;
    }
  }
  
  /* スライドのzoomアニメーション */
  .mkc-slide-fv .swiper-slide-active.vk_slider_item,
  .mkc-slide-fv .swiper-slide-duplicate-active.vk_slider_item,
  .mkc-slide-fv .swiper-slide-prev.vk_slider_item {
    animation: slider-background-zoomup 5s ease-in forwards;
  }
  
  @keyframes slider-background-zoomup {
    0% {
      background-size: 100%;
    }
    100% {
      background-size: 150%;
    }
  }
  
  /* キャッチコピー */
  .mkc-column-catchcopy {
    gap: 3rem;
  }
  
  h2.mkc-h2-catchcopy {
    font-weight: 600;
  }
  
  /* 建設業許可 */
  .mkc-list-license {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: .25rem;
    list-style: none; 
  }
  
  @media (max-width: 781px) {
    .mkc-column-catchcopy-right {
      display: none;
    }
  }
  
  
  /*
   *--------------------------------------------------
   * 安全への取り組みページ
   *--------------------------------------------------
   */
  
  .vk_timeline .vk_timeline_item_content>*:first-child {
    margin-bottom: .75rem;
  }
  
  .vk_timeline .vk_timeline_item_content>*:last-child {
    margin-bottom: 2rem;
  }
  
  
  /*
   *--------------------------------------------------
   * 会社概要ページ
   *--------------------------------------------------
   */
  
  /* googleマップ */
  .map {
    max-width: 1200px;
    height: 0;
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  
  .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  
  
  /*
   *--------------------------------------------------
   * お問い合わせページ
   *--------------------------------------------------
   */
  
  /* フォーム全体 */
  .form-contact {
    max-width: 80%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .form-contact dd {
    margin: 0 0 30px 0;
  }
  
  .form-contact dt {
    font-weight: normal;
  }
  
  /* 必須マーク */
  .form-contact .required {
    background: var(--wp--preset--color--vk-color-primary);
  }
  
  /* 任意マーク */
  .form-contact .optional {
    background: #999;
  }
  
  .form-contact .required,
  .form-contact .optional {
    color: #fff;
    border-radius: 0;
    font-size: 10px;
    margin-left: 10px;
    padding: 5px 10px;
    letter-spacing: 2px;
  }
  
  /* オプションチェックボックス */
  dl.form-contact .wpcf7-list-item {
    width: 20rem;
  }
  
  /* 同意のチェック */
  .form-contact-accept {
    margin-bottom: 1rem;
  }
  
  /* 確認エリア */
  .form-contact-confirm {
    text-align: center;
  }
  
  /* 確認ボタン */
  .btn_form-contact {
    text-align: center;
  }
  
  .btn_form-contact input {
    width: 70%;
    background-color: var(--wp--preset--color--vk-color-primary);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2em;
    border: 1px solid var(--wp--preset--color--vk-color-primary);
    border-radius: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
  }
  
  .btn_form-contact input:hover {
    background-color: #fff;
    color: #ffe3ba;
  }
  
  .btn_form-contact-confirm {
    display: inline-block;
    margin: 1rem auto;
  }
  
  .btn_form-contact-confirm input.wpcf7-previous {
    border: 1px solid var(--wp--preset--color--vk-color-primary);
    background-color: #fff;
    color: #80b25a;
    border-radius: 0;
    padding: .5rem 4rem;
    line-height: 1.5;
  }
  
  .btn_form-contact-confirm input.wpcf7-previous:hover {
    background-color: var(--wp--preset--color--vk-color-primary);
    color: #fff;
    border: none;
  }
  
  .btn_form-contact-confirm input.wpcf7-submit {
    background-color: var(--wp--preset--color--vk-color-primary);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: .5rem 4rem;
    line-height: 1.5;
  }
  
  .btn_form-contact-confirm input.wpcf7-submit:hover {
    border: 1px solid var(--wp--preset--color--vk-color-primary);
    background-color: #fff !important;
    color: var(--wp--preset--color--vk-color-primary);
  }
  
  /* レスポンシブ */
  @media (min-width: 768px) {
    .form-contact dt {
      float: left;
      clear: left;
      width: 35%;
      padding: 5px 10px 5px 0;
    }
  
    .form-contact dd {
      margin-left: 35%;
    }
  
    .btn_form-contact input {
      width: 70%;
      background-color: var(--wp--preset--color--vk-color-primary);
      color: #fff;
      font-size: 1.1em;
      font-weight: bold;
      letter-spacing: 0.2em;
      border: 1px solid var(--wp--preset--color--vk-color-primary);
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      -ms-transition: 0.3s;
      transition: 0.3s;
    }
  
    .btn_form-contact input:hover {
      background-color: #fff;
      color: var(--wp--preset--color--vk-color-primary);
    }
  
    .form-contact-confirm {
      clear: both;
    }
  }
  
  /* Google reCptcha バッジ非表示 */
  .grecaptcha-badge {
    visibility: hidden;
  }
  
  
  /*
   *--------------------------------------------------
   * サイトマップページ
   *--------------------------------------------------
   */
  
  
  /*
   *--------------------------------------------------
   * 法規ページ
   *--------------------------------------------------
   */
   