@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #F6F4EE;
   color: #000;
   font-family: "Zen Kaku Gothic New", sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 22px;
   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;
   width: 100%;
   height: 120px;
   background-color: #F6F4EE;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   transition: all 0.3s;
   padding: 0 85px 0 105px;
}

header .logo {
   flex: 1 0 0;
}

header .logo a {
   display: block;
   width: 177px;
}

.hamburger {
   display: none;
}

#navbar .nav {
   display: flex;
   align-items: center;
   gap: 75px;
   font-weight: 400;
   font-size: 12px;
   line-height: 22px;
}

#navbar .nav a {
   display: block;
   text-align: center;
}

#navbar .nav a .en {
   display: block;
   font-family: "BIZ UDPMincho", serif;
   font-size: 22px;
}

#navbar .nav .btn-inq {
   background-color: #795634;
   color: #fff;
   width: 148px;
   border-radius: 10px;
   padding: 6px 0 4px;
}

#navbar .list-sns {
   display: none;
}

@media screen and (max-width: 1440px) {
   header {
      padding: 0 50px;
   }

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

@media screen and (max-width: 1200px) {
   header {
      padding: 0 30px;
   }

   #navbar .nav {
      gap: 30px;
   }
}

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

   header .logo {
      gap: 10px;
      padding-left: 0;
   }

   header .logo a {
      width: 120px;
   }

   header .logo a.parent {
      width: 100px;
   }

   .hamburger {
      display: block;
   }

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

   .navbar__wrap {
      margin: auto;
   }

   #navbar .nav {
      flex-direction: column;
   }

   #navbar .list-sns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding-top: 50px;
   }

   #navbar .list-sns dt {
      display: flex;
      align-items: center;
      gap: 10px;
   }

   #navbar .list-sns dt:after {
      content: '';
      display: block;
      width: 30px;
      height: 0;
      border-top: 1px solid #000;
   }

   #navbar .list-sns dd {
      display: flex;
      gap: 10px;
   }

   #navbar .list-sns dd a {
      display: block;
      width: 38px;
   }

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

@media screen and (min-width: 1023px) {
   #navbar {
      height: auto !important;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #DECBBC;
   padding: 45px 0 15px;
}

footer .wrap {
   display: flex;
   flex-wrap: wrap;
}

footer .logo {
   display: flex;
   align-items: center;
   gap: 20px;
   width: 100%;
   padding-bottom: 10px;
}

footer .logo:after {
   content: "";
   border-top: 1px solid #000;
   flex: 1 0 0;
}

footer .logo a {
   display: block;
   width: 339px;
}

footer .col {
   flex: 1 0 0;
}

footer .txt>* {
   padding-bottom: 10px;
}

footer .txt>*:last-child {
   padding-bottom: 0;
}

footer .txt dl {
   display: grid;
   grid-template-columns: 70px 1fr;
}

footer .txt .icon {
   width: 26px;
}

footer nav {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px 50px;
   padding-right: 60px;
}

footer nav a {
   display: block;
   font-size: 12px;
}

footer nav a .en {
   display: block;
   font-family: "BIZ UDPMincho", serif;
   font-size: 22px;
}

footer nav a small {
   font-size: 10px;
}

footer .foot-url {
   font-size: 12px;
   padding-top: 60px;
}

footer address {
   font-size: 12px;
   padding-top: 6px;
   position: relative;
   z-index: 1;
}

@media screen and (max-width: 1023px) {
   footer nav {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media screen and (max-width: 767px) {
   footer .wrap {
      flex-direction: column;
      flex-wrap: nowrap;
   }

   footer .logo a {
      width: 250px;
   }

   footer nav {
      gap: 20px;
      padding-top: 30px;
   }
}

/* -- -- */
#pagetop {
   width: 50px;
   position: fixed;
   bottom: 10px;
   right: 15px;
   z-index: 9;
   transition: all 0.3s;
   &:hover {
      transform: translateY(-10px);
   }
}

#pagetop.visible {
   opacity: 1;
   visibility: visible;
}

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

/* -- -- */
.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 */
@keyframes blur {
   from {
      filter: blur(50px);
      transform: scale(0.9);
   }

   to {
      filter: blur(0);
      transform: scale(1);
   }
}

.fade-blur {}

.fade-blur[style*="visible"] {
   animation: blur 1.3s forwards;
}

/* -- -- */
.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: 400;
   font-size: 52px;
   line-height: 52px;
   letter-spacing: 0;
}

.h2 .en {
   display: block;
   font-family: "BIZ UDPMincho", serif;
   font-weight: 700;
   font-size: 16px;
   line-height: 22px;
   text-transform: capitalize;
   padding-bottom: 25px;
}

