@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #272727;
   font-family: "Zen Kaku Gothic New", sans-serif;
   font-weight: 700;
   font-size: 16px;
   line-height: 30px;
   letter-spacing: 0.02em;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   word-break: break-word;
}

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

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

/* =============================================
 * Custom
*=============================================*/
.h-17 {
   font-weight: 700;
   font-size: 17px;
   line-height: 1.5;
}

.h-18 {
   font-weight: 700;
   font-size: 18px;
   line-height: 1.5;
}

.h-19 {
   font-weight: 700;
   font-size: 19px;
   line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

.h-40 {
   font-weight: 700;
   font-size: 40px;
   line-height: 1.5;
}

.h-42 {
   font-weight: 700;
   font-size: 42px;
   line-height: 1.5;
}

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

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

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

   .h-23,
   .h-24 {
      font-size: 20px;
   }

   .h-26 {
      font-size: 22px;
   }

   .h-28,
   .h-30 {
      font-size: 24px;
   }

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

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

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 272px;
   height: 71px;
   border-radius: 50px;
   background-color: #DE3E2D;
   color: #fff;
   font-size: 16px;
   box-sizing: border-box;
   position: relative;
   padding-bottom: 2px;
   transition: all 0.3s linear;
}

.button a:after {
   content: '';
   width: 12px;
   height: 10px;
   background: url("../img/common/arrow-right-wh.svg") no-repeat center/100% auto;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translate(0, -50%);
   transition: all 0.3s;
}

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

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

.button a.line {
   background-color: #0F8633;
}

.button a.line:hover {
   background-color: #000;
}

.button a.wh {
   background-color: #fff;
   color: #DE3E2D;
}

.button a.wh:after {
   background-image: url("../img/common/arrow-right.svg");
}

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

.button a.wh:hover:after {
   background-image: url("../img/common/arrow-right-wh.svg");
}

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

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

.cl-blue {
   color: #1471CA;
}

.cl-green {
   color: #0F6CA7;
}

.cl-red {
   color: #D43331;
}

.cl-yellow {
   color: #A77930;
}

.cl-black {
   color: #272727;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #DE3E2D;
}

.cl-pink {
   color: #BF7A77;
}

