@charset "UTF-8";
/* ============================================================
   サガカル LP スタイルシート（FLOCSS）
   - Foundation : リセット・ベース定義
   - Layout     : l-*
   - Object
     - Component: c-*
     - Project  : p-*
     - Utility  : u-*
   ============================================================ */

/* ------------------------------------------------------------
   Foundation
------------------------------------------------------------ */
:root {
  --color-bg: #EEF2F7;          /* アイスグレー */
  --color-surface: #FFFFFF;     /* 白 */
  --color-primary: #008BCD;     /* スカイブルー */
  --color-primary-light: #66BDF2;
  --color-accent: #1E2E5E;      /* ディープインディゴ */
  --color-cta: #EF8A2C;         /* サブアクセント（オレンジ）：CTA・装飾用 */
  --color-cta-light: #F5A85C;   /* サブアクセント（薄）：ネイビー背景用 */
  --color-text: #1E2A3A;
  --color-text-muted: #5A6B7E;
  --color-border: #D5DEE8;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --shadow-card: 0 8px 24px rgba(30, 46, 94, 0.10);
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* 円弧区切りのはみ出し対策 */
}

h1, h2, h3, h4, p, dl, dd, figure, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ------------------------------------------------------------
   Layout
------------------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-surface);
  box-shadow: 0 2px 12px rgba(30, 46, 94, 0.08);
  z-index: 100;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.l-main {
  padding-top: var(--header-height);
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-container--narrow {
  max-width: 880px;
}

.l-footer {
  position: relative;
  background-color: var(--color-accent);
  color: var(--color-surface);
  padding: 64px 0 32px;
}

/* ------------------------------------------------------------
   Object - Component
------------------------------------------------------------ */

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.c-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.c-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ボタン内の外部SVG矢印アイコン */
.c-btn__arrowIcon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.25s ease;
}

/* アウトラインボタンのホバー時（背景がメインカラーになるため白に反転） */
.c-btn--outline:hover .c-btn__arrowIcon {
  filter: brightness(0) invert(1);
}

/* 右向きの矢印アイコン */
.c-btn__arrowIcon--right {
  transform: rotate(-90deg);
}

.c-btn--primary {
  background-color: var(--color-cta);
  color: var(--color-surface);
}

