/* =====================
   about.css
   Aboutページ専用スタイル
===================== */

/* =====================
   HERO
===================== */
.about-hero {
  background: var(--hero-gradient);
  padding: 5rem 2rem 4rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto 5%;
  width: 100%;
}

.about-hero-sub {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.about-hero-catch {
  font-family: var(--font-ja);
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
  letter-spacing: 0.08em;
}


/* =====================
   INTRO TEXT
===================== */
.about-intro {
  padding: 3rem 1.25rem;

}

.about-intro p {
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 720px;
}


/* =====================
   PROFILE
===================== */
.about-profile {
  padding: var(--section-pad);
}

.profile-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding: 20px;
}

/* 写真挿入エリア */
.profile-photo {
  width: 100%;
  background-image: url(../img/about/introduce-pics3.jpg);
  border-radius: 5%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.profile-name {
  font-family: var(--font-ja);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.profile-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 1.75rem;
}

/* プロフィール情報テーブル */
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.profile-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.8;
}

.profile-row--full {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}

.profile-row dt {
  font-family: var(--font-ja);
  font-weight: 400;
  color: var(--text-light);
  white-space: nowrap;
}

.profile-row dd {
  color: var(--text-light);
}


/* =====================
   CAREER
===================== */
.section-heading{
  color: var(--text-light);
  margin-bottom: 20px;
}
.about-career {
  padding: var(--section-pad);
}

.career-list {
  padding-left: 0;
  list-style: none;
}

/* グリッド：年 | 月 | ドット+線列 | 本文 */
.career-item {
  display: grid;
  grid-template-columns: 110px 36px 20px 1fr;
  gap: 0 0.75rem;
  align-items: stretch; /* 全列を同じ高さに揃える */
}

.career-year {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  color: var(--text-light);
  padding-top: 3px;
  line-height: 1.4;
}

.career-month {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  color: var(--text-light);
  padding-top: 3px;
  text-align: right;
}

/* ドット画像＋可変縦線をまとめるカラム */
.career-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3px;
}

/* 差し替え用ドット画像 */
.career-dot-img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.career-line {
  display: block;
  width: .5px;
  flex: 1; 
  background:var(--text-light);
  margin-top: 4px;
}

.career-body {
  padding-bottom: 2rem; 
}

/* 最終アイテムはbodyの下余白を小さく */
.career-item--last .career-body {
  padding-bottom: 0;
}

.career-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: .3rem;
}

.career-note {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* =====================
   STRENGTHS
===================== */
.about-strengths {
  padding: var(--section-pad);
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.strength-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* 画像挿入エリア */
.strength-img {
  background-image: url(../img/about/strength.png);
  width: 60px;
  height: 60px;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.strength-title {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
}

.strength-text {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 2;
}

/* =====================
   タブレット (640px ~)
===================== */
@media (min-width: 640px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================
   デスクトップ (960px ~)
===================== */
@media (min-width: 960px) {
  .about-hero {
    padding: 6rem 2rem 5rem;
    min-height: 280px;
  }
.about-intro{
  padding: 0;
}
  .profile-inner {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
  }

  .profile-photo {
    max-width: 100%;
    margin: 0;
  }

  .profile-row {
    grid-template-columns: 190px 1fr;
  }
  .section-heading{
    font-size: 2rem;
  }
.career-title{
  font-size: 1.6rem;
}
.career-body{
  padding-bottom: 4rem;
}
.career-year,.career-month,.career-note{
  font-size: 1.3rem;
}

  .career-item {
    grid-template-columns: 140px 40px 20px 1fr;
  }

  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
  }
.strength-img{
  width: 80px;
  height: 80px;
}
}
