@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #000;
   font-family: "Noto Sans JP", serif;
   font-weight: 500;
   font-size: 14px;
   line-height: 27px;
   letter-spacing: 0.1em;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 13px;
      line-height: 24px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0;
   overflow: hidden;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   align-items: flex-end;
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
}

header .logo {
   width: 318px;
   padding: 55px 0 0 70px;
}

header .btn-inq {
   position: fixed;
   top: 0;
   right: 0;
}

header .btn-inq a {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   width: 352px;
   height: 80px;
   background-color: #5FA6C1;
   color: #fff;
   font-weight: 400;
   font-size: 21px;
   letter-spacing: 0.02em;
   line-height: 35px;
}

header .btn-inq a:after {
   content: '';
   border-width: 10px 0 10px 14px;
   border-color: transparent transparent transparent #fff;
   border-style: solid;
}

.hamburger {
   position: fixed;
   top: 100px;
   right: 20px;
}

#navbar {
   width: 352px;
   max-height: 100vh;
   background-color: #fff;
   position: fixed;
   top: 80px;
   right: 0;
   box-sizing: border-box;
   overflow-y: auto;
   padding: 50px 30px 30px;
   opacity: 0;
   visibility: hidden;
   transform: translateX(100%);
   transition: all 0.3s;
}

#navbar .nav li {
   border-bottom: 1px solid #000;
   padding-bottom: 10px;
}

#navbar .nav li+li {
   padding-top: 10px;
}

.navOpen #navbar {
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
}

@media screen and (max-width: 1023px) {
   header .logo {
      padding: 30px 0 0 20px;
   }
}

@media screen and (max-width: 767px) {
   header {
      position: relative;
   }

   header:before {
      content: '';
      width: 100%;
      height: 6px;
      background: linear-gradient(to right, #F5A629 0%, #F5A629 33.33%, #E8737C 33.33%, #E8737C 66.66%, #5FA6C1 66.66%, #5FA6C1 100%);
      position: absolute;
      top: 0;
      left: 0;
   }

   header .logo {
      width: 230px;
      margin: 0 auto;
      padding: 75px 0 35px;
   }

   header .btn-inq {
      width: 100%;
      top: auto;
      bottom: 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
   }

   header .btn-inq.fixed {
      opacity: 1;
      visibility: visible;
   }

   header .btn-inq a {
      width: 100%;
      height: 53px;
      font-size: 16px;
   }

   header .btn-inq a:after {
      border-width: 6px 0 6px 10px;
   }

   .hamburger {
      top: 15px;
      right: 10px;
   }

   #navbar {
      width: 80%;
      top: 6px;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background: #F6F6F6;
   position: relative;
}

footer:before {
   content: '';
   width: 100%;
   height: 8px;
   background: linear-gradient(to right, #F5A629 0%, #F5A629 33.33%, #E8737C 33.33%, #E8737C 66.66%, #5FA6C1 66.66%, #5FA6C1 100%);
   position: absolute;
   top: 0;
   left: 0;
}

footer .wrap {
   max-width: 100%;
   padding: 115px 4.74vw 50px;
}

footer .logo-1 {
   width: 346px;
   position: absolute;
   bottom: 110px;
   right: 4.74vw;
}

footer .logo {
   width: 312px;
}

footer .txt {
   width: 50%;
   font-weight: 500;
   font-size: 13px;
   line-height: 24px;
   letter-spacing: 0.1em;
   padding-top: 50px;
}

footer .txt dl {
   padding-top: 30px;
}

footer .txt dl dt {
   width: 330px;
   border: 1px solid #707070;
   font-weight: 400;
   font-size: 16px;
   padding: 6px 0;
   text-align: center;
}

footer .txt dl dd {
   padding-top: 14px;
}

footer address {
   width: 100%;
   font-weight: 400;
   letter-spacing: 0.07em;
   padding-top: 55px;
}

@media screen and (max-width: 1023px) {
   footer {
      padding-top: 0;
   }

   footer:before {
      display: none;
   }

   footer .wrap {
      padding: 60px 20px;
   }

   footer .logo-1 {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 196px;
      background-color: #fff;
      position: static;
   }

   footer .logo-1 a {
      display: block;
      width: 230px;
   }

   footer .logo {
      margin: 0 auto;
   }

   footer .txt {
      width: 100%;
      max-width: max-content;
      margin: 0 auto;
   }
}

@media screen and (max-width: 767px) {
   footer {
      padding-bottom: 53px;
   }

   footer .logo {
      width: 230px;
   }

   footer .txt {
      padding-top: 20px;
   }
}

/* -- -- */
#pagetop {
   width: 122px;
   margin-top: -20px;
   margin-left: auto;
   position: static;
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   #pagetop {
      margin-top: 52px;
   }
}