.c-btn--secondary {
  background-color: var(--color-surface);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.c-btn--outline {
  background-color: var(--color-surface);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  width: 100%;
}

.c-btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

/* 受付開始前などで押せない状態のボタン（href を持たないプレースホルダーリンクに付与する） */
.c-btn--disabled {
  background-color: #E8ECF1;
  color: #74818F;
  border: 2px solid #D5DEE8;
  cursor: default;
  pointer-events: none;
}

/* 共通の .c-btn:hover（浮き上がり・不透明度変化）を打ち消す */
.c-btn--disabled:hover {
  opacity: 1;
  transform: none;
}

/* 定義リスト（dd）内などに配置する小さめのボタン */
.c-btn--compact {
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
}

.c-btn--compact .c-btn__icon {
  width: 15px;
  height: 15px;
}

.c-btn--compact .c-btn__arrowIcon {
  width: 14px;
  height: 14px;
}

.c-btn--submit {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: var(--color-cta);
  color: var(--color-surface);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.c-btn--submit:hover {
  opacity: 0.85;
}

/* バッジ（ヒーロー内 事業名） */
.c-badge__item {
  display: inline-block;
}

.c-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E4E9E 100%);
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* セクションタイトル */
.c-sectionTitle {
  position: relative;
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.c-sectionTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.c-sectionTitle--white {
  color: var(--color-surface);
}

.c-sectionTitle--left {
  text-align: left;
}

.c-sectionTitle--left::after {
  left: 0;
  transform: none;
}

.c-sectionTitle--noBar {
  padding-bottom: 0;
  margin-bottom: 8px;
}

.c-sectionTitle--noBar::after {
  content: none;
}

/* 見出し上の英字ラベル */
.c-overline {
  text-align: center;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}

.c-overline--onDark {
  color: var(--color-primary-light);
}

/* セクション区切り（円弧・斜め・垂れ下がり円弧を織り交ぜて単調さを回避） */
.p-about,
.p-programs,
.p-details,
.p-flow,
.p-news,
.p-faq,
.p-contact,
.l-footer {
  position: relative;
}

/* 上向きの円弧（ヒーロー → サガカルとは のみ。他の境界は水平） */
.p-about::before {
  content: "";
  position: absolute;
  top: -47px;
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
  min-width: 1280px;
  height: 96px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background-color: inherit;
  pointer-events: none;
}


/* スクロールフェードイン（JSで .js-fadeIn を付与） */
.js-fadeIn {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fadeIn.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-fadeIn {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 左ボーダー付き見出し */
.c-headingBorder {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
  border-left: 5px solid var(--color-accent);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.4;
  margin-bottom: 20px;
}

.c-headingBorder__sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

/* テキストリンク */
.c-textLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.25s ease;
}

.c-textLink:hover {
  opacity: 0.7;
}

.c-textLink__icon {
  width: 18px;
  height: 18px;
}

.c-textLink__arrow {
  transition: transform 0.25s ease;
}

.c-textLink:hover .c-textLink__arrow {
  transform: translateX(4px);
}

/* 外部SVGの矢印アイコン */
.c-textLink__arrowWrap {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.c-textLink__arrowIcon {
  display: block;
  width: 18px;
  height: 18px;
  transition: filter 0.25s ease;
}

/* オンマウス時：色反転（青丸・白矢印 → 白丸・青矢印）＋円の輪郭線 */
.p-entryCard:hover .c-textLink__arrowWrap {
  transform: translateY(3px);
  background-color: var(--color-primary);
  box-shadow: 0 0 0 1.5px var(--color-primary);
}

.p-entryCard:hover .c-textLink__arrowWrap .c-textLink__arrowIcon {
  filter: brightness(0) invert(1);
}

/* チェックマーク */
.c-check {
  display: inline-block;
  margin-right: 6px;
  color: var(--color-primary);
  font-weight: 900;
}
/* カテゴリラベル（お知らせ） */
.c-label {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-surface);
}

.c-label--info {
  background-color: var(--color-primary);
}

.c-label--update {
  background-color: #3FA37C;
}

.c-label--event {
  background-color: #E8A03C;
}

/* パンくずリスト（下層ページ） */
.c-breadcrumb {
  margin-bottom: 28px;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "＞";
  margin: 0 5px;
  /* 本文（--color-text-muted #5A6B7E）とボーダー（--color-border #D5DEE8）の中間の淡いグレー */
  color: #9AA8B6;
}

.c-breadcrumb__link {
  color: var(--color-primary);
}

.c-breadcrumb__link:hover {
  text-decoration: underline;
}

/* 下層ページ：ヘッダーとパンくずの間を、各セクションの上余白の半分に詰める。
   トップページの .p-faq / .p-news にはパンくずが無いため、この指定は影響しない。 */
.p-faq .c-breadcrumb,
.p-news .c-breadcrumb {
  margin-top: -44px; /* padding-top 88px の半分 */
}

.p-newsDetail .c-breadcrumb,
.p-policy .c-breadcrumb {
  margin-top: -36px; /* padding-top 72px の半分 */
}

/* 前のページへ戻るリンク（下層ページ） */
.c-backLink__wrap {
  margin-top: 56px;
  text-align: center;
}

.c-backLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.c-backLink::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.c-backLink:hover {
  text-decoration: underline;
}

/* フォーム部品 */
.c-formControl {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-surface);
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-formControl::placeholder {
  color: #A6B3C2;
}

.c-formControl:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 205, 0.2);
}

.c-formControl--textarea {
  resize: vertical;
  min-height: 140px;
}

.c-formSelect {
  position: relative;
}

.c-formSelect::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.c-formSelect .c-formControl {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
}

.c-required {
  color: #D3455B;
  font-weight: 700;
}

/* ハンバーガーメニュー */
.c-navToggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
}

.c-navToggle__bar {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-navToggle__bar:nth-child(1) { top: 14px; }
.c-navToggle__bar:nth-child(2) { top: 21px; }
.c-navToggle__bar:nth-child(3) { top: 28px; }

.c-navToggle[aria-expanded="true"] .c-navToggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.c-navToggle[aria-expanded="true"] .c-navToggle__bar:nth-child(2) {
  opacity: 0;
}

.c-navToggle[aria-expanded="true"] .c-navToggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ページトップ */
.c-pageTop {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-surface);
  transition: background-color 0.25s ease;
}

