/* ==========================================
   Pages CSS - ABOUT, SERVICE, COMPANY
   ========================================== */

/* ==========================================
   Page Hero
   ========================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: #111827;
  overflow: hidden;
}

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

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  margin-bottom: 2rem;
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
  color: #fff;
}

.page-hero .breadcrumb-current {
  color: #fff;
}

.page-hero-content {
  max-width: 800px;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.7) !important;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

.page-hero-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .page-hero-lead {
    font-size: 1.125rem;
  }
}

/* ==========================================
   Mission Section
   ========================================== */
.mission-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .mission-section {
    padding: 8rem 0;
  }
}

.mission-statement {
  max-width: 1000px;
}

.mission-main {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mission-main {
    font-size: 2.5rem;
  }
}

.mission-sub {
  font-size: 1rem;
  color: #000000;
  line-height: 2;
}

/* ==========================================
   Vision & Values Section
   ========================================== */
.vision-values-section {
  padding: 0 0 6rem;
  background: #fff;
}

@media (min-width: 768px) {
  .vision-values-section {
    padding: 0 0 8rem;
  }
}

.vv-grid {
  display: grid;
  gap: 2rem;
}

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

.vv-card {
  border-radius: 1.5rem;
  overflow: hidden;
}

.vv-card-vision {
  background: linear-gradient(135deg, #c73e3a 0%, #a83330 100%);
}

.vv-card-values {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.vv-card-inner {
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .vv-card-inner {
    padding: 3rem;
  }
}

.vv-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.vv-card-vision .vv-label {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.vv-card-values .vv-label {
  background: #111827;
  color: #fff;
}

.vv-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.vv-card-vision .vv-title {
  color: #fff;
}

.vv-card-values .vv-title {
  color: #111827;
}

.vv-text {
  font-size: 1rem;
  line-height: 1.85;
}

.vv-card-vision .vv-text {
  color: rgba(255, 255, 255, 0.9);
}

.vv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vv-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.vv-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vv-list li:first-child {
  padding-top: 0;
}

.vv-list-num {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c73e3a;
  flex-shrink: 0;
}

.vv-list-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.375rem;
}

.vv-list-content p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   CEO Section
   ========================================== */
.ceo-section {
  padding: 6rem 0;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .ceo-section {
    padding: 8rem 0;
  }
}

.ceo-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .ceo-grid {
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.ceo-image-wrap {
  text-align: center;
}

@media (min-width: 1024px) {
  .ceo-image-wrap {
    position: sticky;
    top: 120px;
  }
}

.ceo-image {
  width: 240px;
  height: 300px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #e5e7eb;
}

@media (min-width: 768px) {
  .ceo-image {
    width: 280px;
    height: 350px;
  }
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}

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

.ceo-position {
  display: block;
  font-size: 0.8125rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.ceo-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.ceo-name-en {
  display: block;
  font-size: 0.875rem;
  color: #9ca3af;
}

.ceo-message {
  margin-top: 2rem;
}

.ceo-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ceo-lead {
    font-size: 1.75rem;
  }
}

.ceo-message p {
  font-size: 1rem;
  color: #000;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.ceo-message p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   Strengths Section
   ========================================== */
.strengths-section {
  padding: 6rem 0;
  background: #fff;
}

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

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

.section-header-center .section-label {
  justify-content: center;
}

.strengths-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

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

@media (min-width: 1024px) {
  .strengths-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.strength-card {
  position: relative;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.strength-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.strength-icon svg {
  width: 24px;
  height: 24px;
  stroke: #c73e3a;
}

.strength-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.strength-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.strength-text {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.75;
}

/* ==========================================
   Numbers Section
   ========================================== */
.numbers-section {
  display: none;
  position: relative;
  padding: 6rem 0;
  background: #111827;
  overflow: hidden;
}

@media (min-width: 768px) {
  .numbers-section {
    padding: 8rem 0;
  }
}

.numbers-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(199, 62, 58, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(199, 62, 58, 0.1) 0%, transparent 50%);
}

.section-header-light .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-title-white {
  color: #fff;
}

.numbers-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

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

@media (min-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.number-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.number-value {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .number-value {
    font-size: 3.5rem;
  }
}

.number-unit {
  font-size: 1.5rem;
  font-weight: 600;
}

.number-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.number-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
}

.cta-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cta-btn-primary {
  background: #111827;
  color: #fff;
}

.cta-btn-primary:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.cta-btn-outline:hover {
  border-color: #111827;
  transform: translateY(-2px);
}

/* ==========================================
   Service Overview Section
   ========================================== */
.service-overview-section {
  padding: 4rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .service-overview-section {
    padding: 5rem 0;
  }
}

.service-overview-text {
  font-size: 1rem;
  color: #000000;
  line-height: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .service-nav-item {
    width: 100%;
  }
}

.service-nav-item:hover {
  border-color: #c73e3a;
  background: #fff;
}

.service-nav-num {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c73e3a;
}

.service-nav-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

/* ==========================================
   Service Detail Section
   ========================================== */
.service-detail-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .service-detail-section {
    padding: 8rem 0;
  }
}

.service-detail-section-alt {
  background: #f8fafc;
}

.service-detail-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

@media (min-width: 1024px) {
  .service-detail-grid-reverse {
    direction: rtl;
  }
  
  .service-detail-grid-reverse > * {
    direction: ltr;
  }
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(199, 62, 58, 0.15);
  line-height: 1;
}

.service-detail-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-detail-lead {
    font-size: 1.75rem;
  }
}

.service-detail-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.service-detail-features {
  margin-top: 2rem;
}

.service-detail-features-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #000;
}

.service-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: #c73e3a;
}

.service-platforms {
  margin-top: 2rem;
}

.service-platforms-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.service-platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-platform-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #000000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
}