/* -- -- */
.ft-fixed {
   position: fixed;
   z-index: 9;
   transition: 0.5s;
   opacity: 0;
   visibility: hidden;
}

.ft-fixed a {
   display: flex;
   align-items: center;
   gap: 10px;
   box-shadow: -3px 3px 11px rgba(0, 0, 0, 0.35);
}

.ft-fixed .building {
   background-color: #a5e1dc;
}

.ft-fixed .doc {
   background-color: #fcc570;
}

.ft-fixed.fixed {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   .ft-fixed {
      width: 100%;
      bottom: 0;
      left: 0;
   }

   .ft-fixed ul {
      display: flex;
      align-items: flex-end;
   }

   .ft-fixed ul li {
      width: 50%;
   }

   .ft-fixed a {
      justify-content: center;
      height: 40px;
      border-radius: 28px 0 0 28px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 20px;
      text-align: center;
      box-sizing: border-box;
      border-radius: 20px 20px 0 0;
   }

   .ft-fixed a img {
      max-width: 16px;
   }
}

@media screen and (min-width: 768px) {
   .ft-fixed {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
   }

   .ft-fixed ul {
      width: 40px;
   }

   .ft-fixed ul li+li {
      margin-top: 5px;
   }

   .ft-fixed a {
      flex-direction: column;
      height: 150px;
      border-radius: 28px 0 0 28px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 15px;
      text-align: center;
      box-sizing: border-box;
      padding-top: 20px;
      border-radius: 28px 0 0 28px;
   }

   .ft-fixed a img {
      max-width: 16px;
   }

   .ft-fixed a span {
      width: 14px;
   }

   .ft-fixed a:hover {
      background-color: #fff;
      opacity: 1;
   }
}

/*=============================================
 * <section>
 *=============================================*/
section {
   box-sizing: border-box;
}

