/*
Theme Name: Red Dot JP
Theme URI: https://cenco.design
Description: Red Dot Award 日本語版 WordPress テーマ（JIDA × Red Dot）
Version: 7.0
Author: cenco.design
Text Domain: reddot-jp
*/

/* ================================================================
   CSS Custom Properties – JIDA × Red Dot
   ================================================================ */
:root {
  --diac-clr-primary:           #e3000f;           /* Red Dot red */
  --diac-clr-secondary:         #000000;           /* 黒 */
  --diac-clr-tertiary:          #888888;
  --diac-clr-neutral-primary:   #ffffff;
  --diac-clr-neutral-secondary: #D1E4F3;
  --diac-clr-focus:             #FFD700;
  --diac-clr-highlight:         #3A87AD;           /* JIDA blue */

  --jida-bg:        #EEEDEC;                       /* JIDA ウォームグレー背景 */
  --jida-bg-dark:   #231815;                       /* JIDA チャコール */
  --jida-blue:      #3A87AD;                       /* JIDA アクセントブルー */
  --jida-blue-lt:   #C9EFFA;                       /* JIDA ライトブルー */
  --card-bg:        #ffffff;                       /* カード背景 */
  --card-shadow:    0 1px 4px rgba(35,24,21,0.07); /* カード影 */

  --header-height: 96px;    /* SP: stripe(3) + 1行(92) + border(1) */

  --font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  --container-max: 1280px;
  --transition: 0.25s ease;
}

@media (min-width: 1024px) {
  :root { --header-height: 110px; } /* stripe(3) + 1行(106) + border(1) */
}

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

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

body {
  font-family: var(--font-family);
  color: var(--diac-clr-secondary);
  background: var(--jida-bg);          /* JIDAウォームグレー背景 */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--diac-clr-primary); }

img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* ================================================================
   Container – JIDA準拠の余白設定
   JIDA: 1320px幅 / 内側12px padding / 外側86px autoマージン
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;   /* SP: 24px */
}

@media (min-width: 640px) {
  .container { padding-inline: 2.5rem; }   /* タブレット: 40px */
}

@media (min-width: 1024px) {
  .container { padding-inline: 3.5rem; }   /* デスクトップ: 56px（JIDAの86px auto相当） */
}

@media (min-width: 1440px) {
  .container { padding-inline: 5rem; }     /* 大画面: さらに余白を取る */
}

/* ================================================================
   PAGE HEADER – JIDA × Red Dot（スリム1行 / スクロールで縮小）
   ロゴ左端 … supported by JIDA 右端。スクロールでヘッダーが縮み、
   ロゴの「reddot」文字が切り抜きで隠れてボール（アイコン）だけ残る。
   ================================================================ */
.page-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--jida-bg);
  border-top: 3px solid var(--diac-clr-primary);   /* Red Dot 赤アクセント */
  border-bottom: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 1px 6px rgba(35,24,21,0.05);
  transition: box-shadow .25s ease;
}
.ph-row {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* ロゴ左 / 右グループ(JIDA+ハンバーガー) */
  height: 92px;
  padding: 0 1.25rem;
  transition: height .3s ease;
}
@media (min-width: 1024px) {
  .ph-row { height: 106px; padding: 0 2.5rem; }
}

/* 右グループ（JIDA ＋ ハンバーガー） */
.ph-right { display: flex; align-items: center; gap: 0.75rem; }

/* ロゴ（左端）— 通常は全体表示。スクロール時のみ切り抜いてボールだけ残す */
.ph-logo { display: flex; align-items: center; text-decoration: none; }
.ph-logo .logo,
.ph-logo .custom-logo-link {
  display: block;
  overflow: hidden;
  max-height: 400px;                  /* 通常: 切り抜かず全体表示（文字が切れない） */
  transition: max-height .3s ease;
}
.ph-logo .logo img,
.ph-logo .custom-logo { display: block; height: 82px; width: auto; }  /* スマホでも大きく */
@media (min-width: 1024px) {
  .ph-logo .logo img, .ph-logo .custom-logo { height: 94px; }
}

/* supported by JIDA（右端・黒・大きめ）— 文字とロゴの「下面」を揃える */
.ph-jida { display: flex; align-items: flex-end; gap: 10px; text-decoration: none; }
.ph-jida__supported {
  font-size: 12px;
  color: #111;                        /* グレー → 黒 */
  letter-spacing: 0.04em;
  text-transform: lowercase;
  line-height: 1;
  white-space: nowrap;
}
.ph-jida img { height: 32px; width: auto; display: block; }   /* JIDA を大きく */
/* スマホ: 「supported by」をJIDAロゴの上に積み、Red Dotロゴに重ならないようにする */
@media (max-width: 600px) {
  .ph-jida { flex-direction: column; align-items: flex-end; gap: 3px; }
  .ph-jida__supported { font-size: 10px; }
  .ph-jida img { height: 22px; }
}

/* スクロール時: ヘッダー縮小＋ロゴは「reddot文字」を完全に隠してボールだけ残す
   （max-height を小さくして文字部分を切り落とす。数値でボールの見え方を調整可） */