.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: 28px;
   letter-spacing: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

   .h2 .en {
      font-size: 14px;
      padding-bottom: 5px;
   }

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

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

   .h-26,
   .h-28 {
      font-size: 20px;
   }

   .h-30,
   .h-32 {
      font-size: 22px;
   }

   .h-36,
   .h-38 {
      font-size: 24px;
   }

   .h-42,
   .h-52 {
      font-size: 26px;
      line-height: 48px;
   }
}

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

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
   font-family: "BIZ UDPMincho", serif;
   font-weight: 400;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 24px;
   text-align: left;
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   position: relative;
   z-index: 1;
   transition: all 0.3s linear;
}

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

.button a:hover:after {
   transform: translateX(10px);
}

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

   .button a {
      gap: 15px;
      font-size: 16px;
   }

   .button a:after {
      width: 40px;
      height: 40px;
   }
}

/* -- -- */
.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: #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-l {
   font-weight: 300;
}

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

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

/* -- -- */
.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: 185px 1fr;
   gap: 10px;
   border-bottom: 1px solid #000;
   padding-bottom: 30px;
}

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

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

   .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 {
   display: flex;
   align-items: flex-end;
   gap: 45px;
   position: relative;
   margin-bottom: 120px;
   padding: 60px 0 0 30px;
}

#kv .kv-img,
#kv .slider-ani-1 {
   width: calc(50% + 275px);
}

#kv .kv-img img,
#kv .slider-ani-1 .slide-item {
   border-radius: 50px 0 0 50px;
}

#kv .page-title {
   display: flex;
   justify-content: flex-end;
   width: calc(50% - 230px);
   font-weight: 500;
   font-size: 46px;
   letter-spacing: 0.05em;
   line-height: 46px;
}

#kv .page-title .en {
   display: block;
   font-weight: 400;
   font-size: 26px;
   text-transform: capitalize;
   padding-bottom: 10px;
}

@media screen and (max-width: 1640px) {
   #kv .page-title {
      width: 535px;
   }

   #kv .kv-img,
   #kv .slider-ani-1 {
      width: calc(100% - 580px);
      height: 533px;
   }
}

@media screen and (max-width: 991px) {
   #kv {
      flex-direction: column;
      padding-left: 0;
   }

   #kv .page-title {
      justify-content: flex-start;
      width: 100%;
      max-width: 720px;
   }

   #kv .kv-img,
   #kv .slider-ani-1 {
      width: 100%;
      height: auto;
   }

   #kv .kv-img img,
   #kv .slider-ani-1 .slide-item {
      border-radius: 50px;
   }
}

@media screen and (max-width: 767px) {
   #kv {
      gap: 20px;
      margin-bottom: 50px;
      padding-top: 20px;
   }

   #kv .page-title {
      font-size: 26px;
      line-height: 36px;
      padding: 0 20px;
      box-sizing: border-box;
   }

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

   #kv .kv-img img,
   #kv .slider-ani-1 .slide-item {
      border-radius: 20px;
   }
}

/* -- --*/
.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: 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 #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: 30px;
   border-radius: 0px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 20px 9px;
}

.wpcf7 textarea {
   height: 290px;
   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: #6A6A6A;
}

.wpcf7 ::-moz-placeholder {
   color: #6A6A6A;
}

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

.wpcf7 :-moz-placeholder {
   color: #6A6A6A;
}

.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: 12px 1fr;
   align-items: center;
   gap: 10px;
   cursor: pointer;
}

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

.wpcf7-checkbox .wpcf7-list-item-label:after {
   background-color: #707070;
   display: none;
   width: 8px;
   height: 8px;
   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;
}

@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;
   }
}

/*=============================================*
* 
*=============================================*/
.slider-ani-1 {
   position: relative;

   .slick-list,
   .slick-track,
   .slick-slide {
      width: 100%;
      height: 100%;
   }

   .slick-slide {
      overflow: hidden;
   }

   .slick-slide img {
      -webkit-animation-duration: 6s;
      animation-duration: 6s;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      -webkit-animation-iteration-count: 1;
      animation-iteration-count: 1;
      transform: scale(1.2);
   }

   .slick-slide.first-slide .slide-image {
      -webkit-animation-duration: 6.5s;
      animation-duration: 6.5s;
   }

   .slick-slide.slick-current img {
      -webkit-animation-name: showKvImage;
      animation-name: showKvImage;
   }
}

@-webkit-keyframes showKvImage {
   0% {
      -webkit-transform: scale(1) rotate(0.001deg);
      transform: scale(1) rotate(0.001deg);
      outline: 1px solid transparent;
   }

   100% {
      -webkit-transform: scale(1.2) rotate(0.001deg);
      transform: scale(1.2) rotate(0.001deg);
   }
}

@keyframes showKvImage {
   0% {
      -webkit-transform: scale(1) rotate(0.001deg);
      transform: scale(1) rotate(0.001deg);
      outline: 1px solid transparent;
   }

   100% {
      -webkit-transform: scale(1.2) rotate(0.001deg);
      transform: scale(1.2) rotate(0.001deg);
   }
}