﻿@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@400;700&display=swap");
* {
  box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip; }

body {
  margin: 0;
  padding-top: 29px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.8;
  color: #111;
  background: #fff; }
  @media (max-width: 768px) {
    body {
      padding-top: 0; } }

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

a {
  color: #005BAB;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
  .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0); }

.header {
  position: fixed;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  background: #fff;
  transition: background 0.3s; }
  .header.is-scrolled, .header.is-menu-open {
    background: #fff; }
  @media (max-width: 768px) {
    .header {
      top: 0;
      background: #fff; } }
  .header__inner {
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
    white-space: nowrap; }
    .header__logo:hover {
      color: #005BAB;
      text-decoration: none; }
  .header__logo-img {
    height: 18px;
    width: auto;
    display: block; }
  .header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative; }
    .header__toggle span, .header__toggle::before, .header__toggle::after {
      content: "";
      position: absolute;
      left: 11px;
      width: 22px;
      height: 2px;
      background: #111;
      transition: transform 0.3s, opacity 0.3s; }
    .header__toggle span {
      top: 21px; }
    .header__toggle::before {
      top: 14px; }
    .header__toggle::after {
      top: 28px; }
    .header__toggle.is-open span {
      opacity: 0; }
    .header__toggle.is-open::before {
      transform: translateY(7px) rotate(45deg); }
    .header__toggle.is-open::after {
      transform: translateY(-7px) rotate(-45deg); }
  .header__nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 14px; }
    .header__nav a {
      display: flex;
      align-items: center;
      color: #111;
      font-size: 0.78rem;
      font-weight: 500;
      white-space: nowrap; }
      .header__nav a:hover {
        color: #005BAB;
        text-decoration: none; }
    .header__nav .btn.btn--entry {
      align-self: stretch;
      display: flex;
      align-items: center;
      padding: 0 24px;
      color: #fff; }
      .header__nav .btn.btn--entry:hover {
        color: #fff; }
  @media (max-width: 1020px) {
    .header__inner {
      padding: 0 12px 0 20px;
      overflow: hidden; }
    .header__toggle {
      display: block; }
    .header__nav {
      display: none;
      position: fixed;
      top: 89px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 20px 24px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); }
      .header__nav.is-open {
        display: flex; }
      .header__nav a {
        height: 52px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
      .header__nav .btn.btn--entry {
        height: 56px;
        margin-top: 16px;
        justify-content: center;
        border-bottom: none; } }
  @media (max-width: 768px) {
    .header__nav {
      top: 60px; } }
.footer {
  background: #1a1a1a;
  color: #fff; }
  .footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px 40px; }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px; }
    @media (max-width: 768px) {
      .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px; } }
  .footer__logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
    display: block; }
    .footer__logo:hover {
      color: #fff;
      text-decoration: none; }
  .footer__address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.8; }
  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer__links li {
      margin-bottom: 12px; }
    .footer__links a {
      color: rgba(255, 255, 255, 0.8); }
      .footer__links a:hover {
        color: #fff; }
  .footer__bottom {
    background: #10B981;
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 700; }
  .footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    padding: 20px; }