.page-header.is-scrolled .ph-row { height: 66px; }
.page-header.is-scrolled .ph-logo .logo,
.page-header.is-scrolled .ph-logo .custom-logo-link { max-height: 58px; }   /* SP: ボールのみ（文字を隠す） */
@media (min-width: 1024px) {
  .page-header.is-scrolled .ph-row { height: 76px; }
  .page-header.is-scrolled .ph-logo .logo,
  .page-header.is-scrolled .ph-logo .custom-logo-link { max-height: 66px; } /* PC: ボールのみ（文字を隠す） */
}
.page-header.is-scrolled { box-shadow: 0 2px 14px rgba(0,0,0,0.12); }

/* 左グループ（ハンバーガー＋ロゴ） */
.ph-left { display: flex; align-items: center; gap: 0.35rem; }

/* ハンバーガー（SPのみ表示） */
.ph-burger { display: none; }
@media (max-width: 991px) {
  .ph-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 9px 8px; margin-left: -4px;
    background: none; border: none; cursor: pointer;
  }
  .ph-burger span { display: block; height: 2px; width: 100%; background: var(--jida-bg-dark); border-radius: 2px; }
}

/* SP: JIDAロゴを小さく（SEで食い込まないように） */
@media (max-width: 600px) {
  .ph-jida img { height: 18px; }
  .ph-jida__supported { font-size: 9px; }
}
@media (max-width: 400px) {
  .ph-jida img { height: 15px; }
  .ph-logo .logo img, .ph-logo .custom-logo { height: 74px; }  /* SEでも大きめ */
}

/* モバイルメニュー（ハンバーガー内・スライドイン） */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;   /* 右側に配置 */
  width: min(84vw, 340px);
  background: #fff; z-index: 1200;
  transform: translateX(100%);                     /* 右からスライドイン */
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 0.55rem; right: 0.55rem;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: #333; z-index: 1;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__inner { padding-top: 3rem; }
.mobile-menu .pd-sidebar { box-shadow: none; border-top: none; }
.mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 1150; background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu-backdrop.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-backdrop { display: none; }
}
/* SP: 本文内サイドバーはハンバーガーに集約するため非表示 */
@media (max-width: 991px) {
  .pd-sidebar-col { display: none; }
}

/* ================================================================
   PAGE NAVIGATION (slide-in panel)
   ================================================================ */
.page-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background: var(--diac-clr-secondary);
  color: var(--diac-clr-neutral-primary);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .page-navigation { width: 420px; }
}

.page-navigation.is-open { transform: translateX(0); }

.page-navigation__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

/* Nav close button */
.nav-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--diac-clr-neutral-primary);
}

.nav-close-btn svg { width: 24px; height: 24px; }

/* Main menu */
.page-navigation__main-menu > ul { display: flex; flex-direction: column; }

.page-navigation__main-menu > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-navigation__main-menu .first-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--diac-clr-neutral-primary);
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.page-navigation__main-menu .first-level-link {
  display: block;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--diac-clr-neutral-primary);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-navigation__main-menu .first-level-link:hover,
.page-navigation__main-menu .first-level:hover {
  color: var(--diac-clr-primary);
}

.page-navigation__main-menu .children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0.75rem;
}

.page-navigation__main-menu > ul > li.is-open .children {
  max-height: 300px;
}

.page-navigation__main-menu .second-level {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.page-navigation__main-menu .second-level:hover {
  color: var(--diac-clr-neutral-primary);
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

li.is-open .accordion-arrow { transform: rotate(180deg); }

/* Service menu */
.page-navigation__service-menu {
  margin-top: auto;
  padding-top: 2.5rem;
}

.socialmedia-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.socialmedia-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition);
}

.socialmedia-nav a:hover {
  border-color: var(--diac-clr-neutral-primary);
  color: var(--diac-clr-neutral-primary);
}

.socialmedia-nav svg { width: 16px; height: 16px; fill: currentColor; }

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.service-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.service-links a:hover { color: rgba(255,255,255,0.8); }

