@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #3B4043;
   font-family: "Zen Maru Gothic", sans-serif;
   font-weight: 500;
   font-size: 16px;
   line-height: 30px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
   word-break: break-all;
}

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

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   align-items: center;
   gap: 45px;
   background-color: #F7F3EF;
   width: 100%;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   transition: all 0.3s;
   padding: 20px 25px 20px 35px;
}

header .logo {
   flex: 1 0 0;
}

header .logo a {
   display: grid;
   width: 394px;
}

header .logo a img {
   grid-area: 1/1;
   transition: all 0.3s;
}

header .logo a img.offf {
   opacity: 1;
}

header .logo a img.on {
   opacity: 0;
}

header .button {
   width: 204px;
}

header .button a {
   max-width: 100%;
   height: 58px;
   font-size: 16px;
}

header .button a:before {
   top: 6px;
   right: 6px;
   bottom: 6px;
   left: 6px;
}

header .button a:after {
   font-size: 21px;
   right: 18px;
}

#navbar {
   display: grid;
   background: #fff;
   color: #fff;
   width: 100%;
   height: 100vh;
   position: fixed;
   top: 0;
   left: 0;
   box-sizing: border-box;
   overflow-y: auto;
   padding: 100px 0 20vh;
   z-index: -1;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all 0.3s linear;
}

#navbar:before {
   content: '';
   width: 100%;
   height: 100vh;
   min-height: 940px;
   background: url("../img/common/navbar-bg.png") no-repeat center bottom/cover;
   position: absolute;
   top: 0;
   left: 0;
}

#navbar .wrap {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 20px;
   margin: auto;
}

#navbar .col {
   width: 396px;
}

#navbar h2 {
   max-width: 320px;
   padding-bottom: 90px;
}

#navbar .nav {
   display: grid;
   grid-template-rows: repeat(3, 1fr);
   grid-auto-flow: column;
   gap: 50px 170px;
}

#navbar .nav a {
   font-weight: 700;
   font-size: 26px;
   line-height: 37px;
   letter-spacing: 0;
}

#navbar .nav a span {
   display: block;
   font-size: 16px;
   letter-spacing: 0.15em;
   line-height: 20px;
}

#navbar .nav a:hover,
#navbar .nav a.current {
   color: #000;
   opacity: 1;
}

.navOpen {
   overflow: hidden;
}

.navOpen header .logo a img.off {
   opacity: 0;
}

.navOpen header .logo a img.on {
   opacity: 1;
}

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

body.home header {
   position: fixed;
}

@media screen and (max-width: 1200px) {
   #navbar .nav {
      gap: 50px 100px;
   }
}

@media screen and (max-width: 1023px) {
   header {
      gap: 20px;
      padding: 20px;
   }

   #navbar .col {
      width: 300px;
   }

   #navbar .nav {
      gap: 50px 20px;
   }
}

@media screen and (max-width: 767px) {
   header {
      gap: 0;
      height: 75px;
      padding: 0 20px;
      background-color: #fff;
   }

   header .logo a {
      width: 265px;
   }

   header .button {
      display: none;
   }

   #navbar {
      display: block;
   }

   #navbar:before {
      min-height: 120%;
   }

   #navbar .wrap {
      flex-direction: column;
      align-items: center;
      gap: 30px;
   }

   #navbar .col {
      width: 60%;
   }

   #navbar h2 {
      max-width: 40vw;
      margin: 0 auto;
      padding-bottom: 40px;
   }

   #navbar .nav {
      gap: 20px 50px;
      width: 100%;
   }

   #navbar .nav a {
      font-size: 20px;
      line-height: 30px;
   }

   #navbar .nav a span {
      font-size: 12px;
      line-height: 16px;
   }

   body.home header {
      position: sticky;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background: #FED832 url("../img/common/footer-bg.jpg") no-repeat center top/1105px auto;
   padding: 85px 0 15px;
   font-weight: 700;
   line-height: 25px;
}

footer:before {
   content: '';
   width: 100%;
   height: 30px;
   background: url("../img/common/footer-bg-top.png") repeat center top/auto 100%;
   position: absolute;
   bottom: 100%;
   left: 0;
}

footer .wrap:before {
   content: '';
   width: 173px;
   height: 169px;
   background: url("../img/common/footer-deco-1.png") no-repeat center top/cover;
   position: absolute;
   top: 0;
   left: calc(50% - 410px);
}

footer .wrap:after {
   content: '';
   width: 60px;
   height: 114px;
   background: url("../img/common/footer-deco-2.png") no-repeat center top/cover;
   position: absolute;
   top: 30px;
   left: calc(50% + 305px);
}

footer .logo {
   max-width: 175px;
   margin: 0 auto;
   padding-top: 40px;
}

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

