/* ============================================================
   アサヒロジ株式会社 新卒採用サイト
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --navy: #1D4294;
  --light-navy: #f6f9ff;
  --red: #C8171E;
  --gray-bg: #f5f7fa;
  --text: #333;
  --black: #070f21;
  --muted: #888;
  --yellow: #FFC300;
  --light-yellow: #fef9ea;
}

.text-black {
  color: #070f21 !important;
}

.text-muted {
  line-height: 1.8;
}

.blue {
  color: var(--navy) !important;
}

.yellow {
  color: var(--yellow) !important;
}

.xsmall {
  font-size: .75rem;
}

.msmall {
  font-size: 1rem;
}

/* ── RESET / BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  margin: 0;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

/* ── BASE / STYLE ── */
.smin {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}


/* ── UTILS ── */
.sec-label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #070f21;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--yellow);
  -webkit-mask: url('../images/icon-box.svg') center / contain no-repeat;
  mask: url('../images/icon-box.svg') center / contain no-repeat;
  flex-shrink: 0;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.nums-heading {
  font-size: clamp(1.8rem, 2.2vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: start;
  gap: 12px;
}

.nums-heading::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 18px;
}

.nums-heading.align-items-center::before {
  margin-top: 0;
}

.crs-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 12px 0 16px;
}

.crs-page-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.8;
}

/* fade-up on scroll */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fu.show {
  opacity: 1;
  transform: none;
}

.fu:target {
  opacity: 1;
  transform: none;
  transition: none;
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  z-index: 2;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.logo-group {
  font-size: 10px;
  color: #999;
  letter-spacing: .1em;
}

.logo-company {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.btn-entry {
  background: linear-gradient(to right, #d33636 0%, #d33636 60%, #ed6d6d 100%);
  color: #fff;
  font-weight: 700;
  padding: 0 28px;
  border: none;
  letter-spacing: .12em;
  font-size: 22px;
  line-height: 1;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  min-width: 300px;
}

.btn-entry::after {
  content: '→';
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  margin-left: 16px;
}

.btn-entry:hover {
  opacity: .5;
}

/* ── Hamburger button ── */
.hamburger {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0;
  transition: background .2s;
}

.hamburger:hover {
  background: #142d56;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--navy);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.header-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 56px;
  padding: 0 48px;
  width: 100%;
  max-width: 860px;
}

.header-nav-col {
  display: flex;
  flex-direction: column;
}

.header-nav-heading {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: opacity .2s;
}

.header-nav-heading:hover {
  opacity: .6;
}

.header-nav-sub-list {
  display: flex;
  flex-direction: column;
  padding: 4px 0 16px 4px;
}

.header-nav-sub {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .875rem;
  padding: 6px 0;
  letter-spacing: .04em;
  transition: opacity .2s;
}

.header-nav-sub:hover {
  opacity: .6;
  color: #fff;
}

@media (max-width: 767px) {
  .header-nav-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 28px;
    max-height: 80vh;
    overflow-y: auto;
  }
}


/* ============================================================
   HERO  — 3-column infinite scroll (fixed behind content)
   ============================================================ */
.hero {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  z-index: 1;
}

/* spacer that reserves the hero's height in the document flow */
.hero-spacer {
  height: 160vh;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* all sections scroll over the fixed hero */
section,
.know-nav,
.jobs-section,
.footer-banner,
.site-footer {
  position: relative;
  z-index: 2;
}

/* three columns */
.hero-col {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-col--left,
.hero-col--right {
  width: 25%;
}

.hero-col--left::after,
.hero-col--right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 66, 148, .35);
  z-index: 3;
  pointer-events: none;
}

.hero-col--center {
  width: 50%;
  z-index: 10;
}

/* ── scroll tracks ── */
.scroll-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.scroll-track img,
.scroll-track video {
  width: 100%;
  flex-shrink: 0;
  /* portrait ratio so 4 images > 1 viewport height */
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* UP: 0 → -50%  (first half identical to second → seamless) */
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

/* DOWN: -50% → 0 */
@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.scroll-track--up {
  animation: scrollUp 40s linear infinite;
}

.scroll-track--down {
  animation: scrollDown 40s linear infinite;
}

/* ── center panel ── */
.hero-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  color: var(--navy);
}

.hero-catch {
  color: var(--navy);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.4;
  text-shadow: 1px 3px 12px rgba(0, 0, 0, .4);
  margin: 0;
}

.hero-logo-band {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 243.75px;
  height: auto;
  display: block;
}

.hero-catch-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

/* ── decorative rectangles ── */
@keyframes decoBreath1 {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }
}

@keyframes decoBreath2 {

  0%,
  100% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.85);
  }
}

