@charset "UTF-8";
/**************************************/
@media (max-width: 834px) {
  .company .under-mv__title-en {
    font-size: 5rem !important;
  }
}

/* -------------------------
 * 共通
 * ------------------------- */
.company__section + .company__section {
  margin-top: 14rem;
}
@media (max-width: 834px) {
  .company__section + .company__section {
    margin-top: 6rem;
  }
}

/* -------------------------
 * Outline
 * ------------------------- */
.company-outline__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.company-outline__list dt,
.company-outline__list dd {
  padding-block: 3rem;
}
.company-outline__list dt {
  width: 18%;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 639px) {
  .company-outline__list dt {
    width: 100%;
    border-bottom: none;
    padding: 1.6rem 0 0 0;
  }
}
.company-outline__list dd {
  width: 82%;
  border-bottom: 1px solid #ddd;
  padding-left: 1.6rem;
}
@media (max-width: 639px) {
  .company-outline__list dd {
    min-width: 140px;
    padding: 1rem 0 1.6rem 0;
    width: 100%;
  }
}

.company__mail-link {
  text-decoration: underline;
}

/* -------------------------
 * History
 * ------------------------- */
.company-history__list > li + li {
  margin-top: 4rem;
}
.company-history__list > li {
  display: grid;
  grid-template-columns: 8.5rem auto 1fr;
  gap: 3rem 4.5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 834px) {
  .company-history__list > li {
    grid-template-columns: 5.3rem auto 1fr;
  }
}
.company-history__list > li:not(:last-child) .circle-area {
  width: 1.2rem;
  height: 100%;
  position: relative;
}
.company-history__list > li:not(:last-child) .circle-area::before {
  background: #ddd;
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.1rem;
  height: calc(100% + 4rem);
  top: 1.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.company-history__list-detail > li + li {
  margin-top: 1.5rem;
}

.company-history__list-detail-item {
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  gap: 3rem 3%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company-history__list-year {
  color: #999;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 834px) {
  .company-history__list-year {
    font-size: 1.8rem;
  }
}

.company-history__list-circle {
  display: block;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 1.2rem;
  height: auto;
  background: #999;
  -webkit-transform: translateY(1.2rem);
          transform: translateY(1.2rem);
}
@media (max-width: 834px) {
  .company-history__list-circle {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}

.company-history__list-month {
  font-size: 16px;
  font-weight: 500;
  color: #999;
  line-height: 2.2;
}
@media (max-width: 834px) {
  .company-history__list-month {
    line-height: 1.7;
  }
}

.company-history__list-txt {
  padding-top: 0.1rem;
}
@media (max-width: 834px) {
  .company-history__list-txt {
    padding-top: 0;
    line-height: 1.9;
  }
}

.company-history__list-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.company-history__list-img {
  width: 100%;
  max-width: 36rem;
}

/* -------------------------
 * アコーディオン
 * ------------------------- */
.accordion__item {
  position: relative;
}
.accordion__item .company-history__list {
  max-height: 380px;
  overflow: hidden;
  -webkit-transition: max-height 500ms ease;
  transition: max-height 500ms ease;
  position: relative;
}
.accordion__item .company-history__list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, rgba(250, 250, 249, 0.9)), to(#fafaf9));
  background: linear-gradient(transparent, rgba(250, 250, 249, 0.9) 70%, #fafaf9);
  pointer-events: none;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.accordion__item.content-open .company-history__list::after {
  opacity: 0;
}
.accordion__item.content-open .open-close-btn::before {
  content: "";
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
}

.company-history__btn {
  margin: 2rem auto 0;
  background: #fafaf9;
}
.company-history__btn .button-text {
  gap: 1.5rem;
}
.company-history__btn:hover {
  cursor: pointer;
  background-color: #2e2e2e;
}
.company-history__btn:hover .open-btn-icon::before, .company-history__btn:hover .open-btn-icon::after {
  background: #fff;
}
@media (max-width: 834px) {
  .company-history__btn.content-open {
    margin-top: 3.5rem;
  }
}
.company-history__btn.content-open .open-btn-icon::before {
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
}

.open-btn-icon {
  position: relative;
}
.open-btn-icon::before, .open-btn-icon::after {
  content: "";
  position: absolute;
  background: #2e2e2e;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.open-btn-icon::after {
  width: 13px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.open-btn-icon::before {
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}/*# sourceMappingURL=company.css.map */