.service-detail-section-alt .service-platform-tag {
  background: #f8fafc;
}

/* Service Features List - Check circle + text（2カラム・単色アイコン） */
.service-features {
  margin-top: 2.5rem;
}

.service-features-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 0;
  row-gap: 1.25rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

.service-features-list li::before {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 0.15em;
  border-radius: 50%;
  background-color: #134056;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 55% auto;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

@media (min-width: 768px) {
  .service-features-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.25rem;
  }

  .service-features-list li::before {
    width: 28px;
    height: 28px;
  }

  .service-features-list li {
    font-size: 1rem;
  }
}

/* Service Detail Image */
.service-detail-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-detail-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.service-detail-image-label span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .service-detail-image-label span {
    font-size: 2.5rem;
  }
}

/* ==========================================
   Flow Section
   ========================================== */
.flow-section {
  padding: 6rem 0;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .flow-section {
    padding: 8rem 0;
  }
}

.flow-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.flow-item {
  flex: 1 1 200px;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.flow-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c73e3a;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.flow-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.flow-icon svg {
  width: 28px;
  height: 28px;
  stroke: #111827;
}

.flow-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.flow-text {
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.6;
}

.flow-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
}

.flow-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #d1d5db;
}

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

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
  padding: 6rem 0;
  background: #fff;
}

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

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #c73e3a;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #000000;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.75;
}

/* ==========================================
   Company Page Styles
   ========================================== */

/* Company Nav */
.company-nav-section {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 72px;
  z-index: 100;
}

@media (max-width: 767px) {
  .company-nav-section .container {
    padding-inline: 0!important;
  }
}

.company-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .company-nav {
    gap: 2rem;
    padding: 1.25rem 0;
  }
}

.company-nav-item {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.company-nav-item:hover {
  color: #111827;
  background: #f3f4f6;
}

/* Company Overview */
.company-overview-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .company-overview-section {
    padding: 8rem 0;
  }
}

.company-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

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

.company-table th,
.company-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .company-table th {
    width: 200px;
  }
}

.company-table td {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.75;
}

.company-table-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-table-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.company-table-list li:last-child {
  margin-bottom: 0;
}

.company-table-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #c73e3a;
}

/* Officers Section */
.officers-section {
  padding: 5rem 0;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .officers-section {
    padding: 8rem 0;
  }
}

/* Simple Officer Card */
.officer-card-simple {
  margin-top: 3rem;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .officer-card-simple {
    padding: 3.5rem 3rem;
  }
}

.officer-card-logo {
  margin-bottom: 2rem;
}

.officer-card-logo img {
  width: 180px;
  height: auto;
}

.officer-card-info {
  margin-bottom: 2rem;
}

.officer-position-simple {
  font-size: 0.8125rem;
  color: #000000;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.officer-name-simple {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.officer-name-en-simple {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 400;
}

.officer-bio-simple {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}