.udl01 {
   background-image: linear-gradient(#ECE484, #ECE484);
   background-size: 100% 7px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-400 {
   font-weight: 400;
}

.fw-500 {
   font-weight: 500;
}

.fw-700 {
   font-weight: 700;
}

.fw-900 {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

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

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }
}

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

.pt10 {
   padding-top: 10px;
}

.pt20 {
   padding-top: 20px;
}

.pt30 {
   padding-top: 30px;
}

.pt40 {
   padding-top: 40px;
}

.pt50 {
   padding-top: 50px;
}

.pt60 {
   padding-top: 60px;
}

.pt80 {
   padding-top: 80px;
}

.pt120 {
   padding-top: 120px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

.mt20 {
   margin-top: 20px;
}

.mt30 {
   margin-top: 30px;
}

.mt40 {
   margin-top: 30px;
}

.mt50 {
   margin-top: 50px;
}

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

   .pt30,
   .pt40 {
      padding-top: 20px;
   }

   .pt50,
   .pt60 {
      padding-top: 30px;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt120 {
      padding-top: 50px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100 {
      padding-bottom: 50px;
   }

   .pb120 {
      padding-bottom: 50px;
   }

   .pb200 {
      padding-bottom: 100px;
   }

   .mt30 {
      margin-top: 20px;
   }
}

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

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

/* -- -- */
.img-zoom,
.img-zoom figure {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-obj {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

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

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

/* -- --*/
.swiper-button-prev,
.swiper-button-next {
   width: 60px;
   height: 60px;
   position: static;
   margin-top: 0;
   transition: all 0.3s;
   filter: drop-shadow(0 -1px 7px rgba(0, 0, 0, 0.1));
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover {
   opacity: 0.7;
}

.swiper-button-prev {
   background: url("../img/common/slider-prev.png") no-repeat center top/cover;
}

.swiper-button-next {
   background: url("../img/common/slider-next.png") no-repeat center top/cover;
}

.swiper-pagination {
   display: flex;
   gap: 10px;
}

.swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background-color: #C7C7C7;
   border: 0;
   margin: 0;
   padding: 0;
   opacity: 1;
   box-sizing: border-box;
   transition: all 0.3s;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
   background-color: #1549AC;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next {
   margin-top: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
   width: auto;
   position: static;
}

.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
   width: 100%;
   height: 4px;
   background-color: #D9D9D9;
   border-radius: 0;
   position: relative;
   top: auto;
   right: auto;
   bottom: auto;
   left: auto;
}

.swiper-scrollbar-drag,
.swiper-scrollbar.swiper-scrollbar-horizontal-drag {
   background-color: #008570;
   border-radius: 0;
}

.slick-arrow {
   display: block;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background-color: #DE3E2D;
   position: relative;
   font-size: 0;
   font-size: 0;
   border: 0;
   cursor: pointer;
   transition: all 0.3s;
}

.slick-arrow:after {
   content: '';
   width: 100%;
   height: 100%;
   background: url("../img/common/arrow-right-wh.svg") no-repeat center/12px auto;
   position: absolute;
   top: 0;
   left: 0;
}

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

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

.slick-arrow.slick-disabled {
   pointer-events: none;
}

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

.slick-dots li {
   width: 12px;
   height: 12px;
}

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

.slick-dots .slick-active button,
.slick-dots button:hover {
   background-color: #1549AC;
}

.slider-nav {
   display: flex;
   align-items: center;
   gap: 15px;
}

.slider-nav .slick-dots {
   order: 1;
}

.slider-nav .slick-prev {
   order: 2;
   margin-left: 35px;
}

.slider-nav .slick-next {
   order: 3;
}

/* -- -- */
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
}

.tb-style dl:not(:last-child) {
   padding-bottom: 18px;
}

.tb-style dl dt,
.tb-style dl dd {
   display: table-cell;
   vertical-align: top;
   text-align: left;
   box-sizing: border-box;
}

.tb-style dl:not(:last-child) dt,
.tb-style dl:not(:last-child) dd {
   border-bottom: 2px solid;
   padding-bottom: 18px;
}

.tb-style dl dt {
   width: 140px;
   color: #DE3E2D;
   border-bottom-color: #DE3E2D !important;
}

.tb-style dl dd {
   font-weight: 500;
   border-bottom-color: #F8F6EF !important;
   padding-left: 215px;
}

@media screen and (max-width: 1023px) {
   .tb-style dl dd {
      padding-left: 40px;
   }
}

@media screen and (max-width: 767px) {
   .tb-style dl dt {
      width: 80px;
   }

   .tb-style dl dd {
      padding-left: 10px;
   }
}

/* -- -- */
.box-qa .item:not(:last-child) {
   padding-bottom: 100px;
}

.box-qa .txt-q {
   line-height: 40px;
   position: relative;
   pointer-events: none;
   padding-left: 48px;
}

.box-qa .txt-q:before {
   content: '';
   width: 40px;
   height: 40px;
   background: url("../img/common/icon-q.png") no-repeat center top/cover;
   position: absolute;
   top: 0;
   left: 0;
}

.box-qa .txt-a {
   padding-top: 24px;
}

@media screen and (max-width: 767px) {
   .box-qa .item:not(:last-child) {
      padding-bottom: 30px;
   }

   .box-qa .txt-q {
      font-size: 20px;
      line-height: 30px;
   }

   .box-qa .txt-a {
      padding-top: 16px;
   }
}

/* -- -- */
.ovh {
   overflow: hidden;
}

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

header .logo {
   flex: 1 0 0;
   padding: 10px 0 0 20px;
}

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

#navbar {
   background-color: #fff;
   border-radius: 50px;
   padding: 12px 15px 12px 30px;
}

#navbar .nav-wrap {
   display: flex;
   align-items: center;
   gap: 35px;
}

#navbar .nav-list {
   display: flex;
   align-items: center;
   gap: 48px;
   position: relative;
   top: -2px;
}

