@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #FAF8F4;
   color: #333;
   font-family: "Zen Maru Gothic", sans-serif;
   font-weight: 500;
   font-size: 16px;
   line-height: 32px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
   word-break: break-all;
}

.bg-fixed {
   background: url("../img/common/body-bg-img.jpg") no-repeat center/cover;
   width: 100%;
   height: 100vh;
   position: fixed;
   top: 0;
   left: 0;
   z-index: -1;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 13px;
      line-height: 20px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   align-items: center;
   width: 100%;
   height: 100px;
   background-color: #fff;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   transition: all 0.3s;
   padding: 0 50px;
}

header .logo {
   flex: 1 0 0;
}

header .logo a {
   display: block;
   width: 166px;
}

.hamburger {
   display: none;
}

header .btn-line_sp {
   display: none;
}

#navbar .nav {
   display: flex;
   align-items: center;
   gap: 30px;
   font-size: 16px;
   line-height: 24px;
   padding-top: 20px;
}

#navbar .nav a {
   display: block;
   border-bottom: 1px solid transparent;
}

#navbar .nav a:hover {
   border-bottom-color: #333;
}

#navbar .nav .btn-line a {
   background-color: #9F7563;
   color: #fff;
   border-radius: 50px;
   padding: 7px 17px;
   border-bottom: 0;
}

#navbar .nav .btn-line a:hover {
   background-color: #333;
   opacity: 1;
}

body.home header {
   background-color: transparent;
   transition: all 0.3s;
}

body.home header .logo {
   opacity: 0;
   transition: all 0.3s;
}

body.home header.fixed {
   background-color: #fff;
}

body.home header.fixed .logo {
   opacity: 1;
}

@media screen and (max-width: 1600px) {
   header {
      padding: 0 20px;
   }

   #navbar .nav {
      gap: 20px;
   }
}

@media screen and (max-width: 1440px) {
   #navbar .nav {
      gap: 15px;
      font-size: 14px;
   }
}

@media screen and (max-width: 1300px) {
   #navbar .nav {
      gap: 10px;
      font-size: 13px;
   }
}

@media screen and (max-width: 1200px) {
   header {
      gap: 20px;
      height: 70px;
   }

   header .logo a {
      width: 120px;
   }

   header .btn-line_sp {
      display: block;
   }

   header .btn-line_sp a {
      display: block;
      background-color: #9F7563;
      color: #fff;
      width: 148px;
      font-size: 16px;
      line-height: 24px;
      padding: 7px 10px;
      box-sizing: border-box;
      border-radius: 50px;
      text-align: center;
   }

   .hamburger {
      display: block;
   }

   #navbar {
      display: grid;
      background: url("../img/common/body-bg-img_sp.jpg") no-repeat center top/cover;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      box-sizing: border-box;
      overflow-y: auto;
      padding: 80px 30px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s linear;
   }

   #navbar .nav {
      display: flex;
      flex-direction: column;
      gap: 36px;
      font-size: 16px;
      margin: auto;
      padding-top: 0;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
   }
}

@media screen and (max-width: 767px) {
   header .btn-line_sp a {
      width: 116px;
      font-size: 13px;
      line-height: 19px;
      padding: 4px;
   }
}

@media screen and (min-width: 1201px) {
   #navbar {
      height: auto !important;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #030129;
   color: #fff;
}

footer .box {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 70px;
   padding-bottom: 60px;
}

footer .box .col {
   display: grid;
   grid-template-columns: 238px 190px;
   gap: 30px;
}

footer .box .col dt {
   padding: 15px 0;
}

footer .box .btn-line {
   text-align: center;
   padding-top: 20px;
}

footer .box .btn-line a {
   display: inline-block;
   width: 148px;
   background-color: #9F7563;
   color: #fff;
   line-height: 24px;
   border-radius: 50px;
   padding: 7px;
   border-bottom: 0;
   box-sizing: border-box;
}

footer nav {
   border-top: 1px solid #fff;
   border-bottom: 1px solid #fff;
   font-size: 14px;
   line-height: 20px;
   padding: 24px 20px;
}

footer nav ul {
   display: flex;
   justify-content: space-between;
   gap: 10px;
}

footer address {
   font-size: 17px;
   padding: 20px 0;
}

@media screen and (max-width: 1023px) {
   footer .box {
      flex-direction: column;
      gap: 24px;
   }

   footer .box .txt {
      text-align: center;
   }

   footer nav ul {
      flex-direction: column;
      align-items: center;
      gap: 18px;
   }
}

@media screen and (max-width: 767px) {
   footer .box {
      padding-top: 50px;
      padding-bottom: 30px;
   }

   footer .box .txt {
      font-size: 12px;
      line-height: 24px;
   }

   footer .box .col {
      grid-template-columns: 160px 100px;
      gap: 20px;
   }

   footer .box .btn-line {
      padding-top: 10px;
   }

   footer .box .btn-line a {
      width: 116px;
      font-size: 13px;
      line-height: 19px;
      padding: 4px 0;
   }

   footer nav {
      font-size: 13px;
      line-height: 20px;
      padding: 20px 30px;
   }

   footer address {
      font-size: 13px;
      line-height: 16px;
      padding: 20px 0;
   }
}

