/* =========================================
   詳細ページ専用のヒーロー設定
   ========================================= */
.hero--detail {
  position: relative;
  display: flex;
  align-items: center; 
  padding: 60px 40px;
  letter-spacing: 0.06em;
}
.hero--detail .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px; 
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 40px;
}
/* --- 1. PC版の基本設定 --------------------------- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* PC版：箱の影響を消す */
.sp-meta-wrapper {
  display: contents;
}
/* PC版の制御エリア */
.hero--detail .post-meta-group {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
/* PCではタイトルを2番目に（タグ→タイトル→日付の順に見せる） */
.post-meta-group {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 15px;
}
/* メインタイトル 　PCではタイトルの上下に余白を振ることで、タグと日付を離す */
.hero--detail .hero-detail-title {
  order: 2; /* 真ん中 */
  margin: 20px 0;
  font-size: clamp(24px, 3vw, 36px); 
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #000;
  /*20260424 add*/
  overflow-wrap: break-word;
  word-break: break-all;
}
/* ヒーロー専用のタグ設定 */
.hero--detail .post-card__cat {
  order: 1; /* 一番上 */
  background-color: #FFFF01;
  border: 1px solid #000;
  display: inline-block;
  color: #000;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  /* ★全デバイス共通で長い場合は「...」にする設定 */
  max-width: 280px; /* PCでも最大幅を制限 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1; 
}
/* ヒーロー専用の日付設定 */
.hero--detail .hero-detail-date {
  order: 3;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  opacity: 0.4;
}
/* テキストエリア */
.hero--detail .hero-content {
  flex: 1; 
  text-align: left;
}
/* 写真エリア */
.hero--detail .hero-photo {
  flex-shrink: 0;
}
.hero--detail .hero-photo img {
  width: 100%; 
  max-width: 600px;
  height: auto; 
  aspect-ratio: 16 / 9; 
  object-fit: cover;
  object-position: center; 
  border: 1px solid #000;
  border-radius: 16px;
  display: block;
}
/* --- スマホ・タブレット（縦）対応 (820px以下) --------------------------- */
@media (max-width: 820px) {
  .sp-meta-wrapper {
    display: flex; 
    justify-content: center;
    order: 1; 
    margin-bottom: 15px;
  }
  .hero--detail {
    padding: 30px 0;
  }
  .hero--detail .hero-inner {
    flex-direction: column; 
    padding: 0 10px;
    text-align: center;
    gap: 0px;
  }
  .hero--detail .post-meta-group {
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    gap: 20px;
    width: 100%;
    margin-bottom: 15px;
    order: 1; 
  }
  .hero-detail-title {
    order: 2; 
    font-size: 24px;
    /*20260424 add*/
    overflow-wrap: break-word;
    word-break: break-all;
  }
  /* 写真の順序を一番最後に */
  .hero-photo {
    order: 3;
    width: 100%;
    margin-top: 0px;
  }
  .hero--detail .hero-content {
    height: auto; /* SPでは高さを固定しない */
  }
  .hero--detail .hero-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  /* 1. 親要素：幅はいっぱいに広げる */
  .hero--detail .sp-meta-wrapper {
    display: flex;
    align-items: center;
    width: 100%; 
    gap: 15px;
    min-width: 0;
    margin-bottom: 0px;
  }
  /* 2. タグ：縮む許可を与える */
  .hero--detail .post-card__cat {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    max-width: 200px;
  }
  /* 3. 日付：右端へ移動させる */
  .hero--detail .hero-detail-date {
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}
/* --- 中間層・タブレット（横）の微調整 (821px 〜 1024px) ------------------ */
@media (min-width: 821px) and (max-width: 1024px) {
  .hero--detail .hero-photo img {
    max-width: 400px; 
  }
  .hero--detail .hero-detail-title {
    font-size: 28px;
    /*20260424 add*/
    overflow-wrap: break-word;
    word-break: break-all; 
  }
}
/* =========================================
   本文エリア設定（左カラム）
   ========================================= */
.article-section {
  letter-spacing: 0.06em;
  background-color: #f6f6f6;
}
/* --- 2カラムのコンテナ（1300px以上の時） --- */
.article-container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; 
  gap: 40px;
}
/* メイン：サイド ＝ 7：3 */
.main-article-content {
  flex: 7;
  min-width: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 60px;
  border-right: 1px solid #000; 
}
.article-sidebar {
  flex: 3;
  min-width: 300px; 
  padding-top: 60px;
  padding-bottom: 60px;
}
/* --- 本文内の写真ルール --- */
/* --- キャプションを付け足すために修正20260519--- */
.article-image.single img {
  width: 100%;
  height: auto;
    max-width: 780px;
}

.article-image.single {
  margin-bottom: 40px;
}

.article-image-double {
  display: flex;
  gap: 20px;
}
.article-image-double figure {
  flex: 1;
}

.article-image-double img {
  width: 100%;
  height: auto;
  max-width: 380px;
}

.article-image-double {
  margin-bottom: 40px;
}

/* --- 画像のキャプション --- */
figcaption {
    text-align: right;
padding: 0 0.5em;
font-size: 0.85em;
font-weight: 600;
}

figcaption span {
font-size: 0.90em;
opacity: 0.7;
}

/* --- 本文エリアのタイポグラフィ --- */
/* サブタイトル (H2) */
.article-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 20px;
  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  background-position: bottom;
  background-size: 9px 1px;
  background-repeat: repeat-x;
}
/* 本文テキスト */
.article-text {
  font-size: 16px;
  line-height: 2; 
  margin-bottom: 60px;
  color: #333;
}
/* 2枚並びの写真の隙間調整 */
.article-image-double {
  display: flex;
  gap: 25px; 
  margin-bottom: 40px;
}
figure.article-image.single img, .article-image-double figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
aspect-ratio: 16 / 10;
object-fit: cover;
}
/* 備考欄 (#E7E7E7) */
.article-note {
  background-color: #E7E7E7;
  padding: 30px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 60px;
}
/* --- スマホ時の挙動 --- */
@media (max-width: 768px) {
  .article-container {
    gap: 0;
  }
  .main-article-content {
    padding: 40px 0; 
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #000;
  }
  .pickup-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .article-sidebar {
    padding: 40px 0;
  }
}
/* =========================================
   広告・PICKUPエリア設定（右カラム）
   ========================================= */
