@charset "UTF-8";

/* =========================================
   Company page
   ========================================= */

/* -----------------------------------------
   FV-Section
   ----------------------------------------- */
.about-fv__bar {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-red);
  margin: 4px 0 0;
}
.about-fv__charts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 8px;
  max-width: 760px;
  margin-top: 24px;
}
.about-fv__chart {
  margin: 0;
  aspect-ratio: 364.79 / 242;
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  overflow: hidden;
}
.about-fv__chart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .about-fv__charts { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* -----------------------------------------
   Track Record
   ----------------------------------------- */
.track-record--plain {
  margin: 0;
  border-radius: 0;
  padding: 112px var(--pad-x) 38px;
}
@media (max-width: 1023px) {
  .track-record--plain { padding: 64px var(--pad-x-sp) 32px; }
}

/* -----------------------------------------
   Dark：FLOW理論の思想 ＋ 会社概要
   ----------------------------------------- */
.co-dark .issues-dark__section { padding-bottom: 0; }
.co-dark__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 112px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
}

.co-theory {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.co-theory__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.co-theory__title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 2px;
  color: #d9d9d9;
  text-align: center;
}
.co-theory__accent { display: block; width: 82px; height: 4px; }
.co-theory__body {
  max-width: 920px;
  text-align: center;
}
.co-theory__body p {
  font-size: 18px;
  line-height: 36px;
  letter-spacing: .9px;
  color: #d9d9d9;
  margin: 0;
}
.co-theory__body p + p { margin-top: 36px; }

.company-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1320px;
  padding: 0 var(--pad-x);
}
.company-profile__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.company-profile__eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--c-red);
}
.company-profile__title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 1.8px;
  color: #d9d9d9;
}
.company-profile__accent { display: block; width: 82px; height: 4px; }
.company-profile__list {
  width: 100%;
  max-width: 760px;
  border-top: 1px solid #e5e5e5;
}
.company-profile__row {
  display: grid;
  grid-template-columns: 192px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.company-profile__row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--c-red);
}
.company-profile__row dd {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 25.5px;
  letter-spacing: .64px;
  color: #d9d9d9;
}
@media (max-width: 1023px) {
  .co-dark__container { padding: 80px var(--pad-x-sp); gap: 80px; }
  .co-theory { gap: 40px; }
  .co-theory__title { font-size: 28px; line-height: 1.5; letter-spacing: 1px; }
  .co-theory__body p { font-size: 15px; line-height: 1.95; }
  .company-profile { gap: 40px; padding: 0 var(--pad-x-sp); }
  .company-profile__title { font-size: 28px; }
}
@media (max-width: 767px) {
  .co-theory__title { font-size: 22px; }
  .company-profile__row { grid-template-columns: 96px minmax(0, 1fr); gap: 12px; padding: 18px 0; }
  .company-profile__row dd { font-size: 15px; }
}

/* -----------------------------------------
   Board of directors
   ----------------------------------------- */
.board {
  padding: 96px 0;
  background: transparent;
}
.board__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.board-card {
  display: grid;
  grid-template-columns: 465px minmax(0, 1fr);
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .15);
  overflow: hidden;
}
.board-card:nth-child(odd)  { margin-right: 32px; }
.board-card:nth-child(even) { margin-left: 32px; }
.board-card__photo {
  background: #eee;
  min-height: 0; /* グリッドセルで img 実寸が行高を押し広げるのを防ぐ */
  overflow: hidden;
}
.board-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.board-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}
.board-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.board-card__position {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .64px;
  color: var(--c-text);
}
.board-card__name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: .64px;
  color: var(--c-text);
}
.board-card__romaji {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.65px;
  color: #737373;
}
.board-card__career {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 17px;
  border-top: 1px solid var(--c-grey-100);
}
.board-card__career-label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 16.5px;
  letter-spacing: .55px;
  color: var(--c-grey-25);
}
.board-card__career-text p {
  margin: 0;
  font-size: 12px;
  line-height: 22.2px;
  letter-spacing: .64px;
  color: var(--c-grey-25);
}
.board-card__career-text p + p { margin-top: 22px; }
.board-card__career-text strong { font-weight: 700; }

@media (max-width: 1023px) {
  .board-card { grid-template-columns: 1fr; }
  .board-card:nth-child(odd),
  .board-card:nth-child(even) { margin-left: 0; margin-right: 0; }
  .board-card__photo { aspect-ratio: 465 / 320; }
}
@media (max-width: 767px) {
  .board { padding: 56px 0; }
  .board-card__body { padding: 24px; }
  .board-card__name { font-size: 20px; }
}

/* SP: 本文段落を14pxに統一（2026-06-05）。career-text(12px)等の意図的な極小は対象外 */
@media (max-width: 767px) {
  .co-theory__body p { font-size: 14px; }
}
