/* ======================================================
 * shop-info-video.css
 * 【役割】ピラミッド型レイアウト（上部：メイン画像 / 下部：情報＆動画2カラム）
 * ====================================================== */

/* ------------------------------------------------------
 * 1. 【一番上】画像を中央に大きく配置（ピラミッドの頂点）
 * ------------------------------------------------------ */
.shop-info-visual {
  width: 100%;
  text-align: center;
  margin-bottom: 30px; /* 下の2カラムとの間隔 */
}

.shop-info-visual img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ------------------------------------------------------
 * 2. 【PC表示（1025px以上）】左右2カラムレイアウト
 * ------------------------------------------------------ */
@media screen and (min-width: 1025px) {
  /* 2カラムを束ねる親枠 */
  .shop-info-grid {
    display: flex;
    gap: 40px; /* 左右の余白間隔 */
    align-items: flex-start; /* 上揃えにして高さのズレによる崩れを防止 */
  }

  /* 左：店舗情報 */
  .shop-info-details {
    flex: 1;
    width: 50%;
  }

  /* 右：店舗紹介動画 */
  .shop-video-section {
    flex: 1;
    width: 50%;
    margin: 0;
    padding: 0;
  }
}

/* ------------------------------------------------------
 * 3. 右側：動画セクションの内部スタイル
 * ------------------------------------------------------ */
.shop-video-inner {
  padding: 30px 20px;
  background-color: var(--color-bg-note, #fcfaf2);
  border: 1px solid var(--border-color, #e0d8c3);
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
}

.shop-video-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary, #333);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid var(--color-accent, #c5a059);
  letter-spacing: 0.05em;
}

/* 動画タイトルの補足説明文 */
.shop-video-desc {
  font-size: 14px;
  color: var(--color-text-sub, #666);
  margin: 0 0 18px 0;
  line-height: 1.5;
  text-align: center;
}

/* 動画サイズ（Shortsの縦長制御） */
.shop-video-container {
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
}

/* YouTube Shorts（9:16）アスペクト比枠 */
.youtube-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  background: #000;
}

.youtube-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ------------------------------------------------------
 * 4. 【タブレット・スマホ表示（1024px以下）】縦並び（1カラム）に最適化
 * ------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .shop-info-visual {
    margin-bottom: 25px;
  }

  .shop-info-grid {
    display: block; /* タブレット以下は確実に縦並び */
  }

  .shop-info-details {
    width: 100%;
    margin-bottom: 40px; /* 店舗情報と下の動画の間の余白 */
  }

  .shop-video-section {
    width: 100%;
    margin: 0 auto;
  }

  .shop-video-inner {
    padding: 24px 20px;
  }

  .shop-video-container {
    max-width: 280px; /* タブレット・SPで見やすい中央配置サイズ */
  }

  .shop-video-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .shop-video-desc {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* ------------------------------------------------------
 * 5. スマホ（SP）固有の微調整（600px以下）
 * ------------------------------------------------------ */
@media screen and (max-width: 600px) {
  .shop-video-inner {
    padding: 20px 15px;
  }

  .shop-video-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .shop-video-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

/* ------------------------------------------------------
 * 店舗紹介動画下部 SNSリンクボタン・導線ブロック
 * ------------------------------------------------------ */
.video-sns-block {
  margin-top: 20px;
  text-align: center;
}

.video-sns-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary, #333);
  margin: 0 0 10px 0;
}

.video-sns-link {
  margin-top: 10px;
}

.btn-instagram {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}