@charset "UTF-8";
/* company.html 固有スタイル */

/*---------------------------------
ページヒーロー 背景画像
---------------------------------*/

.page_hero--company {
  background-image: url(../../images/company/hero_main.jpg);
  background-position: center 30%;
}

/*---------------------------------
会社概要テーブルラッパー
---------------------------------*/

.company_table_wrap {
  max-width: 860px;
  margin: 0 auto;
}

/*---------------------------------
会社概要テーブル
---------------------------------*/

.company_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.company_table th,
.company_table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  line-height: 1.8;
}

.company_table th {
  width: 200px;
  color: var(--base_color);
  font-weight: bold;
  white-space: nowrap;
  background: #f5f7fc;
}

.company_table a {
  color: var(--base_color);
  text-decoration: none;
}

.company_table a:hover {
  text-decoration: underline;
}

.company_table .td-small {
  font-size: 0.88rem;
  line-height: 2;
}

.company_table .td-note {
  font-size: 0.88rem;
  color: #777;
}

@media screen and (max-width: 768px) {
  .company_table th,
  .company_table td {
    display: block;
    width: 100%;
  }
  .company_table th {
    border-bottom: none;
    padding-bottom: 0.3rem;
  }
}

/*---------------------------------
メーカーグリッドラッパー
---------------------------------*/

.maker_grid_wrap {
  max-width: 760px;
  margin: 0 auto;
}

/*---------------------------------
メーカーグリッド
---------------------------------*/

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

.maker_badge {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
}

/*---------------------------------
アクセスセクション
---------------------------------*/

.access_section {
  padding-bottom: 0;
}

.access_address_wrap {
  max-width: 860px;
  margin: 0 auto;
}

.access_address {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.access_address i {
  color: var(--base_color);
  margin-right: 0.4em;
}

.access_map {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/*---------------------------------
会社リードバンド
---------------------------------*/

.company_lead {
  background: var(--base_color);
  padding: 3rem 0;
  text-align: center;
  color: #fff;
}

.company_lead p {
  font-size: 0.95rem;
  line-height: 2.2;
  opacity: 0.92;
  margin: 0;
}

/*---------------------------------
アクセスインフォグリッド
---------------------------------*/

.access_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.access_info_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.access_info_item:nth-child(even) {
  border-right: none;
}

.access_info_item:nth-last-child(-n+2) {
  border-bottom: none;
}

.access_info_icon {
  color: var(--base_color);
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.access_info_body dt {
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--base_color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.access_info_body dd {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .access_info_grid {
    grid-template-columns: 1fr;
  }
  .access_info_item {
    border-right: none;
  }
  .access_info_item:nth-last-child(-n+2) {
    border-bottom: 1px solid #e5e5e5;
  }
  .access_info_item:last-child {
    border-bottom: none;
  }
  .access_map {
    height: 300px;
  }
}