/* 右カラム全体の調整 */
.article-sidebar {
  flex: 3;
  min-width: 300px;
}
/* サイドバーの見出し (PICK UP) */
.sidebar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.sidebar-title span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  vertical-align: middle;
  padding: 0 10px;
}
/* 広告エリア */
.sidebar-ad-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
.sidebar-ad-group img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}
/* PICK UP記事エリアの余白 */
.pickup-section {
  margin-bottom: 60px;
  padding: 0px 10px;
}
/* --- PICK UPカード（サイドバー版） --- */
.pickup-card {
  margin-bottom: 40px;
}
.pickup-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* 写真とタグの親要素（重なりの基準） */
.pickup-card__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #000;
  margin-bottom: 12px;
  background-color: #ccc;
  border-radius: 8px;
}
.pickup-card__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* ホバー時に写真を少し拡大する演出 */
.pickup-card a:hover img {
  transform: scale(1.05);
}
/* タグの基本設定（黄色） */
.pickup-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFFF01;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  z-index: 1;
  border-radius: 20px;
  margin: 5px;
  border: 1px solid #000;
  max-width: 95%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}
/* PRタグ（白背景）の上書き設定 */
.pickup-tag.is-pr {
  background: #FFF;
}
/* 情報エリア */
.pickup-date {
  display: block;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
  opacity: 0.5;
}
.pickup-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pickup-card:hover .pickup-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* --- スポンサーバナーエリア（サイドバー版） --- */
.sponsor-banner {
  /* margin-top: 20px; */
  margin-bottom: 60px;
}
.sponsor-banner img {
  width: 100%;
  max-width: 300px; 
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .article-container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .main-article-content {
    border-right: none;
    border-bottom: 1px solid #000;
    padding: 60px 10px 60px;
  }
  .article-sidebar {
    padding: 60px 0;
  }
  /* --- 2. 本文内の2枚並び写真を縦並びに --- */

    /* 1. 外側の箱を「横並び」から「縦並び」にスイッチ！ */
    .article-image-double {
        display: block !important; /* flexを解除して縦に積む */
        width: 100% !important;
        max-width: none !important; /* 制限を完全開放！ */
        margin-bottom: 0 !important;
    }

    /* 2. 中のfigure（個別の画像枠）も全開に */
    .article-image-double figure {
        width: 100% !important;
        margin-bottom: 20px !important; /* 画像同士の隙間を確保 */
    }

    /* 3. 画像自体のサイズと比率を再固定（念押しマッスル） */
    .article-image.single img,
    .article-image-double figure img {
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: 16 / 10 !important; /* 比率を死守！ */
        object-fit: cover !important;     /* 切り抜きを維持！ */
    }

    
  /* --- 3. 広告・スポンアルバナーのレスポンシブ --- */
  .sidebar-ad-group, .sponsor-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px; 
  }
  .sidebar-ad-group .ad-item img, .sponsor-banner img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  /* --- 4. PICK UPリスト：2列 + 1列レイアウト --- */
  .pickup-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
  }
  /* 備考欄 (#E7E7E7) */
  .article-note {
    background-color: #E7E7E7;
    padding: 15px;
    font-size: 12px;
  }
}
/* 小さい画面（iPhone SE等）での調整 */
@media (max-width: 375px) {
  .pickup-list {
    gap: 15px 10px;
  }
  .pickup-title {
    font-size: 13px;
  }
}
/* =========================================
   カードリスト
   ========================================= */
