@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: 1.5rem;
  }
  >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(--MAIN);
      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 */
.fs-50 {
  font-size: 3.125rem;
}
@media print,
screen and (min-width: 768px) {
  .fs-md-50 {
    font-size: 3.125rem;
  }
  .fs-md-60 {
    font-size: 3.75rem;
  }
}
@media print,
screen and (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem;
  }
  .fs-lg-70 {
    font-size: 4.375rem;
  }
  .fs-lg-80 {
    font-size: 5rem;
  }
}

/* 縦書き */
.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(--MAIN), -2px 2px 1px var(--MAIN), 2px -2px 1px var(--MAIN), -2px -2px 1px var(--MAIN), 2px 0px 1px var(--MAIN), 0px 2px 1px var(--MAIN), -2px 0px 1px var(--MAIN),
    0px -2px 1px var(--MAIN);
}
.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;
  }
}

/* ==================================
ヘッダー
===================================== */
.lib-nav__btn,
.lib-header__outer.lib-header-BS02 .lib-induce__btn {
  font-weight: 500;
}
/* スクロール変化時のアニメーションを無効化 */
html.is-scroll .lib-induce__btn {
  transition: none !important;
  -webkit-transition: none !important;
}
/* マウスホバー時の動きだけ戻す（必要に応じて） */
html.is-scroll .lib-induce__btn:hover {
  transition: background-color 0.3s ease, opacity 0.3s ease !important;
}
/* 親要素側の transition もまとめてオフにする */
html.is-scroll .lib-header__outer,
html.is-scroll .lib-header__inner,
html.is-scroll .lib-induce__outer {
  transition: none !important;
  -webkit-transition: none !important;
}
@media print,
screen and (min-width: 992px) {
  .lib-header__outer {
    height: 80px;
  }
  #wrapper:has(.lib-header-BS02) {
    padding-top: 80px;
  }
  .is-scroll:not(.is-gnav__open) .lib-header__outer {
    height: 80px;
  }
  .lib-nav__panel:has(.lib-induce__outer) {
    padding-right: 440px;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__outer {
    flex-direction: row;
    /* width: 400px; */
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    gap: 1rem;
    right: 1rem;
  }
  .is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__btn:before {
    margin-bottom: 0;
    margin-right: 5px;
  }
  .is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__btn {
    flex-direction: row;
  }
  .is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__outer {
    height: 50px;
  }
}
@media print,
screen and (max-width: 991px) {
  .lib-header__outer.typeS .lib-child__panel {
    margin-left: 0;
  }
  .lib-nav__outer .lib-induce__outer {
    gap: 20px;
  }
}

/* ========================================
フッター
======================================== */
.lib-footer__guidance>li~li::before {
  background-color: var(--WHT);
}
.lib-footer__guidance a {
  color: var(--WHT);
}
.lib-footer__title>a {
  background-color: transparent;
  border: none;
}
.lib-footer__list {
  display: block;
}
.lib-footer__outer.lib-footer-BS01 .lib-footer__utility,
.lib-footer__copyright {
  background-color: var(--MAIN);
}
.lib-footer__logo {
  width: 300px;
}
@media print,
screen and (max-width: 991px) {
  .lib-footer__outer.lib-footer-BS01 .lib-footer__guidance {
    padding-top: 20px;
  }
}
@media print,
screen and (max-width: 767px) {
  .lib-footer__list {
    padding-left: 20px;
  }
}

/* ========================================
CTA
======================================== */

/* ========================================
TOP
======================================== */
#contents {
  padding-top: 0;
}
body {
  font-weight: 500;
}
:where(.lib-link__btn) {
  border-radius: 100px;
}
/* ========================================
下層
======================================== */
/*---------- 下層MV ----------*/
.lib-hero__outer {
  background-color: var(--MAIN) !important;
}
.lib-hero__outer .lib-hero__txtarea {
  color: var(--WHT);
}

/*---------- 仕事内容 ----------*/
@media print,
screen and (min-width: 992px) {
  .p-step .lib-timeline__headline {
    width: 120px;
  }
  .p-step .lib-timeline-001__row:before {
    top: 50px;
    left: 2rem;
  }
  .p-step .lib-timeline-001__headline .title {
    font-size: 2rem;
  }
  .p-step .lib-timeline__txt .title {
    font-size: 1.5rem;
  }
}

