@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/* =========================================
   1. Variables (色・フォント設定)
   ========================================= */
/* =========================================
   2. Base & Common (全体設定・背景装飾)
   ========================================= */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  background-color: #f0f4f8;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85vh;
  z-index: -1;
  background: linear-gradient(150deg, #0056b3 0%, #33c1ff 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Hide Scrollbar (SP Only) */
@media (max-width: 768px) {
  html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }
}
/* =========================================
   3. Layout Utils & Wrapper
   ========================================= */
.l-page-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  z-index: 1;
}

.l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 60px 0;
  }
}

.u-text-blue {
  color: #0056b3;
  font-weight: bold;
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-text-link {
  color: #0056b3;
  text-decoration: underline;
  margin-left: 10px;
  font-size: 0.9rem;
}
.u-text-link:hover {
  text-decoration: none;
}

.u-list-disc {
  list-style: disc;
  padding-left: 20px;
}
.u-list-disc li {
  margin-bottom: 5px;
}

/* =========================================
   4. Component: Titles & Buttons
   ========================================= */
/* Section Title */
.c-section-title {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(0, 86, 179, 0.2);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-section-title {
    font-size: 3rem;
  }
}
.c-section-title__ja {
  display: block;
  font-size: 1.5rem;
  color: #0056b3;
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  margin-top: -35px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .c-section-title__ja {
    font-size: 1.2rem;
    margin-top: -25px;
  }
}
.c-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #008ecc;
  margin: 20px auto 0;
}
.c-section-title--left {
  text-align: left;
  margin-bottom: 30px;
}
.c-section-title--left::after {
  margin: 20px 0 0;
}

/* Buttons */
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 50px;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.c-btn--white {
  background: #ffffff;
  color: #0056b3;
  border: 1px solid #ffffff;
}
.c-btn--white:hover {
  background: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
}
.c-btn--tel {
  background: #0056b3;
  color: #ffffff;
  border-radius: 50px;
}
.c-btn--tel:hover {
  opacity: 0.8;
}
.c-btn--mail {
  background: #ffffff;
  border: 2px solid #0056b3;
  color: #0056b3;
  border-radius: 50px;
}
.c-btn--mail:hover {
  background: #0056b3;
  color: #ffffff;
}

/* =========================================
   5. Header & Navigation
   ========================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  color: #ffffff;
  border-bottom: none;
}
@media (max-width: 768px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.98);
    color: #333333;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
}
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  color: #333333;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.l-header.is-scrolled .l-header__nav ul li a {
  color: #333333;
}
.l-header.is-scrolled .l-header__nav ul li a:hover {
  color: #0056b3;
}
.l-header.is-scrolled .l-header__logo-img.is-main {
  display: none;
}
.l-header.is-scrolled .l-header__logo-img.is-scrolled {
  display: block;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .l-header__inner {
    height: 60px;
    padding: 0 15px;
  }
}
.l-header__logo {
  margin: 0;
  line-height: 1;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header__logo-img {
  height: 60px;
  width: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .l-header__logo-img {
    height: 36px;
  }
}
.l-header__logo-img.is-main {
  display: block;
}
.l-header__logo-img.is-scrolled {
  display: none;
}
@media (max-width: 768px) {
  .l-header__logo-img.is-main {
    display: none !important;
  }
  .l-header__logo-img.is-scrolled {
    display: block !important;
  }
}
.l-header__nav {
  margin-left: auto;
}
.l-header__nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.l-header__nav ul li a {
  font-weight: bold;
  font-size: 0.9rem;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.l-header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #008ecc;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.l-header__nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .l-header__action {
    margin-left: 0;
    display: block !important;
  }
}
.l-header__btn-recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0056b3;
  color: #ffffff !important;
  text-decoration: none;
  padding: 5px 25px;
  height: 50px;
  line-height: 1.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__btn-recruit .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
.l-header__btn-recruit .jp {
  font-size: 0.7rem;
}
.l-header__btn-recruit:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .l-header__btn-recruit {
    height: 36px;
    padding: 0 12px;
  }
  .l-header__btn-recruit .en {
    font-size: 0.8rem;
  }
  .l-header__btn-recruit .jp {
    display: none;
  }
}

/* Bottom Nav (SP Only) */
.l-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid #dde2e5;
  z-index: 9999;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.l-bottom-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.l-bottom-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
