@import url("https://use.fontawesome.com/releases/v7.1.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");


/* =========================================================
  HORNET - Top Page Styles (Final)
  - Header (2-tier, centered nav, sticky)
  - Mobile Drawer Nav (hamburger + drawer)
  - Hero (soft gradient + optional overlay)
  - Strengths / Services / About / News / CTA / Footer
  - PageTop button (SVG)
========================================================= */


/* ---------------------------------------------------------
  0) Design Tokens
--------------------------------------------------------- */
:root{
  --brand: #17356b;
  --brand-dark: #0f274f;
  --brand-light: #4682b4;

  --brand-gray: #666666;

  --cta-1: #2e8b57;
  --cta-2: #f4a460;

  --text: #162235;
  --text-sub: #4b586a;		/* 補助テキスト */
  --text-muted: #7a8796;	/* 非アクティブ、キャプション */

  --bg: #ffffff;
  --bg-soft: #f8f9fb;		/* ナビ段/パネル用の薄グレー */
  --bg-soft-2: #f6f8fc;		/* ヒーロー用 */
  --bg-soft-3: #eaf0fa;		/* ヒーロー用 */

  --footer-bg: #0f1a2a;		/* primary-strong */
  --footer-text: rgba(255,255,255,.88);		/* 白は少しだけ抑える */

  --footer-meta: rgba(255,255,255,.72);
  --footer-border: rgba(255,255,255,.12);
  --footer-bottom: rgba(255,255,255,.62);

  --footer-link: #ffffff;
  --footer-link-hover: #ffffff;
  --line: #e6e9ef;

  /* link (teal) */
  --link: #1f7a5a;
  --link-hover: #145c44;

  /* underline */
  --link-underline: rgba(15,118,110,.35);

  --shadow-sm: 0 8px 20px rgba(15, 26, 42, .08);
  --shadow-md: 0 14px 36px rgba(15, 26, 42, .12);

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;

  --container: 1100px;
  --pad-x: 24px;

  --header-top-h: 80px;
  --header-nav-h: 56px;
  --header-top-h-compact: 64px;
  --header-nav-h-compact: 52px;

  --nav-gap: 40px;


}

/* ---------------------------------------------------------
  1) Base / Reset
--------------------------------------------------------- */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{ height: 100%; }

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body{
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "BIZ UDPGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.6;
  /* overflow-x: hidden; 横だけ保険 */
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}



a{
  color: var(--link);
  text-decoration: none;                 /* 通常は下線なし */
  text-underline-offset: .18em;
  text-decoration-thickness: 2px;
  transition: color .15s ease, text-decoration-color .15s ease, background-color .15s ease;
}

/* 重要：ホバー時に“下線を出す”＝リンクだと分かる */
a:hover{
  color: var(--link-hover);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
}

/* フォーカス（キーボード操作） */
a:focus-visible{
  outline: 2px solid rgba(23,53,107,.35); /* brandの薄いアウトライン */
  outline-offset: 2px;
  border-radius: 6px;
}


 a.aPDF::after {
     font-family: "Font Awesome 6 Free";
     content: "\f1c1";
     font-weight: 700;
     margin-left: 0.5em;
     color: #b22222;
}
 a.aPDF2::after {
     font-family: "Font Awesome 6 Free";
     content: "\f1c1";
     font-weight: 700;
     margin-left: 0.5em;
     color: #b0c4de;
}
 a.aEx::after {
     font-family: "Font Awesome 6 Free";
     content: "\f35d";
     font-weight: 700;
     margin-left: 0.5em;
}
 a.aDoc::after {
     font-family: "Font Awesome 6 Free";
     content: "\f1c2";
     font-weight: 700;
     margin-left: 0.5em;
     color: #185abd;
}
 a.aZip::after {
     font-family: "Font Awesome 6 Free";
     content: "\f1c6";
     font-weight: 700;
     margin-left: 0.5em;
     color: #ffd700;
}



/* “ボタン/ナビ”系は下線なし */
.gnav__link,
.mnav__link,
.btn,
.button,
.pagetopBtn{
  text-decoration: none;
}
.gnav__link:hover,
.mnav__link:hover,
.btn:hover,
.button:hover,
.pagetopBtn:hover{
  text-decoration: none;
}







button{ font: inherit; }