/*---------- 募集要項 ----------*/
/* 矢印アイテムの基本スタイル */
.step-item {
  /* 矢印の形に切り抜き */
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
  min-height: 80px;
}
/* 最初の要素だけ左側の凹みを無くす（お好みで） */
.step-flow-container .col:first-child .step-item {
  /* clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 50%, 0% 0%); */
}
@media print,
screen and (max-width: 767px) {
  .step-item {
    clip-path: polygon(100% 0%, 100% 100%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
    min-height: 100px;
  }
}


/* ==========================================================================
   コンクリート規格表（共通デザイン）
   ========================================================================== */
.concrete-table-zone .concrete-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #005bac;
  /* 外枠の濃い青 */
  font-size: 14px;
  table-layout: fixed;
  /* 列幅の固定機能を有効化 */
}
.concrete-table-zone .concrete-spec-table th {
  background-color: #005bac;
  /* ヘッダーの青 */
  color: #ffffff;
  border: 1px solid #1d70b8;
  /* 内側の青線 */
  padding: 12px 4px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.concrete-table-zone .concrete-spec-table td {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #1d70b8;
  /* 内側の青線 */
  padding: 14px 4px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.concrete-table-zone .concrete-spec-table td.symbol-cell {
  font-size: 16px;
  font-weight: normal;
}

/* 各列の基本幅設定（共通） */
.concrete-table-zone .concrete-spec-table th.col-type {
  width: 140px;
}
/* 種類（ユーザー様調整版：140pxに更新） */
.concrete-table-zone .concrete-spec-table th.col-size {
  width: 165px;
}
/* 粗骨材の最大寸法(mm) */
.concrete-table-zone .concrete-spec-table th.col-slump {
  width: 130px;
}
/* スランプ(cm) */
.concrete-table-zone .concrete-spec-table th.col-strength-num {
  width: 44px;
}
/* 呼び強度の各数値列 */


/* ==========================================================================
   【出し分け】固有設定（種類列の拡張に伴い、全体幅を＋10pxずつ安全に調整済）
   ========================================================================== */
/* 1つ目の表組（11列用） */
.concrete-table-zone .concrete-spec-table.table-11col {
  min-width: 920px;
  /* 140 + 165 + 130 + (44 * 11) = 919px */
}

/* 2つ目の表組（10列用） */
.concrete-table-zone .concrete-spec-table.table-10col {
  min-width: 880px;
  /* 140 + 165 + 130 + (44 * 10) = 875px */
}

/* 3つ目の表組（15列用：高強度コンクリート） */
.concrete-table-zone .concrete-spec-table.table-15col {
  min-width: 1100px;
  /* 140 + 165 + 130 + (44 * 15) = 1095px */
}

/* ==========================================================================
   コンクリート規格表（共通デザイン）
   ========================================================================== */
.concrete-table-zone .concrete-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #005bac;
  /* 外枠の濃い青 */
  font-size: 14px;
  table-layout: fixed;
  /* 列幅の固定機能を有効化 */
}
.concrete-table-zone .concrete-spec-table th {
  background-color: #005bac;
  /* ヘッダーの青 */
  color: #ffffff;
  border: 1px solid #1d70b8;
  /* 内側の青線 */
  padding: 12px 4px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.concrete-table-zone .concrete-spec-table td {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #1d70b8;
  /* 内側の青線 */
  padding: 14px 4px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.concrete-table-zone .concrete-spec-table td.symbol-cell {
  font-size: 16px;
  font-weight: normal;
}

/* 各列の基本幅設定（共通） */
.concrete-table-zone .concrete-spec-table th.col-type {
  width: 140px;
}
/* 種類 */
.concrete-table-zone .concrete-spec-table th.col-size {
  width: 165px;
}
/* 粗骨材の最大寸法(mm) */
.concrete-table-zone .concrete-spec-table th.col-slump {
  width: 130px;
}
/* スランプ(cm) */
.concrete-table-zone .concrete-spec-table th.col-strength-num {
  width: 44px;
}
/* 呼び強度の各数値列 */


/* ==========================================================================
   【出し分け】固有設定
   ========================================================================== */
/* 1つ目の表組（11列用） */
.concrete-table-zone .concrete-spec-table.table-11col {
  min-width: 920px;
  /* 140 + 165 + 130 + (44 * 11) = 919px */
}

/* 2つ目の表組（10列用） */
.concrete-table-zone .concrete-spec-table.table-10col {
  min-width: 880px;
  /* 140 + 165 + 130 + (44 * 10) = 875px */
}

/* 3つ目の表組（15列用：高強度コンクリート） */
.concrete-table-zone .concrete-spec-table.table-15col {
  min-width: 1120px;
  /* ★長文見出しの拡張に合わせて、1100pxから1120pxに調整 */
}
/* ★追加：今回の長文見出しが綺麗に収まるよう、15列目のテーブルのみ個別に幅を150pxに拡張 */
.concrete-table-zone .concrete-spec-table.table-15col th.col-slump {
  width: 150px;
  white-space: normal;
  /* セル内での意図的な上下2行改行を許可 */
}


/* ==========================================================================
   表組の上下テキスト用スタイル
   ========================================================================== */
.concrete-table-zone .table-info-top {
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.6;
  text-align: left;
}
.concrete-table-zone .table-info-top p {
  margin: 0 0 16px 0;
}
.concrete-table-zone .table-info-top p:last-child {
  margin-bottom: 0;
}
/* 1.JIS〜 の文字スタイル */
.concrete-table-zone .table-info-top .info-cert {
  font-size: 16px;
  font-weight: 500;
}
/* 認証に係る製品〜 の文字スタイル */
.concrete-table-zone .table-info-top .info-type {
  font-size: 15px;
  font-weight: 500;
}

/* 注記（下部テキスト）の文字スタイル */
.concrete-table-zone .table-info-bottom {
  margin-top: 15px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.concrete-table-zone .table-info-bottom p {
  margin: 0;
}

/* その他のテキストを「500」にする共通クラス */
.font-w500 {
  font-weight: 500 !important;
}

/* ==========================================================================
   コンクリート強度範囲チャート クライアント希望完全再現版
   ========================================================================== */
.concrete-chart-zone .concrete-strength-chart {
  width: 100%;
  min-width: 810px;
  /* 最右端の数字「130」のはみ出しを防ぐ最小幅 */
  position: relative;
  padding-right: 25px;
  /* 右端の文字切れを完全に救済するセーフティエリア */
  box-sizing: border-box;
}

/* ヘッダー目盛り部分 */
.concrete-chart-zone .chart-header-row {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  /* グラフ本体との間の余白 */
}
.concrete-chart-zone .chart-label-col-empty {
  width: 110px;
  /* 左列スリム幅 */
  flex-shrink: 0;
}
.concrete-chart-zone .chart-timeline-col {
  flex-grow: 1;
  position: relative;
  padding-top: 42px;
  /* ★「設計基準強度」の文字のすぐ下の余白をさらに広げました（30px → 42px） */
  height: 62px;
  /* パディングの拡張に合わせて全体の高さを自動調整 */
}
.concrete-chart-zone .scale-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  white-space: nowrap;
}
.concrete-chart-zone .scale-numbers-wrap {
  position: relative;
  width: 100%;
  height: 20px;
}
.concrete-chart-zone .scale-number {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: bold;
  color: #1a1a1a;
}

/* チャートメイン本体 */
.concrete-chart-zone .chart-body {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid #005bac;
  /* 外枠のきれいな青 */
  background-color: #ffffff;
}
.concrete-chart-zone .chart-body-row {
  display: flex;
  height: 60px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #1d70b8;
  /* 行の区切り線 */
}
.concrete-chart-zone .chart-body-row:last-child {
  border-bottom: none;
}

/* 左側ラベルエリア */
.concrete-chart-zone .chart-label-col {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #005bac;
  /* 境界の太線 */
  background-color: #ffffff;
}
.concrete-chart-zone .type-name {
  font-size: 15px;
  font-weight: bold;
  color: #1a1a1a;
}
/* ★ユーザー様調整版：文字サイズ・マージンを完全反映 */
.concrete-chart-zone .type-range {
  font-size: 15px;
  font-weight: bold;
  color: #4a4a4a;
  margin-top: -3px;
}

/* 右側バー設置エリア */
.concrete-chart-zone .chart-bar-col {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.concrete-chart-zone .chart-col-last-wrapper {
  flex-grow: 1;
  display: flex;
  position: relative;
}
.concrete-chart-zone .strength-bar {
  position: absolute;
  height: 24px;
  /* 上下に美しい余白が生まれるバーの太さ */
  background-color: #005bac;
}

/* 背景のグリッド構造 */
.concrete-chart-zone .chart-grid-bg {
  position: absolute;
  left: 110px;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
.concrete-chart-zone .grid-col {
  flex: 1;
  border-right: 1px solid #1d70b8;
  /* 10刻みの通常の縦線 */
  /* セルの50%の位置にだけ、淡いブルーグレーの細線を1本配置（5刻み） */
  background-image: linear-gradient(to right, transparent calc(50% - 0.5px), #e8f2fc calc(50% - 0.5px), #e8f2fc calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 100% 100%;
}
.concrete-chart-zone .grid-col:last-child {
  border-right: none;
}

/* 注記エリア全体を「強度80」の垂直線上に固定 */
.concrete-chart-zone .chart-note-area {
  position: absolute;
  left: calc(110px + 50%);
  /* 強度「80」＝右側エリアのジャスト50%位置 */
  top: 0;
  height: 180px;
  /* N・M・Lの3行分のスパン */
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
}
/* 右向き中括弧「 } 」 */
.concrete-chart-zone .note-bracket {
  width: 12px;
  height: 100%;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="180" viewBox="0 0 12 180"><path d="M0,2 Q6,2 6,12 L6,82 Q6,90 12,90 Q6,90 6,98 L6,168 Q6,178 0,178" fill="none" stroke="%231d70b8" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
/* 中括弧からボックスまでの間「だけ」に短い引き出し線を引き、右側のはみ出しを完全消去 */
.concrete-chart-zone .note-line {
  width: 25px;
  /* 線の長さ */
  height: 0;
  border-top: 1.5px solid #1d70b8;
  flex-shrink: 0;
}
/* 直角ホワイト注記ボックス */
.concrete-chart-zone .note-box {
  background-color: #ffffff;
  border: 1.5px solid #1d70b8;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: bold;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 脚注 */
.concrete-chart-zone .chart-footnote {
  font-size: 15px;
  font-weight: bold;
  color: #1a1a1a;
  margin-top: 12px;
  text-align: left;
}

/* ==========================================================================
   【追加出し分け】新型チャート（30〜80目盛り・5分割用）の固有設定
   ========================================================================== */
/* マス目が減った分、横スクロールコンテナ内で間延びせず美しく収まる幅に調整 */
.concrete-chart-zone.chart-type-80 .concrete-strength-chart {
  min-width: 620px;
}
/* 今回の5分割スケールに合わせて、最右端（80）の閉じ線を正しく補完 */
.concrete-chart-zone.chart-type-80 .chart-grid-bg {
  border-right: 2px solid #005bac;
}

/* ==========================================================================
   【 chart-type-80 専用 】グラフの横幅を「700px」にし、80の目盛り線を整える設定
   ※詳細度を上げているため、他のすべての表組や130までのグラフには一切影響しません。
   ========================================================================== */

/* 1. グラフ全体の横幅をご指定の「700px」に広げて固定します */
.concrete-chart-zone.chart-type-80 .concrete-strength-chart {
  width: 700px;
  /* ★ ご指定の 700px に拡張 */
  min-width: 700px !important;
  /* 共通設定を強制上書きしてサイズを固定します */
  max-width: 700px;
}

/* 2. 80の目盛り線が太くなっていた原因（2pxの太い外枠線）を完全に消去します */
.concrete-chart-zone.chart-type-80 .chart-grid-bg {
  border-right: none !important;
}

/* 3. 消去した代わりに、80の目盛り線を他のすべての縦線と「完全に同じ細さ（1px）」で描き直します */
.concrete-chart-zone.chart-type-80 .grid-col:last-child {
  border-right: 1px solid #1d70b8 !important;
}

/* 4. マス目が広がった分、5刻みの中心の細線も自動で等分追従します（変更なし） */
.concrete-chart-zone.chart-type-80 .grid-col {
  border-right: 1px solid #1d70b8;
  background-image: linear-gradient(to right, transparent calc(50% - 0.5px), #e8f2fc calc(50% - 0.5px), #e8f2fc calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 100% 100%;
}

.lib-table__01 :where(a):where(:not([class*=lib-])):where(:not([class*=hover-]:not([class*=text-hover]))) {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

ul.lib-footer__list li a span.txt {
  font-size: 15px;
}