@charset "utf-8";
/* =====================
  RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  scroll-behavior: smooth;
}
/* =====================
  共通
===================== */
.blue {
  color: #06379f;
}
/* 行フェードイン */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.br-sp {
  display: none;
}
.br-pc {
  display: inline;
}
img.pc-only {
  display: inline;
}
img.sp-only {
  display: none;
}
/* SP向け */
@media screen and (max-width: 1024px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
  img.pc-only {
    display: none;
  }
  img.sp-only {
    display: inline;
  }
}
/* =====================
   パララックス共通
===================== */
.parallax-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.parallax-banner img {
  width: 100%;
  height: auto;
  min-height: 150%;
  object-fit: cover;
  display: block;
  will-change: transform;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .parallax-banner {
    height: 200px;
  }
}
/* =====================
  HEADER
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: auto; /* ←ここ変更 */
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 0 0 30px;
  height: 80px;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo-wrap a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  text-decoration: none;
}
.header-logo, .header-logo-text {
  display: block;
}
.header-logo {
  width: 150px;
}
.header-logo-text {
  width: 120px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto; /* 右寄せ */
  margin-right: 20px;
}
.header-nav a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-nav a:hover {
  opacity: 0.6;
}
.hamburger-btn {
  display: none;
}
.sp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0637a0;
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 32px 60px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}
.sp-drawer.open {
  transform: translateX(0);
}
.entry-btn {
  display: flex;
  align-items: center;
  padding: 0 35px;
  background: #ffff00;
  color: #0637a0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
  align-self: stretch;
}
.entry-btn:hover {
  background: #e6e600;
}
/* =====================
  フッター
===================== */
.site-footer {
  background: #000;
  padding: 70px 0 0;
}
/* メインエリア */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 90px;
}
/* 左：ロゴ＋ボタン */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 右寄せ */
  gap: 40px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 170px;
  height: auto;
  display: block;
}
.footer-site-name {
  height: 40px;
  width: auto;
  display: block;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
  min-width: 280px;
}
.footer-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.footer-contact-btn:hover::before {
  left: 0;
}
.footer-contact-btn:hover {
  color: #333333;
}
.footer-contact-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("../images/icon/arrow-right-white.svg") center / contain no-repeat;
  transition: background 0s 0.1s, transform 0.3s ease;
}
.footer-contact-btn:hover::after {
  background: url("../images/icon/arrow-right-black.svg") center / contain no-repeat;
  transition: background 0s 0.2s, transform 0.3s ease;
  transform: translateX(4px);
}
/* 右：ナビ */
.footer-nav {
  padding-top: 8px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.footer-nav-list a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.footer-nav-list a:hover {
  opacity: 0.6;
}
/* 下部ライン */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-sub-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}
.footer-sub-nav a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.footer-sub-nav a:hover {
  opacity: 0.8;
}
.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
/* =====================
  section共通
===================== */
.inner {
  max-width: 1200px; /* 820px → 1200px */
  margin: 0 auto;
}
.section-heading p {
  font-family: 'Lato', sans-serif;
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.section-heading h2 {
  font-size: 25px;
  font-weight: 700;
  color: #06379f;
  letter-spacing: 0.08em;
}
.section-main-title {
  line-height: 1.1;
}
/* キラン共通 - 初期は非表示 */
.section-main-title, .section-sub-title {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* is-show が付いたら表示＋グラデーション発火 */
.section-heading.is-show .section-main-title, .section-heading.is-show .section-sub-title {
  opacity: 1;
  transform: translateY(0);
  background-image: linear-gradient(80deg, currentColor 33.33%, #0038B5, #FFF5EA, #FFB203, #F27000, #0038B5, rgba(255, 255, 255, 0) 60%);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.section-heading.is-show .section-main-title {
  animation: txtPika 1.2s ease-in-out forwards;
  transition-delay: 0s;
}
.section-heading.is-show .section-sub-title {
  animation: txtPika 1.2s ease-in-out 0.3s forwards;
  transition-delay: 0.3s;
}
.section-heading.is-same-timing.is-show .section-main-title, .section-heading.is-same-timing.is-show .section-sub-title {
  animation: txtPika 1.8s ease-in-out forwards; /* ←ここ伸ばす */
  transition-delay: 0s;
}
@keyframes txtPika {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/* カバーアニメ共通 */
.js-cover-anim .about-photo-cover, .js-cover-anim .about-card-cover, .js-cover-anim .interview-photo-cover, .js-cover-anim .strength-photo-cover, .js-cover-anim .office-photo-cover {
  transform: scaleX(1);
}
.js-cover-anim.is-visible .about-photo-cover, .js-cover-anim.is-visible .about-card-cover, .js-cover-anim.is-visible .interview-photo-cover, .js-cover-anim.is-visible .strength-photo-cover, .js-cover-anim.is-visible .office-photo-cover {
  transform: scaleX(0);
}
.line-yellow {
  background: linear-gradient(transparent 60%, #ffff00 60%);
  display: inline;
}
/* 初期状態（左側だけ見えてない） */
.js-wipe-text > * {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease, opacity 0.3s ease;
}
/* 発火 */
.js-wipe-text.is-show > * {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
/* 遅延 */
.js-wipe-text.is-show > *:nth-child(2) {
  transition-delay: 0.2s;
}
.js-wipe-text.is-show > *:nth-child(3) {
  transition-delay: 0.4s;
}
/* =====================
  サブページ共通FV
===================== */
.page-fv {
  position: relative;
  overflow: hidden;
  background: #eaeff4;
  height: 500px;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.page-fv .inner {
  width: 100%;
  padding: 0 20px;
}
.page-fv-bg-label {
  position: absolute;
  right: 20px;
  bottom: -12px;
  font-family: 'Lato', sans-serif;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #06379f;
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.page-fv-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.page-fv-heading p {
  color: #06379f;
}
.page-fv-heading h2 {
  color: #06379f;
}
.page-fv-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.breadcrumb {
  margin-top: 16px;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li {
  font-size: 13px;
  color: #000;
}
@media (max-width: 768px) {
  .breadcrumb li {
    font-size: 11px;
  }
  .page-fv-heading {
    gap: 20px;
  }
}
.breadcrumb ol::before {
  content: "●";
  color: #06379f;
  font-size: 10px;
}
.breadcrumb li + li::before {
  content: "－";
  margin-right: 8px;
  color: #000;
}
.breadcrumb a {
  color: #000;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
/* =====================
  エントリー
===================== */
.entry-section {
  background: #06379f;
  padding: 100px 0 0;
  position: relative;
}
img.entry-catch-sp {
  display: none;
}
.entry-catch {
  text-align: center;
  margin-bottom: 50px;
  overflow: hidden;
}
.entry-catch-img {
  max-width: 950px;
  width: 100%;
  height: auto;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.entry-catch.is-visible .entry-catch-img {
  clip-path: inset(0 0% 0 0);
}
/* ボタン横並び */
.entry-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.entry-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #06379f;
  padding: 28px 32px;
  text-decoration: none;
  width: 400px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  gap: 16px;
  border: none;
  cursor: pointer;
  font: inherit;
}
.entry-card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffff00;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.entry-card-btn:hover {
  color: #fff;
}
.entry-card-btn:hover::before {
  left: 0;
}
.line-entry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.line-entry-modal.is-open {
  display: flex;
}
.line-entry-modal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.55);
}
.line-entry-modal-content {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  padding: 44px 36px 36px;
  text-align: center;
}
.line-entry-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #06379f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.line-entry-modal-sub {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.line-entry-modal-title {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 900;
}
.line-entry-modal-btns {
  display: flex;
  gap: 16px;
}
.line-entry-choice-btn {
  flex: 1;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: #06c755;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.line-entry-choice-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.line-entry-choice-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.entry-card-btn-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.entry-card-btn-label {
  font-size: 15px;
  font-weight: 700;
  color: #06379f;
  letter-spacing: 0.08em;
}
.entry-card-btn-main {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #06379f;
  letter-spacing: 0.1em;
  line-height: 1;
}
.entry-card-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.entry-card-btn:hover .entry-card-btn-icon {
  transform: translateX(5px);
}
.entry-ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  margin-top: -50px;
  position: relative;
  z-index: 0;
}
.entry-ticker {
  display: inline-flex;
  white-space: nowrap;
}
.entry-ticker span {
  font-family: 'Lato', sans-serif;
  font-size: 120px;
  font-weight: 900;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.08);
}
/* =====================
  TABLET (1024px) 対応
===================== */
@media screen and (max-width: 1024px) {
  .site-header {
    top: 0;
    z-index: 200;
  }
  .header-inner {
    height: 60px;
    padding: 0 0 0 16px;
    position: relative;
    justify-content: space-between;
  }
  /* ロゴエリア */
  .header-logo-wrap a {
    gap: 10px;
    z-index: 201;
  }
  .header-logo {
    width: 120px;
  }
  .header-logo-text {
    width: 95px;
  }
  /* PCナビは非表示 */
  .header-nav {
    display: none;
  }
  .entry-btn {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 201;
    flex-shrink: 0;
    padding: 0;
  }
  .hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #06379f; /* 線は青 */
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .sp-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 40px;
  }
  .sp-drawer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
  }
  .sp-drawer-nav a::after {
    content: '→';
    font-size: 15px;
    opacity: 0.6;
  }
  .sp-drawer-nav a:hover {
    opacity: 0.7;
    padding-left: 6px;
  }
  .sp-drawer-nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .sp-drawer-entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    background: #ffff00;
    color: #0637a0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }
  .header-logo {
    width: 110px;
  }
  .header-logo-text {
    width: 90px;
  }
  .header-nav {
    gap: 16px;
  }
  .header-nav a {
    font-size: 13px;
  }
  .entry-btn {
    padding: 0 20px;
    font-size: 15px;
  }
  /* =====================
    section共通 - TABLET
  ===================== */
  .inner {
    padding: 0 40px;
  }
  .section-heading p {
    font-size: 80px;
  }
  .section-heading h2 {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
  }
  .interview-side-label, .about-side-label, .culture-side-label {
    display: none;
  }
  /* =====================
  サブページ共通FV
===================== */
  .page-fv {
    height: 300px;
    padding-top: 70px;
  }
}
/* =====================
  MOBILE STYLES (SP)
  max-width: 767px
===================== */
@media screen and (max-width: 767px) {
  /* =====================
    section共通 - SP
  ===================== */
  .inner {
    padding: 0 20px;
  }
  .section-heading p {
    font-size: 60px;
  }
  .section-heading h2 {
    font-size: 18px;
    font-weight: 600;
    margin-left: 0;
  }
  .page-fv-title-row {
    gap: 10px;
  }
  .breadcrumb {
    margin-top: 3px;
  }
  .page-fv-bg-label {
    right: 0;
    bottom: -8px;
    font-size: 70px;
    font-weight: 800;
  }
  /* =====================
    FOOTER - SP
  ===================== */
  .site-footer {
    padding: 50px 20px 0;
  }
  .footer-main {
    flex-direction: column;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-left {
    align-items: flex-start;
  }
  .footer-logo {
    width: 160px;
  }
  .footer-site-name {
    height: 35px;
  }
  .footer-right {
    align-items: flex-start;
    gap: 28px;
    width: 100%;
  }
  .footer-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 0;
    column-gap: 0;
  }
  .footer-nav-list li {
    width: 50%;
  }
  .footer-contact-btn {
    min-width: 0;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
  }
  .footer-sub-nav {
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
  }
  .footer-nav-list a {
    font-weight: 400;
  }
  /* =====================
  サブページ共通FV
===================== */
  .page-fv {
    height: 300px;
    padding-top: 60px;
    overflow: hidden;
  }
  .page-fv-heading p {
    font-size: 45px;
  }
  .page-fv-heading h2 {
    font-size: 16px;
  }
  /* =====================
    ENTRY - SP
  ===================== */
  .entry-section {
    padding: 40px 0 0;
  }
  /* 出し分け */
  .entry-catch-pc {
    display: none;
  }
  img.entry-catch-sp {
    display: inline-block;
    max-width: 310px;
  }
  .entry-catch {
    margin-bottom: 36px;
  }
  /* ボタン縦並び */
  .entry-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 0 20px;
  }
  .entry-card-btn {
    width: 100%;
    padding: 18px 24px;
  }
  .entry-card-btn-main {
    font-size: 24px;
  }
  .entry-ticker span {
    font-size: 68px;
  }
  .entry-ticker-wrap {
    margin-top: -20px;
  }
  .line-entry-modal-content {
    padding: 40px 22px 28px;
  }
  .line-entry-modal-title {
    font-size: 20px;
  }
  .line-entry-modal-btns {
    flex-direction: column;
  }
  .line-entry-choice-btn {
    width: 100%;
  }
}