/* スクリーンリーダー用 */
.u-sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------
  2) Utilities / Layout
--------------------------------------------------------- */
.l-container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.site-header__top .l-container{
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-section{
  padding-top: 36px;
  padding-bottom: 36px;
}

.l-section--tight{ padding: 72px 0; }

.c-section-title{
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.c-section-title::after{
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--brand);
  margin: 12px auto 0;
  opacity: .95;
}

/* 文章の読み幅 */
.c-prose{ max-width: 58ch; }

/* ---------------------------------------------------------
  3) Header (2-tier)
--------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* 上段（ロゴ段） */
.site-header__top{
  height: var(--header-top-h);
  display: flex;
  align-items: center;
  background: var(--bg);
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__logo{
  width: max-width:100%;
  height: auto;
  display: block;
}

.brand__sub{
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: .05em;
  opacity: 0.75;
}

.brand__name{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--brand);
  white-space: nowrap;
}

/* 右側：モバイル用ボタン領域（PCでは非表示） */
.site-header__tools{
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* 下段ナビ（PC基準） */
.site-header__nav{
  position: relative;
  height: var(--header-nav-h);
  background: var(--brand);
  border-top: none;
}

.site-header__nav-inner{
  height: 100%;
}

/* PCではドロワー用要素は見せない */
.mnav__backdrop{
  display: none;
}

.mnav__title{
  display: none;
}

/* ナビ全体 */
.gnav{
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* メニューを横いっぱいに均等配置 */
.gnav__list{
  list-style: none;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

/* 各メニューを均等幅に */
.gnav__list > li{
  flex: 1 1 0;
  min-width: 0;
}

/* メニューリンク本体 */
.gnav__link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.16);
  transition: background-color .18s ease, color .18s ease;
}

/* 右端の区切り線 */
.gnav__list > li:last-child .gnav__link{
  border-right: 1px solid rgba(255,255,255,.16);
}

/* hover */
.gnav__link:hover{
  color: #ffffff;
  background: rgba(255,255,255,.10);
}

/* 現在ページ */
.gnav__link.is-active{
  position: relative;
  color: #ffffff;
  font-weight: 700;
  background: rgba(255,255,255,.18);
}

/* 既存の下線は消す */
.gnav__link.is-active::after{
  display: none;
}

/* お問い合わせだけhover下線にしていた指定は解除 */
.gnav__link.is-contact:hover{
  text-decoration: none;
}

/* スクロール後の高さ縮小はそのまま維持 */
body.is-header-compact .site-header__nav{
  height: var(--header-nav-h-compact);
}

/* SPでは社名の折り返し許可 */
@media (max-width: 900px){
  .brand__name{
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}


/* ---------------------------------------------------------
  4) Mobile Nav (Hamburger + Drawer)
  - 共通navをSP時だけドロワー化
--------------------------------------------------------- */

/* ハンバーガーボタン本体 */
.nav-toggle{
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(23,53,107,.22);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15,26,42,.08);
  cursor: pointer;
  flex: 0 0 auto;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.nav-toggle:hover{
  background: #f8fafe;
  border-color: rgba(23,53,107,.32);
}

.nav-toggle:active{
  transform: scale(.98);
}

.nav-toggle:focus-visible{
  outline: 2px solid rgba(23,53,107,.28);
  outline-offset: 2px;
}

/* 三本線 */
.nav-toggle__bars{
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
  margin: 0 auto;
}

.nav-toggle__bars > span{
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform-origin: center;
  transition:
    transform .22s ease,
    opacity .18s ease,
    top .22s ease,
    background-color .22s ease;
}

.nav-toggle__bars > span:nth-child(1){ top: 0; }
.nav-toggle__bars > span:nth-child(2){ top: 6px; }
.nav-toggle__bars > span:nth-child(3){ top: 12px; }

/* 開いている時：× */
body.is-nav-open .nav-toggle{
  background: rgba(23,53,107,.08);
  border-color: rgba(23,53,107,.35);
  box-shadow: 0 4px 14px rgba(15,26,42,.12);
}

body.is-nav-open .nav-toggle__bars > span:nth-child(1){
  top: 6px;
  transform: rotate(45deg);
}

body.is-nav-open .nav-toggle__bars > span:nth-child(2){
  opacity: 0;
}

body.is-nav-open .nav-toggle__bars > span:nth-child(3){
  top: 6px;
  transform: rotate(-45deg);
}

/* メニューが開いている間、背景をスクロールさせない */
body.is-nav-open{
  overflow: hidden;
}





/* ---------------------------------------------------------
  5) Hero
--------------------------------------------------------- */
.hero{
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg-soft-2) 45%, var(--bg-soft-3) 100%);
  border-bottom: 1px solid var(--line);
}

.hero__inner{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 80px var(--pad-x);
  min-height: 560px;

  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(15, 26, 42, .65);
}

.hero__title{
  margin: 0 0 18px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 700;
}

.hero__accent{ color: var(--brand); }

.hero__lead{
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 34em;
}

.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}


