/* =========================================
Base
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

a:hover {
  opacity: 0.9;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
}

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

.inner {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.inner.narrow {
  width: min(100% - 32px, 900px);
}

.section {
  padding: 88px 0;
}

.section-bg {
  background: linear-gradient(180deg, #f7fcfb 0%, #ffffff 100%);
}

.section-title {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.4;
  text-align: center;
  color: #2c7a7b;
  letter-spacing: 0.03em;
}

.section-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.95;
  text-align: center;
}

.page-paragraph {
  font-size: 1.125rem;
  line-height: 2;
}

.page-paragraph + .page-paragraph {
  margin-top: 20px;
}

.pc-none {
  display: none;
}

/* =========================================
Header
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 8px 24px rgba(44, 122, 123, 0.06);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: inline-flex;
  align-items: center;
}

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

.global-nav {
  margin-left: auto;
}

.global-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav-list li {
  flex-shrink: 0;
  margin: 0 14px;
}

.global-nav-list a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  color: #333333;
}

.global-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2c7a7b 0%, #8bd1cc 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.global-nav-list a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f4fbfa;
  border: 1px solid rgba(44, 122, 123, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: #2c7a7b;
  white-space: nowrap;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c7a7b 0%, #4fa8a2 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  border: none;
  box-shadow: 0 10px 20px rgba(44, 122, 123, 0.18);
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(44, 122, 123, 0.22);
  opacity: 1;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
}

/* =========================================
Mobile Navigation
========================================= */
.mobile-nav {
  display: none;
}

.mobile-nav-contact {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mobile-nav-tel,
.mobile-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.mobile-nav-tel {
  background: #ffffff;
  color: #2c7a7b;
  border: 2px solid #2c7a7b;
}

.mobile-nav-btn {
  background: linear-gradient(135deg, #2c7a7b 0%, #4fa8a2 100%);
  color: #ffffff;
}

/* =========================================
Cards
========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  height: 100%;
  padding: 34px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 12px 30px rgba(44, 122, 123, 0.08);
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #2c7a7b;
}

.card p {
  font-size: 1rem;
  line-height: 1.9;
}

/* =========================================
Company
========================================= */
.company-table {
  max-width: 900px;
  margin: 40px auto 0;
  border-top: 1px solid #d9e7e7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(44, 122, 123, 0.06);
}

.company-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #d9e7e7;
}

.company-row dt,
.company-row dd {
  padding: 20px;
}

.company-row dt {
  font-weight: 700;
  background-color: #f3fbfa;
  color: #2c7a7b;
}

.company-row dd {
  background-color: #ffffff;
}

/* =========================================
News List
========================================= */
.news-list {
  max-width: 900px;
  margin: 40px auto 0;
  border-top: 1px solid #d9e7e7;
}

.news-item {
  border-bottom: 1px solid #d9e7e7;
}

.news-item a {
  display: flex;
  gap: 24px;
  padding: 20px 0;
}

.news-item time {
  min-width: 110px;
  font-weight: 700;
  color: #2c7a7b;
}

/* =========================================
Page
========================================= */
.page-hero {
  padding: 88px 0 48px;
  background: linear-gradient(180deg, #f5fbf8 0%, #ffffff 100%);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #666666;
}

.breadcrumb a {
  color: #2c7a7b;
}

.breadcrumb span {
  margin: 0 4px;
}

.page-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4;
  text-align: center;
  color: #2c7a7b;
}

.page-text {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.9;
}

/* =========================================
Contact
========================================= */
.contact-box {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 40px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 122, 123, 0.08);
}

.contact-lead {
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.contact-tel {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2c7a7b;
  line-height: 1.4;
}

.contact-hours {
  color: #666666;
}

.contact-form-wrap {
  max-width: 900px;
  margin: 40px auto 0;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-item {
  display: grid;
  gap: 10px;
}

.form-label {
  font-weight: 700;
  color: #2c7a7b;
}

.required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #2c7a7b;
  color: #ffffff;
  font-size: 0.75rem;
  vertical-align: middle;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cfdede;
  border-radius: 12px;
  background-color: #ffffff;
  font: inherit;
}

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

.form-check {
  align-items: start;
}

.form-check-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
}

.form-submit {
  text-align: center;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c7a7b 0%, #4fa8a2 100%);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(44, 122, 123, 0.16);
}

/* =========================================
Privacy Policy
========================================= */
.policy-content {
  display: grid;
  gap: 40px;
}

.policy-section {
  display: grid;
  gap: 16px;
}

