/* Album Work Page Styles */
.album-work-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ヒーローセクション */
.album-work-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.album-work-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.album-work-hero-subtitle {
  position: absolute;
  bottom: 10%;
  left: 10%;
  font-size: 1.2rem;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.05em;
  margin: 0;
}


/* メインコンテンツ */
.album-content-wrapper {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1;
}

/* イントロテキスト（中央揃え） */
.album-work-intro {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

.album-work-intro .intro-title {
  font-size: 1.8rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 1.5rem;
}

.album-work-intro .intro-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}


/* 2カラムセクション */
.album-work-2col-section {
  padding: 60px 0;
}

.col-2-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 2rem;
  align-items: center;
}

.col-2-image {
  width: 100%;
  border-radius: 8px;
}

.col-2-image img {
  width: 100%;
  height: auto;
  display: block;
}

.col-2-text {
  padding: 0 20px;
}

.col-2-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

/* 特徴セクション */
.album-work-feature {
  padding: 60px 0;
}

/* 4枚画像横並び */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sample-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.sample-item img {
  width: 100%;
  height: auto;
  display: block;
}

.sample-item:hover {
  transform: translateY(-5px);
}

/* 制作フロー */
.album-work-flow {
  padding: 60px 0;
}

/* ステップフローコンテナ */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
}

/* ステップアイテム */
.step-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* 左側のステップ番号SVG */
.step-flow-left {
  flex-shrink: 0;
}

.step-number-svg {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ステップ画像 */
.step-flow-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.step-flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* コンテンツエリア */
.step-flow-content {
  flex: 1;
}

/* タイトル */
.step-flow-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.5rem 0;
}

/* 横長の線 */
.step-flow-divider {
  width: 100%;
  height: 2px;
  background-color: #888;
  margin-bottom: 1rem;
}

/* 説明 */
.step-flow-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
  white-space: pre-line;
}

/* ContactCTAセクション */
.contact-cta-section {
  background-color: #fff;
  padding: 60px 0 80px;
}

.contact-cta-text {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.contact-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button-icon {
  font-size: 1.2em;
}

/* ご依頼から納品までの目安 */
.album-work-timeline {
  padding: 60px 0;
}

.timeline-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  text-align: left;
  margin-top: 2rem;
}

/* 制作例 */
.album-work-examples {
  padding: 60px 0;
}

.examples-box {
  border: 2px solid #333;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  background-color: #fff;
}

.examples-box-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 2rem 0;
  text-align: center;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.examples-list li {
  font-size: 1.1rem;
  color: #555;
  line-height: 2;
  padding-left: 1.5rem;
  position: relative;
}

.examples-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #333;
  font-size: 0.8rem;
}

/* ライトボックス */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 0.7;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .album-work-hero-title {
    font-size: 2rem;
    left: 5%;
  }

  .album-work-hero-subtitle {
    font-size: 1rem;
    left: 5%;
  }

  .page-title-text {
    font-size: 1.5rem;
  }

  .album-content-wrapper {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .album-work-2col-section,
  .album-work-feature,
  .album-work-flow {
    padding: 40px 0;
  }

  .col-2-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .col-2-text {
    padding: 0;
  }

  .col-2-text p,
  .feature-text {
    font-size: 0.9rem;
  }

  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* StepFlow レスポンシブ */
  .step-flow {
    gap: 2rem;
  }

  .step-flow-item {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-svg {
    width: 40px;
    height: 40px;
  }

  .step-flow-image {
    width: 100%;
    height: 200px;
  }

  .step-flow-title {
    font-size: 1.2rem;
  }

  .step-flow-description {
    font-size: 0.95rem;
  }

  /* ContactCTA レスポンシブ */
  .contact-cta-section {
    padding: 50px 0 60px;
  }

  .contact-cta-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-buttons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta-button {
    padding: 18px 24px;
    font-size: 15px;
  }

  .timeline-text {
    font-size: 0.9rem;
  }

  .examples-box {
    padding: 2rem 1.5rem;
  }

  .examples-box-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .examples-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .examples-list li {
    font-size: 0.9rem;
    line-height: 2;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}
