/*
Theme Name: MOVE ON Ltd.
Theme URI: https://moveonweb.manus.space/
Author: MOVE ON Co., Ltd.
Author URI: https://moveonweb.manus.space/
Description: 株式会社ムーヴ・オン コーポレートサイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moveonltd
Tags: corporate, japanese, responsive
*/

/* ============================================
   MOVE ON - Common Stylesheet
   ============================================ */

:root {
  --color-primary: #1a5f7a;
  --color-primary-light: #2b8ba8;
  --color-accent: #ff6b35;
  --color-success: #4caf50;
  --color-text-dark: #1a1a1a;
  --color-text-light: #666666;
  --color-bg-light: #FAF7F2;
  --color-border: #e0e0e0;
  --color-blue: #003F7F;
  --color-pink: #C94892;
  --color-orange: #D17D41;
  --color-green: #4A9956;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'DM Sans', system-ui, sans-serif;
  color: var(--color-text-dark);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

nav {
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
}

nav a:hover {
  color: var(--color-primary);
  background: rgba(26, 95, 122, 0.06);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.3rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-dark);
  text-decoration: none;
  border-bottom: none;
  border: none;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
  border: none;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: #f0f0f0;
    min-width: auto;
    margin: 0;
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    padding-left: 2rem;
  }

  .dropdown-menu.active {
    display: block;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 2rem;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
  padding: 0;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(13, 33, 55, 0.52) 0%,
    rgba(13, 33, 55, 0.32) 55%,
    rgba(13, 33, 55, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem clamp(2rem, 8vw, 8rem);
  max-width: 680px;
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.slide-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 1rem;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slide-dot.active {
  background: white;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero {
    max-height: 700px;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 1.8rem);
    overflow-wrap: break-word;
  }

  .hero-content p {
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-light);
}

.btn-secondary {
  background: var(--color-accent);
  color: white;
}

.btn-secondary:hover {
  background: darken(#ff6b35, 10%);
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-with-arrow::after {
  content: ' →';
  margin-left: 0.5rem;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 2rem;
}

section.alt {
  background: var(--color-bg-light);
}


/* ============================================
   CARDS & GRID
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.card-content p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--color-text-light);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.form-group label .required {
  color: var(--color-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input {
  width: auto;
  margin: 0;
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: var(--color-bg-light);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-dark);
}

.accordion-header:hover {
  background: #f0f0f0;
}

.accordion-header.active {
  background: var(--color-primary);
  color: white;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-body.active {
  max-height: 1000px;
}

.accordion-content {
  padding: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--color-primary);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-accent);
}

.contact-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-button-group {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY
   ============================================ */

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.text-muted {
  color: var(--color-text-light);
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background: var(--color-primary);
  color: white;
}

.hidden {
  display: none !important;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.table th {
  background: var(--color-bg-light);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

.table td {
  padding: 1rem;
  border: 1px solid var(--color-border);
}

.table tr:hover {
  background: var(--color-bg-light);
}

/* ============================================
   BUSINESS SECTION (NEW DESIGN)
   ============================================ */

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.business-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 300px;
}

.business-image {
  overflow: hidden;
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-content {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.business-number {
  font-size: 4rem;
  font-weight: bold;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
}

.business-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.business-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.business-content p {
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.business-content p:last-of-type {
  opacity: 0.85;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-white {
  background: white;
  color: var(--color-text-dark);
  display: inline-block;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  width: fit-content;
}

.btn-white:hover {
  opacity: 0.85;
}

.business-item-blue .business-content {
  background: var(--color-blue);
}

.business-item-pink .business-content {
  background: var(--color-pink);
}

.business-item-orange .business-content {
  background: var(--color-orange);
}

.business-item-green .business-content {
  background: var(--color-green);
}

.text-small {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .business-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .business-content {
    padding: 2rem 1.5rem;
  }

  .business-number {
    font-size: 3rem;
  }

  .business-content h3 {
    font-size: 1.4rem;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

  section {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 1rem;
  }
}

.print-hidden {
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

@media print {
  header,
  footer {
    display: none;
  }

  body {
    background: white;
  }
}

/* ============================================
   SECTION LABEL (English label above heading)
   ============================================ */

.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0D2137;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-heading p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

/* Dark section overrides */
section.section-dark .section-label {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.2);
}

section.section-dark .section-heading h2 {
  color: white;
}

section.section-dark .section-heading h2::after {
  background: var(--color-accent);
}

section.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HEADER ENHANCEMENTS
   ============================================ */

.header-phone-btn {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.header-phone-btn:hover {
  background: var(--color-primary-light);
}

@media (max-width: 768px) {
  .header-phone-btn {
    display: none;
  }
}

/* ============================================
   TAGLINE BANNER
   ============================================ */

.tagline-banner {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   HERO BUTTON
   ============================================ */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-hero::after {
  content: '→';
}

.btn-hero:hover {
  background: white;
  color: var(--color-text-dark);
}


/* ============================================
   BUSINESS CARD GRID (NEW)
   ============================================ */

.biz-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.biz-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

.biz-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.biz-card:hover .biz-card-bg {
  transform: scale(1.06);
}

.biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.05) 100%
  );
  transition: background 0.35s ease;
}

.biz-card:hover .biz-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.biz-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 2rem;
  z-index: 2;
}

.biz-card-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--biz-color, #1a5f7a);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

.biz-card-title {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.biz-card-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.35s ease;
}

.biz-card:hover .biz-card-desc {
  max-height: 5rem;
  opacity: 1;
}

.biz-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.biz-card-tags span {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.biz-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 0.1rem;
  align-self: flex-start;
  transition: border-color 0.2s, gap 0.2s;
}

.biz-card:hover .biz-card-cta {
  border-color: #fff;
  gap: 0.65rem;
}

@media (max-width: 768px) {
  .biz-card-grid {
    grid-template-columns: 1fr;
  }
  .biz-card {
    aspect-ratio: 3 / 2;
  }
  .biz-card-desc {
    max-height: 5rem;
    opacity: 1;
  }
}

/* ============================================
   BUSINESS SECTION – FULL WIDTH REDESIGN
   ============================================ */

section#business,
.section-business {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background: #FAF7F2 !important;
}

.section-business .container {
  padding-bottom: 0;
}

.section-business .business-grid {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

/* Business category label (——— DELIVERY) */
.business-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.business-category::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* Business heading row – icon inline with title */
.business-heading-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.business-heading-row h3 {
  margin-bottom: 0;
}

/* Business icon badge – SVG icons */
.business-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}

.business-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

/* Business tag pills */
.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.business-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ---- Business item hover effects ---- */

.business-item {
  cursor: pointer;
}

.business-image {
  overflow: hidden;
}

.business-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.business-item:hover .business-image img {
  transform: scale(1.07);
}

.business-content {
  transition: filter 0.35s ease;
}

.business-item:hover .business-content {
  filter: brightness(1.12);
}

.business-item:hover .business-icon {
  background: rgba(255, 255, 255, 0.3);
}

.business-item:hover .btn-detail-icon {
  background: white;
  color: var(--color-text-dark);
  border-color: white;
}

/* Business detail button with circle arrow */
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.btn-detail-icon {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-detail:hover .btn-detail-icon {
  background: white;
  color: var(--color-text-dark);
  border-color: white;
}

/* Hide old business-number */
.business-number {
  display: none !important;
}

/* ============================================
   DARK SECTION (RECRUIT)
   ============================================ */

section.section-dark {
  background: #0B1C2E;
  color: white;
}

section.section-dark .section-heading h2 {
  color: white;
}

section.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

section.section-dark .section-bg-text {
  color: rgba(255, 255, 255, 0.05);
}

section.section-dark .section-heading h2::after {
  background: var(--color-accent);
}

/* Pill buttons */
.btn-pill-outline {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-pill-outline:hover {
  background: white;
  color: var(--color-text-dark);
}

.btn-pill-orange {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-pill-orange:hover {
  opacity: 0.88;
}

/* ============================================
   CTA BAR (above footer)
   ============================================ */

.cta-bar {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 2.5rem 2rem;
}

.cta-bar-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.cta-bar-phone {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.cta-bar-phone:hover {
  opacity: 0.85;
}

.cta-bar-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER – DARK NAVY
   ============================================ */

footer {
  background: #0D2137 !important;
  margin-top: 0;
}

.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

/* ============================================
   CONTACT PHONE LINK
   ============================================ */

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.contact-phone:hover {
  color: var(--color-primary-light);
}

/* ============================================
   ABOUT SECTION – subtle warm bg
   ============================================ */

section.section-about {
  background: #FAF7F2;
}

/* ============================================
   AREA SECTION – light blue bg
   ============================================ */

section.section-area {
  background: #EBF5FB;
}

/* ============================================
   CONTACT SECTION – cream bg
   ============================================ */

section.section-contact {
  background: #FAF7F2;
}

/* ============================================
   FOOTER BRAND COLUMN
   ============================================ */

.footer-section-brand {
  min-width: 200px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   MISC RESPONSIVE TWEAKS
   ============================================ */

@media (max-width: 1024px) {
  nav ul {
    gap: 0;
  }
  nav a {
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   HERO – SUB PAGE (short / inner pages)
   ============================================ */

.hero-deco-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-sub .hero-content {
  z-index: 2;
}

/* ============================================
   NEWS LIST – old inline style (kept for archive)
   ============================================ */

.news-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-dark);
  transition: var(--transition);
  border-radius: 4px;
}

.news-item:hover {
  background: rgba(26, 95, 122, 0.04);
  padding-left: 1rem;
}

.news-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  min-width: 80px;
}

.news-title {
  font-size: 0.95rem;
  line-height: 1.5;
}

.single-category {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   NEWS CARDS (home.php / アーカイブ)
   ============================================ */

.news-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.news-card {
  display: block;
  background: white;
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: var(--color-text-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(26, 95, 122, 0.13);
  transform: translateY(-1px);
}

.news-card-date {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}

.news-card-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-card-title {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* カテゴリーバッジ */
.news-badge {
  display: inline-block;
  padding: 0.2em 0.75em;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--color-primary);
  color: white;
}

/* スラッグ別カラー */
.news-badge--osairase,
.news-badge--%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b {
  background: var(--color-blue);
}
.news-badge--seihinjoho,
.news-badge--%e8%a3%bd%e5%93%81%e6%83%85%e5%a0%b1 {
  background: var(--color-green);
}
.news-badge--saiyou,
.news-badge--%e6%8e%a1%e7%94%a8 {
  background: var(--color-orange);
}
.news-badge--chiikikatsudo,
.news-badge--%e5%9c%b0%e5%9f%9f%e6%b4%bb%e5%8b%95 {
  background: #2b8ba8;
}

/* ページネーション */
.news-card-list + .nav-links,
.news-card-list ~ .navigation {
  margin-top: 2.5rem;
  text-align: center;
}

/* ============================================
   BUSINESS SECTION – min-height for tall screens
   ============================================ */

.business-item {
  min-height: 380px;
}

/* ============================================
   RECRUIT PAGE – responsive
   ============================================ */

/* 魅力セクション: tablet → 2col, mobile → 1col */
@media (max-width: 768px) {
  .recruit-merit-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .recruit-merit-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .business-item {
    min-height: auto;
  }
}
