/* ============================================================
   FREAK'S STORE 40th / style.css
   ------------------------------------------------------------
   1. フォント
   2. カスタムプロパティ
   3. ベース
   4. レイアウトの土台（覆い被さりスタック）
   5. ユーティリティ
   6. 共通パーツ  … マーキー / 見出し / ボタン / ショートムービー
   7. TOPページ   … Hero / About / WHAT'S HAPPENING / STORE / ランダムアニメ
   8. 記事ページ（.pg-article）
   9. フッター
   ------------------------------------------------------------
   SP のブレークポイントは 743.9px。各ルールの直後に対応する
   @media を置く並びをこのファイル全体で守る。
   ============================================================ */

/* ============================================================
   1. フォント
   ============================================================ */

/* ============================================================
   2. カスタムプロパティ
   ============================================================ */

/* ==== カテゴリカラー（.sect-Slide-category のドット） ==== */
:root {
  --people: #0AC4FD;
  --product: #FD480A;
  --event: #77FD0A;
  --store: #FF39E5;
  --culture: #7B0AFD;
}

/* ============================================================
   3. ベース
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", Meiryo, "Noto Sans JP", sans-serif;
  color: #1B2F39;
  background: #f1f0f0;
  overflow-x: visible;
  /* reset.css の body{overflow-x:hidden} は sticky を殺すため打ち消す */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: #e8c15a;
  color: #202520;
}

:focus-visible {
  outline: 2px solid #e8c15a;
  outline-offset: 3px;
}

/* ============================================================
   4. レイアウトの土台（覆い被さりスタック）
   ============================================================ */

#top {
  min-height: 100vh;
  min-height: 100svh;
}

#top .sect-Hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 覆い被さるのはこの2つだけ。
   「A が B に覆われる」には A が sticky である必要があるので、
   ここに入っている要素だけが後続に覆われる。
   #contents（.stack-news40）以降は覆われも覆いもせず、
   フッターまで普通に流れる。
   現状：Hero → About が覆う / About → CONTENTS が覆う / それ以降は素の流れ */
#top,
.sect-About-about {
  position: sticky !important;
  top: 0;
}

.sect-About-about {
  margin-top: 0 !important;
  background: #fff;
}

.sect-About-about,
.sect-Store-store {
  min-height: 100vh;
  min-height: 100svh;
}

.sect-Store-store {
  /* sticky を外しても CONTENTS より手前に描かせるための指定。
     position: static のままだと「配置済み要素（sticky の CONTENTS）は
     後ろにある非配置要素より手前に描く」という規則が働き、
     STORE の背景の上に CONTENTS の文字が透けて出てしまう */
  position: relative;
  z-index: 1;
  background: url(../img/bg-freaks.png) 50% 0 repeat;
  background-size: 948px 593px;
  padding: 80px 0 120px;
  overflow-y: hidden;
}

@media screen and (max-width: 743.9px) {
  .sect-Store-store {
    padding: 60px 0;
  }
}

.stack-news40 {
  /* sticky を外したので、sticky のまま残る About より手前に描かせる。
     static だと「配置済み要素（About）は後ろの非配置要素より手前」の
     規則で About の中身が CONTENTS の上に透けて出てしまう
     （.sect-Store-store と同じ理由） */
  position: relative;
  z-index: 1;
  background: #202520;
}

@media (prefers-reduced-motion: reduce) {

  #top,
  .sect-About-about {
    position: static !important;
  }
}

/* ============================================================
   5. ユーティリティ
   ============================================================ */

.display-pc {
  display: block;
}

@media screen and (max-width: 743.9px) {
  .display-pc {
    display: none;
  }
}

.display-sp {
  display: none;
}

@media screen and (max-width: 743.9px) {
  .display-sp {
    display: block;
  }
}

.bg-freaks {
  background-color: #47511F;
}

.bg-gray {
  background-color: #f1f0f0;
}

/* ============================================================
   6. 共通パーツ
   ============================================================ */

/* ---- マーキー（右 → 左 無限スクロール） ---- */

.anime-marquee {
  overflow: hidden;
  display: flex;
  width: 100%;
  z-index: 3;
  padding: 8px 0px;
  background: #B8FF0D;
}

.marquee-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: max-content;
  max-width: none;
  gap: 16px;
  padding-right: 16px;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee-inner img {
  width: auto;
  max-width: none;
  height: 20px;
  flex-shrink: 0;
}

/* @media screen and (max-width: 743.9px) {
  .marquee-inner img {
    height: 20px;
  }
}

 */

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation-play-state: paused;
  }
}

@-webkit-keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ---- 見出し・リード文 ---- */

.sect-ttl {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 78px;
  letter-spacing: -1%;
  margin: 0 0 48px;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 743.9px) {
  .sect-ttl {
    font-size: 60px;
    text-align: left;
  }
}

.subheading {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 40px;
  color: #B8FF0D;
  text-align: center;
}

@media screen and (max-width: 743.9px) {
  .subheading {
    font-size: 24px;
    text-align: left;
  }
}

.sect-Store-store .subheading {
  color: #1B2F39;
}

.sect-lead {
  font-size: 19px;
  color: #F6F2EC;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 743.9px) {
  .sect-lead {
    font-size: 16px;
    text-align: left;
  }
}

