/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 11 2026 | 12:03:05 */
/* =========================================
   BASE & WRAPPER
========================================= */
.about-page {
  background: #ffffff;
  line-height: 2.0;
}

.about-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #ffffff;
}

/* =========================================
   共通パーツ (EN Label / Heading)
========================================= */
.about-en, .corp-en, .corp-en-add {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #c63d2b;
  margin-bottom: 8px;
}

.about-title {
  font-size: 32px;
  margin-bottom: 56px;
}

.about-heading, .corp-title, .corp-title-add {
  font-size: 26px;
  margin-bottom: 30px;
}

/* =========================================
   セクション・余白管理（タイト版）
========================================= */
.about-section,
.overview-section {
  margin-top: 30px; /* セクション間の距離 */
}

.policy-section,
.corp-section,
.corp-section-add {
  margin-top: 60px;
}

.about-section,
.policy-section {
  padding-top: 24px; /* 線より上の余白 */
}

/* セクション区切り線 */
.about-section::before,
.policy-section::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 920px;
  height: 1px;
  background: #d6d6d2;
  margin-bottom: 16px; /* 線より下の余白 */
}

/* 想い(Header)直後のHISTORYセクションのみさらに詰める */
.about-header + .about-section {
  margin-top: 0;
  padding-top: 10px;
}

/* =========================================
   TEXT STYLES
========================================= */
.about-text p {
  margin: 0;
}
.about-text p + p {
  margin-top: 24px;
}

/* =========================================
   POLICY / OVERVIEW
========================================= */
.policy-box {
  background: #f5f5f3;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.policy-wrap {
  display: grid;
  gap: 24px;
}

.policy-item {
  background: #f5f5f3;
  border-radius: 20px;
  padding: 30px 40px;
}

.policy-label {
  font-size: 15px;
  font-weight: 700;
  color: #c63d2b;
  margin-bottom: 12px;
}

.policy-item--slogan {
  background: #ffffff;
  border: 2px solid #c63d2b;
}

/* Overview Card */
.overview-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 32px 36px;
  background: #f5f5f3;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* =========================================
   CORPORATE INFO (Table Style)
========================================= */
.corp-table, .corp-table-add {
  /* 上下の区切り線をここで一括管理。メンテナンスが楽になります */
  border-top: 1px solid #e0e0dc;
  border-bottom: 1px solid #e0e0dc; 
}

.corp-row,.corp-row-add {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center; 
  border-top: 1px solid #e0e0dc; /* 行間の区切り線 */
  
  /* 上下中央を完璧にするための設定 */
  min-height: 64px; 
  padding: 8px 0;   
  box-sizing: border-box;
}

/* 最初の行だけ上の線を表示させない（テーブルのborder-topと重ならないように） */
.corp-row:first-child {
  border-top: none;
}

/* --- 左ラベル（社名など） --- */
.corp-label,.corp-label-add {
  font-size: 15px;
  font-weight: 700;
  color: #c63d2b;
  line-height: 1.2;
  margin: 0 !important;
}

/* --- 右本文 --- */
.corp-body {
 font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin: 0 !important;
  display: flex;
  align-items: center;
}

/* 本文内の不要な余白を完全に除去 */
.corp-body p {
margin: 0 !important;
  padding: 0 !important;
}

/* Access Map Section */
.corp-body-add {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.corp-map iframe {
  border-radius: 4px;
  display: block;
}

/* =========================================
   RESPONSIVE (Smartphone)
========================================= */
@media (max-width: 768px) {
  .about-wrap { padding: 48px 16px; }
  .about-title { font-size: 26px; margin-bottom: 32px; }
  
  /* セクション余白(SP) */
  .about-section {
    margin-top: 20px;
    padding-top: 16px;
  }
  .policy-section,
  .corp-section,
  .corp-section-add {
    margin-top: 40px; 
  }	
	
  .about-section::before { margin-bottom: 12px; }

  /* テーブル形式の解除 */
  .overview-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
    align-items: flex-start;
  }
.corp-row,.corp-row-add {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
    min-height: auto;
    align-items: flex-start;
  }

  .policy-item, .policy-box { padding: 24px; }
}

/* PC用マップ横並び */
@media (min-width: 768px) {
  .corp-body-add {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .corp-address { flex: 0 0 45%; }
  .corp-map { flex: 1; }
}