/* =====================
   profile.css
   ===================== */

.profile-main {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
  padding: 20px 2vw 20px;
  background: #f8f8f8;
}

.profile-inner {
    width:100%;
    max-width:900px;
    margin:0 auto;
}

/* タイトル */
.profile-title {
  font-size: 40px;
  font-weight: 700;
  color: #bcbcbc;
  letter-spacing: 0.08em;
  margin-top: 30px;      /* 上の余白 */
  margin-bottom: 40px;   /* 下の余白 */
  text-align: center;
  font-family: "Aktiv Grotesk", sans-serif;
}

.profile-name-block {
  margin-top: 10px;     /* ←画像との間隔 */
  margin-bottom: 20px;
}

.profile-name {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #000;
  margin: 0 0 2px;
  line-height: 1.3;
}

.profile-name-en {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #878787;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: -5px;
}

.profile-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.profile-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-job {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
    color: #878787;
}

.profile-section {
  margin-bottom: 32px;
}

.profile-section h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.profile-section p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  padding: 0 35px;
  letter-spacing: 0.03em;
  text-align: justify;
  margin: 0;
}

.profile-columns {
    max-width: 950px;
    margin: 0 auto;
}

/* スマホ用改行 */
.br-sp {
  display: none; /* PCでは改行しない */
}

@media screen and (max-width: 768px) {
  .profile-main {
    padding: 10px 5vw 20px;
  }

  .profile-inner {
    margin-left: 0vw; /* ←追加 */
  }

  .profile-title {
    font-size: 20px;
    margin-bottom: 35px;
    text-align: center;
}

.profile-name-block {
    margin-top: 20px; /* ←数値を大きくするほど離れる */
  }

  .profile-name {
    font-size: 22px;
    padding: 0 0 10px 0 !important;
    line-height: 1.2;
    margin-bottom: -5px;
  }

  .profile-name-en {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    margin-top: -1px;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0.5px #878787;
  }

  .profile-name-block {
    margin-bottom: 25px;
  }

  /* 各ブロック */
  .profile-section {
    margin-bottom: 25px;
  }

  .profile-section h2 {
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
  }

  .profile-section p {
    font-size: 14px;
    line-height: 1.6;
}

  .profile-image img {
    width: 140px;
    height: 140px;
}

.profile-hero {
    margin-bottom: 40px;
}

.profile-job {
    font-size: 10px;
}

.br-sp {
    display: block; /* スマホでは改行する */
  }
}