/* SP追加調整: 見出し下説明文のPC用改行を解除（画面外はみ出し対策）・検証ラベル幅制限 */
@media screen and (max-width:743.9px) {
  .sect-lead br {
    display: none;
  }
}

.sect-Store-store .sect-lead {
  color: #1B2F39;
}

.tit-container {
  padding: 0px 80px;
  max-width: 1366px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 743.9px) {
  .tit-container {
    padding: 0px 20px;
    margin: 0 auto 20px;
  }
}

/* ---- ページ内メニュー ---- */

/* About の上端に置いてあり、スクロールで一緒に上がってきて、
   ビューポート上端に達したらそこで止まる（position: sticky と同じ挙動）。

   要素自体を About の中に入れていないのは、#about が position: sticky で
   積み重ねコンテキストを作るため。中に入れると z-index を上げても
   後続の .stack-news40 / .sect-Store-store に隠れて出てこられない。

   縦位置は js/script.js の initGnav が transform で更新する。
   transform だけなのでスクロール中にレイアウトは走らない。
   初期値の 100vh は JS が動く前に Hero へ被らないための逃がし */
.gnav {
  /* フェードの長さ。出るときと消えるときで別々に変えられる */
  --gnav-fadeInDuration: .4s;
  --gnav-fadeOutDuration: .2s;

  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 50;
  transform: translate(-50%, 100vh);
  will-change: transform;
  /* #about の上端が画面上端に来るまで、およびスクロール中は隠す。
     JS（initGnav）が is-visible を付け外しして切り替える。
     opacity だけだと透明なまま Hero の上でクリックを奪うので
     pointer-events も一緒に落とす。
     transition はこちらが「消えるとき」、.is-visible 側が「出るとき」に効く。
     width は SP のメニュー開閉用。両方に書かないと
     specificity で片方が消えるため、まとめてここで指定している */
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--gnav-fadeOutDuration) ease, width .3s ease;
  /* 白いピルの見た目は .gnav 側。SP で中身が MENU ボタン ⇄ リンクに入れ替わるため */
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.gnav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--gnav-fadeInDuration) ease, width .3s ease;
}

.gnav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
}

/* MENU ボタン。PC では出さない */
.gnav-toggle {
  display: none;
}

.gnav-link {
  display: block;
  padding: 4px 12px;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .06em;
  line-height: 1;
  color: #1B2F39;
  white-space: nowrap;
  transition: opacity .3s;
}

.gnav-link:hover {
  opacity: .55;
}

@media screen and (max-width: 743.9px) {

  /* 閉じている間は横幅いっぱいのバー。開くと中身の幅に縮む
     （transition は .gnav の基本ルール側でまとめて指定している） */
  .gnav {
    width: calc(100% - 50px);
  }

  .gnav-list {
    display: none;
    gap: 0;
    height: 50px;
    align-items: center;
    justify-content: space-around;
  }

  .gnav.is-open .gnav-list {
    display: flex;
  }

  .gnav-link {
    padding: 4px 8px;
    font-size: 13px;
  }

  .gnav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background-color: transparent;
    color: #1B2F39;
    cursor: pointer;
  }

  .gnav.is-open .gnav-toggle {
    display: none;
  }

  /* 2本線のアイコン。高さ − 上下のボーダー = 線の間隔 */
  .gnav-toggle-icon {
    display: block;
    flex: 0 0 auto;
    width: 25px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  }

  .gnav-toggle-label {
    font-family: "din-2014", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 1;
    color: currentColor;
  }
}

/* 動きを控える設定ではフェードさせず、その場で出す */
@media (prefers-reduced-motion: reduce) {
  .gnav {
    transition: none;
  }
}

/* ---- ボタン ---- */

.btn-details {
  width: 360px;
  display: block;
  margin: 48px auto 0px;
}

@media screen and (max-width: 743.9px) {
  .btn-details {
    width: 335px;
    margin-top: 40px;
  }
}

.btn-details-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border: 1px solid #1B2F39;
  border-radius: 999px;
  font-family: "din-2014", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #1B2F39;
  transition: background-color 0.3s, color 0.3s;
  letter-spacing: -0.01em;
  line-height: 1;
}

.btn-details:hover .btn-details-label {
  background-color: #B8FF0D;
}

@media screen and (max-width: 743.9px) {
  .btn-details-label {
    height: 52px;
    font-size: 19px;
  }
}

/* ---- ショートムービー ---- */

.short-movie {
  overflow: hidden;
  aspect-ratio: 2 / 1;
  position: relative;
}

@media screen and (max-width:743.9px) {
  .short-movie {
    aspect-ratio: 1 / 1;
  }
}

.short-movie video {
  width: 100%;
  vertical-align: bottom;
  position: absolute;
  top: 50%;
  transform: translateY(-56%);
}

@media screen and (max-width:743.9px) {
  .short-movie video {
    transform: translateY(-50%);
  }
}

/* ============================================================
   7. TOPページ
   ============================================================ */

.pg-top a {
  color: inherit;
  text-decoration: none;
}

/* ---- 7-1 Hero ---- */

.pg-top .sect-Hero-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url(../img/bg-hero.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 14%;
}

@media screen and (max-width: 743.9px) {
  .pg-top .sect-Hero-hero {
    background-size: auto 100%;
    background-position: 52% 0%;
  }
}

