@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #000;
   font-family: "Montserrat", sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 32px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

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

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

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

header:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #fff;
   position: absolute;
   top: 0;
   left: 0;
}

header .logo {
   flex: 1 0 0;
}

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

.hamburger {
   display: none;
}

#navbar {
   display: flex;
   align-items: center;
   gap: 50px;
   font-size: 15px;
   line-height: 24px;
}

#navbar .nav {
   display: flex;
   gap: 20px;
   font-weight: 300;
}

#navbar .nav li {
   position: relative;
}

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

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

#navbar .list-sns li {
   width: 22px;
}

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

   #navbar {
      gap: 30px;
   }

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

@media screen and (max-width: 1199px) {
   header {
      gap: 10px;
      height: 80px;
      padding: 0 20px;
   }

   header .logo a {
      width: 180px;
   }

   header .list-sns {
      display: flex;
      gap: 10px;
   }

   header .list-sns li {
      width: 22px;
   }

   .hamburger {
      display: block;
   }

   #navbar {
      display: block;
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
      overflow-y: auto;
      background-color: #fff;
      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 .nav {
      flex-direction: column;
   }

   #navbar .nav>li>a {
      font-weight: 700;
   }

   #navbar .nav .sub-menu_main a {
      display: grid;
      grid-template-columns: 15px 1fr;
      align-items: center;
   }

   #navbar .nav .sub-menu_main a:before {
      content: '';
      width: 10px;
      height: 0;
      border-top: 1px solid #000;
   }

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

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

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

   #navbar {
      height: auto !important;
   }

   #navbar .nav>li>a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 117px;
      padding-top: 3px;
   }

   #navbar .nav .sub-menu:before {
      content: '';
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      transition: all 0.3s;
   }

   #navbar .nav .sub-menu .sub-menu_main {
      width: 100%;
      background-color: #fff4f3;
      position: fixed;
      top: 120px;
      left: 0;
      padding: 30px 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      transform: translateY(-10px);
   }

   #navbar .nav .sub-menu .sub-menu_main li {
      padding-bottom: 15px;
   }

   #navbar .nav .sub-menu .sub-menu_main li:last-child {
      padding-bottom: 0;
   }

   #navbar .nav .sub-menu:hover:before {
      opacity: 1;
   }

   #navbar .nav .sub-menu:hover .sub-menu_main {
      opacity: 1;
      visibility: visible;
      transform: translateY(0px);
   }
}

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

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #fff;
   border-top: 1px solid #ccc;
}

footer .wrap {
   display: flex;
   justify-content: space-between;
   gap: 20px;
   padding-top: 100px;
   padding-bottom: 100px;
}

footer .logo {
   width: 250px;
}

footer nav {
   font-weight: 300;
   font-size: 15px;
}

footer nav ul {
   display: flex;
   gap: 30px;
}

footer nav a {
   display: block;
}

footer nav a:hover,
footer nav a.current {
   color: #fc8a7b;
   opacity: 1;
}

footer address {
   background-color: #fcf6cc;
   padding: 10px 0 8px;
}

@media screen and (max-width: 1200px) {
   footer nav ul {
      gap: 20px;
   }
}

@media screen and (max-width: 1023px) {
   footer .wrap {
      flex-direction: column;
      align-items: center;
      gap: 50px;
   }
}

@media screen and (max-width: 767px) {
   footer {
      font-size: 14px;
      line-height: 20px;
   }

   footer .wrap {
      gap: 30px;
      padding-top: 50px;
      padding-bottom: 50px;
   }

   footer nav {
      width: 235px;
   }

   footer nav ul {
      flex-direction: column;
      gap: 20px;
   }

   footer nav ol li {
      padding-top: 5px;
   }
}

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

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

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

.ft-fixed a {
   display: flex;
   align-items: center;
   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 */
.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: 800;
   font-size: 18px;
   line-height: 30px;
}

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

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

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

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

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

.h-40 {
   font-family: "EB Garamond", serif;
   font-weight: 700;
   font-size: 40px;
   line-height: 52px;
   letter-spacing: 0;
}

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

   .h2 span {
      padding-top: 10px;
   }

   .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-40 {
      font-size: 26px;
      line-height: 42px;
   }
}

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

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 0px;
   width: 100%;
   max-width: 430px;
   height: 95px;
   color: #2F2E2E;
   background-color: #FFC8A2;
   font-weight: 700;
   font-size: 16px;
   letter-spacing: 0.05em;
   line-height: 32px;
   text-align: center;
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   position: relative;
   z-index: 1;
   transition: all 0.3s ease;
   border-radius: 60px;
}

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

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

   .button a {
      max-width: 280px;
      height: 60px;
   }
}

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

.bg-cl02 {
   background-color: #fff4f3;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
   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%;
   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: 8px;
   height: 15px;
   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: url("../img/common/arrow-rignt.svg") no-repeat center/100% auto;
   position: absolute;
   top: 0;
   left: 0;
}

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

.slick-prev {
   left: 0;
}

.slick-next {
   right: 0;
}

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

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

.slick-dots {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

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

.slick-dots button {
   display: block;
   width: 100%;
   height: 100%;
   background-color: transparent;
   border: 2px solid #000;
   font-size: 0;
   transition: all 0.3s;
   cursor: pointer;
   border-radius: 50%;
}

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

/* -- --*/
.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 {
   border-top: 1px solid #ccc;
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   line-height: 20px;
   padding: 10px 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 a:hover {
   text-decoration: underline;
}

.page-id-13 .breadcrumbs {
   padding-bottom: 10px;
}

@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 {
      font-size: 14px;
      position: relative;
      padding-bottom: 50px;
   }
}

/*=============================================*
 * 404
 *=============================================*/
#content-404 {
   display: flex;
   align-items: center;
   min-height: calc(100vh - 632px);
   text-align: center;
   padding: 50px 0;
   border-bottom: 1px solid #ccc;
}

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

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

@media screen and (max-width: 767px) {
   #content-404 {
      min-height: auto;
   }

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

/*=============================================*
* お問い合わせ
*=============================================*/
.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 #000;
   line-height: 30px;
   border-radius: 0px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 5px 20px;
}

.wpcf7 textarea {
   height: 150px;
   resize: vertical;
   padding: 10px 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;
}

/*=============================================*
* Mailform
*=============================================*/
.mailform {
   position: relative;
}

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

.mailform .form-btn {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

.mailform .form-btn p {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 40px;
   background: #fc8a7b;
   color: #fff;
   font-weight: 300;
   font-size: 15px;
   letter-spacing: 0;
   line-height: 28px;
   text-transform: uppercase;
   text-align: center;
   box-sizing: border-box;
   margin: 0;
   padding: 2px 0 0;
   position: relative;
   z-index: 1;
   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: #ccc;
   color: #000;
}

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

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

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

@media screen and (max-width: 767px) {
   .mailform .caption {
      gap: 10px;
      padding: 0;
   }
}

/* -- -- */
#thanks .txt {
   padding-top: 30px;
}

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

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

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

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

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

.grecaptcha-badge {
   display: none !important;
}