.officer-bio-simple p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .officer-bio-simple p {
    font-size: 0.9375rem;
  }
}

/* Legacy Officer Cards (for additional officers) */
.officers-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .officers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.officer-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.officer-card-main {
  grid-column: 1 / -1;
  display: grid;
}

@media (min-width: 768px) {
  .officer-card-main {
    grid-template-columns: 280px 1fr;
  }
}

.officer-image {
  height: 200px;
  background: #e5e7eb;
}

@media (min-width: 768px) {
  .officer-card-main .officer-image {
    height: auto;
  }
}

.officer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.officer-content {
  padding: 1.5rem;
}

.officer-card-main .officer-content {
  padding: 2rem;
}

.officer-position {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background: #c73e3a;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.officer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.officer-name-en {
  font-size: 0.8125rem;
  color: #9ca3af;
}

.officer-bio {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.75;
}

/* History Section */
.history-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .history-section {
    padding: 8rem 0;
  }
}

.history-timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

@media (max-width: 767px) {
  .history-timeline::before {
    left: 60px;
  }
}

.history-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.history-item::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #c73e3a;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 767px) {
  .history-item::before {
    left: 54px;
  }
}

.history-item-future::before {
  background: #d1d5db;
}

.history-year {
  width: 60px;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .history-year {
    width: 40px;
    font-size: 0.875rem;
  }
}

.history-content {
  flex: 1;
  padding-left: 2rem;
}

.history-month {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c73e3a;
  margin-bottom: 0.5rem;
}

.history-text {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.75;
}

.history-item-future .history-text {
  color: #9ca3af;
  font-style: italic;
}

/* Group Section */
.group-section {
  padding: 6rem 0;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .group-section {
    padding: 8rem 0;
  }
}

.group-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.group-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.group-card:hover {
  border-color: #c73e3a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.group-card-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.group-card-logo {
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
}

.group-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.group-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.group-card-desc {
  font-size: 0.8125rem;
  color: #000000;
}

.group-card-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.group-card-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #000000;
}

.group-card:hover .group-card-arrow {
  background: #c73e3a;
  border-color: #c73e3a;
}

.group-card:hover .group-card-arrow svg {
  stroke: #fff;
}

/* Access Section */
.access-section {
  padding: 8rem 0;
  background: #fff;
}

.access-section .section-header-new {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .access-section {
    padding: 10rem 0;
  }

  .access-section .section-header-new {
    margin-bottom: 1.5rem;
  }
}

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

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

.access-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-office-name,
.access-office-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #c73e3a;
}

.access-address {
  margin-top: 0.25rem;
}

.access-address p {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.access-address p:last-child {
  margin-bottom: 0;
}

.access-transport {
  margin-top: 0.5rem;
}

.access-transport-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.access-transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-transport-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.75;
}

.access-transport-list li:last-child {
  margin-bottom: 0;
}

.access-transport-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #134056;
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.access-item {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .access-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }
}

.access-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #000000;
}

.access-value {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.75;
}

.access-map {
  border-radius: 1rem;
  overflow: hidden;
  background: #e5e7eb;
  min-height: 300px;
}

.access-map iframe {
  display: block;
}

/* ==========================================
   RECRUIT Page Styles
   ========================================== */

/* Recruit Message */
.recruit-message-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .recruit-message-section {
    padding: 8rem 0;
  }
}

.recruit-message-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.recruit-message-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .recruit-message-lead {
    font-size: 1.75rem;
  }
}

.recruit-message-text p {
  font-size: 1rem;
  color: #000;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.recruit-message-text p:last-child {
  margin-bottom: 0;
}

.recruit-message-image {
  border-radius: 1rem;
  overflow: hidden;
}

.recruit-message-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Why Section */
.why-section {
  padding: 6rem 0;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .why-section {
    padding: 8rem 0;
  }
}

.why-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

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

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(199, 62, 58, 0.1);
  line-height: 1;
}

.why-icon {
  width: 40px;
  margin: 0 auto 20px;
  opacity: 0.4;
}

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

.why-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #c73e3a;
}

.why-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.why-card-text {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.75;
}

/* Jobs Section */
.jobs-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .jobs-section {
    padding: 8rem 0;
  }
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.job-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: #c73e3a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-card-header {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.job-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #000000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.job-tag-new {
  background: #c73e3a;
  border-color: #c73e3a;
  color: #fff;
}