/* Overlay backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 55svh;              /* JIDAのバナーに近い感覚 */
  min-height: 360px;
  max-height: 560px;
  overflow: hidden;
  margin-top: var(--header-height);
  margin-bottom: 0;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero__foreground {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

/* ボタンをさらに下げ、下マージン＝左右マージンに揃える */
.hero__foreground .container { padding-bottom: 1.5rem; }
@media (min-width: 640px)  { .hero__foreground .container { padding-bottom: 2.5rem; } }
@media (min-width: 1024px) { .hero__foreground .container { padding-bottom: 3.5rem; } }
@media (min-width: 1440px) { .hero__foreground .container { padding-bottom: 5rem; } }

.hero__content { width: 100%; }

/* KV上の見出し（Red Dot Design Award / Product Design / プロダクトデザイン部門） */
.hero__heading {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  margin-bottom: 1.5rem;
}
.hero__sup {
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-left: 4px;   /* 「R」を数px右へ寄せ、下の「P」の縦ラインと視覚的に揃える */
}
.hero__main {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.04;
  margin: 0.12em 0 0.1em;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.button.hero__cta {
  background: var(--diac-clr-primary);
  color: #fff;
  border: none;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
}
.button.hero__cta:hover { background: #bf000c; color: #fff; }

.hero__button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__button-wrapper .button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--diac-clr-primary);
  color: var(--diac-clr-neutral-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}

.hero__button-wrapper .button:hover {
  background: #bf000c;
  color: var(--diac-clr-neutral-primary);
}

.hero__button-wrapper--outline .button {
  background: transparent;
  border: 1.5px solid var(--diac-clr-neutral-primary);
  color: var(--diac-clr-neutral-primary);
}

.hero__button-wrapper--outline .button:hover {
  background: var(--diac-clr-neutral-primary);
  color: var(--diac-clr-secondary);
  border-color: var(--diac-clr-neutral-primary);
}

@media (min-width: 768px) {
  .hero__button-wrapper .button { font-size: 0.9rem; padding: 0.9rem 2rem; }
}

/* ================================================================
   AWARD SELECTION (3-column section)
   JIDA準拠: タイル間に16pxのgapでグレー背景を見せる
   ================================================================ */
.award-selection {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;                 /* Red Dot のように要素間を広く */
  background: var(--jida-bg); /* gapから背景色を見せる */
  padding: 3.5rem 1.25rem;   /* 上下に余白を取り、開いた印象に */
}

@media (min-width: 768px) {
  .award-selection {
    flex-direction: row;
    gap: 22px;               /* タイル間を広げて余白を見せる */
    padding: 5.5rem 3.5rem;
  }
}

@media (min-width: 1280px) {
  .award-selection { padding: 6rem 5rem; }
}

.award-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.award {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media (min-width: 768px) {
  .award {
    aspect-ratio: auto;
    min-height: 460px;
    height: 58vh;
    max-height: 620px;
  }
}

/* Per-column background images */
.award-col:nth-child(1) .award {
  background-image: url('https://www.red-dot.org/fileadmin/bilder/Site_Award/Product_Design_1.jpg');
}

.award-col:nth-child(2) .award {
  background-image: url('https://www.red-dot.org/fileadmin/_processed_/b/a/csm_index__3__d9ba8093c5.jpg');
  background-position: center top;
}

.award-col:nth-child(3) .award {
  background-image: url('https://www.red-dot.org/fileadmin/bilder/Site_Award/Brands___Communication_Design_11.jpg');
}

/* Dark gradient overlay */
.award::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.2)  55%,
    rgba(0,0,0,0.0)  100%
  );
  z-index: 0;
  transition: background 0.4s ease;
}

.award:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.08) 100%
  );
}

.award .foreground {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .award .foreground { padding: 3rem 2.5rem; }   /* JIDAのタイル内余白に合わせる */
}

.award .button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.award-button {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;              /* JIDAタイルスタイル スペーシング */
  text-transform: uppercase;
  color: var(--diac-clr-neutral-primary);
  line-height: 1.15;
}

@media (min-width: 768px) { .award-button { font-size: 1.7rem; } }

.award-subline {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
}

/* Submenu */
.award .submenu {
  margin-top: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.award:hover .submenu { max-height: 300px; }

.award .submenu ul { display: flex; flex-direction: column; gap: 0.35rem; }

.award .submenu ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 0.15rem 0;
  transition: color var(--transition);
}

.award .submenu ul li a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.award .submenu ul li a:hover { color: var(--diac-clr-neutral-primary); }

.award .submenu ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   JIDA × RED DOT PARTNERSHIP BAR
   ================================================================ */
.partnership-bar {
  background: var(--jida-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.partnership-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;     /* ロゴ左 → 文字を左から流し込む */
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding-block: 1.1rem;
  padding-inline: 1.5rem;          /* .container と同じ左右余白（開始位置を揃える） */
  max-width: var(--container-max);
  margin-inline: auto;
}
@media (min-width: 640px)  { .partnership-bar__inner { padding-inline: 2.5rem; } }
@media (min-width: 1024px) { .partnership-bar__inner { padding-inline: 3.5rem; } }
@media (min-width: 1440px) { .partnership-bar__inner { padding-inline: 5rem;   } }

.partnership-bar__label {
  font-size: 0.72rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.08em;
}

.partnership-bar__divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.partnership-bar__jida {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.partnership-bar__jida:hover { opacity: 1; }

.partnership-bar__logo {
  height: 16px;                 /* 少し小さく */
  width: auto;
  padding-bottom: 4px;         /* 画像下に余白（下に重心があるロゴを持ち上げ、文字の下線と揃える） */
  box-sizing: content-box;
  /* 明るい背景なのでinvert不要 */
}

.partnership-bar__text {
  font-size: 0.78rem;
  font-weight: 500;
  color: #2b2b2b;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}
/* LOU締結プレスリリースのテキストリンク（赤・下線） */
.partnership-bar__prlink {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--diac-clr-primary);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.partnership-bar__prlink:hover { text-decoration: none; }

@media (max-width: 480px) {
  .partnership-bar__divider { display: none; }
  .partnership-bar__text, .partnership-bar__prlink { font-size: 0.72rem; }
}

/* ================================================================
   PAGE FOOTER
   ================================================================ */
.page-footer {
  background: #000;                       /* JIDAフッターと同じ純粋な黒 */
  color: var(--diac-clr-neutral-primary);
  padding-block: 4rem 3rem;
  border-top: 4px solid var(--diac-clr-primary);
}

/* Award / Winners / Magazine（フッター上部） */
.footer-award-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.footer-award-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-award-nav a:hover { color: var(--diac-clr-primary); }

/* フッターリンクの外部サイト注記 */
.footer-external-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  margin: 0 0 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.page-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5rem;                         /* フッター内のカラム間を広く */
  margin-bottom: 4rem;
}

.page-footer .col-md-6 { flex: 1 1 240px; }

/* Footer nav */
.page-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 3rem;
}

.page-footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-footer-nav ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.page-footer-nav ul li a:hover { color: var(--diac-clr-neutral-primary); }

/* Newsletter */
.newsletter-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--diac-clr-neutral-primary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.newsletter-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.newsletter-links li a {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.newsletter-links li a:hover { color: var(--diac-clr-neutral-primary); }

/* Social media icons */
.socialmedia ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.socialmedia ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  transition: border-color var(--transition), color var(--transition);
}

.socialmedia ul li a:hover {
  border-color: var(--diac-clr-neutral-primary);
  color: var(--diac-clr-neutral-primary);
}

.socialmedia svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.jida-note {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

.copyright {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* ================================================================
   AWARD PAGE (page-award.php)
   ================================================================ */
.award-page { padding-top: var(--header-height); }

.award-page__hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}

.award-page__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--diac-clr-neutral-primary);
  padding: 2rem;
}