.pg-top .sect-About-about .anime-marquee {
  position: absolute;
  top: 0;
  z-index: 4;
}

.pg-top .sect-Hero-bg video,
.pg-top .sect-Hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero40 {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  pointer-events: none;
  color: #fff;
  text-align: center;
  padding: 0 16px;
}

/* ==== 1986 → 2026 プログレスライン（旧: 年号カウントアップ） ====
   薄グレーのトラックの上をドットが左→右へ一定時間で移動し、
   通過した部分がライムに色づく。
   バーもドットも transform だけで動かしているのでレイアウトは走らない */
.hero40-years {
  position: absolute;
  top: 6%;
  left: 0;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  /* バーとドットの動きの設定。この2つを直せば両方に効く
     （duration / easing がズレるとドットが線の先端から外れるため） */
  --hero40-yearsDuration: 6s;
  --hero40-yearsDelay: .4s;
}

.hero40-year {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: .02em;
  color: #B8FF0D;
}

/* 未通過のトラック。ドットが線の外にはみ出すので overflow は切らない */
.hero40-yearsLine {
  height: 2px;
  margin: 4px 5px;
  background-color: rgba(217, 217, 217, .5);
}

/* 通過済みの線。左端を軸に伸びる */
.hero40-yearsBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B8FF0D;
  transform: scaleX(0);
  transform-origin: left center;
}

/* reset.css の body{opacity:0} が body.onload で解除されるまで待つ。
   起点を揃えないとフェードインの裏で動き終わってしまう */
body.onload .hero40-yearsBar {
  animation: hero40YearsBar var(--hero40-yearsDuration) var(--hero40-yearsDelay) cubic-bezier(.33, 0, .2, 1) forwards;
}

/* 先頭のドット。線と同じ幅の透明な箱を右へスライドさせ、その右端に丸を置く。
   バーと同じ duration / easing なので常にバーの先端に一致する */
.hero40-yearsDot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}

body.onload .hero40-yearsDot {
  animation: hero40YearsDot var(--hero40-yearsDuration) var(--hero40-yearsDelay) cubic-bezier(.33, 0, .2, 1) forwards;
}

.hero40-yearsDot:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
  border-radius: 50%;
  background-color: #B8FF0D;
}

@keyframes hero40YearsBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes hero40YearsDot {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* 動きを控える設定では最初から到達済みの状態で出す */
@media (prefers-reduced-motion: reduce) {

  body.onload .hero40-yearsBar,
  .hero40-yearsBar {
    animation: none;
    transform: scaleX(1);
  }

  body.onload .hero40-yearsDot,
  .hero40-yearsDot {
    animation: none;
    transform: translateX(0);
  }
}

@media screen and (max-width:743.9px) {
  .hero40-years {
    top: 5%;
    padding: 0 18px;
  }

  .hero40-year {
    font-size: 32px;
  }
}

#confetti40 {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero40 .en1,
.hero40 .en2 {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  position: absolute;
}

.hero40 .en1 {
  top: calc(15.5%);
}

.hero40 .en2 {
  bottom: calc(36px + 6.5%);
}

.hero40-logo {
  width: 313px;
  max-width: 313px;
}

@media screen and (max-width:743.9px) {
  .hero40-logo {
    width: 65%;
  }
}

/* ---- Hero のポップイン ----
   参考: PLAZA 60th（cubic-bezier(.34, 1.56, .64, 1) で scale 0.8 → 1）。
   行き過ぎて戻る easeOutBack だけで「ポンッ」と出る動きを作っている。

   reset.css の body{opacity:0} → body.onload で 1 秒かけてフェードインするため、
   その裏で終わってしまわないよう body.onload を起点にし、
   フェードの終わり際に重なるよう遅延を入れている */
.hero40-logo,
.copy40-main {
  opacity: 0;
  scale: .8;
}

body.onload .hero40-logo,
body.onload .copy40-main {
  animation: hero40PopIn .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

body.onload .hero40-logo {
  animation-delay: .7s;
}

body.onload .copy40-main {
  animation-delay: .85s;
}

@keyframes hero40PopIn {
  100% {
    opacity: 1;
    scale: 1;
  }
}

/* 動きを控える設定では最初から表示済みにする */
@media (prefers-reduced-motion: reduce) {

  .hero40-logo,
  .copy40-main {
    animation: none;
    opacity: 1;
    scale: 1;
  }
}

.copy40-main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 24px);
  letter-spacing: .16em;
  margin-top: 31px;
  line-height: 1.8;
  color: #B8FF0D;
}

@media screen and (max-width:743.9px) {
  .copy40-main {
    font-size: 15px;
    letter-spacing: .08em;
    margin-top: 35px;
  }
}

/* ---- 7-2 About ---- */

.pg-top .sect-About-about {
  background: #ffffff;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景動画。Hero の .sect-Hero-bg と同じ組み方 */
.pg-top .sect-About-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #ffffff;
}

.pg-top .sect-About-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 動画の上に白を重ねて本文の可読性を確保する。
   濃さは opacity で調整、動画をそのまま見せたいならこのルールごと削除 */
.pg-top .sect-About-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  opacity: .8;
}

.pg-top .sect-About-about .anime-marquee {
  margin-bottom: 24px;
}

.pg-top .sect-About-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  padding: 192px 0 64px;
}

