@charset "UTF-8";

:root {
  interpolate-size: allow-keywords;
  --bl: #000;
  --gray-02: #ccc;
  --grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-01-rev: linear-gradient(0deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-02: linear-gradient(90deg, var(--ACC) 0%, var(--LACC) 100%);
  --grad-02-rev: linear-gradient(0deg, var(--ACC) 0%, var(--LACC) 100%);
  --grad-03: linear-gradient(90deg, var(--OTH) 0%, var(--LOTH) 100%);
  --grad-03-rev: linear-gradient(0deg, var(--OTH) 0%, var(--LOTH) 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
  vertical-align: bottom;
}
:where(.thumb),
:where([class*="__thumb"]) {
  vertical-align: bottom;
  background-color: unset;
}

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}

/*---------- BMパーツの調整 ----------*/
/* 疑似要素の削除 */
.no-before::before,
.no-after::after {
  content: unset !important;
}

/* スクロールした後のヘッダーのボタンの高さが変わるときにイージング */
.lib-induce__outer li:has(.lib-induce__btn) {
  transition: all 0.2s;
}

/* ボタンのアイコンを「→」に変更 */
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt::after {
  content: "\ea03";
  font-size: 1em;
} */

/* ボタンのアイコンに●の背景色を入れる */
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) {
   > .txt::after {
    color: var(--MAIN);
    background-color: var(--WHT);
    padding: 0.5em;
    border-radius: 50%;
    margin-top: -0.875em;
    line-height: 1;
    font-size: 0.675em;
    transition: var(--transition);
  }
  &:hover > .txt::after {
    color: var(--WHT);
    background-color: var(--MAIN);
  }
  &.bg-wht > .txt::after {
    color: var(--WHT);
    background-color: var(--MAIN);
  }
  &.bg-wht:hover > .txt::after {
    color: var(--MAIN);
    background-color: var(--WHT);
  }
  &.border-accent > .txt::after {
    color: var(--ACC);
  }
  &.border-accent:hover > .txt::after {
    color: var(--WHT);
    background-color: var(--ACC);
  }
  &.border-accent.bg-wht > .txt::after {
    color: var(--WHT);
    background-color: var(--ACC);
  }
  &.border-accent.bg-wht:hover > .txt::after {
    color: var(--ACC);
    background-color: var(--WHT);
  }
  &.border-def > .txt::after {
    color: var(--DEF);
  }
  &.border-def:hover > .txt::after {
    color: var(--WHT);
    background-color: var(--DEF);
  }
} */

/*---------- BMパーツのパターン増設 ----------*/
/* ①②③...のリストマーカー */
:where(.lib-indent__list).--circle > li::before {
  content: counter(ol-bullet);
  text-align: center;
  border: 1px solid var(--DEF);
  border-radius: 50%;
  font-size: 0.75em;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  aspect-ratio: 1/1;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.4%;
  /* margin-top: 2px; */
}

/* ※のリストマーカー */
:where(.lib-indent__list).--asterisk {
  > li {
    padding-left: 1.8em;
    position: relative;
  }
  > li::before {
    /* counter-increment: ol-bullet; */
    content: "※";
    display: block;
    width: 2em;
    text-align: center;
    text-align: right;
    position: absolute;
    left: 0;
    top: 0;
    padding-right: 0.5em;
  }
}