.award-page__hero-content .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.award-page__hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Award cards */
.award-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .award-cards { grid-template-columns: repeat(3, 1fr); }
}

.award-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--diac-clr-neutral-primary);
  min-height: 360px;
}

@media (min-width: 768px) { .award-card { min-height: 480px; } }

.award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background var(--transition);
}

.award-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.05) 100%);
}

.award-card__body {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
}

.award-card__body h2 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.award-card__body p {
  font-size: 0.78rem;
  opacity: 0.65;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.award-card:nth-child(1) {
  background-image: url('https://www.red-dot.org/fileadmin/bilder/Site_Award/Product_Design_1.jpg');
}
.award-card:nth-child(2) {
  background-image: url('https://www.red-dot.org/fileadmin/bilder/Site_Award/Brands___Communication_Design_11.jpg');
}
.award-card:nth-child(3) {
  background-image: url('https://www.red-dot.org/fileadmin/bilder/Site_DC/DC_Participate/categories/DC_Concept/corrections_24/2025_AwardsHM3.jpg');
}

/* Award intro */
.award-intro {
  max-width: 800px;
  margin: 6rem auto;                      /* JIDA: 大きな上下余白 */
  padding-inline: 2rem;
  text-align: center;
}

.award-intro .kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--diac-clr-tertiary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.award-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.award-intro p {
  font-size: 0.975rem;
  font-weight: 400;
  color: #333;
  line-height: 1.85;
}

/* ================================================================
   AWARD SUB-PAGE SHARED STYLES
   ================================================================ */
.award-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
}

.award-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.award-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.award-hero .container { position: relative; z-index: 1; }

.award-hero__content { padding-bottom: 3rem; }

.award-hero__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.award-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--diac-clr-neutral-primary);
}

/* Sub-breadcrumb nav */
.award-breadcrumb {
  background: var(--diac-clr-secondary);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.award-breadcrumb__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.award-breadcrumb__inner::-webkit-scrollbar { display: none; }

.award-breadcrumb__item {
  display: block;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.award-breadcrumb__item:hover,
.award-breadcrumb__item.active {
  color: var(--diac-clr-neutral-primary);
  border-bottom-color: var(--diac-clr-primary);
}

/* Section padding */
.section-pad { padding-block: 5rem; }

/* Section header */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-header__kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--diac-clr-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-header__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--diac-clr-primary);
  margin: 1.5rem 0;
}

/* Cat intro */
.cat-intro { background: var(--card-bg); }

.cat-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cat-intro__inner { grid-template-columns: 1fr 1fr; }
}

.cat-intro__kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--diac-clr-tertiary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.cat-intro__heading {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.cat-intro__body {
  font-size: 0.925rem;
  font-weight: 400;
  line-height: 1.85;
  color: #333;
  margin-top: 1rem;
}

.cat-intro__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Button variants */
.btn-red {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.75rem 1.75rem;
  background: var(--diac-clr-primary);
  color: var(--diac-clr-neutral-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}

.btn-red:hover { background: #bf000c; color: var(--diac-clr-neutral-primary); }

.btn-outline-white {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--diac-clr-neutral-primary);
  color: var(--diac-clr-neutral-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-white:hover {
  background: var(--diac-clr-neutral-primary);
  color: var(--diac-clr-secondary);
}

/* Dates */
.cat-dates { background: var(--jida-bg); }

.dates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .dates-grid { grid-template-columns: repeat(3, 1fr); }
}

.date-card {
  background: var(--diac-clr-neutral-primary);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--diac-clr-primary);
}

.date-card__phase {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--diac-clr-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.date-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.date-card__date {
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
}

/* Categories list */
.categories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

@media (min-width: 640px) {
  .categories-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .categories-list { grid-template-columns: repeat(4, 1fr); }
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: background var(--transition);
}

.cat-item:hover { background: #fafafa; }

.cat-item__num {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--diac-clr-primary);
  min-width: 22px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.cat-item__name {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--diac-clr-secondary);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Jury */
.jury-section { background: var(--diac-clr-secondary); }

.jury-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .jury-grid { grid-template-columns: repeat(4, 1fr); }
}

.jury-card { text-align: center; }

.jury-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--diac-clr-neutral-primary);
  margin: 0 auto 0.9rem;
}

.jury-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--diac-clr-neutral-primary);
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.jury-card__role {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* CTA */
.award-contact {
  background: var(--diac-clr-primary);
  text-align: center;
}

.award-contact__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--diac-clr-neutral-primary);
  margin-bottom: 1rem;
}

