/*=============================================
 * body
 *=============================================*/
body {
   background-color: #fff;
   color: #000;
   font-family: 'Gothic MB101 Pro', "Noto Sans JP", sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 28px;
   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 {
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   padding: 40px 0 0;
}

header .logo {
   width: 240px;
}

#navbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   background-color: #fff;
   width: 100%;
   height: 100vh;
   position: fixed;
   top: 0;
   left: 0;
   z-index: -1;
   box-sizing: border-box;
   overflow-y: auto;
   padding: 50px;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s linear;
}

#navbar ul {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}

#navbar a {
   display: block;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 0.1em;
   line-height: 36px;
   border-bottom: 1px solid transparent;
}

#navbar a:hover {
   border-bottom-color: #000;
}

.navOpen #navbar {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   header {
      padding: 20px 0 0;
   }

   header .logo {
      width: 160px;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #624c2f;
   color: #fff;
   padding: 40px 0;
}

footer .wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 10px;
}

footer .logo {
   width: 240px;
}

footer .gmap {
   width: 330px;
   height: 170px;
   min-height: inherit;
   margin-top: 20px;
   transition: all 0.3s;
   cursor: pointer;
}

footer .gmap>* {
   display: block;
   width: 100%;
   height: 100%;
}

footer .gmap:hover {
   opacity: 0.7;
}

footer .txt {
   line-height: 24px;
   letter-spacing: 0.1em;
   padding-top: 15px;
}

footer .txt code {
   display: inline-block;
   padding-left: 30px;
}

footer nav a {
   display: block;
   font-weight: 500;
   line-height: 36px;
   letter-spacing: 0.1em;
}

footer .banner a {
   display: block;
}

footer .banner ul li+li {
   padding-top: 30px;
}

footer .banner ul a {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 300px;
   height: 100px;
   background-color: #fff;
   font-weight: 500;
   line-height: 22px;
   letter-spacing: 0.1em;
   text-align: center;
   color: #624c2f;
}

footer .banner ul a:hover {
   background-color: #426c13;
   color: #fff;
   opacity: 1;
}

footer .banner p {
   padding-top: 30px;
}

footer .banner p a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 180px;
   height: 50px;
   background-color: #75b224;
   color: #fff;
   font-weight: 600;
   font-size: 15px;
   letter-spacing: 0.1em;
   border-radius: 10px;
   margin-left: auto;
}

footer .banner p a i {
   background: url("../image/common/apply-icon.png") no-repeat center top/cover;
   width: 17px;
   height: 14px;
}

footer .banner p a:hover {
   background-color: #426c13;
   opacity: 1;
}

footer address {
   font-weight: 400;
   font-size: 14px;
   line-height: 20px;
   letter-spacing: 0.05em;
   text-align: center;
   padding: 50px 0 0;
}

@media screen and (max-width: 1200px) {
   footer .txt {
      font-size: 14px;
   }
}

@media screen and (max-width: 991px) {
   footer .wrap {
      gap: 50px 10px;
   }

   footer .col {
      width: 100%;
   }

   footer .logo {
      margin: 0 auto;
   }

   footer .gmap {
      width: 100%;
      height: 400px;
   }

   footer .txt {
      text-align: center;
   }
}

@media screen and (max-width: 767px) {
   footer .wrap {
      gap: 30px;
   }

   footer .logo {
      width: 200px;
   }

   footer .gmap {
      height: 70vw;
   }

   footer .txt code {
      display: block;
      padding-left: 0;
   }

   footer nav {
      width: 100%;
      text-align: center;
   }

   footer .banner {
      width: 100%;
   }

   footer .banner ul li+li {
      padding-top: 20px;
   }

   footer .banner ul a {
      width: 100%;
   }

   footer .banner p {
      padding-top: 20px;
   }

   footer .banner p a {
      margin: 0 auto;
   }

   footer address {
      font-size: 12px;
      padding-top: 30px;
   }
}

