@charset "UTF-8";
/* Product Single Page Styles */
/* 基本スタイル */
.product-info-panel {
  width: 45%;
  word-break: break-all;
}

.product-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* 商品タイトル */
.product-title {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.5;
}

/* 商品メインラッパー */
.product-main-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

/* 画像スライダーエリア */
.product-media-wrapper {
  position: relative;
  width: 50%;
}

.product__media-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* メイン画像 */
.product-main-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
  aspect-ratio: 4/3;
  radius: 8px;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}
.product-main-image img.fade-out {
  opacity: 0;
}
.product-main-image img.fade-in {
  opacity: 1;
}

/* サムネイル画像リスト */
.product-thumbnail-list {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-thumbnail {
  width: 76px;
  aspect-ratio: 1;
  border: 3px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  box-sizing: border-box;
  flex-shrink: 0;
}
.product-thumbnail:hover {
  border-color: #0073aa;
  transform: scale(1.05);
}
.product-thumbnail.active {
  border-color: #0073aa;
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* カテゴリーリスト */
.category-list {
  margin-bottom: 44px;
}

.category-items {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.category-items li {
  display: inline-block;
}

.category-link {
  position: relative;
  padding-left: 1.5em;
}
.category-link:before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  background-color: #d6d6d6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cat_id1:before {
  background-color: #f48d04;
}

.cat_id2:before {
  background-color: #00b200;
}

.cat_id3:before {
  background-color: #0070c9;
}

.cat_id4:before {
  background-color: #0073aa;
}

.cat_id9:before {
  background-color: #0073aa;
}

.category-link {
  display: inline-block;
  font-size: 14px;
  color: #333;
  background-color: transparent !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.category-link:hover {
  color: #0073aa;
}

.product-share-button {
  margin: 10px 0 0 32px;
  flex-shrink: 0;
}

.share-btn {
  padding: 8px 16px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}
.share-btn:hover {
  background-color: #005a87;
}

/* 店舗情報 */
.store-info {
  margin-bottom: 32px;
}
.store-info p {
  margin-bottom: 18px;
  font-size: 17px;
}
.store-info p:last-child {
  margin-bottom: 0;
}

.store-info-value {
  font-weight: bold;
}

/* 価格情報 */
.price-info {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.price-label {
  font-size: 16px;
  margin-right: 12px;
}

.price-amount {
  font-size: 38px;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.price-amount span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
  margin-left: 0.5em;
}

/* 購入方法 */
.purchase-method {
  margin-bottom: 32px;
}
.purchase-method h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.purchase-method p {
  font-size: 16px;
  line-height: 1.6;
}
.purchase-method a {
  text-decoration: underline;
}

/* ハッシュタグ */
.hashtags {
  background-color: #eeeeee;
  padding: 28px;
  margin-bottom: 32px;
}
.hashtags h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.hashtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hashtag-list li {
  display: inline-block;
  color: #242424;
  font-size: 14px;
}

/* 価格注意書き */
.price-note {
  font-size: 14px;
  color: #6f6f6f;
  margin: 0;
}

/* ナビゲーションボタン */
.product-nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.nav-button {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
}
.nav-button:hover {
  background-color: #f5f5f5;
  border-color: #0073aa;
  color: #0073aa;
}

/* コンテンツラッパー */
.tab-content-wrapper {
  position: relative;
}

/* コンテンツセクション */
.tab-content {
  display: block;
  padding: 20px 0;
  scroll-margin-top: 20px;
}

/* 商品概要セクション - シンプルでクリーンなデザイン */
#overview {
  padding-top: 40px;
  margin-bottom: 40px;
}

/* 共感コメントセクション - 温かみのあるカード風デザイン */
#comments {
  padding: 40px;
  margin-top: 40px;
  background-color: #f3f3eb;
  border-radius: 24px;
}

.detail-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* 共感コメントのタイトルスタイル */
#comments .detail-title {
  color: #0073aa;
  font-size: 1.6em;
  margin-bottom: 24px;
}

.detail-description {
  font-size: 16px;
  line-height: 1.9;
}
.detail-description p {
  margin-bottom: 15px;
}
.detail-description p:last-child {
  margin-bottom: 0;
}
.detail-description a {
  color: #0073aa;
  text-decoration: underline;
}
.detail-description a:hover {
  color: #005a87;
}

/* 共感コメントの説明文スタイル */
#comments .detail-description {
  font-size: 17px;
  line-height: 2;
  color: #444;
}