.post-grid {
  display: flex;
  flex-direction: column;
}
.post-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0; 
}
/* =========================================
   カード部分のCSS（PC用）
   ========================================= */
.post-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px;
}
/* カード全体の枠 */
.post-card {
  background: #fff;
  border: 1px solid #000; 
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.06em;
  transition: none;
}
/* 2. リンクエリア */
.post-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* 2. 画像エリア */
.post-card__img {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; 
  border-radius: 8px;
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  mask-image: radial-gradient(white, black); 
}
/* 画像の外枠 */
.post-card__img {
  padding: 30px 30px 20px;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: none !important;
}
/*画像の窓枠 */
.post-card__img-window {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden; 
  border: 1px solid #000; 
  border-radius: 8px;
  position: relative;
  background-color: #fff;
  display: block;
}
/* 画像 */
.post-card__img-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none !important;
  border-radius: 0 !important;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
/* ホバー時の処理 */
.post-card:hover .post-card__img-window img {
  transform: scale(1.1); 
}
/* テキストエリア */
.post-card__info {
  padding: 0 30px 20px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* カテゴリータグ */
.post-card__cat {
  display: inline-block;
  color: #000;
  font-weight: 700;
  border-radius: 20px;
  align-self: flex-start;
  background: #FFFF01;
  border: 1px solid #000;
  padding: 4px 10px;
  font-size: 14px;
  margin-bottom: 15px;
}
/* --- 通常時のタイトル --- */
.post-card__title {
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
  -webkit-line-clamp: 3;
  font-size: 20px;
}
/* --- ホバー時に3行すべてにラインを出す --- */
.post-card:hover .post-card__title {
/*
  text-decoration: underline;
  text-decoration-thickness: 2px; 
  text-underline-offset: 5px; 
*/
  text-decoration: underline;
  text-decoration-thickness: 0.1em !important;
  text-underline-offset: 5px; 
}
/* 5. フッターエリア（VIEW MORE） */
.post-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.post-card__date {
  opacity: 0.5;
}
.post-card__more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: 10px;
}
/* PRタグ（白背景）の上書き設定 */
.post-card__cat.is-pr {
    background: #FFF;
}
/* --- アイコンの外円（黄色い丸） --- */
.more-icon {
  width: 24px;
  height: 24px;
  background: #FFFF01;
  border-radius: 50%;
  border: 1px solid #000;
  position: relative;
  transition: all 0.3s ease;
}
/* 矢印の「棒（横線）」部分 */
.more-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px; /* 開始位置 */
  width: 12px; /* 棒の長さ */
  height: 2px; /* 線の太さ */
  background: #000;
  transform: translateY(-50%);
}
/* 矢印の「先端（くの字）」部分 */
.more-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px; /* 先端の位置 */
  width: 5px; /* 先端のサイズ */
  height: 5px; /* 先端のサイズ */
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  /* 中央に配置してから45度回転させて「>」にする */
  transform: translateY(-50%) rotate(45deg);
}
/* カード全体をホバーした時にアイコンが右に移動 */
.post-card:hover .more-icon {
  transform: translateX(5px);
}
.post-card {
  opacity: 0;
  transform: translateX(-15px); /* 左に30pxずらしておく */
}
/* =========================================
   広告エリア
   ========================================= */
/* 広告エリアのはみ出しを確実に防ぐ */
.ad-zone-wrapper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border-top: 1px solid #000;
  padding: 100px 20px 20px;
  background-color: #f6f6f6;
}
.ad-zone {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* 画面が狭いときは広告を自動で縦に並べる */
  gap: 30px;
}
.ad-item__middle img {
  width: 100%; /* 親の幅（最大320px）に合わせる */
  max-width: 320px; /* 320px以上には大きくしない */
  height: 100%;
  max-height: 100px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}
/* =========================================
   関連記事
   ========================================= */
