html {
  /* モーダル/ドロワー開閉時のスクロールバー消失による横ズレを防ぐ */
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

a {
  text-decoration: none;
}

.errTxt {
  color: #FF0000;
  margin-top: 15px;
  padding: 5px;
  background: #FFDCE0;
}

.text-xxs{
  font-size:0.5rem ;
}

@media screen and (min-width: 992px) {
  .bg-mainvisual {
    background-color: #dc0325;
  }
  .cover_mainvisual {
    background-size: cover;
  }
}

/*--------------------------------ハンバーガーメニュー-------------------------------*/
#g-nav {
  position: fixed;
  z-index: 998;
  background: hsl(0deg 0% 0% / 50%);
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /* transition: all 0.6s; */
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: calc(330px + 45px);
  height: 100vh;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  right: 0;
  padding: 20px;
}
/* スクロールバー */
#g-nav.panelactive #g-nav-list::-webkit-scrollbar {
  width: 5px;
  height: 30px;
  background-color: #cccccc;
  border-radius: 10px;
}#g-nav.panelactive #g-nav-list::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 10px;
}
#g-nav .main__navi li {
  list-style: none;
  padding: 15px 10px;
  background: url(/assets/mypage/top/icon_menuarrow-35d3f9e1d59f2021c0834c92115028de5ed7991bdc795f71e564300e1d0c8f2e.svg) no-repeat;
  background-position: right;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* REDLife 導線はブランド表記(大小混在)を維持するため大文字化を解除(#2214) */
#g-nav li a.redlife-nav-link {
  text-transform: none;
}/* バナーエリア */ #g-nav .mb-8 li a {
  padding: 10px 0 10px 0;
}
.openbtn {
  position: absolute;
  z-index: 1;
  top: 25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.menu-text {
  top: 40px;
  position: absolute;
  left: 12px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000000;
  width: 45%;
}

.closebtn {
  background: #000;
  right: 30%;
  top: 0px !important;
}

.closebtn span {
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 959px) {
  #g-nav.panelactive #g-nav-list {
    width: 70%;
  }
  .openbtn{
    top: 10px;
    right: 15px;
  }
  .openbtn span{
    background: #fff;
  }
  .closebtn {
    right: 70%;
  }
  .closebtn .menu-text{
    display: none;
  }
  #openbtn.active{
    top: 0;
    right: 70%;
    background: black;
    z-index: 999;
  }
}#openbtn_pc.active{
  top: 0;
  right: calc(330px + 45px);
  background: black;
  z-index: 999;
}#openbtn_pc.active span{
  background-color: white;
}

/*------------------------------メインビジュアル---------------------------------*/
.slider {
  position: relative;
  z-index: 1;
}

.slider-item {
  width: 100%;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  height: 25px;
  width: 25px;
}

.slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}

.slick-dots .slick-active button {
  background: #333;
}

/*-------------------------------アコーディオン--------------------------------*/
.accordion-area {
  list-style: none;
  margin: 0 auto;
}

.title {
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
}
.title::before,
.title::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 50%;
  right: 11px;
  transform: rotate(50deg);

}

.title::after {
  top: 50%;
  right: 5px;
  transform: rotate(130deg);

}

.title.close::before {
  transform: rotate(-50deg);
}

.title.close::after {
  transform: rotate(-130deg);
}

.box {
  display: none;
}
/*--------------------------------モーダル-------------------------------*/
.hide-area{
	display: none;
}

.modaal-container{
  width: auto!important;
  background: #DC0027 !important;
  border-radius: 5px !important;
}.is-LADIES .modaal-container{
  background: white!important;
  border-radius: 20px!important;
}
.is-LADIES .member_card_inner{
  border: 2px solid #DC0227;
  border-radius: 15px;
  overflow: hidden;
}
.modaal-close:after,
.modaal-close:before{
	background:#ccc;
}.is-LADIES .modaal-close:after,
.is-LADIES .modaal-close:before{
	background:#E6002D;
}

.is-LADIES + .modaal-overlay{
  background-color: rgba(230, 0, 45, 0.75)!important;
}

