@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;
}
html:has(body.animating), body.animating {
  overflow: hidden;
}
/* =====================
  HEADER
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
}
.site-header.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}
.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;
}
/* トップページ初期状態：白ロゴを表示 */
.site-header .logo-dark {
  display: none;
}
.site-header .logo-white {
  display: block;
}
/* スクロール後：黒ロゴを表示 */
.site-header.scrolled .logo-dark {
  display: block;
}
.site-header.scrolled .logo-white {
  display: none;
}
.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: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.site-header.scrolled .header-nav a {
  color: #000000;
}
.header-nav a:hover {
  opacity: 0.6;
}
.hamburger-btn {
  display: none;
}
.sp-drawer {
  display: none;
}
.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, .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;
}
@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 p {
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* ←右側100%隠す */
  transition: clip-path 0.6s ease, opacity 0.3s ease;
}
/* 発火 */
.js-wipe-text.is-show p {
  opacity: 1;
  clip-path: inset(0 0 0 0); /* ←全部表示 */
}
.js-wipe-text.is-show p:nth-of-type(2) {
  transition-delay: 0.2s;
}
.js-wipe-text.is-show p:nth-of-type(3) {
  transition-delay: 0.4s;
}
/* =====================
  サブページ共通FV
===================== */
.page-fv {
  position: relative;
  background: #eaeff4;
  height: 450px;
  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: 0;
  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: 8px;
}
.page-fv-heading p {
  color: #06379f;
}
.page-fv-heading h2 {
  color: #06379f;
}
.page-fv-title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.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;
}
.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: 1000;
  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;
  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) {
  /* =====================
    HEADER - TABLET
  ===================== */
  .site-header {
    top: 0;
    z-index: 200;
  }
  .header-inner {
    height: 60px;
    padding: 0 0 0 16px;
    position: relative;
    justify-content: space-between;
  }
  .logo-dark {
    display: none;
  }
  .logo-white {
    display: block;
  }
  /* scrolled時：カラーロゴを表示、白ロゴを非表示 */
  .site-header.scrolled .logo-dark {
    display: block;
  }
  .site-header.scrolled .logo-white {
    display: none;
  }
  /* ロゴエリア */
  .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;
  }
  .page-sub .hamburger-btn {
    display: flex;
  }
  .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: #fff;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
  }
  .site-header.scrolled .hamburger-btn span {
    background: #06379f;
  }
  .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 {
    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);
  }
  .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;
  }
  /* =====================
    FOOTER - SP
  ===================== */
  .site-footer {
    padding: 50px 0 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: 240px;
    padding-top: 60px; /* SPヘッダー分 */
  }
  .page-fv-heading p {
    font-size: 52px;
  }
  .page-fv-heading h2 {
    font-size: 18px;
  }
  /* =====================
    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;
  }
  .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%;
  }
}
/* =====================
  HERO
===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #0637a0;
  perspective: 1400px;
  overflow: hidden;
}
/* =====================
  PHOTO LAYER（最下層）
===================== */
.photo-layer {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}
.photo {
  position: relative; /* ← 追加 */
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.photo-slide {
  position: absolute;
  inset: 0;
}
.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slide-next {
  clip-path: inset(0 100% 0 0); /* 最初は隠れた状態 */
  transform: translateX(0);
}
.photo-slide-next.wipe-in {
  animation: slideWipe 1s ease forwards;
}
@keyframes slideWipe {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* =====================
  CONTENT LAYER
===================== */
.content-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
/* ロゴ + RECRUITING */
.logo-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity .5s ease;
  z-index: 1;
}
.logo {
  width: 220px;
  opacity: 0;
  transition: opacity 1s ease;
}
.logo.show {
  opacity: 1;
}
img.title-img-sp {
  display: none;
}
.recruiting-wrap {
  width: 0;
  overflow: hidden;
  height: 50px;
}
.recruiting-text {
  display: flex;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  line-height: 50px;
  opacity: 1; /* 最初から見える状態に */
}
/* charは不要になるので削除、またはそのまま残してもOK */
.char {
  display: inline;
}
.char.show {
  opacity: 1;
  transform: translateX(0);
}
.title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  z-index: 2;
}
.title-wrap.show {
  opacity: 1;
}
.title-img {
  display: block;
  height: 177px;
  width: auto;
  margin: 0 auto;
}
.title-img:last-child {
  margin-bottom: 0;
}
.has-animation {
  position: relative;
  overflow: hidden;
}
.has-animation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  z-index: 1;
}
.has-animation img {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.has-animation.animate-in img {
  visibility: visible;
  opacity: 1;
  animation: imgReveal 1s ease forwards;
}
@keyframes imgReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.has-animation.animate-in::before {
  animation: wipe 1s ease forwards;
}
@keyframes wipe {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/* =====================
  CURTAIN
===================== */
.curtain {
  position: absolute;
  inset: 0;
  background: #0637a0;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  z-index: 3;
}
.curtain.open {
  transform: rotateX(-90deg);
  transition: transform 1.5s cubic-bezier(.77, 0, .175, 1);
}
/* =====================
  TICKER
===================== */
.ticker-wrap {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.ticker {
  display: flex;
  white-space: nowrap;
}
.ticker span {
  font-size: 120px;
  font-weight: 900;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}
/* =====================
  CATCHCOPY
===================== */
.catchcopy-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.catchcopy-outer {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 2px 20px;
}
.catchcopy-outer.show {
  clip-path: inset(0 0% 0 0);
}
.catchcopy-box {
  background: #ffffff;
  padding: 10px 28px;
  margin-bottom: 15px;
  transform: skewX(-8deg);
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.25), -8px 8px 24px rgba(0, 0, 0, 0.15);
}
.catchcopy-inner {
  clip-path: inset(0 100% 0 -20px);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.catchcopy-outer.show .catchcopy-inner {
  clip-path: inset(0 -20px 0 -20px);
}
.catchcopy-img {
  display: block;
  height: 90px;
  width: auto;
  transform: skewX(8deg);
}
.catchcopy {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  transform: rotate(0deg);
}
.catchcopy.black {
  color: #000000;
}
.catchcopy.blue {
  color: #0637a0;
}
/* =====================
  KIRARI (光) アニメーション
===================== */
.kirari-inner {
  position: relative;
  overflow: visible; /* ← hiddenだと光がはみ出た瞬間消えることがある */
  clip-path: none; /* ← 親のclip-pathをリセット */
}
.kirari-hikari {
  position: absolute;
  top: -10%;
  left: -60%;
  width: 30%; /* ← 幅を細く */
  height: 120%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.85) 48%, /* ← 中心だけ明るく */ rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.85) 52%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  opacity: 0;
  z-index: 10;
  mix-blend-mode: overlay; /* ← 背景と馴染ませる */
}
.kirari-hikari {
  position: absolute;
  top: -10%;
  left: -60%;
  width: 55%;
  height: 120%;
  background-image: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-20deg);
  opacity: 0;
}
.kirari-hikari.run {
  animation: kirari_run 0.7s ease-in-out forwards;
}
@keyframes kirari_run {
  0% {
    left: -40%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  } /* ← フワッと出現 */
  90% {
    opacity: 1;
  }
  100% {
    left: 110%;
    opacity: 0;
  } /* ← フワッと消える */
}
/* =====================
  取り扱い保険会社
===================== */
.insurance-section {
  background: #06379f;
  padding: 90px 20px 110px;
  text-align: left;
}
.insurance-heading {
  display: flex;
  align-items: flex-end; /* 下ラインを揃える */
  gap: 15px;
  margin-bottom: 40px;
}
.insurance-heading p {
  color: #ffffff;
}
.insurance-heading h2 {
  color: #ffffff !important;
  margin: 0;
}
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(6, 185px);
  gap: 15px;
  justify-content: center;
}
.insurance-card {
  width: 185px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  box-sizing: border-box;
  overflow: hidden;
}
.insurance-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.insurance-card-fwd img {
  max-height: 38px;
}
/* =====================
  NEWS
===================== */
.news-section {
  background: #ffffff;
  padding: 90px 20px 110px;
}
.news-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
/* 左カラム */
.news-left {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-heading {
  line-height: 1;
}
.news-heading p {
  color: #06379f;
  margin: 0 0 6px;
}
.news-heading h2 {
  color: #06379f;
  margin: 0;
}
/* 一覧ボタン */
.news-btn {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #06379f;
  background: #ffffff;
  color: #06379f;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 15px 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
}
.news-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #06379f;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.news-btn:hover::before {
  left: 0;
}
.news-btn:hover {
  color: #ffffff;
}
.news-btn:hover .news-btn-arrow {
  filter: brightness(0) invert(1);
}
.news-btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: filter 0.4s ease;
}
/* 右カラム */
.news-right {
  flex: 1;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-item {
  border-top: 1px solid #d0d0d0;
}
.news-item:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.news-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news-link:hover .news-date, .news-link:hover .news-text {
  opacity: 0.7;
}
.news-date {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #06379f;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.news-text {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  flex: 1;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
.news-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-link:hover .news-arrow {
  transform: translateX(6px);
}
/* =====================
   写真ティッカー
===================== */
.news-photo-ticker-wrapper {
  overflow: hidden;
  padding: 0 0 10px;
  background: #fff;
}
.news-photo-ticker-track {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.news-photo-slide {
  width: 420px;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  background: #dde3f0;
}
.news-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nexus-ticker-wrapper {
  overflow: hidden;
  padding: 0;
  background: #fff;
}
.nexus-ticker-track {
  display: flex;
  gap: 10px; /* 写真と同じgap */
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
/* =====================
  NEXUSについて知る
===================== */
.about-top {
  position: relative;
  padding: 150px 0 0;
}
.about-section {
  position: relative;
  background: #eaeff4;
  overflow: hidden;
  padding: 0 0 90px;
}
.about-side-label {
  position: absolute;
  left: -5px;
  top: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 120px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}
.about-layout {
  display: flex;
  align-items: center;
}
.about-left {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.about-heading {
  margin-bottom: 50px;
}
/* タイトル */
.about-heading p {
  color: #06379f;
}
.about-heading h2 {
  color: #06379f;
}
/* メッセージタイトル */
.about-message-title {
  font-size: 70px;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  margin-bottom: 50px;
}
.about-accent {
  color: #06379f;
}
.about-box {
  background: #06379f;
  padding: 36px 50px 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3;
  width: calc(100% + 80px);
}
.about-box-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
/* 白フチボタン */
.about-box-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;
  align-self: flex-start;
  min-width: 280px;
}
.about-box-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;
}
.about-box-btn:hover::before {
  left: 0;
}
.about-box-btn:hover {
  color: #06379f;
}
/* hover外れたとき：0.1sで早めに戻す */
.about-box-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;
}
/* hoverしたとき：0.2s遅らせて切り替え */
.about-box-btn:hover::after {
  background: url("../images/icon/arrow-right-blue.svg") center / contain no-repeat;
  transition: background 0s 0.2s, transform 0.3s ease;
  transform: translateX(4px);
}
.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-wrap-sp {
  display: none;
}
.about-photo-wrap {
  position: absolute;
  top: 130px;
  right: 0;
  width: 50%;
  height: 60%;
  overflow: hidden;
}
.about-photo-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  z-index: 2;
}
.about-cards {
  display: flex;
  gap: 20px;
  margin-top: 130px;
}
.about-card {
  flex: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}
.about-card-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}
/* テキストエリア（左下） */
.about-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 24px; /* 上paddingを増やして高さを出す */
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6) 60%);
}
.about-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(6, 55, 159, 0.85) 60%); /* #06379f */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.about-card:hover .about-card-body::before {
  opacity: 1;
}
/* テキストを::beforeより前面に */
.about-card-title, .about-card-link {
  position: relative;
  z-index: 1;
}
.about-card-title {
  font-family: 'Lato', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
/* アイコン＋テキスト行 */
.about-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
/* 写真：first-childではなくクラスで指定 */
.about-card .about-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-card:hover .about-card-img {
  transform: scale(1.07);
}
/* アイコン */
.about-card-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.about-card:hover .about-card-icon {
  transform: translateX(4px);
}
/* =====================
  社員インタビュー
===================== */
.interview-section {
  background: #06379f;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.interview-heading {
  margin-bottom: 60px;
}
.interview-side-label {
  position: absolute;
  right: -5px;
  top: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 120px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
/* カード2枚横並び */
.interview-cards {
  display: flex;
  gap: 40px;
}
.interview-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 120px;
}
/* 写真 */
.interview-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.interview-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.interview-photo-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  z-index: 2;
}
/* 白ボックス（写真に被せる） */
.interview-box {
  background: #fff;
  padding: 28px 32px 32px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* テキスト */
.interview-text {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}
/* 名前 */
.interview-name {
  font-size: 15px;
  font-weight: 700;
  color: #06379f;
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
}
/* アルファベット部分：大きく＆Lato */
.interview-name-en {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: #06379f;
}
/* =====================
  カルチャー
===================== */
.culture-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 150px 0 120px;
}
.culture-side-label {
  position: absolute;
  right: 20px; /* 右端から少し内側 */
  bottom: 0; /* 下端から配置 */
  top: auto; /* topをリセット */
  font-family: 'Lato', sans-serif;
  font-size: 140px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #eaeff4;
  writing-mode: horizontal-tb; /* 縦書き → 横書きに変更 */
  transform: none; /* rotate不要なのでリセット */
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
/* レイアウト */
.culture-layout {
  display: flex;
  align-items: center;
  gap: 0;
}
/* 左：写真ブロック */
.culture-photos {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.culture-section .inner {
  flex: 1;
  padding: 0 60px 0 50px; /* 左右の余白 */
}
.culture-photos-top {
  display: flex;
  gap: 10px;
}
.culture-photos-top .culture-photo-wrap {
  flex: 1;
  aspect-ratio: 4 / 3; /* 正方形 → 横長に変更 */
}
.culture-photos-bottom .culture-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 7; /* 下1枚は横長 */
}
.culture-photo-wrap {
  position: relative;
  overflow: hidden;
}
.culture-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.culture-photo-wrap:hover .culture-photo {
  transform: scale(1.05);
}
.culture-photo-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}
/* 写真ごとにdelayをずらす */
.culture-photos-top .culture-photo-wrap:nth-child(1) .culture-photo-cover {
  transition-delay: 0s;
}
.culture-photos-top .culture-photo-wrap:nth-child(2) .culture-photo-cover {
  transition-delay: 0.15s;
}
.culture-photos-bottom .culture-photo-wrap .culture-photo-cover {
  transition-delay: 0.3s;
}
/* 右：テキスト */
.culture-right {
  display: flex;
  flex-direction: column;
}
.culture-heading {
  margin-bottom: 40px;
}
.culture-heading p {
  color: #06379f;
  margin-right: 15px;
}
.culture-heading h2 {
  color: #06379f;
}
.culture-message {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  line-height: 1.6;
  margin-bottom: 50px;
}
.culture-accent {
  color: #06379f;
}
/* ボタン（about-box-btnの色違い） */
.culture-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #06379f;
  color: #06379f;
  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;
  align-self: flex-start;
  min-width: 280px;
}
.culture-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #06379f;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.culture-btn:hover::before {
  left: 0;
}
.culture-btn:hover {
  color: #fff;
}
.culture-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("../images/icon/arrow-right-blue.svg") center / contain no-repeat;
  transition: background 0s 0.1s, transform 0.3s ease;
}
.culture-btn:hover::after {
  background: url("../images/icon/arrow-right-white.svg") center / contain no-repeat;
  transition: background 0s 0.2s, transform 0.3s ease;
  transform: translateX(4px);
}
/* is-visible共通に追加 */
.js-cover-anim.is-visible .culture-photo-cover {
  transform: scaleX(0);
}
@media screen and (max-width: 1366px) {
  .title-img {
    width: min(86vw, 900px);
    height: auto;
  }
  .catchcopy-wrap {
    padding: 0 32px;
  }
  .catchcopy-box {
    max-width: calc(100vw - 64px);
  }
  .catchcopy-img {
    width: auto;
    max-width: calc(100vw - 120px);
    height: clamp(50px, 6vw, 78px);
  }
  .ticker span {
    font-size: clamp(86px, 9vw, 120px);
  }
  .logo {
    width: clamp(160px, 16vw, 220px);
  }
}
@media screen and (max-width: 1024px) {
  .title-img {
    width: min(88vw, 760px);
    height: auto;
  }
  .catchcopy-img {
    max-width: calc(100vw - 90px);
    height: clamp(44px, 6vw, 58px);
  }
  .catchcopy-box {
    padding: 8px 18px;
  }
  /* =====================
    CATCHCOPY - TABLET
  ===================== */
  .catchcopy-img {
    height: 50px;
  }
  .catchcopy-box {
    padding: 8px 18px;
    margin-bottom: 5px;
  }
  /* =====================
    TICKER - TABLET
  ===================== */
  .ticker span {
    font-size: 110px;
  }
  /* =====================
    INSURANCE - TABLET
  ===================== */
  .insurance-section {
    padding: 50px 0 80px;
  }
  .insurance-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 28px;
  }
  .insurance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
  }
  .insurance-card {
    width: 100%;
    height: 70px;
    padding: 15px 14px;
  }
  /* =====================
    NEWS - TABLET
  ===================== */
  .news-section {
    padding: 50px 0 60px;
  }
  .news-layout {
    flex-direction: column;
    gap: 28px;
  }
  .news-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .news-right {
    width: 100%;
  }
  .news-btn {
    width: auto;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 16px;
    min-width: 200px;
  }
  .news-btn-arrow {
    width: 12px;
    height: 12px;
  }
  .news-link {
    gap: 13px;
    padding: 16px 4px;
  }
  .news-date {
    font-size: 16px;
  }
  .news-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
  }
  .news-arrow {
    width: 14px;
    height: 14px;
  }
  /* =====================
    写真ティッカー - TABLET
  ===================== */
  .news-photo-slide {
    width: 240px;
    height: 160px;
  }
  /* =====================
    ABOUT - TABLET
  ===================== */
  .about-section {
    padding: 50px 0 60px;
  }
  .about-top {
    padding: 0;
  }
  .about-side-label {
    display: none;
  }
  .about-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 30px;
  }
  .about-message-title {
    font-size: 45px;
    margin-bottom: 36px;
  }
  .about-box {
    width: 100vw;
    margin-left: -40px;
    margin-right: -40px;
    padding: 45px 40px 60px;
    gap: 40px;
  }
  .about-box-title {
    font-size: 28px;
  }
  .about-box-btn {
    min-width: 0;
    width: 100%;
    font-size: 20px;
  }
  .about-photo-wrap-sp {
    display: block;
    width: 100vw;
    margin-left: -40px;
    height: 300px;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .about-photo-wrap-sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-photo-wrap {
    display: none;
  }
  /* カード：縦並び */
  .about-cards {
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
  }
  .about-card {
    aspect-ratio: 15 / 6;
  }
  .about-card-title {
    font-size: 42px;
  }
  .about-card-link {
    font-size: 15px;
    gap: 4px;
  }
  .about-card-body {
    padding: 30px 20px 20px;
    gap: 4px;
  }
  /* =====================
    INTERVIEW - TABLET
  ===================== */
  .interview-section {
    padding: 50px 0 60px;
  }
  .interview-side-label {
    display: none;
  }
  .interview-heading {
    margin-bottom: 40px;
  }
  .interview-cards {
    flex-direction: column;
    gap: 20px;
  }
  .interview-photo-wrap {
    aspect-ratio: 5 / 2;
  }
  .interview-photo {
    object-position: center 30%;
  }
  .interview-card {
    margin-bottom: 80px;
  }
  .interview-box {
    padding: 20px 20px 24px;
    width: 90%;
    bottom: -60px;
    gap: 12px;
  }
  .interview-text {
    font-size: 20px;
    font-weight: 600;
  }
  .interview-name {
    font-size: 16px;
  }
  .interview-name-en {
    font-size: 23px;
  }
  /* =====================
    CULTURE - TABLET
  ===================== */
  .culture-section {
    padding: 50px 0 0;
  }
  .culture-side-label {
    display: none;
  }
  .culture-layout {
    flex-direction: column;
    gap: 40px;
  }
  .culture-photos {
    width: 100%;
    order: 2;
    gap: 5px;
  }
  .culture-section .inner {
    padding: 0;
    order: 1;
  }
  .culture-heading {
    margin-bottom: 28px;
  }
  .culture-message {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .culture-btn {
    min-width: 0;
    width: 100%;
    font-size: 18px;
  }
  .culture-photos-top {
    gap: 5px;
  }
} /* end @media tablet */
@media screen and (max-width: 767px) {
  /* =====================
    HERO - SP
  ===================== */
  .hero {
    height: 100svh; /* Safe area対応 */
    min-height: 600px;
  }
  /* 写真レイアウト：横並びのまま（上下に変更） */
  .photo-layer {
    flex-direction: column;
  }
  .photo {
    width: 100%;
    height: 50%;
  }
  .photo.left {
    order: 2;
  }
  .photo.right {
    order: 1;
  }
  /* =====================
    CONTENT LAYER - SP
  ===================== */
  .logo-group {
    top: 50%;
    gap: 8px;
  }
  .logo {
    width: 140px;
  }
  .recruiting-text {
    font-size: 15px;
    line-height: 36px;
    height: 36px;
  }
  .recruiting-wrap {
    height: 36px;
  }
  .title-img {
    height: auto;
    width: 88vw;
    max-width: 360px;
  }
  img.title-img-pc {
    display: none;
  }
  img.title-img-sp {
    display: block;
  }
  /* =====================
    CATCHCOPY - SP
  ===================== */
  .catchcopy-wrap {
    justify-content: center;
    padding-bottom: 0;
  }
  .catchcopy-outer {
    padding: 2px 12px;
  }
  .catchcopy-box {
    padding: 8px 18px;
    margin-bottom: 3px;
  }
  .catchcopy-img {
    height: 36px;
  }
  /* =====================
    TICKER - SP
  ===================== */
  .ticker span {
    font-size: 80px;
  }
  .ticker-wrap {
    bottom: -8px;
  }
  /* =====================
    INSURANCE - SP
  ===================== */
  .insurance-section {
    padding: 50px 0;
  }
  .insurance-grid {
    gap: 10px;
  }
  .insurance-card {
    width: auto;
    height: 60px;
    padding: 12px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  .insurance-card-fwd img {
    max-height: 34px;
  }
  /* =====================
    NEWS - SP
  ===================== */
  .news-section {
    padding: 50px 0;
  }
  .news-btn {
    padding: 12px 10px;
    font-size: 13px;
    min-width: 145px;
  }
  .news-date {
    font-size: 13px;
  }
  .news-text {
    font-size: 15px;
  }
  /* =====================
    写真ティッカー - SP
  ===================== */
  .news-photo-slide {
    width: 180px;
    height: 120px;
  }
  /* =====================
    ABOUT - SP
  ===================== */
  .about-section {
    padding: 50px 0;
  }
  .about-message-title {
    font-size: 36px;
  }
  .about-box {
    margin-left: -20px;
    margin-right: -20px;
    padding: 35px 24px 50px;
    gap: 20px;
  }
  .about-box-title {
    font-size: 22px;
  }
  .about-box-btn {
    min-width: 0;
    width: 100%;
    font-size: 15px;
  }
  .about-photo-wrap-sp {
    margin-left: -20px;
    height: 220px;
  }
  /* カード：縦並び */
  .about-cards {
    margin-top: 40px;
  }
  .about-card {
    aspect-ratio: 16 / 7;
  }
  /* =====================
    INTERVIEW - SP
  ===================== */
  .interview-section {
    padding: 50px 0;
  }
  .interview-photo-wrap {
    aspect-ratio: 3 / 2;
  }
  .interview-photo {
    object-position: initial;
  }
  .interview-text {
    font-size: 16px;
  }
  .interview-name {
    font-size: 13px;
  }
  .interview-name-en {
    font-size: 20px;
  }
  /* =====================
    CULTURE - SP
  ===================== */
  .culture-section .inner {
    padding: 0 20px;
    order: 1;
  }
  .culture-message {
    font-size: 18px;
  }
  .culture-btn {
    font-size: 15px;
  }
} /* end @media 767px */