/* =================================
   HERO image-only
================================ */

/* 画像だけHERO */
.hero--image-only .hero__inner{
  display: block;
  padding: 0;
}

/* ここで“高さ”を作る */
.hero--image-only .hero__visual{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;   /* ← 重要：高さが決まる */
  overflow: hidden;
}

/* コンテナを埋める */
.hero--image-only .hero__visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 帯：フル幅 */
.hero--image-only .hero__overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0;                 /* ← 横paddingは内側に任せる */
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* 文字：コンテナ幅で打ち止め */
.hero--image-only .hero__overlay-inner{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* 文字（お好みで） */
.hero--image-only .hero__name{
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--text-sub);
  font-size: 14px;
}

.hero--image-only .hero__title{
  margin: 0;
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .01em;
}







.btn--primary{
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover{ 
  background: var(--brand-dark); 
  color: #fff;
}

.btn--ghost{
  background: rgba(255,255,255,.7);
  color: var(--brand);
  border-color: rgba(23,53,107,.25);
}
.btn--ghost:hover{
  background: #fff;
  border-color: rgba(23,53,107,.42);
}

/* Visual */
.hero__visual{
  justify-self: end;
  width: min(560px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(230,233,239,.92);
  box-shadow: var(--shadow-md);
  position: relative; /* overlay基準 */
}

.hero__visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay（上品・薄め） */
.hero__visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 53, 107, 0.08),
    rgba(23, 53, 107, 0.18)
  );
  pointer-events: none;
  border-radius: inherit;
}

/* ---------------------------------------------------------
  6) Strengths
--------------------------------------------------------- */
.strengths__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.feature{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 2px solid rgba(23,53,107,.18);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: 0 6px 16px rgba(15,26,42,.06);
}

.feature__title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand);
}

.feature__title::after{
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: rgba(23,53,107,.28);
  margin-top: 12px;
}

.feature__desc{
  margin: 0;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ---------------------------------------------------------
  7) Services (2x2 + line icons)
--------------------------------------------------------- */
.services__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.service-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(23,53,107,.22);
}

.service-card__icon{
  width: 40px;
  height: 40px;
  color: rgba(23,53,107,.9); /* SVGの stroke が currentColor の想定 */
}

.service-card__title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.service-card__desc{
  margin: 0 0 10px;
  color: var(--text-muted);
}

.service-card__link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
}

.service-card__link:hover{
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------------------------------------------------------
  8) About mini section
--------------------------------------------------------- */
.about-mini__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
  margin-top: 30px;
}

.about-mini__lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.facts{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px;
}

.facts__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 12px;
  color: rgba(15,26,42,.78);
}

.facts__row{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.facts__label{
  color: rgba(15,26,42,.55);
  font-variant-numeric: tabular-nums;
}

.facts__value{ color: rgba(15,26,42,.82); }

.about-mini__more{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand);
}

.about-mini__more:hover{
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------------------------------------------------------
  9) News (latest 3)
--------------------------------------------------------- */
.news{
  padding-top: 36px;
  padding-bottom: 36px;
}

.news__list{
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  width: min(var(--container), 100%);
}

.news__item{ border-bottom: 1px solid var(--line); }

.news__link{
  display: flex;
  flex-wrap: wrap; /* ← 追加：折り返しを許可 */
  gap: 18px;
  padding: 18px 0;
  align-items: baseline;
}

.news__date{
  width: 120px;
  font-size: 12px;
  color: rgba(15,26,42,.55);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}

.news__title{
  color: var(--brand);
  font-weight: 600;
  margin:0;
  font-size: 0.9em;
}