.award-contact__body {
  font-size: 0.925rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ================================================================
   GENERIC PAGE FALLBACK
   ================================================================ */
.site-main {
  margin-top: var(--header-height);
  min-height: 60vh;
  padding-block: clamp(4rem, 8vw, 8rem);
}

/* ================================================================
   UTILITIES
   ================================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ================================================================
   HERO STAGE (picture-based: /award, /pd)
   ================================================================ */
.hero-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-stage .background {
  width: 100%;
  display: block;
  line-height: 0;
}

.hero-stage .background picture,
.hero-stage .background img {
  width: 100%;
  height: clamp(260px, 35vw, 680px);
  object-fit: cover;
  display: block;
}

/* 下層ページ: KVの縦幅を小さく */
.hero-stage--compact .background picture,
.hero-stage--compact .background img {
  height: clamp(160px, 20vw, 340px);
}

/* KVスライドショー（カテゴリー / 応募方法） */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: clamp(160px, 20vw, 340px);
}
.hero-slideshow__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slideshow__img.is-active { opacity: 1; }

.hero-stage .foreground {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}

.hero-stage--color-white .foreground { color: #fff; }

.hero-stage .herotext {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* 上段: Red Dot Design Award（小さく） */
.hero-stage .herotext__sup {
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* 主見出し: Product Design（大きく） */
.hero-stage .herotext__main {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0.15em 0 0.1em;
  text-transform: none;
  line-height: 1.05;
}

/* 下層ページのKV見出し（＝ページタイトル）は一回り小さく */
.hero-stage--compact .herotext__main {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin: 0.1em 0 0;
}

/* 下段: プロダクトデザイン部門（小さく） */
.hero-stage .herotext__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ================================================================
   PAGE MAIN (sections)
   ================================================================ */
.page-main {
  padding-bottom: clamp(4rem, 8vw, 8rem);   /* JIDAの大きな下余白 */
  background: var(--jida-bg);
}

.section.default {
  padding-inline: 0;
  background: var(--jida-bg);
}

/* セクション間の垂直リズム – JIDA準拠の大きな余白 */
.section-pad {
  padding-block: clamp(4rem, 7vw, 7rem);    /* JIDA: セクション間87px相当 */
}

.spacing-top-25 {
  padding-top: clamp(2rem, 4vw, 4rem);
}

/* ================================================================
   COMPETITION CARDS (/award 3-col grid)
   ================================================================ */
.competition-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;                              /* JIDA: 16px → 2rem（余裕あるgap） */
  margin-top: 2.5rem;
}

.competition-cards .col-md-4 {
  flex: 1 1 280px;
}

.competition-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);          /* ホワイトカード on グレー */
  border: 1px solid rgba(35,24,21,0.08);
  box-shadow: var(--card-shadow);
}

.competition-card__image {
  line-height: 0;
  overflow: hidden;
}

.competition-card__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.competition-card:hover .competition-card__image img {
  transform: scale(1.04);
}

.competition-card__body {
  padding: 2rem 1.75rem;                  /* JIDAのカード内padding */
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.competition-card__body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.competition-card__sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--diac-clr-tertiary);
  letter-spacing: 0.04em;
  margin-top: -0.5rem;
}

.competition-card__body p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
  flex: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--diac-clr-primary);
  margin-top: auto;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.link-arrow:hover { opacity: 0.8; }

/* ================================================================
   BOX / CTA BLOCK
   ================================================================ */
.box.box__content {
  background: #f5f5f5;
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.box.box__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.box.box__content p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

/* ================================================================
   BUTTON VARIANTS
   ================================================================ */
.button--outline {
  background: transparent;
  border: 2px solid var(--diac-clr-primary);
  color: var(--diac-clr-primary);
}

.button--outline:hover {
  background: var(--diac-clr-primary);
  color: #fff;
}

/* ================================================================
   PD PAGE – 2-column layout (content + sidebar)
   Matches red-dot.org/pd: col-lg-8 (content) + col-lg-4 (sticky sidebar)
   ================================================================ */
.pd-page .section.default {
  padding-top: clamp(3rem, 5vw, 5rem);    /* JIDA: セクション上部に余裕 */
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.pd-row {
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 3rem);          /* 2カラム間のgap（JIDAの16px→より広く） */
}

/* Content column – white card on gray */
.pd-content-col {
  padding-top: 0;
  padding-bottom: 0;
}

.pd-page-content {
  background: var(--card-bg);
  padding: clamp(2rem, 4vw, 3.5rem);      /* JIDAの余裕あるカード内padding */
  box-shadow: var(--card-shadow);
}

.pd-intro h2,
.pd-section h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;                 /* 見出し下の余白を増やす */
  line-height: 1.4;
}

.pd-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);   /* セクション内の区切り余白 */
  border-top: 1px solid #e0e0e0;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.pd-intro p,
.pd-section p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.9;                       /* JIDAの余裕ある行間 */
  margin-bottom: 1.25rem;
}

/* 本文カード内のリストは「・」「番号」を表示（箇条書きを分かりやすく） */
.pd-page-content ul,
.pd-page-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5em;
}
.pd-page-content ul { list-style: disc; }
.pd-page-content ol { list-style: decimal; }
.pd-page-content li {
  font-size: 0.95rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.9;
  margin-bottom: 0.35rem;
}
.pd-page-content li::marker { color: var(--diac-clr-primary); }