@media screen and (max-width: 743.9px) {
  .pg-top .sect-About-inner {
    padding: 196px 20px;
  }
}

.pg-top .forty_th-about-logo {
  width: 400px;
  margin: 0 auto 40px;
  aspect-ratio: 623.51/456.77;
}

@media screen and (max-width: 743.9px) {
  .pg-top .forty_th-about-logo {
    width: 240px;
    margin-bottom: 24px;
  }
}

.pg-top .sect-About-lead {
  font-size: 24px;
  font-weight: 700;
  color: #3F4622;
  margin: 0 0 32px;
}

@media screen and (max-width: 743.9px) {
  .pg-top .sect-About-lead {
    font-size: 20px;
  }
}

.pg-top .sect-About-txt {
  font-size: 18px;
  line-height: 2;
  color: #3F4622;
  font-weight: 500;
}

.pg-top .sect-About-txt p {
  margin-bottom: 1em;
}

@media screen and (max-width: 743.9px) {
  .pg-top .sect-About-txt {
    font-size: 14px;
  }
}

@media screen and (max-width:743.9px) {
  .sect-About-txt br {
    display: none;
  }
}

/* ---- 7-3 WHAT'S HAPPENING — セクション枠 ---- */

.sect-News-news {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.sect-News-news .sect-News-inner {
  color: #ffffff;
  padding-top: 80px;
}

@media screen and (max-width: 743.9px) {
  .sect-News-news .sect-News-inner {
    padding-top: 64px;
  }
}

/* ---- 7-3 WHAT'S HAPPENING — アークスライダー ---- */

.sect-Slide-clip {
  clip-path: inset(-9999px 0);
  width: 100%;
  padding-bottom: 100px;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-clip {
    padding-bottom: 18px;
  }
}

.sect-Slide-stage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.sect-Slide-stage:active {
  cursor: grabbing;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-stage {
    height: 425px;
  }
}

.sect-Slide-track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 0;
  height: 0;
}

.sect-Slide-item {
  position: absolute;
  width: 320px;
  height: 320px;
  top: -160px;
  left: -160px;
  will-change: transform, opacity;
  cursor: pointer;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-item {
    width: 230px;
    height: 230px;
    top: -115px;
    left: -115px;
  }
}

.sect-Slide-item a {
  display: block;
  width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

.sect-Slide-card {
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 743.9px) {}

.sect-Slide-card img {
  aspect-ratio: 1 / 1;
}

.sect-Slide-caption {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 16px;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-caption {
    padding-top: 12px;
  }
}

.sect-Slide-tit {
  color: #F6F2EC;
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-tit {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

/* カテゴリは複数付くので横並びにする。1つだけのときも見た目は変わらない */
.sect-Slide-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.sect-Slide-category {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-category {
    font-size: 10px;
  }
}

.sect-Slide-category[data-category]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category]:before {
  content: '';
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  vertical-align: middle;
  margin-right: 3px;
  border: 1px solid #3F4622;
}

@media screen and (max-width: 743.9px) {

  .sect-Slide-category[data-category]:before,
  .contents-area .contents-area-inner a .contents-thumb-category[data-category]:before {
    width: 6px;
    height: 6px;
  }
}

.sect-Slide-category[data-category="people"]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category="people"]:before {
  background: var(--people);
}

.sect-Slide-category[data-category="product"]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category="product"]:before {
  background: var(--product);
}

.sect-Slide-category[data-category="event"]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category="event"]:before {
  background: var(--event);
}

.sect-Slide-category[data-category="store"]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category="store"]:before {
  background: var(--store);
}

.sect-Slide-category[data-category="culture"]:before,
.contents-area .contents-area-inner a .contents-thumb-category[data-category="culture"]:before {
  background: var(--culture);
}

/* ページャー（ドット）: script.js がカード枚数分の button を生成する */
.sect-Slide-pager {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sect-Slide-dot {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sect-Slide-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #fff;
}

.sect-Slide-dot.is-current::before {
  background-color: #B8FF0D;
  border: none;
}

.sect-Slide-inner {
  margin-bottom: 100px;
}

@media screen and (max-width: 743.9px) {
  .sect-Slide-inner {
    margin-bottom: 60px;
  }
}

/* ---- 7-3 WHAT'S HAPPENING — カテゴリフィルタ・並び替え・もっと見る ---- */

/* ==== カテゴリフィルタ・並び替え・もっと見る ==== */
/* index_実装版.html のインラインから移設 */
.filter40 {
  padding: 0 20px;
  max-width: 1400px;
  display: flex;
  margin-bottom: 24px;
  justify-content: space-between;
}

@media screen and (max-width: 743.9px) {
  .filter40 {
    display: block;
    margin-bottom: 0;
  }
}

.chips40 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 18px;
  width: initial;
}