.c-pageTop:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.c-pageTop svg {
  width: 20px;
  height: 20px;
}

/* ------------------------------------------------------------
   Object - Project
------------------------------------------------------------ */

/* サイトブランド（ヘッダーロゴ） */
.p-siteBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.p-siteBrand__logo {
  height: 32px;
  width: auto;
}

.p-siteBrand__en {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

/* グローバルナビ */
.p-globalNav__list {
  display: flex;
  gap: 8px;
}

.p-globalNav__link {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.p-globalNav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.p-globalNav__link:hover {
  color: var(--color-accent);
}

.p-globalNav__link:hover::after {
  transform: scaleX(1);
}

/* ファーストビュー */
.p-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 72px;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 242, 247, 0.25) 0%, rgba(238, 242, 247, 0.1) 45%, rgba(238, 242, 247, 0.35) 100%);
}

.p-hero__body {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.p-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.p-hero__catch {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-accent);
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.9), 0 0 42px rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.p-hero__lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95), 0 0 28px rgba(255, 255, 255, 0.8);
  margin-bottom: 56px;
}

.p-hero__entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1152px;
  margin: 0 auto;
}

/* ヒーロー内 入口カード（カード全体がリンク） */
.p-entryCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 24px 28px;
  border-radius: 16px;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-card);
  text-align: center;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-entryCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 46, 94, 0.16);
}

.p-entryCard__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: rgba(0, 139, 205, 0.12);
  color: var(--color-primary);
  transition: background-color 0.25s ease;
}

.p-entryCard__icon svg,
.p-entryCard__icon img {
  width: 40px;
  height: 40px;
  transition: filter 0.25s ease;
}

/* オンマウス時：円をメインカラーで塗り、アイコンを白に反転 */
.p-entryCard:hover .p-entryCard__icon {
  background-color: var(--color-primary);
}

.p-entryCard:hover .p-entryCard__icon img {
  filter: brightness(0) invert(1);
}

.p-entryCard__title {
  font-size: 23px;
  font-weight: 900;
  color: var(--color-accent);
}

.p-entryCard__text {
  font-size: 14px;
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* リード文セクション */
.p-about {
  background-color: var(--color-surface);
  padding: 88px 0;
  text-align: center;
  /* 上の ::before（円弧）が min-width:1280px のため、画面幅がそれ未満だと
     左右にはみ出して横スクロールが発生する。
     hidden ではなく clip を使う理由：hidden は縦方向も切ってしまい、
     top:-47px で上へせり出している円弧の上半分が消えてしまう。
     clip なら横方向だけを切り取り、上方向のはみ出しはそのまま残せる。 */
  overflow-x: clip;
}

.p-about__title {
  position: relative;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.p-about__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.p-about__text {
  font-size: 16px;
  line-height: 2.2;
}

/* 3つの支援プログラム */
.p-programs {
  background-color: var(--color-accent);
  padding: 88px 0 96px;
  overflow: hidden;
}

/* 背景の透かしテキスト */
.p-programs::after {
  content: "SAGACULTURE";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 13vw, 170px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
}

.p-programs .l-container {
  position: relative;
  z-index: 1;
}

.p-programs__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin-bottom: 48px;
}

.p-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* プログラムカード */
.p-programCard {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.p-programCard__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(120deg, #008BCD 0%, #64B9F0 100%);
  color: var(--color-surface);
  overflow: hidden;
}

/* 装飾数字（01〜03） */
.p-programCard__num {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-42%);
  font-size: 58px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.p-programCard__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
}

.p-programCard__icon svg {
  width: 22px;
  height: 22px;
}

/* 外部SVGアイコン（青帯上のため白に反転） */
.p-programCard__icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.p-programCard__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.p-programCard__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px 22px 26px;
}

.p-programCard__spec {
  margin-bottom: 16px;
}

.p-programCard__specRow {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
}

