/*
Theme Name: ARIKAN Corporation
Theme URI: https://arikan.co.jp
Author: ARIKAN Corporation
Author URI: https://arikan.co.jp
Description: 株式会社アリカン・コーポレーション コーポレートサイト用WordPressテーマ
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: arikan
Tags: corporate, one-column, custom-menu, translation-ready
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background: #FFFFFF;
  line-height: 1.8;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===== TYPOGRAPHY ===== */
.font-oswald {
  font-family: "Oswald", sans-serif;
}

.section-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.accent-underline {
  display: inline-block;
  position: relative;
}

.accent-underline::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #E67E22;
  margin: 0.75rem auto 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 80px;
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.site-logo .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (min-width: 1024px) {
  .site-logo .logo-img {
    height: 50px;
  }
}

.site-logo .logo-text {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1;
}

@media (min-width: 1024px) {
  .site-logo .logo-text {
    font-size: 1.875rem;
  }
}

.site-logo .logo-text .logo-k {
  color: #C0392B;
}

.site-logo .logo-sub {
  font-family: "Oswald", sans-serif;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #6b7280;
  display: block;
  line-height: 1;
}

@media (min-width: 1024px) {
  .site-logo .logo-sub {
    font-size: 9px;
  }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333333;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.current {
  color: #C0392B;
}

.desktop-nav .nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: #333333;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.desktop-nav .nav-contact-btn:hover {
  background: #000000;
  color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: #333333;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  background: #FFFFFF;
  border-top: 1px solid #f3f4f6;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

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

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333333;
  transition: all 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.current {
  color: #C0392B;
  background: #fef2f2;
}

.mobile-nav .mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #C0392B;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.mobile-nav .mobile-contact-btn:hover {
  background: #a93226;
  color: #FFFFFF;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: #333333;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 80px;
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 11px
  );
}

.page-hero-inner {
  position: relative;
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-hero-inner {
    padding: 6rem 0;
  }
}

.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero .hero-subtitle {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 3.5rem;
  }
}

.section-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 2.25rem;
  }
}

.section-title.dark h2 {
  color: #FFFFFF;
}

.section-title p {
  font-size: 0.875rem;
  color: #6b7280;
}

.section-title.dark p {
  color: #d1d5db;
}

/* ===== HERO SECTION (Front Page) ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0;
  }
}

.hero-content .hero-tag {
  font-size: 0.75rem;
  color: #d1d5db;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

.hero-content h1 .text-orange {
  color: #E67E22;
}

.hero-content .hero-desc {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #C0392B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-red:hover {
  background: #a93226;
  color: #FFFFFF;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #333333;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-dark:hover {
  background: #000000;
  color: #FFFFFF;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 2px solid #333333;
  color: #333333;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #333333;
  color: #FFFFFF;
}

/* ===== STRENGTHS SECTION ===== */
.strengths-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .strengths-section {
    padding: 7rem 0;
  }
}

.strength-item {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

.strength-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .strength-item {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 7rem;
  }
}

.strength-number {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(192, 57, 43, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .strength-number {
    font-size: 3.75rem;
  }
}

.strength-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .strength-item h3 {
    font-size: 1.5rem;
  }
}

.strength-item h3 .text-red {
  color: #C0392B;
}

.strength-item p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.strength-item .strength-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .strength-item .strength-img {
    height: 20rem;
  }
}

