/* Font Size ----- */
:root {
  --color-txt: #3e3a39;
  --color-white: #fff;
  --color-deep-orange: #df671b;
  --color-purple: #7d80ce;
  --color-deep-purple: #655dac;
  --color-main: var(--color-txt);
  --color-accent: var(--color-deep-orange);
  --color-sub: var(--color-purple);
}

.about-tab .tab__inner {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width:767px) {
  .about-tab .tab__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width:992px) {
  .about-tab .tab__inner {
    width: 75%;
  }
}

.about-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 6rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #efeff0;
}
@media screen and (max-width:767px) {
  .about-section__header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
  }
}
.about-section__marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 3px;
  height: 1.3lh;
}
.about-section__marker span {
  width: 100%;
  height: 33.3333333333%;
}
.about-section__marker span:nth-child(1) {
  background-color: #ffb93b;
}
.about-section__marker span:nth-child(2) {
  background-color: #f7931e;
}
.about-section__marker span:nth-child(3) {
  background-color: #f66a0f;
}
.about-section__title {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width:767px) {
  .about-section__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:991px) {
  .about-section__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 3rem;
  }
}
@media screen and (min-width:992px) {
  .about-section__body {
    display: grid;
    gap: 4rem;
    grid-template-columns: 2fr 3fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.about-summary__term {
  font-weight: 600;
  line-height: 1.6;
  background-color: #efeff0;
  padding: 0.5rem 1rem;
}
.about-summary__description {
  padding: 1.5rem 2rem;
}

.about-actions {
  margin-top: clamp(20px, 4vw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(12px, 3vw, 20px);
}
.about-actions .btn {
  max-width: 280px;
}
@media screen and (max-width:767px) {
  .about-actions .btn {
    max-width: 100%;
  }
}

.about-media__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 604/393;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.about-media__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-history__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: clamp(20px, 4vw, 28px);
}
.about-history__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:991px) {
  .about-history__item:has(.about-history__term:empty) {
    margin-top: -1.5rem;
  }
}
@media screen and (max-width:991px) {
  .about-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.about-history__term {
  position: relative;
  width: 240px;
}
@media screen and (max-width:991px) {
  .about-history__term:empty {
    display: none;
  }
}
.about-history__term .txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0.5rem 2rem;
  background-color: #eae9fb;
  border-radius: 100vmax;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  width: 200px;
}
.about-history__term .line {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #eae9fb;
}
@media screen and (max-width:991px) {
  .about-history__term .line {
    display: none;
  }
}
.about-history__description {
  line-height: 1.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 0.6lh;
}
.about-history__description::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5lh;
  aspect-ratio: 1;
  background-color: var(--color-deep-purple);
  border-radius: 50%;
}

.about-showroom__intro {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}
@media screen and (min-width:992px) {
  .about-showroom__intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.about-showroom__text {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}
.about-showroom__lead {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width:767px) {
  .about-showroom__lead {
    font-size: 2.4rem;
  }
}
.about-showroom__description {
  margin: 0;
  line-height: 2;
}

.about-slider .slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-slider .slider__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}/*# sourceMappingURL=style-about.css.map */