/* ===========================
   Medical Editorial Design
   Refined Color Balance
   Ivory / Bordeaux / Smoky Blue
=========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #2F2A28;
  --black-mid: #443C39;
  --black-light: #5A504C;

  --gold: #6F2B3D;
  --gold-light: #9A6673;
  --gold-pale: #EFE5E7;

  --blue: #A8BCC7;
  --blue-light: #E4ECEF;

  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --ivory-dark: #EEEAE3;

  --gray-dark: #746C68;
  --gray-mid: #514A47;
  --gray-light: #DDD7D1;

  --black-rgb: 47, 42, 40;
  --gold-rgb: 111, 43, 61;
  --blue-rgb: 168, 188, 199;
}

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

body {
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.u-pre-line {
  white-space: pre-line;
}

/* ===========================
   ヘッダー
=========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(248, 246, 241, 0.94);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 64px));
  height: 76px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.08em;
}

.logo-main span:last-child {
  color: var(--gold);
}

.logo-sub {
  margin-top: 5px;
  font-size: 0.58rem;
  color: var(--gray-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.global-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: var(--gold);
  transition: width 0.25s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 24px !important;
  color: var(--white) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: var(--gold) !important;
  background: transparent;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--black);
}

/* ===========================
   ヒーロー
=========================== */

#hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 76px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 25%,
      rgba(var(--blue-rgb), 0.12),
      transparent 30%
    ),
    linear-gradient(
      110deg,
      #FBFAF7 0%,
      #F8F6F1 58%,
      #F0ECE6 100%
    );
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  bottom: 0;
  width: 1px;
  background: rgba(var(--black-rgb), 0.1);
}

#hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -12%;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-line-1 {
  position: absolute;
  top: 18%;
  right: 7%;
  width: 24%;
  height: 1px;
  background: rgba(var(--black-rgb), 0.12);
}

.hero-line-2 {
  position: absolute;
  right: 16%;
  bottom: 17%;
  width: 15%;
  height: 1px;
  background: rgba(var(--gold-rgb), 0.58);
}

.hero-gold-block {
  position: absolute;
  top: 19%;
  right: 8%;
  width: 28%;
  height: 62%;
  background:
    linear-gradient(
      180deg,
      rgba(var(--blue-rgb), 0.32),
      rgba(var(--blue-rgb), 0.12)
    );
  border-radius: 50% 50% 4px 4px;
  opacity: 0.78;
}

.hero-gold-block::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 15%;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(var(--black-rgb), 0.14);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.4vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--black);
  letter-spacing: -0.045em;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--gold-rgb), 0.32);
}

.hero-title-sub {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--gray-mid);
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.hero-desc {
  max-width: 500px;
  margin-bottom: 44px;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 2;
  border-left: 3px solid var(--gold);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 68px;
}

.btn-gold,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  color: var(--gold);
  background: transparent;
  transform: translateY(-3px);
}

.btn-outline-gold {
  color: var(--black);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(var(--black-rgb), 0.28);
}

.btn-outline-gold:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 54px;
  max-width: 690px;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--black-rgb), 0.12);
}

.hero-stat-num {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: var(--gray-dark);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===========================
   マーキー
=========================== */

#marquee-band {
  padding: 15px 0;
  overflow: hidden;
  color: var(--off-white);
  background: var(--gold);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--off-white);
  border-radius: 50%;
}

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

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

/* ===========================
   共通セクション
=========================== */

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 17px;
}

.section-label-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-label-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.section-title-dark,
.section-title-light {
  color: var(--black);
}

.section-sub {
  max-width: 680px;
  margin: 0 auto 62px;
  font-size: 0.88rem;
  line-height: 1.9;
  text-align: center;
}

.section-sub-dark,
.section-sub-light {
  color: var(--gray-dark);
}

/* ===========================
   ABOUT
=========================== */

#about {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: var(--white);
}