.policy-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #2c7a7b;
}

.policy-list {
  padding-left: 1.5em;
  list-style: disc;
}

.policy-list li + li {
  margin-top: 8px;
}

.policy-contact {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  background-color: #f8fbfb;
}

@media screen and (max-width: 1024px) {
  .top-about-points {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .recruit-panel,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .company-intro {
    position: static;
  }

  .company-row {
    grid-template-columns: 160px 1fr;
  }

  .top-flow::before {
    display: none;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-step::after {
    top: auto;
    right: 50%;
    bottom: -16px;
    transform: translateX(50%) rotate(135deg);
  }
}

@media screen and (max-width: 767px) {
  .top-about {
    padding-top: 56px;
  }

  .top-news-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-news-item-link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 18px;
  }

  .recruit-content,
  .recruit-side-card,
  .company-summary-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .recruit-title,
  .company-title {
    text-align: center;
  }

  .recruit-text,
  .company-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .recruit-actions,
  .company-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary-soft,
  .company-actions .btn-outline,
  .company-actions .btn-text {
    width: 100%;
    justify-content: center;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row dt,
  .company-row dd {
    padding: 16px 18px;
  }

  .company-row dt {
    padding-bottom: 8px;
  }

  .company-row dd {
    padding-top: 0;
  }

  .flow-steps {
    gap: 18px;
    margin-top: 28px;
  }

  .flow-step {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .flow-step h3 {
    font-size: 1.25rem;
  }

  .flow-step::after {
    width: 24px;
    height: 24px;
    bottom: -12px;
  }

  .top-about-label {
    margin-bottom: 14px;
  }

  .top-about-points {
    gap: 16px;
    margin-top: 28px;
  }

  .about-point {
    padding: 26px 20px 22px;
    border-radius: 20px;
  }

  .about-point h3 {
    font-size: 1.2rem;
  }

  .top-about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-label {
    margin-bottom: 14px;
  }

  .service-card,
  .reason-card {
    padding: 26px 20px 22px;
    border-radius: 20px;
  }

  .service-card h3,
  .reason-card h3 {
    font-size: 1.2rem;
  }

  .reason-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .btn-outline,
  .btn-text {
    justify-content: center;
    width: 100%;
  }
}

/* =========================================
Responsive
========================================= */
@media screen and (max-width: 1024px) {
  .global-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fcfb 0%, #eef8f7 100%);
    box-shadow:
      0 8px 20px rgba(44, 122, 123, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background-color 0.25s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow:
      0 10px 24px rgba(44, 122, 123, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .menu-toggle:focus-visible {
    outline: 3px solid rgba(44, 122, 123, 0.18);
    outline-offset: 3px;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    height: 2px;
    background: #2c7a7b;
    border-radius: 999px;
    transform: translateX(-50%);
    transition:
      transform 0.32s ease,
      opacity 0.24s ease,
      width 0.24s ease,
      top 0.32s ease,
      bottom 0.32s ease,
      background-color 0.24s ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 15px;
    width: 16px;
  }

  .menu-toggle span:nth-child(2) {
    top: 50%;
    width: 22px;
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(3) {
    bottom: 15px;
    width: 16px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    top: 50%;
    width: 22px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

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

  .menu-toggle.is-open span:nth-child(3) {
    top: 50%;
    bottom: auto;
    width: 22px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(44, 122, 123, 0.08);
    box-shadow: 0 16px 30px rgba(44, 122, 123, 0.12);
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav-list {
    display: grid;
    gap: 12px;
  }

  .mobile-nav-list a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f7fbfb;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
  }

  .hero {
    min-height: 680px;
    background-position: 62% center;
  }

  .hero-content {
    max-width: 600px;
    padding: 100px 0 88px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.9;
  }

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

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row dt,
  .company-row dd {
    padding: 16px;
  }

  .news-item a {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .header-inner {
    min-height: 78px;
  }

  .header-logo img {
    width: 172px;
  }

  .mobile-nav {
    top: 78px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0) 100%
      ),
      url("../img/top/hero.jpg") center center / cover no-repeat;
  }

  .hero::after {
    left: -100px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(
      circle,
      rgba(126, 201, 196, 0.22) 0%,
      rgba(126, 201, 196, 0.1) 42%,
      rgba(126, 201, 196, 0) 72%
    );
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-sub {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1.45;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-points {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-points li {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    text-align: center;
  }

  .hero-buttons a.btn-primary,
  .hero-buttons a.btn-secondary {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .top-news {
    padding: 44px 0;
  }

  .top-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .top-news-title {
    font-size: 26px;
  }

  .top-news-item-link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .top-news-date {
    font-size: 13px;
  }

  .top-news-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 599px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .menu-toggle span:nth-child(1) {
    top: 13px;
  }

  .menu-toggle span:nth-child(2) {
    width: 21px;
  }

  .menu-toggle span:nth-child(3) {
    bottom: 13px;
  }

  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) {
    width: 21px;
  }

  body {
    font-size: 15px;
  }

  .inner,
  .inner.narrow {
    width: min(100% - 24px, 1200px);
  }

  .section {
    padding: 68px 0;
  }

  .section-title,
  .cta-title {
    font-size: 1.75rem;
  }

  .section-text,
  .page-text,
  .page-paragraph,
  .cta-text {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 72px;
  }

  .header-logo img {
    width: 180px;
  }

  .mobile-nav {
    top: 72px;
    padding: 16px 12px 20px;
  }

  .mobile-nav-list a {
    padding: 13px 14px;
    font-size: 0.95rem;
  }

  .mobile-nav-tel,
  .mobile-nav-btn {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 64px 0 32px;
  }

  .contact-box {
    padding: 32px 20px;
  }

  .form-submit-btn {
    width: 100%;
    min-width: auto;
  }

  .form-check-label {
    align-items: flex-start;
  }

  .policy-content {
    gap: 32px;
  }

  .policy-title {
    font-size: 1.25rem;
  }

  .policy-contact {
    padding: 20px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* =========================================
Company Table Upgrade (Stage 9)
========================================= */
.company-table-wrap {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  border: 1px solid rgba(44, 122, 123, 0.1);
  box-shadow: 0 24px 50px rgba(44, 122, 123, 0.08);
  overflow: hidden;
}

.company-table-wrap::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 201, 196, 0.16) 0%,
    rgba(126, 201, 196, 0) 72%
  );
  pointer-events: none;
}

.company-table-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 6px 18px;
}

.company-table-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef8f7;
  color: #2c7a7b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-table-sub {
  margin-top: 10px;
  color: #5f7271;
  font-size: 0.95rem;
  line-height: 1.7;
}

.company-table {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  border: 1px solid #e2efee;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.company-row {
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid #e2efee;
}

.company-row dt,
.company-row dd {
  padding: 22px 24px;
}

.company-row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #f7fcfb 0%, #eef8f7 100%);
  color: #2c7a7b;
}

.company-row dt::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fc8c2;
  box-shadow: 0 0 0 6px rgba(127, 200, 194, 0.15);
  flex: 0 0 auto;
}

.company-row dd {
  background: rgba(255, 255, 255, 0.98);
  line-height: 1.95;
  transition: background-color 0.3s ease;
}

.company-row:hover dd {
  background: #fbfefe;
}

.company-row dd a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c7a7b;
  font-weight: 700;
}

.company-row dd a::after {
  content: "↗";
  font-size: 0.9rem;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .company-table-wrap {
    padding: 18px;
  }

  .company-row {
    grid-template-columns: 170px 1fr;
  }
}

@media screen and (max-width: 767px) {
  .company-table-wrap {
    padding: 14px;
    border-radius: 24px;
  }

  .company-table-head {
    padding: 2px 4px 14px;
  }

  .company-table-sub {
    font-size: 0.88rem;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row dt,
  .company-row dd {
    padding: 16px 16px;
  }

  .company-row dt {
    border-bottom: 1px solid #e2efee;
  }
}

/* =========================================
Company Balance Upgrade
========================================= */
.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.company-intro {
  display: flex;
  flex-direction: column;
}

.company-text {
  max-width: 620px;
}

.company-summary-card {
  margin-top: 38px;
  padding: 34px 36px 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, #f4fbfa 0%, #edf7f6 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 20px 50px rgba(44, 122, 123, 0.08);
}

.company-summary-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.company-summary-label {
  width: fit-content;
  margin-bottom: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 8px 18px rgba(44, 122, 123, 0.06);
}

.company-summary-catch {
  color: #5b7574;
  line-height: 1.8;
}

.company-tel {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
}

.company-meta-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.company-meta-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 122, 123, 0.08);
  line-height: 1.8;
}

.company-meta-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7ccfca 0%, #5ab5ae 100%);
  box-shadow: 0 0 0 6px rgba(124, 207, 202, 0.18);
  transform: translateY(-50%);
}

.company-note {
  margin-top: 20px;
}

.company-actions {
  margin-top: 28px;
  align-items: center;
  gap: 18px;
}

.company-actions .btn-outline {
  min-width: 220px;
  background: #ffffff;
}

.company-table-wrap {
  height: 100%;
}

.company-table {
  height: calc(100% - 88px);
}

@media screen and (max-width: 1024px) {
  .company-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-summary-card {
    margin-top: 30px;
  }

  .company-table {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .company-summary-card {
    padding: 26px 22px 24px;
    border-radius: 24px;
  }

  .company-summary-catch {
    font-size: 0.95rem;
  }

  .company-tel {
    font-size: 2.2rem;
  }

  .company-meta-list {
    gap: 10px;
    margin-top: 18px;
  }

  .company-meta-list li {
    padding: 12px 14px 12px 38px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .company-meta-list li::before {
    left: 16px;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(124, 207, 202, 0.18);
  }

  .company-actions .btn-outline {
    min-width: 0;
  }
}

/* =========================================
Header / Footer Final Tuning
========================================= */
.footer-inner-extended {
  align-items: start;
}

.footer-nav-wrap {
  flex: 1;
}

.footer-nav-title {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2c7a7b;
  letter-spacing: 0.06em;
}

.footer-nav-grid {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px 28px;
}

.footer-nav-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-grid a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8bd1cc;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .global-nav-list {
    gap: 20px;
  }

  .global-nav-list a {
    font-size: 0.94rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-nav-title {
    margin-bottom: 12px;
  }
}

/* =========================================
CTA
========================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  background: linear-gradient(180deg, #f6fbfa 0%, #edf7f6 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/kenshin-care/assets/img/common/img-caremanager-hero.jpg")
    center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(237, 247, 246, 0.92) 0%,
    rgba(246, 251, 250, 0.88) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(250, 253, 252, 0.9) 100%
  );
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow:
    0 24px 54px rgba(44, 122, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cta-copy {
  display: grid;
  align-content: start;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #edf7f6;
  color: #2c7a7b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-title {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.45;
  color: #2c7a7b;
  text-align: left;
}

.cta-text {
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 2;
  text-align: left;
  color: #445857;
}

.cta-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.cta-points li {
  position: relative;
  padding-left: 24px;
  line-height: 1.85;
  font-weight: 700;
  color: #2c7a7b;
}

.cta-points li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #57aaa4 0%, #8fd5cf 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(143, 213, 207, 0.18);
}

.cta-actions-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cta-tel-card {
  display: grid;
  gap: 10px;
  padding: 30px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #3a8f91 0%, #58afaa 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(44, 122, 123, 0.14);
}

.cta-tel-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.98;
}

.cta-tel-number {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.cta-tel-hours {
  font-size: 0.98rem;
  opacity: 0.96;
}

.cta-buttons {
  display: grid;
  gap: 14px;
  justify-content: stretch;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.cta-buttons .btn-primary {
  box-shadow: 0 12px 24px rgba(44, 122, 123, 0.12);
}

.cta-buttons .btn-secondary {
  border: 2px solid #2c7a7b;
  background: rgba(255, 255, 255, 0.92);
  color: #2c7a7b;
}

.cta-buttons .btn-secondary:hover,
.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 88px 0 80px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
  }

  .cta-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
  }

  .cta-text {
    font-size: 1rem;
    line-height: 1.95;
  }

  .cta-tel-card {
    padding: 26px 24px;
    border-radius: 24px;
  }
}

@media screen and (max-width: 767px) {
  .cta-section {
    padding: 72px 0 64px;
  }

  .cta-box {
    padding: 26px 20px;
    border-radius: 24px;
    gap: 20px;
  }

  .cta-eyebrow {
    margin-bottom: 14px;
  }

  .cta-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .cta-text {
    font-size: 0.98rem;
  }

  .cta-points {
    margin-top: 20px;
    gap: 10px;
  }

  .cta-tel-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .cta-tel-number {
    font-size: 1.95rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    min-height: 54px;
    font-size: 0.95rem;
  }
}

/* =========================================
Footer
========================================= */
.site-footer {
  position: relative;
  padding-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  border-top: 1px solid rgba(44, 122, 123, 0.08);
}

.footer-top {
  padding: 72px 0 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #2c7a7b;
  line-height: 1.4;
}

.footer-catch {
  font-size: 1rem;
  line-height: 1.95;
  color: #526766;
}

.footer-info-list {
  display: grid;
  gap: 12px;
  color: #334746;
}

.footer-info-list li {
  line-height: 1.85;
}

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-nav-group {
  display: grid;
  gap: 18px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2c7a7b;
  letter-spacing: 0.06em;
}

.footer-nav-list {
  display: grid;
  gap: 14px;
}

.footer-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.7;
  color: #334746;
}

.footer-nav-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8bd1cc;
  flex: 0 0 auto;
}

.footer-nav-list a:hover {
  color: #2c7a7b;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(44, 122, 123, 0.08);
}

.footer-copy {
  padding: 18px 16px;
  text-align: center;
  color: #4f6665;
  border-top: none;
}

@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 88px 0 80px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
  }

  .cta-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
  }

  .cta-text {
    font-size: 1rem;
    line-height: 1.95;
  }

  .cta-tel-card {
    padding: 26px 24px;
    border-radius: 24px;
  }

  .footer-top {
    padding: 60px 0 48px;
  }

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

  .footer-nav-wrap {
    gap: 28px;
  }
}