/* 画像を16:9で中央トリミング（Design Team of the Year のエプソン画像など） */
.pd-page-content img.rd-crop-169 {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}
/* 本文内 横並び2枚（ネットワーキング/展示会など） */
.pd-page-content .rd-imgpair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.pd-page-content .rd-imgpair img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px; aspect-ratio: 3 / 2; }
@media (max-width: 520px) { .pd-page-content .rd-imgpair { grid-template-columns: 1fr; } }

/* 横スクロールのスライド（デザイン年鑑など） */
.pd-page-content .rd-slides {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 1.5rem;
  padding-bottom: 0.5rem;
}
.pd-page-content .rd-slides img {
  height: clamp(160px, 26vw, 260px);
  width: auto;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 2px;
  display: block;
}
/* 見出しの左に置く画像（2つの賞の種類のラベル） */
.pd-page-content .rd-headimg {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 2.5rem 0 0.5rem;
}
.pd-page-content .rd-headimg > img { flex: 0 0 auto; width: clamp(90px, 16vw, 150px); height: auto; display: block; }
.pd-page-content .rd-headimg > div { flex: 1 1 auto; }
.pd-page-content .rd-headimg h4 { margin-top: 0 !important; }
@media (max-width: 520px) { .pd-page-content .rd-headimg { flex-direction: column; gap: 0.6rem; } }

/* メタカテゴリー見出し（サステナブル/革新的）— 赤いあしらいは付けず通常見出し */
.pd-page-content h4.rd-metacat {
  display: block;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
}

/* 本文内の表（登録区分など）は行間・セル余白を広めに */
.pd-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2.25rem;
}
.pd-page-content th,
.pd-page-content td {
  padding: 1.1rem 1.2rem;                 /* 行の間隔を広げる */
  border-bottom: 1px solid #e6e3e0;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.6;
  vertical-align: top;
}
.pd-page-content thead th {
  font-weight: 700;
  background: #f7f5f3;
  border-bottom: 2px solid #ddd8d3;
}
.pd-page-content tbody tr:hover { background: #faf9f8; }

/* 文中リンク・テキストリンクは下線（ボタンはインラインの text-decoration:none で除外） */
.pd-page-content a,
.front-overview__card a {
  color: var(--diac-clr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pd-page-content a:hover,
.front-overview__card a:hover { text-decoration: none; }
/* 画像リンクには下線を出さない */
.pd-page-content a:has(> img),
.front-overview__card a:has(> img) { text-decoration: none; }

/* ================================================================
   本文カードの見出し・本文の余白
   各 <h3> をセクションの起点として大きめの余白＋区切り線で明確化
   （プロダクトデザイン各ページ・トップ概要に共通適用）
   ================================================================ */
.pd-page-content > h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);      /* 見出しを一回り小さく */
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin: 0 0 1.75rem;
}
.pd-page-content > h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);  /* 見出しを一回り小さく */
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: clamp(3rem, 5vw, 4.5rem);     /* セクション間を大きく空ける */
  margin-bottom: 1.4rem;                     /* 見出しと本文の間隔 */
  padding-top: clamp(2rem, 3.5vw, 3rem);     /* 区切り線からの余白 */
  border-top: 2px solid #e6e3e0;             /* セクションの区切り線 */
}
.pd-page-content > h4 {
  font-size: clamp(1rem, 1.7vw, 1.2rem);     /* 見出しを一回り小さく */
  font-weight: 700;
  line-height: 1.55;
  margin: 2.5rem 0 1rem;
}
/* 先頭・H2直後のH3は区切り線/余白を付けない */
.pd-page-content > h2 + h3,
.pd-page-content > h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.pd-page-content > p {
  font-size: 0.97rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 2;
  margin-bottom: 1.5rem;                     /* 段落間をゆったり */
}

/* ================================================================
   FRONT OVERVIEW – トップに掲載するプロダクトデザイン概要
   ================================================================ */
.front-overview {
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 6rem);
  background: var(--jida-bg);
}
.front-overview__card {
  max-width: 920px;
  margin-inline: auto;
}

/* ================================================================
   FRONT NEWS – Instagram（最新4件）
   ================================================================ */
.front-news {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.front-news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.front-news__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.front-news__ig {
  width: 0.95em;
  height: 0.95em;
  color: #111;             /* 黒・ライン（アウトライン） */
  flex-shrink: 0;
}
.front-news__more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--diac-clr-primary);
  text-decoration: none;
}
.front-news__more:hover { text-decoration: underline; }
.front-news__feed img,
.front-news__feed iframe { max-width: 100%; }