.job-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.job-card-body {
  padding: 2rem;
}

.job-card-desc {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.job-card-details {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .job-card-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.job-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.job-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
}

.job-detail-value {
  font-size: 0.9375rem;
  color: #111827;
}

.job-card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #c73e3a;
  transition: gap 0.3s ease;
}

.job-apply-btn:hover {
  gap: 1rem;
}

.job-apply-btn svg {
  width: 18px;
  height: 18px;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .benefits-section {
    padding: 8rem 0;
  }
}

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

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #c73e3a;
}

.benefit-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

/* Recruit Flow */
.recruit-flow-section {
  padding: 6rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .recruit-flow-section {
    padding: 8rem 0;
  }
}

.recruit-flow {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.recruit-flow::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

@media (min-width: 768px) {
  .recruit-flow::before {
    left: 32px;
  }
}

.recruit-flow-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.recruit-flow-item:last-child {
  padding-bottom: 0;
}

.recruit-flow-item:last-child::after {
  display: none;
}

.recruit-flow-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #c73e3a;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .recruit-flow-num {
    width: 64px;
    height: 64px;
  }
}

.recruit-flow-content {
  flex: 1;
  padding-top: 0.5rem;
}

.recruit-flow-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.recruit-flow-text {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.75;
}

/* Recruit CTA */
.recruit-cta-section {
  position: relative;
  padding: 6rem 0;
  background: #111827;
  overflow: hidden;
}

@media (min-width: 768px) {
  .recruit-cta-section {
    padding: 8rem 0;
  }
}

.recruit-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(199, 62, 58, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(199, 62, 58, 0.2) 0%, transparent 50%);
}

.recruit-cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.recruit-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .recruit-cta-title {
    font-size: 2.5rem;
  }
}

.recruit-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.recruit-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.recruit-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.recruit-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.recruit-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   CONTACT Page Styles
   ========================================== */

/* Contact Page Header */
.contact-page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

/* Contact Section（serviceページ参考：上下パディング統一） */
.contact-section {
  padding: 5rem 0;
  background: #fff;
}

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

.contact-grid {
  display: grid;
  gap: 4rem;
}

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

/* Contact Form */
.contact-form-wrap {
  max-width: 100%;
}

.contact-form-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #111827;
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.contact-form-note {
  font-size: 0.8125rem;
  color: #000000;
}

.required {
  color: #c73e3a;
}

/* Contact Form 7 - フィールド高さ・見た目統一 */
.contact-form-wrap .contact-form-row {
  margin-bottom: 1.5rem;
}

.contact-form-wrap .contact-form-row p {
  margin: 0;
}

.contact-form-wrap .contact-form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contact-form-wrap .contact-form-label br {
  display: none;
}

/* テキスト・メール・電話 - 統一高さ */
.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-wrap input.contact-form-input,
.contact-form-wrap .contact-form-select,
.contact-form-wrap .contact-form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-wrap .contact-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form-wrap input.contact-form-input:focus,
.contact-form-wrap .contact-form-select:focus,
.contact-form-wrap .contact-form-textarea:focus {
  outline: none;
  border-color: #134056;
  box-shadow: 0 0 0 3px rgba(19, 64, 86, 0.1);
}

.contact-form-wrap input.contact-form-input::placeholder,
.contact-form-wrap .contact-form-textarea::placeholder {
  color: #9ca3af;
}

/* テキストエリアは高さ多め */
.contact-form-wrap .contact-form-textarea {
  min-height: 180px;
  resize: vertical;
  padding: 1rem;
}

/* 同意チェックボックス - 大きく・縦中央揃え */
.contact-form-wrap .contact-form-privacy {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact-form-wrap .contact-form-privacy p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.25rem;
  margin: 0;
}

.contact-form-wrap .contact-form-checkbox {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #134056;
  vertical-align: middle;
}

.contact-form-wrap .contact-form-privacy a {
  color: #134056;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-wrap .contact-form-privacy a:hover {
  color: #c73e3a;
}

.contact-form-wrap .contact-form-privacy .wpcf7-form-control-wrap, .contact-form-wrap .contact-form-privacy .wpcf7-list-item {
  display: flex;
}

.contact-form-wrap .contact-form-privacy .wpcf7-form-control-wrap,
.contact-form-wrap .contact-form-privacy .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
}