@keyframes decoBreath3 {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

@keyframes decoBreath4 {

  0%,
  100% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(0.75);
  }
}


/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: .18em;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: var(--navy);
  margin-top: 8px;
  transform-origin: top;
  animation: scrollIndicator 1.8s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(1) translateY(48px);
    opacity: 0;
  }
}


/* ============================================================
   SECTIONS — shared
   ============================================================ */
section {
  padding: 88px 0;
}


/* ============================================================
   ABOUT US
   ============================================================ */
.aboutas-section {
  background: url("../images/about_bg.jpg")no-repeat bottom center/100%;
  background-color: #fff;
}

.aboutas-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #070f21;
  margin-top: 10px;
  margin-bottom: 0;
}

.aboutas-desc {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
  margin: 0;
}

.aboutas-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.aboutas-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.aboutas-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.fu.show .aboutas-card-img::after {
  transform: translateX(101%);
}

.fu.show .col-md-6:nth-child(2) .aboutas-card-img::after {
  transition-delay: 0.15s;
}

.aboutas-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease;
}

.fu.show .aboutas-card-img img {
  opacity: 1;
}

.fu.show .col-md-6:nth-child(2) .aboutas-card-img img {
  /* opacity（出現）だけ遅らせ、transform（ホバーのズーム）には遅延を掛けない */
  transition-delay: 0.55s, 0s;
}

.aboutas-card-img--tinted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 66, 148, 0.55);
}

.aboutas-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 2;
}

.aboutas-card-title {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 2.1875rem;
  line-height: 1;
  padding: 5px 14px 10px;
  margin-bottom: 16px;
}

.aboutas-card-text {
  color: #070f21;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0;
}

.aboutas-card-text span {
  background: #fff;
  padding: 4px 8px;
}

/* 右下：四角で囲んだ矢印（course-panel と同じ意匠） */
.aboutas-card::after {
  content: '→';
  position: absolute;
  right: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(7, 15, 33, 0.28);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  z-index: 3;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

/* ホバー：画像をズーム＋矢印が黄色に反転 */
.aboutas-card:hover .aboutas-card-img img {
  transform: scale(1.06);
}

.aboutas-card:hover::after {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}


/* ============================================================
   INTRO
   ============================================================ */
.intro-section {
  background: url("../images/intro_bg.png")no-repeat top center/cover;
  background-color: #fff;
  text-align: center;
  padding-bottom: 0;
}

.intro-lead {
  font-size: clamp(1rem, 2vw, 2rem);
  font-family: "Shippori Mincho", serif;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
}

.intro-logo-band {
  background: #fff;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.intro-logo {
  max-width: 500px;
}

.co-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.co-mark {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.co-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
}


/* ============================================================
   MESSAGE
   ============================================================ */
.msg-section {
  background:
    url("../images/intro_bg.png")no-repeat top center/cover,
    url("../images/message_bg.png")no-repeat top -7px center/80%;
  background-color: #fff;
}

.msg-quote {
  font-family: "Shippori Mincho", serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.75;
  margin: 0;
}

.msg-imgs .col-6:nth-child(2) {
  margin-top: 32px;
}

.msg-imgs img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.msg-texts {
  font-size: 20px;
}


/* ============================================================
   KNOW NAV
   ============================================================ */
.know-nav {
  background: var(--navy);
  padding: 0;
  display: block;
}

.know-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.know-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 28px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
  border-right: 1px solid rgba(255, 255, 255, .15);
  transition: background .2s;
}

.know-nav li:first-child a {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.know-nav li a:hover {
  background: rgba(255, 255, 255, .1);
}

.know-nav .en {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .16em;
  margin-bottom: 5px;
}


/* ============================================================
   NUMBERS
   ============================================================ */
.numbers-section {
  background: #fff;
}

.stat-card {
  background: var(--light-navy);
  border-radius: 12px;
  padding: 28px 32px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}


.stat-card.sample-img img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 12px;
}

