.photo-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ヒーローセクション */
.photo-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.photo-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.photo-hero-title {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.1em;
  margin: 0;
}

/* メインコンテンツラッパー */
.photo-content-wrapper {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1;
}

/* イントロテキスト（中央揃え） */
.photo-intro {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

/* 2カラムセクション（写真と文字） */
.photo-feature {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 20px;
  padding: 3rem 0;
  align-items: center;
}


.photo-cta {
    padding: 1rem 0;
}

.feature-image {
  width: 100%;

}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;        /* 枠に合わせてトリミング */
  object-position: left;    /* 画像の左側を優先的に表示（右を切る） */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-content {
  padding: 1rem 0;
}
.photo-feature .feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 10px 0 10px 0;
}

.photo-feature .feature-text {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

.feature-text:last-child {
  margin-bottom: 0;
}

/* 製作依頼ボタン（動画制作リンク） */
.photo-movie-cta {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-movie-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50%;
  min-height: 80px;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
}

/* ========================================
   BoxServices - 撮影の種類セクション
   ======================================== */
.photo-services-section {
  background-color: #fff;
  padding: 50px 0;
}

/* 横いっぱいの画像 */
.services-hero-image {
  width: 100%;
  margin-bottom: 60px;
}

.services-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 撮影の種類ボックス */
.services-box {
  border: 2px solid #888;
  border-radius: 8px;
  padding: 20px 30px;
  position: relative;
}

.services-box-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 30px;
  font-size: 28px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;
}

/* サービスグリッド */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  margin-top: 30px;
  align-items: start;
  grid-auto-rows: auto;
}

.service-box-contents-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
}

.service-box-contents-title-wrapper {
  padding-right: 20px;
  border-right: 2px solid #555;
  min-width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.service-box-contents-title {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin: 0;
  white-space: pre-wrap;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.service-list-item {
  font-size: 13px;
  line-height: 2;
  color: #666;
  margin-bottom: 5px;
}

/* フッター */
.services-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.services-note {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin: 0;
  font-weight: 500;
}

.services-note a {
  color: #d4a574;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.services-note a:hover {
  border-bottom: 1px solid #d4a574;
}

/* ========================================
   PhotoPrint - 写真印刷セクション
   ======================================== */
.photo-print-section {
  background-color: #fff;
  padding-bottom: 10px;
}

/* ヒーローセクション */
.print-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.print-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.photo-print-hero-title {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
}

/* イントロ */
.photo-print-intro {
  text-align: center;
  margin: 30px;
}

/* 2カラムセクション */
.photo-content-wrapper .print-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  padding: 1rem 0;
  align-items: center;
  margin-bottom: 60px;
}

.print-feature .feature-text {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

/* 写真印刷メニューボックス */
.print-menu-box {
  border: 2px solid #888;
  border-radius: 8px;
  padding: 50px 40px;
  position: relative;
}

.print-menu-box-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 30px;
  font-size: 28px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;
}

.print-menu-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.print-menu-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.print-menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.print-item-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.print-item-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.print-item-content {
  display: flex;
  flex-direction: column;
}

.print-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.print-item-description {
  list-style: none;
  padding: 0;
  margin: 0;
}

.print-item-description li {
  font-size: 14px;
  line-height: 2;
  color: #555;
  padding-left: 1em;
  position: relative;
}

.print-item-description li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
  .photo-hero-title {
    font-size: 2rem;
    left: 5%;
  }
  .photo-hero {
    margin-top: 0px;
  }

  .photo-hero-title {
    font-size: 2rem;
    left: 5%;
  }

  /*
  .photo-hero-image {
    filter: blur(4px) brightness(1.05);
    transform: scale(1.05);
  }
  */

  .photo-content-wrapper {
    padding: 0 1rem;
  }

  .photo-intro {
    padding: 2rem 1rem;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .photo-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .photo-cta {
    padding: 5rem 0;
  }

  .cta-button {
    padding: 1rem 3rem;
    font-size: 1rem;
  }

  /* BoxServices レスポンシブ */
  .photo-services-section {
    padding-bottom: 40px;
  }

  .services-hero-image {
    margin-bottom: 40px;
  }

  .services-box {
    padding: 40px 20px;
  }

  .services-box-title {
    font-size: 20px;
    padding: 0 20px;
    top: -15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 25px;
  }

  .service-box-contents-item {
    flex-direction: column;
    gap: 10px;
  }

  .service-box-contents-title-wrapper {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 0;
    padding-bottom: 8px;
    min-width: auto;
  }

  .service-box-contents-title {
    font-size: 15px;
  }

  .service-list-item {
    font-size: 13px;
  }

  .services-footer {
    margin-top: 35px;
    padding-top: 25px;
  }

  .services-note {
    font-size: 13px;
  }

  /* PhotoPrint レスポンシブ */
  .photo-print-section {
    padding-bottom: 40px;
  }

  .print-hero {
    margin-bottom: 40px;
  }

  .photo-print-hero-title {
    font-size: 2rem;
  }

  .photo-print-intro {
    margin-bottom: 30px;
  }

  .photo-content-wrapper .print-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 40px;
  }

  .print-menu-box {
    padding: 40px 20px;
  }

  .print-menu-box-title {
    font-size: 20px;
    padding: 0 20px;
    top: -15px;
  }

  .print-menu-grid {
    gap: 30px;
  }

  .print-menu-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }

  .print-item-title {
    font-size: 16px;
  }

  .print-item-description li {
    font-size: 13px;
  }
}