/* 送信ボタン - 有効・無効どちらも見た目統一 */
.contact-form-wrap .contact-form-submit {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-form-wrap .contact-form-submit p {
  margin: 0;
}

.contact-form-wrap .contact-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c73e3a;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.contact-form-wrap .contact-form-btn:hover:not(:disabled) {
  background: #a83330;
}

.contact-form-wrap .contact-form-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  opacity: 0.9;
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c73e3a;
  box-shadow: 0 0 0 3px rgba(199, 62, 58, 0.1);
}

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

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

/* Radio & Checkbox */
.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-radio,
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-radio input,
.form-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.form-radio input:checked + .form-radio-mark {
  border-color: #c73e3a;
}

.form-radio input:checked + .form-radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #c73e3a;
  border-radius: 50%;
}

.form-checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.form-checkbox input:checked + .form-checkbox-mark {
  background: #c73e3a;
  border-color: #c73e3a;
}

.form-checkbox input:checked + .form-checkbox-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-radio-text,
.form-checkbox-text {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.5;
}

.form-checkbox-text a {
  color: #c73e3a;
  text-decoration: underline;
}

.form-checkbox-privacy {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}

/* Submit Button */
.form-submit {
  margin-top: 2rem;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c73e3a;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .form-submit-btn {
    width: auto;
    min-width: 280px;
  }
}

.form-submit-btn:hover {
  background: #a83330;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(199, 62, 58, 0.3);
}

.form-submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.contact-info-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #c73e3a;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: #111827;
  line-height: 1.6;
}

/* Contact Notice */
.contact-notice-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #fef2f2;
  border-radius: 1rem;
}

.contact-notice-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-notice-icon svg {
  width: 20px;
  height: 20px;
  stroke: #c73e3a;
}

.contact-notice-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.375rem;
}

.contact-notice-text {
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.6;
}

/* Contact Links */
.contact-links-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
}

.contact-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links-list li {
  border-bottom: 1px solid #e5e7eb;
}

.contact-links-list li:last-child {
  border-bottom: none;
}

.contact-links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.9375rem;
  color: #111827;
  transition: color 0.3s ease;
}

.contact-links-list a:hover {
  color: #c73e3a;
}

.contact-links-list svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.contact-links-list a:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

/* ==========================================
   Privacy Policy Page
   ========================================== */
.privacy-section {
  padding: 5rem 0 6rem;
  background: #fff;
}

.privacy-content {
  max-width: 100%;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.privacy-block {
  margin-bottom: 2.5rem;
}

.privacy-block:last-of-type {
  margin-bottom: 0;
}

.privacy-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .privacy-heading {
    font-size: 1.375rem;
  }
}

.privacy-block p {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.privacy-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.75;
}

.privacy-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #134056;
  font-weight: bold;
}

.privacy-block.privacy-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.privacy-company {
  margin-top: 1rem;
  font-weight: 500;
  color: #111827;
}

.privacy-link {
  color: #134056;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-link:hover {
  color: #c73e3a;
}

.privacy-date {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: right;
}

/* ==========================================
   Sitemap Page（ヒーローは共通ダーク・下段は白背景）
   ========================================== */
/* Sitemap Section - 白背景・ブロック＋リスト */
.sitemap-section {
  padding: 5rem 0 8rem;
  background: #fff;
}

.sitemap-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sitemap-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
  }
}

.sitemap-nav-block {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .sitemap-nav-block {
    padding: 2.5rem 0;
    border-bottom: none;
    border-left: 3px solid #134056;
    padding-left: 2rem;
  }
}

.sitemap-nav-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #134056;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.sitemap-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-nav-list li {
  border-bottom: 1px solid #1a1f2e;
}

.sitemap-nav-list li:last-child {
  border-bottom: none;
}

.sitemap-nav-list a {
  display: block;
  font-size: 0.9375rem;
  color: #000;
  padding: 0.875rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sitemap-nav-list a:hover {
  color: #134056;
  padding-left: 0.5rem;
}

.sitemap-external-icon {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  opacity: 0.6;
}

/* ==========================================
   404 Page
   ========================================== */
.page-hero-404 .page-hero-bg {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.page-hero-title-404 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero-title-404 {
    font-size: 5rem;
  }
}

.error-404-section {
  padding: 6rem 0 8rem;
  background: #fff;
}

.error-404-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.error-404-text {
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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