@charset "UTF-8";

/* ページヘッダーはcommon.cssで読み込まれます */

/* --- コンテンツエリア --- */
.company-container {
  padding: 100px 0;
  background: #fff;
}

/* 読みやすいように幅を狭める */
.container.narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出しデザイン（シンプル＆無骨） */
.comp-head {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-left: 8px solid var(--primary); /* 黄色のアクセント */
  padding-left: 20px;
  margin-bottom: 40px;
  color: #111;
  line-height: 1;
}

/* --- 1. 会社概要リスト (Spec Sheet Style) --- */
.info-section {
  margin-bottom: 120px;
}

.company-list {
  border-top: 2px solid #111;
}

.list-row {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}
.list-row:last-child {
  border-bottom: 2px solid #111;
}

dt {
  width: 30%;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: flex-start; /* 上揃え */
  padding-left: 10px;
}
/* 英語のラベルっぽく見せる装飾（任意） */
dt::before {
  content: '■';
  color: var(--primary);
  margin-right: 10px;
  font-size: 12px;
  margin-top: 4px;
}

dd {
  width: 70%;
  font-weight: 500;
  line-height: 1.8;
}


/* --- 2. アクセス (Map) --- */
.access-section {
  margin-bottom: 120px;
}

.map-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  background: #eee;
  border: 2px solid #111; /* 地図にも枠線 */
}
.map-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  filter: grayscale(100%); /* 地図をモノクロにして渋く */
}
.map-wrapper:hover iframe {
  filter: grayscale(0%); /* ホバーでカラー */
}

.access-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}


/* --- 3. 沿革 (Simple Timeline) --- */
.history-section {
  margin-bottom: 60px;
}

.history-list {
  border-left: 2px solid #ddd; /* タイムラインの線 */
  padding-left: 30px;
  margin-left: 10px;
}

.hist-row {
  margin-bottom: 40px;
  position: relative;
}
.hist-row:last-child { margin-bottom: 0; }

/* タイムラインの点 */
.hist-row::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: -37px;
  top: 6px;
  box-shadow: 0 0 0 3px #fff; /* 白フチ */
}

.hist-year {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.hist-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}


/* --- スマホ対応 --- */
@media (max-width: 768px) {
  /* リストを縦積みに */
  .list-row {
    flex-direction: column;
    padding: 20px 0;
  }
  dt {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 0;
    color: #666; /* スマホではラベルを少し薄く */
    font-size: 13px;
  }
  dd {
    width: 100%;
    padding-left: 0;
    font-size: 16px;
    font-weight: bold; /* 内容を強調 */
  }
  
  .comp-head {
    font-size: 28px;
    margin-bottom: 30px;
  }
}