.l-bottom-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-decoration: none;
  color: #666666;
  font-size: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-bottom-nav__item a i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #0056b3;
}
.l-bottom-nav__item--tel a {
  background-color: #0056b3;
  color: #ffffff;
}
.l-bottom-nav__item--tel a i {
  color: #ffffff;
}

/* =========================================
   6. Top Page Contents (FV, Service, etc)
   ========================================= */
/* FV */
.fv {
  position: relative;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #ffffff;
  background-color: transparent;
  z-index: 10;
}
.fv__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background-image: url("../img/demo1.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.fv__content {
  position: relative;
  z-index: 1;
  padding-left: 13%;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .fv__content {
    padding-left: 20px;
  }
}
.fv__copy {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .fv__copy {
    font-size: 2rem;
  }
}
.fv__sub {
  font-size: 1.2rem;
  border-left: 4px solid #ffffff;
  padding-left: 15px;
}

/* Mission */
.mission {
  text-align: center;
}
.mission__box {
  max-width: 800px;
  margin: 0 auto;
}
.mission__text {
  font-size: 1.5rem;
  line-height: 2.2;
  font-weight: bold;
  color: #0056b3;
}
@media (max-width: 768px) {
  .mission__text {
    font-size: 1.1rem;
  }
}

/* Service (Top Page Block) */
.service {
  background-color: #eceff1;
  counter-reset: service-counter;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}
.service__card {
  background: #ffffff;
  display: block;
  color: #333333;
  text-decoration: none;
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #dde2e5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service__card::before {
  counter-increment: service-counter;
  content: "0" counter(service-counter);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0056b3;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 8px 20px;
  z-index: 2;
}
.service__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #0056b3;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.service__card:hover .c-arrow-link {
  color: #008ecc;
}
.service__card:hover .c-arrow-link::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.service__card:hover .service__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.service__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #ccc;
  position: relative;
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.service__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
}
.service__body {
  padding: 35px 30px;
}
.service__icon {
  font-size: 2.2rem;
  color: #0056b3;
  margin-bottom: 20px;
  display: block;
}
.service__title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333333;
}
.service__desc {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 25px;
  min-height: 3em;
  line-height: 1.6;
}
.service .c-arrow-link {
  color: #0056b3;
  font-weight: bold;
  font-size: 0.9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service .c-arrow-link::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/* Area */
.area {
  background-color: #ffffff;
}
.area__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .area__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.area__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.area__map iframe {
  width: 100%;
  min-height: 350px;
  border: 1px solid #dde2e5;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.area__map iframe:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.area__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.area__title {
  font-family: "Montserrat", sans-serif;
  color: #0056b3;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.area__lead {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.4;
}
.area__name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333333;
  border-bottom: 4px solid #0056b3;
  display: inline-block;
  margin-bottom: 25px;
  padding-right: 40px;
  width: 100%;
}
.area__desc {
  color: #666666;
  line-height: 2;
}

/* Recruit (Top Link) */
.recruit {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 120px 0;
  background-color: #0d1b2a;
}
.recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.recruit__content {
  position: relative;
  z-index: 1;
}
.recruit__title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.recruit__copy {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .recruit__copy {
    font-size: 1.8rem;
  }
}
.recruit__desc {
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 2;
  font-weight: 500;
}