/*=============================================
 * <section>
 *=============================================*/
#kv {
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   width: 100%;
   height: 400px;
   color: #fff;
   position: relative;
}

#kv:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   position: absolute;
   top: 0;
   left: 0;
}

#kv h1,
#kv h2 {
   letter-spacing: 0.21em;
   position: relative;
   z-index: 1;
}

#kv.news {
   background: url("../image/news/key.jpg") no-repeat center top/cover;
}

#kv.requirements {
   background: url("../image/requirements/key.jpg") no-repeat center top/cover;
}

#kv.welfare {
   background: url("../image/welfare/key.jpg") no-repeat center top/cover;
}

#kv.training {
   background: url("../image/training/key.jpg") no-repeat center top/cover;
}

#kv.apply {
   background: url("../image/apply/key.jpg") no-repeat center top/cover;
}

#kv.contact {
   background: url("../image/contact/key.jpg") no-repeat center top/cover;
}

@media screen and (max-width: 767px) {
   #kv {
      height: 150px;
      padding-top: 50px;
   }
}

/*
 * Animation
*=============================================*/
.fadeInUp {
   will-change: transform, animation;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s 0.6s ease-out;
}

.fadeInUp[style*="visible"] {
   opacity: 1;
   transform: translate(0px, 0px);
}

/* -- -- */
.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-20 {
   font-weight: 500;
   font-size: 20px;
   letter-spacing: 0.1em;
   line-height: 35px;
}

.h-22 {
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0.1em;
   line-height: 32px;
}

.h-23 {
   font-weight: 500;
   font-size: 23px;
   letter-spacing: 0;
   line-height: 34px;
}

.h-24 {
   font-weight: 600;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 36px;
}

.h-26 {
   font-weight: 600;
   font-size: 26px;
   letter-spacing: 0.1em;
   line-height: 55px;
}

.h-30 {
   font-weight: 600;
   font-size: 30px;
   letter-spacing: 0.1em;
   line-height: 36px;
}

.h-32 {
   font-weight: 600;
   font-size: 32px;
   letter-spacing: 0.1em;
   line-height: 50px;
}

.h-36 {
   font-weight: 600;
   font-size: 36px;
   letter-spacing: 0.1em;
   line-height: 48px;
}

.h-36 small {
   display: block;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
   .h-20 {
      font-size: 16px;
      line-height: 26px;
   }

   .h-22 {
      font-size: 18px;
      line-height: 26px;
   }

   .h-23,
   .h-24,
   .h-26 {
      font-size: 20px;
      line-height: 30px;
   }

   .h-26 .en {
      font-size: 14px;
   }

   .h-30,
   .h-32 {
      font-size: 22px;
      line-height: 32px;
   }

   .h-36 {
      font-size: 24px;
      line-height: 36px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-block;
   vertical-align: baseline;
   width: 245px;
   border-radius: 6px;
   background-color: #75b224;
   box-shadow: 0 6px 0 #426c13;
   color: #fff;
   font-weight: 600;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 42px;
   padding: 11px 0;
   text-align: center;
}

.button a:hover {
   transform: translateY(6px);
   box-shadow: none;
   opacity: 1;
}

@media screen and (max-width: 767px) {
   .button a {
      font-size: 20px;
      padding: 3px 0;
   }
}

/* -- -- */
.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: #01D555;
}

.cl-green {
   color: #75b224;
}

.cl-red {
   color: #BD3A43;
}

.cl-orange {
   color: #F9830B;
}

.cl-grey {
   color: #969696;
}

.cl-white {
   color: #fff;
}

.cl-brown {
   color: #624c2f;
}

