/* 運営会社ページ専用CSS - company.css */

.page-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ミッションセクション */
.mission-section {
  padding: 48px 16px;
  background: white;
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
  stroke-width: 2.5;
}

.mission-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin: 0 0 24px 0;
}

.mission-text {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.mission-text p {
  margin: 0 0 16px 0;
}

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

.mission-highlight {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  padding: 16px;
  background: var(--bg-light);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  margin: 24px 0 16px 0 !important;
}

.mission-closing {
  font-weight: 700;
  color: var(--dark);
}

/* 会社概要セクション */
.company-info-section {
  padding: 48px 16px;
  background: #f9fafb;
}

.company-info-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin: 0 0 32px 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.info-row {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

/* 認定リスト */
.certification-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.certification-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}

.certification-item svg {
  width: 20px;
  height: 20px;
  color: var(--line-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.certification-item span {
  font-size: 13px;
  line-height: 1.5;
  color: #166534;
  font-weight: 500;
}

/* オフィスリスト */
.office-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.office-item {
  padding: 12px;
  background: #f3f4f6;
  border-radius: 8px;
}

.office-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 6px;
}

.office-address {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* CTAセクション */
.cta-section {
  padding: 48px 16px;
  background: white;
}

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

.cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 12px 0;
}

.cta-description {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.cta-button {
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  background: var(--line-green);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.cta-button:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* 企業向け問い合わせセクション */
.contact-section {
  padding: 48px 16px 64px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin: 0 0 8px 0;
}

.contact-description {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #e5e7eb;
}

.contact-item:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.contact-item.contact-form {
  background: linear-gradient(135deg, var(--blue) 0%, #2a4a75 100%);
  border-color: var(--blue);
}

.contact-item.contact-form:hover {
  border-color: #2a4a75;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item.contact-form .contact-icon {
  background: rgba(255, 255, 255, 0.3);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-item.contact-form .contact-label {
  color: rgba(255,255,255,0.8);
}

.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item.contact-form .contact-value {
  color: #fff;
}

.contact-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}
