/* ============================================================
   ARIKI パンツ販売会 LP - sales_event_style.css
   ============================================================ */

/* --- CSS Variables ---------------------------------------- */
:root {
  --color-bg: #EBF4EB;
  --color-bg-light: #f9f9f9;
  --color-teal: #5DC8C8;
  --color-teal-dark: #3A9E9E;
  --color-green: #4DAF5A;
  --color-green-dark: #3A8C45;
  --color-green-light: #7bbcb1;
  --color-red: #c00049;
  --color-pink: #D4275A;
  --color-gold: #EFA525;
  --color-gold-dark: #C8831A;
  --color-navy: #1A3B6E;
  --color-text: #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;
  --color-cream: #FEF9F0;
  --color-border: #C8E0C8;
  --color-main: #0091a8;

  --font-base: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-en: 'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset / Base ----------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}

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

/* --- Scroll animation classes ----------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* delay helpers */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* --- Keyframe Animations ---------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 165, 37, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(239, 165, 37, 0);
  }
}


@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}


@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes badgePop {
  0% {
    transform: scale(0) rotate(-15deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.15) rotate(3deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ============================================================
   TOP STRIPE
   ============================================================ */
.top-stripe {
  background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  height: 8px;
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF4EB 0%, #D8EED8 50%, #C5E5CC 100%);
  display: flex;
  flex-direction: column;
}


/* 75周年バッジ */
.hero__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  animation: badgePop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
  width: 120px;
}


/* ヒーロー画像エリア */
.hero__image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  min-height: 60vh;
  overflow: hidden;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
}

/* ヒーロータイトル画像 */
.hero__overlay-block {
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  max-width: 960px;
  margin: 0 auto;
  z-index: 4;
  animation: fadeInUp 0.7s ease 0.65s both;
}

article div#Journal h1.hero__title-img-wrap {
  margin: 0 auto;
  padding: 0;
  display: block;
  border: none;
}

.hero__title-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   EVENT INFO DESC（ヒーロー内のテキスト）
   ============================================================ */
.event-info__desc {
  font-size: clamp(18px, 3vw, 20px);
  color: var(--color-text-light);
  line-height: 1.9;
  margin: 8px 0 0;
  padding: 32px 24px 40px;
  text-align: center;
}

.event-info__desc strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ============================================================
   TOKUTEN / 75周年特典セクション
   ============================================================ */
.tokuten {
  background: linear-gradient(160deg, #EBF4EB 0%, #D8EED8 100%);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.tokuten__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tokuten__header {
  text-align: center;
  margin-bottom: 32px;
}

article div#Journal h2.tokuten__header-title {
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 900;
  color: var(--color-red);
  display: block;
  border: navajowhite;
  text-align: center;
  padding: 0;
  margin: 0;
  letter-spacing: 2px;
  box-sizing: border-box;
}

/* 特典リスト（縦並び） */
.tokuten__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* カード */
.tokuten__card {
  background: var(--color-white);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0px 4px 12px 3px rgba(0, 0, 0, 0.15);
}

/* カード内 2カラムレイアウト */
.tokuten__card-inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

/* テキスト側 */
.tokuten__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* カード番号（大きく薄く） */
.tokuten__card-num {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-green-light);
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 28px;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}

/* アクセントライン（細い横線のみ） */
.tokuten__card::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 20px;
}

.tokuten__card--line::before {
  background: #06C755;
}

.tokuten__card--bag::before {
  background: var(--color-teal);
}

.tokuten__card--dm::before {
  background: var(--color-gold-dark);
}

.tokuten__card-tag {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green-light);
  margin-bottom: 8px;
}