/* News */
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  border-top: 1px solid #dde2e5;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .news__wrapper {
    display: block;
  }
}
.news__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
}
@media (max-width: 768px) {
  .news__header {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.news__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #dde2e5;
  color: #333333;
  text-decoration: none;
}
.news__item:hover {
  background-color: #fafafa;
  padding-left: 10px;
  color: #0056b3;
}
@media (max-width: 768px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news__date {
  font-family: "Montserrat", sans-serif;
  color: #999;
  margin-right: 40px;
  min-width: 100px;
  font-weight: bold;
}
.news__link {
  display: inline-block;
  margin-top: 15px;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #0056b3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.news__link:hover {
  opacity: 0.7;
}

/* =========================================
   7. Footer
   ========================================= */
.l-footer {
  background-color: #1a202c;
  color: #fff;
  padding: 80px 0 20px;
  font-size: 0.9rem;
}
.l-footer a {
  color: #fff;
  text-decoration: none;
}
.l-footer a:hover {
  color: #008ecc;
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .l-footer__content {
    display: block;
  }
}
.l-footer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}
.l-footer__logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}
.l-footer__address {
  line-height: 2;
  color: #ccc;
}
.l-footer__nav {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.l-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav ul li {
  margin-bottom: 12px;
}
.l-footer__nav ul li a {
  color: #bbb;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-footer__nav ul li a:hover {
  color: #ffffff;
}
.l-footer__recruit {
  width: 240px;
}
@media (max-width: 768px) {
  .l-footer__recruit {
    width: 100%;
  }
}
.l-footer__licenses {
  border-top: 1px solid #333;
  padding-top: 40px;
  margin-bottom: 40px;
}
.l-footer__licenses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: #999;
  list-style: none;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-footer__licenses-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__licenses-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0056b3;
  margin-right: 8px;
}
.l-footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  border-top: 1px solid #2a303c;
  padding-top: 20px;
}

/* Footer Recruit Button (STAFF WANTED) */
.l-footer__recruit-btn {
  display: block;
  width: 100%;
  background-color: #0056b3;
  color: #fff !important;
  text-align: center;
  padding: 25px 20px;
  border: 1px solid #0056b3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.l-footer__recruit-btn:hover {
  background-color: #fff;
  color: #0056b3 !important;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.l-footer__recruit-btn .ja {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  opacity: 0.9;
  font-weight: normal;
}
.l-footer__recruit-btn .en {
  display: block;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}
.l-footer__recruit-btn .en i {
  font-size: 1rem;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer__recruit-btn:hover .en i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* =========================================
   8. Sub Page Common (下層ページ共通)
   ========================================= */
/* 下層ページのヘッダー設定（重複を統合済み） */
body:not(.home) {
  /* ヘッダーを常に白背景・黒文字にする */
  /* ナビゲーションの文字色も黒に */
  /* スマホメニューの線も黒に */
  /* コンテンツ位置調整 */
}
body:not(.home) .l-header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
  /* 白ロゴ（is-main）を消して黒ロゴ（is-scrolled）を出す */
}
body:not(.home) .l-header .l-header__logo-img.is-main {
  display: none !important;
}
body:not(.home) .l-header .l-header__logo-img.is-scrolled {
  display: block !important;
}
body:not(.home) .l-header__nav ul li a {
  color: #333333;
}
body:not(.home) .l-header__nav ul li a:hover {
  color: #0056b3;
}
body:not(.home) .l-header__hamburger span {
  background-color: #333333;
}
body:not(.home) .l-main {
  padding-top: 0;
  margin-top: 80px;
}
@media (max-width: 768px) {
  body:not(.home) .l-main {
    margin-top: 60px;
  }
}

