/* ======================================================
CSS information

 File Name  : about.css
 Style Info : 会社概要
====================================================== */

.outline-wrap {
  align-items: start;
}

/* 1024px以上 */
@media (width >= 64em) {

  .outline-wrap {
    gap: 5rem;
  }

}

.outline-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* 1024px以上 */
@media (width >= 64em) {

  .outline-container {
    grid-column: span 8;
  }

}

.outline-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border-color);
}

.outline-row:last-child {
  border-bottom: none;
}

/* 768px以上 */
@media (width >= 48em) {

  .outline-row {
    grid-template-columns: 28% 1fr;
  }

}

.outline-term {
  letter-spacing: 1px;
  padding: 1.2rem 1.5rem 0.3rem 1.5rem;
  color: var(--accent-color);
  font-size: var(--fs-small);
  font-family: var(--font-mono);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border-color);
}

/* 768px以上 */
@media (width >= 48em) {

  .outline-term {
    border-right: 1px solid var(--border-color);
  }

}

.outline-desc {
  line-height: 1.8;
  padding: 0.3rem 1.5rem 1.2rem 1.5rem;
  color: var(--text-main);
  font-size: var(--fs-body);
  font-weight: 400;
}

/* 768px以上 */
@media (width >= 48em) {

  .outline-row > * {
    padding: 1.6rem 2rem;
  }

}

.notice-box {
  height: auto;
  border: 1px solid var(--accent-color);
}

/* 1024px以上 */
@media (width >= 64em) {

  .notice-box {
    grid-column: span 4;
  }

}

.notice-box::before {
  content: "NOTICE // お打ち合わせについて";
  letter-spacing: 1px;
  position: absolute;
  top: -12px;
  left: 2rem;
  padding: 0.2rem 1rem;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--accent-color);
}

.notice-text {
  line-height: 1.8;
  color: var(--text-sub);
  font-size: var(--fs-body);
}