/* 「―」（横線）のリストマーカー */
:where(.lib-indent__list).--line {
  > li {
    position: relative;
    padding-left: 2em;
  }
  > li::before {
    content: "―";
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* table 罫線パターン */
:where(table).--border {
  > thead,
  th {
    background-color: unset;
  }
  > thead th:first-child {
    border-left-color: var(--GRY);
  }
  > thead th:last-child {
    border-right-color: var(--GRY);
  }
  th,
  td {
    border: unset;
    border: 1px solid var(--GRY);
  }
  th {
    color: var(--DEF);
  }
  tbody > tr > th:first-child {
    border-left-color: var(--GRY);
  }
}

/* table 下線パターン */
:where(table).--border-bottom {
  border: unset;
  th,
  > thead {
    background-color: unset;
  }
  th,
  td {
    border: unset;
    border-bottom: 1px solid var(--GRY);
  }
  th {
    color: var(--DEF);
    @media print, screen and (max-width: 767px) {
      border-top: 1px solid var(--DGRY);
      margin-top: -1px;
    }
  }
  &.--even tbody > tr:nth-child(even) > th {
    background-color: var(--LGRY);
  }
}

/* table 下線パターン2 見出しセルの下線はメインカラー */
:where(table).--border-bottom-main {
  border: unset;
  th,
  > thead {
    background-color: unset;
  }
  th,
  td {
    border: unset;
    border-bottom: 1px solid var(--GRY);
  }
  th {
    color: var(--DEF);
    border-bottom: 1px solid var(--MAIN);
    @media print, screen and (max-width: 767px) {
      border-top: 1px solid var(--MAIN);
      border-bottom: 1px solid var(--GRY);
      margin-top: -1px;
    }
  }
  &.--even tbody > tr:nth-child(even) > th {
    background-color: var(--LGRY);
  }
}

/* 見出し"列"だけグレー */
:where(table.--gry) tbody > tr > th {
  background-color: var(--GRY);
  color: var(--DEF);
}
:where(table.--gry) tbody > tr > th:first-child {
  border-left-color: var(--GRY);
}

/* table .lib-table__03に少し余白を入れる */
:where(.lib-table__03).--padding {
  --cell-padding: 0.5em;
  td,
  th {
    padding: var(--cell-padding);
  }
}

/* メディアのスライダーをリストにする */
/* swiper用のclassを削除or無効にした上で利用 */
.lib-blog-001.--list {
  .swiper-wrapper {
    flex-direction: column;
    .swiper-slide {
      width: 100%;
    }
  }
  .lib-media__thumb,
  .lib-media__tag,
  .lib-swiper__control,
  .lib-media__txt {
    display: none;
  }
  .lib-media__txtarea {
    display: flex;
    flex-direction: column;
    gap: 0.25em 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--GRY);
    @media print, screen and (min-width: 992px) {
      flex-direction: row;
      align-items: center;
    }
    .lib-media__category {
      order: 2;
    }
    .lib-media__title {
      order: 3;
    }
    .lib-media__txt {
      order: 4;
    }
    .lib-media__time {
      order: 1;
      align-items: flex-start;
      margin-top: 0;
      padding-top: 0;
      border-top: unset;
      min-height: unset;
      @media print, screen and (min-width: 992px) {
        text-wrap: nowrap;
      }
    }
  }
}
/* 「記事公開日」のみ表示させる
   （「記事更新日」を非表示） */
.lib-blog-001.--list {
  .lib-media__time:has(p + p) p:nth-of-type(2),
  .lib-media__time:has(p + p) p span {
    display: none;
  }
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* メディアの一覧ページを3カラムにする
   （15em=240px以下にしないようにする） */
/* .media-post__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
  gap: 1em;
  .media-post__item {
    margin-top: 0;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
  .media-post__thumb {
    height: auto;
    grid-row: 1/2;
    @media print, screen and (min-width: 768px) {
      width: 100%;
    }
    img {
      object-fit: cover;
      aspect-ratio: 16/9;
    }
  }
  .media-post__inside {
    grid-row: 2/3;
    @media print, screen and (min-width: 768px) {
      padding-left: 0;
    }
    .media-post__chip {
      @media print, screen and (min-width: 768px) {
        margin-top: 0;
      }
    }
  }
} */

/* ==================================
タイポ
===================================== */
/*---------- font（日本語フォントが打ち消される場合に使用） ----------*/
/* @font-face{
	font-family: "Avenir"; ←任意の文字で書く
	src: url('../../dcms_media/fonts/webFonts/Avenir35Light/font.woff2') format('woff2');
	src: url('../../dcms_media/fonts/webFonts/Avenir35Light/font.woff') format('woff');
	font-weight: 300; ←読み込むフォントのデータに合わせてweight設定する（woffデータの中にweightがすべてそろっていれば記載不要）
	unicode-range: U+0030-0039, U+0041-005A, U+0061-007A, U+0021, U+003F, U+0026, U+0025, U+002C, U+002E; ←英数字 + ! ? & % , . を含める
} */
 /*↑↑↑必要に応じて記載変更↑↑↑↑*/


/* ゴシックとか */
.ff-notosans {
  font-family: "Noto Sans JP", serif;
}
.ff-lato {
  font-family: "Lato", sans-serif;
  /* letter-spacing: 0.05rem; */
}
.ff-oswald {
  font-family: "Oswald", sans-serif;
}
.ff-poppins {
  font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
  font-family: "Zen Maru Gothic", sans-serif;
}
.ff-zenkakugo {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
  font-family: "Staatliches", sans-serif;
}
.ff-m-plus-rounded-1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.07deg);
}
.ff-inter {
  font-family: "Inter", sans-serif;
}
/* 明朝とか */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}
.ff-shippori {
  font-family: "Shippori Mincho", serif;
}
.ff-shippori-b1 {
  font-family: "Shippori Mincho B1", serif;
}

/* font-weight */
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* font-size */
@media print, screen and (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem;
  }
}
@media print, screen and (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem;
  }
}

/* 縦書き */
.vertical-rl {
  writing-mode: vertical-rl;
}

/* 袋文字 */
.text-hukuro {
  /* -webkit-text-stroke: 2px var(--bl);
     text-stroke: 2px var(--bl); */
  text-shadow: 2px 2px 1px var(--bl), -2px 2px 1px var(--bl), 2px -2px 1px var(--bl), -2px -2px 1px var(--bl), 2px 0px 1px var(--bl), 0px 2px 1px var(--bl), -2px 0px 1px var(--bl),
    0px -2px 1px var(--bl);
}
.text-hukuro-wht {
  /* -webkit-text-stroke: 2px var(--WHT);
     text-stroke: 2px var(--WHT); */
  text-shadow: 2px 2px 1px var(--WHT), -2px 2px 1px var(--WHT), 2px -2px 1px var(--WHT), -2px -2px 1px var(--WHT), 2px 0px 1px var(--WHT), 0px 2px 1px var(--WHT), -2px 0px 1px var(--WHT),
    0px -2px 1px var(--WHT);
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}