/* 最新のお知らせ（投稿日 + タイトル） */
.front-news__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid #e6e6e6;
}
.front-news__item {
  border-bottom: 1px solid #e6e6e6;
}
.front-news__link {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.95rem 0.25rem;
  text-decoration: none;
  color: #222;
  transition: color 0.15s;
}
.front-news__link:hover { color: var(--diac-clr-primary); }
.front-news__link:hover .front-news__headline { text-decoration: underline; text-underline-offset: 2px; }
/* リンク未設定のお知らせ（クリック不可・ホバー無効） */
.front-news__link--plain { cursor: default; color: #222; }
.front-news__link--plain:hover { color: #222; }
.front-news__link--plain:hover .front-news__headline { text-decoration: none; }
.front-news__date {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  min-width: 5.5em;
}
.front-news__headline {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .front-news__link { flex-direction: column; gap: 0.15rem; }
  .front-news__date { min-width: 0; }
}
/* SnapWidget（4件横並び）をレスポンシブに（比率を保って縮小） */
.front-news__snap {
  position: relative;
  width: 100%;
  max-width: 1032px;
  margin-inline: auto;
  aspect-ratio: 1032 / 258;
}
/* スマホ用（2列×2行の正方形ウィジェット） */
.front-news__snap--square {
  max-width: 516px;
  aspect-ratio: 1 / 1;
}
.front-news__snap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
/* PC用／スマホ用（2列）の切替。モバイル用が設定されている時のみ切り替える */
.front-news__mobile { display: none; }
@media (max-width: 640px) {
  .front-news__feed.has-mobile .front-news__desktop { display: none; }
  .front-news__feed.has-mobile .front-news__mobile { display: block; }
}
.front-news__placeholder {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #666;
  background: #f7f5f3;
  border-radius: 4px;
  line-height: 1.9;
}
.front-news__placeholder a { color: var(--diac-clr-primary); font-weight: 700; }

/* ================================================================
   カテゴリー カードグリッド（サムネ＋テキスト / リキッド / 展開）
   ================================================================ */
.rd-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
  margin: 1.75rem 0 1rem;
}
.rd-cat {
  background: #fff;
  border: 1px solid #e6e3e0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  /* カード同士を同じ高さにし、＋アイコンを枠右下でそろえる */
  display: flex;
  flex-direction: column;
}
.rd-cat:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.10); transform: translateY(-2px); }
.rd-cat[open] { box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.rd-cat__summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  /* サマリーがカード高さいっぱいに広がる → ＋が枠右下で一直線に揃う */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.rd-cat__summary::-webkit-details-marker { display: none; }
.rd-cat__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f3f1ef;
  flex: 0 0 auto;
}
.rd-cat__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.7rem 2.7rem 2.6rem 0.85rem;   /* 右下に＋アイコン分の余白 */
  flex: 1 1 auto;                            /* 残りを埋めて＋を枠の下端へ */
}
.rd-cat__en { font-size: 0.92rem; font-weight: 700; line-height: 1.3; color: #1a1a1a; }
.rd-cat__jp { font-size: 0.72rem; color: #888; letter-spacing: 0.02em; }
/* 展開ヒント（＋）— カード枠の右下に固定 */
.rd-cat__summary::after {
  content: '+';
  position: absolute;
  right: 0.7rem; bottom: 0.7rem;
  width: 1.5em; height: 1.5em;
  line-height: 1.4em; text-align: center;
  font-size: 0.95rem; color: var(--diac-clr-primary);
  border: 1px solid var(--diac-clr-primary);
  border-radius: 50%;
  background: #fff;
}
.rd-cat[open] .rd-cat__summary::after { content: '−'; }
.rd-cat__detail {
  padding: 0.7rem 0.85rem 0.9rem;
  margin-top: 0;
  font-size: 0.75rem;
  line-height: 1.75;
  color: #333;
  border-top: 1px solid #f0eeec;
}

/* Sidebar column */
.pd-sidebar-col {
  padding-top: 0;
}

.pd-sidebar {
  background: var(--card-bg);             /* ホワイトカード */
  border-top: 3px solid var(--diac-clr-primary);
  box-shadow: var(--card-shadow);
  padding-bottom: 1.5rem;                 /* カード下部の余白（margin collapse対策も兼ねる） */
}

/* Sticky behaviour – JS-enhanced on desktop */
@media (min-width: 992px) {
  .pd-sidebar.is-sticky {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
  }
}

.pd-sidebar__title {
  display: block;
  padding: 1.5rem 1.75rem 1.25rem;        /* 余裕ある上下padding */
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--diac-clr-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e0e0;
}

.pd-sidebar__title:hover { color: var(--diac-clr-primary); }

.pd-sidebar__nav ul {
  list-style: none;
  padding: 0.5rem 0;                      /* 上下に小さな余白 */
  margin: 0;
}

.pd-sidebar__nav ul li {
  border-bottom: 1px solid #ebebeb;
}

.pd-sidebar__nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;                  /* JIDAタイルの8px padding → 余裕ある1rem */
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  transition: background 0.15s, color 0.15s;
  line-height: 1.5;
}

/* 「Red Dot 最新情報を受け取る」など赤字アクセント */
.pd-sidebar__nav ul li a.is-accent {
  color: var(--diac-clr-primary);
  font-weight: 700;
}
.pd-sidebar__nav ul li a.is-accent .external-icon { opacity: 0.9; }

.pd-sidebar__nav ul li a:hover {
  background: var(--jida-bg);             /* ホバーはJIDAグレー */
  color: var(--diac-clr-primary);
}

.pd-sidebar__nav ul li a.is-active {
  color: var(--diac-clr-primary);
  font-weight: 500;
  background: #fff;
  border-left: 3px solid var(--diac-clr-primary);
  padding-left: calc(1.75rem - 3px);
}

.external-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.5;
}

