@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #333;
   font-family: "Noto Sans JP", 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: 28px;
   }
}

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

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

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

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

.header__box {
   display: flex;
   align-items: center;
   gap: 20px;
   position: absolute;
   top: 15px;
   right: 350px;
}

.header__lang .gtranslate_wrapper {
   display: grid;
   grid-template-columns: repeat(3, 45px);
   gap: 10px;
}

.header__lang a.glink img {
   display: block;
   opacity: 1;
   margin-right: 0;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.header__lang a.glink:hover {
   opacity: 0.7;
}

.header__tel a {
   display: inline-block;
   background: url("../img/common/icon-tel.png") no-repeat center left/17px auto;
   font-weight: 700;
   font-size: 18px;
   line-height: 26px;
   text-decoration: underline;
   padding-left: 20px;
}

.header__tel a i {
   display: none;
}

.navbar {
   display: flex;
   align-items: flex-end;
}

.navbar__tel {
   display: none;
}

.navbar ul {
   display: flex;
   align-items: center;
}

.navbar__nav {
   font-weight: 700;
   font-size: 18px;
   line-height: 26px;
}

.navbar__nav li+li {
   border-left: 1px solid #767676;
}

.navbar__nav a {
   display: block;
   padding: 12px 10px;
}

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

.navbar__btn li {
   width: 170px;
   position: relative;
}

.navbar__btn .note {
   width: 100%;
   font-size: 16px;
   line-height: 1;
   position: absolute;
   bottom: 100%;
   left: 0;
   text-align: center;
   padding-bottom: 10px;
}

.navbar__btn a {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: 110px;
   text-align: center;
   color: #fff;
}

.navbar__btn a span {
   font-size: 26px;
}

.navbar__btn a.blue {
   background-color: #019FE9;
}

.navbar__btn a.orange {
   background-color: #FF7700;
}

.navbar__btn a.green {
   background-color: #03d301;
   font-size: 20px;
}

.hamburger {
   display: none;
}

@media screen and (max-width: 1700px) {
   .header__box {
      right: 330px;
   }

   .navbar__nav {
      font-size: 16px;
   }

   .navbar__btn {
      font-size: 20px;
   }

   .navbar__btn li {
      width: 160px;
   }

   .navbar__btn a span {
      font-size: 24px;
   }
}

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

   .header__box {
      right: 330px;
   }

   .navbar__nav {
      font-size: 14px;
   }

   .navbar__btn {
      font-size: 16px;
   }

   .navbar__btn li {
      width: 130px;
   }

   .navbar__btn a span {
      font-size: 20px;
   }
}

@media screen and (max-width: 1199px) {
   header {
      gap: 10px;
      height: 100px;
   }

   header .logo {
      padding-right: 0;
   }

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

   .header__box {
      gap: 10px;
      position: static;
   }

   .header__lang {
      gap: 10px;
   }

   .header__tel a {
      display: block;
      background: #019FE9;
      width: 45px;
      height: 35px;
      font-size: 0;
      border-radius: 5px;
      padding-left: 0;
   }

   .header__tel a i {
      display: block;
      background: url("../img/common/icon-tel-white.png") no-repeat center/20px auto;
      width: 100%;
      height: 100%;
   }

   .navbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
      height: 100vh;
      background-color: #fff;
      overflow-y: auto;
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      padding: 120px 50px;
      transition: all 0.3s linear;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      z-index: -1;
   }

   .navbar__nav {
      flex-direction: column;
      width: 100%;
   }

   .navbar__nav li {
      width: 100%;
      border-bottom: 1px solid #767676;
   }

   .navbar__nav li+li {
      border-left: 0;
   }

   .navbar__btn {
      width: 100%;
      padding-top: 40px;
   }

   .navbar__btn li {
      width: 50%;
   }

   .navbar__btn li.sp {
      display: block;
   }

   .hamburger {
      display: flex;
   }

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