.is-LADIES .member_visit_info{
  border: none!important;
  font-size: 12px;
  color: #515151;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}.is-LADIES .member_visit_info_header{
  background: none;
  border-bottom: 2px solid #C0C0C0;
  color: #515151;
}.is-LADIES .member_visit_info_header th{
  padding-left: 0;
}.is-LADIES .member_visit_info_header th div{
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 0;
}.is-LADIES .member_visit_info_header th div .ticket_info_icon{
  width: 18px;
  fill: #515151;
}.is-LADIES .member_visit_info_sell{
  border-bottom: 1px solid #C0C0C0;
}.is-LADIES .member_visit_info th, .is-LADIES .member_visit_info td{
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.logo-ladies{
  display: none;
}.logo-default{
  display: block;
}.is-LADIES .logo-default{
  display: none;
}.is-LADIES .logo-ladies{
  display: block;
}

.is-LADIES .qr_code img{
  opacity: 0.8;
}

.is-LADIES .customer_code{
  font-size: 12px;
  color: #515151;
 }

.is-LADIES .qr_code_notice{
  font-size: 12px;
 }

.is-LADIES .member_no{
  font-size: 24px;
  color: #515151;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}
.modaal-close{
  position: absolute!important;
  top: 0!important;
  right: 0!important;
}@media screen and (min-width: 992px) {
  .modaal-close{
    top: 15px!important;
    right: 15px!important;
  }
}
@media screen and (max-width: 959px) {
  .modaal-content-container{
    padding: 30px 15px 15px 15px!important;
  }
}

/*--------------------------------画像ポップアップ（記事詳細）-------------------------------*/
/* 既存 .modaal-container の赤背景・角丸は会員カード用カスタム。image type のみ標準外観に戻す */
.modaal-image .modaal-container {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.modaal-image .modaal-content-container {
  padding: 0 !important;
}
/* 画像の上限高さ。Modaal の image type は標準で画像を等倍表示し、画面外にはみ出すサイズだとオーバーレイ越しに切れて見えるため
   viewport の 80% に制限する。height: auto を併記してアスペクト比を維持。
   調整可: 端末・解像度に応じて 70vh〜90vh の範囲で見直し可能（Modaal 標準のサイズ計算より後勝ちにするため独自指定が必要）。 */
.modaal-image img {
  max-height: 80vh;
  height: auto;
}
/* 独自キャプション要素。標準 .modaal-gallery-label は Modaal の標準 CSS で
   @media (max-height: 820px) { display: none } が指定されており、viewport の高さが 820px 以下（スマホ縦持ち相当）で
   非表示になるため、HTML キャプションを常時表示するには使えない（DES-4）。 */
.modaal-image .article-image-caption {
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.modaal-image .article-image-caption:empty {
  display: none;
}

.border-red {
  border-color: #FF0000;
}

.border-mainred {
  border-color: #E6002D;
}
/*-event_status_for_style イベントのステータスのスタイル-*/
/* NOTE: rbファイルにてtailwindcssが動かないため新規でスタイル追加 */
.border-tag_gray{
  border-color: #a8a8a8;
}
.text-red {
  color: #FF0000;
}

.text-main {
  color: #E6002D;
}


.font-Oswald {
  font-family: "Oswald", sans-serif;
}

/*-rank.stage-*/
.bg-rank__WHITE{
  background: #fff;
}
.bg-rank__LOYALTY{
  background: #000000;
  color: white;
}
.bg-rank__REGULAR{
  background: #C90024;
  color: white;
}
.bg-stage__RED{
  background: #E60012;
  color: white;
}
.bg-stage__RUBY{
  background: #DC0027;
  color: white;
}
.bg-stage__U-18{
  background: #707070;
  color: white;
}
.bg-stage__PLATINUM{
  background: #BEC3C9;
  color: white;
}
.bg-stage__SCHOOL{
  background: #FFC400;
}
.bg-stage__SAPPHIRE{
  background: #707070;
  color: white;
}
.bg-stage__REDSLAND{
  background: #FFC400;
}
.bg-stage__DIAMOND{
  background: #D7B300;
  color: white;
}
.bg-stage__BRONZE{
  background: #A76A1B;
  color: white;
}
.bg-stage__SILVER{
  background: #BEC3C9;
  color: white;
}
.bg-stage__GOLD{
  background: #D7B300;
  color: white;
}
.bg-stage__WHITE{
  background: #ffffff;
  color: #707070;
}

/*-rank.stage-*/

/*-event_status_for_style イベントのステータスのスタイル-*/
/* NOTE: rbファイルにてtailwindcssが動かないため新規でスタイル追加 */
.bg-tag_gray{
  background: #a8a8a8;
}

/* バリデーションエラーメッセージでの表示 */
.field_with_errors{
  display: contents;
}
.bg-main:disabled{
  background: #ffc0cb;
  cursor: default;
}
/* 入会記念品選択 在庫切れ */
.input_wrap__disabled{
  border-color: #c4c4c4;
  color: #757575;
}.input_wrap__disabled input{
  border-color: #757575;
}.input_wrap__disabled img{
  filter: grayscale(100%);
  opacity: .5;
}

/* バーコード余白 */
.padding_sitde{
  padding: 0px 15px
}
.card_radius {
  border-radius: .25rem .25rem 0 0;
}.is-LADIES .rank_header {
  background:  #DC0227;
  color: white;
}.is-LADIES .card_radius {
  border-radius: 0; 
  border: none;
}

.content_wrapper ul {
  list-style: disc;
}
.content_wrapper ol {
  list-style: decimal;
}

/*
  #2080: 記事詳細本文（CKEditor 出力）のリストマーカー復活
  - 要件: 箇条書き(•)・番号リスト(1.2.3.)を作成時どおり表示する
  - 背景: フロントは Tailwind の @tailwind base(Preflight) を読み込み、ol,ul{list-style:none;padding:0}
    でマーカーと余白を消す。本文ラッパ .article-body-content は .content_wrapper/.trix-content/prose の
    いずれも付かないため、既存のリスト用CSSが効かず本文だけマーカーが消えていた。
  - 詳細度 0,1,1 で Preflight(0,0,1) を上書きするため !important 不要。ネスト(ul ul/ol ol)も子孫マッチで自動復活。
  - padding-left は Preflight の padding:0 を打ち消しマーカーを描画域に出すため必須（1.5em は調整可）。
*/
.article-body-content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.article-body-content ol {
  list-style: decimal;
  padding-left: 1.5em;
}

/*
  #2217: 記事詳細本文（CKEditor 出力）の段落間余白復活
  - 要件: 本文の段落改行（Enter=<p> / 貼り付けで生成される段落）が作成時どおり空行として表示される
  - 背景: #2080 と同構図。本文ラッパ .article-body-content は .content_wrapper/.trix-content/prose が
    付かないため Tailwind Preflight の p{margin:0} が効き、保存HTMLに <p>…</p><p>…</p> があっても
    段落間の縦余白が 0 になり「貼り付け時に改行が反映されない」ように見えていた（UAT #2217）。
  - 詳細度 0,1,1 で Preflight(0,0,1) を上書きするため !important 不要。margin-block=1em は調整可。
*/
.article-body-content p {
  margin-block: 1em;
}
.content_wrapper h1 {
  border-bottom: solid 1px lightgray;
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: 600;
}
.content_wrapper a {
  color: rgb(13 110 253);
}

.google_calendar {
  border-width: 0;
  width: 100%;
  height: 400px;
}
.facebook_border {
  border: none;
  overflow: hidden;
}

.modal-open #confirm-use-modal {
  display: flex !important;
}
.modal-open > #confirm-use-modal-backdrop {
  display: block !important;
}

.alert {
  font-size: 15px;
  color: #c96262;
  background-color: #ffe7e7;
  border-color: #ffe7e7;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.w-333 {
  width: 333px;
}

.close-popup-button {
  background-color: #878787;
}

/* デジタル会員証モーダルのタブ UI / トップ席・レディース席の表示切替 */
.member_card_tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  list-style: none;
  padding: 0;
}
.member_card_tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  background: #fff;
  color: #888;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  font-weight: bold;
}
.member_card_tab.is-active {
  background: #DC0027;
  color: #fff;
}
.is-LADIES .member_card_tab {
  background: #fff;
  color: #888;
}
.is-LADIES .member_card_tab.is-active {
  background: #DC0227;
  color: #fff;
}