footer .tel {
   max-width: 276px;
   margin: 0 auto;
   padding-top: 15px;
}

footer time {
   display: block;
   font-size: 12px;
   line-height: 17px;
   padding-top: 8px;
}

footer nav {
   padding-top: 20px;
}

footer nav ul {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 10px 25px;
}

footer nav ul li:last-child {
   width: 100%;
}

footer nav ul a {
   display: inline-flex;
   align-items: center;
   gap: 5px;
}

footer nav ul a i {
   color: #F08D1D;
   font-size: 15px;
   transition: all 0.3s;
}

footer nav ul a:hover i {
   transform: translateX(5px);
}

footer nav .button {
   padding-top: 25px;
}

footer address {
   font-size: 14px;
   line-height: 20px;
   padding-top: 40px;
}

@media screen and (max-width: 1023px) {
   footer .wrap:before {
      left: calc(50% - 370px);
   }
}

@media screen and (max-width: 767px) {
   footer {
      background-image: url("../img/common/footer-bg_sp.jpg");
      background-size: cover;
      padding: 30px 0 25px;
   }

   footer:before {
      height: 15px;
   }

   footer .wrap:before {
      background-image: url("../img/common/footer-deco-1_sp.png");
      width: 74px;
      height: 73px;
      left: 20px;
   }

   footer .wrap:after {
      width: 26px;
      height: 48px;
      right: 60px;
      left: auto;
   }

   footer .logo {
      padding-top: 45px;
   }

   footer .tel {
      padding-top: 12px;
   }

   footer time {
      padding-top: 4px;
   }

   footer nav {
      padding-top: 15px;
   }

   footer nav ul {
      justify-content: flex-start;
      gap: 12px 40px;
   }

   footer nav ul li:last-child {
      width: auto;
   }

   footer nav .button {
      text-align: center;
      padding-top: 30px;
   }

   footer address {
      padding-top: 12px;
   }
}

/* -- -- */
#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.fixed {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   .ft-fixed {
      bottom: 20px;
      right: 20px;
   }

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

   .ft-fixed.stop {
      opacity: 0;
      visibility: hidden;
   }
}

@media screen and (min-width: 768px) {
   .ft-fixed {
      bottom: 20px;
      right: 0;
   }

   .ft-fixed ul {
      width: calc(50% - 600px);
      min-width: 200px;
   }

   .ft-fixed ul li {
      width: 140px;
      margin: 0 auto;
   }
}

@media screen and (min-width: 1024px) {
   .ft-fixed ul li {
      width: 180px;
   }
}

/*=============================================
 * <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 -- */
.h-18 {
   font-weight: 700;
   font-size: 18px;
   line-height: 26px;
}

.h-20 {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
}

.h-22 {
   font-weight: 700;
   font-size: 22px;
   line-height: 28px;
}

.h-23 {
   font-weight: 700;
   font-size: 23px;
   line-height: 28px;
}

.h-24 {
   font-weight: 700;
   font-size: 24px;
   line-height: 28px;
}

.h-25 {
   font-weight: 700;
   font-size: 25px;
   line-height: 32px;
}

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

.h-28 {
   font-weight: 700;
   font-size: 28px;
   line-height: 36px;
}

.h-30 {
   font-weight: 700;
   font-size: 30px;
   line-height: 46px;
}

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

.h-36 {
   font-weight: 700;
   font-size: 36px;
   line-height: 52px;
}

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

   .h-17,
   .h-18,
   .h-20 {
      font-size: 16px;
      line-height: 24px;
   }

   .h-22,
   .h-23,
   .h-24,
   .h-25 {
      font-size: 18px;
   }

   .h-26,
   .h-32 {
      font-size: 26px;
      line-height: 36px;
   }
}

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

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 0px;
   width: 100%;
   max-width: 302px;
   height: 87px;
   color: #fff;
   background-color: #4A92C4;
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0;
   line-height: 26px;
   text-align: left;
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   position: relative;
   z-index: 1;
   transition: all 0.3s linear;
   border-radius: 50px;
}

.button a:before {
   content: '';
   border: 2px dashed #fff;
   position: absolute;
   top: 10px;
   right: 10px;
   bottom: 10px;
   left: 10px;
   border-radius: 50px;
}

.button a:after {
   content: '\f0a9';
   font-family: "Font Awesome 6 Free";
   font-size: 31px;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translate(0px, -50%);
   border-radius: 50%;
   transition: all 0.3s;
}

.button a:hover {
   background-color: #3B4043;
   opacity: 1;
}

.button a:hover:after {
   transform: translate(5px, -50%);
}

.button.orange a {
   background-color: #fff;
   color: #F08E1E;
}

.button.orange a:before {
   border-color: #F08E1E;
}