.udl01 {
   background-image: linear-gradient(#AE0615, #AE0615);
   background-size: 100% 17px;
   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-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

/* -- --*/
.w600 {
   width: 100%;
   max-width: 600px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

.w800 {
   width: 100%;
   max-width: 800px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

.w900 {
   width: 100%;
   max-width: 900px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

.w1000 {
   width: 100%;
   max-width: 1000px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

/* -- --*/
.section_pd {
   padding: 150px 0;
}

@media screen and (max-width: 767px) {
   .section_pd {
      padding: 60px 0;
   }
}

/* -- --*/
.bg-cl01 {
   background-color: rgba(240, 240, 230, 0.5);
}

.bg-cl02 {
   background-color: #7A504C;
   color: #fff;
}

/* -- -- */
.img-zoom {
   display: block;
   overflow: hidden;
}

.img-zoom>* {
   transform: scale(1, 1);
   transition: all 0.3s ease;
}

.img-zoom:hover>* {
   transform: scale(1.05, 1.05);
}

/* -- -- */
.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;
}

/* -- -- */
.box-img {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 76px;
   position: relative;
}

.box-img .photo {
   width: calc(50% + 32px);
}

.box-img .col {
   width: calc(50% - 108px);
}

.box-img .txt {
   line-height: 40px;
   padding-top: 45px;
}

.box-img .txt p+p {
   padding-top: 45px;
}

.box-img.img-r {
   flex-direction: row-reverse;
}

@media screen and (max-width: 991px) {
   .box-img {
      display: block;
   }

   .box-img .photo {
      width: 100%;
      text-align: center;
   }

   .box-img .col {
      width: 100%;
      margin-left: 0;
      padding-top: 20px;
   }

   .box-img .txt {
      line-height: 30px;
      padding-top: 15px;
   }

   .box-img .txt p+p {
      padding-top: 15px;
   }

   .box-img.img_r .photo {
      margin-left: 0;
   }
}

/* -- --*/
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   letter-spacing: 0.05em;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: middle;
   padding-bottom: 30px;
}

.tb-style dl+dl>* {
   padding-top: 30px;
}

.tb-style dl dt {
   width: 260px;
   font-weight: 600;
   font-size: 18px;
   border-bottom: 1px solid #cacaca;
   position: relative;
   padding-left: 10px;
}

.tb-style dl dd {
   border-bottom: 1px solid #cacaca;
   padding-left: 10px;
}

.tb-style dl dd p {
   padding-bottom: 20px;
}

.tb-style dl dd p:last-child {
   padding-bottom: 0;
}

@media screen and (max-width: 767px) {
   .tb-style dl>* {
      padding-bottom: 15px;
   }

   .tb-style dl+dl>* {
      padding-top: 15px;
   }

   .tb-style dl dt {
      width: 110px;
      font-size: 15px;
      padding-left: 0;
   }

   .tb-style dl dd p {
      padding-bottom: 20px;
   }

   .tb-style dl dd p:last-child {
      padding-bottom: 0;
   }
}

/* -- -- */
.swiper-container {
   overflow: hidden;
   position: relative;
}

.swiper-fade .swiper-slide>* {
   opacity: 0;
}

.swiper-fade .swiper-slide-active>* {
   opacity: 1;
}

/* -- --*/
.d-flex {
   display: flex;
   flex-wrap: wrap;
}

/* -- --*/
.scroll {
   letter-spacing: 0.3em;
   line-height: 20px;
}

.scroll p {
   margin: 0 auto;
   padding-bottom: 145px;
   position: relative;
   cursor: pointer;
}

.scroll .txt-latin {
   letter-spacing: inherit;
   cursor: pointer;
}

.scroll .border {
   width: 1px;
   height: 125px;
   position: absolute;
   bottom: 0;
   left: 50%;
}

.scroll .border:after {
   content: "";
   width: 100%;
   height: 100%;
   border-left: 1px solid;
   -webkit-animation: sdb05 2s infinite;
   animation: sdb05 2s infinite;
   position: absolute;
   top: 0;
   left: 0;
}

@-webkit-keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}

@keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}