.chips40 button {
  flex: 0 0 auto;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 19px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-family: inherit;
  cursor: pointer;
  min-height: 37px;
  line-height: 1;
  display: flex;
  transition: background 0.25s, color 0.25s, transform 0.15s;
  align-items: center;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 743.9px) {
  .chips40 {
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .chips40 button {
    font-size: 14px;
    min-height: 28px;
    padding: 6px 10px;
  }
}

.chips40 button.on {
  background: #fff;
  color: #3F4622;
}

.chips40 button:hover {}

.chips40 button:active {
  transform: scale(0.96);
}

.chips40 button:before {
  content: '';
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 4px;
}

@media screen and (max-width: 743.9px) {
  .chips40 button:before {
    width: 4px;
    height: 4px;
  }
}

.chips40 button[data-f="people"]:before {
  background: var(--people);
}

.chips40 button[data-f="all"]:before {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #3F4622;
}

@media screen and (max-width: 743.9px) {
  .chips40 button[data-f="all"]:before {
    width: 6px;
    height: 6px;
  }
}

.chips40 button[data-f="product"]:before {
  background: var(--product);
}

.chips40 button[data-f="event"]:before {
  background: var(--event);
}

.chips40 button[data-f="store"]:before {
  background: var(--store);
}

.chips40 button[data-f="culture"]:before {
  background: var(--culture);
}

.sort40 {
  display: flex;
  width: initial;
}

@media screen and (max-width: 743.9px) {
  .sort40 {
    justify-content: flex-end;
  }
}


.sort40 button {
  font-size: 18px;
  color: #fff;
  background: url(../img/sort-icon.svg) 0 50% no-repeat;
  background-size: 24px 24px;
  border: none;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-family: inherit;
  padding: 0 0 0 28px;
}

@media screen and (max-width: 743.9px) {
  .sort40 button {
    font-size: 12px;
    padding: 12px 0 12px 28px;
  }
}

.more40 {
  text-align: center;
  padding: 60px 0 80px;
}

.more40 button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
  display: flex;
  width: 360px;
  height: 70px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  font-family: "din-2014", sans-serif;
  font-size: 22px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.more40 button:hover {
  background: #6b7151;
  color: #fff;
}

@media screen and (max-width: 743.9px) {
  .more40 button {
    height: 54px;
    width: calc(100% - 130px);
    margin: 0 65px;
  }
}

/* ---- 7-3 WHAT'S HAPPENING — 記事グリッド ---- */

.contents-area {
  color: #000;
}

/* 隣接セルのボーダー二重線を解消: セルは右下のみ、外枠は ul 側 */
.contents-area .contents-area-inner ul {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #fff;
}

.contents-area .contents-area-inner ul li {
  width: 33.333%;
  border-style: solid;
  border-color: #fff;
  border-width: 0 1px 1px 0;
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner ul li {
    width: 50%;
  }
}

.contents-area .contents-area-inner a {
  position: relative;
  display: block;
  padding: 35px;
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner a {
    padding: 15px;
  }
}

/* サムネ上の日付ラベル（例: 26.8.31 Mon）。上の余白はここが担当し、画像の margin-top は打ち消す */
.contents-area .contents-area-inner a .contents-thumb-date {
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
  font-family: "din-2014", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner a .contents-thumb-date {
    margin-bottom: 10px;
    font-size: 10px;
  }
}

.contents-area .contents-area-inner a .contents-thumb-img {
  border-radius: 5px;
  width: 100%;
  margin: 0 auto 16px;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner a .contents-thumb-img {
    margin: 0 auto 12px;
  }
}

.contents-area .contents-area-inner a .contents-thumb-tit {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1em;
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner a .contents-thumb-tit {
    font-size: 14px;
  }
}

/* カテゴリは複数付くので横並びにする。1つだけのときも見た目は変わらない */
.contents-area .contents-area-inner a .contents-thumb-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.contents-area .contents-area-inner a .contents-thumb-category {
  font-family: "din-2014", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  line-height: 100%;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 743.9px) {
  .contents-area .contents-area-inner a .contents-thumb-category {
    font-size: 12px;
  }
}

/* ==== 記事グリッド: index_実装版.html のインラインから移設 ==== */
/* 各行の右端は ul の右枠に任せる（PC 3カラム） */
.contents-area .contents-area-inner ul li:nth-child(3n) {
  border-right-width: 0;
}

@media screen and (max-width: 743.9px) {

  /* SP 2カラム: PC用の 3n を打ち消して 2n に付け替える */
  .contents-area .contents-area-inner ul li:nth-child(3n) {
    border-right-width: 1px;
  }

  .contents-area .contents-area-inner ul li:nth-child(2n) {
    border-right-width: 0;
  }
}

/* サムネのズーム＋値札タグホバー */
.contents-area .contents-area-inner ul li a {
  overflow: hidden;
}

.contents-area .contents-area-inner ul li a:hover .contents-thumb-img {
  transform: scale(1.025);
}

.contents-area .contents-area-inner ul li a:focus-visible {
  outline: 2px solid #e8c15a;
  outline-offset: -2px;
}

/* COMING SOON のダミーカード（最低表示件数を満たすための穴埋め） */
.contents-area .contents-area-inner ul li.is-coming {
  display: flex;
}

.contents-area .contents-area-inner ul li.is-coming span {
  display: block;
  margin: 15px;
  background: url(../img/thumbnail_comingsoon.png) center center no-repeat;
  background-size: contain;
  aspect-ratio: 1 / 1;
  width: calc(100% - 30px);
}

/* 楕円のシール。サイズ・位置・傾きはデザインカンプの実測値に合わせている
   （回転前 140×78px / 回転 15deg / カード右端から 12px・上から 48px に見える） */
.new40 {
  position: absolute;
  top: 63px;
  right: 13px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 58px;
  border-radius: 50%;
  background: #C7FD52;
  color: #171717;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
  transform: rotate(15deg);
}

@media screen and (max-width:743.9px) {
  .new40 {
    top: 20px;
    right: 4px;
    width: 58px;
    height: 32px;
    font-size: 14px;
  }
}

/* ---- 7-4 STORE ---- */

.sect-Store-slide {
  overflow: visible;
  padding: 18px 0 0;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  overflow: hidden;
}

@media screen and (max-width: 743.9px) {
  .sect-Store-slide {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.sect-Store-slide:active {
  cursor: grabbing;
}

.sect-Store-slideTrack {
  display: flex;
  gap: 15px;
  will-change: transform;
}

@media screen and (max-width: 743.9px) {
  .sect-Store-slideTrack {
    gap: 16px;
  }
}

.sect-Store-slideItem {
  flex: 0 0 calc((100% - 72px) / 5.7);
  min-width: 0;

}

@media screen and (max-width: 743.9px) {
  .sect-Store-slideItem {
    flex: 0 0 calc((100% - 12px) / 1.3);
  }
}

/* ==== STORE スライダーのページャー（バー＋前後ボタン） ==== */
.sect-Store-slideNav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 32px auto 0;
  padding: 0 20px;
  width: 470px;
}

/* バー: ループするので「残り」は表せない。つまみの幅は表示領域/1組の幅の
   THUMB_SCALE 倍、位置は1組の中で何番目が中央にあるか。JS が width と left を設定する。
   つまみは JS が前後に1周ぶんずつ複製し、右へ出た分が左から入ってくる。
   overflow: hidden はそのはみ出しを隠すためのもので、外すと複製が見えてしまう */
.sect-Store-slideBar {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  height: 4px;
  border-radius: 2px;
  background-color: #E5E2DC;
  overflow: hidden;
}

.sect-Store-slideBarThumb {
  position: absolute;
  top: 0;
  left: 0;
  /* JS が動く前の見た目だけ。実際の幅は initStoreSlider の THUMB_SCALE で決まる */
  width: 10%;
  height: 100%;
  border-radius: 2px;
  background-color: #B8FF0D;
  transition: left 0.4s ease, width 0.4s ease;
}

.sect-Store-slideArrows {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  gap: 10px;
}

.sect-Store-slideArrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1B2F39;
  border-radius: 50%;
  background-color: transparent;
  color: #1B2F39;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
}

.sect-Store-slideArrow svg {
  width: 18px;
  height: 6px;
  display: block;
}

.sect-Store-slideArrow:hover:not(:disabled) {
  background-color: #1B2F39;
  border-color: #1B2F39;
  color: #f1f0f0;
}

.sect-Store-slideArrow:disabled {
  opacity: 0.3;
  cursor: default;
}

@media screen and (max-width: 743.9px) {
  .sect-Store-slideNav {
    gap: 20px;
    margin-top: 24px;
    width: auto;
  }
}

.sect-Store-slideCard {
  margin-bottom: 15px;
}

.sect-Store-slideTit {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
  color: #171717;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: .2em;
}

@media screen and (max-width: 743.9px) {
  .sect-Store-slideTit {
    font-size: 14px;
  }
}

.sect-Store-slidePrice {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #171717;
}

.sect-Store-slidePrice.is-sale {
  color: #CE1032;
}

.sect-Store-slidePrice .discount-rate {
  font-size: 85%;
}

/* ---- 7-5 ランダムアニメ ---- */

.sec-anime-random {
  position: relative;
  padding: 32px 0px;
  overflow: hidden;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random {
    padding: 24px 0px;
  }
}

.sec-anime-random .sec-anime-random-inner {
  height: 200px;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random .sec-anime-random-inner {
    height: 160px;
  }
}

.sec-anime-random .sec-anime-random-inner .deco-txt {
  position: absolute;
  color: #6b7151;
  z-index: 1;
  left: 40px;
  top: 0;
  width: fit-content;
  font-family: "League Gothic", sans-serif;
  font-size: 24px;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random .sec-anime-random-inner .deco-txt {
    font-size: 16px;
    left: 20px;
  }
}

.sec-anime-random .sec-anime-random-inner .deco-txt-rb {
  bottom: 0px;
  right: 40px;
  left: unset;
  top: unset;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random .sec-anime-random-inner .deco-txt-rb {
    right: 20px;
  }
}

.sec-anime-random .sec-anime-random-inner .deco-txt-ja {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random .sec-anime-random-inner .deco-txt-ja {
    font-size: 10px;
  }
}

.sec-anime-random .sec-anime-random-inner .anime-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  z-index: 2;
}

