/*===================================================================
    追従ボタン
===================================================================*/
.float-wrap {
    position: fixed;
    bottom: 10%;
    right: 0;
    z-index: 10;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 55px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-radius: 10px 0 0 10px;
}

.float-btn-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.float-btn-icon img {
    width: 100%;
    height: auto;
}

.float-btn-text {
    writing-mode: vertical-rl;
    margin: 0;
    letter-spacing: 0.1em;
    font-size: 20px;
}

.float-btn--contact {
    background-color: #F08441;
    color: #fff;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    margin-bottom: 15px;
}

.float-btn--contact:hover {
    background-color: #F08441;
    color: #fff;
    opacity: .8;
}

.float-btn--recruit {
    background-color: #EB7864;
    color: #fff;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

.float-btn--recruit:hover {
    background-color: #EB7864;
    color: #fff;
    opacity: .8;
}

@media screen and (min-width: 601px) {
    .float-wrap {
      top: 30%;
    }
  }

@media screen and (max-width: 600px) {
    .float-wrap {
        display: flex;
        justify-content: center;
        bottom: 0;
        right: auto;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 10px 10px 0;
    }

    .float-btn {
        flex-direction: row;
        width: 48%;
        height: 50px;
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 30px;
        border: none;
    }

    .float-btn-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 0;
        margin-right: 5px;
    }
    
    .float-btn-text {
        writing-mode: horizontal-tb;
        letter-spacing: 0.05em;
        font-size: 16px;
    }
    
    .float-btn--contact,
    .float-btn--recruit {
        /* background-color: #007E66;
        color: #fff;
        border: 2px solid #fff; */
        margin-bottom: 0;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* .float-btn--contact .float-btn-icon img {
        filter: invert(50%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(200%) contrast(100%);
    } */

    .page_top_btn {
        bottom: 10%;
    }
}

@media screen and (max-width: 480px) {
    .float-wrap {
        padding: 15px 10px 10px 5px;
    }

    .float-btn {
        height: 42px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .float-btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .float-btn-text {
        font-size: 14px;
    }

}


/*===================================================================
    contact form
===================================================================*/
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/*========================
    contact-form
========================*/
.form-list {
    border-top: 1px solid rgba(73, 86, 94, 0.2);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .form-list p {
    margin: 0 !important;
  }
  
  .form-listL {
    width: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    padding-top: 15px;
  }
  
  .form-listR {
    width: calc(100% - 380px);
  }
  
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    /* border: 2px solid #F7BE52; */
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
  }
  
  input[type=text]:focus-visible,
  input[type=email]:focus-visible,
  input[type=tel]:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline-color: #F7BE52 !important;
  }
  
  .labelCheck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  
  .form-pp {
    border-top: 1px solid rgba(73, 86, 94, 0.2);
    padding-top: 30px;
    margin-bottom: 30px;
  }
  
  .form-pp-wrap {
    /* background-color: #F2F2F2; */
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .link-pp {
    color: #51738A;
    font-weight: 700;
    -webkit-text-decoration: underline 1px #51738A;
            text-decoration: underline 1px #51738A;
  }
  
  .pp-name {
    text-align: right;
    font-weight: 500;
    padding-top: 30px;
  }
  
  input[type=checkbox] {
    width: 24px;
    height: 24px;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    margin-right: 15px;
    border: none;
    accent-color: #ee6109;
  }
  
  #privacy-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  #privacy-check .wpcf7-list-item {
    margin: 0;
  }
  #privacy-check br {
    display: none;
  }

  .wpcf7-list-item label {
    display: flex;
    align-items: center;
  }
  
  .contact-form label.error {
    display: block;
    margin-top: 5px;
    padding: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #3167C1;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  
  #privacy-check label.error {
    position: absolute;
    top: 40px;
    left: 0;
    display: block;
  }
  
  .pp-text {
    margin-bottom: 20px;
  }
  .pp-text a {
    text-decoration: underline;
    text-decoration-color: #FF0063;
  }
  .pp-text a:hover {
    color: #FF0063;
  }
  
  .form-submit {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-submit p {
    width: 100%;
    height: 100px;
  }
  
  .submit-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 240px;
  }
  
  input[type=submit] {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 240px;
    height: 56px;
    color: #F7BE52;
    background-color: #fff;
    border: 2px solid #F7BE52;
    font-size: 20px;
    font-weight: 700;
    border-radius: 33px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  input[type=submit]:hover {
    background-color: #F7BE52 !important;
    color: #fff;
  }
  
  @media screen and (max-width: 1024px) {
    .form-listL {
      width: 220px;
    }
    .form-listR {
      width: calc(100% - 220px);
    }
  }
  @media screen and (max-width: 767px) {
    .form-list {
      border-top: 1px solid rgba(73, 86, 94, 0.2);
      padding-top: 15px;
      padding-bottom: 15px;
    }
    .form-listL {
      width: 100%;
      padding-top: 0;
      padding-bottom: 5px;
    }
    .form-listR {
      width: 100%;
    }
    #privacy-check {
      font-size: 14px;
    }
    .form-pp-wrap {
      padding: 30px 15px;
    }
  }
  .wpcf7-spinner {
    display: none;
  }
  



/*===================================================================
    lightningへの上書き
===================================================================*/
@media (max-width: 991.98px) {
    .site-header-logo img {
        max-height: 50px;
    }
}




/*===================================================================
    mobile-nav 
===================================================================*/
	.vk-mobile-nav-menu-btn {
    position: fixed;
    top: 5px;
    right: 5px!important;
    left: auto;
}



/*===================================================================
    有料老人ホーム見出し 
===================================================================*/
.facility-tit-img {
	padding-right: 30px;
	width: 150px;
	object-fit: contain;
}
.facility-tit-text {
    font-size: 14px !important;
    text-align: left !important;
    line-height: 17px !important;
}

#vk-htags-2c8b1617-88b0-4ed4-b1a1-3c5195ace317 {
	display: flex;
	justify-content: center;
}

@media screen and (max-width:767px){
#vk-htags-2c8b1617-88b0-4ed4-b1a1-3c5195ace317 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.facility-tit {
    font-size: 22px;
    line-height: 25px;
    letter-spacing: -1px;
}
.facility-tit-img {
    padding-right: 0px;
    width: 120px;
    padding-bottom: 10px;
}
.facility-tit-text {
  padding-top: 5px;
  margin: 0 auto;
  text-align: center!important;
}
}
