/*=============================================
 * body
 *=============================================*/
body {
   background: #1EA3E8;
   color: #3B4043;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 25px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
   word-break: break-all;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 14px;
   }
}

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

/*=============================================
 * <header>
 *=============================================*/
header {
   display: flex;
   justify-content: space-between;
   width: 100%;
   height: calc(100% - 80px);
   position: absolute;
   top: 0;
   left: 0;
}

header .logo {
   display: flex;
   justify-content: center;
   align-items: center;
   width: calc(50% - 185px);
   height: 100vh;
   background: url("../img/index/mv-bg-img.jpg") no-repeat center top/cover;
   position: sticky;
   top: 0;
   padding: 0 20px;
   box-sizing: border-box;
}

header .logo .in {
   width: 100%;
   max-width: 413px;
   margin-left: auto;
   text-align: center;
}

header .logo a {
   display: inline-block;
   max-width: 210px;
}

header .photo {
   display: flex;
   align-items: flex-end;
   width: calc(50% - 185px);
   height: 100vh;
   position: sticky;
   top: 0;
   right: 0;
   padding: 0 15px;
   box-sizing: border-box;
}

header .photo figure {
   width: 100%;
   max-width: 416px;
}

header .photo .btn-line {
   max-width: 416px;
   text-align: center;
   position: absolute;
   right: 25px;
   bottom: 10px;
   left: 25px;
}

header .photo .btn-line a {
   display: block;
   max-width: 308px;
   margin: 0 auto;
}

header .photo .btn-line a:not(:last-child) {
   margin-bottom: 10px;
}

.hamburger {
   position: fixed;
   top: 15px;
   right: 25px;
   z-index: 101;
}

#navbar {
   display: grid;
   background-color: #008AD7;
   color: #fff;
   width: 50vw;
   max-width: 250px;
   height: 100vh;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 100;
   box-sizing: border-box;
   padding: 80px 30px;
   transform: translateX(100%);
   transition: all 0.3s linear;
}

#navbar .nav {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin: auto;
}

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

#navbar .nav a span {
   display: block;
   font-weight: 500;
   font-size: 11px;
   line-height: 16px;
}

.site-menu-overlay {
   display: block;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   opacity: 0;
   background-color: rgba(51, 51, 51, 0.5);
   -webkit-backdrop-filter: blur(0px) brightness(85%);
   backdrop-filter: blur(0px) brightness(85%);
   pointer-events: none;
   transition-property: opacity, background-color, -webkit-backdrop-filter;
   transition-property: backdrop-filter, opacity, background-color;
   transition-property: backdrop-filter, opacity, background-color, -webkit-backdrop-filter;
   transition-duration: 600ms;
   transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
   cursor: pointer;
   z-index: 3;
}

.navOpen .site-menu-overlay {
   opacity: 1;
   pointer-events: all;
   -webkit-backdrop-filter: blur(5px) brightness(85%);
   backdrop-filter: blur(5px) brightness(85%);
}

.navOpen #navbar {
   transform: translateX(0);
}

@media screen and (max-width: 1023px) {
   header .photo {
      padding: 0 15px;
   }

   header .photo .btn-line {
      bottom: 0.5vw;
   }

   header .photo .btn-line a:not(:last-child) {
      margin-bottom: 0.5vw;
   }
}