@media screen and (max-width: 767px) {
  .cta-section {
    padding: 72px 0 64px;
  }

  .cta-box {
    padding: 26px 20px;
    border-radius: 24px;
    gap: 20px;
  }

  .cta-eyebrow {
    margin-bottom: 14px;
  }

  .cta-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .cta-text {
    font-size: 0.98rem;
  }

  .cta-points {
    margin-top: 20px;
    gap: 10px;
  }

  .cta-tel-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .cta-tel-number {
    font-size: 1.95rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    min-height: 54px;
    font-size: 0.95rem;
  }

  .footer-top {
    padding: 48px 0 40px;
  }

  .footer-nav-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    font-size: 1.35rem;
  }

  .footer-catch,
  .footer-info-list li,
  .footer-nav-list a {
    font-size: 0.96rem;
  }
}

/* =========================================
CTA Button Alignment Fix
下層ページCTAボタン表示崩れ修正
========================================= */
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* =========================================
Page Top - Premium Design
========================================= */
/* =========================================
Page Top - Premium Design
========================================= */
.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;

  width: 64px;
  height: 64px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #2c7a7b 0%, #4fa8a2 100%);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(44, 122, 123, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.95);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease;
}

/* 表示時 */
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: float 3s ease-in-out infinite;
}

/* ホバー */
.page-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(44, 122, 123, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.12);
}