.p-programCard__specRow dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.p-programCard__specRow dd {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-programCard__text {
  font-size: 14px;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* 支援の詳細と申請方法 */
.p-details {
  background-color: var(--color-surface);
  padding: 88px 0 96px;
}

.p-details__lead {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 72px;
}

.p-detailSection {
  margin-bottom: 88px;
}

.p-detailSection:last-of-type {
  margin-bottom: 40px;
}

.p-detailSection__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.p-detailSection--reverse .p-detailSection__inner {
  grid-template-columns: 1fr 1.15fr;
}

.p-detailSection--reverse .p-detailSection__content {
  order: 2;
}

.p-detailSection--reverse .p-detailSection__figure {
  order: 1;
}

.p-detailSection__text {
  font-size: 15px;
  margin-bottom: 24px;
}

.p-detailSection__spec {
  border-top: 1px solid var(--color-border);
  margin-bottom: 28px;
}

.p-detailSection__specRow {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--color-border);
}

.p-detailSection__specRow dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.p-detailSection__specRow dd {
  font-size: 14px;
}

/* 申請ボタン群の上に置く案内文 */
.p-detailSection__actionsNote {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.p-detailSection__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* 定義リスト（dd）内に配置する補足文とボタン */
/* 必要書類の箇条書き（●＋補足）
   募集要領の記載に合わせた階層構造を表現する */
.p-detailSection__docList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-detailSection__docList > li {
  position: relative;
  padding-left: 1.15em;
  font-size: 15px;
  line-height: 1.8;
}

.p-detailSection__docList > li + li {
  margin-top: 10px;
}

.p-detailSection__docList > li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0.1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* 「以下のいずれかの書類の写し」以下のぶら下げ部分 */
.p-detailSection__docSub {
  display: block;
  margin-top: 2px;
  padding-left: 0.6em;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.p-detailSection__docNote {
  margin-top: 12px;
  font-size: 14px;
}

.p-detailSection__docActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.p-detailSection__figure {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.p-detailSection__figure img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.p-details__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* 申請の流れ */
.p-flow {
  background-color: var(--color-accent);
  padding: 88px 0;
}

.p-flow__card {
  background-color: var(--color-surface);
  border-radius: 18px;
  padding: 64px 56px;
}

.p-flowSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
  margin: 40px 0;
}

.p-flowSteps__item {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

/* ステップ間の矢印 */
.p-flowSteps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -14px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-primary-light);
  border-right: 2px solid var(--color-primary-light);
  transform: rotate(45deg);
}

.p-flowSteps__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-surface);
  font-size: 16px;
  font-weight: 700;
}

.p-flowSteps__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  color: var(--color-primary);
}

.p-flowSteps__icon svg {
  width: 100%;
  height: 100%;
}

.p-flowSteps__title {
  font-size: 17px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.p-flowSteps__text {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: left;
}

.p-flow__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.p-flow__action {
  text-align: center;
}

/* お知らせ */
.p-news {
  background-color: var(--color-surface);
  padding: 88px 0;
}

/* お知らせ一覧（サムネイルなしのリスト形式） */
.p-newsList {
  max-width: 880px;
  margin: 40px auto 0;
  border-top: 1px solid var(--color-border);
}

.p-newsList__item {
  border-bottom: 1px solid var(--color-border);
}

.p-newsList__link {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 8px;
  color: inherit;
  transition: background-color 0.25s ease;
}

.p-newsList__link:hover {
  background-color: rgba(0, 139, 205, 0.06);
}

.p-newsList__date {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

.p-newsList__label {
  flex-shrink: 0;
  min-width: 84px;
  padding: 4px 14px;
  font-size: 14px;
  text-align: center;
}

.p-newsList__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.25s ease;
}

.p-newsList__link:hover .p-newsList__title {
  color: var(--color-primary);
}

.p-news__more {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
}

/* お知らせ詳細ページ */
.p-newsDetail {
  background-color: var(--color-surface);
  padding: 72px 0 96px;
}

.p-newsDetail__header {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.p-newsDetail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.p-newsDetail__date {
  font-size: 15px;
  color: var(--color-text-muted);
}

.p-newsDetail__label {
  min-width: 84px;
  padding: 4px 14px;
  font-size: 13px;
  text-align: center;
}

.p-newsDetail__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-accent);
}

.p-newsDetail__heading {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-accent);
  margin-top: 40px;
  margin-bottom: 14px;
}

.p-newsDetail__text {
  font-size: 15px;
}

.p-newsDetail__text + .p-newsDetail__text {
  margin-top: 16px;
}

.p-newsDetail__list {
  margin-top: 14px;
  padding-left: 1.2em;
  list-style: disc;
}