.button.orange a:hover {
   background-color: #3B4043;
   color: #fff;
}

.button.orange a:hover:before {
   border-color: #fff;
}

/* -- -- */
.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: #EE0000;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #F08D1D;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #FFE46F;
}

.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: 700;
}

.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-40 {
   border-radius: 40px;
}

.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: #F7F3EF;
}

.bg-cl02 {
   background: #F08E1E;
}

.bg-cl03 {
   background: #FED832;
}

/* -- -- */
.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);
}

/* -- --*/
.tb-style {
   font-size: 16px;
   line-height: 24px;
   position: relative;
}

.tb-style dl {
   display: grid;
   grid-template-columns: 185px 1fr;
   gap: 10px;
}

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

@media screen and (max-width: 767px) {
   .tb-style dl {
      grid-template-columns: 1fr;
   }
}

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

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

.swiper-button-next,
.swiper-button-prev {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   transition: all 0.3s;
   color: #F08E1E;
   font-size: 70px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   display: none;
}

.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: 31px;
      height: 31px;
      font-size: 31px;
   }
}

/* -- --*/
.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:before {
   content: '';
   width: 100%;
   height: 100%;
   background: no-repeat center / 100% auto;
   position: absolute;
   top: 0;
   left: 0;
}

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

.slick-prev {
   left: 0;
}

.slick-prev:before {
   transform: rotate(180deg);
}

.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: 14px;
   height: 17px;
   position: relative;
}

.slick-dots button {
   display: block;
   width: 100%;
   height: 100%;
   background: url("../img/common/dot.png") no-repeat center top/cover;
   border: 0;
   font-size: 0;
   transition: all 0.3s;
   cursor: pointer;
   border-radius: 6px;
}

.slick-dots .slick-active button,
.slick-dots li:hover button {
   background-image: url("../img/common/dot-active.png");
}

@media screen and (max-width: 767px) {
   .slick-dots li {
      width: 8px;
      height: 10px;
   }
}

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

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

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 60vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

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

/* -- --*/
.list-dot {
   font-size: 16px;
   line-height: 30px;
}

.list-dot li {
   position: relative;
   padding-left: 24px;
}

.list-dot li:before {
   content: '●';
   color: #EE0000;
   position: absolute;
   top: 0;
   left: 0;
}

/*=============================================*
 * Key
 *=============================================*/
#kv {
   background: url("../img/common/kv-bg.png") no-repeat center bottom/cover;
   padding-bottom: 120px;
}

#kv .page-title {
   position: absolute;
   top: 17.7%;
   right: 0;
   left: 0;
   z-index: 1;
}

#kv .page-title .txt-img {
   display: block;
   width: 27%;
   max-width: 320px;
   padding-bottom: 38px;
}

#kv .page-title .text {
   display: flex;
   align-items: center;
   gap: 15px;
}

#kv .page-title .text span {
   font-size: 18px;
   letter-spacing: 0.1em;
   text-transform: capitalize;
   position: relative;
   top: 4px;
}

#kv figure {
   width: 53%;
   max-width: 635px;
   margin-left: auto;
   padding-top: 45%;
   position: relative;
}

#kv figure img {
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 1023px) {
   #kv {
      background-position: center top;
      background-size: auto 114%;
      padding: 30px 0 30vw;
   }

   #kv .page-title {
      text-align: center;
      position: static;
   }

   #kv .page-title .txt-img {
      width: 40%;
      max-width: inherit;
      margin: 0 auto;
      padding-bottom: 20px;
   }

   #kv .page-title .text {
      justify-content: center;
      flex-wrap: wrap;
   }

   #kv .page-title .text span {
      font-size: 14px;
   }

   #kv figure {
      width: 100%;
      margin: 30px auto 0;
      padding-top: 85%;
   }
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   line-height: 20px;
   padding: 15px 0 120px;
}

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

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

.breadcrumbs .home a {
   display: block;
   width: 18px;
   height: 18px;
   background: url("../img/common/nav-icon-1.png") no-repeat center/cover;
   font-size: 0;
}

.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-bottom: 50px;
   }
}

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

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

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

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

   #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: '';
   background: url("../img/common/select-arrow.png") no-repeat center top/cover;
   width: 12px;
   height: 7px;
   position: absolute;
   top: 23px;
   right: 20px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #F2F2F2;
   border: 0px solid #F2F2F2;
   line-height: 32px;
   border-radius: 10px !important;
   padding: 10px 50px 9px 20px;
   cursor: pointer;
}

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

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #F2F2F2;
   border: 0px solid #F2F2F2;
   line-height: 32px;
   border-radius: 10px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 20px;
}

.wpcf7 textarea {
   height: 152px;
   resize: vertical;
   padding: 20px;
}