#navbar .nav-list a {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   position: relative;
}

#navbar .nav-list a:before {
   content: '';
   display: block;
   width: 8px;
   height: 8px;
   background-color: #DE3E2D;
   border-radius: 50%;
   opacity: 0;
   transition: all 0.3s;
}

#navbar .nav-list a:hover,
#navbar .nav-list a.current {
   opacity: 1;
}

#navbar .nav-list a:hover:before,
#navbar .nav-list a.current:before {
   opacity: 1;
}

#navbar .nav-btn {
   display: flex;
   align-items: center;
   gap: 12px;
}

#navbar .nav-btn a {
   width: 174px;
   height: 46px;
}

.hamburger {
   display: none;
}

@media screen and (max-width: 1300px) {
   #navbar .nav-list {
      gap: 30px;
   }
}

@media screen and (max-width: 1200px) {
   header {
      gap: 15px;
   }

   header .logo {
      padding: 0;
   }

   #navbar .nav-wrap {
      gap: 15px;
   }

   #navbar .nav-list {
      gap: 15px;
      font-size: 14px;
   }

   #navbar .nav-btn a {
      width: 160px;
   }

   #navbar .nav-btn a:after {
      right: 15px;
   }
}

@media screen and (max-width: 1023px) {
   header {
      align-items: center;
      background-color: #fff;
      height: 73px;
      padding: 0 15px 0 6px;
      position: sticky;
   }

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

   .hamburger {
      display: block;
   }

   #navbar {
      display: grid;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      box-sizing: border-box;
      overflow-y: auto;
      transition: all 0.3s linear;
      opacity: 0;
      visibility: hidden;
      padding: 90px 0px;
      z-index: -1;
      border-radius: 0;
   }

   #navbar .nav-wrap {
      justify-content: center;
      flex-wrap: wrap;
      gap: 50px 0;
      margin: auto;
   }

   #navbar .nav-list {
      flex-direction: column;
      gap: 30px;
      width: 100%;
      font-size: 18px;
      padding-right: 0;
   }

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

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

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #DE3E2D;
   color: #fff;
   border-radius: 40px 40px 0 0;
   padding: 70px 0 30px;
}

footer .box {
   display: grid;
   grid-template-columns: 150px 1fr;
   gap: 40px;
}

footer nav {
   display: flex;
   justify-content: space-between;
   padding-top: 20px;
}

footer nav .nav-list {
   display: flex;
   gap: 60px;
}

footer nav .nav-list a {
   display: inline-block;
   position: relative;
   border-bottom: 1px solid;
}

footer nav .nav-list a:not(:hover, .current) {
   border-bottom-color: transparent;
}

footer nav .nav-list a[href="#"] {
   pointer-events: none;
}

footer nav .nav-list ul {
   font-weight: 400;
   font-size: 12px;
   line-height: 20px;
   letter-spacing: 0;
   padding-top: 12px;
}

footer nav .nav-list ul a {
   padding-left: 12px;
}

footer nav .nav-list ul a:before {
   content: '・';
   position: absolute;
   top: 0;
   left: 0;
}

footer nav .button li+li {
   padding-top: 15px;
}

footer nav .button a {
   width: 217px;
}

footer .txt-pp {
   text-align: right;
   font-weight: 400;
   font-size: 12px;
   line-height: 20px;
   letter-spacing: 0;
   padding: 60px 0 10px;
}

footer .txt-pp a {
   border-bottom: 1px solid;
}