/* 推薦者名のスタイル */
.comment-recommender {
  margin-top: 24px;
  font-size: 15px;
  color: #666;
  text-align: right;
}

/* フッターボタン */
.product-footer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  box-sizing: border-box;
  line-height: 1;
}

.footer-button {
  font-size: 18px;
  padding: 20px;
  min-width: 17em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.button-detail {
  background-color: #0073aa;
  color: #fff;
}
.button-detail:hover {
  background-color: #005a87;
}

.button-store {
  background-color: #fff;
  color: #0073aa;
  border: 2px solid #0073aa;
}
.button-store:hover {
  background-color: #f5f5f5;
}

/* 共有モーダル */
.share-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.share-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.share-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.share-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.share-modal-close:hover {
  color: #333;
}

.share-modal-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 15px;
  padding-right: 40px;
}

/* .share-modal-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
} */
/* .share-modal-url-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
} */
/* .share-modal-url {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
  resize: vertical;
  min-height: 60px;
  background-color: #f9f9f9;
}

.share-modal-url:focus {
  outline: none;
  border-color: #0073aa;
}

.share-modal-copy-btn {
  padding: 12px 24px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.share-modal-copy-btn:hover {
  background-color: #005a87;
} */
/* .share-modal-copy-feedback {
  font-size: 0.9em;
  margin: 0;
  min-height: 20px;
} */
/* ========================================
   レスポンシブ対応
   ======================================== */
/* タブレット対応 (max-width: 1100px) */
@media screen and (max-width: 1100px) {
  .product-main-wrapper {
    gap: 40px;
    margin-bottom: 48px;
  }
  .product-title {
    font-size: 2em;
  }
  .price-amount {
    font-size: 30px;
  }
  .price-amount span {
    font-size: 18px;
  }
  .product-footer-buttons {
    gap: 30px;
  }
}
/* モバイル対応 (max-width: 768px) */
@media screen and (max-width: 768px) {
  /* 商品メインラッパー - 1カラムに変更 */
  .product-main-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  /* ヘッダーブロック */
  .product-header-block {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .product-title {
    font-size: 1.6em;
    margin-bottom: 16px;
  }
  .product-share-button {
    margin: 0;
    width: 100%;
  }
  .share-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
  }
  /* カテゴリーリスト */
  .category-list {
    margin-bottom: 32px;
  }
  .category-items {
    gap: 10px 14px;
  }
  .category-link {
    font-size: 13px;
  }
  /* 店舗情報 */
  .store-info {
    margin-bottom: 28px;
  }
  .store-info p {
    font-size: 16px;
    margin-bottom: 14px;
  }
  /* 価格情報 */
  .price-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .price-label {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .price-amount {
    font-size: 30px;
  }
  .price-amount span {
    font-size: 16px;
  }
  /* 購入方法 */
  .purchase-method {
    margin-bottom: 28px;
  }
  /* ハッシュタグ */
  .hashtags {
    padding: 20px;
    margin-bottom: 28px;
  }
  .hashtag-list {
    gap: 10px;
  }
  /* ナビゲーションボタン */
  .product-nav-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }
  .nav-button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
  }
  /* コンテンツセクション */
  .tab-content {
    padding: 16px 0;
  }
  #overview {
    padding-top: 32px;
    margin-bottom: 32px;
  }
  #comments {
    padding: 24px 20px;
    margin-top: 32px;
    border-radius: 16px;
  }
  .detail-title {
    font-size: 1.5em;
    margin-bottom: 16px;
  }
  #comments .detail-title {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
  .detail-description {
    font-size: 15px;
    line-height: 1.8;
  }
  #comments .detail-description {
    font-size: 16px;
    line-height: 1.9;
  }
  .comment-recommender {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
  }
  /* フッターボタン */
  .product-footer-buttons {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .footer-button {
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
    box-sizing: border-box;
  }
  /* 共有モーダル */
  .share-modal-content {
    padding: 24px 20px;
    max-width: 95%;
    width: 95%;
  }
  .share-modal-title {
    font-size: 1.3em;
    padding-right: 30px;
  }
  .share-modal-close {
    top: 12px;
    right: 12px;
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
}/*# sourceMappingURL=product.css.map */