/* 押したとき */
.page-top:active {
  transform: translateY(0) scale(0.96);
}

/* 波紋 */
.page-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    opacity 0.45s ease;
}

.page-top:hover::after {
  width: 140%;
  height: 140%;
  opacity: 1;
}

/* アイコン */
.page-top-icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: flex;
}

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

/* スマホ */
@media screen and (max-width: 599px) {
  .page-top {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .page-top-icon {
    width: 22px;
    height: 22px;
  }
}

/* =========================================
Animation
========================================= */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1);
  }
}

/* =========================================
Header Nav 強弱調整（追加）
========================================= */

/* 通常メニュー（少し軽く） */
.global-nav-list a {
  color: #666;
  font-weight: 500;
}

/* hover時はしっかり */
.global-nav-list a:hover {
  color: #2c7a7b;
}

/* ===============================
空き状況（最重要）
=============================== */
.global-nav-list a[href*="availability"] {
  color: #2c7a7b;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(44, 122, 123, 0.05);
}

.global-nav-list a[href*="availability"]:hover {
  background: rgba(44, 122, 123, 0.05);
}

/* ===============================
ケアマネ様へ（準重要）
=============================== */
.global-nav-list a[href*="care-manager"] {
  color: #2c7a7b;
  font-weight: 700;
}