@media screen and (max-width: 767px) {
   .header__lang .gtranslate_wrapper {
      grid-template-columns: repeat(3, 25px);
      gap: 5px;
   }

   .navbar {
      padding: 100px 20px;
   }

   .navbar__tel {
      display: block;
   }

   .navbar__tel a {
      display: inline-block;
      background: url("../img/common/icon-tel.png") no-repeat center left/17px auto;
      font-weight: 700;
      font-size: 20px;
      line-height: 26px;
      text-decoration: underline;
      padding-left: 20px;
   }

   .navbar__nav {
      padding-top: 20px;
   }

   .navbar__btn {
      flex-wrap: wrap;
      gap: 5px 0;
   }

   .navbar__btn li {
      width: 50%;
   }

   .navbar__btn a {
      height: 80px;
   }
}

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

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #0A3368;
   color: #fff;
   padding: 200px 110px 10px;
}

footer .wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   max-width: 100%;
}

footer .logo {
   background-color: #fff;
   width: 435px;
   padding: 20px 30px;
   box-sizing: border-box;
}

footer .txt {
   font-weight: 700;
   line-height: 26px;
   padding-top: 30px;
}

footer .txt a {
   text-decoration: underline;
}

footer .txt a:hover {
   text-decoration: none;
}

footer .txt p+p {
   padding-top: 10px;
}

footer .txt ul li {
   padding-top: 10px;
}

footer .txt ul li a {
   text-decoration: none;
}

footer .txt ul li a:hover {
   text-decoration: underline;
}

footer nav {
   display: flex;
   justify-content: space-between;
   gap: 20px;
   max-width: 610px;
}

footer nav .nav {
   font-weight: 900;
}

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

footer nav .nav-btn {
   width: 180px;
}

footer nav .nav-btn li+li {
   padding-top: 45px;
}

footer nav .nav-btn a {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 67px;
   color: #fff;
   font-weight: 700;
   font-size: 18px;
   line-height: 20px;
   text-align: center;
   border-radius: 100px;
}

footer nav .nav-btn a.blue {
   background-color: #019FE9;
}

footer nav .nav-btn a.orange {
   background-color: #FF7700;
}

footer nav .nav-btn a.white {
   background-color: #fff;
   color: #0C00AF;
   font-size: 16px;
}

footer nav .nav-sns {
   display: flex;
   justify-content: center;
   gap: 30px;
   font-size: 20px;
   line-height: 32px;
   text-align: center;
   padding-top: 20px;
}

footer nav .nav-sns a {
   display: block;
   width: 43px;
}

footer nav .nav-sns a img {
   padding-top: 10px;
}

footer address {
   font-weight: 400;
   font-size: 14px;
   line-height: 22px;
   padding-top: 156px;
}

@media screen and (max-width: 1440px) {
   footer {
      padding-right: 20px;
      padding-left: 20px;
   }
}

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

   footer nav {
      width: 435px;
   }
}

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

   footer .logo {
      width: 100%;
      max-width: 435px;
      padding: 10px;
      text-align: center;
   }

   footer nav {
      flex-direction: column;
      width: 100%;
   }

   footer nav .nav {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      text-align: center;
      gap: 15px;
   }

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

   footer nav .nav-btn {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
   }

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

   footer nav .nav-btn a {
      border-radius: 0;
      font-size: 14px;
   }

   footer nav .nav-btn a.white {
      font-size: 14px;
   }

   footer address {
      font-size: 12px;
      padding-top: 50px;
   }
}

/* -- -- */
#pagetop {
   width: 24px;
   position: fixed;
   right: 50px;
   bottom: 52px;
   z-index: 9;
   opacity: 0;
   visibility: hidden;
}

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

@media screen and (max-width: 1023px) {
   #pagetop {
      width: 15px;
      right: 10px;
   }
}

@media screen and (max-width: 767px) {
   #pagetop {
      bottom: 40px;
   }
}

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

.ft-fixed a {
   display: flex;
   align-items: center;
   gap: 10px;
   box-shadow: -3px 3px 11px rgba(0, 0, 0, 0.35);
}

.ft-fixed .building {
   background-color: #a5e1dc;
}

.ft-fixed .doc {
   background-color: #fcc570;
}

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