/* -- -- */
#pagetop {
   width: 50px;
   position: absolute;
   bottom: calc(100% + 65px);
   right: 0px;
   opacity: 1;
   visibility: visible;
   z-index: 9;
   transition: all 0.3s;
}

#pagetop:hover {
   transform: translateY(-10px);
}

#pagetop.visible {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   #pagetop {
      width: 40px;
      bottom: calc(100% + 55px);
      right: 10px;
   }
}

/* -- -- */
.ft-fixed {
   position: fixed;
   z-index: 9;
   transition: 0.5s;
   opacity: 0;
   visibility: hidden;
}

.ft-fixed a {
   display: flex;
   align-items: center;
   background-color: #EE0000;
   border: 3px solid #fff;
   border-right: 0;
   box-sizing: border-box;
   padding: 0 20px;
   border-radius: 50px 0 0 50px;
}

.ft-fixed a:hover {
   background-color: #000;
   opacity: 1;
}

.ft-fixed.fixed {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   .ft-fixed {
      bottom: 10px;
      right: 0;
   }

   .ft-fixed a {
      width: 200px;
      height: 55px;
   }

   .ft-fixed a img {
      max-width: 150px;
   }
}

@media screen and (min-width: 768px) {
   .ft-fixed {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
   }

   .ft-fixed a {
      width: 236px;
      height: 69px;
   }

   .ft-fixed a img {
      max-width: 166px;
   }
}

/*=============================================
 * <section>
 *=============================================*/
section {
   box-sizing: border-box;
}

/* Animation */
/*全共通*/
.slide-in {
   overflow: hidden;
   display: inline-block;
}

.slide-in_inner {
   display: inline-block;
}

.leftAnime {
   opacity: 0;
}

.slideAnimeLeftRight {
   animation-name: slideTextX100;
   animation-duration: 0.8s;
   animation-fill-mode: forwards;
   opacity: 0;
}

@keyframes slideTextX100 {
   from {
      transform: translateX(-100%);
      opacity: 0;
   }

   to {
      transform: translateX(0);
      opacity: 1;
   }
}

.slideAnimeRightLeft {
   animation-name: slideTextX-100;
   animation-duration: 0.8s;
   animation-fill-mode: forwards;
   opacity: 0;
}

@keyframes slideTextX-100 {
   from {
      transform: translateX(100%);
      opacity: 0;
   }

   to {
      transform: translateX(0);
      opacity: 1;
   }
}

.delay-1 {
   animation-delay: 0.2s;
}

.delay-2 {
   animation-delay: 0.4s;
}

.delay-3 {
   animation-delay: 0.6s;
}

.delay-4 {
   animation-delay: 0.8s;
}

.delay-5 {
   animation-delay: 1s;
}

/* -- -- */
.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-family: "Zen Old Mincho", serif;
   font-weight: 600;
   font-size: 20px;
   line-height: 30px;
   letter-spacing: 0;
}

.h2 .en {
   display: block;
   font-family: "Allura", cursive;
   font-weight: 400;
   font-size: 74px;
   letter-spacing: 0.05em;
   line-height: 92px;
   text-transform: capitalize;
   padding-top: 2px;
}