.p-newsDetail__list li {
  font-size: 15px;
}

.p-newsDetail__list li + li {
  margin-top: 6px;
}

.p-newsDetail__link {
  color: var(--color-primary);
  font-weight: 700;
}

.p-newsDetail__link:hover {
  text-decoration: underline;
}

.p-newsDetail__signature {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 12px;
  background-color: var(--color-bg);
  font-size: 14px;
  line-height: 1.9;
}

.p-newsDetail__tel {
  color: var(--color-primary);
  font-weight: 700;
}

.p-news__moreBtn {
  width: auto;
  min-width: 240px;
}

/* よくある質問 */
.p-faq {
  background-color: var(--color-bg);
  padding: 88px 0;
}

.p-faq__lead {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

/* よくある質問ページのカテゴリ内リンク */
.p-faqNav {
  margin-bottom: 48px;
}

.p-faqNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.p-faqNav__link {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--color-primary);
  border-radius: 999px;
  background-color: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.p-faqNav__link:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

.p-faqGroup + .p-faqGroup {
  margin-top: 40px;
}

.p-faqGroup__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--color-primary);
}

.p-faqGroup__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-faqGroup__icon img {
  width: 22px;
  height: 22px;
  /* 青のSVGアイコンを白に反転 */
  filter: brightness(0) invert(1);
}

.p-faqList__item {
  border-bottom: 1px solid var(--color-border);
}

.p-faqList__trigger {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 22px 8px;
  border: none;
  background: transparent;
  text-align: left;
}

.p-faqList__qBadge,
.p-faqList__aBadge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  color: var(--color-primary);
  background-color: rgba(0, 139, 205, 0.12);
  /* 円は32pxのまま、文字だけを下パディングで少し上へずらす */
  padding-bottom: 3px;
}

.p-faqList__qBody {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-faqList__category {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

/* 質問のラベル（制度／資格／対象）
   カスタムフィールド faq_label の値をバッジ表示する */
.p-faqList__qLabel {
  /* 件名の先頭に横並び。ラベル幅は一律に揃える */
  flex-shrink: 0;
  width: 60px;
  margin-top: 2px;
  padding: 3px 0;
  border-radius: 4px;
  background-color: var(--color-bg);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFF;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ラベルの種別ごとの背景色。文字色は白で統一。
   いずれも白文字とのコントラスト比 5.3:1 以上（WCAG AA の 4.5:1 を満たす）*/
.p-faqList__qLabel--system {
  background-color: #1E6FA8;
}

.p-faqList__qLabel--eligibility {
  background-color: #1F7A44;
}

.p-faqList__qLabel--target {
  background-color: #A8530D;
}

.p-faqList__qText {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.p-faqList__chevron {
  flex-shrink: 0;
  align-self: center;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.p-faqList__trigger[aria-expanded="true"] .p-faqList__chevron {
  transform: rotate(-135deg);
}

.p-faqList__answer {
  padding: 0 8px 24px;
}

.p-faqList__answerInner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--color-surface);
}

/* 回答本文のラッパー。
   answerInner が flex のため、包まずに複数段落を置くと横並びになる */
.p-faqList__answerBody {
  flex-grow: 1;
  min-width: 0;
}

.p-faqList__answerInner p {
  font-size: 14px;
}

.p-faqList__answerBody > p + p {
  margin-top: 12px;
}

.p-faq__moreLink {
  text-align: center;
  margin-top: 40px;
}

.p-faq__moreBtn {
  width: auto;
  min-width: 240px;
}

/* お問い合わせ */
.p-contact {
  background-color: var(--color-surface);
  padding: 88px 0 96px;
}

.p-contact__lead {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.p-contactForm__field {
  margin-bottom: 24px;
}

.p-contactForm__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.p-contactForm__submit {
  max-width: 480px;
  margin: 40px auto 0;
}

/* フッター */
.p-footer__brand {
  text-align: center;
  padding-bottom: 40px;
}

.p-footer__siteName {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-footer__siteNameEn {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-primary-light);
  margin-top: 4px;
}

.p-footer__officialNames {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
}

.p-footer__fund {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* 掲載項目数に幅が追従する（1件でも余白が偏らない）ため grid ではなく flex を使う */
.p-footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 56px;
  width: fit-content;
  max-width: 100%;
  padding: 28px 44px;
  margin: 0 auto 40px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.06);
}

.p-footer__infoItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-footer__infoIcon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-primary-light);
}

.p-footer__infoIcon svg {
  width: 20px;
  height: 20px;
}

.p-footer__infoLabel {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.p-footer__infoText {
  font-size: 14px;
  font-weight: 700;
}

.p-footer__tel {
  color: var(--color-surface);
  font-size: 18px;
}

.p-footer__partners {
  text-align: center;
  margin-bottom: 40px;
}

.p-footer__partnersLabel {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

/* 主催（佐賀県ロゴ ＋ 壺侍付き連盟名 を左右に配置） */
.p-footer__hosts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
  margin-bottom: 32px;
}

.p-footer__host {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.p-footer__hostLogo {
  height: 36px;
  width: auto;
}

.p-footer__hostMascot {
  height: 36px;
  width: auto;
}

.p-footer__hostName {
  color: var(--color-surface);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2rem;
  text-align: left;
}

.p-footer__bannerList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.p-footer__bannerLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 72px;
  padding: 8px 16px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-surface);
  transition: opacity 0.25s ease;
}

.p-footer__bannerLink:hover {
  opacity: 0.85;
}

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

.p-footer__nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
}