.strength-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.strength-list .bullet {
  color: #E67E22;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Cost comparison boxes */
.cost-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cost-box {
  padding: 1rem;
  text-align: center;
}

.cost-box.general {
  background: #F9F9F9;
}

.cost-box.arikan {
  background: #333333;
  color: #FFFFFF;
}

.cost-box .cost-label {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.cost-box.arikan .cost-label {
  color: #d1d5db;
}

.cost-box .cost-value {
  font-size: 0.875rem;
  font-weight: 700;
}

.cost-box .cost-highlight {
  font-size: 1.2rem;
  color: #E67E22;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Service icons grid */
.service-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-icon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.service-icon-item svg {
  color: #E67E22;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ===== WORKFLOW SECTION ===== */
.workflow-section {
  padding: 5rem 0;
  background: #F9F9F9;
}

@media (min-width: 1024px) {
  .workflow-section {
    padding: 7rem 0;
  }
}

.workflow-timeline {
  max-width: 56rem;
  margin: 0 auto;
}

.workflow-step {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .workflow-step {
    gap: 2rem;
  }
}

.workflow-step:last-child {
  padding-bottom: 0;
}

.workflow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 3rem;
  bottom: 0;
  width: 1px;
  background: rgba(192, 57, 43, 0.2);
}

@media (min-width: 1024px) {
  .workflow-step:not(:last-child)::before {
    left: 31px;
  }
}

.step-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C0392B;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .step-circle {
    width: 64px;
    height: 64px;
  }
}

.step-circle span {
  font-family: "Oswald", sans-serif;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .step-circle span {
    font-size: 1rem;
  }
}

.step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.step-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  color: #C0392B;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .step-content h3 {
    font-size: 1.25rem;
  }
}

.step-content p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ===== WORKS SECTION ===== */
.works-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .works-section {
    padding: 7rem 0;
  }
}

.works-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.work-card {
  background: #FFFFFF;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.work-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.work-card .card-img-wrap {
  overflow: hidden;
}

.work-card .card-img-wrap img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.work-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.work-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.work-card .card-meta svg {
  width: 12px;
  height: 12px;
}

.work-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-card .card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.work-card .card-cost {
  text-align: right;
}

.work-card .card-cost .cost-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.work-card .card-cost .cost-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #C0392B;
}

.work-card .card-cost .cost-tax {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 0.25rem;
}

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .category-filter {
    gap: 0.75rem;
  }
}

.category-filter button {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #d1d5db;
  background: #FFFFFF;
  color: #333333;
  transition: all 0.2s ease;
}

.category-filter button:hover {
  border-color: #333333;
}

.category-filter button.active {
  background: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pagination span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  color: #6b7280;
  transition: border-color 0.2s ease;
}

.pagination span:hover {
  border-color: #333333;
}

.pagination span.active {
  background: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

/* Pick Up Section */
.pickup-section {
  padding: 4rem 0;
  background: #333333;
}

@media (min-width: 1024px) {
  .pickup-section {
    padding: 6rem 0;
  }
}

.pickup-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .pickup-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pickup-grid img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .pickup-grid img {
    height: 20rem;
  }
}

.pickup-info-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== COMPANY SECTION ===== */
.company-table {
  max-width: 48rem;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
  .company-table {
    padding: 2.5rem;
  }
}

.company-table table th {
  padding: 1.25rem 1.5rem 1.25rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  width: 7rem;
  vertical-align: top;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .company-table table th {
    width: 9rem;
  }
}

.company-table table td {
  padding: 1.25rem 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
  white-space: pre-line;
}

.company-table table tr {
  border-bottom: 1px solid #f3f4f6;
}

.company-table table tr:last-child {
  border-bottom: none;
}

/* ===== CONTACT SECTION ===== */
.contact-dark-section {
  padding: 4rem 0;
  background: #333333;
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-dark-section {
    padding: 5rem 0;
  }
}