/* シーズンチケット情報アイコン: .is-LADIES 無し状態でもサイズを固定する */
.ticket_info_icon {
  width: 18px;
  fill: currentColor;
}

.ladies-only { display: none; }
.is-LADIES .default-only { display: none; }
.is-LADIES .ladies-only { display: block; }

/* 記事パーツ Template 6: 管理者が貼り付けた YouTube iframe の width/height 属性を上書きし、16:9 で親幅に追従させる */
.youtube-embed-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.youtube-embed-wrap > iframe {
  width: 100% !important;
  height: 100% !important;
}

/* 記事パーツ Template 8: 縦動画。縦比 9:16 で高さを確保しつつ中央寄せ。
   高さは横幅から aspect-ratio で算出する（vh を使わない）。プレビューは高さ自動調整の
   iframe 内に描画され、vh 基準だと高さが循環して縦につぶれるため横幅基準に統一する。
   SP は横幅を広め（画面幅追従・上限あり）、PC は max-width を絞って高さをビュー内に収める。
   最終的な数値は先方イメージ図に合わせて調整する（#2273 TBD-3）。 */
.vertical-video-wrap {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.vertical-video-wrap > iframe {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 992px) {
  /* PC は max-width を絞り、高さ（幅 × 16/9）がビュー内に収まるようにして中央寄せ */
  .vertical-video-wrap {
    max-width: 480px;
  }
}

.article-detail-body {
  overflow: visible !important;
}

/* 記事パーツ Template7 ギャラリー シアター風レイアウト */
.article-gallery-wrap {
  position: relative;
  background: #000;
}

/* メイン画像エリア */
.article-gallery-main {
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.article-gallery-main figure {
  margin: 0;
  text-align: center;
  background: #000;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-gallery-main img {
  max-height: 60vh;
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: block;
}
.article-gallery-main figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ddd;
  font-size: 0.75rem;
  text-align: center;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.55);
}

