@charset "UTF-8";
/* =====================
	会社概要
 ======================= */
.profile {
  margin: 0;
}

.profile section {
  margin-bottom: 8%;
}

.message .message-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em 0;
}

.message .message-ttl {
  flex: 0 1 100%;
  font-family: var(--font_title);
  font-size: 150%;
  font-weight: 800;
  letter-spacing: 0;
}

.message .message-txt {
  flex: 0 1 56.3%;
  letter-spacing: 0;
}

.message .message-txt-name {
  margin-top: 1.5em;
}

.message .message-img {
  flex: 0 1 40%;
}

.company .company-dl {
  display: grid;
  grid-template-columns: minmax(20%, auto) 1fr;
  gap: 0;
  border-top: 1px solid #707070;
}

.company .company-dt {
  padding: 1.35em 1em;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #707070;
}

.company .company-dt > span {
  display: inline-block;
  min-width: 4em;
  text-align-last: justify;
}

.company .company-dd {
  padding: 1.35em 0;
  border-bottom: 1px solid #707070;
}

.company .company-dt:nth-of-type(odd),
.company .company-dd:nth-of-type(odd) {
  background: #f2f2f2;
}

.profile .history {
  margin: 0;
}

.history .history-dl {
  display: grid;
  grid-template-columns: minmax(10%, auto) 1fr;
  gap: 0 1em;
}

/** -------------------- タブレット -------------------- **/
@media (max-width: 1280px) {
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  .profile section {
    margin-bottom: 50px;
  }

  .message .message-ttl {
    font-size: 20px;
  }
  .message .message-txt {
    flex: 0 1 100%;
    order: 2;
  }
  .message .message-img {
    flex: 0 1 100%;
  }
  .company .company-dl {
    display: block;
  }
  .company .company-dt {
    padding: 12px 20px 0;
    text-align: left;
    border-bottom: 0;
  }
  .company .company-dd {
    padding: 12px 20px;
  }
}
