@charset "UTF-8";

/* =======================================
   COMPANY
======================================= */
.p-company {
  background-color: #fff;
}

/* =======================================
   COMPANY HEADER
======================================= */
.p-company-header {
  border-bottom: 1px solid #aaa;
}

.p-company-header__inner {
  align-items: center;
  display: flex;
  min-height: 128px;
}

.p-company-header__decoration {
  flex-shrink: 0;
  width: 100px;
}

.p-company-header__title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: -68px;
  position: relative;
}

/* =======================================
   COMPANY COMMON
======================================= */
.p-company-section {
  border-bottom: 1px solid #707070;
  padding-block: 44px;
}

.p-company-section__inner,
.p-company-history__inner {
  column-gap: 60px;
  display: grid;
  grid-template-columns: 160px minmax(0, 800px);
  justify-content: center;
}

.p-company-section__title {
  align-items: center;
  align-self: start;
  background-color: #76bde4;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  line-height: 1.2;
  width: 160px;
}

/* =======================================
   COMPANY PROFILE
======================================= */
.p-company-profile {
  padding-bottom: 46px;
}

.p-company-profile__body {
  min-width: 0;
}

.p-company-profile__table {
  font-size: 1.8rem;
  line-height: 1.7;
  width: 100%;
}

.p-company-profile__table th,
.p-company-profile__table td {
  border-bottom: 1px solid #707070;
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

.p-company-profile__table tr:first-child th,
.p-company-profile__table tr:first-child td {
  border-top: 1px solid #707070;
}

.p-company-profile__table th {
  font-weight: 700;
  width: 145px;
}

.p-company-profile__location {
  margin-top: 30px;
}

.p-company-profile__location:first-child {
  margin-top: 0;
}

.p-company-profile__location-name {
  font-weight: 700;
  margin-bottom: 6px;
}

/* =======================================
   COMPANY HISTORY
======================================= */
.p-company-history {
  padding-bottom: 58px;
}

.p-company-history__list {
  border-bottom: 1px solid #707070;
  border-top: 1px solid #707070;
  min-width: 0;
}

.p-company-history__item {
  align-items: start;
  display: grid;
  font-size: 1.8rem;
  grid-template-columns: 190px minmax(0, 1fr);
  line-height: 1.7;
  padding: 16px 24px;
}

.p-company-history__item:nth-child(odd) {
  background-color: #d9f3fa;
}

.p-company-history__date {
  font-weight: 700;
}

.p-company-history__summary {
  column-gap: 40px;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 590px;
  margin-top: 38px;
}

.p-company-history__description {
  font-size: 1.6rem;
  line-height: 2;
}

.p-company-history__figure img {
  aspect-ratio: 600 / 390;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* =======================================
   COMPANY ACCESS
======================================= */
.p-company-access {
  border-bottom: 0;
  padding-block: 44px 82px;
}

.p-company-access__inner {
  column-gap: 60px;
  display: grid;
  grid-template-columns: 300px minmax(0, 800px);
  grid-template-rows: auto 1fr;
  justify-content: center;
}

.p-company-access__address {
  font-size: 1.6rem;
  grid-column: 1;
  grid-row: 2;
  line-height: 1.8;
  margin-top: 38px;
}

.p-company-access__name {
  font-weight: 700;
  margin-bottom: 12px;
}

.p-company-access__map {
  grid-column: 2;
  grid-row: 1 / 3;
}

.p-company-access__map iframe {
  border: 0;
  display: block;
  height: 500px;
  width: 100%;
}

/* =======================================
   SP
======================================= */
@media (max-width: 767px) {
  /* =======================================
     COMPANY HEADER
  ======================================= */
  .p-company-header__inner {
    min-height: 90px;
  }

  .p-company-header__decoration {
    width: 72px;
  }

  .p-company-header__title {
    font-size: 2.6rem;
    margin-left: -48px;
  }

  /* =======================================
     COMPANY COMMON
  ======================================= */
  .p-company-section {
    padding-block: 22px;
  }

  .p-company-section__inner,
  .p-company-history__inner {
    display: block;
  }

  .p-company-section__title {
    font-size: 2.1rem;
    height: 40px;
    margin-inline: auto;
    width: 140px;
  }

  /* =======================================
     COMPANY PROFILE
  ======================================= */
  .p-company-profile {
    padding-bottom: 30px;
  }

  .p-company-profile__body {
    margin-top: 20px;
  }

  .p-company-profile__table {
    display: block;
    font-size: 1.6rem;
    line-height: 1.65;
  }

  .p-company-profile__table tbody,
  .p-company-profile__table tr,
  .p-company-profile__table th,
  .p-company-profile__table td {
    display: block;
    width: 100%;
  }

  .p-company-profile__table th,
  .p-company-profile__table td {
    padding-inline: 12px;
  }

  .p-company-profile__table th {
    border-bottom: 1px dashed #aaa;
    border-top: 0;
    padding-block: 11px 5px;
  }

  .p-company-profile__table td {
    padding-block: 5px 11px;
  }

  .p-company-profile__table tr:first-child th {
    border-top: 1px solid #aaa;
  }

  .p-company-profile__table tr:first-child td {
    border-top: 0;
  }

  .p-company-profile__location {
    margin-top: 22px;
  }

  .p-company-profile__location-name {
    margin-bottom: 4px;
  }

  /* =======================================
     COMPANY HISTORY
  ======================================= */
  .p-company-history {
    padding-bottom: 28px;
  }

  .p-company-history__inner {
    padding-inline: 0;
  }

  .p-company-history .p-company-section__title {
    margin-bottom: 22px;
  }

  .p-company-history__list {
    border-bottom: 0;
    border-top: 0;
  }

  .p-company-history__item {
    gap: 30px;
    grid-template-columns: 105px minmax(0, 1fr);
    line-height: 1.55;
    min-height: 0;
    padding: 12px;
  }

  .p-company-history__date {
    font-size: 1.6rem;
  }

  .p-company-history__text {
    font-size: 1.4rem;
  }

  .p-company-history__summary {
    display: block;
    margin-top: 0;
    padding: 24px 20px 0;
  }

  .p-company-history__description {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .p-company-history__figure {
    margin-top: 28px;
  }

  /* =======================================
     COMPANY ACCESS
  ======================================= */
  .p-company-access {
    padding: 22px 0 80px;
  }

  .p-company-access__inner {
    display: block;
    padding-inline: 0;
  }

  .p-company-access__address {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 24px 20px 28px;
  }

  .p-company-access__name {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .p-company-access__map iframe {
    height: 490px;
  }
}