.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: #ccc;
}

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

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

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

.wpcf7-checkbox,
.wpcf7-radio {
   display: grid;
   grid-template-columns: 1fr;
   gap: 3px;
   line-height: 24px;
}

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

.wpcf7-checkbox input,
.wpcf7-radio input {
   display: none;
}

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

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

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

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

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

.file label {
   display: inline-block;
   min-width: 140px;
   border-radius: 10px;
   background-color: #fff;
   border: 1px solid #4D4D4D;
   position: relative;
   padding: 10px 10px;
   text-align: center;
   cursor: pointer;
}

.file input {
   display: none !important;
}

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

   .wpcf7 input:not([type="checkbox"], [type="radio"]),
   .wpcf7 textarea {
      padding: 9px 15px;
   }

   .wpcf7 .select select {
      padding: 9px 50px 9px 15px;
   }

   .wpcf7 textarea {
      height: 200px;
   }

   .wpcf7-checkbox {
      grid-template-columns: 1fr;
   }

   .wpcf7-checkbox .wpcf7-list-item-label {
      gap: 10px;
   }
}

.mailform {
   position: relative;
}

.mailform h2 {
   padding-bottom: 80px;
}

.mailform h2 img {
   max-width: 41px;
   padding-bottom: 15px;
}

.mailform .form-wrap {
   background-color: #fff;
   border: 6px solid #F08E1E;
   border-radius: 40px;
   padding: 70px 90px 100px;
}

.mailform .form-row {
   display: grid;
   grid-template-columns: 275px 1fr;
   align-items: flex-start;
   gap: 0;
   padding-bottom: 35px;
}

.mailform .form-row .caption {
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 11px 0;
}

.mailform .form-row .caption span {
   width: 40px;
   color: #fff;
   font-weight: 500;
   font-size: 13px;
   line-height: 20px;
   text-align: center;
   border-radius: 5px;
}

.mailform .form-row .caption span.none {
   background: #4D4D4D;
}

.mailform .form-row .caption .required {
   background: #F08E1E;
}

.mailform .form-row .input .note {
   line-height: 25px;
   padding-top: 10px;
}

.mailform .form-pp {
   padding: 25px 0 0 275px;
}

.mailform .form-pp a:hover {
   text-decoration: underline;
}

.mailform .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

.mailform .form-btn {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
   padding-top: 120px;
}

.mailform .form-btn p {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 0px;
   width: 100%;
   max-width: 302px;
   height: 87px;
   color: #fff;
   background-color: #4A92C4;
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0;
   line-height: 26px;
   text-align: left;
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   position: relative;
   z-index: 1;
   transition: all 0.3s linear;
   border-radius: 50px;
}

.mailform .form-btn p:before {
   content: '';
   border: 2px dashed #fff;
   position: absolute;
   top: 10px;
   right: 10px;
   bottom: 10px;
   left: 10px;
   border-radius: 50px;
}

.mailform .form-btn p:after {
   content: '\f0a9';
   font-family: "Font Awesome 6 Free";
   font-size: 31px;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translate(0px, -50%);
   border-radius: 50%;
   transition: all 0.3s;
}

.mailform .form-btn p:hover {
   background-color: #000;
}

.mailform .form-btn input,
.mailform .form-btn a {
   width: 100%;
   height: 100%;
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
   cursor: pointer;
}

.mailform .form-btn .btn-prev {
   background-color: #000;
   color: #fff;
}

.mailform .wpcf7-spinner {
   display: none;
}

.mailform.confirm .form-row .caption {
   padding: 0;
}

@media screen and (max-width: 1023px) {
   .mailform .form-wrap {
      padding: 70px 30px;
   }
}

@media screen and (max-width: 767px) {
   .mailform h2 {
      padding-bottom: 40px;
   }

   .mailform .form-wrap {
      border-width: 4px;
      padding: 30px 20px;
   }

   .mailform .form-row {
      grid-template-columns: 1fr;
      gap: 10px;
   }

   .mailform .caption {
      gap: 10px;
      padding: 0;
   }

   .mailform .form-pp {
      padding: 0;
   }

   .mailform .form-btn {
      flex-direction: column;
      gap: 10px;
      padding-top: 30px;
   }
}

/* -- -- */
.mailform .thanks {
   text-align: center;
}

.mailform .thanks .txt p+p {
   padding-top: 30px;
}

.mailform .thanks .button {
   text-align: center;
   padding-top: 50px;
}

@media screen and (max-width: 767px) {
   .mailform .thanks .txt {
      text-align: justify;
   }

   .mailform .thanks .txt p+p {
      padding-top: 20px;
   }

   .mailform .thanks .button {
      padding-top: 40px;
   }
}