/* フィルムストリップ */
.article-gallery-thumbs {
  overflow: hidden;
  background: #111;
  padding: 5px 0;
}
.article-gallery-thumbs .slick-list {
  margin: 0 -3px;
}
.article-gallery-thumbs .slick-slide {
  margin: 0 3px;
  cursor: pointer;
}
.article-gallery-thumbs .slick-slide img {
  width: 100%;
  height: auto;
  opacity: 0.45;
  transition: opacity 0.2s;
}
/* 中央(選択中)のサムネを強調 */
.article-gallery-thumbs .slick-center img,
.article-gallery-thumbs .slick-current img {
  opacity: 1;
}

@media (max-width: 991px) {
  .article-gallery-main figure {
    min-height: 200px;
  }
}


/* ===== ギャラリーライトボックス ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #000;
  display: flex;
  flex-direction: column;
}
.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lb-header {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.gallery-lb-back-btn,
.gallery-lb-rotate-btn,
.gallery-lb-chrome-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.gallery-lb-back-btn:hover,
.gallery-lb-rotate-btn:hover,
.gallery-lb-chrome-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.gallery-lb-chrome-btn.is-active,
.gallery-lb-rotate-btn.is-rotated {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.25);
}

/* 疑似回転ボタン: SP縦画面でのみ表示(実際に横向きになったら疑似回転は不要なため隠す) */
.gallery-lb-rotate-btn {
  display: none;
}
.gallery-lb-rotate-btn .gallery-icon-rotate-v {
  display: none;
}
.gallery-lb-rotate-btn.is-rotated .gallery-icon-rotate-h {
  display: none;
}
.gallery-lb-rotate-btn.is-rotated .gallery-icon-rotate-v {
  display: flex;
}

/* メインステージ */
.gallery-lb-stage {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.gallery-lb-img-wrap {
  flex: 1;
  min-width: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.gallery-lb-img-wrap.is-zoomed {
  cursor: grab;
}
.gallery-lb-img-wrap.is-grabbing {
  cursor: grabbing;
}

.gallery-lb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}
.gallery-lb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 16px;
  color: #ddd;
  font-size: 0.8rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.gallery-lb-prev,
.gallery-lb-next {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3.5rem;
  font-weight: 300;
  padding: 0 18px;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.gallery-lb-prev:hover,
.gallery-lb-next:hover {
  color: #fff;
}

/* フィルムストリップ */
.gallery-lb-filmstrip {
  flex-shrink: 0;
  background: #111;
  padding: 5px 3px;
  display: flex;
  overflow-x: auto;
  gap: 3px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-lb-filmstrip::-webkit-scrollbar {
  display: none;
}

.gallery-lb-thumb {
  flex-shrink: 0;
  height: 72px;
  width: auto;
  display: block;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  user-select: none;
}
.gallery-lb-thumb.is-active {
  opacity: 1;
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 1px;
}

/* サムネイル/キャプション表示トグル(is-chrome-hidden) */
.gallery-lightbox.is-chrome-hidden .gallery-lb-filmstrip,
.gallery-lightbox.is-chrome-hidden .gallery-lb-caption {
  display: none;
}

/* 疑似回転(is-pseudo-rotated): 画面全体を90度回転させ、SPの縦画面のまま横向き表示を再現する */
.gallery-lightbox.is-pseudo-rotated {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 100vh;
  height: 100vw;
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 991px) {
  /* モバイルはスワイプ操作のため矢印ボタン非表示 */
  .gallery-lb-prev,
  .gallery-lb-next {
    display: none;
  }
  .gallery-lb-thumb {
    height: 58px;
  }
  .gallery-lb-back-btn,
  .gallery-lb-rotate-btn,
  .gallery-lb-chrome-btn {
    width: 34px;
    height: 34px;
  }
}

/* 疑似回転ボタン: SPの縦画面でのみ表示 */
@media (max-width: 991px) and (orientation: portrait) {
  .gallery-lb-rotate-btn {
    display: flex;
  }
}

/* モバイル横向き: フィルムストリップを隠して画像エリアを最大化 */
@media (max-width: 991px) and (orientation: landscape) {
  .gallery-lb-header {
    top: 6px;
    right: 8px;
  }
  .gallery-lb-back-btn,
  .gallery-lb-chrome-btn {
    width: 28px;
    height: 28px;
  }
  /* インラインギャラリーも縦スペースを節約 */
  .article-gallery-main figure {
    min-height: 0;
  }
}