@media screen and (max-width: 767px) {
   header {
      background-color: #fff;
      height: 70px;
      position: sticky;
      z-index: 100;
   }

   header .logo {
      width: auto;
      height: auto;
      background: transparent;
      position: relative;
   }

   header .logo a {
      max-width: 265px;
   }

   header .photo {
      display: none;
   }

   .hamburger {
      top: 23px;
      right: 20px;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 80px;
   background-color: #FFFAB8;
}

footer .logo {
   max-width: 261px;
}

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

.ft-fixed {
   display: none;
   position: fixed;
   right: 20px;
   bottom: 20px;
   left: 20px;
   text-align: center;
   z-index: 9;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s;
}

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

@media screen and (max-width: 767px) {
   .ft-fixed {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

/* -- -- */
#pagetop {
   width: 60px;
   position: fixed;
   bottom: 40px;
   right: 40px;
   transition: all 0.3s;
   opacity: 0;
   visibility: hidden;
   z-index: 9;
}

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

/*=============================================
 * <section>
 *=============================================*/
section {
   max-width: 375px;
   margin: 0 auto;
   padding: 0 0 64px;
   box-sizing: border-box;
   z-index: 2;
}

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

/* =============================================
 * Custom
*=============================================*/
/* 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-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;
}

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

/* -- -- */
.h2 {
   color: #6A6A6A;
   font-weight: 800;
   font-size: 14px;
   line-height: 24px;
   text-align: center;
}

.h2 img {
   display: block;
   height: 35px;
   margin: 0 auto;
}

.h-18 {
   font-weight: 500;
   font-size: 18px;
}

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

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

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

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

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

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

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

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

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

.h-38 {
   font-weight: 700;
   font-size: 38px;
}

.h-46 {
   font-weight: 700;
   font-size: 46px;
   line-height: 1.9;
   letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 12px;
   }

   .h2 .sub {
      margin-right: 20px;
   }

   .h2 h2 {
      font-size: 32px;
      padding-top: 0;
   }

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

   .h-22,
   .h-24,
   .h-25 {
      font-size: 18px;
      line-height: 32px;
   }

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

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

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

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

.button a {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 50px;
   text-align: center;
   border-radius: 50px;
   background-color: #FFDD46;
   color: #000;
   font-weight: 900;
   font-size: 20px;
   line-height: 20px;
   position: relative;
   z-index: 1;
   transition: all 0.3s;
   box-shadow: 0 5px 0 #DDDDDD;
}

.button a:after {
   content: '';
   width: 20px;
   height: 20px;
   background: url(../img/index/arrow-right.png) no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
}

.button a:hover {
   box-shadow: none;
   transform: translateY(5px);
   opacity: 1;
}

.button.fnt-noto-sans a {
   font-family: inherit;
   padding-top: 0;
}

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

   .button a {
      height: 50px;
      font-size: 16px;
   }
}

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

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

.cl-red {
   color: #BD3A43;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #FFA023;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #facf02;
}

.cl-grey {
   color: #AFAFAF;
}

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

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

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

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

.mb90 {
   margin-bottom: 90px;
}

.pt80 {
   padding-top: 80px;
}

.pt100 {
   padding-top: 100px;
}

.pt120 {
   padding-top: 120px;
}

.pt175 {
   padding-top: 175px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb175 {
   padding-bottom: 175px;
}

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

   .mb90 {
      margin-bottom: 20px;
   }

   .pt80 {
      padding-top: 40px;
   }

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

   .pt175 {
      padding-top: 80px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

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

   .pb175 {
      padding-bottom: 80px;
   }
}

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

.bg-cl02 {
   background-color: #606F74;
   color: #fff;
}

.bg-cl03 {
   background-color: #F4F4F4;
}

/* -- --*/
.tb-style {
   position: relative;
}

.tb-style dl {
   display: table;
   width: 100%;
   letter-spacing: 0.12em;
   word-break: auto-phrase;
}

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

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

.tb-style dl dt {
   width: 215px;
   font-weight: 400;
}

.tb-style dl dd {
   font-weight: 700;
}

@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: 70px;
   height: 70px;
   background: #AFB6B8;
   border: 0;
   font-size: 0;
   outline: 0;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   cursor: pointer;
   transition: all 0.3s;
   z-index: 1;
   border-radius: 50%;
}

.slick-arrow:before {
   content: '';
   width: 100%;
   height: 100%;
   background: no-repeat center / 23px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.slick-arrow:hover {
   background-color: #000;
}

.slick-prev {
   left: 0;
}

.slick-prev:before {
   background-image: url("../img/common/slider-prev.png");
}

.slick-next {
   right: 0;
}

.slick-next:before {
   background-image: url("../img/common/slider-next.png");
}

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

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

/*=============================================*
 * Key
 *=============================================*/
#kv {
   padding: 85px 5% 0;
}

#kv .page-title {
   color: #AFB6B8;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
}

#kv .page-title .en {
   color: #555;
   font-weight: 500;
   font-size: 64px;
   letter-spacing: 0.03em;
   text-transform: uppercase;
   padding-right: 60px;
}

#kv figure {
   padding-top: 45px;
}

@media screen and (max-width: 767px) {
   #kv {
      padding: 30px 20px 0;
   }

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

   #kv .page-title .en {
      display: block;
      font-size: 48px;
      line-height: 1.5;
      padding-right: 0;
   }

   #kv figure {
      height: 50vw;
      padding-top: 30px;
   }
}

/* -- --*/
.breadcrumbs {
   color: #555;
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 20px;
   position: absolute;
   bottom: 40px;
   left: 0;
}

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

.breadcrumbs ul li+li:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   width: 26px;
   border-top: 1px solid #d3d3d3;
   margin: 0 15px;
}

.breadcrumbs a {
   color: #2aa872;
}

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

@media screen and (max-width: 1023px) {
   .breadcrumbs {
      width: 100%;
      overflow-x: auto;
      padding: 5px 0;
   }

   .breadcrumbs ul {
      width: max-content;
   }

   .breadcrumbs {
      font-size: 14px;
      position: static;
   }

   .breadcrumbs ul li+li:before {
      content: '';
      width: 10px;
      margin: 0 5px;
   }
}

/*=============================================*
 * 404
 *=============================================*/
#content-404 {
   display: grid;
   min-height: 35vh;
   background-color: #fff;
   text-align: center;
   padding: 50px 0;
}

#content-404 .wrap {
   margin: auto;
}

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

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

/*=============================================*
* Form
*=============================================*/
.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/index/arrow-down.png") no-repeat center/100% auto;
   width: 11px;
   height: 6px;
   position: absolute;
   top: 22px;
   right: 10px;
}

.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: 5px !important;
   padding: 8px 30px 8px 10px;
   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;
   font-weight: 400;
   line-height: 32px;
   border-radius: 10px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 8px 10px;
}

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

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background: url("../img/common/icon-calendar.png") no-repeat top 20px right 12px/16px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 .wpcf7-radio {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
}

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

.wpcf7 .wpcf7-radio .wpcf7-list-item {
   margin: 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 12px 1fr;
   align-items: center;
   gap: 12px;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-radio .wpcf7-list-item-label:after {
   grid-area: 1/1;
   width: 12px;
   height: 12px;
   border: 1px solid #404040;
   border-radius: 50%;
   box-sizing: border-box;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label:after {
   background-color: #404040;
   display: none;
}

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

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

.wpcf7 .wpcf7-checkbox {
   display: flex;
   justify-content: center;
   align-items: center;
}

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

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
   margin: 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 12px 1fr;
   align-items: center;
   gap: 14px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label:after {
   grid-area: 1/1;
   width: 18px;
   height: 18px;
   border: 1px solid #404040;
   box-sizing: border-box;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label:before {
   border-radius: 2px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label:after {
   display: none;
   width: 6px;
   height: 12px;
   border: solid #FF8F8D;
   border-width: 0 3px 3px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   position: relative;
   left: 6px;
}

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

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

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

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