/* FV (Sub) */
.sub-fv {
  position: relative;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  color: #ffffff;
  margin-top: 80px;
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  .sub-fv {
    margin-top: 60px;
    height: 200px;
  }
}
.sub-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004085;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
}
.sub-fv__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sub-fv__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
}
@media (max-width: 768px) {
  .sub-fv__title {
    font-size: 2rem;
  }
}
.sub-fv__ja {
  display: block;
  font-size: 1rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.breadcrumb {
  background: #f4f4f4;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #666;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #0056b3;
}
.breadcrumb i {
  font-size: 0.7rem;
  margin: 0 10px;
  color: #ccc;
}

/* =========================================
   9. Service Page (List & Detail)
   ========================================= */
/* Service List */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .service-list-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-list-card {
  background-color: #fff;
  border: 1px solid #dde2e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-list-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-list-card:hover .service-list-card__btn {
  background-color: #0056b3;
  color: #fff;
}
.service-list-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-list-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-list-card__num {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0056b3;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 5px 15px;
}
.service-list-card__body {
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-list-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 2.8em;
}
.service-list-card__text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-list-card__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.service-list-card__tags li {
  font-size: 0.75rem;
  font-weight: bold;
  color: #008ecc;
  background-color: #f0f7fa;
  padding: 4px 10px;
  border-radius: 4px;
}
.service-list-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 2px solid #0056b3;
  color: #0056b3;
  font-weight: bold;
  padding: 12px;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-list-card__btn i {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Service Detail (Section) */
.service-section {
  padding: 100px 0;
  overflow: hidden;
}
.service-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-intro {
  margin-bottom: 100px;
}
.service-intro__lead {
  max-width: 850px;
  margin: 0 auto;
}
.service-intro__lead p {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 1.5em;
  color: #666666;
  text-align: justify;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 120px;
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item .service-img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.service-item .service-img img {
  width: 80%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-item .service-body {
  background-color: rgba(247, 247, 247, 0.4);
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 30px 40px;
}
@media screen and (min-width: 769px) {
  .service-item .service-img {
    width: 55%;
  }
  .service-item .service-body {
    width: 55%;
    margin-left: -10%;
    padding: 80px 60px 80px 100px;
  }
}
@media screen and (min-width: 769px) {
  .service-item.service-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .service-item.service-reverse .service-body {
    margin-left: 0;
    margin-right: -10%;
    padding: 80px 100px 80px 60px;
  }
  .service-item.service-reverse .service-img {
    left: 127px;
  }
  .service-item.service-reverse .service-num {
    left: auto;
    right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .service-item.service-reverse .service-img {
    padding-right: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
  .service-item .service-img {
    margin-bottom: -40px;
    padding-right: 20px;
  }
}

.service-num {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  line-height: 1;
  font-style: italic;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #0056b3;
  position: absolute;
  top: 20px;
  left: 30px;
}
@media screen and (min-width: 769px) {
  .service-num {
    font-size: 80px;
    top: -40px;
    left: 60px;
  }
}

.service-en {
  color: #0056b3;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .service-en {
    margin-top: 0;
  }
}

.service-jp {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .service-jp {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.service-list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.service-list li {
  font-size: 13px;
  font-weight: bold;
  color: #0056b3;
  border: 1px solid #0056b3;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: #fff;
  line-height: 1.4;
}

.service-text {
  font-size: 14px;
  line-height: 2;
  color: #666666;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .service-text {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

.service-btn {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  text-decoration: none;
  padding: 15px 50px;
  font-size: 14px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: #0056b3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-btn:hover {
  background-color: #666666;
  opacity: 1;
}
.service-btn:hover::after {
  width: 20px;
}

/* Service Detail Block (Alternative) */
.service-detail-block {
  margin-bottom: 120px;
}
.service-detail-block:last-child {
  margin-bottom: 0;
}
.service-detail-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .service-detail-block__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.service-detail-block__row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-detail-block__row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service-detail-block__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-detail-block__img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #dde2e5;
}
@media (max-width: 768px) {
  .service-detail-block__img img {
    height: 250px;
  }
}
.service-detail-block__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.service-detail-block__num {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 86, 179, 0.05);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
}
.service-detail-block__title {
  font-size: 2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.service-detail-block__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #008ecc;
}
.service-detail-block__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333333;
}
.service-detail-block__points {
  background-color: #f8f9fa;
  padding: 30px;
  border-left: 4px solid #0056b3;
}
.service-detail-block__points h4 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #0056b3;
  font-size: 1.1rem;
}
.service-detail-block__points ul {
  list-style: none;
  padding: 0;
}
.service-detail-block__points ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.service-detail-block__points ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #008ecc;
  font-size: 0.8rem;
}
.service-detail-block__points ul li strong {
  color: #333333;
}

/* =========================================
   10. Company Page (Message, etc)
   ========================================= */
.message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.message__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
}
.message__img img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
}
.message__body {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.message__lead {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 30px;
  line-height: 1.4;
  border-left: 5px solid #008ecc;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .message__lead {
    font-size: 1.4rem;
  }
}
.message__text {
  line-height: 2;
  margin-bottom: 30px;
  text-align: justify;
  font-family: "Zen Old Mincho", serif;
}
.message__sign {
  font-weight: bold;
  width: 120px;
  margin-left: auto;
  font-family: "Zen Old Mincho", serif;
}
.message__sign .role {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.message__sign .name {
  font-size: 1.5rem;
}

.c-definition-list {
  width: 100%;
  border-top: 1px solid #dde2e5;
}
.c-definition-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dde2e5;
}
@media (max-width: 768px) {
  .c-definition-list__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-definition-list__row dt {
  width: 25%;
  background-color: #f9f9f9;
  padding: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 4px solid #0056b3;
  margin-left: -1px;
}
@media (max-width: 768px) {
  .c-definition-list__row dt {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
  }
}
.c-definition-list__row dd {
  width: 75%;
  padding: 20px;
}
@media (max-width: 768px) {
  .c-definition-list__row dd {
    width: 100%;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th, .c-table td {
  border: 1px solid #dde2e5;
  padding: 15px 20px;
  text-align: left;
}
.c-table th {
  background-color: #f9f9f9;
  width: 40%;
  color: #0056b3;
  font-weight: bold;
}
@media (max-width: 768px) {
  .c-table th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .c-table td {
    display: block;
    width: 100%;
  }
}

.company-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}
.company-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/demo4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .company-banner__bg {
    background-attachment: scroll;
  }
}
.company-banner__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 86, 179, 0.85);
}
.company-banner__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company-banner__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 768px) {
  .company-banner__title {
    font-size: 2.5rem;
  }
}
.company-banner__subtitle {
  display: block;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.company-banner__subtitle::before, .company-banner__subtitle::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  margin: 0 10px;
}
.company-banner__desc {
  margin-top: 25px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  font-weight: 500;
}
.company-banner__btn {
  min-width: 260px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.company-banner__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.company-banner__btn i {
  margin-left: 10px;
}

/* =========================================
   11. Recruit Page (採用情報) - メリハリ版
   ========================================= */
/* --- 共通：セクションタイトルの装飾（巨大な英語背景） --- */
.c-section-title {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* --- Intro --- */
.recruit-intro {
  margin-bottom: 80px;
  /* ドット柄のあしらい（左上） */
  position: relative;
}
.recruit-intro::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.6;
}
.recruit-intro__lead {
  max-width: 850px;
  margin: 0 auto;
}
.recruit-intro__lead p {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 1.5em;
  color: #666666;
  text-align: justify;
}

/* --- Points (魅力) --- */
.recruit-points {
  padding: 60px 0;
  background-color: #e3f2fd;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 100px;
}
.recruit-points__title {
  font-size: 2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 50px;
  position: relative;
}
.recruit-points__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #008ecc;
  border-radius: 2px;
}
.recruit-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .recruit-points__grid {
    grid-template-columns: 1fr;
  }
}
.recruit-points__item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 50, 100, 0.08);
          box-shadow: 0 8px 20px rgba(0, 50, 100, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.recruit-points__item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 50, 100, 0.15);
          box-shadow: 0 15px 30px rgba(0, 50, 100, 0.15);
}
.recruit-points__icon {
  font-size: 3rem;
  color: #008ecc;
  margin-bottom: 20px;
}
.recruit-points__heading {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 15px;
}
.recruit-points__text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.7;
}

