/* ============================================
   AIR WATER EAST JAPAN — New Graduate Recruitment
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c-navy:      #003db8;
  --c-navy-mid:  #0a55d0;
  --c-blue:      #1a70e8;
  --c-sky:       #4da6ff;
  --c-sky-light: #a0d0ff;
  --c-white:     #ffffff;
  --c-gray-bg:   #f2f4f7;
  --c-gray-line: #d0d5dd;
  --c-gray-text: #6b7280;
  --c-dark:      #111827;

  --ff-serif:    "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --ff-sans:     "Noto Sans JP", "游ゴシック", "Yu Gothic", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-sans);
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Utility ---------- */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
}

.section-label--light {
  color: var(--c-sky-light);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.2rem, 2vw, 2rem);
  }
}
.section-desc {
  margin-top: 1.25rem;
  color: var(--c-gray-text);
  font-size: 0.95rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .section-desc {
    font-size: 0.8rem;
  }
}
/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in.is-visible:nth-child(2) { transition-delay: 0.12s; }
.fade-in.is-visible:nth-child(3) { transition-delay: 0.24s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 72px; /* 高さを明示 */
  background-color: white;
}
@media (max-width: 768px) {
  .header {
    padding: 0 1rem;
    height: 60px; /* スマホ時は少し高さを抑える */
    background-color: rgba(255, 255, 255, 0.95); /* 少し透過させて背後を確認しやすくする */
    backdrop-filter: blur(8px);
  }
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%; /* 親（header）の高さに合わせる */
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem 2rem;
}
@media (max-width: 768px) {
  .header__logo {
    gap: 0 10px;
  }
}
.header__logo img {
  width: 320px;
  height: auto;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .header__logo img {
    width: 200px;
  }
}
.header__logo-main {
  font-family: var(--ff-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-white);
}

.header__logo-sub {
  font-size: 0.9rem;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  border-left: 1px solid var(--c-navy);
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .header__logo-sub {
    padding: 0;
    border: none;
    font-size: 0.6rem;
    margin-bottom: -0.9rem;
    letter-spacing: 0.05em;
  }
}

.header__nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.header__nav-list a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .header__nav-list a {
    color: var(--c-white);
  }
}

.header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-sky);
  transition: width 0.3s var(--ease-out);
}

.header__nav-list a:hover {
  color: var(--c-blue);
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__nav-entry {
  background: var(--c-blue);
  color: var(--c-white) !important;
  padding: 0.55rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s !important;
}

.header__nav-entry:hover {
  background: var(--c-sky);
}

.header__nav-entry::after {
  display: none !important;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
    margin-left: auto;
  }
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy); /* 白背景で見えるように濃い青に変更 */
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.is-open span {
  background: var(--c-white); /* メニュー展開時は背景が濃いので白に戻す */
}

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

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 10vh;
    min-height: 50vh;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 50%, var(--c-blue) 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26, 112, 232, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(77, 166, 255, 0.25) 0%, transparent 50%);
}
.hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  opacity: 0.8;
  animation: heroBgScroll 60s linear infinite;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__bg-img {
  animation: heroBgScroll 20s linear infinite;
  }
}
.hero__bg-img img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero__bg-img img {
    width: 300%;
    height: 100%;
    object-fit: contain;
  }
}
@keyframes heroBgScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 0 1.5rem;
}
.hero__content:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  border-radius: 9999px;
  filter: blur(100px);
  scale: 1.2;
}

.hero__lead {
  font-family: var(--ff-serif);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  color: var(--c-white);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: linear-gradient(90deg, var(--c-sky-light), var(--c-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 2.2;
  color: rgba(255,255,255,1);
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero Stats */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .hero__stats {
    flex-direction: row;
  }
}
.hero__stat {
  flex: 0 1 300px;
  padding: 2rem 2.5rem;
  text-align: center;
  color: var(--c-white);
  position: relative;
}

@media (max-width: 768px) {
  .hero__stat {
    flex: 1 1 33.333%;
    padding: 1rem 0;
  }
}
.hero__stat + .hero__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.hero__stat-num {
  font-family: var(--ff-sans);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-white);
}
@media (max-width: 768px) {
  .hero__stat-num {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  }
}
.hero__stat-unit {
  font-size: 0.85rem;
  color: var(--c-white) !important;
  margin-left: 0rem;
}
@media (max-width: 768px) {
  .hero__stat-unit {
    font-size: 0.75rem;
  }
}

.hero__stat-compound {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  color: var(--c-white);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .hero__stat-label {
    font-size: 0.65rem;
  }
}
/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
  background: var(--c-gray-bg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .intro {
    padding: 4rem 1.5rem;
  }
}
.intro::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,112,232,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .intro__inner {
    text-align: left;
    br{
      display: none;
    }
  }
}
.intro__catch {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.intro__catch strong {
  background: linear-gradient(transparent 60%, rgba(26,112,232,0.18) 60%);
}

.intro__desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--c-gray-text);
  line-height: 2.2;
  letter-spacing: 0.03em;
}