/*=============================================
 * <section>
 *=============================================*/
section {
   box-sizing: border-box;
}

/* Animation */
.fadeUp {
   animation-duration: 0.8s;
   animation-fill-mode: forwards;
   opacity: 0;
}

.fadeUp[style*="visible"] {
   animation-name: fadeUpAnime;
   opacity: 1;
}

@keyframes fadeUpAnime {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.fadeLeft {
   animation-duration: 1.2s;
   animation-fill-mode: forwards;
   opacity: 0;
}

.fadeLeft[style*="visible"] {
   animation-name: fadeLeftAnime;
   opacity: 1;
}

@keyframes fadeLeftAnime {
   from {
      opacity: 0;
      transform: translateX(-30px);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

/* =============================================
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   letter-spacing: 0;
   line-height: 1;
   text-align: center;
   padding-top: 100px;
   position: relative;
}

.h2 .en {
   width: max-content;
   font-weight: 900;
   font-size: 117px;
   color: #E9F6FC;
   text-transform: uppercase;
   position: absolute;
   top: 0;
   left: 50%;
}

.h2 .en.center {
   transform: translateX(-50%);
}

.h2 .ja {
   display: inline-flex;
   background: url("../img/common/h2.png") no-repeat center left/48px auto;
   font-weight: 600;
   font-size: 60px;
   padding-left: 64px;
   position: relative;
}

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

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

.h-22 {
   font-weight: 700;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 32px;
}

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

.h-25 {
   font-weight: 700;
   font-size: 25px;
   letter-spacing: 0;
   line-height: 35px;
}

.h-26 {
   font-weight: 700;
   font-size: 26px;
   letter-spacing: 0;
   line-height: 36px;
}

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

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

.h-32 {
   font-weight: 700;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 45px;
}

.h-36 {
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
   line-height: 54px;
}

.h-40 {
   font-weight: 700;
   font-size: 40px;
   letter-spacing: 0;
   line-height: 62px;
}

@media screen and (max-width: 1200px) {
   .h2 .en {
      transform: translateX(-50%);
   }
}

@media screen and (max-width: 1023px) {
   .h2 {
      padding-top: 40px;
   }

   .h2 .en {
      font-size: 90px;
   }

   .h2 .ja {
      font-size: 50px;
      line-height: 1.5;
   }
}

@media screen and (max-width: 767px) {
   .h2 {
      padding-top: 30px;
   }

   .h2 .en {
      font-size: 60px;
   }

   .h2 .ja {
      background-size: 24px auto;
      font-size: 30px;
      padding-left: 30px;
   }

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

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

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

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

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

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

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   background-color: #24528E;
   color: #fff;
   width: 355px;
   font-weight: 700;
   font-size: 20px;
   line-height: 32px;
   border-radius: 50px;
   box-sizing: border-box;
   padding: 15px 0;
   text-align: center;
}

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

.button.orange a {
   background-color: #FF7E00;
}

.button.orange a:hover {
   background-color: #333;
}

.button-1 a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 306px;
   height: 66px;
   color: #002E71;
   background-color: #fff;
   border: 3px solid #345E9B;
   box-sizing: border-box;
   border-radius: 10px;
   text-align: center;
}

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

@media screen and (max-width: 767px) {
   .button a {
      width: 250px;
      font-size: 16px;
      padding: 9px 0;
   }

   .button-1 a {
      width: 250px;
      height: 50px;
   }
}

/* -- -- */
.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: #345E9B;
}

.cl-green {
   color: #4BA334;
}

.cl-red {
   color: #E50012;
}

.cl-white {
   color: #fff;
}

.cl-orange {
   color: #E85400;
}

.cl-pink {
   color: #D8005C;
}

.cl-yellow {
   color: #FFFF00;
}

.cl-grey {
   color: #AFAFAF;
}

.cl-brown {
   color: #A54700;
}

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

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

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

.clear {
   clear: both;
}

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

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

   .bdra-50 {
      border-radius: 25px;
   }

   .bdra-64 {
      border-radius: 32px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

/* -- --*/
.mt60 {
   margin-top: 60px;
}

.pt200 {
   padding-top: 90px;
}

.pb200 {
   padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
   .mt60 {
      margin-top: 40px;
   }

   .pt200 {
      padding-top: 100px;
   }

   .pb200 {
      padding-bottom: 100px;
   }
}

@media screen and (min-width: 768px) {
   .pb120_pc {
      padding-bottom: 120px;
   }
}

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

/* -- -- */
.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 {
   opacity: 1;
}

.img-zoom:hover>img,
.img-zoom:hover .img-obj {
   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;
}

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

.tb-style dl {
   display: grid;
   grid-template-columns: 100px 1fr;
   gap: 10px;
   border-top: 1px solid #345E9B;
   border-bottom: 1px solid #345E9B;
   padding: 18px 0;
}

.tb-style dl+dl {
   border-top: 0;
}

.tb-style dl dt {
   font-weight: 700;
   color: #345E9B;
}

@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: 17px;
   height: 28px;
   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: no-repeat center / 100% auto;
   position: absolute;
   top: 0;
   left: 0;
}

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

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

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

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

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

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

.slick-dots .slick-active button {
   background-color: #345E9B;
}

@media screen and (min-width: 1081px) {
   .slick-dots li button:hover {
      background-color: #345E9B;
   }
}

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

.img-obj {
   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;
}

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

/*=============================================*
 * Key
 *=============================================*/
#kv {
   background-color: #333;
   height: 400px;
   margin: 0 110px;
   position: relative;
}

.key-img {
   width: 100%;
   height: 100%;
   position: absolute;
   bottom: 0;
   left: 0;
}

#kv .page-title {
   display: flex;
   align-items: baseline;
   flex-wrap: wrap;
   gap: 0 12px;
   width: 42%;
   min-width: 720px;
   background-color: #fff;
   font-weight: 600;
   font-size: 20px;
   line-height: 30px;
   letter-spacing: 0;
   color: #94BBF4;
   position: absolute;
   bottom: 30px;
   right: 0;
   text-transform: uppercase;
}