.stat-lbl {
  font-size: 22px;
  font-weight: 700;
  color: #070f21;
  line-height: 1.5;
  margin: 0;
}

.stat-note {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
  flex-shrink: 0;
}

.stat-val {
  font-family: "Poppins", sans-serif;
  font-size: 110px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
  vertical-align: baseline;
}

.stat-sub {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5c400;
  line-height: 1.4;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.stat-sub-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}

.stat-bg-icon {
  position: absolute;
  right: 24px;
  bottom: 12px;
  font-size: 96px;
  color: var(--light-navy);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.stat-bg-icon00 {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 96px;
  color: var(--light-navy);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.numbers-bg-center {
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.numbers-bg-center img {
  margin: auto;
}

.stat-card-top,
.stat-val,
.stat-sub,
.stat-ratio,
.stat-retention {
  position: relative;
  z-index: 1;
}

.stat-ratio {
  display: flex;
  gap: 40px;
}

.ratio-lbl {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-retention {
  display: flex;
  gap: 32px;
}

.retention-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.retention-course {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.retention-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.stat-bg-letter,
.stat-bg-letter-l {
  position: absolute;
  right: -8px;
  bottom: -24px;
  font-family: "Poppins", sans-serif;
  font-size: 290px;
  font-weight: 700;
  color: var(--light-navy);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.stat-bg-letter-l {
  left: -8px;
  right: inherit;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .12em;
  padding: 16px 20px;
  transition: background .2s, color .2s;
  min-width: 300px;
}

.btn-read-more:hover {
  background: var(--navy);
  color: #fff;
}


/* ============================================================
   VIDEO
   ============================================================ */
.video-section {
  background: url("../images/video-bg.png")no-repeat bottom center/ 100%;
  /*background: var(--light-navy);*/
  background-color: #fff;
  text-align: center;
}

.video-box {
  margin: 32px auto 0;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  cursor: pointer;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--navy);
  transition: transform .2s;
}

.play-btn:hover {
  transform: scale(1.1);
}


/* ============================================================
   COURSES
   ============================================================ */
.courses-section {
  background: var(--light-navy);
}

.courses-panels {
  position: relative;
  height: 620px;
  overflow: hidden;
  margin-top: 56px;
}

.course-panel {
  position: absolute;
  left: 0;
  width: 100%;
}

.course-panel--n {
  top: 0;
  bottom: 80px;
  background: url('../images/top-ncourse-bg.jpg') center left/ 60% no-repeat;
  clip-path: polygon(0 0, 60% 0, 46% 100%, 0 100%);
  display: flex;
  align-items: flex-end;
}

.course-panel--n .course-panel-content {
  padding: 60px 0 60px 72px;
  max-width: 540px;
  height: 100%;
}

.course-panel--a {
  top: 80px;
  bottom: 0;
  background: url('../images/top-acourse-bg.jpg') center right /60% no-repeat;
  clip-path: polygon(57.8% 0, 100% 0, 100% 100%, 43.6% 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.course-panel--a .course-panel-content {
  padding: 60px 72px 60px 0;
  max-width: 540px;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.course-panel-content-inner {
  position: relative;
  padding: 1rem 1.5rem 4.5rem;
}

/* 右下：四角で囲んだ矢印（リンクの誘導）。ホバーで黄色に反転 */
.course-panel-content-inner::after {
  content: '→';
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  /* 明るい写真の上でも視認できるよう薄い暗背景を敷く */
  background: rgba(7, 15, 33, 0.22);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.course-panel:hover .course-panel-content-inner::after {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

.course-panel-label {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 14px;
}

.course-panel-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.65;
  margin-bottom: 20px;
}

.course-panel-text {
  font-size: 17px;
  line-height: 1.95;
  opacity: 0.8;
  margin: 0;
  color: white;
}

/* 992〜1399px：左右の斜め分割では三角形が狭く文字がはみ出す/隠れるため、
   991px以下と同じ「上下スタック（横方向の斜めスリット）」レイアウトに切り替える */
@media (min-width: 992px) and (max-width: 1399px) {
  .courses-panels {
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 56px;
  }

  .course-panel {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .course-panel--n {
    padding: 72px 56px 104px;
    background: url('../images/top-ncourse-bg.jpg') center/ cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%);
    align-items: flex-start;
  }

  .course-panel--a {
    margin-top: -52px;
    padding: 104px 56px 72px;
    background: url('../images/top-acourse-bg.jpg') center/ cover no-repeat;
    clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
    align-items: flex-start;
    justify-content: flex-end;
  }

  .course-panel--n .course-panel-content,
  .course-panel--a .course-panel-content {
    max-width: 760px;
    padding: 0;
    text-align: left;
    height: auto;
  }

  .course-panel--a .course-panel-content {
    display: block;
  }
}



/* ============================================================
   WATCH
   ============================================================ */
.watch-section {
  background: var(--light-navy);
}

.watch-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 16px 0 28px;
}

.watch-desc {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
  margin: 0;
}

.watch-video-box {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--light-navy);
  cursor: pointer;
}

.watch-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   JOBS
   ============================================================ */
.jobs-section {
  background: var(--navy);
  padding-bottom: 0;
  overflow: hidden;
}

.jobs-label {
  color: #fff;
}

/*.jobs-label::before {
  filter: brightness(0) invert(1);
}*/

.jobs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 0;
}

.jobs-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  padding-top: 8px;
}

.jobs-swiper-outer {
  margin-top: 48px;
  padding-bottom: 64px;
}

.jobs-swiper {
  overflow: visible;
  padding-left: max(24px, calc((100vw - 1140px) / 2));
  padding-bottom: 48px;
}

.job-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
}

.job-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.job-card:hover img {
  transform: scale(1.05);
}

.job-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 24px;
}

.job-card-title {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  padding: 5px 10px 8px;
  margin-bottom: 10px;
}

.job-card-desc {
  font-size: 1.2rem;
  font-weight: 700;
  color: #070f21;
  margin: 0;
  line-height: 1.6;
}

.job-card-desc span.line {
  background: #fff;
  padding: 2px 8px;
}

/* 右上：四角で囲んだ矢印（他カードと同じ意匠）。ホバーで黄色に反転 */
.job-card::after {
  content: '→';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(7, 15, 33, 0.28);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  z-index: 2;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.job-card:hover::after {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.jobs-pagination {
  margin-top: 28px;
  text-align: center;
}

.jobs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .4);
  opacity: 1;
}

.jobs-pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
}


/* ============================================================
   PEOPLE
   ============================================================ */
.people-section {
  background: #FFF;
  overflow: hidden;
}

.person-card {
  overflow: hidden;
  height: 100%;
  position: relative;
  display: block;
}

.person-tags {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
}

.person-tag-dept {
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: .04em;
}

.person-tag-course {
  background: var(--light-yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: .04em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-photo {
  width: 100%;
  overflow: hidden;
  background: #d5dae6;
}

.person-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s ease;
}

.person-card:hover .person-photo img {
  transform: scale(1.04);
}

.person-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 26px;
  background: linear-gradient(to bottom, transparent, var(--light-navy) 55%);
}

.person-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color .3s;
}

.person-meta {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  transition: color .3s;
}

.person-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  transition: color .3s;
}