/* Animation */
.fade-in {
   filter: blur(20px);
   opacity: 0;
   background: linear-gradient(270deg, #111 0%, #777 100%);
   background-clip: text;
   -webkit-background-clip: text;
   transition-delay: 200ms;
   transition-duration: 600ms;
   transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.fade-in[style*="visible"] {
   filter: blur(0);
   opacity: 1;
   background: linear-gradient(90deg, black 0%, black 100%);
   background-clip: text;
   -webkit-background-clip: text;
}

.fade-in-up {
   transition-delay: 200ms;
   transition-duration: 800ms;
   transform: translate(0px, 24px);
   opacity: 0;
}

.fade-in-up[style*="visible"] {
   transform: translate(0px, 0px);
   opacity: 1;
}

/* -- -- */
.img_effect {
   display: inline-block;
   overflow: hidden;
   position: relative;
}

.img_effect:after {
   content: "";
   animation-duration: 300ms;
   animation-fill-mode: forwards;
   animation-delay: 300ms;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: #fff;
}

.img_effect[style*="visible"]:after {
   animation-name: homeTileAnimation;
}

/* =============================================
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   font-weight: 500;
   font-size: 40px;
   letter-spacing: 0.1em;
   line-height: 53px;
   position: relative;
   z-index: 1;
}

.h2 small {
   display: block;
   font-size: 14px;
   letter-spacing: 0.1em;
   line-height: 24px;
   padding-top: 19px;
}

.h-18 {
   font-weight: 400;
   font-size: 18px;
   line-height: 30px;
}

.h-20 {
   font-weight: 400;
   font-size: 20px;
   line-height: 30px;
   letter-spacing: 0;
}

.h-22 {
   font-weight: 400;
   font-size: 22px;
   line-height: 30px;
   letter-spacing: 0;
}

.h-24 {
   font-weight: 400;
   font-size: 24px;
   line-height: 30px;
   letter-spacing: 0;
}

.h-26 {
   font-weight: 400;
   font-size: 26px;
   line-height: 36px;
}

.h-32 {
   font-weight: 400;
   font-size: 32px;
   line-height: 46px;
}

.h-36 {
   font-weight: 400;
   font-size: 36px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 26px;
      line-height: 34px;
   }

   .h2 small {
      font-size: 11px;
      line-height: 15px;
      padding-top: 25px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 15px;
   width: 250px;
   color: #000;
   border: 1px solid #000;
   font-family: "Roboto", sans-serif;
   font-weight: 300;
   font-size: 20px;
   letter-spacing: 0.03em;
   line-height: 35px;
   text-transform: uppercase;
   text-align: center;
   box-sizing: border-box;
   margin: 0;
   padding: 9px 0;
   position: relative;
   z-index: 1;
   border-radius: 20px;
}

.button a:after {
   content: '';
   width: 25px;
   height: 20px;
   background: url("../img/common/arrow-right.png") no-repeat center/cover;
   transition: all 0.3s;
}

.button a:hover {
   background-color: #000;
   color: #fff;
   opacity: 1;
}

.button a:hover:after {
   background-image: url("../img/common/arrow-right-white.png");
}

@media screen and (max-width: 767px) {
   .button {
      text-align: center;
   }

   .button a {
      width: 180px;
      gap: 15px;
      letter-spacing: 0;
      font-size: 14px;
      padding: 1px 0;
   }

   .button a:after {
      width: 14px;
      height: 11px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

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

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.txt-uppercase {
   text-transform: uppercase;
}

.cl-blue {
   color: #0071bc;
}

.cl-green {
   color: #2aa872;
}

.cl-red {
   color: #BD3A43;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #e9850c;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #facf02;
}

.cl-grey {
   color: #AFAFAF;
}

.hightlight {
   background-image: linear-gradient(#fae428, #fae428);
   background-size: 100% 33px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

@media screen and (max-width: 767px) {
   .hightlight {
      background-size: 100% 15px;
   }
}

.fw-r {
   font-weight: 400;
}

.fw-m {
   font-weight: 500;
}

.fw-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 400;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-24 {
   border-radius: 24px;
}

.bdra-30 {
   border-radius: 30px;
}

.bdra-50 {
   border-radius: 30px;
}

.img-shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }

   .bdra-50 {
      border-radius: 25px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

.w900 {
   max-width: 900px;
   margin: 0 auto;
}

.w1100 {
   max-width: 1120px;
   margin: 0 auto;
}

.w1280 {
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
}

/* -- --*/
.section-space {
   padding: 120px 0;
}

.mb90 {
   margin-bottom: 90px;
}

.pt80 {
   padding-top: 80px;
}

.pt100 {
   padding-top: 100px;
}

.pt120 {
   padding-top: 120px;
}

.pb30 {
   padding-bottom: 30px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 80px 0;
   }

   .pb30 {
      padding-bottom: 15px;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt100,
   .pt120 {
      padding-top: 50px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100,
   .pb120 {
      padding-bottom: 50px;
   }
}

/* -- --*/
.bg-cl01 {
   background: #F8F8F8;
}

/* -- -- */
.img-zoom {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-cover {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover {
   opacity: 1;
}

.img-zoom:hover .img,
.img-zoom:hover .img-cover {
   transform: scale(1.07);
   filter: brightness(0.8);
}

/* -- -- */
.effect-bnr a {
   display: block;
   background-color: #030c17;
   position: relative;
}

.effect-bnr a:after {
   content: '';
   position: absolute;
   top: 30px;
   right: 30px;
   bottom: 30px;
   left: 30px;
   border: 1px solid #fff;
   box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1);
   opacity: 0;
   -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
   transition: opacity 0.35s, transform 0.35s;
   -webkit-transform: scale3d(1.1, 1.1, 1);
   transform: scale3d(1.1, 1.1, 1);
}

.effect-bnr a:hover {
   opacity: 1;
}

.effect-bnr a:hover:after {
   opacity: 1;
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
}

.effect-bnr a:hover img {
   opacity: 0.3 !important;
}

/* -- --*/
.tb-style {
   font-weight: 400;
   line-height: 30px;
   position: relative;
}

.tb-style dl {
   display: table;
   width: 100%;
}

.tb-style dl+dl {
   padding-top: 25px;
}

.tb-style dl dt,
.tb-style dl dd {
   display: table-cell;
   vertical-align: top;
}

.tb-style dl dt {
   width: 130px;
   color: #0078F8;
   font-weight: 500;
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
   }

   .tb-style dl+dl {
      padding-top: 20px;
   }

   .tb-style dl dt,
   .tb-style dl dd {
      display: block;
      height: auto;
   }

   .tb-style dl dt {
      width: auto;
   }
}

/* -- -- */
.swiper {
   overflow: hidden;
   position: relative;
}

.swiper-wrapper {
   transition-timing-function: linear;
}

.swiper-button-next,
.swiper-button-prev {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   overflow: hidden;
   background-color: #1C4B68;
   transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   width: 100%;
   height: 100%;
   font-size: 0;
}

.swiper-button-next:after {
   background: url("../img/common/slider-next.png") no-repeat center/23px auto;
}

.swiper-button-prev:after {
   background: url("../img/common/slider-prev.png") no-repeat center/23px auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
   opacity: 0.7;
}

.swiper-pagination {
   display: flex;
   align-items: center;
   gap: 12px;
   width: auto;
   position: static;
   margin: 0;
   padding-right: 10px;
}

.swiper-pagination .swiper-pagination-bullet {
   display: block;
   width: auto;
   height: auto;
   border-radius: 0;
   background: transparent;
   opacity: 1;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 0.04em;
   line-height: 30px;
   margin: 0;
}

.swiper-pagination .swiper-pagination-bullet-active {
   color: #53B075;
}

@media screen and (max-width: 767px) {

   .swiper-button-next,
   .swiper-button-prev {
      width: 40px;
      height: 40px;
   }
}

/* -- --*/
.slick-arrow {
   display: block;
   width: 9px;
   height: 8px;
   background: transparent;
   border: 0;
   font-size: 0;
   outline: 0;
   cursor: pointer;
   transition: all 0.3s;
   position: relative;
   z-index: 1;
}

.slick-arrow:hover {
   opacity: 0.7;
}

.slick-prev {
   left: 0;
}

.slick-next {
   right: 0;
}

@media screen and (max-width: 767px) {
   .slick-arrow {
      width: 16px;
      height: 14px;
   }
}

.slick-dots {
   display: flex;
   align-items: center;
   gap: 20px;
}

.slick-dots li {
   width: 10px;
   height: 10px;
   position: relative;
}

.slick-dots button {
   display: block;
   width: 100%;
   height: 100%;
   background-color: #727272;
   border: 0;
   font-size: 0;
   transition: all 0.3s;
   cursor: pointer;
}

.slick-dots .slick-active button,
.slick-dots li:hover button {
   background-color: #fff;
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

.img-cover {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

/* -- --*/
hr {
   border: 0;
   border-top: 1px solid #ccc;
}

/*=============================================*
 * Key
 *=============================================*/
#kv {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   position: relative;
   z-index: 1;
   padding: 4% 0 1%;
}

#kv:before {
   content: '';
   width: 100%;
   padding-top: 48%;
   background: url("../img/common/key-bg.png") no-repeat center top/cover;
   position: absolute;
   top: -75px;
   left: 0;
}

#kv .page-title {
   width: 78%;
   color: #fff;
   font-weight: 400;
   font-size: 56px;
   line-height: 85px;
   letter-spacing: 0.14em;
   text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
   position: absolute;
   top: 20%;
   right: 0;
   z-index: 1;
}

#kv .page-title:before {
   content: '';
   width: 7%;
   padding-top: 15%;
   background: url("../img/top/mv-deco.png") no-repeat center top/cover;
   position: absolute;
   top: 120%;
   left: 40px;
}

#kv .page-title .en {
   display: block;
   font-weight: 400;
   font-size: 24px;
   line-height: 28px;
   letter-spacing: 0.14em;
   text-transform: capitalize;
}