.news__text{
  color: var(--brand-gray);
  margin-left: calc(120px + 18px); /* date幅 + gap分だけインデント */ 
  width: calc(100% - (120px + 18px)); /* 横幅調整（任意） */
  font-size: 0.8em;
}

.news__link:hover .news__title{ color: var(--brand-dark); }

.news__more{
  width: min(var(--container), 100%);
  margin: 18px auto 0;
  display: flex;
  justify-content: flex-end;
}

.news__more a{
  font-weight: 700;
  color: var(--brand);
}

.news__more a:hover{
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------------------------------------------------------
  10) CTA band
--------------------------------------------------------- */
.cta{
  background: var(--brand);
  color: #fff;
  padding: 90px 0;
}

.cta__inner{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}

.cta__title{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.cta__text{
  margin: 0 auto 24px;
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
}

.cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 32px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.6);
  transition: background .15s ease, transform .15s ease;
}

.cta__btn:hover{
  background: #f0f3f9;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
  11) Footer
✔ 2列（基本）
✔ 3列（three-col）
✔ 2段（stack-nav）
✔ 2段時は横並び＋折り返し
✔ SPでは必ず1列
✔ 行間は gap と line-height で明示管理
✔ liの余白はフッター内だけリセット
--------------------------------------------------------- */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
}

/* ===============================
   レイアウト（デフォルト：2列）
================================ */
.site-footer__inner{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 46px var(--pad-x);
  display: grid;
  grid-template-columns: 1.2fr .8fr; /* デフォルト2列 */
  gap: 22px;
  align-items: start;
}

/* --------------------------------
   2段モード：divの下にulを回す
   footerに site-footer--stack-nav を付与
-------------------------------- */
.site-footer--stack-nav .site-footer__inner {
  grid-template-columns: 1fr; 			/* 1列=縦積み */
  gap: 18px;
}

/* 2段モード：nav は横並び（折り返し可） */
.site-footer--stack-nav .site-footer__nav{
  display: flex;
  flex-wrap: wrap;              /* 折り返し可 */
  gap: 6px 16px;                /* 行間6px / 列間16px */
  justify-content: flex-start;  /* flex-start | center | flex-end */
  margin: 0;
  padding: 0;          /* 追加 */
  list-style: none;    /* 追加（保険） */
}

/* --------------------------------
   3列モード（div + ul + ul）
   footerに site-footer--three-col を付与
-------------------------------- */
.site-footer--three-col .site-footer__inner{
  grid-template-columns: 1.2fr .8fr .8fr;
}

/* ===============================
   各要素
================================ */
.site-footer__brand{
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 10px;
}