footer .txt-pp a:not(:hover) {
   border-bottom-color: transparent;
}

footer hr {
   border-bottom: 1px solid #fff;
}

footer address {
   font-weight: 400;
   font-size: 12px;
   line-height: 20px;
   letter-spacing: 0;
   text-align: left;
   padding-top: 10px;
}

@media screen and (max-width: 1440px) {
   footer nav .nav-list {
      gap: 40px;
   }
}

@media screen and (max-width: 1200px) {
   footer nav .nav-list {
      gap: 20px;
      font-size: 16px;
   }
}

@media screen and (max-width: 1023px) {
   footer .logo {
      width: 200px;
   }

   footer .box {
      display: flex;
      flex-direction: column;
      align-items: center;
   }

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

   footer nav .nav-list {
      gap: 40px;
      font-size: 18px;
   }

   footer nav .button {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }

   footer nav .button li+li {
      padding-top: 0;
   }

   footer nav .button a {
      width: 100%;
   }
}

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

   footer .box {
      gap: 30px;
   }

   footer .logo {
      width: 150px;
   }

   footer nav {
      width: 100%;
      gap: 35px;
   }

   footer nav .nav-list {
      flex-direction: column;
      gap: 24px;
   }

   footer nav .nav-list ul {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 5px;
   }

   footer nav .button {
      gap: 5px;
   }

   footer nav .button a {
      height: 50px;
      font-size: 14px;
   }

   footer .txt-pp {
      padding: 30px 0 10px;
   }

   footer address {
      text-align: center;
      padding-top: 20px;
   }
}

@media screen and (max-width: 429px) {
   footer nav .button a {
      font-size: 12px;
   }
}

/*=============================================
 * 
 *=============================================*/
.ft-fixed {
   width: 27%;
   max-width: 500px;
   position: fixed;
   bottom: 0px;
   right: 0;
   z-index: 90;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s;
}

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

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

@media screen and (max-width: 1023px) {
   .ft-fixed {
      width: 50%;
   }
}

@media screen and (max-width: 767px) {
   .ft-fixed {
      width: 70%;
   }
}

/*=============================================
 * footer common 
 *=============================================*/
#delivery {
   margin-top: 200px;
}

#delivery .row {
   background-color: #0F8633;
   color: #fff;
   border-radius: 40px 40px 0 0;
   padding: 48px 0;
}

#delivery .wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 45px;
}

#delivery figure {
   width: 455px;
}

#delivery .txt {
   display: grid;
   grid-template-columns: 154px 1fr;
   align-items: center;
   gap: 20px;
   padding-top: 25px;
}

#delivery .txt span {
   background-color: #DE3E2D;
   font-size: 19px;
   border-radius: 40px;
   text-align: center;
   padding: 7px 0;
}

#delivery .note {
   padding-top: 10px;
}

body.home #delivery,
.page-id-154 #delivery {
   background-color: #F8F6EF;
   margin-top: 0;
}

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

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

   #delivery .row {
      background-color: transparent;
      padding: 0 0 40px;
      position: relative;
      border-radius: 0;
   }

   #delivery .row:before {
      content: '';
      width: 100%;
      height: auto;
      background-color: #0F8633;
      position: absolute;
      top: 10.7vw;
      bottom: 0;
      left: 0;
      border-radius: 40px 40px 0 0;
   }

   #delivery .wrap {
      gap: 10px;
   }

   #delivery figure {
      width: 74vw;
      margin-left: auto;
   }

   #delivery .col {
      width: 100%;
   }

   #delivery .txt {
      display: flex;
      flex-direction: column;
      gap: 15px;
   }

   #delivery .txt span {
      width: 134px;
      font-size: 16px;
   }

   #delivery .note {
      text-align: center;
      padding-top: 15px;
   }
}

@media screen and (max-width: 429px) {
   #delivery h2 {
      font-size: 23px;
   }
}