.journal-cont h3.tokuten__card-title {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 900;
  color: var(--color-main);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tokuten__image_container {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42%;
  max-width: 42%;
}

.tokuten__image_container a {
  width: 100%;
  transition: all 0.2s ease;
}

.tokuten__image_container a:hover {
  opacity: 0.8;
  transition: all 0.2s ease;
}

.tokuten__image_container img {
  width: 100%;
}

.tokuten__note {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.tokuten__note+.tokuten__note {
  margin-top: 12px;
}

/* スマホ：縦積み（画像上・テキスト下で統一） */
@media (max-width: 820px) {
  .tokuten__card {
    padding: 28px 24px;
  }

  .tokuten__card-inner {
    flex-direction: column;
    gap: 20px;
  }

  .tokuten__image_container {
    flex: none;
    max-width: 80%;
    width: 80%;
    padding: 8px;
  }

  /* card 02はHTMLがテキスト→画像の順なので、モバイルで画像を上に */
  .tokuten__card--bag .tokuten__image_container {
    order: -1;
  }
}


/* ============================================================
   SPECIAL PRICE SECTION
   ============================================================ */
.price {
  background: var(--color-white);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 装飾背景 */
.price__deco {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 175, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.price__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.price_block {
  border: solid 2px var(--color-red);
  border-radius: 8px;
}

.price_block h3 {
  background: var(--color-red);
  color: var(--color-white);
  font-size: clamp(16px, 3vw, 21px);
  padding: 8px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.price_box {
  display: flex;
  gap: 24px 48px;
  justify-content: center;
  padding: 24px;
  flex-wrap: wrap;
  position: relative;
}

.price_box_detail {
  text-align: center;
}

.price_box_detail p {
  font-size: clamp(16px, 2vw, 18px);
}

.price_box_amount {
  line-height: 1;
}

.price_box_amount span {
  font-family: var(--font-en);
  font-size: 380%;
}

.price_box_detail.price_after .price_box_amount {
  color: var(--color-red);
}

p.price_note {
  width: 100%;
  color: var(--color-red);
}

.price_otoku {
  width: 140px;
  position: absolute;
  top: -20%;
  right: 3%;
  filter: drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.2));
}

/* セクションタイトル共通 */
article div#Journal h2.section-title {
  font-family: var(--font-en);
  font-size: clamp(32px, 7vw, 50px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-main);
  text-align: center;
  position: relative;
  border: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-main), transparent);
}

.price__subtitle,
.tokuten__header-text {
  font-size: clamp(16px, 3vw, 21px);
  color: var(--color-text-light);
  margin-bottom: 36px;
  margin-top: 14px;
}

/* あわせ買い割引 */
.price__arrow {
  font-size: 32px;
  color: var(--color-red);
  display: flex;
  align-items: center;
  padding: 0 4px;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

/* ============================================================
   LINE-UP SECTION
   ============================================================ */
.lineup {
  padding: 80px 0 0;
  background: var(--color-bg-light);
  position: relative;
}

.lineup__heading-area {
  text-align: center;
  padding: 0 24px 60px;
}

.lineup__subtitle {
  text-align: center;
  font-size: clamp(16px, 3vw, 21px);
  color: var(--color-text-light);
  margin-bottom: 0;
  margin-top: 14px;
}

.lineup__subtitle em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-green-light);
}

/* カテゴリブロック */
.lineup-cat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

@media (max-width: 600px) {
  .lineup-cat {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* 偶数カテゴリは写真とラベルを反転 */
.lineup-cat--reverse .lineup-cat__label-col {
  order: 2;
}

.lineup-cat--reverse .lineup-cat__photos {
  order: 1;
}

@media (max-width: 600px) {
  .lineup-cat--reverse .lineup-cat__label-col {
    order: 0;
  }

  .lineup-cat--reverse .lineup-cat__photos {
    order: 0;
  }
}

/* ラベル列 */
.lineup-cat__label-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 64px) clamp(24px, 5vw, 56px);
}

.lineup-cat__num {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-green-light);
  margin-bottom: 12px;
}

.journal-cont h3.lineup-cat__name {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
  max-width: 0 0 16px 0;
}

.journal-cont h3.lineup-cat__name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-text);
}

.lineup-cat__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* 写真列 */
.lineup-cat__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #e8e8e8;
  min-height: 400px;
}

@media (max-width: 600px) {
  .lineup-cat__photos {
    min-height: 260px;
  }
}

/* 写真プレースホルダー */
.lineup-cat__photo {
  position: relative;
  overflow: hidden;
  background: #EDEDEC;
  aspect-ratio: 2/3;
}

.lineup-cat__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
  display: block;
}

.lineup-cat__photo:hover img {
  transform: scale(1.05);
}

/* ダミー写真スタイル */
.lineup-cat__photo--dummy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* 実写真が入っている場合はabsolute fillで表示 */
.lineup-cat__photo--dummy img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}


/* ============================================================
   VENUE / 会場情報セクション
   ============================================================ */
.venue {
  background: var(--color-white);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.venue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green), var(--color-teal));
}

.venue__inner {
  max-width: 800px;
  margin: 0 auto;
}

.venue__title {
  text-align: center;
  margin-bottom: 36px;
}

#Journal .venue__title h2 {
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 900;
  color: var(--color-text);
  display: block;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}