.site-footer__meta{
  margin: 0;
  color: var(--footer-meta);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__nav{
  list-style: none;
  display: grid;
  gap: 6px;				/* ここを調整（例：6px） */
  justify-items: end;			/* デフォルトは右寄せ */
}

/* li の余白リセット（他のli設定より優先するため） */
.site-footer__nav > li {
  margin: 0;				/* li側の“外部余白”をゼロにして、gapを正として効かせる */
  padding: 0;
}

/* リンクの行高（見た目の詰まり調整） */
.site-footer__nav a{
  color: var(--footer-link);
  font-weight: 600;
  display: inline-block;
  line-height: 1.5;			/* 行間はliではなくaで管理するのが分かりやすい */
  font-size: 14px;
}

.site-footer__nav a:hover{
  color: var(--footer-link-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom{
  border-top: 1px solid var(--footer-border);
  padding: 14px var(--pad-x);
  font-size: 12px;
  color: var(--footer-bottom);
  text-align: center;
}

/* ===============================
   SP（スマホ）では必ず縦1列
================================ */
@media (max-width: 900px){

  /* 2列でも3列でも、必ず1列にする */
  .site-footer__inner{
    grid-template-columns: 1fr;
    padding: 32px 16px; 		/* SPは左右を控えめに */
  }

  /* 念のため：3列モードの上書き */
  .site-footer--three-col .site-footer__inner{
    grid-template-columns: 1fr;
  }

  .site-footer__nav{
    justify-items: start;		/* SPは左寄せ */
  }

}








/* ---------------------------------------------------------
  12) PageTop Button (SVG)
--------------------------------------------------------- */
.pagetopBtn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  border: 1px solid rgba(23,53,107,.22);
  background: rgba(255,255,255,.92);
  color: var(--brand);

  box-shadow: var(--shadow-sm);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .15s ease;
}

body.is-pagetop-show .pagetopBtn{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pagetopBtn:hover{
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.pagetopBtn__icon{
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 押したときのフィードバック */
.pagetopBtn:active{ transform: translateY(0) scale(0.98); }

/* キーボード操作の見た目（アクセシビリティ） */
.pagetopBtn:focus-visible{
  outline: 3px solid rgba(23,53,107,.25);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
  13) Responsive
--------------------------------------------------------- */
@media (max-width: 900px){
  :root{
    --pad-x: 16px;
    --nav-gap: 22px;
  }

  /* ハンバーガー表示 */
  .site-header__tools{
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1300;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 共通navをSPではドロワー化 */
  .site-header__nav{
    position: fixed;
    inset: 0;
    z-index: 1200;
    height: auto;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  body.is-nav-open .site-header__nav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mnav__backdrop{
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 42, .42);
  }

  .site-header__nav-inner{
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    padding: 18px 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateX(12px);
    transition: transform .2s ease;
    overflow-y: auto;
  }

  body.is-nav-open .site-header__nav-inner{
    transform: translateX(0);
  }

  .mnav__title{
    display: block;
    margin: 0 0 10px;
    padding: 6px 4px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(15, 26, 42, .55);
  }

  .gnav{
    height: auto;
    display: block;
  }

  .gnav__list{
    width: 100%;
    margin: 0;
    display: block;
  }

  .gnav__list > li{
    flex: none;
  }

  .gnav__link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    height: auto;
    padding: 14px 6px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--brand);
    text-align: left;
  }

  .gnav__link:hover{
    background: var(--bg-soft);
    color: var(--brand-dark);
  }

  .gnav__link.is-active{
    background: rgba(23,53,107,.06);
    color: var(--brand);
  }

  .hero{
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft-2) 100%);
  }

  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px var(--pad-x);
    gap: 18px;
  }

  .hero__lead{
    font-size: 16px;
  }

  .hero__visual{
    justify-self: stretch;
    width: 100%;
    border-radius: 12px;
  }

  .strengths__grid{
    grid-template-columns: 1fr;
  }

  .services__grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    grid-template-columns: 40px 1fr;
    padding: 22px 18px;
  }

  .about-mini__grid{
    grid-template-columns: 1fr;
  }

  .news__link{
    flex-direction: column;
    gap: 6px;
  }

  .news__text{
    margin-left: 0;
    width: 100%;
  }

  .news__date{
    width: auto;
  }

  .news__more{
    justify-content: flex-start;
  }

  .cta{
    padding: 72px 0;
  }

  .cta__btn{
    width: min(360px, 86%);
  }

  .site-footer__inner{
    grid-template-columns: 1fr;
  }

  .site-footer__nav{
    justify-items: start;
  }
}



/* =========================================================
  Inner Pages (Sidebar Layout)
========================================================= */
.page-hero{
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg-soft-2) 100%);
}

.page-hero__title{
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.page-hero__lead{
  margin: 10px 0 0;
  color: var(--text-muted);
}

.page-wrap{
  padding: 60px 0 100px;
}

.page-grid{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.snav {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;		  /* 角丸を保ちたいので基本は hidden */
}
/* PC：Side menu - sticky */
@media (min-width: 901px) {
  .snav {
    position: sticky;
    top: 16px;
    align-self: start;      /* flex/grid内で効かせる保険 */

    max-height: calc(100vh - 16px);

    /* スクロールは縦だけ */
    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
  }
}

.snav__title{
  margin: 0;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--brand);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.snav__list{
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.snav__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: rgba(15,26,42,.86);
  font-weight: 600;
  font-size:90%;
}

.snav__link:hover{
  background: var(--bg-soft);
  color: var(--brand-dark);
}

.snav__link.is-active{
  color: var(--brand);
  background: rgba(23,53,107,.06);
  position: relative;
}

.snav__link.is-active::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand);
}

/* 1) ページのはみ出し対策（本文領域に限定） */
.content{
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
  font-size: 0.9rem;
  line-height: 1.7rem;
}

.content h2{
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
}

.content p{
  margin: 0 0 14px;
  color: rgba(15,26,42,.82);
}

