/* ========================================
   マイストーリーページ
======================================== */
.story-page {
  padding: 140px 0 40px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige-light) 100%);
  min-height: 100vh;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* プロフィール上部 */
.story-lead {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out both;
}

.story-image {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-beige);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-name-ja {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
}

.story-name-en {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-gray);
}

.story-role {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  margin-top: 6px;
}

/* 本文 */
.story-body {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

.story-section {
  animation: fadeInUp 0.6s ease-out both;
}

.story-section:nth-child(1) { animation-delay: 0.1s; }
.story-section:nth-child(2) { animation-delay: 0.2s; }
.story-section:nth-child(3) { animation-delay: 0.3s; }
.story-section:nth-child(4) { animation-delay: 0.4s; }

.story-section-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
}

.story-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-beige);
}

.story-entry {
  margin-bottom: 36px;
}

.story-entry:last-child {
  margin-bottom: 0;
}

.story-entry-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.story-entry-period {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 10px;
}

.story-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
}

/* SNS活動 */
.story-sns-section {
  margin-top: 100px;
}

.story-sns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.story-sns-item {
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.story-sns-image-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 36px;
}

.story-sns-image {
  width: 100%;
  height: auto;
  display: block;
}

.story-sns-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.story-sns-title a {
  color: var(--color-text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.story-sns-title a:hover {
  color: var(--color-pink);
}

/* 実績見出し（スライダー直上） */
.story-slider-section {
  margin-bottom: 24px;
}

/* 戻るボタン */
.story-back {
  text-align: center;
  margin-top: 80px;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
  .story-page {
    padding: 100px 0 80px;
  }

  .story-container {
    padding: 0 20px;
  }

  .story-lead {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 60px;
  }

  .story-image {
    width: 200px;
    height: 200px;
  }

  .story-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-text {
    font-size: 14px;
  }

  .story-sns-grid {
    grid-template-columns: 1fr;
  }

  .story-sns-section {
    margin-top: 60px;
  }

  .story-back {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .story-image {
    width: 160px;
    height: 160px;
  }

  .story-name-ja {
    font-size: 20px;
  }

  .story-section-title {
    font-size: 15px;
  }

  .story-sns-item {
    padding: 20px;
  }
}
