@charset "utf-8";

/* *****************************
common（共通設定）
***************************** */
:root {
  /* 色 */
  --primary-font: #545454;
  --primary-creamYellow: #fffaf0;
  --primary-lightPink: #f8cdc9;
  --primary-darkPink: #d97f77;
  --primary-brown: #bf7c40;
  --primary-lightGray: #d8d8d8;
  --primary-gray: #9e9e9e;
}

.main {
  width: 89.34vw;
  margin: 40px auto;
}

/* pc 840 */
/* ***************************** */

/* ==============================
 プロフィール写真、名前
 ============================== */
.content--profile__header {
  margin-top: 40px;
}

.profile__header--image {
  border-radius: 30px;
}

/* プロフィール写真が現れるアニメーション */
/* キーフレームの定義 */
@keyframes fadeInAnimation {
  /* アニメーション開始時（0%）は透明で縮小した状態からスタート */
  from {
    opacity: 0;
    transform: scale(0.98); /* わずかに縮小させて奥行き感を出す */
  }
  /* アニメーション終了時（100%）は通常の状態（完全に不透明） */
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* 要素へのアニメーション適用 */
.profile__header--image-container {
  animation-name: fadeInAnimation;

  /* 継続時間 */
  animation-duration: 2.5s;

  /* 実行タイミング: ページ読み込み後すぐに開始 */
  animation-delay: 0s;

  /* 繰り返し回数: 1回のみ */
  animation-iteration-count: 1;

  /* 終了時の状態: 最終フレームの状態を保持する */
  animation-fill-mode: forwards;

  /* その他の調整: イージング (緩やかな動き) */
  animation-timing-function: ease-out;
}

.profile-header--name {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 40px;
}
.profile-header--furigana {
  margin-top: 5px;
  font-weight: 400;
}

/* 疑似要素：線 */
.profile-header--name::after {
  content: "";
  position: absolute;
  background-color: var(--primary-gray);
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 50%; /* 親要素の左端から50%の位置に移動 */
  transform: translateX(-50%);
  /* 要素の幅の半分だけ左に戻し、完全に中央に配置 */
}

/* ------------------------
      common pc
    ------------------------ */
@media screen and (min-width: 840px) {
  .profile-header--name::after {
    bottom: -60px;
    width: 80.56vw;
  }
  /* お名前のフォントサイズ */
  .profile-header--name {
    font-size: clamp(16px, 1.944444vw, 36px);
  }
}

/* pc 840 */

/* ==============================
 プロフィールの概要
 ============================== */
.content--profile__overview {
  margin-top: 40px;
}

.profile__overview--txt-block {
  margin-top: 30px;
}

/* ==============================
 その他のプロフィール
 ============================== */
/* 上の余白 */
.profile__details--item {
  margin-top: 40px;
}

/* 各項目のタイトル */
.profile__details--title {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 600;
}

/* ------------------------
      common pc
    ------------------------ */
@media screen and (min-width: 840px) {
  /* プロフィール文全体 */
  .profile__txt {
    margin: 120px auto;
    display: flex;
    justify-content: center;
    text-align: left;
    gap: 60px;
  }

  .content--profile__overview,
  .profile__overview--txt-block:first-of-type,
  .profile__details--item:first-of-type {
    margin-top: 0px;
  }

  .content--profile__overview {
    width: 32.99vw;
  }
}
/* pc 840 */

/* ==============================
 カルチャーセンターページ遷移ボタン
 ============================== */
.toCulturecenterPage {
  margin-top: 80px;
  position: relative;
}

/* 疑似要素：線 */
.toCulturecenterPage::before,
.toCulturecenterPage::after {
  content: "";
  position: absolute;
  background-color: var(--primary-gray);
  display: block;
  width: 89.33vw;
  height: 1px;
  left: 50%; /* 親要素の左端から50%の位置に移動 */
  transform: translateX(-50%);
  /* 要素の幅の半分だけ左に戻し、完全に中央に配置 */
}

.toCulturecenterPage::before {
  top: -40px;
}
.toCulturecenterPage::after {
  bottom: -40px;
}

/* ------------------------
      common pc
    ------------------------ */
@media screen and (min-width: 840px) {
  .toCulturecenterPage {
    margin-top: 170px;
  }

  /* 疑似要素：線 */
  .toCulturecenterPage::before,
  .toCulturecenterPage::after {
    width: 80.56vw;
  }
  .toCulturecenterPage::before {
    top: -110px;
  }
  .toCulturecenterPage::after {
    bottom: -110px;
  }
}
/* pc 840 */

/* ==============================
 活動実績確認のリンク
 ============================== */
.external-links {
  margin-top: 80px;
  text-align: center;
}

.external-links--list {
  margin-top: 30px;
}

.external-links--item {
  margin-top: 20px;
}

/* ------------------------
      common pc
    ------------------------ */
@media screen and (min-width: 840px) {
  .external-links {
    margin-top: 170px;
  }
  .external-links--list {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  /* footer */
  .footer {
    margin-top: 160px;
  }
}

/* pc 840 */