/* box-decoration-break */
.decoration-break {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* マーカーのあしらい */
mark {
  background: linear-gradient(transparent 60%, yellow 60%);
}

/* テキストをグラデーションにするベース */
.text-grad {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect {
  /* 縦横比はstyleでCSS変数を書き換える
     ex) style="--aspect: 2.51 / 1;" */
  --aspect: auto;
  @media print, screen and (min-width: 576px) {
    --aspect-sm: var(--aspect);
  }
  @media print, screen and (min-width: 768px) {
    --aspect-md: var(--aspect-sm);
  }
  @media print, screen and (min-width: 992px) {
    --aspect-lg: var(--aspect-md);
  }
  @media print, screen and (min-width: 1200px) {
    --aspect-xl: var(--aspect-lg);
  }
  @media print, screen and (min-width: 1400px) {
    --aspect-xxl: var(--aspect-xl);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--aspect);
    @media print, screen and (min-width: 576px) {
      aspect-ratio: var(--aspect-sm);
    }
    @media print, screen and (min-width: 768px) {
      aspect-ratio: var(--aspect-md);
    }
    @media print, screen and (min-width: 992px) {
      aspect-ratio: var(--aspect-lg);
    }
    @media print, screen and (min-width: 1200px) {
      aspect-ratio: var(--aspect-xl);
    }
    @media print, screen and (min-width: 1400px) {
      aspect-ratio: var(--aspect-xxl);
    }
  }

  &.--4x3 img {
    aspect-ratio: 4 / 3;
  }
  &.--3x2 img {
    aspect-ratio: 3 / 2;
  }
  &.--16x9 img {
    aspect-ratio: 16 / 9;
  }
  &.--21x9 img {
    aspect-ratio: 21 / 9;
  }
  &.--1x1 img {
    aspect-ratio: 1 / 1;
  }
  &.--2x1 img {
    aspect-ratio: 2 / 1;
  }
  &.--3x1 img {
    aspect-ratio: 3 / 1;
  }
  &.--4x1 img {
    aspect-ratio: 4 / 1;
  }
  &.--7x8 img {
    aspect-ratio: 7 / 8;
  }
  &.--9x16 img {
    aspect-ratio: 9 / 16;
  }
  &.--2x3 img {
    aspect-ratio: 2 / 3;
  }
  &.--3x4 img {
    aspect-ratio: 3 / 4;
  }

  /* 画像全体を枠内に入れたいとき */
  &.--contain img,
  .--contain img {
    object-fit: contain;
  }
}

/*---------- 角丸 ----------*/
[class*="u-rounded"] {
  overflow: clip;
}
.u-rounded {
  --round: 0.625em;
  border-radius: var(--round);
  @media print, screen and (min-width: 576px) {
    --round-sm: var(--round);
    border-radius: var(--round-sm);
  }
  @media print, screen and (min-width: 768px) {
    --round-md: var(--round-sm);
    border-radius: var(--round-md);
  }
  @media print, screen and (min-width: 992px) {
    --round-lg: var(--round-md);
    border-radius: var(--round-lg);
  }
  @media print, screen and (min-width: 1200px) {
    --round-xl: var(--round-lg);
    border-radius: var(--round-xl);
  }
  @media print, screen and (min-width: 1400px) {
    --round-xxl: var(--round-xl);
    border-radius: var(--round-xxl);
  }
}

.u-rounded-_25 {
  border-radius: 0.25rem !important;
}
.u-rounded-_5 {
  border-radius: 0.5rem !important;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
}
.u-rounded-1 {
  border-radius: 1rem !important;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
}
.u-rounded-2 {
  border-radius: 2rem !important;
}
.u-rounded-3 {
  border-radius: 3rem !important;
}

.--round-top {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--round-bottom {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
.--round-right {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--round-left {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}
.--round-trans-up {
  border-top-left-radius: unset !important;
  border-bottom-right-radius: unset !important;
}
.--round-trans-down {
  border-top-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
  margin-right: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-r-md-over {
    margin-right: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-r-lg-over {
    margin-right: var(--oversize);
  }
}
/* 左に */
.u-l-over {
  margin-left: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-l-md-over {
    margin-left: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-l-lg-over {
    margin-left: var(--oversize);
  }
}

.u-l-over-50vw {
  width: 50vw;
  margin-left: calc((50vw - 50%) * -1);
}
.u-r-over-50vw {
  width: 50vw;
  margin-right: -50vw;
}
@media print, screen and (min-width: 768px) {
  .u-l-over-50vw-md {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-md {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print, screen and (min-width: 992px) {
  .u-l-over-50vw-lg {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-lg {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print, screen and (min-width: 1200px) {
  .u-l-over-50vw-xl {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-xl {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print, screen and (min-width: 1400px) {
  .u-l-over-50vw-xxl {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-xxl {
    width: 50vw;
    margin-right: -50vw;
  }
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;

  --icon-size: 1.5em;
  width: var(--icon-size);
  height: var(--icon-size);
  @media print, screen and (min-width: 576px) {
    --icon-size-sm: var(--icon-size);
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }
  @media print, screen and (min-width: 768px) {
    --icon-size-md: var(--icon-size-sm);
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }
  @media print, screen and (min-width: 992px) {
    --icon-size-lg: var(--icon-size-md);
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }
  @media print, screen and (min-width: 1200px) {
    --icon-size-xl: var(--icon-size-lg);
    width: var(--icon-size-xl);
    height: var(--icon-size-xl);
  }
  @media print, screen and (min-width: 1400px) {
    --icon-size-xxl: var(--icon-size-xl);
    width: var(--icon-size-xxl);
    height: var(--icon-size-xxl);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    speak: none;
  }

  &.--cover img {
    object-fit: cover;
  }
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.75em;
  justify-content: center;
  align-items: center;

  /* アイコンだけ右寄せ */
  &.--r {
    grid-template-columns: 1fr auto;
  }
  /* アイコンだけ左寄せ */
  &.--l {
    grid-template-columns: auto 1fr;
  }
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
  display: grid;
  > * {
    grid-area: 1 / -1;
  }
}
#tinymce,
.editor_block {
  .l-overlap {
    > * {
      grid-area: unset !important;
      z-index: 1 !important;
      opacity: 1 !important;
    }
  }
}

/* 子要素を中央配置 */
/* 縦 */
.l-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 縦横中央 */
.l-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  /* opacity（濃さ）はstyleでCSS変数を書き換える
     ex) style="--bg-opacity: 0.5;" */
  --bg-opacity: 0.3;

  /* 疑似要素のファンデーション */
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    pointer-events: none;
    speak: none;
    opacity: var(--bg-opacity);
  }
  /* 画像の時 */
  &.--img::before,
  &.--img::after {
    z-index: 1;
  }
  /* グレースケール透明フィルター */
  &.--bl::before {
    background-color: var(--bl);
  }
  &.--def::before {
    background-color: var(--DEF);
  }
  &.--dgry::before {
    background-color: var(--DGRY);
  }
  &.--gry::before {
    background-color: var(--GRY);
  }
  &.--lgry::before {
    background-color: var(--LGRY);
  }
  &.--wh::before {
    background-color: var(--WHT);
  }
  /* メインカラーフィルター */
  &.--main::before {
    background-color: var(--MAIN);
  }
  &.--lmain::before {
    background-color: var(--LMAIN);
  }
  /* アクセントカラーフィルター */
  &.--accent::before {
    background-color: var(--ACC);
  }
  &.--laccent::before {
    background-color: var(--LACC);
  }
  /* 補助色カラーフィルター */
  &.--other::before {
    background-color: var(--OTH);
  }
  &.--lother::before {
    background-color: var(--LOTH);
  }
  /* グラデーションカラーフィルター */
  &.--grad-01::before {
    background: var(--grad-01);
  }
  &.--grad-01-rev::before {
    background: var(--grad-01-rev);
  }
  &.--grad-02::before {
    background: var(--grad-02);
  }
  &.--grad-02-rev::before {
    background: var(--grad-02-rev);
  }
  &.--grad-03::before {
    background: var(--grad-03);
  }
  &.--grad-03-rev::before {
    background: var(--grad-03-rev);
  }

  /* ぼかしフィルター
     強さはstyleでCSS変数を書き換える
     ex) style="--blur: 1em;" */
  &.--blur {
    --blur: 0.5rem;
  }
  &.--blur::after {
    backdrop-filter: blur(var(--blur));
    opacity: 1;
  }

  /* 乗算 */
  &.--multiply::after {
    mix-blend-mode: multiply;
  }
}

/*---------- ホバーアクション ----------*/
.c-hover {
  transition: var(--transition);
  text-decoration: none;
  &:hover {
    text-decoration: none;
  }
  /* 背景色 */
  &.--bg-bl:hover {
    background-color: var(--bl);
  }
  &.--bg-def:hover {
    background-color: var(--DEF);
  }
  &.--bg-dgry:hover {
    background-color: var(--DGRY);
  }
  &.--bg-gry:hover {
    background-color: var(--GRY);
  }
  &.--bg-lgry:hover {
    background-color: var(--LGRY);
  }
  &.--bg-wh:hover {
    background-color: var(--WHT);
  }
  &.--bg-main:hover {
    background-color: var(--MAIN);
  }
  &.--bg-lmain:hover {
    background-color: var(--LMAIN);
  }
  &.--bg-accent:hover {
    background-color: var(--ACC);
  }
  &.--bg-laccent:hover {
    background-color: var(--LACC);
  }
  &.--bg-other:hover {
    background-color: var(--OTH);
  }
  &.--bg-lother:hover {
    background-color: var(--LOTH);
  }
  /* 動き */
  &.--up,
  .--up {
    --translate-up: -0.125rem;
    transition: var(--transition);
  }
  &.--up:hover,
  &:hover .--up {
    transform: translateY(var(--translate-up));
  }
  &.--down,
  .--down {
    --translate-down: 0.125rem;
    transition: var(--transition);
  }
  &.--down:hover,
  &:hover .--down {
    transform: translateY(var(--translate-down));
  }
  &.--right,
  .--right {
    --translate-right: 0.125rem;
    transition: var(--transition);
  }
  &.--right:hover,
  &:hover .--right {
    transform: translateX(var(--translate-right));
  }
  &.--left,
  .--left {
    --translate-left: -0.125rem;
    transition: var(--transition);
  }
  &.--left:hover,
  &:hover .--left {
    transform: translateX(var(--translate-left));
  }
  &.--scale-up,
  .--scale-up {
    --scale: scale(1.1);
    img {
      transition: var(--transition);
    }
    &:hover img {
      transform: var(--scale);
    }
  }
  /* あしらい */
  &.--underline:hover,
  &:hover .--underline {
    text-decoration: underline;
  }
  &.--opacity,
  .--opacity {
    --opacity: 0.8;
    &:hover {
      opacity: var(--opacity);
      img {
        opacity: var(--opacity);
      }
    }
  }
  /* l-overlapで重ねた要素のうち、ホバーしたら--afterが表示される */
  &.--overlap {
    .--after {
      opacity: 0;
      transition: var(--transition);
    }
    &:hover .--after {
      opacity: 1;
    }
  }
  /* 下線が伸びる */
  &.--bottom-line {
    position: relative;
    padding-bottom: min(0.5em, 5%);
    &::after {
      content: "";
      width: 0%;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
    }
    &:hover::after {
      @media (hover: hover) and (pointer: fine) {
        width: 100%;
      }
    }
  }
  /* 下線が伸びる（子要素の場合） */
  .--bottom-line {
    position: relative;
    padding-bottom: min(0.5em, 5%);
    &::after {
      content: "";
      width: 0%;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
    }
  }
  &:hover .--bottom-line::after {
    @media (hover: hover) and (pointer: fine) {
      width: 100%;
    }
  }
  /* shadowを入れる */
  &.--shadow:hover {
    @media (hover: hover) and (pointer: fine) {
      /* box-shadow: 0 .5em 1em currentColor; */
      box-shadow: 0 0.5em 1em rgb(0 0 0 / 30%);
    }
  }
}

/* ホバーしたら下線が左から順に伸びる
   （display: inline;にする必要があるので注意） */
.c-hover-underline-anime {
  display: inline;
  overflow: hidden;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom 0 left 0;
  background-size: 0 1px;
  transition-duration: 0.3s;
  transition-property: background-size;
}
@media (any-hover: hover) {
  .c-hover-underline-anime:hover,
  a:has(.c-hover-underline-anime):hover .c-hover-underline-anime,
  button:has(.c-hover-underline-anime):hover .c-hover-underline-anime {
    background-size: 100% 1px;
  }
}

/* ==================================
ヘッダー
===================================== */
@media print, screen and (max-width: 991px) {
  .lib-header__outer.typeS .lib-child__panel {
      margin-left: 0;
  }
}

/* ========================================
フッター
======================================== */
.lib-footer__guidance > li ~ li::before {
  background-color: currentColor;
}
.lib-footer__title>a {
  background-color: transparent;
  border: none;
}
.lib-footer__list {
  display: block;
}
@media print, screen and (max-width: 767px) {
  .lib-footer__list {
    padding-left: 20px;
  }
}

/* ========================================
CTA
======================================== */

/* ========================================
TOP
======================================== */

/* ========================================
下層
======================================== */
/*---------- 下層MV ----------*/
/* .lib-hero__outer {
  background-color: unset;

  .lib-hero__title {
    font-size: clamp(1.25rem, calc(0.975609756097561rem + 1.170731707317073vw), 2rem);
  }
  .lib-hero__title-en {
    font-size: clamp(2rem, calc(1.2682926829268293rem + 3.1219512195121952vw), 4rem);
    color: var(--MAIN);
    font-weight: bold;
    opacity: 0.2;
    line-height: 1.2;
    margin-bottom: -0.4em;
  }
  .lib-hero__title-en::first-letter {
    text-transform: uppercase;
  }
} */

/* ============================================================
   リライト 下層ページ共通 additions 2026-06-24
   ============================================================ */
/* 下層MV: ブランドグリーンのグラデ帯（背景画像なし） */
.lib-hero__outer.p-under-mv{
  background-image:linear-gradient(90deg,#229a01 0%,#bbd291 100%);
  background-color:#229a01;
}
.lib-hero__outer.p-under-mv .lib-hero__txtarea{justify-content:center;width:100%;}
.lib-hero__outer.p-under-mv .lib-hero__title{color:#fff;text-align:center;}
/* 薄緑セクション帯（bg-lmain/bg-wht は文字を白化するため使わず独自クラスで） */
.p-bg-lgreen{background-color:#f4f9f6;}
/* 事業領域などのカード（bg-wht の白文字化を避ける） */
.p-card{background-color:#fff;border-radius:8px;padding:1.75rem;}
/* 画像角丸ラッパ */
.p-rounded{border-radius:8px;overflow:hidden;}
.p-rounded img{display:block;width:100%;height:auto;}
/* 事業領域カード: lib-card__item の column-reverse / 下線を打ち消し */
.p-card.lib-card__item{flex-direction:column;}
.p-card .lib-card__title{text-decoration:none;padding-bottom:0;}

/* ============================================================
   事業内容(service) additions 2026-06-24
   ============================================================ */
/* 大型グラデEN見出し（下層セクション共通の装飾見出し） */
.p-en-head{display:block;font-size:clamp(2.5rem,6vw,4.5rem);font-weight:700;line-height:1.1;background:linear-gradient(90deg,#4caf50,#82ab2c);-webkit-background-clip:text;background-clip:text;color:transparent;letter-spacing:.03em;margin-bottom:.25rem;}
/* お悩みカード（白・影） */
.p-worry-card{background:#fff;border-radius:6px;box-shadow:0 4px 8px rgba(0,0,0,.12);padding:1.25rem 1.5rem;}
/* 訴求グリーン帯 */
.p-statement-band{background:var(--MAIN);border-radius:10px;padding:1.75rem 1.5rem;}
.p-statement-band *{color:#fff;}
/* サービスカード（白・緑枠） */
.p-service-card{background:#fff;border-radius:8px;padding:1.5rem;}
/* Strengthバッジ */
.p-badge{display:inline-block;background:#e8f5ee;color:#1a6b3a;font-weight:700;font-size:.75rem;border-radius:20px;padding:.25rem 1rem;}
/* Strength画像（左上だけ大きめ角丸） */
.p-hero-img{display:block;border-radius:100px 8px 8px 8px;overflow:hidden;}
.p-hero-img img{display:block;width:100%;height:auto;}

/* ============================================================
   数字で見る(data) additions 2026-06-24
   ============================================================ */
.p-num-card{background:#ecf3e7;border-radius:10px;padding:2.5rem 1.5rem;}
.p-num-card.--tl{border-radius:100px 10px 10px 10px;}
.p-num-card.--br{border-radius:10px 10px 100px 10px;}
.p-num-icon{display:inline-block;width:60px;height:60px;}
.p-num-icon img{width:100%;height:100%;object-fit:contain;}
.p-num-value{line-height:1;display:flex;align-items:baseline;justify-content:center;gap:.25rem;}
.p-num-big{font-size:clamp(3.5rem,8vw,5rem);font-weight:700;background:linear-gradient(90deg,#86ac2e,#1f9900);-webkit-background-clip:text;background-clip:text;color:transparent;}
.p-num-unit{font-size:2rem;font-weight:700;background:linear-gradient(90deg,#86ac2e,#1f9900);-webkit-background-clip:text;background-clip:text;color:transparent;}

/* ============================================================
   募集要項(recruit) additions 2026-06-24
   ============================================================ */
.p-check-item{background:#fff;border-radius:6px;box-shadow:0 1px 3px rgba(0,0,0,.15);padding:.9rem 1.25rem;display:flex;align-items:center;gap:.6rem;}
.p-check-item::before{content:"✓";color:var(--MAIN);font-weight:900;font-size:1.1rem;line-height:1;}
.p-flow-card{background:#e8f5ee;border-radius:8px;padding:1.25rem 1rem;text-align:center;height:100%;}
.p-flow-num{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:var(--MAIN);color:#fff;font-weight:700;margin-bottom:.5rem;}
.p-entry-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.p-btn-fill{display:inline-block;background:#1a6b3a;color:#fff;font-weight:700;border-radius:6px;padding:.8rem 2rem;}
.p-btn-fill:hover{background: #fff;color: #1A6B3A;}
.p-btn-outline{display:inline-block;background:#fff;color:#1a6b3a;border:1px solid #1a6b3a;font-weight:700;border-radius:6px;padding:.8rem 2rem;}
.p-btn-outline:hover{background: #1a6b3a;color: #fff;}

/* ============================================================
   CTA CAREERS/ENTRY 2分割 additions 2026-06-24
   ============================================================ */
.p-cta2{display:flex;flex-wrap:wrap;width:100%;}
.p-cta2__col{position:relative;flex:1 1 50%;min-height:300px;display:flex;flex-direction:column;justify-content:center;padding:3rem 2rem 3rem 8%;color:#fff;transition:.3s;text-decoration:none;}
.p-cta2--careers{background:linear-gradient(115deg,rgba(31,153,0,.80) 0%,rgba(134,172,46,.80) 100%),url(/dcms_media/image/cta01.jpg) center center/cover no-repeat;background-blend-mode:multiply,normal;}
.p-cta2--entry{background:linear-gradient(115deg,rgba(134,172,46,.80) 0%,rgba(31,153,0,.80) 100%),url(/dcms_media/image/cta02.jpg) center center/cover no-repeat;}
.p-cta2__col:hover{opacity:.92;}
.p-cta2__col>*{color:#fff;}
.p-cta2__en{font-size:clamp(2.5rem,5vw,4rem);font-weight:700;line-height:1;letter-spacing:.04em;}
.p-cta2__ja{font-size:1.25rem;font-weight:700;margin:.3rem 0 1rem;}
.p-cta2__desc{font-size:.875rem;line-height:1.7;}
.p-cta2__arrow{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border:2px solid #fff;border-radius:50%;margin-top:1.5rem;font-size:1.1rem;align-self: end;}
@media(max-width:767px){.p-cta2__col{flex:1 1 100%;padding:2.25rem 1.5rem;min-height:180px;}}

/*------------手動追加CSS-------------*/
.text-deepgreen {
  color: #1A6B3A;
}

:where(table) th, :where(table)>thead {
  border: none;
  background-color: #F4F9F6;
  color: #1A6B3A;
  text-align: start;
  border-bottom: #1A6B3A 1px solid;
}

:where(table) td {
  border: none;
  border-bottom: var(--DEF) 1px solid;
}

.p-top-ttl__line {
  width: 100%;
  height: 2px;
  margin: 18px auto 0;
  border: 0;
  background: linear-gradient(90deg,#4caf50,#82ab2c);
}

.border-rightgreen {
	border: 1px solid #D0E8D8;
}

.border-deepgreen {
	border: 1px solid #1A6B3A;
}
/* ============================================================
   アーチ型画像（上両端ラウンド）additions 2026-06-25
   ============================================================ */
.p-arch{display:block;border-radius:100px 100px 8px 8px;overflow:hidden;}
.p-arch img{display:block;width:100%;height:100%;object-fit:cover;}
.p-arch.--3x2{aspect-ratio:3/2;}
.p-arch.--portrait{aspect-ratio:3/4;}

.hover-main:hover {
	color: var(--MAIN);
}

/* ============================================================
   TOP page additions 2026-07-03  (/bm-original-top)
   ============================================================ */
:root{
  /* Figma TOPの見出し/数字グラデ（#86ac2e → #1f9900） */
  --top-grad: linear-gradient(72deg, #86ac2e 0%, #1f9900 100%);
  --top-orange: linear-gradient(105deg, #ff8000 0%, #ffae00 100%);
}
#contents {
	padding-top: 0;
}
/* グラデ文字ヘルパー（TOP専用） */
.p-top-grad{
  background: var(--top-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
/* 大型ENラベル（ABOUT / BUSINESS / RECRUIT） */
.p-top-en{
  display: block;
  font-family: var(--fntEN), "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.5rem); /* 72px */
  line-height: 1.05;
  letter-spacing: .03em;
  background: var(--top-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ENの下の日本語ラベル */
.p-top-sub{
  margin-top: .25rem;
  font-weight: 700;
  font-size: 1.25rem; /* 20px */
  color: var(--DEF);
}
.p-top-head{ text-align: center; margin-bottom: 3rem; }

/* 「詳しく見る」白ピルボタン */
.p-top-btn{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #848484;
  border-radius: 100px;
  padding: .75rem 1.25rem .75rem 2rem;
  color: var(--DEF);
  font-size: .875rem;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}
.p-top-btn:hover{ background: var(--MAIN); border-color: var(--MAIN); color: #fff; }
.p-top-btn__ico{ width: 6px; height: 11px; flex: none; color: currentColor; }

/* ---------- MV (mainvisual.html) ---------- */
.p-mv{
  position: relative; overflow: hidden; color: #fff;
  left: 50%; transform: translateX(-50%); width: 100vw; /* 全幅ブリード */
}
.p-mv__bg{ position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, #2e8a14 0%, #7cae39 100%); }
.p-mv__bg::after{
  content: "";
  position: absolute; inset: 0;
  background: url(/dcms_media/image/mv-bg.jpg) center center / cover no-repeat;
  mix-blend-mode: soft-light;
  opacity: .7;
}
.p-mv__inner{
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 2.5rem;
  min-height: min(78vh, 700px);
  padding-block: 4rem;
}
.p-mv__body{ flex: 1 1 50%; }
.p-mv__catch{
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 72px); /* 最大64px（本文カラム内に2行で収める） */
  line-height: 1.4;
  letter-spacing: .02em;
  text-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.p-mv__lead{
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem); /* 18px */
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.p-mv__cta{
  display: inline-flex; align-items: center;
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 100px;
  background: var(--top-orange);
  color: #fff; font-weight: 700; font-size: .9375rem; line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}
.p-mv__cta:hover{ color: #fff; opacity: .92; transform: translateY(-2px); }
.p-mv__cta svg{ width: 19px; height: 14px; flex: none; }
.p-mv__image{flex: 1 1 50%;align-self: stretch;min-height: 0;max-width: 642px;height: 800px;}
.p-mv__image img{ width: 100%; height: 100%; object-fit: cover; border-top-left-radius: 200px; }
@media (max-width: 991px){
  .p-mv__inner{ flex-direction: column; align-items: stretch; gap: 2rem; min-height: 0; padding-block: 3rem; }
  .p-mv__image img{/* aspect-ratio: 4 / 3; */border-top-left-radius: 120px;}
}

@media (max-width: 991px){
	.p-mv__image{max-width: 350px;height: 450px;}

}

@media (max-width: 500px){
	.p-mv__image{max-width: 250px;height: 400px;}

}

/* ---------- ABOUT ---------- */
.p-about{ padding-bottom: 4.5rem; }
.p-about__strip{ position: relative; left: 50%; transform: translateX(-50%); width: 100vw; line-height: 0; }
.p-about__strip img{ width: 100%; height: clamp(220px, 26vw, 379px); object-fit: cover; }
.p-aboutcontainer {margin-top: -3rem;}
.p-about__card{
  position: relative;
  margin-top: -3.5rem;
  background: #fff;
  border-top-left-radius: 80px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex; gap: 2.5rem; align-items: flex-start;}
.p-about__head{ flex: 0 0 30%; }
.p-about__label{ margin-top: .5rem; font-weight: 700; font-size: 1.25rem; }
.p-about__body{ flex: 1; }
.p-about__body p{ line-height: 2.4; font-size: 1rem; }
.p-about__btnwrap{margin-top: 3rem;}
@media (max-width: 767px){
  .p-about__card{ flex-direction: column; gap: 1.25rem; border-top-left-radius: 48px; }
  .p-about__head{ flex: none; }
}

/* ---------- BUSINESS ---------- */
.p-biz{ background: #ecf3e7; }
.p-biz__grid{ --bs-gutter-x: 2rem; --bs-gutter-y: 3.5rem; }
.p-biz__thumb{ border-top-left-radius: 80px; overflow: hidden; }
.p-biz__thumb img{ width: 100%; aspect-ratio: 538 / 252; object-fit: cover; }
.p-biz__title{ margin-top: 1.25rem; font-weight: 700; font-size: 1.5rem; } /* 24px */
.p-biz__txt{ margin-top: .75rem; font-size: .875rem; line-height: 1.7; color: var(--DEF); }
.p-biz__btnwrap{ text-align: center; margin-top: 3.5rem; }

/* ---------- RECRUIT: 社員紹介 ---------- */
.p-recruit{/* padding-block: 4.5rem; */}
.p-member__ttl{
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.p-member__ttl span{ font-weight: 700; font-size: 2rem; } /* 32px */
.p-member__ttl::before, .p-member__ttl::after{
  content: ""; height: 1px; flex: 1; max-width: 455px; background: #ccc;
}
.p-member__grid{ --bs-gutter-x: 3rem; --bs-gutter-y: 2.5rem; }
.p-member__thumb{ border-radius: 160px 160px 8px 8px; overflow: hidden; }
.p-member__thumb img{width: 100%;aspect-ratio: 336 / 420;object-fit: cover;object-position: 78% bottom;}
.p-member__name{ margin-top: 1.25rem; font-weight: 700; font-size: 1.5rem; } /* 24px */
.p-member__txt{ margin-top: .5rem; font-size: .875rem; line-height: 1.7; }
.p-member__btnwrap{ text-align: center; margin-top: 2.5rem; }

/* ---------- RECRUIT: 数字で見るリライト ---------- */
.p-recruit-num{/* padding-bottom: 4.5rem; */}
.p-numbox{
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  background: #ecf3e7;
}
.p-numbox::before{
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(rgba(91,255,7,0.1), rgba(91,255,7,0.1)), url(/dcms_media/image/number-bg.jpg) center center / cover no-repeat;
  background-blend-mode: multiply, normal;
}
.p-numbox > *{ position: relative; z-index: 1; }
.p-numbox__head{ text-align: center; margin-bottom: 2.5rem; }
.p-numbox__en{ font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); } /* 32px grad */
.p-numbox__sub{ margin-top: .5rem; font-size: .875rem; color: var(--DEF); }
.p-numbox__stats{ display: flex; justify-content: center; }
.p-numbox__stat{ position: relative; flex: 1; padding: 0 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.p-numbox__stat + .p-numbox__stat::before{
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 145px; background: #ccc;
}
.p-numbox__icon{flex: none;width: 82px;height: 82px;/* align-self: end; */padding-bottom: 10px;}
.p-numbox__icon img{ width: 100%; height: 100%; object-fit: contain; display: block; }
.p-numbox__body{ text-align: left; }
.p-numbox__label{ font-weight: 700; font-size: 1.25rem; color: #1a1a1a; } /* 20px */
.p-numbox__value{ display: flex; align-items: baseline; justify-content: flex-start; gap: .25rem; margin-top: .25rem; }
.p-numbox__num{font-weight: 700;font-size: clamp(2.5rem, 6vw, 3rem);line-height: 1;min-height: 92px;} /* 80px */
.p-numbox__unit{ font-weight: 700; font-size: 2rem; } /* 32px */
.p-numbox__btnwrap{ text-align: center; margin-top: 2.5rem; }
@media (max-width: 992px){
  .p-numbox{ border-radius: 40px; }
	.p-numbox__num {
    min-height:55px;
}
  .p-numbox__stats{ flex-direction: column; gap: 2rem; }
  .p-numbox__stat + .p-numbox__stat::before{ display: none; }
}

@media (max-width: 992px){
		.p-numbox__unit{ font-weight: 700; font-size: 1.5rem; } /* 32px */

}

/* ---------- header ---------- */
.lib-header__outer.lib-header-BS02 {
  -webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
  box-shadow: none;
}
@media print, screen and (min-width: 992px) {
#wrapper:has(.lib-header-BS02) {
  padding-top: 0;
}

.lib-header__outer {
  height: 268px;
}

.lib-header__bar {
  height: 120px;
  top: 23%;
}

.lib-header__outer.lib-header-BS02 .lib-induce__outer {
  height: 120px;
}

.lib-nav__panel {
  height: 120px;
}
		.lib-header__outer {
    background: linear-gradient(
0deg, rgba(255, 255, 255, 0) 40%, /* #ffffff 0% 位置40% */ rgba(255, 255, 255, 0.6) 60%, /* #ffffff 60% 位置60% */ rgba(255, 255, 255, 1) 72%, /* #ffffff 100% 位置72% */ rgba(255, 255, 255, 1) 100% /* #ffffff 100% 位置100% */);
}

	#wrapper:has(.lib-header-BS02) .lib-hero__outer {
    padding-top: 120px;
    min-height: 320px;
}

	.is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
    height: 120px;
}

	.is-scroll:not(.is-gnav__open) .lib-header__outer {
    height: 268px;
}

.is-scroll .lib-header__logo img {
  width: 200px;
}

.is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__outer {
  height: 120px;
}
}

/* ---------- footer ---------- */

.lib-footer__outer.lib-footer-BS01 .lib-footer__guidance>li~li:before {
    background-color: var(--DEF);
}

.lib-footer__copyright {
    background-color: transparent;
    color: var(--DEF);
    margin-top: 0;
}

.lib-footer__outer {
    background-color: #ECF3E7;
}

.lib-footer__outer.lib-footer-BS01 .lib-footer__guidance a {
  color: var(--DEF);
}

/* ============================================================
   数字で見る(data) 数字・単位フォントサイズ Figma準拠 additions 2026-07-15
   ============================================================ */
.p-num-big{font-size:2.8125rem;}   /* 45px（Figma） */
.p-num-unit{font-size:1.25rem;}    /* 20px（Figma） */

/* ============================================================
   社員紹介カード: 名前1〜2行でも本文(.p-member__txt)の開始位置を揃える additions 2026-07-21
   ============================================================ */
@media (min-width: 768px){
  .p-member__name{ min-height: 2.5em; }   /* lh-sm(1.25)×2行=2.5em。1行名でも2行分確保しtxt開始を統一 */
}