#kv .page-title:before {
   content: '';
   width: 145px;
   height: 100%;
   background-color: #fff;
   position: absolute;
   top: 0;
   right: 100%;
   clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

#kv .page-title span {
   font-weight: 600;
   font-size: 40px;
   letter-spacing: 0;
   line-height: 58px;
   color: #345E9B;
}

@media screen and (max-width: 1440px) {
   #kv {
      margin: 0 20px;
   }
}

@media screen and (max-width: 1023px) {
   #kv .page-title {
      min-width: 550px;
   }
}

@media screen and (max-width: 767px) {
   #kv {
      height: 200px;
      margin: 0 0 25px;
   }

   #kv .page-title {
      gap: 0 5px;
      width: calc(100% - 60px);
      min-width: inherit;
      font-size: 15px;
      bottom: -25px;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
   }

   #kv .page-title:before {
      width: 50px;
   }

   #kv .page-title span {
      font-size: 30px;
      line-height: 45px;
   }
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   background-color: #fff;
   color: #000;
   font-weight: 500;
   font-size: 13px;
   line-height: 22px;
   position: relative;
   margin: 100px 0 2px;
   padding: 10px 0;
}

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

.breadcrumbs ul li+li:before {
   content: '›';
   display: inline-block;
   vertical-align: baseline;
   margin: 0 5px;
}

.breadcrumbs a {
   color: #009DFF;
}

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

@media screen and (max-width: 1023px) {
   .breadcrumbs .wrap {
      overflow-x: auto;
      overflow-y: hidden;
   }

   .breadcrumbs ul {
      width: max-content;
   }
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      font-size: 14px;
      position: relative;
      margin-top: 0;
   }
}

/*=============================================*
 * 404
 *=============================================*/
body.error404 {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 1rem;
   color: #fff;
   box-sizing: border-box;
   /* タブレット */
   /* スマートフォン */
}

body.error404 header,
body.error404 footer {
   display: none;
}