@media screen and (max-width: 743.9px) {
  .sec-anime-random .sec-anime-random-inner .anime-logo {
    width: 148px;
  }
}

.sec-anime-random.bg-freaks .sec-anime-random-inner .deco-txt {
  color: #ffffff;
}

/* ============================================================
   8. 記事ページ（.pg-article）
   ============================================================ */

.pg-article .anime-marquee-single-bottom {
  background-color: #ffffff;
  padding: 10px 0px;
  border-top: 2px solid #6b7151;
  border-bottom: 2px solid #6b7151;
}

.pg-article .sec-thumb-kv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #202520;
}

.pg-article .sec-thumb-kv .anime-marquee {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 1;
}

.pg-article .sec-thumb-kv-bg {
  position: absolute;
  inset: 0;
}

.pg-article .sec-thumb-kv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: blur(4px);
}

.pg-article .sec-thumb-kv-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}

.pg-article .sec-thumb-kv-fg {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-article .sec-thumb-kv-fg-media {
  position: relative;
  width: auto;
  height: calc(100svh - 80px);
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-thumb-kv-fg-media {
    height: auto;
    width: calc(100% - 40px);
  }
}

.pg-article .sec-thumb-kv-fg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.pg-article .sec-article {
  background-color: #f1f0f0;
  padding: 0px 24px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article {
    padding: 0px 0px;
  }
}

.pg-article .af-deco {
  position: absolute;
  z-index: 1;
  width: 35%;
}

.pg-article .af-deco-top {
  top: 20%;
  left: -5%;
  transform: rotate(8deg);
}

.pg-article .af-deco-second {
  top: 45%;
  right: -5%;
  transform: rotate(-8deg);
}

.pg-article .af-deco-third {
  top: 70%;
  left: -5%;
  transform: rotate(8deg);
}

.pg-article .af-deco-forth {
  top: 90%;
  right: -5%;
}

.pg-article .sec-article-inner {
  max-width: 640px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-inner {
    padding: 40px 32px 56px;
  }
}

.pg-article .sec-article-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  background-color: #6b7151;
  font-size: 16px;
  margin-bottom: 24px;
  width: fit-content;
  color: #fff;
  padding: 12px 32px;
  border-radius: 120px;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-date {
    padding: 8px 16px;
  }
}