/* --- Photos (Staff) --- */
.recruit-photos {
  margin-bottom: 100px;
}
.recruit-photos__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 50px;
  position: relative;
}
.recruit-photos__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #008ecc;
  border-radius: 2px;
}
.recruit-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .recruit-photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruit-photos__grid img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* 顔が切れないように修正 */
  -o-object-position: top center;
     object-position: top center;
}
.recruit-photos__grid img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
@media (max-width: 768px) {
  .recruit-photos__grid img {
    height: 180px;
  }
}

/* --- Recruit Info (募集要項テーブルエリア) --- */
.recruit-info-section {
  background-color: #f8fbfc;
  padding-top: 80px;
  padding-bottom: 80px;
}

.recruit-details {
  max-width: 900px;
  margin: 0 auto 80px;
  background-color: #fff;
  border: 1px solid #dde2e5;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.recruit-details dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dashed #dde2e5;
}
.recruit-details dl:last-of-type {
  border-bottom: none;
}
@media (max-width: 768px) {
  .recruit-details dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-details dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  padding: 20px 25px;
  font-weight: bold;
  color: #0056b3;
}
@media (max-width: 768px) {
  .recruit-details dt {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #dde2e5;
  }
}
.recruit-details dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 25px;
  color: #333333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .recruit-details dd {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}