body.error404 .container {
   text-align: center;
   max-width: 600px;
   width: 100%;
   animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(-20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

body.error404 .error-code {
   font-size: 10rem;
   font-weight: 700;
   line-height: 1;
   margin-bottom: 1rem;
   text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
   animation: bounce 2s infinite;
}

@keyframes bounce {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-20px);
   }
}

body.error404 .error-title {
   font-size: 2rem;
   font-weight: 600;
   margin-bottom: 1rem;
}

body.error404 .error-message {
   font-size: 1.125rem;
   margin-bottom: 2rem;
   opacity: 0.9;
   line-height: 1.6;
}

body.error404 .btn-home {
   display: inline-block;
   padding: 1rem 2.5rem;
   background: rgba(255, 255, 255, 0.2);
   color: #fff;
   text-decoration: none;
   font-size: 1rem;
   font-weight: 600;
   border-radius: 50px;
   border: 2px solid #fff;
   transition: all 0.3s ease;
   backdrop-filter: blur(10px);
}

body.error404 .btn-home:hover {
   background: #fff;
   color: #667eea;
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body.error404 .icon {
   font-size: 5rem;
   margin-bottom: 1rem;
   opacity: 0.8;
}

@media (max-width: 768px) {
   body.error404 .error-code {
      font-size: 7rem;
   }

   body.error404 .error-title {
      font-size: 1.75rem;
   }

   body.error404 .error-message {
      font-size: 1rem;
   }

   body.error404 .icon {
      font-size: 4rem;
   }
}

@media (max-width: 480px) {
   body.error404 .error-code {
      font-size: 5rem;
   }

   body.error404 .error-title {
      font-size: 1.5rem;
   }

   body.error404 .error-message {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
   }

   body.error404 .btn-home {
      padding: 0.875rem 2rem;
      font-size: 0.9375rem;
   }

   body.error404 .icon {
      font-size: 3rem;
   }
}

@media (max-width: 320px) {
   body.error404 .error-code {
      font-size: 4rem;
   }

   body.error404 .error-title {
      font-size: 1.25rem;
   }

   body.error404 .error-message {
      font-size: 0.875rem;
   }
}

/*=============================================*
* お問い合わせ
*=============================================*/
.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/common/arrow-down.png") no-repeat center top/100% auto;
   width: 16px;
   height: 12px;
   position: absolute;
   top: 26px;
   right: 12px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 3px solid #345E9B;
   line-height: 32px;
   border-radius: 10px !important;
   padding: 10px 35px 10px 15px;
   cursor: pointer;
}

.wpcf7 .select select::-ms-expand {
   display: none;
}

.wpcf7 .select .after {
   padding: 23px 0 0 10px;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 3px solid #345E9B;
   line-height: 32px;
   border-radius: 10px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 15px;
}

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

.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: #999;
}

.wpcf7 ::-moz-placeholder {
   color: #999;
}

.wpcf7 :-ms-input-placeholder {
   color: #999;
}

.wpcf7 :-moz-placeholder {
   color: #999;
}

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

.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: inline-grid;
   grid-template-columns: 24px 1fr;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   background-color: #fff;
   border: 3px solid #345E9B;
   grid-area: 1/1;
   position: relative;
   top: 1px;
   border-radius: 3px;
   cursor: pointer;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   box-sizing: border-box;
   margin: auto;
}

.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
   display: none;
   background-color: #345E9B;
   width: 12px;
   height: 12px;
   position: relative;
   top: 1px;
}

.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: 13px;
   line-height: 22px;
   color: #E50012;
}

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

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

@media screen and (max-width: 767px) {
   .wpcf7-checkbox {
      gap: 10px;
   }

   .wpcf7 .select .after {
      padding-top: 32px;
   }
}

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

/*=============================================*
 * recruit list
 *=============================================*/
.recruit__list {
   max-width: 980px;
   margin: 0 auto;
}

.recruit__list .item {
   display: grid;
   grid-template-columns: 1fr 385px;
   align-items: flex-start;
   gap: 25px;
   background-color: #fff;
   border: 1px solid #A9A9A9;
   box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
   padding: 20px;
   position: relative;
   transition: all 0.3s;
}