/* モバイル：サブメニューは上に積む */
@media (max-width: 900px){
  .page-wrap{ padding: 42px 0 80px; }
  .page-grid{ grid-template-columns: 1fr; }
}





/* =========================================================
  Service Page Modern Layout
========================================================= */

.service-section{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.service-section__title{
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  position: relative;
  padding-left: 14px;
}

.service-section__title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--brand);
  border-radius: 4px;
}

.service-section__lead{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 60ch;
}

.service-links{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-links a{
  display: block;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  color: var(--brand);
  transition: all .18s ease;
}

.service-links a:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(23,53,107,.25);
  color: var(--brand-dark);
}




/* =========================================================
  Info Boxes（3種類）
========================================================= */

.info-box{
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 20px 0;
  border: 1px solid transparent;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}

/* --- 青（メイン） --- */
.info-box--blue{
  background: rgba(23,53,107,.06);
  border-color: rgba(23,53,107,.15);
}

.info-box--blue::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brand);
  border-radius: 4px 0 0 4px;
}

/* --- 緑（補足） --- */
.info-box--green{
  background: rgba(30,120,80,.06);
  border-color: rgba(30,120,80,.18);
}

.info-box--green::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #1e7850;
  border-radius: 4px 0 0 4px;
}

/* --- ピンク（注意） --- */
.info-box--pink{
  background: rgba(190,70,90,.06);
  border-color: rgba(190,70,90,.18);
}

.info-box--pink::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #be465a;
  border-radius: 4px 0 0 4px;
}


/* =========================================================
  Info Box – Soft Card Version
========================================================= */

.info-card{
  border-radius: var(--radius-lg);

  padding: 22px 24px;
  margin: 24px 0;
  border: 2px solid;
  background-clip: padding-box;
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 0 2px 10px rgba(15,26,42,.04);
}

/* --- 薄い青 --- */
.info-card--blue{
  background: rgba(23,53,107,.05);
  border-color: rgba(23,53,107,.18);
  color: rgba(15,26,42,.92);
}

/* --- 薄い緑 --- */
.info-card--green{
  background: rgba(30,120,80,.06);
  border-color: rgba(30,120,80,.20);
  color: rgba(15,26,42,.92);
}

/* --- 薄いピンク --- */
.info-card--pink{
  background: rgba(190,70,90,.06);
  border-color: rgba(190,70,90,.20);
  color: rgba(15,26,42,.92);
}

.info-card strong{
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 120%;
}



/* =========================================================
  Modern List
========================================================= */

.list{
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.list li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

/*  チェックマーク風 */
.list--check li::before{
  content: "✓";
  font-size: 13px;
  color: var(--brand);
  top: 2px;
}

/*  縦ライン付き */
.list--line{
  border-left: 3px solid rgba(23,53,107,.15);
  padding-left: 16px;
}





/* =========================================================
  見出し
========================================================= */

/* =========================================================
  Component - Section Heading
========================================================= */

.c-heading{
  color: var(--brand);
  background: rgba(23,53,107,.06);
  position: relative;
  padding: 0.5em 0.75em;
  margin: 0 0 1em;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-heading::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
}


/* =========================================================
  Component - Sub Heading (Underline)
========================================================= */

.c-subheading{
  position: relative;
  margin: 1.5em 0 0.75em;
  padding-bottom: 0.4em;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-dark);
}

/* 下線 */
.c-subheading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;              /* 線の長さ */
  height: 2px;

background: linear-gradient(
  90deg,
  var(--brand),
  rgba(23,53,107,.2)
);

}


/* =========================================================
  Component - Minor Heading (H4)
========================================================= */

.c-minor-heading{
  margin: 1.2em 0 0.5em;
  font-size: 1.2rem;          /* 本文より少し大きい程度 */
  font-weight: 600;
  color: rgba(23,53,107,.85);
  letter-spacing: .02em;
}


.c-minor-heading2 {
  margin: 1.2em 0 0.5em;
  font-size: 1.2rem;          /* 本文より少し大きい程度 */
  font-weight: 600;
  color: rgba(23,53,107,.85);
  letter-spacing: .02em;

  position: relative;
  padding-left: 14px;
}

.c-minor-heading2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}



/* =========================================================
  Component - Figure (Image + Caption)
========================================================= */

.c-figure{
  margin: 2em 0;
  text-align: center;
}