.h-18 {
   font-weight: 600;
   font-size: 18px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-20 {
   font-weight: 600;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-22 {
   font-weight: 600;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-23 {
   font-weight: 600;
   font-size: 23px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-24 {
   font-weight: 600;
   font-size: 24px;
   letter-spacing: 0;
   line-height: 35px;
}

.h-25 {
   font-weight: 600;
   font-size: 25px;
   letter-spacing: 0;
   line-height: 35px;
}

.h-26 {
   font-weight: 600;
   font-size: 26px;
   letter-spacing: 0;
   line-height: 36px;
}

.h-28 {
   font-weight: 600;
   font-size: 28px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-30 {
   font-weight: 600;
   font-size: 30px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-32 {
   font-weight: 600;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-36 {
   font-weight: 600;
   font-size: 36px;
   letter-spacing: 0;
   line-height: 52px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 16px;
      line-height: 24px;
   }

   .h2 .en {
      font-size: 50px;
      line-height: 63px;
   }

   .h-17,
   .h-18,
   .h-20 {
      font-size: 16px;
      line-height: 26px;
   }

   .h-22,
   .h-23,
   .h-24,
   .h-25 {
      font-size: 18px;
      line-height: 26px;
   }

   .h-26,
   .h-28 {
      font-size: 20px;
      line-height: 30px;
   }

   .h-30,
   .h-32 {
      font-size: 22px;
      line-height: 32px;
   }

   .h-36,
   .h-38 {
      font-size: 24px;
      line-height: 32px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 0;
   width: 280px;
   height: 60px;
   background-color: #07045B;
   color: #fff;
   font-family: "Allura", cursive;
   font-weight: 400;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 30px;
   text-align: center;
   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: '';
   width: 100%;
   height: 100%;
   background-color: #EA96A3;
   position: absolute;
   top: 0;
   left: 0;
   transform: scale(0);
   transform-origin: center;
   transition: all 0.3s linear;
   z-index: -1;
   border-radius: 50px;
}

.button a:hover {
   opacity: 1;
}

.button a:hover:before {
   transform: scale(1);
}

@media screen and (max-width: 767px) {
   .button {
      text-align: center;
   }

   .button a {
      width: 240px;
      height: 40px;
      font-size: 20px;
   }

   .button a:before {
      display: none;
   }
}

/* -- -- */
.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: #07045B;
}

.cl-green {
   color: #2aa872;
}

.cl-red {
   color: #EE0000;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #e9850c;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #facf02;
}

.cl-grey {
   color: #AFAFAF;
}

.cl-brown {
   color: #9F7563;
}

.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-l {
   font-weight: 300;
}

.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-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;
}

.w1000 {
   max-width: 1000px;
   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-color: #FAF8F4;
}

/* -- -- */
.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 {
   position: relative;
}

.tb-style dl {
   display: grid;
   grid-template-columns: 150px 1fr;
   gap: 20px;
   border-bottom: 1px solid #9F7563;
   padding-bottom: 20px;
}

.tb-style dl dt {
   color: #9F7563;
}

.tb-style dl+dl {
   padding-top: 24px;
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      grid-template-columns: 1fr;
      gap: 10px;
      padding-bottom: 15px;
   }

   .tb-style dl+dl {
      padding-top: 20px;
   }
}

/* -- -- */
.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: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: 10px;
}

.slick-dots li {
   width: 48px;
   height: 6px;
   position: relative;
}

.slick-dots button {
   display: block;
   width: 100%;
   height: 100%;
   background-color: #A7A7A7;
   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-color: #fff;
}

/* -- --*/
.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 {
   position: relative;
   padding: 126px 0 61px;
   border-bottom: 1px solid #333;
}

#kv:after {
   content: '';
   width: 360px;
   height: 388px;
   background: url("../img/common/kv-photo.png") no-repeat center top/100% auto;
   position: absolute;
   bottom: -140px;
   right: 0;
}

#kv .page-title {
   position: relative;
   z-index: 1;
}

@media screen and (max-width: 1200px) {
   #kv:after {
      width: 300px;
      height: 328px;
   }
}

@media screen and (max-width: 1023px) {
   #kv:after {
      width: 200px;
      height: 218px;
      bottom: -20px;
   }
}

@media screen and (max-width: 767px) {
   #kv {
      padding: 20vw 0 10vw;
   }

   #kv:after {
      width: 25vw;
      height: 27vw;
   }
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   line-height: 24px;
   padding: 10px 0 190px;
}

.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: 16px;
   height: 24px;
   background: url("../img/common/icon-home.png") no-repeat center/100% auto;
   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
 *=============================================*/
body.error404 #kv:after {
   display: none;
}

#content-404 {
   text-align: center;
   padding: 140px 0 100px;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 50px 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 #ccc;
   line-height: 30px;
   border-radius: 0px !important;
   padding: 10px 35px 9px 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 #BABABA;
   line-height: 24px;
   border-radius: 4px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 13px 20px;
}

.wpcf7 textarea {
   height: 240px;
   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: #CDD6DD;
}

.wpcf7 ::-moz-placeholder {
   color: #CDD6DD;
}

.wpcf7 :-ms-input-placeholder {
   color: #CDD6DD;
}

.wpcf7 :-moz-placeholder {
   color: #CDD6DD;
}

.wpcf7-checkbox {
   display: grid;
   grid-template-columns: 1fr;
   gap: 10px 20px;
   font-size: 16px;
   line-height: 24px;
}

.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: 16px 1fr;
   align-items: center;
   gap: 6px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after {
   content: '';
   width: 16px;
   height: 16px;
   background-color: #fff;
   border: 1px solid #707070;
   grid-area: 1/1;
   position: relative;
   top: 2px;
   border-radius: 2px;
   cursor: pointer;
   box-sizing: border-box;
}

.wpcf7-checkbox .wpcf7-list-item-label:after {
   background-color: #707070;
   display: none;
   width: 12px;
   height: 12px;
   top: 2px;
   left: 2px;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 12px;
   line-height: 20px;
}

.wpcf7-spinner {
   display: none !important;
}

.wpcf7 .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
   background-color: #fff;
   border: 1px solid #CCCCCC;
   border-radius: 4px;
   padding: 6px 20px;
}

*::selection {
   background-color: #07045B;
   color: #fff;
}