.p-footer__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 36px;
  margin-bottom: 24px;
}

.p-footer__navLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: color 0.25s ease;
}

.p-footer__navLink:hover {
  color: var(--color-surface);
}

/* 右向きの矢印（白抜き） */
.p-footer__navArrow {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.p-footer__copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ------------------------------------------------------------
   Object - Utility
------------------------------------------------------------ */
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.u-textSmall {
  font-size: 12px;
  color: var(--color-text-muted);
}

.u-hidden-pc {
  display: none;
}

/* ------------------------------------------------------------
   Object - Project：プライバシーポリシー（下層ページ）
------------------------------------------------------------ */
.p-policy {
  background-color: var(--color-surface);
  padding: 72px 0 96px;
}

.p-policy__intro {
  font-size: 15px;
  margin-bottom: 40px;
}

.p-policy__section {
  margin-bottom: 36px;
}

.p-policy__heading {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.p-policy__text {
  font-size: 15px;
}

.p-policy__text + .p-policy__text {
  margin-top: 12px;
}

.p-policy__list {
  margin-top: 14px;
  padding-left: 1.2em;
  list-style: disc;
}

.p-policy__list li {
  font-size: 15px;
}

.p-policy__list li + li {
  margin-top: 6px;
}

.p-policy__link {
  color: var(--color-primary);
  word-break: break-all;
}

.p-policy__link:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   ページ送り（お知らせ一覧のページネーション）
   MT.net の paginate_by による複数ページ出力で使用する
------------------------------------------------------------ */
.c-pager {
  max-width: 880px;
  margin: 40px auto 0;
}

.c-pager__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.c-pager__link {
  width: auto;
  min-width: 180px;
}

/* ------------------------------------------------------------
   CMS本文（リッチテキスト入力）の補助スタイル
   管理画面でクラスを付けずに入力された要素にも、
   .p-newsDetail__* と同等の見た目を当てる。
   :not([class]) を付けているのは、クラス指定済みの要素
   （.p-newsDetail__signature など）の見た目を変えないため。
------------------------------------------------------------ */
.p-newsDetail__body > p:not([class]) {
  font-size: 15px;
}

.p-newsDetail__body > p:not([class]) + p:not([class]) {
  margin-top: 16px;
}

.p-newsDetail__body > h2:not([class]) {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-accent);
  margin-top: 40px;
  margin-bottom: 14px;
}

.p-newsDetail__body > h3:not([class]) {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-accent);
  margin-top: 28px;
  margin-bottom: 10px;
}

.p-newsDetail__body > ul:not([class]),
.p-newsDetail__body > ol:not([class]) {
  margin-top: 14px;
  padding-left: 1.2em;
  list-style: disc;
}

.p-newsDetail__body > ol:not([class]) {
  list-style: decimal;
}

.p-newsDetail__body > ul:not([class]) li,
.p-newsDetail__body > ol:not([class]) li {
  font-size: 15px;
}