.phone-box {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.phone-box .phone-label {
  font-size: 0.75rem;
  color: #E67E22;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.phone-box .phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

@media (min-width: 1024px) {
  .phone-box .phone-number {
    font-size: 1.875rem;
  }
}

.phone-box .phone-number svg {
  width: 24px;
  height: 24px;
}

.phone-box .phone-hours {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Phone box white (contact page) */
.phone-box-white {
  border: 2px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.phone-box-white .phone-label {
  font-size: 0.75rem;
  color: #E67E22;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.phone-box-white .phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
}

@media (min-width: 1024px) {
  .phone-box-white .phone-number {
    font-size: 2.25rem;
  }
}

.phone-box-white .phone-hours {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 2.5rem 0 4rem;
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .contact-form-section {
    padding: 4rem 0;
  }
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.form-heading .heading-bar {
  width: 4px;
  height: 1.5rem;
  background: #333333;
}

.form-heading h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}

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

.form-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-label-row label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
}

.form-label-row .badge-required {
  font-size: 0.75rem;
  background: #C0392B;
  color: #FFFFFF;
  padding: 0.125rem 0.5rem;
  font-weight: 700;
}

.form-label-row .badge-optional {
  font-size: 0.75rem;
  background: #9ca3af;
  color: #FFFFFF;
  padding: 0.125rem 0.5rem;
  font-weight: 700;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  background: #F9F9F9;
  font-size: 0.875rem;
  color: #333333;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #C0392B;
  box-shadow: 0 0 0 1px #C0392B;
}

.form-input::placeholder {
  color: #9ca3af;
}

textarea.form-input {
  resize: none;
}

.form-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.form-error {
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.25rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  accent-color: #C0392B;
}

.privacy-box {
  background: #F9F9F9;
  padding: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.8;
  max-height: 8rem;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-checkbox input[type="checkbox"] {
  accent-color: #C0392B;
  width: 16px;
  height: 16px;
}

.privacy-checkbox span {
  font-size: 0.875rem;
  color: #333333;
}

.form-submit {
  text-align: center;
  padding-top: 1rem;
}

.form-submit button {
  padding: 1rem 3rem;
  background: #C0392B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
  min-width: 280px;
}

.form-submit button:hover {
  background: #a93226;
}

.form-submit button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== FOOTER ===== */
.footer-cta {
  padding: 4rem 0;
  background: #F9F9F9;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-cta {
    padding: 5rem 0;
  }
}

.footer-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .footer-cta h2 {
    font-size: 1.875rem;
  }
}

.footer-cta p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.footer-cta-buttons a {
  min-width: 240px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.site-footer {
  background: #1a1a1a;
  color: #FFFFFF;
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 3rem 0;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-logo .logo-text .logo-k {
  color: #C0392B;
}

.footer-logo .logo-sub {
  font-family: "Oswald", sans-serif;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #9ca3af;
  display: block;
  text-align: center;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ===== ACCESS MAP ===== */
.access-map iframe {
  width: 100%;
  height: 20rem;
  border: 0;
}

@media (min-width: 1024px) {
  .access-map iframe {
    height: 24rem;
  }
}

.access-info {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .access-info {
    grid-template-columns: 1fr 1fr;
  }
}

.access-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.access-info-item svg {
  color: #C0392B;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.access-info-item .info-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.25rem;
}

.access-info-item .info-value {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ===== TOP MESSAGE ===== */
.top-message-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .top-message-section {
    padding: 6rem 0;
  }
}

.top-message-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .top-message-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.top-message-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-message-logo span {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(51, 51, 51, 0.1);
}

@media (min-width: 1024px) {
  .top-message-logo span {
    font-size: 7rem;
  }
}

.top-message-logo .logo-k {
  color: rgba(192, 57, 43, 0.15);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  background: #FFFFFF;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question .q-mark {
  font-size: 0.875rem;
  font-weight: 700;
  color: #C0392B;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.faq-question .q-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  flex: 1;
}

.faq-question .q-icon {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s ease;
  width: 18px;
  height: 18px;
}

.faq-question .q-icon.open {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem 3rem;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-intro {
  padding: 4rem 0;
  background: #FFFFFF;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-intro {
    padding: 6rem 0;
  }
}

.about-intro h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .about-intro h2 {
    font-size: 1.875rem;
  }
}

.about-intro .highlight-box {
  display: inline-block;
  background: #E67E22;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
}

.about-strength {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .about-strength {
    padding: 6rem 0;
  }
}

.about-strength.bg-light {
  background: #F9F9F9;
}

.about-strength.bg-dark {
  background: #333333;
}

.about-strength.bg-white {
  background: #FFFFFF;
}

.about-strength-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-strength-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-strength-grid img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .about-strength-grid img {
    height: 28rem;
  }
}

.about-number {
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .about-number {
    font-size: 4.5rem;
  }
}

.about-number.light {
  color: rgba(192, 57, 43, 0.1);
}

.about-number.dark {
  color: rgba(255, 255, 255, 0.1);
}

.about-tag {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.about-tag.red {
  color: #C0392B;
}

.about-tag.orange {
  color: #E67E22;
}

.info-card {
  padding: 1.25rem;
  border-left: 4px solid #E67E22;
  background: #FFFFFF;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h4 svg {
  color: #E67E22;
  width: 16px;
  height: 16px;
}

.info-card p {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Zero additional cost banner */
.zero-cost-banner {
  padding: 3rem 0;
  background: #C0392B;
  text-align: center;
}

@media (min-width: 1024px) {
  .zero-cost-banner {
    padding: 4rem 0;
  }
}

.zero-cost-banner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .zero-cost-banner h3 {
    font-size: 1.5rem;
  }
}

.zero-cost-banner h3 svg {
  color: #E67E22;
  width: 24px;
  height: 24px;
}

.zero-cost-banner p {
  font-size: 0.875rem;
  color: #fecaca;
  line-height: 1.8;
  max-width: 36rem;
  margin: 0 auto;
}

/* ===== WORKFLOW PAGE SPECIFIC ===== */
.workflow-page-step {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.workflow-page-step:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .workflow-page-step {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.workflow-page-step img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .workflow-page-step img {
    height: 18rem;
  }
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.step-header .step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C0392B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-header .step-badge span {
  font-family: "Oswald", sans-serif;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ===== AFTER CONTACT FLOW ===== */
.after-contact {
  padding: 3rem 0;
  background: #F9F9F9;
  text-align: center;
}

@media (min-width: 1024px) {
  .after-contact {
    padding: 4rem 0;
  }
}

.after-contact h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
}

.after-contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .after-contact-steps {
    gap: 2rem;
  }
}

.after-contact-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C0392B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.after-contact-step .step-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
}

.after-contact-step .step-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* ===== CONTACT FORM 7 OVERRIDES ===== */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  background: #F9F9F9;
  font-size: 0.875rem;
  color: #333333;
  transition: border-color 0.2s ease;
  font-family: "Noto Sans JP", sans-serif;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #C0392B;
  box-shadow: 0 0 0 1px #C0392B;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
  color: #9ca3af;
}

.wpcf7 textarea {
  resize: none;
}

.wpcf7 input[type="radio"] {
  accent-color: #C0392B;
}

.wpcf7 input[type="checkbox"] {
  accent-color: #C0392B;
  width: 16px;
  height: 16px;
}

.wpcf7 .wpcf7-submit {
  display: inline-block;
  padding: 1rem 3rem;
  background: #C0392B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  min-width: 280px;
  font-family: "Noto Sans JP", sans-serif;
}

.wpcf7 .wpcf7-submit:hover {
  background: #a93226;
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
  border: none !important;
  padding: 1rem !important;
  margin: 1rem 0 !important;
  font-size: 0.875rem;
  text-align: center;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  color: #166534;
}

.wpcf7 .wpcf7-validation-errors {
  background: #fef2f2;
  color: #991b1b;
}

/* ===== SVG ICONS (inline) ===== */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-red { color: #C0392B; }
.text-orange { color: #E67E22; }
.text-white { color: #FFFFFF; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.bg-white { background: #FFFFFF; }
.bg-light { background: #F9F9F9; }
.bg-dark { background: #333333; }
.font-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

div.wpcf7 .wpcf7-spinner {
    display: none !important;
}