@charset "UTF-8";

/* ---------- message ---------- */
.message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 6vw, 80px)
}

.lead {
  max-width: none;
}

@media(max-width:560px) {
  .message {
    grid-template-columns: 1fr
  }
}

.portrait {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.message .body p {
  margin-bottom: 1.6em;
  color: var(--sub);
  font-size: 14px
}

.message .name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .2em;
  margin-top: 36px
}

.message .name small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .16em;
  margin-bottom: 8px
}

@media(max-width:560px) {
  .portrait {
      aspect-ratio: 4/3;
  }
}


/* ---------- MVV ---------- */
.mvv {
  border-top: 1px solid var(--line);
}

.mvv>div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: clamp(24px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--line);
}

@media(max-width:760px) {
  .mvv>div {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .mvv li {
        padding: 5px 0 10px;
  }
  .mvv h3 {
    margin-bottom: 10px;
  }
}

.mvv .en {
  grid-column: 1;
  margin-bottom: 0;
  margin-top: 10px;
}

.mvv h3,
.mvv p,
.mvv ul {
  grid-column: 2;
}

@media(max-width:760px) {
  .mvv .en,
  .mvv h3,
  .mvv p,
  .mvv ul {
    grid-column: 1;
  }

  .mvv .en {
    margin-bottom: 4px;
    margin-top: 0px;
  }
}

.mvv h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: .08em;
  line-height: 1.6;
width: 100%;
  margin-bottom: 10px
}

.mvv p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
}

.mvv ul {
  list-style: none;
  max-width: 34em;
}

.mvv li {
  font-size: 14px;
  line-height: 1.9;
  padding: 10px 0 14px;
}

.mvv li:first-child {
  padding-top: 0;
}

.mvv li:last-child {
  border-bottom: none;
}

.mvv li b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* ---------- table (company) ---------- */
table.co {
  width: 100%;
  border-collapse: collapse
}

table.co th,
table.co td {
  text-align: left;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  vertical-align: top;
  font-size: 14px;
}

table.co th {
  width: 160px;
  color: var(--mute);
  letter-spacing: .14em;
  font-size: 12px
}

@media(max-width:560px) {
.mvv>div {

}
  table.co th,
  table.co td {
    display: block;
    width: 100%;
    padding: 6px 0
  }

  table.co th {
    border-bottom: none;
    padding-top: 20px
  }

  table.co td {
    padding-bottom: 20px
  }
}