#about::before {
  content: "ABOUT";
  position: absolute;
  top: 40px;
  right: -12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  color: rgba(var(--gold-rgb), 0.022);
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.about-label-line {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.about-label-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-title {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.about-body {
  font-size: 0.94rem;
  color: var(--gray-mid);
  line-height: 2.15;
}

.about-body p + p {
  margin-top: 18px;
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
}

.about-sig-line {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.about-sig-role {
  font-size: 0.68rem;
  color: var(--gray-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-sig-name {
  margin-top: 3px;
  font-size: 1.08rem;
  font-weight: 700;
}

/* ===========================
   会社概要
=========================== */

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-left: 3px solid var(--gold);
}

.company-table th,
.company-table td {
  padding: 19px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-light);
}

.company-table th {
  width: 34%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-table td {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: 1px solid var(--gray-light);
}

/* ===========================
   BUSINESS
=========================== */

#business {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--off-white) 0%,
      var(--ivory-dark) 100%
    );
}

#business::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -10%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: 50%;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}

.biz-card,
.biz-card:nth-child(2),
.biz-card:nth-child(3) {
  position: relative;
  min-height: 330px;
  padding: 42px 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.3s,
    background 0.3s;
}

.biz-card {
  border-top: 4px solid var(--gold);
}

.biz-card:nth-child(2) {
  border-top-color: var(--blue);
}

.biz-card:nth-child(3) {
  border-top-color: var(--black);
}

.biz-card:hover {
  background: var(--white);
  transform: translateY(-8px);
}

.biz-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 50%;
}

.biz-num {
  margin-bottom: 46px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  color: rgba(var(--gold-rgb), 0.62);
  line-height: 1;
}

.biz-card h3 {
  margin-bottom: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.55;
}

.biz-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 2;
}

/* ===========================
   RECRUIT
=========================== */

#recruit {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: var(--blue-light);
}

#recruit::before {
  content: "RECRUIT";
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12rem;
  color: rgba(var(--black-rgb), 0.03);
  line-height: 1;
  letter-spacing: -0.05em;
}

.recruit-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 56px;
  background: transparent;
  border-top: 1px solid rgba(var(--black-rgb), 0.16);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.16);
}

.recruit-overview-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 26px;
  background: transparent;
  border-right: 1px solid rgba(var(--black-rgb), 0.13);
}

.recruit-overview-card:last-child {
  border-right: 0;
}

.recruit-overview-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
}

.recruit-overview-icon i {
  font-size: 1.05rem;
}

.recruit-overview-text h4 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  color: var(--gold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.recruit-overview-text p {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
}

.recruit-overview-text small {
  font-size: 0.72rem;
  color: var(--gray-dark);
}

.recruit-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 19px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(var(--black-rgb), 0.24);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.prefecture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pref-card {
  position: relative;
  padding: 22px 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  transition:
    transform 0.25s,
    background 0.25s;
}

.pref-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s;
}

.pref-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.pref-card:hover::before {
  width: 100%;
}

.pref-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.pref-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.pref-region-badge {
  flex: 0 0 auto;
  padding: 3px 7px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(var(--gold-rgb), 0.16);
}

.pref-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.pref-info-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.73rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.pref-info-row i {
  width: 12px;
  margin-top: 0.35em;
  color: var(--gold);
}

.pref-salary {
  padding: 8px 10px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: var(--black);
}

.recruit-cta {
  margin-top: 62px;
  text-align: center;
}

.recruit-cta p {
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.8;
}

/* ===========================
   CTA
=========================== */

#cta-banner {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  text-align: center;
  background: var(--off-white);
}

#cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

.cta-inner h2 span {
  color: var(--gold);
}

.cta-inner p {
  margin-bottom: 44px;
  font-size: 0.91rem;
  color: var(--gray-dark);
  line-height: 1.9;
}

/* ===========================
   CONTACT
=========================== */

#contact {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: var(--gold);
}

#contact .section-title-light,
#contact .section-title-dark {
  color: var(--white);
}

#contact .section-sub-light,
#contact .section-sub-dark {
  color: rgba(255, 255, 255, 0.7);
}

#contact .section-label-text {
  color: var(--white);
}

#contact .section-label-line {
  background: var(--white);
}

.contact-form-wrap {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 56px 50px;
  background: var(--off-white);
  border: 0;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 5px;
  background: var(--blue);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-group label .req {
  margin-left: 6px;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 0;
  appearance: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.08);
}

.form-group textarea {
  min-height: 145px;
  resize: vertical;
}

.form-error {
  display: none;
  margin-top: 5px;
  font-size: 0.72rem;
  color: #B32828;
}

.form-submit {
  margin-top: 34px;
  text-align: center;
}

.form-submit button {
  min-width: 230px;
  padding: 15px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition:
    color 0.25s,
    background 0.25s,
    transform 0.25s;
}

.form-submit button:hover {
  color: var(--gold);
  background: transparent;
  transform: translateY(-3px);
}

.form-success {
  display: none;
  padding: 46px 20px;
  text-align: center;
}