.global-nav-list a[href*="care-manager"]:hover {
  opacity: 0.9;
}

/* ===============================
採用（軽く強調）
=============================== */
.global-nav-list a[href*="recruit"] {
  font-weight: 700;
}

.global-nav-list a[href*="news"] {
  opacity: 0.75;
}

/* =========================================
Header Nav 統一調整
========================================= */

/* 全メニューの基本を揃える */
.global-nav-list a {
  color: #4a4a4a;
  font-weight: 600;
  padding: 6px 0;
  background: transparent;
  border-radius: 0;
}

/* hover時 */
.global-nav-list a:hover {
  color: #2c7a7b;
  opacity: 1;
}

/* 空き状況・ケアマネ様へを同じ強調に統一 */
.global-nav-list a[href*="availability"],
.global-nav-list a[href*="care-manager"] {
  color: #2c7a7b;
  font-weight: 700;
  background: transparent;
  padding: 6px 0;
  border-radius: 0;
}

.global-nav-list a[href*="availability"]:hover,
.global-nav-list a[href*="care-manager"]:hover {
  color: #2c7a7b;
  background: transparent;
  opacity: 1;
}

/* お知らせを弱める指定が残っていたら打ち消す */
.global-nav-list a[href*="news"] {
  opacity: 1;
}