/* --- Action Area --- */
.recruit-action-area {
  text-align: center;
  margin-top: 80px;
}
.recruit-action-area__text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 30px;
}
.recruit-action-area__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .recruit-action-area__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.recruit-action-area .c-btn--large {
  min-width: 300px;
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .recruit-action-area .c-btn--large {
    min-width: 100%;
  }
}
.recruit-action-area .c-btn--tel {
  background-color: #0056b3;
  color: #fff;
  border-color: #0056b3;
}
.recruit-action-area .c-btn--tel:hover {
  background-color: #008ecc;
  border-color: #008ecc;
}
.recruit-action-area .c-btn--mail {
  background-color: #fff;
  color: #0056b3;
  border-color: #0056b3;
}
.recruit-action-area .c-btn--mail:hover {
  background-color: #0056b3;
  color: #fff;
}

/* 外部サイトボタン */
.recruit-external-btn {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.recruit-external-btn a.c-btn {
  background-color: #333;
  color: #fff;
  min-width: 320px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.recruit-external-btn a.c-btn i {
  margin-left: 10px;
}
.recruit-external-btn a.c-btn:hover {
  background-color: #0056b3;
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* --- 社長メッセージ（写真なし・テキスト中心） --- */
.recruit-message {
  display: block;
  padding: 60px 40px;
  background-color: #f8fbfc;
  border-radius: 8px;
  border: 1px solid #eef5fb;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.recruit-message__img {
  display: none;
}

.recruit-message__body {
  text-align: center;
}

.recruit-message__title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.recruit-message__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #008ecc;
}

.recruit-message__text {
  text-align: left;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 2.2;
}

.recruit-message__sign {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .recruit-message {
    padding: 40px 20px;
  }
  .recruit-message__title {
    font-size: 1.6rem;
    text-align: left;
  }
  .recruit-message__title::after {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
  .recruit-message__text {
    font-size: 1rem;
  }
}
/* --- Value --- */
.recruit-value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .recruit-value__grid {
    grid-template-columns: 1fr;
  }
}

.recruit-value__item {
  background: #fff;
  border: 1px solid #dde2e5;
  padding: 30px;
  text-align: center;
}
.recruit-value__item h4 {
  color: #0056b3;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #008ecc;
  display: inline-block;
  padding-bottom: 5px;
}

/* --- People (背景斜め・グレー濃いめ) --- */
.bg-gray {
  /* 濃いめのグレーに変更 */
  background-color: #e6ebf0;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

/* 斜めカット（上） */
.bg-gray::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #e6ebf0;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
  z-index: -1;
}

/* 斜めカット（下） */
.bg-gray::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #e6ebf0;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
  z-index: -1;
}

@media (max-width: 768px) {
  .bg-gray::before, .bg-gray::after {
    -webkit-transform: skewY(-1.5deg);
            transform: skewY(-1.5deg);
    height: 60px;
    top: -30px;
  }
  .bg-gray::after {
    bottom: -30px;
    top: auto;
  }
}
.recruit-interview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .recruit-interview__grid {
    grid-template-columns: 1fr;
  }
}

.recruit-interview__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /* 影を濃くして背景から浮き上がらせる */
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recruit-interview__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  /* 写真の頭が切れないように修正 */
  -o-object-position: top center;
     object-position: top center;
}

.recruit-interview__body {
  padding: 25px;
}

.job-role {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-bottom: 10px;
}

.interview-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.interview-text {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #ddd;
}
.timeline dl {
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
}
.timeline dl::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 13px;
  height: 13px;
  background: #0056b3;
  border-radius: 50%;
  border: 3px solid #fff;
}
.timeline dt {
  font-weight: bold;
  color: #0056b3;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.recruit-sub-title {
  text-align: center;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
}

/* --- DATA Section (ダークネイビー背景) --- */
.recruit-data {
  /* 濃紺に変更して引き締める */
  background-color: #1a2533;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.recruit-data h3 {
  color: #ffffff;
}

/* データセクションのタイトル色調整 */
.recruit-data .c-section-title__ja {
  color: #FAFAFA; /* ほぼ白 */
}

/* ドット柄（右下） */
.recruit-data::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 200px;
  height: 100px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 0;
  opacity: 0.3;
}

.recruit-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.recruit-numbers__item {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  /* ダークモード用のスタイル */
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.recruit-numbers__item .label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #008ecc; /* 水色 */
}
.recruit-numbers__item .number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  margin: 5px 0;
}
.recruit-numbers__item .unit {
  font-size: 1rem;
}
.recruit-numbers__item .note {
  font-size: 0.8rem;
  color: #ccc;
}
@media (max-width: 768px) {
  .recruit-numbers__item {
    width: 140px;
    height: 140px;
  }
  .recruit-numbers__item .number {
    font-size: 2rem;
  }
}

