/* =================================
   撮影に関してのご案内 ページ用CSS
   shooting_guide.css
================================= */

.shooting-guide-page {
  font-family: serif;
  font-weight: 300;
  background: #fafafa;
  color: #666666;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0;
  padding-top: 0;
}

.shooting-guide-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ヒーロー画像セクション */
.shooting-guide-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 40px;
  margin-top: 0px;
  padding: 0 8px;
  box-sizing: border-box;
}

.shooting-guide-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ページタイトル */
.shooting-guide-title {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
}

/* セクション */
.shooting-guide-section {
  margin-bottom: 50px;
}

.shooting-guide-section-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.shooting-guide-section p {
  font-size: 0.85rem;
  color: #666666;
  /* margin-bottom: 0.8em; */
  line-height: 2;
}

.shooting-guide-section ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.shooting-guide-section ul li {
  font-size: 0.85rem;
  color: #666666;
  padding-left: 1em;
  position: relative;
  /* margin-bottom: 0.5em; */
}

.shooting-guide-section ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* .shooting-guide-section a {
  color: #000000;
  text-decoration: none;
} */

.shooting-guide-section a:hover {
  text-decoration: underline;
}

/* 注意書き */
.shooting-guide-note {
  font-size: 0.8rem;
  color: #666666;
}

/* お支払い方法セクション */
.payment-methods {
  margin-top: 15px;
}

.payment-methods p {
  /* margin-bottom: 0.5em; */
}

.payment-cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.payment-cards img {
  height: 30px;
  width: auto;
}

.attention-link {
    color: #c57b57 !important;
    font-weight: 500;
}

.attention-link:hover {
    opacity: 0.7;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .shooting-guide-container {
    padding: 40px 20px;
  }

  .shooting-guide-title {
    font-size: 16px;
  }

  .shooting-guide-section-title {
    font-size: 13px;
  }

  .shooting-guide-section p,
  .shooting-guide-section ul li,
  .payment-methods{
    font-size: 9px;
  }
}

@media (max-width: 768px) {
  .shooting-guide-hero {
    margin-top: 60px; /* ヘッダーの高さ分 */
  }
}