.p-newsDetail__body > ul:not([class]) li + li,
.p-newsDetail__body > ol:not([class]) li + li {
  margin-top: 6px;
}

.p-newsDetail__body a:not([class]) {
  color: var(--color-primary);
  font-weight: 700;
}

.p-newsDetail__body a:not([class]):hover {
  text-decoration: underline;
}

/* FAQ回答（.p-faqList__answerInner）内の本文も同様に整える */
.p-faqList__answerInner > p:not([class]) + p:not([class]) {
  margin-top: 12px;
}

.p-faqList__answerInner ul:not([class]),
.p-faqList__answerInner ol:not([class]) {
  margin-top: 10px;
  padding-left: 1.2em;
  list-style: disc;
}

.p-faqList__answerInner ol:not([class]) {
  list-style: decimal;
}

.p-faqList__answerInner a:not([class]) {
  color: var(--color-primary);
  font-weight: 700;
}

.p-faqList__answerInner a:not([class]):hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   Media Queries（レスポンシブ）
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .p-hero__catch {
    font-size: 42px;
  }

  .p-detailSection__inner,
  .p-detailSection--reverse .p-detailSection__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-detailSection--reverse .p-detailSection__content {
    order: 1;
  }

  .p-detailSection--reverse .p-detailSection__figure {
    order: 2;
  }

  .p-detailSection__figure {
    position: static;
    max-width: 640px;
    margin: 0 auto;
  }

  .p-footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 32px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 60px;
  }

  /* ハンバーガーナビ */
  .c-navToggle {
    display: block;
  }

  .p-globalNav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    box-shadow: 0 10px 20px rgba(30, 46, 94, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .p-globalNav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .p-globalNav__list {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .p-globalNav__link {
    display: block;
    padding: 14px 24px;
  }

  .p-globalNav__link::after {
    content: none;
  }

  .p-hero {
    padding: 64px 20px 56px;
  }

  .p-hero__catch {
    font-size: 32px;
  }

  .p-hero__lead {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .p-hero__entries,
  .p-programs__grid,
  .p-news__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 背景の透かし「SAGACULTURE」
     通常時は clamp() の下限 80px で止まるため、狭い画面では左右が見切れる。
     11文字ぶんの実測幅は フォントサイズ × 約8.1 なので、
     11.8vw なら画面幅の約96%に収まり、全文字が表示される。 */
  .p-programs::after {
    font-size: 11.8vw;
  }

  .p-about,
  .p-programs,
  .p-details,
  .p-flow,
  .p-news,
  .p-faq,
  .p-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .c-sectionTitle {
    font-size: 28px;
  }

  .p-about__title {
    font-size: 26px;
  }

  .p-about__text {
    text-align: left;
    line-height: 2;
  }

  .c-headingBorder {
    font-size: 21px;
  }

  .p-detailSection {
    margin-bottom: 64px;
  }

  .p-detailSection__specRow {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .p-detailSection__actions .c-btn {
    width: 100%;
  }

  /* dd内のボタン（団体所属証明書・よくある質問）もSPでは全幅に */
  .p-detailSection__docActions .c-btn {
    width: 100%;
  }

  /* 下層ページ：パンくず上の余白もSP値の半分に追従させる
     （.p-policy は 840px 以下でも padding-top 72px のままなので -36px を継承） */
  .p-faq .c-breadcrumb,
  .p-news .c-breadcrumb {
    margin-top: -32px; /* padding-top 64px の半分 */
  }

  .p-newsDetail .c-breadcrumb {
    margin-top: -24px; /* padding-top 48px の半分 */
  }

  /* お知らせ詳細ページ */
  .p-newsDetail {
    padding: 48px 0 64px;
  }

  .p-newsDetail__title {
    font-size: 23px;
  }

  .p-newsDetail__meta {
    gap: 12px;
  }

  .p-newsDetail__signature {
    padding: 18px 20px;
  }

  .p-flow__card {
    padding: 40px 24px;
  }

  .p-flowSteps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-flowSteps__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  /* お知らせ一覧：日付・ラベルの行とタイトル行の2段組みに */
  .p-newsList__link {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 16px 4px;
  }

  .p-newsList__title {
    width: 100%;
    font-size: 15px;
  }

  .u-hidden-sp {
    display: none;
  }

  .u-hidden-pc {
    display: inline;
  }
}