.pg-article .sec-article-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.4;
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid #6b7151;
  color: #6b7151;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-ttl {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.pg-article .sec-article-lead {
  font-family: "Noto Sans JP", sans-serif;
  color: #6b7151;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  margin: 0 0 24px;
}

.pg-article .sec-article-body h2 {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  padding: 4px 12px;
  background-color: #6b7151;
  margin-bottom: 24px;
}

.pg-article .sec-article-body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 1.5em;
}

.pg-article .sec-article-body p:last-child {
  margin-bottom: 0;
}

.pg-article .sec-article-body img {
  width: 100%;
  margin-bottom: 10px;
}

.pg-article .sec-article-body img:last-child {
  margin-bottom: 0;
}

.pg-article .sec-article-body .contents-img-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.pg-article .sec-article-body .contents-img-slide:last-child {
  margin-bottom: 0;
}

.pg-article .sec-article-body .contents-img-slide-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-body .contents-img-slide-track {
    gap: 12px;
  }
}

.pg-article .sec-article-body .contents-img-slide-item {
  -webkit-box-flex: 0;
  flex: 0 0 82%;
  width: 82%;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-body .contents-img-slide-item {
    -webkit-box-flex: 0;
    flex: 0 0 86%;
    width: 86%;
  }
}

.pg-article .sec-article-body .contents-img-slide-item img {
  width: 100%;
  display: block;
  margin-bottom: 0;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.pg-article .sec-article-body .contents-img-slide-prev,
.pg-article .sec-article-body .contents-img-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.pg-article .sec-article-body .contents-img-slide-prev::before,
.pg-article .sec-article-body .contents-img-slide-next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #6b7151;
  border-right: 2px solid #6b7151;
}

.pg-article .sec-article-body .contents-img-slide-prev:disabled,
.pg-article .sec-article-body .contents-img-slide-next:disabled {
  opacity: 0.3;
  cursor: default;
}

@media screen and (max-width: 743.9px) {

  .pg-article .sec-article-body .contents-img-slide-prev,
  .pg-article .sec-article-body .contents-img-slide-next {
    width: 28px;
    height: 28px;
  }
}

.pg-article .sec-article-body .contents-img-slide-prev {
  left: 12px;
}

.pg-article .sec-article-body .contents-img-slide-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.pg-article .sec-article-body .contents-img-slide-next {
  right: 12px;
}

.pg-article .sec-article-body .contents-img-slide-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

