/* =========================================
   product-detail.css
   商品詳細モーダル＆切り出し部分スタイル
   ========================================= */

/* ── 見出し ── */
.product-info-heading {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #333333;
  margin: 30px auto 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #CCCCCC;
  width: 80%;
  max-width: 320px;
  font-size: 1.5em;
  box-sizing: border-box;
}

/* ── 本文コンテナ（切り出し） ── */
.product-detail-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 30px;
  height: 220px;          /* モバイル時の高さ */
  overflow: hidden;
  box-sizing: border-box;
}

/* ── 本文テキスト ── */
.product-detail-content {
  padding-right: 10px;     /* 折り返し調整用 */
}
.product-detail-content p {
  margin: 0;
  line-height: 1.6;
  color: #333333;
  font-size: 0.95em;
}

/* ── フェード＋ボタンオーバーレイ ── */
.product-detail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;            /* フェードとボタン領域 */
  background: linear-gradient(to bottom, rgba(255,255,255,0), #FFFFFF 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;    /* ボタン以外の透過 */
}
.product-detail-overlay button {
  pointer-events: auto;    /* ボタンのみクリック可 */
  background-color: #FFFFFF;
  border: 1px solid #333333;
  padding: 8px 16px;
  font-size: 1em;
  color: #333333;
  cursor: pointer;
  border-radius: 4px;
}

/* ── モーダル背景 ── */
.modal {
  display: none;           /* 非表示状態 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;        /* モーダル外クリック検知エリアもスクロール可 */
}

/* ── モーダルパネル ── */
.modal-content {
  background-color: #FFFFFF;
  width: 90%;
  max-width: 600px;
  margin: 5vh auto;
  padding: 20px;
  position: relative;
  max-height: 80vh;        /* 高さ80%を超えたら中身スクロール */
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: 6px;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── モーダル内見出し・段落 ── */
.product-detail-content-full h3 {
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
}
.product-detail-content-full p {
  margin: 0.8em 0;
  line-height: 1.6;
  font-size: 0.95em;
  color: #333333;
}
.product-detail-content-full ul,
.product-detail-content-full ol {
  margin: 0.8em 0;
  padding-left: 1.2em;
  line-height: 1.6;
  font-size: 0.95em;
  color: #333333;
}

/* ── 閉じるボタン ── */
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  color: #666666;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.product-detail-container img{
  width: 100%;
}

/* ── メディアクエリ：PC（横幅768px以上） ── */
@media (min-width: 768px) {
  /* 切り出しコンテナを広げる */
  .product-detail-container {
    width: 80%;
    max-width: 800px;
    height: 320px;
  }
  /* 見出しも広く */
  .product-info-heading {
    width: 60%;
    max-width: 600px;
    font-size: 1.75em;
  }
  /* モーダルパネルを広げる */
  .modal-content {
    width: 80%;
    max-width: 800px;
    max-height: 85vh;
  }
  /* テキストサイズアップ */
  .product-detail-content p {
    font-size: 1em;
  }
  .product-detail-content-full h3 {
    font-size: 1.2em;
  }
  .product-detail-content-full p,
  .product-detail-content-full ul,
  .product-detail-content-full ol {
    font-size: 1em;
  }
}

.youtube-block{
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9比率 */
}

.youtube-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (min-width: 768px) {
  /* 本文コンテナを左詰め・幅100%に */
  .product-detail-container {
    width: 100%;
    max-width: none;
    margin: 0 0 30px;  /* 左マージン0、右マージン0 */
    height: 320px;
  }
}

.product-detail-overlay button .icon {
  margin-right: 6px;
  font-size: 1.2em;
  vertical-align: text-bottom;
}

@media (max-width: 767px) {
  .modal-content {
    /* 上下マージンを 10vh に増やす例 */
    margin: 10vh auto;
  }
}