/* アクティブスライドのみネイビー */
.swiper-slide-active .person-body {
  background: linear-gradient(to bottom, transparent, var(--navy) 55%);
}

.swiper-slide-active .person-name {
  color: #fff;
}

.swiper-slide-active .person-meta {
  color: rgba(255, 255, 255, .85);
}

.swiper-slide-active .person-desc {
  color: rgba(255, 255, 255, .75);
}

.swiper-slide-active .person-name {
  color: #fff;
}

.swiper-slide-active .person-meta {
  color: rgba(255, 255, 255, .85);
}

.swiper-slide-active .person-desc {
  color: rgba(255, 255, 255, .75);
}

.swiper-people {
  overflow: visible;
}

.nav-btn {
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-btn:hover {
  background: #142d56;
  color: #fff;
}


/* ============================================================
   CAREER
   ============================================================ */
.career-section {
  background: #fff;
  overflow: visible;
  position: relative;
}

.career-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 30%;
  bottom: 180px;
  background: var(--light-navy);
  z-index: 0;
}

.career-inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.career-text-side {
  padding: 0 max(32px, 5vw);
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  overflow: hidden;
}

.career-grid-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.career-grid-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.fu.show .career-grid-img::after {
  transform: translateX(101%);
}

.fu.show .career-grid-img:nth-child(2)::after {
  transition-delay: 0.1s;
}

