@charset "utf-8";

/* ==================================================== */
/*  #会社案内
/* ==================================================== */
.sub-contents.about {
  padding-top: 0;
}
.about .contents-head .contents-tlt {
  background: url(../img/about/head_img.webp) no-repeat center / cover;
}

.about .profile {
  padding-top: 80px;
}
.about .profile .profile-area.flex,
.about .history .history-area.flex {
  justify-content: space-between;

  gap: 40px;
}
.about .profile .profile-area h2,
.about .history .history-area h2 {
  font-size: var(--fs40);
  font-weight: bold;
  color: #4a8c80;
}
.about .profile .profile-area .text {
  width: 76%;
  font-size: var(--fs16);
  line-height: 1.68;
}
.about .profile .profile-area .text .flex {
  padding: 20px 0 22px;
  border-bottom: 1px solid #ddd;

  gap: 20px;
}
.about .profile .profile-area .text .label {
  flex-shrink: 0;
  width: 150px;
  padding-left: 0.5em;
  font-weight: bold;
  color: #4a8c80;
}
.about .profile .profile-area .text .contents .col-3 {
  display: grid;
  /* 役職(160px)、名前(90px)、資格(残り全部) */

  grid-template-columns: 160px 90px 1fr;
  gap: 10px;
}
.about .profile .profile-area .text .contents .col-2 {
  display: grid;

  grid-template-columns: 220px 1fr;
  gap: 10px;
}
.about .profile .profile-area .text .contents .col-2 > div:nth-child(2) {
  text-align: right;
}

.about .profile .map-area {
  padding-top: 100px;
}
.about .profile .map-area iframe {
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 1024px) {
  .sub-contents.about {
    padding-top: 77px;
  }
  .about .profile {
    padding-top: 50px;
  }
  .about .profile .profile-area.flex,
  .about .history .history-area.flex {
    flex-direction: column;

    gap: 20px;
  }
  .about .profile .profile-area .text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about .profile .profile-area h2,
  .about .history .history-area h2 {
    font-size: var(--fs28);
  }
  .about .profile .profile-area .text .flex {
    flex-direction: column;
    padding: 17px 0 19px;

    gap: 7px;
  }
  .about .profile .profile-area .text {
    font-size: var(--fs14);
  }
  .about .profile .profile-area .text .label {
    padding-left: 0;
  }
  .about .profile .profile-area .text .contents .col-3 {
    margin-top: 16px;

    grid-template-columns: 80px 1fr;
    gap: 1px 10px;
  }

  .about .profile .profile-area .text .contents .col-3 > div:nth-child(1) {
    font-size: var(--fs13);

    grid-column: 1 / -1;
  }
  .about .profile .profile-area .text .contents .col-2 {
    grid-template-columns: 200px 50px;
  }

  .about .profile .map-area {
    padding-top: 50px;
  }
  .about .profile .map-area iframe {
    width: 100%;
    height: 240px;
  }
}

/* ==================================================== */
/*  #歴史
/* ==================================================== */
.about .history {
  padding-top: 160px;
}
.about .history .history-box {
  width: 76%;
  font-size: var(--fs16);
  line-height: 1.68;
}
.about .history .history-box .flex {
  margin-top: 22px;

  gap: 20px;
}
.about .history .history-box .flex .year {
  flex-shrink: 0;
  width: 5%;
  font-weight: bold;
  color: #4a8c80;
}
.about .history .history-area .text {
  width: 93%;
}
.about .history .history-area .text p {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.about .history .history-area .text p::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a8c80;
  content: "";
  transform: translateY(-50%);
}
.about .history .history-area .text p a {
  text-decoration: underline;
  color: #4a8c80;

  text-decoration-color: #4a8c80;
  text-underline-offset: 0.2em;
}
@media screen and (max-width: 1024px) {
  .about .history .history-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about .history {
    padding-top: 120px;
  }
  .about .history .history-box {
    font-size: var(--fs14);
  }
  .about .history .history-box .flex .year {
    width: 30px;
  }
}

/* アイコン */
.about .contents-area a[target="_blank"]::after {
  display: inline-block;
  width: 12.35px;
  height: 12.35px;
  margin: 0 0 2px 8px;
  background-image: url(../img/common/ico_target.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.about .contents-area a[href$=".xlsx"]:after,
.about .contents-area a[href$=".xls"]:after {
  display: inline-block;
  width: 33px;
  height: 13px;
  margin: 0 0 2px 8px;
  background-image: url(../img/common/icon_excel.svg) !important;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.about .contents-area a[href*=".pdf"] {
  display: inline-block;
}
.about .contents-area a[href*=".pdf"]:after {
  display: inline-block;
  width: 27px;
  height: 13px;
  margin: 0 0 2px 8px;
  background-image: url(../img/common/icon_pdf.svg) !important;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