.c-figure img{
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15,26,42,.08);
  margin: auto;
}

/* キャプション */
.c-figure__caption{
  margin-top: 0.6em;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}




/* =========================================================
  Component - Figure Grid (2/3/4 columns)
========================================================= */

.c-figgrid{
  display: grid;
  gap: 18px;
  margin: 2em 0;
}

/* 列数 */
.c-figgrid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.c-figgrid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.c-figgrid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* グリッド内では figure の余白を減らす */
.c-figgrid .c-figure{
  margin: 0;
  text-align: center;
}

/* 画像（グリッド内は少し控えめに） */
.c-figgrid .c-figure img{
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15,26,42,.08);
}

/* キャプション */
.c-figgrid .c-figure__caption{
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* モバイル：自動的に2列→1列へ（読みやすさ優先） */
@media (max-width: 900px){
  .c-figgrid--4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c-figgrid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c-figgrid--2{ grid-template-columns: 1fr; }
}






/* =========================================================
  Component - Lightbox
========================================================= */

.c-lightbox{
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.c-lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}

.c-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15,26,42,.58);
}

.c-lightbox__dialog{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.c-lightbox__figure{
  margin: 0;
  width: min(980px, 92vw);
  max-height: 86vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,26,42,.22);
  border: 1px solid rgba(230,233,239,.9);
}

.c-lightbox__img{
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  background: #0f1a2a;
}

.c-lightbox__caption{
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(15,26,42,.72);
  line-height: 1.6;
  background: #fff;
}

.c-lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(15,26,42,.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.c-lightbox__close:hover{
  background: rgba(15,26,42,.72);
}








/* =========================================================
  Utility - Flex
  使い方例：
  <div class="u-flex u-flex-wrap u-jc-sb u-gap-1">...</div>
  <div class="u-flex u-flex-wrap u-jc-sa u-gap-1">...</div>
========================================================= */

/* 共通：flexの基本 */
.u-flex {
  display: flex;
  flex-direction: row;           /* ← ここでデフォルトを明示的に横にしておく */
  flex-wrap: nowrap;             /* 必要に応じて wrap にするか決める */
}

/* 間隔（子要素の余白は gap で管理） */
.u-gap-1 { gap: 1em; }

/* PC：space-between / space-around */
@media (min-width: 901px){
  .u-jc-sb { justify-content: space-between; }
  .u-jc-sa { justify-content: space-around; }
}

/* Mobile：1列表示 + 左寄せ */
@media (max-width: 900px){
  .u-flex { flex-direction: column; }
  .u-text-left { text-align: left; }
}




/* =========================================================
  Component - Table
========================================================= */

.c-table-wrap{
  width: 100%;
  max-width: 100%;
  overflow-x: auto;          /* ← テーブルだけスクロール */
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 900px) {
  .c-table-wrap {
    box-shadow: inset -10px 0 12px -12px rgba(0,0,0,.25);
  }
}

.c-table{
  width: max-content;        /* ← 内容に応じて広がるが、親をはみ出す */
  border-collapse: collapse;
}

/* caption */
.c-table__caption{
  caption-side: top;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: .75em;
}

/* ヘッダー */
.c-table thead th{
  background: rgba(23,53,107,.08);
  color: var(--brand);
  font-weight: 600;
  padding: 12px 14px;
  border-bottom: 2px solid rgba(23,53,107,.2);
  text-align: left;
}

/* セル */
.c-table th,
.c-table td{
  padding: 12px 14px;
  border-bottom: 1px solid #e6e9ef;
  vertical-align: top;
}

/* 左側th（項目名） */
.c-table tbody th{
  font-weight: 600;
  background: rgba(23,53,107,.03);
  width: 30%;
  text-align: left;
}

/* 行ホバー（PC） */
@media (hover:hover){
  .c-table tbody tr:hover{
    background: rgba(23,53,107,.04);
  }
}



/* =========================================================
   Modifier - 縦積み表示（2列 → 2行）
   .c-table--stack
========================================================= */

@media (max-width: 900px){

  .c-table--stack{
    width: 100%;           /* 通常幅に戻す */
  }

  .c-table--stack tbody tr{
    display: block;
    border-bottom: 1px solid #e6e9ef;
    padding: 8px 0;
  }

  .c-table--stack tbody th{
    width: 100%!important;
  }

  .c-table--stack th,
  .c-table--stack td{
    display: block;
    width: 100%;
    padding: 6px 14px;
    border: none;
  }

  /* th を見出し風に */
  .c-table--stack th{
    background: rgba(23,53,107,.06);
    font-weight: 600;
    margin-bottom: 4px;
  }

  /* td 少し余白 */
  .c-table--stack td{
    padding-top: 0;
  }

  /* 行ホバー無効（スマホ不要） */
  .c-table--stack tbody tr:hover{
    background: transparent;
  }
}




/* =========================================================
   form
========================================================= */

input	{width: 100%; max-width: 100%; }
select	{}
textarea{width: 100%; max-width: 100%; }

input:invalid {
    border: solid 2px var(--cta-2);
}


/* フォーム入力（テーブル内） */
.c-table input[type="text"],
.c-table input[type="email"],
.c-table input[type="tel"],
.c-table textarea{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #fff;
  color: rgba(15,26,42,.92);
  font-size: 16px; /* モバイルで勝手にズームされにくい */
  line-height: 1.5;
}

/* textarea */
.c-table textarea{
  min-height: 10em;
  resize: vertical;
}

.c-table input:invalid {
    border: solid 2px var(--cta-2);
}



/* 送信ボタン（input[type=submit]） */
input[type="submit"][name="btn1"]{
  width: auto !important;
  min-width: 220px;
  height: auto !important;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(23,53,107,.25);
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,26,42,.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

/* hover */
@media (hover:hover){
  input[type="submit"][name="btn1"]:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,26,42,.18);
  }
}