.fu.show .career-grid-img:nth-child(3)::after {
  transition-delay: 0.2s;
}

.fu.show .career-grid-img:nth-child(4)::after {
  transition-delay: 0.3s;
}

.career-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform .4s ease, opacity 0.6s ease 0.4s;
}

.fu.show .career-grid-img img {
  opacity: 1;
}

.fu.show .career-grid-img:nth-child(2) img {
  transition-delay: 0.5s;
}

.fu.show .career-grid-img:nth-child(3) img {
  transition-delay: 0.6s;
}

.fu.show .career-grid-img:nth-child(4) img {
  transition-delay: 0.7s;
}

/* 上の行を左へ、下の行を右へオフセット */
.career-grid-img:nth-child(1),
.career-grid-img:nth-child(2) {
  transform: translateX(-24px);
}

.career-grid-img:nth-child(3),
.career-grid-img:nth-child(4) {
  transform: translateX(24px);
}

.career-desc {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
}


/* ============================================================
   ENVIRONMENT
   ============================================================ */
.env-section {
  background: #fff;
}

.env-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  padding-top: 8px;
}

.env-card {
  position: relative;
  overflow: hidden;
}

.env-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.env-card:hover img {
  transform: scale(1.04);
}

.env-card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 8px 20px;
  white-space: nowrap;
}


/* ============================================================
   RECRUIT INFO
   ============================================================ */
.recruit-section {
  background: #fff;
  padding-bottom: 0;
}

.recruit-panels {
  background: url("../images/recruit-section-bg.jpg")no-repeat top center/cover;
  display: grid;
  grid-template-columns: 65fr 35fr;
  margin-top: 0;
  padding: 3rem;
}

.recruit-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  text-decoration: none;
  transition: opacity .2s;
  background: #fff;
  position: relative;
}

.recruit-panel::before {
  content: "";
  background: url("../images/squair-arrow.svg")no-repeat top center/100% 100%;
  background-color: #fff;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.recruit-panel:hover {
  opacity: .8;
}

.recruit-panel--left,
.recruit-panel--right {}

.recruit-panel-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}


.accordion-body {
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  color: var(--muted);
}


/* ============================================================
   FOOTER BANNER
   ============================================================ */
.footer-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 200px;
  overflow: hidden;
  padding: 80px 0;
}

.footer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/footer-banner.jpg') center / cover no-repeat;
  z-index: 0;
}

.footer-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 90, 0.6);
  z-index: 1;
}

.footer-banner-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-banner-catch img {
  width: 100%;
  max-width: 420px;
  filter: brightness(0) invert(1);
}

.footer-banner-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-banner-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .2em;
  padding: 30px 50px;
  width: 100%;
  max-width: 545px;
  transition: opacity .2s;
}

.footer-banner-btn:hover {
  opacity: .85;
  color: #fff;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  color: var(--navy);
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 56px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding-top: 4px;
  padding-right: 1rem;
}

.footer-logo-col p {
  margin: 0;
}

.footer-logo-img {
  width: 100%;
  max-width: 230px;
  height: auto;
  min-height: 46px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.corporate-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: .75rem .5rem .75rem .5rem;
  font-size: .75rem;
  transition: opacity .2s;
  width: 100%;
}

.corporate-link:hover {
  opacity: .6;
}

.corporate-link::after {
  content: '↗';
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 4px 0;
  gap: 8px;
  transition: opacity .2s;
}

.footer-nav-heading::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--yellow);
  -webkit-mask: url('../images/icon-box.svg') center / contain no-repeat;
  mask: url('../images/icon-box.svg') center / contain no-repeat;
  flex-shrink: 0;
}

.footer-nav-heading>span:first-child {
  flex: 1;
}

span.footer-nav-heading {
  justify-content: flex-start;
}

