/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #000;
   font-family: "Zen Kaku Gothic New", sans-serif;
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
   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;
   padding: 0;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   width: 100%;
   position: sticky;
   top: 0;
}

header .logo {
   width: 20%;
   max-width: 340px;
   position: absolute;
   top: 50px;
   left: 2.6vw;
}

.hamburger {
   display: none;
   position: fixed;
   top: 27px;
   right: 20px;
   z-index: 101;
}

#navbar {
   font-weight: 700;
   font-size: 16px;
   line-height: 45px;
   position: absolute;
   top: 200px;
   left: 2.6vw;
   color: #fff;
   z-index: 1;
}

#navbar .nav-btn {
   display: none;
}

.mv {
   width: 100%;
   height: calc(100% - 160px);
   position: absolute;
   top: 0;
   left: 0;
   box-sizing: border-box;
}

.mv .in {
   width: 100%;
   height: 100vh;
   position: sticky;
   top: 0;
   left: 0;
   background: url("../img/index/mv-bg.jpg") no-repeat center/cover;
}

.mv .in:before {
   content: '';
   width: 100%;
   height: 100%;
   background: url("../img/index/mv-deco.png") no-repeat center bottom/100% auto;
   position: absolute;
   top: 0;
   left: 0;
}

.mv-slider {
   width: 100%;
   position: absolute;
   bottom: 0;
   left: 0;
}

.mv-slider .swiper-wrapper {
   transition-timing-function: linear;
}

.mv-slider .swiper-slide {
   width: 1810px;
   margin-right: 90px;
}

.mv-btn {
   width: 305px;
   position: absolute;
   bottom: 145px;
   right: 7.8%;
   z-index: 1;
}

.mv-catch {
   display: flex;
   gap: 495px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.mv-catch ul {
   width: 380px;
}

.mv-catch ul li {
   width: 210px;
}

.mv-catch ul:nth-child(1) li:nth-child(1) {
   margin-bottom: -25px;
   margin-left: auto;
}

.mv-catch ul:nth-child(2) li:nth-child(1) {
   margin-bottom: -25px;
}

.mv-catch ul:nth-child(2) li:nth-child(2) {
   margin-left: auto;
}

@media screen and (max-height: 825px) {
   .mv-catch {
      top: calc(50% - 90px);
   }
}

@media screen and (max-width: 1600px) {
   .mv-catch {
      gap: 420px;
   }

   .mv-catch ul {
      width: 280px;
   }

   .mv-catch ul li {
      width: 180px;
   }

   .mv-btn {
      width: auto;
      right: 20px;
      left: calc(50% + 200px);
   }

   .mv-btn a {
      display: block;
      width: 90%;
      max-width: 305px;
      margin: 0 auto;
   }
}

@media screen and (max-width: 1300px) {
   .mv-catch ul {
      width: 240px;
   }

   .mv-catch ul li {
      width: 150px;
   }
}

@media screen and (max-width: 1200px) {
   .mv-catch {
      display: none;
   }
}

@media screen and (max-width: 1023px) {
   header {
      display: flex;
      align-items: center;
      height: 80px;
      position: relative;
      z-index: 100;
      padding: 0 20px;
      box-sizing: border-box;
   }

   header .logo {
      width: 222px;
      max-width: inherit;
      position: static;
   }

   .hamburger {
      display: block;
   }

   #navbar {
      display: grid;
      background: #009FE8;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      text-align: center;
      box-sizing: border-box;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear;
   }

   #navbar .in {
      margin: auto;
   }

   #navbar .nav-btn {
      display: block;
      width: 305px;
      margin: 0 auto;
      padding-top: 30px;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
   }

   .mv-btn {
      display: none;
   }
}

@media screen and (max-width: 480px) {
   header {
      height: auto;
   }

   header .logo {
      display: none;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer .logo {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #fff;
   max-width: 375px;
   height: 110px;
   margin: 0 auto;
}

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

footer address {
   background-color: #004DA0;
   font-weight: 600;
   color: #fff;
   padding: 13px 0;
}

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

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

.ft-fixed a {
   display: inline-block;
   max-width: 308px;
}

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

/* -- -- */
#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: 100px 0 0;
   box-sizing: border-box;
   z-index: 2;
}

section:after {
   content: '';
   border-right: 2px solid #fff;
   border-left: 2px solid #fff;
   position: absolute;
   top: 120px;
   right: 0;
   bottom: 0;
   left: 0;
}

@media screen and (max-width: 480px) {
   section {
      max-width: 100%;
      padding-top: 0;
   }

   section:after {
      top: 20px;
   }
}

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

/* -- -- */
.h-26 {
   font-weight: 900;
   font-size: 26px;
   line-height: 40px;
   letter-spacing: 0;
}

/* -- -- */
.cl-blue {
   color: #004DA0;
}

.txt-c {
   text-align: center;
}