/* メニュー間の見た目を少し整える */
.global-nav-list {
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .reason-icon {
    width: 72px !important;
    height: 72px !important;
    font-size: 0.95rem !important;
    border-radius: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .reason-card {
    padding: 24px 18px 20px !important;
  }
}

@media screen and (max-width: 767px) {
  /* ① 数字の下の余白を詰める */
  .reason-icon {
    margin-bottom: 12px !important;
  }

  /* ② タイトルの余白を詰める */
  .reason-card h3 {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }

  /* ③ 本文との余白も少しだけ詰める */
  .reason-card p {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .top-contact-cta .cta-title {
    font-size: 24px !important;
    line-height: 1.5 !important;
    margin-top: 12px !important;
    margin-bottom: 14px !important;
  }
}

@media screen and (max-width: 767px) {
  .top-contact-cta .cta-text {
    font-size: 14px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 767px) {
  /* RECRUIT全体の余白 */
  .top-recruit .recruit-content {
    padding: 10px 5px 10px !important;
  }

  /* タイトル */
  .top-recruit .recruit-title {
    max-width: none !important;
    margin: 0 0 18px !important;
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* 本文 */
  .top-recruit .recruit-text {
    font-size: 1rem !important;
    line-height: 1.9 !important;
    margin-bottom: 20px !important;
  }

  /* リスト */
  .top-recruit .recruit-points {
    gap: 12px !important;
    margin-bottom: 22px !important;
  }

  .top-recruit .recruit-points li,
  .top-recruit .recruit-side-list li {
    position: relative !important;
    padding: 12px 14px 12px 44px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
  }

  /* ●位置 */
  .top-recruit .recruit-points li::before,
  .top-recruit .recruit-side-list li::before {
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* WORK STYLEタイトル */
  .top-recruit h3 {
    font-size: 1.35rem !important;
    line-height: 1.5 !important;
  }
}

/* =========================================
About / User Structure
既存レイアウトを壊さない安全追加版
========================================= */

.company-user-structure-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f7fcfb 0%, #ffffff 100%);
}

.company-user-structure-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.company-user-structure-head .section-title {
  margin-bottom: 16px;
}

.company-user-structure-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(44, 122, 123, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(44, 122, 123, 0.08);
}

.company-user-structure-card img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

/* 画像上下の空きとCTAのつながりを自然に */
.company-user-structure-section + .cta,
.company-user-structure-section + .cta-section {
  margin-top: 0;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .company-user-structure-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .company-user-structure-card {
    padding: 22px;
    border-radius: 24px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .company-user-structure-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .company-user-structure-head {
    margin-bottom: 24px;
  }

  .company-user-structure-card {
    padding: 14px;
    border-radius: 20px;
  }

  .company-user-structure-card img {
    border-radius: 14px;
  }
}

/* =========================================
Availability label（安全拡張）
※既存に影響を出さないためスコープ限定
========================================= */

.availability-summary-grid .availability-summary-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(45, 127, 129, 0.08);
}

/* ご相談ください（緑） */
.availability-summary-grid
  .availability-summary-card.is-open
  .availability-summary-status {
  background: linear-gradient(180deg, #eef8f1 0%, #e3f1e8 100%);
  border-color: #d4e7da;
  color: #2f7d57;
}

/* 時間帯により調整（ベージュ） */
.availability-summary-grid
  .availability-summary-card.is-limited
  .availability-summary-status {
  background: linear-gradient(180deg, #f7ecde 0%, #f2e2cf 100%);
  border-color: #ead5bc;
  color: #9a6b22;
}

/* 一部対応可能（青） */
.availability-summary-grid
  .availability-summary-card.is-partial
  .availability-summary-status {
  background: linear-gradient(180deg, #e8f2fb 0%, #dcebf8 100%);
  border-color: #c9dcef;
  color: #2f6fa3;
}

/* 対応不可（グレー） */
.availability-summary-grid
  .availability-summary-card.is-closed
  .availability-summary-status {
  background: linear-gradient(180deg, #f0f0f0 0%, #e5e5e5 100%);
  border-color: #d5d5d5;
  color: #666666;
}