/* -- --*/
#recruit {
   overflow: hidden;
   padding: 150px 0 100px;
}

#recruit .box {
   display: flex;
   align-items: flex-start;
   gap: 70px;
}

#recruit .box .col {
   width: 50%;
   padding-top: 32px;
}

#recruit .box h2 span {
   display: inline-block;
}

#recruit .box h2 .img {
   max-width: 367px;
}

#recruit .box h2 .h-32 {
   padding-top: 25px;
}

#recruit .box h2 .h-26 {
   padding-top: 10px;
}

#recruit .box .txt {
   padding-top: 35px;
}

#recruit .box h3 {
   padding-top: 40px;
}

#recruit .box .button {
   display: flex;
   gap: 20px;
   padding-top: 40px;
}

#recruit .box figure {
   width: 530px;
   position: relative;
   padding-top: 6%;
}

#recruit .box figure figcaption {
   width: 127.5%;
   max-width: 674px;
   position: absolute;
   top: 0;
   left: -17%;
}

#recruit .slider {
   padding-top: 180px;
}

#recruit .slider .infiniteslide {
   display: flex;
   gap: 35px;
   width: max-content;
}

#recruit .slider figure {
   width: 455px;
}

#recruit .slider figure img {
   border-radius: 20px;
}

@media screen and (max-width: 1023px) {
   #recruit .box {
      flex-direction: column;
      align-items: center;
   }

   #recruit .box .col {
      width: 100%;
   }

   #recruit .box .button {
      justify-content: center;
   }
}

@media screen and (max-width: 767px) {
   #recruit {
      padding: 50px 0 75px;
   }

   #recruit .box {
      gap: 0;
   }

   #recruit .box .col {
      display: contents;
   }

   #recruit .box h2 {
      order: 1;
      padding-bottom: 20px;
   }

   #recruit .box h2 .img {
      max-width: 160px;
   }

   #recruit .box h2 .h-32 {
      font-size: 32px;
   }

   #recruit .box h2 .h-26 {
      font-size: 26px;
   }

   #recruit .box h3 {
      order: 4;
      padding-top: 25px;
   }

   #recruit .box .txt {
      order: 3;
   }

   #recruit .box .button {
      flex-direction: column;
      align-items: center;
      order: 5;
   }

   #recruit .box figure {
      width: 100%;
      order: 2;
      padding-top: 7.2vw;
   }

   #recruit .box figure figcaption {
      width: 123%;
      left: -6.8vw;
   }

   #recruit .slider {
      padding-top: 85px;
   }

   #recruit .slider .infiniteslide {
      gap: 23px;
   }

   #recruit .slider figure {
      width: 74vw;
   }
}

@media screen and (max-width: 429px) {
   #recruit .box h2 .h-32 {
      font-size: 28px;
   }

   #recruit .box h2 .h-26 {
      font-size: 22px;
   }
}

/*=============================================
 * KV
 *=============================================*/
#kv {
   display: flex;
   align-items: flex-end;
   width: 100%;
   height: 585px;
   position: relative;
   background-color: #F8F6EF;
   color: #fff;
   margin-bottom: 100px;
}

#kv:after {
   content: '';
   width: 100%;
   height: 40px;
   background-color: #fff;
   position: absolute;
   bottom: 0;
   left: 0;
   border-radius: 40px 40px 0 0;
}

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

.kv-title {
   padding-bottom: 110px;
}

.kv-title img {
   filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.3));
   max-height: 52px;
}

.kv-title span {
   display: block;
}

.kv-title .fnt-cavea {
   font-weight: 400;
   font-size: 70px;
   letter-spacing: 0;
   line-height: 1;
   text-transform: capitalize;
}

.kv-title .h-20 {
   padding-top: 5px;
}

@media screen and (max-width: 767px) {
   #kv {
      height: 250px;
      margin-bottom: 50px;
   }

   #kv:after {
      height: 20px;
      border-radius: 20px 20px 0 0;
   }

   .kv-title {
      padding-bottom: 50px;
   }

   .kv-title .fnt-cavea {
      font-size: 50px;
   }
}