.pd-sidebar__login {
  display: block;
  margin: 1.5rem 1.75rem 0;               /* 下marginはカードのpadding-bottomに委譲 */
  padding: 0.875rem 1.25rem;              /* 少し大きめのCTAボタン */
  background: #fff;                         /* 白地 */
  color: var(--diac-clr-primary);          /* 赤文字 */
  border: 2px solid var(--diac-clr-primary); /* 赤枠 */
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.pd-sidebar__login:hover {
  background: var(--diac-clr-primary);
  color: #fff;
}

/* ================================================================
   CATEGORIES GRID (aspect ratio + overlay z-index)
   ================================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-tile__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-tile__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  z-index: 1;
}

.category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.category-tile:hover .category-tile__image-wrap img {
  transform: scale(1.06);
}

.category-tile:hover .category-tile__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-tile__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.category-tile__ja {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.category-tile__en {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ================================================================
   FEES TABLE (pixel-precise: border-collapse, white-space: nowrap)
   ================================================================ */
.fees-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 1.5rem;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.fees-table th,
.fees-table td {
  padding: 10px 14px;
  border: 1px solid #d0d0d0;
  vertical-align: top;
  text-align: left;
}

.fees-table th {
  background: var(--jida-bg-dark);    /* JIDAチャコール */
  color: var(--diac-clr-neutral-primary);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.fees-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.fees-table tbody tr:hover td {
  background: #f0f0f0;
}

.fees-table .nowrap {
  white-space: nowrap;
}

.fees-table .text-right {
  text-align: right;
}

.fees-table .row-highlight td {
  background: #fff8f0;
  border-color: #e8c880;
}

.fees-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--diac-clr-tertiary);
  margin-top: 0.75rem;
}

.fees-note a {
  color: var(--diac-clr-primary);
  text-decoration: underline;
}

/* ================================================================
   BENEFITS GRID
   ================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;                            /* JIDA: ゆとりある要素間隔 */
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;                              /* アイテム内の要素間も余裕を */
}

.benefit-item__icon svg {
  width: 48px;
  height: 48px;
  color: var(--diac-clr-primary);
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 500;
}

.benefit-item p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
}

/* ================================================================
   DISTINCTION CARDS
   ================================================================ */
.distinction-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;                      /* 上下の余白を増やす */
  border-bottom: 1px solid #e0e0e0;
}

.distinction-card:first-child { border-top: 1px solid #e8e8e8; }

.distinction-card__badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.distinction-card__badge svg {
  width: 36px;
  height: 36px;
}

.distinction-card__body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.distinction-card__en {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--diac-clr-tertiary);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.distinction-card__body p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.75;
}

/* ================================================================
   STEPS LIST (participate page)
   ================================================================ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: flex-start;
}

.step-item:first-child { border-top: 1px solid #e8e8e8; }

.step-item__number {
  font-size: 2rem;
  font-weight: 400;
  color: var(--diac-clr-primary);
  line-height: 1;
  min-width: 3rem;
  flex-shrink: 0;
}

.step-item__body h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-item__body p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.75;
}

/* ================================================================
   CRITERIA GRID (jury page)
   ================================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}

.criteria-item {
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--diac-clr-primary);
}

.criteria-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.criteria-item p {
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  line-height: 1.65;
}

/* ================================================================
   FAQ (accordion)
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-child { border-top: 1px solid #e8e8e8; }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--diac-clr-primary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding-bottom: 1.25rem;
  padding-right: 2rem;
}

.faq-item__answer p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
}

/* ================================================================
   CONTENT LIST (generic <ul> with disc styling)
   ================================================================ */
.content-list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.content-list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.7;
  list-style: disc;
}

/* ================================================================
   GRID HELPERS (col-md-X, col-lg-X with order)
   ================================================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

.row > [class*="col-"] {
  padding-inline: 0.75rem;
  width: 100%;
}

/* md breakpoint (≥768px) */
@media (min-width: 768px) {
  .col-md-4  { width: 33.333%; }
  .col-md-5  { width: 41.667%; }
  .col-md-6  { width: 50%; }
  .col-md-8  { width: 66.667%; }
  .col-md-10 { width: 83.333%; }
  .col-md-12 { width: 100%; }
  .col-md-offset-1 { margin-left: 8.333%; }
  .col-md-offset-2 { margin-left: 16.667%; }
}

/* lg breakpoint (≥992px) – used for pd sidebar layout */
@media (min-width: 992px) {
  .col-lg-4  { width: 33.333%; }
  .col-lg-8  { width: 66.667%; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
}

/* ================================================================
   PD page – force 2-column (content left / sidebar right) on desktop
   ================================================================ */
@media (min-width: 992px) {
  .pd-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2.5rem;
    align-items: start;
    margin-inline: 0;
  }
  .pd-row .pd-content-col,
  .pd-row .pd-sidebar-col {
    width: 100% !important;
    padding-inline: 0;
  }
  .pd-row .pd-content-col { grid-column: 1; }
  .pd-row .pd-sidebar-col { grid-column: 2; }
}

/* ================================================================
   COMPETITION GRID (/award – 3 items, portrait card style)
   ================================================================ */
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  padding-inline: 0.75rem;
}

.competition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .competition-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.competition-item {
  display: flex;
  flex-direction: column;
}

.competition-item__image-link {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.competition-item__image-link picture,
.competition-item__image-link img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.competition-item:hover .competition-item__image-link img {
  transform: scale(1.04);
}

.competition-item__body {
  padding: 1.25rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.competition-item__body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

.competition-item__body h3:hover,
.competition-item__body a:hover h3 {
  color: var(--diac-clr-primary);
}

.competition-item__body p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
}

.competition-item__status {
  font-size: 0.8rem !important;
  color: var(--diac-clr-tertiary) !important;
  font-style: italic;
}

.contact-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
}

.contact-box p {
  margin: 0;
}

.contact-box a { color: var(--diac-clr-primary); }