#kv .photo {
   width: 66%;
   padding-top: 32%;
   box-sizing: border-box;
   position: relative;
}

#kv .photo figure {
   width: 100%;
   height: 100%;
   filter: drop-shadow(7px 7px 15px rgba(0, 0, 0, 0.33));
   position: absolute;
   top: 0;
   left: 0;
}

#kv .photo figure:before {
   content: '';
   width: 105%;
   height: 105%;
   position: absolute;
   top: -2.2%;
   left: -1.5%;
   -webkit-mask: url("../img/common/key-photo-bg.png") no-repeat center/cover;
   mask: url("../img/common/key-photo-bg.png") no-repeat center/cover;
   background-color: #74b8f7;
}

#kv .photo figure img {
   -webkit-mask: url("../img/common/key-photo-bg.png") no-repeat center/cover;
   mask: url("../img/common/key-photo-bg.png") no-repeat center/cover;
}

@media screen and (max-width: 1023px) {
   #kv:before {
      top: -50px;
   }

   #kv .page-title {
      width: 90%;
      font-size: 40px;
      line-height: 60px;
      top: 10%;
   }

   #kv .page-title:before {
      top: 110%;
   }
}

@media screen and (max-width: 767px) {
   #kv {
      display: block;
   }

   #kv:before {
      top: 0px;
   }

   #kv .photo {
      width: 96%;
      padding-top: 47%;
      margin-left: auto;
   }

   #kv .page-title {
      width: 93%;
      text-align: center;
      font-size: 36px;
      line-height: 48px;
      margin-left: auto;
      padding: 4% 0 100px;
      position: relative;
   }

   #kv .page-title:before {
      width: 40px;
      height: 85px;
      padding-top: 0;
      top: auto;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
   }

   #kv .page-title .en {
      font-size: 16px;
   }
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   color: #666;
   font-weight: 500;
   font-size: 12px;
   line-height: 24px;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: 1;
}