.footer-nav-heading:hover {
  opacity: .6;
}

.footer-sub-list {
  margin-top: 8px;
  margin-bottom: 4px;
}

.footer-nav-heading+.footer-sub-list {
  border-top: 1px solid #d4dae8;
}

.footer-sub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #070f21;
  font-size: 14px;
  padding: 10px 0;
  transition: opacity .2s;
}

.footer-sub-item:hover {
  opacity: .6;
}

.footer-arrow {
  flex-shrink: 0;
  font-size: 13px;
  color: #bbc6df;
  transition: transform .2s ease;
}

.footer-nav-heading:hover .footer-arrow,
.footer-sub-item:hover .footer-arrow {
  transform: translateX(-4px);
}

.footer-policy {
  text-align: center;
  padding: 20px 0 12px;
  border-top: 1px solid #d4dae8;
}

.footer-policy-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-policy-link:hover {
  color: var(--navy);
}

.footer-copy {
  font-size: 12px;
  text-align: center;
  padding: 0 0 20px;
  color: var(--navy);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1399px) {
  .nums-heading::before {
    margin-top: 14px;
  }
}


@media (max-width: 991px) {


  /** COMMON **/
  section {
    padding: 44px 0;
  }

  /* 991px以下: 上スライダー → ロゴ → センター → 下スライダー */
  .hero {
    flex-direction: column;
  }

  .hero-col--left {
    order: 1;
    width: 100%;
    height: 22vh;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .hero-logo-band {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    justify-content: center;
    z-index: 5;
  }

  .hero-col--center {
    order: 3;
    width: 100%;
    flex: 1;
    z-index: 2;
  }

  .hero-col--right {
    order: 4;
    width: 100%;
    height: 22vh;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  /* 横スクロール切り替え */
  .scroll-track {
    flex-direction: row;
    height: 100%;
  }

  .scroll-track img,
  .scroll-track video {
    height: 100%;
    width: auto;
    aspect-ratio: 3 / 2;
  }

  .scroll-track--up {
    animation: scrollLeft 30s linear infinite;
  }

  .scroll-track--down {
    animation: scrollRight 30s linear infinite;
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes scrollRight {
    from {
      transform: translateX(-50%);
    }

    to {
      transform: translateX(0);
    }
  }

  /** INTRO **/
  .intro-lead {
    font-size: 2rem;
  }

  /** MESSAGE **/
  .msg-quote {
    font-size: 2.25rem;
  }

  .msg-texts {
    font-size: 1rem;
  }

  /** ABOUT AS **/
  .aboutas-title {
    margin-bottom: 1rem !important;
  }

  .aboutas-card-title {
    font-size: 1.5rem;
  }

  .aboutas-card-text {
    font-size: 1rem;
  }

  .aboutas-card-body {
    padding: 1rem;
  }

  /** NUMBERS **/
  .stat-val {
    font-size: 4rem;
  }

  .stat-unit {
    font-size: 2rem;
  }

  .stat-sub {
    font-size: 3rem;
  }

  .stat-sub-unit {
    font-size: 1.5rem;
  }

  .numbers-bg-center img {
    width: 100%;
    height: auto;
  }

  /** RECRUIT **/
  .recruit-panel {
    min-height: 180px;
  }

  .recruit-panel-title {
    font-size: 1.8rem;
  }

  .recruit-panel::before {
    content: "";
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
  }

  /** PEAPLE **/
  .person-meta {
    margin-bottom: 0;
  }

  .person-desc {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /** COURSES **/
  .courses-panels {
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 44px;
  }

  .course-panel {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .course-panel--n {
    padding: 64px 40px 96px;
    background: url('../images/top-ncourse-bg.jpg') center/ cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%);
    align-items: flex-start;
  }

  .course-panel--a {
    margin-top: -52px;
    padding: 96px 40px 64px;
    background: url('../images/top-acourse-bg.jpg') center/ cover no-repeat;
    clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
    align-items: flex-start;
    justify-content: flex-end;
  }

  .course-panel--n .course-panel-content,
  .course-panel--a .course-panel-content {
    max-width: 600px;
    padding: 0;
    text-align: left;
  }
}

@media (max-width: 767px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo-col {
    align-items: center;
  }

  .corporate-link {
    text-align: center;
    width: auto;
    margin: auto;
  }

  .hero-logo-band {
    /* top:56px だと relative オフセットで下の hero-center に被るため、
       通常フロー位置（top:0）に置いて重なりを解消 */
    top: 0;
    background: #fff;
    padding: 20px 20px;
  }

  .nums-heading::before {
    margin-top: 11px;
  }

  .hero-col--center {
    width: 100%;
    z-index: 4;
  }

  /** site-header **/
  .btn-entry {
    min-width: 160px;
  }

  /** COURSE **/
  .courses-section {
    padding: 0;
  }

  .course-card {
    padding: 30px 22px;
  }

  .course-panel--n,
  .course-panel--a {
    padding-right: 12px;
    padding-left: 12px;
  }

  /** CAREER **/
  .career-inner {
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .career-img-side {
    margin-top: 3rem;
  }

  .know-nav li a {
    padding: 18px 14px;
    font-size: 11px;
  }

  /** RECRUIT PANELS **/
  .recruit-panels {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  /** FOOTER BANNER **/
  .footer-banner {
    grid-template-columns: 1fr;
  }

  .footer-banner-btn-wrap {
    padding: 48px 40px 0;
  }

  /** FOOTER **/
  .footer-grid {
    gap: 30px;
  }
}


/* ── SP 横向き等、画面高が低い時にヒーローを画面内へ収める ── */
@media (max-width: 991px) and (max-height: 500px) {
  .hero {
    /* 560px 固定をやめ、ビューポート高（JSの inline height）に従わせる */
    min-height: 0;
  }

  /* 上下スライダーを薄くして中央コピーの領域を確保 */
  .hero-col--left,
  .hero-col--right {
    height: 20vh;
  }

  /* ロゴ（元 976×879 の縦長）を縮小し、帯の余白も詰める */
  .hero-logo-band {
    top: 0 !important;
    padding: 6px 20px;
  }

  .hero-logo {
    width: 96px;
  }

  .hero-center {
    padding: 4px 12px;
  }

  /* キャッチコピー画像を高さ基準でも収まるよう制限 */
  .hero-catch-img {
    width: auto;
    max-width: 60vw;
    max-height: 100%;
  }

  /* 省スペースのためスクロール指標は非表示 */
  .hero-scroll {
    display: none;
  }
}

/* ============================================================
   INNER PAGE TOP  (shared: numbers, message, …)
   ============================================================ */
.inner-page-top {
  margin-top: 80px;
  padding-top: 130px;
  padding-bottom: 130px;
  background-image: var(--page-top-bg, url("../images/head-etc.png"));
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  background-color: #fff;
  border-bottom: 1px solid #b6c0da;
  overflow: hidden;
  position: relative;
}

.inner-page-bg-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.05em;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  color: var(--yellow);
  opacity: 0.08;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.inner-page-top .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .inner-page-top::before {
    content: "";
    background: linear-gradient(rgb(255 255 255 / 0.75) 0%, rgb(246 249 255 / 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

@media (max-width: 767px) {
  .inner-page-top {
    margin-top: 45px;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .inner-page-top::before {
    background: linear-gradient(rgb(255 255 255 / 0.8) 0%, rgb(246 249 255 / 0.75) 100%);
  }
}


/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.site-header-inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
}

.site-header-inner--transparent {
  background: transparent;
  box-shadow: none;
  left: auto;
  width: 400px;
}

.site-header-inner--transparent .header-top {
  margin-left: auto;
}

.header-inner-logo {
  display: flex;
  align-items: center;
  padding: 0 30px;
  flex-shrink: 0;
}

.header-inner-logo-img {
  height: 49.23px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .header-inner-logo {
    padding: 0 16px;
    width: 40%;
  }

  .header-inner-logo-img {
    /* logo.svg は width/height 属性が無く viewBox のみのため、
       width:auto のままだと iOS Safari で巨大化する。
       親(.header-inner-logo: width:40%)に対して幅を固定して回避 */
    width: 100%;
    height: auto;
  }

  .btn-entry {
    height: 45px;
  }

  .hamburger {
    width: 45px;
    height: 45px;
  }
}