.welfare-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.welfare-list li {
  /* ダークモード用のスタイル */
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
}
.welfare-list li i {
  margin-right: 10px;
  color: #008ecc;
}

/* --- Flow --- */
.recruit-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .recruit-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flow-step {
  text-align: center;
  background: #fff;
  padding: 30px;
  width: 250px;
  border: 1px solid #dde2e5;
  position: relative;
}
.flow-step .step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #eef5fb;
  line-height: 1;
  margin-bottom: 10px;
}
.flow-step .step-title {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow-arrow {
  width: 20px;
  height: 20px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 768px) {
  .flow-arrow {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    margin: 10px auto;
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto 80px;
}
.faq-list details {
  margin-bottom: 15px;
  border: 1px solid #dde2e5;
  background: #fff;
}
.faq-list summary {
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: #0056b3;
  font-weight: bold;
  font-size: 1.5rem;
}
.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px 20px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

/* --- Entry Box --- */
.entry-box {
  background: #0056b3;
  color: #fff;
  padding: 60px;
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-box {
    padding: 30px 20px;
  }
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.entry-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .entry-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* =========================================
   12. Contact Form & CTA
   ========================================= */
.cta-section {
  padding: 80px 0;
}
.cta-section__box {
  background-color: #0056b3;
  color: #ffffff;
  padding: 70px 40px;
  text-align: center;
  border-radius: 0;
  -webkit-box-shadow: 0 15px 40px rgba(0, 50, 100, 0.3);
          box-shadow: 0 15px 40px rgba(0, 50, 100, 0.3);
}
@media (max-width: 768px) {
  .cta-section__box {
    padding: 50px 20px;
  }
}
.cta-section__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-section__title {
    font-size: 1.6rem;
  }
}
.cta-section__text {
  font-size: 1.1rem;
  margin-bottom: 45px;
  line-height: 1.8;
  font-weight: 500;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .cta-section__text {
    font-size: 0.95rem;
    text-align: left;
  }
}
.cta-section__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .cta-section__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #dde2e5;
  margin: 0;
}

.contact-form__row:first-child {
  border-top: 1px solid #dde2e5;
}

.contact-form__row dt {
  width: 30%;
  background-color: #eef5fb;
  padding: 20px;
  font-weight: bold;
  color: #0056b3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-form__row dt .required {
  background-color: #cc0000;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
}

.contact-form__row dd {
  width: 70%;
  padding: 20px;
  margin: 0;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f9f9f9;
  font-size: 1rem;
}
.form-control:focus {
  background: #fff;
  border-color: #0056b3;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
          box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}

.contact-form__btn {
  text-align: center;
  margin-top: 40px;
}

.wpcf7-submit {
  background-color: #0056b3 !important;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wpcf7-submit:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-form__row {
    display: block;
  }
  .contact-form__row dt, .contact-form__row dd {
    width: 100%;
    padding: 15px;
  }
}
/* --- プライバシーポリシー（修正済み） --- */
.privacy-policy-container {
  margin-top: 60px;
  background-color: #eceff1; /* 変数修正 */
  padding: 30px;
  border-radius: 8px;
}

.privacy-policy-title {
  text-align: center;
  font-size: 18px;
  color: #0056b3; /* 変数修正 */
  margin-bottom: 20px;
  font-weight: bold;
}

.privacy-policy-scroll-box {
  height: 180px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 15px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  font-family: sans-serif;
}

/* 同意チェックボックス */
.form-consent {
  text-align: center;
  margin: 40px 0;
  font-size: 16px;
}

.form-consent input[type=checkbox] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-right: 10px;
  accent-color: #008ecc; /* 変数修正 */
}

/* =========================================
   13. Animation: Fade In Up
   ========================================= */
/* 1. 初期状態：透明にして、少し下に下げる */
.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* 30px下に配置 */
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; /* 1秒かけて変化 */
}

/* 2. 表示状態：不透明にして、元の位置に戻す */
.js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- (オプション) 順番に出てくるように遅延をつける --- */
.js-fade-up.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fade-up.delay-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-fade-up.delay-3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}