@charset "utf-8";



/* =========================
   common
========================= */

.company-cont {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.company-cont + .company-cont {
  margin-top: 120px;
}

.company-cont h1,
.company-cont h2 {
  position: relative;
  margin: 0 0 50px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company-cont h1::after,
.company-cont h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 14px auto 0;
  background: #7F2200;
}

/* =========================
   company list
========================= */

.company-list-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #E3E3E3;
}

.company-list-item p {
  margin: 0;
  line-height: 1.9;
}

.company-list-item p:first-child {
  font-weight: 700;
}

.company-list-item p:last-child {
  font-weight: 500;
}

/* =========================
   access
========================= */

.company-map h3 {
  margin: 0 0 12px;
  font-family: serif;
  font-size: 24px;
  font-weight: 600;
}

.company-map p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
}

.company-map-item {
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #ddd;
}

.company-map-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   1024px
========================= */

@media screen and (max-width: 1024px) {
  .company-cont {
    max-width: 90%;
  }
}

/* =========================
   768px
========================= */

@media screen and (max-width: 768px) {

  .company-list-item {
    grid-template-columns: 160px 1fr;
    gap: 28px;
  }

  .company-map-item {
    height: 320px;
  }
}

/* =========================
   414px
========================= */

@media screen and (max-width: 414px) {

  .company-cont + .company-cont {
    margin-top: 80px;
  }

  .company-cont h1,
  .company-cont h2 {
    margin-bottom: 36px;
    font-size: 26px;
  }

  .company-list-item {
    display: block;
    padding: 18px 0;
  }

  .company-list-item p {
    font-size: 13px;
  }

  .company-list-item p:first-child {
    margin-bottom: 6px;
  }

  .company-map h3 {
    font-size: 20px;
  }

  .company-map p {
    font-size: 13px;
  }

  .company-map-item {
    height: 260px;
  }
}