.form-success i {
  display: block;
  margin-bottom: 18px;
  font-size: 2.8rem;
  color: var(--gold);
}

.form-success h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--gray-dark);
}

/* ===========================
   フッター
=========================== */

.site-footer {
  padding: 68px 0 32px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 54px;
}

.footer-logo-main {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.footer-logo-main span:last-child {
  color: var(--gold-light);
}

.footer-logo-sub {
  margin-bottom: 22px;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-address {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.9;
}

.footer-nav-title {
  margin-bottom: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.67rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav-list li {
  margin-bottom: 11px;
}

.footer-nav-list a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.07em;
}

.footer-gold-line {
  width: 34px;
  height: 1px;
  background: var(--gold-light);
}

/* ===========================
   トップへ戻る
=========================== */

#back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

#back-top.visible {
  display: flex;
}

#back-top:hover {
  background: var(--black);
  transform: translateY(-4px);
}

/* ===========================
   アニメーション
=========================== */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

/* ===========================
   レスポンシブ
=========================== */

@media (max-width: 1024px) {
  .header-inner,
  .hero-inner,
  .section-inner,
  .about-grid,
  .footer-inner {
    width: min(100% - 48px, 1100px);
  }

  .about-grid {
    gap: 56px;
  }

  .prefecture-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-gold-block {
    right: -5%;
    width: 36%;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .biz-card {
    min-height: auto;
  }

  .recruit-overview {
    grid-template-columns: 1fr;
  }

  .recruit-overview-card {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--black-rgb), 0.13);
  }

  .recruit-overview-card:last-child {
    border-bottom: 0;
  }

  .prefecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .header-inner {
    width: calc(100% - 36px);
    height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 16px 22px 24px;
    background: rgba(248, 246, 241, 0.98);
    border-bottom: 1px solid var(--gray-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition:
      opacity 0.3s,
      transform 0.3s;
  }

  .global-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-nav li {
    border-bottom: 1px solid var(--gray-light);
  }

  .global-nav li:last-child {
    padding-top: 16px;
    border-bottom: 0;
  }

  .global-nav a {
    display: block;
    padding: 14px 0;
  }

  .nav-cta {
    text-align: center;
  }

  #hero {
    min-height: auto;
    padding-top: 64px;
  }

  #hero::after {
    top: 7%;
    right: -55%;
  }

  .hero-gold-block {
    top: 0;
    right: -35%;
    width: 70%;
    height: 46%;
    opacity: 0.42;
  }

  .hero-line-1,
  .hero-line-2 {
    display: none;
  }

  .hero-inner,
  .section-inner,
  .about-grid,
  .footer-inner {
    width: calc(100% - 40px);
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  #about,
  #business,
  #recruit,
  #contact {
    padding: 90px 0;
  }

  #cta-banner {
    padding: 96px 0;
  }

  .contact-form-wrap {
    padding: 42px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .logo-main {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .hero-inner,
  .section-inner,
  .about-grid,
  .footer-inner {
    width: calc(100% - 36px);
  }

  .hero-inner {
    padding-top: 66px;
    padding-bottom: 58px;
  }

  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-eyebrow-line {
    width: 30px;
  }

  .hero-eyebrow-text {
    font-size: 0.63rem;
    letter-spacing: 0.11em;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 12vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-title-sub {
    margin-bottom: 26px;
    font-size: 0.95rem;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }

  .hero-desc {
    margin-bottom: 34px;
    padding-left: 15px;
    font-size: 0.86rem;
    line-height: 1.9;
  }

  .hero-btns {
    flex-direction: column;
    margin-bottom: 44px;
  }

  .btn-gold,
  .btn-outline-gold {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .hero-stat-num {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-sub {
    margin-bottom: 40px;
    font-size: 0.83rem;
  }

  .about-title {
    font-size: 1.72rem;
  }

  .about-body {
    font-size: 0.88rem;
  }

  .company-table {
    border-left-width: 3px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 11px 16px;
  }

  .company-table th {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .company-table td {
    padding-top: 3px;
  }

  .biz-card {
    padding: 34px 24px;
  }

  .biz-num {
    margin-bottom: 28px;
    font-size: 2rem;
  }

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

  .recruit-overview-card {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .recruit-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    overflow-x: auto;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .contact-form-wrap {
    padding: 34px 21px;
  }

  .form-submit button {
    width: 100%;
    min-width: 0;
  }

  #back-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  #about::before,
  #recruit::before {
    font-size: 6rem;
  }
}