@charset "UTF-8";
/* page-hero  ================================= */
.page-hero--company-profile {
  background-image: url(../../../images/company/company-profile/hero_sp.jpg);
  background-position: 0 50%;
}

@media (min-width: 768px) {
  .page-hero--company-profile {
    background-image: url(../../../images/company/company-profile/hero_pc.jpg);
  }
}
/* ページ内リンク */
.company-page-nav__list {
  max-width: 830px;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
  margin: 0 auto;
}

.company-page-nav__link {
  height: 100%;
  font-size: clamp(0.875rem, -0.681rem + 3.24vw, 1.75rem);
  color: var(--color-ffffff);
  text-decoration: none;
  border-radius: 10px;
  background-color: var(--color-69472f);
  border: 1px solid var(--color-69472f);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4em 0.4em 0.4em 0.4em;
  position: relative;
}
.company-page-nav__link::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.company-page-nav__link:hover {
  color: var(--color-69472f);
  background-color: var(--color-ffffff);
}

@media (min-width: 768px) {
  .company-page-nav__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 60px;
    gap: 70px;
  }
}
/* 会社概要 */
.company-profile__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.company-profile__item {
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
  padding: 1.1em 0;
}
.company-profile__item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.company-profile__item:last-child::after {
  content: none;
}

.company-profile__term {
  font-size: var(--fontsize-14);
  font-weight: 600;
  margin-bottom: 0;
}

.company-profile__desc {
  font-size: var(--fontsize-14);
  font-weight: 400;
  margin-bottom: 0;
}

.company-profile__map--sp {
  grid-column: 1/3;
  margin-top: 1em;
}

.company-profile__google-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 1em;
}

.company-profile__google-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .company-profile__body {
    grid-template-columns: 1fr 1fr;
  }
  .company-profile__term {
    font-size: var(--fontsize-18);
  }
  .company-profile__desc {
    font-size: var(--fontsize-18);
  }
}
/* 沿革 */
.company-history__body {
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.company-history__item {
  font-size: var(--fontsize-14);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25em;
  position: relative;
  padding: 1.1em 0;
}
.company-history__item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.company-history__item:last-child::after {
  content: none;
}

.company-history__date {
  font-weight: 600;
  margin-bottom: 0;
}

.company-history__text {
  font-weight: 400;
  margin-bottom: 0;
}

.company-history__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.company-history__more-link {
  max-width: 260px;
  position: relative;
  padding-right: 10px;
}
.company-history__more-link::before, .company-history__more-link::after {
  content: "";
  background-color: currentColor;
}
.company-history__more-link {
  /* 横線 */
}
.company-history__more-link::before {
  width: 12px;
  height: 2px;
  border: none;
  position: absolute;
  right: 16px;
}
.company-history__more-link {
  /* 縦線 */
}
.company-history__more-link::after {
  width: 2px;
  height: 12px;
  border: none;
  position: absolute;
  right: 21px;
}

@media (min-width: 768px) {
  .company-history__item {
    font-size: var(--fontsize-18);
    grid-template-columns: 20% 80%;
  }
  .company-history__more {
    margin-top: 40px;
  }
  .company-history__more-link {
    padding-right: 24px;
  }
}
/* 関連会社 */
.company-related__item {
  font-size: var(--fontsize-14);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  position: relative;
  padding: 1.1em 0;
}
.company-related__item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.company-related__item:last-child::after {
  content: none;
}

.company-related__name {
  font-weight: 600;
  margin-bottom: 0;
}

.company-related__address {
  margin-bottom: 0;
}

.company-related__business {
  margin-bottom: 0;
}

.company-related__label {
  font-weight: 600;
  display: block;
}

@media (min-width: 768px) {
  .company-related__item {
    font-size: var(--fontsize-18);
    grid-template-columns: 1fr 1fr minmax(200px, 1.5fr);
  }
}/*# sourceMappingURL=company-profile.css.map */