/* ============================================
   MESSAGE
   ============================================ */
.message {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
  background: var(--c-white);
  overflow: hidden;
}

@media (max-width: 768px) {
  .message {
    padding: 4rem 1.5rem;
  }
}
.message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}

.message__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.message__header {
  margin-bottom: 3rem;
}

.message__header .section-title {
  color: var(--c-white);
}

.message__header .section-label {
  color: var(--c-sky-light);
}

.message__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.message__quote {
  position: relative;
  padding: 3rem 0 0 0;
}

.message__quote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  font-family: var(--ff-serif);
  font-size: 8rem;
  color: rgba(77, 166, 255, 0.18);
  line-height: 1;
}

.message__quote-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--c-white);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .message__quote-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    letter-spacing: 0.04em;
  }
}
.message__content {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .message__content {
    margin: 0 -1.5rem;
    padding: 2rem 1.5rem;
    background: var(--c-white);
  }
}

.message__content p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--c-gray-text);
  margin-bottom: 1.25rem;
}

.message__name {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-dark) !important;
  margin-top: 2rem !important;
  line-height: 1.8;
}

/* ============================================
   BUSINESS
   ============================================ */
.business {
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
  background: var(--c-gray-bg);
}

.business__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.business__header {
  text-align: center;
  margin-bottom: 4rem;
}

.business__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.business__card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  position: relative;
}

/* .business__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 48, 150, 0.12);
} */

.business__card-visual {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.business__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business__card-icon {
  width: 80px;
  height: 80px;
}

.business__card-icon svg {
  width: 100%;
  height: 100%;
}

.business__card-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

.business__card-body {
  padding: 2rem;
}

.business__card-axis {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-blue);
  border: 1px solid var(--c-blue);
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.business__card-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.business__card-text {
  font-size: 0.875rem;
  color: var(--c-gray-text);
  line-height: 2;
}

/* ============================================
   RECRUIT
   ============================================ */
.recruit {
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
  background: var(--c-white);
}

.recruit__inner {
  max-width: 900px;
  margin: 0 auto;
}

.recruit__header {
  text-align: center;
  margin-bottom: 3rem;
}

.recruit__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--c-gray-line);
}

.recruit__tab {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-gray-text);
  position: relative;
  transition: color 0.3s;
}

.recruit__tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-blue);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.recruit__tab.is-active {
  color: var(--c-blue);
}

.recruit__tab.is-active::after {
  transform: scaleX(1);
}

.recruit__panel {
  display: none;
  animation: fadePanel 0.4s var(--ease-out);
}

.recruit__panel.is-active {
  display: block;
}

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
}

.recruit__table tr {
  border-bottom: 1px solid var(--c-gray-line);
}

.recruit__table th,
.recruit__table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
  vertical-align: top;
}

.recruit__table th {
  width: 140px;
  font-weight: 600;
  color: var(--c-navy);
  white-space: nowrap;
  background: var(--c-gray-bg);
  border-right: 3px solid var(--c-blue);
}

.recruit__table td {
  color: var(--c-dark);
}

/* ============================================
   ENTRY
   ============================================ */
.entry {
  position: relative;
  padding: clamp(6rem, 14vw, 12rem) 1.5rem;
  background:
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
}

.entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 120%, rgba(77,166,255,0.3) 0%, transparent 60%);
}

.entry__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.entry__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .entry__title {
    font-size: clamp(1.2rem, 2vw, 2rem);
  }
}

.entry__text {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .entry__text {
    br{
      display: none;
    }
  }
}

.entry__buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.entry__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.entry__btn svg {
  transition: transform 0.3s var(--ease-out);
}

.entry__btn:hover svg {
  transform: translateX(4px);
}

.entry__btn--primary {
  background: var(--c-white);
  color: var(--c-navy);
}

.entry__btn--primary:hover {
  background: var(--c-sky-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.entry__btn--secondary {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.entry__btn--secondary:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-gray-bg);
  padding: 4rem 1.5rem;
  text-align: center;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__nav a {
  font-size: 0.8rem;
  color: var(--c-black);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--c-blue);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--c-dark);
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .business__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .message__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .message__bg {
    width: 100%;
    height: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .message__header .section-title,
  .message__header .section-label {
    color: var(--c-white);
  }

  .message__quote-text {
    color: var(--c-white);
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(0, 40, 150, 0.97);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  .header__nav-list a {
    font-size: 1rem;
  }

  .header__hamburger {
    display: flex;
  }


  .entry__buttons {
    flex-direction: column;
    align-items: center;
  }

  .entry__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .recruit__table th,
  .recruit__table td {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .recruit__table th {
    border-right: none;
    border-bottom: none;
    padding-bottom: 0.25rem;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__lead {
    font-size: 0.75rem;
  }

  .intro__catch {
    font-size: 1.35rem;
  }

  .recruit__tab {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}