/*=============================================
 * breadcrumbs
 *=============================================*/
.breadcrumbs {
   font-size: 12px;
   line-height: 18px;
   box-sizing: border-box;
   margin-bottom: 80px;
   padding: 20px 0px;
   text-transform: uppercase;
}

.breadcrumbs .wrap {
   background-color: #E8E8E8;
   overflow-x: auto;
   padding: 6px 10px;
}

.breadcrumbs ul {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
   width: max-content;
}

.breadcrumbs ul li {
   display: flex;
   align-items: center;
   gap: 5px;
   position: relative;
}

.breadcrumbs ul li+li:before {
   content: '/';
}

.breadcrumbs a {
   display: block;
}

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

.breadcrumbs span {
   word-break: break-all;
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      margin-bottom: 40px;
      padding: 10px;
   }
}

/* =============================================
 * 404
 *=============================================*/
.error404 .breadcrumbs {
   display: none;
}

#content-404 {
   padding: 0;
}

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

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

@media screen and (max-width: 767px) {
   #content-404 .wrap {
      text-align: justify;
   }

   #content-404 .txt {
      font-size: 14px;
      letter-spacing: 0;
      padding-top: 20px;
   }

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

/* =============================================
 * wpcf7
 *=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7-form-control-wrap {
   display: block;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 11px;
   height: 6px;
   background: url("../img/common/arrow-down.webp") no-repeat center top/cover;
   position: absolute;
   top: 16px;
   right: 20px;
}

.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 #fff;
   border-radius: 5px;
   font-weight: 500;
   line-height: 30px;
   padding: 4px 50px 4px 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 #fff;
   border-radius: 5px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 4px 15px;
   font-weight: 500;
   line-height: 30px;
}

.wpcf7 textarea {
   height: 200px;
   resize: vertical;
   padding: 15px;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-image: url("");
   background-position: top 13px right 20px;
   background-size: 17px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #C4C4C4;
   font-weight: 500;
}

.wpcf7 ::-moz-placeholder {
   color: #C4C4C4;
   font-weight: 500;
}

.wpcf7 :-ms-input-placeholder {
   color: #C4C4C4;
   font-weight: 500;
}

.wpcf7 :-moz-placeholder {
   color: #C4C4C4;
   font-weight: 500;
}

.wpcf7-checkbox,
.wpcf7-radio {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 15px 30px;
}

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

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

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
   display: grid;
   grid-template-columns: 16px 1fr;
   align-items: center;
   gap: 10px;
   cursor: pointer;
   position: relative;
   line-height: 16px;
}

.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after,
.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after {
   content: '';
   box-sizing: border-box;
}

.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:before {
   background-color: #fff;
   box-sizing: border-box;
   position: relative;
   border: 1px solid #191919;
   width: 16px;
   height: 16px;
   border-radius: 3px;
}

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

.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   border-radius: 50%;
}

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

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 12px;
   color: #E50012;
}

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

@media screen and (max-width: 767px) {
   .wpcf7 .select {
      width: 100%;
   }

   .wpcf7-checkbox,
   .wpcf7-radio {
      flex-direction: column;
      align-items: flex-start;
      flex-wrap: nowrap;
      gap: 10px;
   }
}

.disable {
   pointer-events: none;
}

.remodal-overlay {
   background: rgba(0, 0, 0, 0.9);
}
.remodal-wrapper {
   padding: 20px;
}
.popup-body {
   background-color: #fff;
   padding: 80px 20px;
}

button.remodal-close {
   width: 50px;
   height: 50px;
   background-color: #000;
   color: #fff;
   top: 0;
   right: 0;
   font-size: 20px;
   transition: all 0.3s;
}

button.remodal-close:hover {
   opacity: 0.7;
}