/* 押下 */
input[type="submit"][name="btn1"]:active{
  transform: translateY(0);
  opacity: .92;
}

/* ボタンを中央寄せにしたい場合（周辺レイアウト次第） */
input[type="submit"][name="btn1"]{
  display: inline-block;
}



/* プレースホルダー（入れるなら） */
.c-table input::placeholder,
.c-table textarea::placeholder{
  color: rgba(15,26,42,.38);
}

/* フォーカス時 */
.c-table input:focus,
.c-table textarea:focus{
  outline: none;
  border-color: rgba(23,53,107,.55);
  box-shadow: 0 0 0 4px rgba(23,53,107,.12);
}



/* エラー時 */
.is-error{
  border-color: #d64545 !important;
  box-shadow: 0 0 0 4px rgba(214,69,69,.12);
}
.error-message{
  color: #d64545;
  font-size: .85rem;
  margin-top: .4em;
}


/* 注意書き */
.clsFormat {
  font-size:75%;
  color: #aaaaaa;
}

/* 必須バッジ */
.clsHissu{
  display: inline-block;
  margin-left: .5em;
  padding: .2em .55em;
  border-radius: 999px;
  font-size: .72em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: #fff;
  background: var(--cta-1);
}



/* =========================================================
   List (ul / ol)
========================================================= */

ul,
ol{
  margin: 0 0 1.5em 1.5em; /* 下に少し余白・左インデント */
  padding: 0;
}

ul li:not(.gnav__list li),
ol li:not(.gnav__list li) {
  margin-bottom: .5em;
}

ul li:last-child,
ol li:last-child{
  margin-bottom: 0;     /* 最終行は余白なし */
}


/* 箇条書きの色をブランド寄りに */
ul{
  list-style: disc;
}

ul li::marker{
  color: var(--brand);
}

ol li::marker{
  color: var(--brand);
  font-weight: 600;
}


/* =========================================================
   Component - Note List（※付き注意書き）
========================================================= */

.c-note-list,
.c-note-list2 {
  list-style: none;
  margin: 1em 0;
  padding: 0;
}

.c-note-list li,
.c-note-list2 li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: .6em;
}

.c-note-list2 li{
  font-size: .9rem;
  color: rgba(15,26,42,.78);
}

.c-note-list li:last-child,
.c-note-list2 li:last-child {
  margin-bottom: 0;
}

/* ※マーク */
.c-note-list li::before,
.c-note-list2 li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 600;
}



/* PCのみ改行 */
.u-br-pc{ display: none; }
@media (min-width: 901px){
  .u-br-pc{ display: inline; }
}

/* SPのみ改行 */
.u-br-sp{ display: none; }
@media (max-width: 900px){
  .u-br-sp{ display: inline; }
}