.pg-article .sec-article-body .contents-img-slide-dots {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.pg-article .sec-article-body .contents-img-slide-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.pg-article .sec-article-body .contents-img-slide-dot.is-active {
  background: #6b7151;
}

.pg-article .sec-article-body img+span {
  font-size: 12px;
  font-weight: bold;
  color: #858585;
  text-align: center;
  display: block;
  line-height: 1.4;
  margin-bottom: 10px;
}

.pg-article .sec-article-body p.credit {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  text-align: right;
  margin: 24px 0px 40px;
}

.pg-article .sec-article-body .info-area {
  position: relative;
  border: 3px solid #6b7151;
  color: #6b7151;
  border-radius: 8px;
  padding: 48px 24px 24px;
  margin-top: 100px;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-body .info-area {
    padding: 48px 16px 32px;
  }
}

.pg-article .sec-article-body .info-area .logo-deco {
  width: 80px;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.pg-article .sec-article-body .info-area .logo-deco img {
  border: 2px solid #6b7151;
  border-radius: 120px;
}

.pg-article .sec-article-body .info-area h3 {
  font-size: 24px;
  border-bottom: 1px solid #6b7151;
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

@media screen and (max-width: 743.9px) {
  .pg-article .sec-article-body .info-area h3 {
    text-align: center;
  }
}

.pg-article .sec-article-body .info-area p.info-txt {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.pg-article .sec-article-body .info-area .info-details p.info-details-txt {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}

.pg-article .sec-article-body .info-area .info-details p.info-details-txt:last-child {
  margin-bottom: 0;
}

.pg-article .sec-article-body-stmnt .contents-deco-img {
  position: absolute;
  top: 12%;
  width: 35%;
  left: -20%;
  z-index: -1;
  transform: rotate(8deg);
}

.pg-article .sec-article-body-stmnt .contents-deco-img img {
  border-radius: 8px;
}

.pg-article .sec-article-body-stmnt .contents-deco-img-second {
  top: 47%;
  left: unset;
  right: -15%;
  transform: rotate(-8deg);
}

.pg-article .sec-article-body-stmnt .contents-deco-img-second img {
  border-radius: 8px;
}

.pg-article .sec-article-body-stmnt .contents-deco-img-three {
  top: 70%;
}

.pg-article .sec-article-body-stmnt p {
  color: #ffffff;
  mix-blend-mode: difference;
  font-weight: bold;
}

/* ============================================================
   9. フッター
   ============================================================ */

.sect-Foot-foot {
  background: #303030;
  position: relative;
  z-index: 3;
}

.btt-btn {
  width: 80px;
  position: absolute;
  right: 40px;
  top: -40px;
}

@media screen and (max-width: 743.9px) {
  .btt-btn {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-container {
  padding: 50px 0;
  margin: 0 118px;
  width: auto;
  transition: margin 0.3s ease;
}

@media screen and (max-width: 1400px) {
  .footer-container {
    margin: 0 7%;
  }
}

@media screen and (max-width: 743.9px) {
  .footer-container {
    padding: 64px 0 80px;
    margin: auto;
  }
}

.sect-Foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner {
    gap: 80px;
    flex-direction: column;
  }
}

.sect-Foot-inner .logo-area {
  display: flex;
  gap: 32px;
  width: 100%;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area {
    justify-content: center;
  }
}

.sect-Foot-inner .logo-area ul {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area ul {
    display: block;
  }
}

.sect-Foot-inner .logo-area .af-logos {
  width: 30%;
  align-items: baseline;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area .af-logos {
    display: flex;
    width: 80%;
    margin: 0 auto 24px;
  }
}

.sect-Foot-inner .logo-area .freaks-other-logos {
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area .freaks-other-logos {
    width: 65%;
  }
}

.sect-Foot-inner .logo-area .freaks-other-logos li {}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area .freaks-other-logos li {
    margin-bottom: 16px;
  }
}

.sect-Foot-inner .logo-area .freaks-other-logos li a {
  max-width: 240px;
  display: flex;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  aspect-ratio: 240 / 75;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area .freaks-other-logos li a {
    max-width: none;
    width: 100%;
    height: 88px;
    aspect-ratio: initial;
  }
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area .freaks-other-logos li:last-child {
    margin-bottom: 0;
  }
}

.freaks-other-logos .daytonapark {
  height: 37%;
}

.freaks-other-logos .freakmag {
  height: 35%;
}

.freaks-other-logos .freaksvillage {
  height: 57%;
}

.sect-Foot-inner .logo-area-sns {
  width: fit-content;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area-sns {
    display: flex;
    width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}

.sect-Foot-inner .logo-area-sns p {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: #B8FF0D;
  line-height: 1;
  margin-right: 40px;
  display: block;
}

@media screen and (max-width: 1100px) {
  .sect-Foot-inner .logo-area-sns p {
    display: none;
  }
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area-sns p {
    display: block;
    font-size: 24px;
    margin-right: 0;
  }
}

.sect-Foot-inner .logo-area-sns ul {
  display: flex;
  gap: 23px;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area-sns ul {
    justify-content: center;
    gap: 30px;
  }
}

.sect-Foot-inner .logo-area-sns li {}

.sect-Foot-inner .logo-area-sns a {
  display: block;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 743.9px) {
  .sect-Foot-inner .logo-area-sns a {
    height: 60px;
    width: 60px;
  }
}

.sect-Foot-inner .logo-area-sns svg {
  width: 100%;
  height: 100%;
}

.footer-logo {
  height: 200px;
  padding: 50px 0 0;
  margin: 0 118px;
  display: flex;
  border-top: 1px solid #fff;
  justify-content: space-between;
  align-items: flex-end;
  width: auto;
  transition: margin 0.3s ease;
}

@media screen and (max-width: 1400px) {
  .footer-logo {
    margin: 0 7%;
  }
}

@media screen and (max-width: 743.9px) {
  .footer-logo {
    height: 100%;
    padding: 0;
    margin: auto;
    display: block;
    border-top: none;
  }
}

.footer-logo p {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin-bottom: 2em;
}

@media screen and (max-width: 743.9px) {
  .footer-logo p {
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .footer-logo span {
    display: block;
  }
}

.footer-logo p br {
  display: none;
}

.footer-logo svg {
  vertical-align: bottom;
}

.footer-logo svg {
  width: 230px;
  height: auto;
}

@media screen and (max-width: 743.9px) {
  .footer-logo svg {
    width: 100%;
  }
}