.recruit__list .item.hover:hover {
   opacity: 0.7;
}

.recruit__list .item a {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.recruit__list .item+.item {
   margin-top: 70px;
}

.recruit__list .text {
   text-align: left;
}

.recruit__list h3 {
   padding: 0 20px 10px;
}

.recruit__list .txt {
   font-weight: 500;
   line-height: 32px;
   color: #345E9B;
}

.recruit__list .txt p {
   border-top: 1px solid #A9A9A9;
   border-bottom: 1px solid #A9A9A9;
   padding: 18px 20px;
}

.recruit__list .txt p+p {
   border-top: 0;
}

.recruit__list .tag {
   font-weight: 700;
   color: #fff;
   text-align: center;
   padding: 10px 20px 0;
}

.recruit__list .tag li {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   align-items: center;
   gap: 12px;
}

.recruit__list .tag li+li {
   padding-top: 10px;
}

.recruit__list .tag span {
   display: block;
   border-radius: 10px;
   padding: 5px 10px;
}

.recruit__list .tag .orange {
   background-color: #FF7700;
}

.recruit__list .tag .pink {
   background-color: #FF86F3;
}

.recruit__list .tag .blue-1 {
   background-color: #3FA8FF;
}

.recruit__list .tag .yellow {
   background-color: #FFF700;
   color: #FF7700;
}

.recruit__list .tag .blue-2 {
   background-color: #5861FF;
}

.recruit__list .tag .green {
   background-color: #00BE29;
}

.recruit__list figure {
   position: relative;
   overflow: hidden;
}

.recruit__list figure figcaption {
   position: absolute;
   bottom: 10px;
   right: 10px;
}

.recruit__list figure figcaption .yes {
   max-width: 271px;
}

.recruit__list figure figcaption .no {
   max-width: 161px;
}

@media screen and (max-width: 1200px) {
   .recruit__list .item {
      grid-template-columns: 1fr 320px;
   }
}

@media screen and (max-width: 1023px) {
   .recruit__list .item {
      grid-template-columns: 1fr;
   }
}

@media screen and (max-width: 767px) {
   .recruit__list .item {
      padding: 20px 10px;
   }

   .recruit__list .item+.item {
      margin-top: 40px;
   }

   .recruit__list h3 {
      padding: 0 10px 10px;
   }

   .recruit__list .txt {
      line-height: 26px;
   }

   .recruit__list .txt p {
      padding: 10px;
   }

   .recruit__list .tag {
      font-size: 12px;
      padding: 10px 10px 0;
   }

   .recruit__list .tag li {
      gap: 5px;
   }

   .recruit__list .tag span {
      padding: 0 5px;
   }

   .recruit__list figure figcaption .yes {
      max-width: 146px;
   }

   .recruit__list figure figcaption .no {
      max-width: 111px;
   }
}

/*=============================================*
 * qa
 *=============================================*/
.box-qa {
   max-width: 1000px;
   margin: 0 auto;
}

.box-qa .item {
   border-bottom: 1px solid #888;
   padding-bottom: 40px;
}

.box-qa .item+.item {
   padding-top: 40px;
}

.box-qa .txt-q {
   background: url("../img/common/icon-q.png") no-repeat center left/43px auto;
   max-width: 630px;
   margin: 0 auto;
   padding-left: 90px;
   box-sizing: border-box;
   cursor: pointer;
}

.box-qa .txt-a {
   display: none;
   background: url("../img/common/icon-a.png") no-repeat top 20px left/44px auto;
   max-width: 630px;
   margin: 0 auto;
   padding: 20px 0 0 90px;
   box-sizing: border-box;
}

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

   .box-qa .item+.item {
      padding-top: 20px;
   }

   .box-qa .txt-q {
      background-size: 30px auto;
      padding-left: 35px;
   }

   .box-qa .txt-a {
      background-size: 30px auto;
      padding: 28px 0 0 35px;
   }
}