/* ===================================
   SAKURA DETAIL PAGE
   model/sakura/sakura.css
=================================== */

/* アクティブなナビリンク */
.header__nav-link--active {
  color: var(--color-red);
}
.header.is-light .header__nav-link--active {
  color: var(--color-red);
}
.header__nav-link--active::after {
  width: 100%;
  background: var(--color-red);
}

/* 一番上のみ白背景 */
.header.is-top {
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}


/* ===================================
   PROFILE TOP
=================================== */
.sakura-top {
  background: #ffffff;
  padding-top: var(--header-h);
}

.sakura-top__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 120px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* パンくず */
.sakura-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #888888;
}

.sakura-breadcrumb__link {
  color: #888888;
  transition: color var(--transition);
}

.sakura-breadcrumb__link:hover {
  color: #1c1818;
}

.sakura-breadcrumb__sep {
  color: #888888;
}

.sakura-breadcrumb__current {
  color: #1c1818;
}

/* 名前・サブタイトル */
.sakura-top__heading {
  display: flex;
  flex-direction: column;
  gap: 36px;
  color: #1c1818;
}

.sakura-top__name {
  font-family: var(--font-ja);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #1c1818;
}

.sakura-top__subtitle {
  font-family: var(--font-ja);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #1c1818;
}

/* 3枚ギャラリー */
.sakura-top__gallery {
  display: flex;
  width: 100%;
}

.sakura-top__gallery-item {
  flex: 1;
  height: 534px;
  overflow: hidden;
  background: #f0eded;
}

.sakura-top__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sakura-top__gallery-item--main img {
  object-position: center center;
}


/* ===================================
   SAKURA'S PROFILE
=================================== */
.sakura-profile {
  background: #1c1818;
}

.sakura-profile__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sakura-profile__title {
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

/* プロフィールリスト */
.sakura-profile__list {
  display: flex;
  flex-direction: column;
  width: 890px;
  list-style: none;
}

.sakura-profile-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.sakura-profile-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.sakura-profile-item__head {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.sakura-profile-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.sakura-profile-item__label {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #ffffff;
  width: 100px;
  flex-shrink: 0;
}

.sakura-profile-item__value {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
}

/* テキストプロフィール（旧・念のため残す） */
.sakura-profile__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.sakura-profile__body p {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.sakura-profile__body p + p {
  margin-top: 1em;
}


/* ===================================
   SAKURA'S NEWS
=================================== */
.sakura-news {
  background: #ffffff;
}

.sakura-news__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sakura-news__title {
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: #1c1818;
}

.sakura-news__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}


/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .sakura-top__inner {
    padding: 60px 48px 80px;
  }

  .sakura-top__name {
    font-size: 72px;
  }

  .sakura-top__subtitle {
    font-size: 36px;
  }

  .sakura-top__gallery {
    flex-direction: column;
  }

  .sakura-top__gallery-item {
    width: 100%;
    height: auto;
    flex: none;
    overflow: visible;
  }

  .sakura-top__gallery-item img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }

  .sakura-profile__inner {
    padding: 80px 48px;
  }

  .sakura-profile__title {
    font-size: 72px;
  }

  .sakura-profile__list {
    width: 100%;
  }

  .sakura-news__inner {
    padding: 80px 48px;
  }

  .sakura-news__title {
    font-size: 72px;
  }
}

@media (max-width: 768px) {

  /* ===== PROFILE TOP ===== */
  .sakura-top__inner {
    padding: 64px 28px;
    gap: 60px;
    align-items: center;
  }

  .sakura-breadcrumb {
    font-size: 12px;
    align-self: flex-start;
  }

  .sakura-top__heading {
    gap: 36px;
    width: 100%;
  }

  .sakura-top__name {
    font-size: 56px;
  }

  .sakura-top__subtitle {
    font-size: 28px;
    line-height: 1.4;
    white-space: normal;
  }

  .sakura-top__gallery {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .sakura-top__gallery-item {
    width: 100%;
    height: auto;
    flex: none;
    overflow: visible;
  }

  .sakura-top__gallery-item img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }

  /* ===== SAKURA'S PROFILE ===== */
  .sakura-profile__inner {
    padding: 64px 28px;
    gap: 48px;
  }

  .sakura-profile__title {
    font-size: 56px;
  }

  .sakura-profile__list {
    width: 100%;
  }

  .sakura-profile-item {
    flex-direction: row;
    gap: 16px;
    padding: 20px 0;
  }

  .sakura-profile-item__label {
    width: 80px;
    font-size: 14px;
  }

  .sakura-profile-item__icon {
    width: 24px;
    height: 24px;
  }

  .sakura-profile-item__value {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ===== SAKURA'S NEWS ===== */
  .sakura-news__inner {
    padding: 64px 28px;
    gap: 48px;
  }

  .sakura-news__title {
    font-size: 56px;
  }

  .sakura-news__body {
    width: 100%;
  }

  .news__btn {
    width: 100%;
    max-width: 100%;
  }
}


/* ===================================
   モデル一覧へ戻るボタン
=================================== */
.model-back {
  display: flex;
  justify-content: center;
  padding: 0 0 80px;
  background: #ffffff;
}

.model-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 48px;
  background: #1c1818;
  color: #ffffff;
  border-radius: 30px;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  transition: opacity var(--transition), transform var(--transition);
}

.model-back__btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .model-back {
    padding: 50px 28px;
  }

  .model-back__btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}

/* プロフィールセクション内の戻るボタンは色反転（白背景・黒文字） */
.kai-profile .model-back,
.sakura-profile .model-back {
  background: transparent;
  padding-bottom: 0;
}

.kai-profile .model-back__btn,
.sakura-profile .model-back__btn {
  background: #ffffff;
  color: #1c1818;
}

.kai-profile .model-back__btn:hover,
.sakura-profile .model-back__btn:hover {
  background: #f0eded;
  opacity: 1;
}