/* 外枠 */
.related-section {
  background-color: #f6f6f6; 
  padding: 80px 0; 
}
/* 内枠*/
.related-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px; /* iPad等での左右の遊び */
  box-sizing: border-box;
}
.related-title {
  margin-bottom: 60px;
  padding-bottom: 15px;
  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  background-position: bottom;
  background-size: 9px 1px;
  background-repeat: repeat-x;
  font-size: 32px;
  letter-spacing: 0.06em;
}
/* マガジン一覧に戻るボタン */
.btn-area {
  margin: 100px 0 40px;
  text-align: center;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 100px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
  border-radius: 80px;
  border: 1px solid #000;
}
.btn-back:hover {
  background-color: #FFFF01;
}
/* 右側の矢印アイコン（擬似要素で作る場合） */
.btn-icon {
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: transparent;
  margin-left: 15px;
  position: relative;
  transition: transform 0.3s ease;
}
/* 矢印の「棒（横線）」部分 */
.btn-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 20px;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
}
/* 矢印の「先端（くの字）」部分 */
.btn-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px; 
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
/* カード全体をホバーした時にアイコンが右に移動 */
.btn-back:hover .btn-icon {
  transform: translateX(8px);
}
/* =========================================
   960px以下に適用するスタイル (タブレット〜スマホ)
   ========================================= */
/* 769pxから960pxの間「だけ」に効かせる */
@media screen and (min-width: 769px) and (max-width: 960px) {
  .post-grid-container {
    gap: 20px;
  }
  .post-card__img {
    padding: 30px 30px 20px;
    padding: 15px 15px 10px;
  }
  .post-card__info {
    padding: 0 40px 20px 40px;
    padding: 0 20px 10px 20px;
  }
  .post-card__cat {
    font-size: 12px;
  }
  .post-card__title {
    font-size: 16px;
  }
  .post-card__date {
    font-size: 12px;
  }
  .post-card__more {
    font-size: 12px;
  }
}
/* =========================================
   スマホ（SP）対応：768px以下
   ========================================= */
@media (max-width: 768px) {
  /* カテゴリータグ：iPhone SE等の狭い画面で丸める */
  .post-card__cat {
    font-size: 10px;
    padding: 2px 8px;
    margin-bottom: 8px;
    display: inline-block;
    max-width: 100%; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }
  /* タイトル */
  .post-card__title {
    font-size: 14px;
    line-height: 1.65;
    min-height: 3.0em; 
    -webkit-line-clamp: 3; 
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* 6. その他カード内の細かな調整ーーーーーーーーーーーーーーーー */
  .post-card {
    border-radius: 8px;
    letter-spacing: 0.03em;
  }
  .post-card__img {
    padding: 10px 10px 5px;
  }
  .post-card__info {
    padding: 0 10px 15px 10px;
  }
  .post-card__bottom {
    padding-top: 10px;
  }
  .post-card__date, .post-card__more span {
    font-size: 8px;
  }
  .post-card__more {
    gap: 2px;
  }
  .more-icon {
    width: 18px;
    height: 18px;
  }
  .more-icon::before {
    width: 8px;
    left: 3px;
  }
  .more-icon::after {
    width: 4px;
    height: 4px;
    right: 3px;
  }
  /* 関連記事の枠：2列から1列へ */
  .related-wrapper .post-grid-container {
    display: flex;
    flex-direction: column; 
    gap: 30px; 
  }
  .related-title {
    margin-bottom: 30px;
    font-size: 24px;
  }
  /* 各カードの幅を100%にする */
  .related-wrapper .post-card {
    width: 100%;
    max-width: none;
  }
  /* 内枠の余白 */
  .related-wrapper {
    padding: 0 10px;
  }
  /* 関連記事マガジン一覧に戻るボタン */
  .btn-back {
    width: 100%; /* スマホでは押しやすいよう横いっぱいに */
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 18px 20px;
  }
  .btn-area {
    margin: 40px 0;/* マガジン一覧に戻る ボタン margin見直す 20260519 */
    padding: 0 20px; /* 画面端との余白 */
  }
  .btn-icon {
    margin-left: 5px;
  }
}



/* =========================================
   AD PETA 広告枠
   ========================================= */
/* ↓ 以下を設定すると、320pxで表示される */
/* iframeそのものの幅を強制 */
#asta_ads_frame_middle_lower_a {
    width: 320px !important;
    min-width: 320px !important;
}
#asta_ads_frame_middle_lower_b {
    width: 320px !important;
    min-width: 320px !important;
}
#asta_ads_frame_middle_lower_a img {
    width: 320px !important;
}
#asta_ads_frame_middle_lower_b img {
    width: 320px !important;
}