.section {
  padding: 140px 20px 176px;
  background: #fff; }
  @media (max-width: 768px) {
    .section {
      padding: 80px 20px; } }
  .section + .section {
    position: relative;
    margin-top: -72px;
    padding-top: 176px;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,10 Q0,5 5,5 H95 Q100,5 100,0 L100,10 Z' fill='%23000'/></svg>"), linear-gradient(#000, #000);
    -webkit-mask-size: 100% 72px, 100% calc(100% - 72px);
    -webkit-mask-position: top center, center bottom;
    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,10 Q0,5 5,5 H95 Q100,5 100,0 L100,10 Z' fill='%23000'/></svg>"), linear-gradient(#000, #000);
    mask-size: 100% 72px, 100% calc(100% - 72px);
    mask-position: top center, center bottom;
    mask-repeat: no-repeat, no-repeat; }
    @media (max-width: 768px) {
      .section + .section {
        margin-top: -36px;
        padding-top: 80px;
        -webkit-mask-size: 100% 36px, 100% calc(100% - 36px);
        mask-size: 100% 36px, 100% calc(100% - 36px); } }
  .section--hero + .section {
    margin-top: 0;
    padding-top: 100px;
    -webkit-mask-image: none;
    mask-image: none; }
    @media (max-width: 768px) {
      .section--hero + .section {
        padding-top: 80px; } }
  .section__inner {
    max-width: 960px;
    margin: 0 auto; }
  .section__heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #111; }
  .section__lead {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 32px;
    max-width: 640px; }
  .section__text--center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto; }
  .section__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center; }
    @media (max-width: 768px) {
      .section__grid {
        grid-template-columns: 1fr;
        gap: 32px; } }
  .section__image {
    border-radius: 16px;
    overflow: hidden; }
    .section__image img {
      width: 100%;
      height: auto;
      display: block; }
  .section--alt {
    background: #F0F3F6; }
  .section--blue {
    padding: 176px 20px 176px;
    background: #0071e1;
    color: #fff;
    text-align: center; }
    .section--blue .section__heading,
    .section--blue .section__lead {
      color: #fff; }
    .section--blue .section__lead {
      color: rgba(255, 255, 255, 0.9);
      margin-left: auto;
      margin-right: auto; }
    .section--blue .section__lead:first-of-type {
      margin-bottom: 8px; }
    .section--blue .section__heading {
      font-family: "Bebas Neue", sans-serif;
      font-weight: 400;
      letter-spacing: 0.04em;
      font-size: 130px;
      line-height: 1;
      padding-left: 0;
      border-left: none;
      width: 110% !important;
      margin: 0 0 80px -5% !important; }
      @media (max-width: 768px) {
        .section--blue .section__heading {
          font-size: 64px;
          padding-top: 80px;
          width: 100% !important;
          margin: 0 0 16px !important; } }
    .section--blue .btn--outline-light:hover {
      color: #005BAB; }
  .section--hero {
    position: relative;
    overflow: hidden;
    padding: calc(60px + 48px) 20px 48px;
    background: #e6edf4;
    color: #111;
    text-align: left; }
    @media (max-width: 768px) {
      .section--hero {
        padding: calc(60px + 32px) 20px 32px; } }
    .section--hero .section__inner {
      position: relative;
      z-index: 1; }
    .section--hero .heading {
      color: #111;
      margin-bottom: 16px;
      font-weight: 800; }
    .section--hero .heading--xl {
      font-size: 3rem; }
    .section--hero .lead {
      color: #005BAB;
      font-size: 1.1rem; }
    .section--hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../../img/common/bg_mv.svg");
      background-size: auto;
      background-position: right center;
      background-repeat: repeat-y;
      pointer-events: none;
      z-index: 0; }

.section--interview,
.section--project {
  padding-bottom: 0;
  margin-bottom: 80px; }
  @media (max-width: 768px) {
    .section--interview,
    .section--project {
      padding-bottom: 0;
      margin-bottom: 60px; } }
.section--project {
  padding-top: 60px; }
  @media (max-width: 768px) {
    .section--project {
      padding-top: 40px; } }
.heading {
  margin: 0 0 24px;
  line-height: 1.4; }
  .heading--xl {
    font-size: 2.5rem; }
  .heading--lg {
    font-size: 2rem;
    color: #005BAB; }
  .heading--md {
    font-size: 1.25rem;
    color: #555; }

.lead {
  font-size: 1.125rem;
  margin: 0 0 32px;
  color: #555; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 400;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
  border: none;
  cursor: pointer;
  text-align: center; }
  .btn:hover {
    text-decoration: none;
    opacity: 0.9; }
  .btn--primary {
    background: #005BAB;
    color: #fff; }
    .btn--primary:hover {
      background: #2a6fdb; }
  .btn--more, .btn--outline-light {
    position: relative;
    padding: 12px 44px 12px 32px;
    text-align: left; }
    .btn--more::after, .btn--outline-light::after {
      content: "";
      position: absolute;
      right: -28px;
      top: 50%;
      width: 56px;
      height: 1px;
      background: currentColor;
      transform: translateY(-50%);
      transition: transform 0.3s; }
    .btn--more::before, .btn--outline-light::before {
      content: "";
      position: absolute;
      right: -28px;
      top: 50%;
      width: 5px;
      height: 5px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: translateY(-50%) rotate(45deg);
      transition: transform 0.3s; }
    .btn--more:hover::after, .btn--outline-light:hover::after {
      transform: translateY(-50%) translateX(6px); }
    .btn--more:hover::before, .btn--outline-light:hover::before {
      transform: translateY(-50%) translateX(6px) rotate(45deg); }
    @media (max-width: 768px) {
      .btn--more, .btn--outline-light {
        display: block;
        width: min(100%, 280px);
        margin-left: auto;
        margin-right: auto;
        padding: 14px 24px;
        text-align: center; }
        .btn--more::before, .btn--more::after, .btn--outline-light::before, .btn--outline-light::after {
          display: none; } }
  .btn--more {
    border: 1px solid #666;
    color: #000;
    background: transparent;
    font-family: "Oxanium", sans-serif; }
    .btn--more::after {
      background: #666; }
    .btn--more::before {
      border-color: #666; }
    .btn--more:hover {
      background: rgba(102, 102, 102, 0.08);
      color: #000; }
  .btn--entry {
    background: #005BAB;
    color: #fff; }
    .btn--entry:hover {
      background: #2a6fdb;
      text-decoration: none; }
  .btn--outline-light {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 18px 64px 18px 48px; }
    .btn--outline-light .btn__en {
      display: inline-block;
      margin-right: 1.5em;
      font-family: "Oxanium", sans-serif;
      letter-spacing: 0.08em; }
    @media (max-width: 768px) {
      .btn--outline-light {
        padding: 16px 24px; } }
    .btn--outline-light:hover {
      background: #fff;
      color: #005BAB; }

.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px; }
  .card__title {
    font-size: 1.25rem;
    color: #005BAB;
    margin: 0 0 12px; }
  .card__desc {
    color: #555;
    margin: 0; }

.grid {
  display: grid;
  gap: 24px; }
  .grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.section__heading {
  position: relative;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 24px;
  padding-left: 16px;
  border-left: 4px solid #005BAB; }

@media (max-width: 768px) {
  .heading--xl {
    font-size: 1.75rem; }
  .heading--lg {
    font-size: 1.5rem; }
  .section__heading {
    font-size: 1.5rem; } }

.employees__slider.is-transform,
.projects__slider.is-transform {
  overflow: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  touch-action: pan-y; }

.slider-track {
  display: flex;
  flex: 0 0 auto;
  will-change: transform; }

.employees__slide.is-active,
.projects__slide.is-active {
  cursor: pointer; }