.breadcrumbs ul {
   display: flex;
   flex-wrap: wrap;
}

.breadcrumbs ul li+li:before {
   content: '＞';
   display: inline-block;
   vertical-align: baseline;
}

.breadcrumbs a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 1023px) {
   .breadcrumbs .wrap {
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 5px;
   }

   .breadcrumbs ul {
      width: max-content;
   }
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      position: relative;
      padding-top: 30px;
   }
}

/*=============================================*
 * 404
 *=============================================*/
#content-404 {
   text-align: center;
   padding: 120px 0 0;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   text-align: center;
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 50px 0 0;
   }

   #content-404 .txt,
   #content-404 .button {
      padding-top: 30px;
   }
}

/*=============================================*
* お問い合わせ
*=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '▼';
   line-height: 1;
   color: #182225;
   position: absolute;
   top: 15px;
   right: 10px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 1px solid #B9B9B9;
   line-height: 35px;
   border-radius: 8px !important;
   padding: 14px 35px 14px 15px;
   cursor: pointer;
}

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

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #B9B9B9;
   font-weight: 500;
   line-height: 35px;
   border-radius: 6px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 14px 15px;
}

.wpcf7 textarea {
   height: 348px;
   resize: vertical;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #9B9B9B;
}

.wpcf7 ::-moz-placeholder {
   color: #9B9B9B;
}

.wpcf7 :-ms-input-placeholder {
   color: #9B9B9B;
}

.wpcf7 :-moz-placeholder {
   color: #9B9B9B;
}

.wpcf7-checkbox {
   display: flex;
   flex-direction: column;
   gap: 15px;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 25px;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 25px 1fr;
   align-items: center;
   gap: 15px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after {
   content: '';
   width: 25px;
   height: 25px;
   border: 1px solid #707070;
   grid-area: 1/1;
   position: relative;
   top: 0;
   border-radius: 4px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:after {
   background-color: #707070;
   display: none;
   width: 19px;
   height: 19px;
   top: 0px;
   left: 3px;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 12px;
   line-height: 20px;
}

@media screen and (max-width: 767px) {

   .wpcf7 input:not([type="checkbox"], [type="radio"]),
   .wpcf7 textarea {
      line-height: 33px;
      padding: 0 15px;
   }

   .wpcf7 .select select {
      line-height: 33px;
      padding: 0 50px 0 15px;
   }

   .wpcf7 textarea {
      height: 180px;
   }

   .wpcf7-checkbox {
      gap: 0px;
      font-size: 13px;
      line-height: 24px;
   }

   .wpcf7-checkbox .wpcf7-list-item-label {
      grid-template-columns: 18px 1fr;
      gap: 10px;
   }

   .wpcf7-checkbox .wpcf7-list-item-label:before,
   .wpcf7-checkbox .wpcf7-list-item-label:after {
      width: 18px;
      height: 18px;
   }

   .wpcf7-checkbox .wpcf7-list-item-label:after {
      width: 12px;
      height: 12px;
   }
}