@charset "UTF-8";

/* --- Page Content Top Adjustment --- */
/* ヘッダー画像がない場合、固定ナビゲーション分の余白を確保 */
.page-content-top {
  padding-top: 80px; /* header height */
  background: var(--dark); /* 背景色をbodyと合わせる */
}

/* --- Sections --- */
.info-section,
.access-section,
.history-section {
  padding: 80px 0; /* 少し詰める */
}

/* 見出しスタイル */
.comp-head {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 60px;
  padding-left: 20px;
  border-left: 8px solid var(--primary);
  line-height: 1;
}
.bg-black .comp-head, .bg-gray .comp-head { color: #fff; }
.bg-white .comp-head { color: #111; }


/* --- Company List (Profile) --- */
.company-list {
  border-top: 2px solid #333;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding: 25px 0;
}

.list-row dt {
  width: 25%;
  font-weight: 700;
  color: var(--primary);
  padding-right: 20px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}
.list-row dt::before {
  content: '■';
  margin-right: 10px;
  font-size: 12px;
  color: #555;
}

.list-row dd {
  width: 75%;
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
}

.list-row dd .note {
  font-size: 13px;
  color: #888;
  display: block;
  margin-top: 5px;
}

/* リスト内リスト */
.detail-list, .business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list li {
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}
.detail-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.business-list { counter-reset: business-num; }
.business-list li {
  margin-bottom: 20px;
  padding-left: 0;
}
.business-list li strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  width: fit-content;
}


/* --- Access Map --- */
.map-wrapper {
  border: 4px solid #111;
  background: #000;
  padding: 5px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.2);
}
.map-wrapper iframe {
  display: block;
  filter: grayscale(100%) contrast(1.1);
}
.access-text {
  margin-top: 30px;
  color: #ccc;
  font-size: 16px;
}
.access-text strong { color: #fff; }


/* --- History --- */
.history-section.text-black { color: #111; }

.history-list {
  border-left: 4px solid var(--primary);
  padding-left: 30px;
  position: relative;
}

.hist-row {
  margin-bottom: 40px;
  position: relative;
}
.hist-row::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.hist-year {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1;
}

.hist-desc {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .list-row { flex-direction: column; }
  .list-row dt { width: 100%; margin-bottom: 10px; border-bottom: 1px dashed #333; padding-bottom: 5px; }
  .list-row dd { width: 100%; padding-left: 0; }
  
  .history-list { padding-left: 20px; border-left-width: 2px; }
  .hist-row::before { left: -26px; width: 10px; height: 10px; }
  .hist-year { font-size: 20px; }
}