/* 日時バナー */
.venue__date-banner {
  background: linear-gradient(90deg, var(--color-green) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.venue__date-label {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.venue__date-text {
  font-size: clamp(22px, 5vw, 31px);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 5px;
}

.venue__date-text strong {
  font-weight: 900;
}

.venue__date-text em {
  font-style: normal;
  font-size: clamp(14px, 2.5vw, 17px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 1px 5px;
  margin: 0 2px;
}

.venue__time {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-left: auto;
}

/* 会場情報 */

.venue__content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.venue__info-block {
  background: var(--color-bg-light);
  padding: 28px 24px;
}

.journal-cont h3.venue__info-name {
  font-size: clamp(20px, 4vw, 25px);
  font-weight: 900;
  color: var(--color-red);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 12px 0;
}

.venue__info-address {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
  display: flex;
  gap: 16px;
}

.venue__info-address_txt {
  width: calc(65% - 16px);
}

.venue__info-address_image {
  width: 35%;
}

.venue__info-note {
  font-size: 17px;
  color: var(--color-text-light);
  margin-top: 14px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  line-height: 1.7;
}


/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   SCROLL TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-teal-dark);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 480px) {
  .tokuten {
    padding: 40px 16px;
  }

  .price {
    padding: 44px 16px;
  }

  .lineup {
    padding: 44px 16px;
  }

  .venue {
    padding: 44px 16px;
  }
}

@media (min-width: 768px) {
  .hero__badge {
    top: 32px;
    left: 40px;
  }
}

/* ============================================================
   IMAGE MODAL
   ============================================================ */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.img-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.img-modal__inner {
  position: relative;
  max-width: min(90vw, 680px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.img-modal.is-open .img-modal__inner {
  transform: scale(1);
}

.img-modal__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.img-modal__close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 9010;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.img-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ズームヒント（虫眼鏡アイコン） */
.lineup-cat__photo {
  cursor: zoom-in;
}

.lineup-cat__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center center no-repeat;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.lineup-cat__photo:hover::after {
  background-color: rgba(0, 0, 0, 0.22);
  opacity: 1;
}

.hero__image-wrap img.pc-view {
  display: block;
}

.hero__image-wrap img.sp-view {
  display: none;
}

@media (max-width: 1536px) {
  .hero__overlay-block {
    max-width: 800px;
  }
}

@media (max-width: 1366px) {
  .hero__overlay-block {
    max-width: 700px;
  }

  .event-info__desc {
    padding: 32px 0 40px;
  }
}

@media (max-width: 1280px) {
  .hero {
    min-height: fit-content;
  }

  .hero__overlay-block {
    max-width: 620px;
  }

  .hero__badge {
    width: 90px;
  }
}

@media (max-width: 820px) {
  .hero__image-wrap {
    min-height: fit-content;
  }

  .hero__overlay-block {
    max-width: 80%;
  }

  .hero__overlay-block .hero__title-img-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .event-info__desc {
    padding: 24px 0 0;
    font-size: 14px;
  }

  .price_otoku {
    width: 110px;
    top: -10%;
    right: -1%;
  }

  .lineup-cat {
    min-height: fit-content;
  }

  .lineup-cat__photos {
    min-height: fit-content;
  }

  .lineup-cat__num {
    font-size: 24px;
    line-height: 1;
  }
}

@media (max-width: 600px) {
  .hero__image-wrap img.pc-view {
    display: none;
  }

  .hero__image-wrap img.sp-view {
    display: block;
  }

  .hero__badge {
    width: 60px;
    top: 16px;
    left: 16px;
  }

  .hero__image-wrap {
    min-height: 70vh;
  }

  .hero__overlay-block {
    top: 52%;
  }

  .price_box {
    flex-direction: column;
  }

  .price__arrow {
    justify-content: center;
    rotate: 90deg;
  }

  .price_otoku {
    width: 110px;
    top: 40%;
    right: 10%;
  }
}

@media (max-width: 580px) {
  #contents #main-column .link.keyword {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero__image-wrap {
    min-height: 50vh;
  }

  .hero__overlay-block {
    top: 50%;
  }

  .hero__overlay-block {
    max-width: 90%;
  }

  .hero__overlay-block .hero__title-img-wrap {
    max-width: 320px;
  }

  .event-info__desc {
    padding: 16px 0 0;
    font-size: 12px;
  }

  .tokuten__card-tag {
    font-size: 14px;
  }

  p.price_note {
    font-size: 13px;
  }

  .price_otoku {
    width: 90px;
    top: 48%;
    right: -10px;
  }

  .fade-in.visible {
    justify-content: center;
  }

  .venue__date-banner {
    padding: 16px;
    gap: 8px;
  }

  .venue__time {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .venue__info-address {
    flex-direction: column;
  }

  .venue__info-address_txt {
    width: 100%;
  }

  .venue__info-address_image {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .hero__overlay-block .hero__title-img-wrap {
    max-width: 280px;
  }

  .event-info__desc {
    padding: 6px 0 0;
    font-size: 11px;
  }
}