@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% !important;
    }
  }
  .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;
      }
    }
  }
} */

.media-post__sns {
display: none;}

/* ==================================
タイポ
===================================== */
/*---------- 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;
  }
}

/* ==================================
ヘッダー
===================================== */
.lib-header__bar {
  background-color: var(--MAIN);
  width: 100%;
}

.lib-header__inner {
  width: 100%;
}

.lib-header__logo img {
  width: 110px;
}


@media print, screen and (min-width: 992px) {
  .lib-header__outer {
    top: 2%;
    background-color: transparent;
  
  }

  .lib-header__bar {
    background-color: transparent;
  }

  .lib-nav__panel {
    width: auto;
    background-color: var(--WHT);
    border-radius: 0;
    padding: 20px;
}

.is-scroll .lib-header__logo {
  background-color: var(--MAIN);
  padding: 15px;
  border-radius: 0;
}

.lib-header__logo img {
  width: 165px;
}

.is-scroll .lib-nav__panel {
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
}

.lib-header__inner {
  width: 96%;
}

.lib-header__outer.lib-header-BS02 {
  box-shadow: none;
}

.lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
  align-items: center;
}

.lib-header__outer.lib-header-BS02 .lib-induce__outer {
  width: 193px;
  margin-right: 15px;
}

.lib-nav__panel:has(.lib-induce__outer) {
  padding-right: 220px;
}

#wrapper:has(.lib-header-BS02) {
  padding-top: 0;
}

#wrapper:has(.lib-header-BS02) .lib-hero__outer {
  padding-top: 110px;
  padding-bottom: 20px;
  min-height: 245px;
  max-height: 245px;
}

.lib-header__outer {
  height: 85px;
}

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

.lib-nav__outer .lib-induce__outer:has(>li:nth-child(1):nth-last-child(1)) .lib-induce__btn {
  height: 50px;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
  border-radius: 5px !important;
}

.is-scroll .lib-induce__btn {
  height: 50px;
}

.mv {
  position: relative;
  overflow: hidden;
  max-width: none !important;
  padding: 0 !important;
}

.mv .lib-fv__outer {
  position: relative;
  min-height: clamp(420px, 50vw, 720px);
}

/* 右側：画像が背景全体に */
.mv .lib-wide__outer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv .lib-fv__thumb,
.mv .lib-fv__thumb img {
  display: block;
  width: 100%;
  height: 100%;
}
.mv .lib-fv__thumb img {
  object-fit: cover;
}

/* 左側：ティール台形（斜めカット） */
.mv .lib-fv__txtarea {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--MAIN);
  clip-path: polygon(0 0, 58% 0, 38% 100%, 0 100%);
  padding-left: clamp(24px, 7vw, 100px);
  padding-right: clamp(24px, 5vw, 60px);
}

.mv .lib-fv__inside {
  width: 100%;
  max-width: 530px;
}

.mv .lib-card__inside {
  margin-bottom: 0;
}

/* ロゴ */
.mv .lib-card__caption {
  margin: 0 0 clamp(16px, 2vw, 28px);
}
.mv .lib-card__caption img {
  width: clamp(180px, 24vw, 330px);
  height: auto;
}

/* タイトル */
.mv .lib-card__title {
  color: var(--WHT);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 clamp(20px, 3vw, 40px);
  letter-spacing: 0.02em;
}

/* ボタンエリア */
.mv .lib-card__btn {
  /* display: flex; */
  /* gap: 12px; */
  /* flex-wrap: wrap; */
  /* list-style: none; */
  /* padding: 0; */
  /* margin: 0; */
  /* max-width: none !important; */
}
.mv .lib-card__btn .col {
  /* flex: 0 0 auto; */
  /* width: 100%; */
  /* padding: 0; */
}

/* ============================================
   スマホ対応
   ============================================ */
@media (max-width: 767px) {
  .mv .lib-fv__outer {
    min-height: 480px;
  }
  /* SPは斜めを下方向に（画像の上に半透明ティール） */
  .mv .lib-fv__txtarea {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    background: rgba(21, 149, 177, 0.88);
    padding: 32px 20px;
    align-items: flex-start;
    /* padding-top: 80px; */
  }
  .mv .lib-link__btn {
    min-width: 0;
    width: 100%;
  }
}

 /* ============================================
     MV 修正：下部斜めカット ＋ z-index強化                                                                                  ============================================ */

  /* 下部の斜め白カット（左上→右下方向の斜め） */
  .mv::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(49px, 8vw, 126px);
    background: var(--WHT);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 5;
    pointer-events: none;
  }

  /* テキストエリアを画像より確実に前面へ */
  .mv .lib-fv__txtarea {
    z-index: 3 !important;
  }

  /* ボタン・テキスト類を最前面に（画像に潜り込み防止） */
  .mv .lib-fv__inside,
  .mv .lib-card__inside,
  .mv .lib-card__btn,
  .mv .lib-card__btn .col,
  .mv .lib-link__btn {
    position: relative;
    z-index: 4;
  }

  @media (max-width: 1023px) {
    .mv .lib-fv__txtarea {
      clip-path: polygon(0 0, 75% 0, 50% 100%, 0 100%);
    }
    .mv .lib-card__btn {
      flex-direction: column;
      align-items: flex-start;
      /* max-width: 280px; */
    }
    .mv .lib-link__btn {
      min-width: 0;
      width: 100%;
    }
  }

  /* SPでも下部斜めはほどよく */
  @media (max-width: 767px) {
    .mv::after {
      height: 40px;
    }
  }
/* ========================================
フッター
======================================== */
.lib-footer__guidance > li ~ li::before {
  background-color: var(--WHT);
}

@media print, screen and (min-width: 992px) {
.lib-footer__outer.lib-footer-BS01 .lib-footer__utility {
  background-color: transparent;
}
}

.lib-footer__title>a {
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}

.lib-footer__guidance a {
  color: var(--WHT);
}

/* ============================================
     MV：clip-pathを画像側に移す方式
     ============================================ */

  /* テキストエリア：clip-path 解除＆透明に（背景は画像エリア側で確保） */
  .mv .lib-fv__txtarea {
    clip-path: none !important;
    background: transparent !important;
  }

  /* 画像エリア：ここにティール背景 */
  .mv .lib-wide__outer {
    background: var(--MAIN);
  }

  /* 画像本体だけを斜めカット（旧テキストエリアの補完形状） */
  .mv .lib-fv__thumb img {
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 42% 100%);
  }

  /* SP/TBでは画像を上部だけ表示する形に */
  @media (max-width: 1023px) {
    .mv .lib-fv__thumb img {
      clip-path: polygon(0 78%, 100% 0, 100% 100%, 0 100%);
    }
  }

  @media (max-width: 500px) {
    .mv .lib-fv__thumb img {
      clip-path: polygon(0 62%, 100% 27%, 100% 100%, 0% 100%);
    }
  }


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

/* ========================================
TOP
======================================== */
  /* 「体内に .mv というクラスを持つ要素が存在する body」を対象にする */
    @media (min-width: 992px) {
		body:has(.mv) [class*="lib-fv"] + #contents {
      padding-top: 0;
  }
	}

.top-title-en {
  font-size: clamp( 3.5rem, calc( 3.14527027027027rem + 1.5135135135135136vw ), 4.375rem );
}

:where(.lib-link__btn) {
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
  border-radius: 5px;
}

.topic .lib-media__txtarea {
  border-bottom: none !important;
}


.topic .lib-media__title, .lib-media__txt {
  font-size: 1rem !important;
}

.works-swiper-outer {
  overflow: visible;
}
.works-swiper { 
  overflow: visible; 
  position: relative;
}
.works-swiper .swiper-pagination {
  right: 0;
  bottom: -5%;
}
.works-swiper .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background: #70BBE9;
  opacity: 1;
  border-radius: 0;
}
.works-swiper .swiper-pagination-bullet-active {
  background: #005599;
}
.works-swiper .swiper-wrapper {
  align-items: center;
}
.works-swiper .swiper-slide.swiper-slide-active .text-block .name,
.works-swiper .swiper-slide.swiper-slide-active h3 {
  font-size: 20px !important;
  line-height: 2.5 !important;
}
.works-swiper .swiper-slide a:hover {
  opacity: .6;
}
/* レスポンシブ例 */
@media (min-width: 768px) {
  .works-swiper .swiper-slide.swiper-slide-active { 
    width: 50% !important;
  }
  .works-swiper .swiper-pagination {
    right: 0;
    left: auto;
    width: auto;
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  .works-swiper { 
    clip-path: inset(0 -50vw 0 30px);
  }
  .works-swiper .swiper-slide.swiper-slide-active .text-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.feature {
  border-radius: 5px;
}

@media (min-width: 767px) {
.feature {
  margin: 0px -35px;
}
}

/* 背景グラデーション（上：白、下：#1997B2） */
.v-gradient-blue {
    background: linear-gradient(to bottom, #FFFFFF 0%, #1997B2 100%) !important;
    /* box-shadow: 0 5px 5px 0 rgba(0,0,0,.2); */
}

/* カード自体の調整 */
.custom-problem-card {
    border-radius: 8px !important;
    overflow: visible !important; /* 画像をはみ出させるために必須 */
    margin-top: 40px; /* 上の画像分のスペースを確保 */
}

/* アイコン画像をカードの上に浮かせる */
.problem-icon-wrapper {
    margin-top: -45px; /* 上に突き出させる */
    margin-bottom: 20px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon-wrapper img {
    max-height: 100%;
    width: auto;
}

/* 特定の青色テキスト */
.text-info {
    color: #1997B2 !important;
}

/* 三角形（▼）のデザイン */
.section-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 42px 60px 0 60px;
    border-color: #1997B2 transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -111px;
    transform: translateX(-50%);
    z-index: 9;
    /* box-shadow: 0 5px 5px 0 rgba(0,0,0,.2); */
}

/* カード全体のカスタマイズ */
.custom-security-card {
    background-color: #fff !important;
    padding: 10px;
    box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.161) !important;
}

/* アイコンを囲む円 */
.security-icon-circle {
    width: 54px;
    height: 54px;
    background-color: #1997B2; /* 指定の青色 */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Material Symbols のサイズ微調整 */
.security-icon-circle .material-symbols-outlined {
    font-size: 32px;
}

/* タイトルのフォント調整 */
.custom-security-card .lib-card__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: left !important; /* 中央揃えを解除 */
}

/* 本文の行間調整 */
.custom-security-card .lib-card__txt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

/*---------------TOPスライダー----------------*/

/*---------------TOPスライダー----------------*/
.lib-swiper__outer.top {
  overflow: visible;
  clip-path: inset(-1000% -1000% -1000% 0);
}

/* スライダーの外枠を画面端まで見えるようにする */
.top .lib-media__outer {
  overflow: visible !important;
}

.top .lib-media__slider {
  overflow: visible !important;
}

/* カードの基本状態（少し小さくしておく） */
.top .lib-media__item {
  transition: transform 0.3s ease, border 0.3s ease; /* アニメーションを滑らかに */
  border: 1px solid #d1d8dc;
  transform: scale(0.95); /* 非アクティブは少し小さめ */
  opacity: 0.8; /* 非アクティブを少し薄くすると中央が際立ちます */
}

.top .lib-media__item {
  position: relative;
}

.top .lib-media__thumb img {
  object-fit: cover;
}

.top .lib-media__thumb .thumb {
  height: 150px;
}

.top .lib-media__category {
  position: absolute;
  top: 3%;
  z-index: 1;
  left: 3%;
}

.top .lib-media__category .badge {
  border-radius: 30rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--MAIN);
}

.top .lib-media__txtarea {
padding: 1rem;
background-color: #fff;
}

.top .lib-media__slider .swiper-wrapper .lib-media__time {
  padding-top: .5rem;
  margin-top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-top: none;
  min-height: 32px;
  color: var(--DGRY);
  order: 1;
}

.top .lib-media__title {
order: 2;
}

.top .lib-media__txt {
order: 3;
}

/* スライダー全体の親要素：左側をカット */
.top .lib-media__outer {
  position: relative;
  /* 左端（0%）から右端（100%）までを表示、左外側は切り落とす */
clip-path: inset(-100% -100% -100% 0);
  overflow: visible !important;
}

/* Swiperコンテナ本体 */
.top .lib-media__slider {
  overflow: visible !important;
}

/* カードの基本状態：少し小さく、薄くしておく（ジャンプ率の差を出すため） */
.top .lib-media__item {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1); /* 非アクティブを小さく */
  transform-origin: center center;
  opacity: 0.6;
  border: 1px solid #d1d8dc;
  border-radius: 5px;
}

/* アクティブなカード（一番左）の設定 */
.top .lib-media__item.swiper-slide-active {
  transform-origin: left center;
  opacity: 1;
  border: 3px solid #00a0be !important; /* 枠線を太く強調 */
  z-index: 20;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
  margin-right: 30px;
	  transform: scale(1.15);
}

.top .swiper-slide-next {
	margin-left: 45px !important;
}

.top .lib-media__item {
    opacity: 1;
}

/* ループ時のちらつき防止：アクティブの隣も少し見えるように調整 */
.top .lib-media__item.swiper-slide-next {
  opacity: 1;
}

.top .lib-swiper__control .lib-swiper__btn {
  display: none;
}

.top .lib-swiper__control {
  justify-content: flex-end;
}

/* サービス紹介スライダー（活用事例と同じ拡大＆左側透過処理） */
.lib-sld-001 .swiper-slide {
  transition: opacity .4s ease, transform .4s ease;
}
.lib-sld-001 .swiper-slide-prev {
  opacity: 0.6;
}

.top .swiper-pagination-bullet {
  background-color: var(--LGRY)!important;
  border: var(--LGRY) 1px solid;
  opacity: 1!important;
  margin-top: 5px!important;
  width: 33px!important;
  height: 5px!important;
  -webkit-transition: .3s;
  transition: .3s;
  margin-left: 10px;
  border-radius: 0;
}

/* ============================================
   活用事例 & サービス紹介 共通仕様
   ============================================ */

/* ── 左側スライドを完全非表示 ── */
.lib-swiper__outer.top .swiper-slide-prev,
.lib-sld-001 .swiper-slide-prev {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s;
}

/* ── pagination：横線4本デザイン ── */
.lib-swiper__outer.top .lib-swiper__pagination,
.lib-sld-001 .lib-swiper__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 28px 0 0;
  width: auto;
  position: relative;
}
.lib-swiper__outer.top .lib-swiper__pagination .swiper-pagination-bullet,
.lib-sld-001 .lib-swiper__pagination .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  border-radius: 0;
  background: #d8d8d8;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: background .3s ease, height .3s ease;
}
.lib-swiper__outer.top .lib-swiper__pagination .swiper-pagination-bullet-active,
.lib-sld-001 .lib-swiper__pagination .swiper-pagination-bullet-active {
  background: #00A0E0;  /* テーマカラー：実サイトのアクセントカラーに合わせて要調整 */
  height: 3px;
}

/* ============================================
   サービス紹介：アクティブカード拡大
   ============================================ */
.lib-sld-001 .swiper-slide {
  transition: transform .4s ease, opacity .4s ease;
  transform-origin: left center;
  background-color: var(--WHT);
  border: 1px solid var(--GRY);
}
.lib-sld-001 .swiper-slide-active {
  transform: scale(1.15);
  z-index: 2;
  border: 1px solid var(--MAIN) !important;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
}

.lib-card__txtarea{
  padding: 1rem;
}

.lib-sld-001 .lib-card__title {
  font-size: 1.25rem;
}

/* アクティブ：メインカラー（ホバー指定は無し） */
.lib-swiper__outer.top .lib-swiper__pagination .swiper-pagination-bullet-active,
.lib-sld-001 .lib-swiper__pagination .swiper-pagination-bullet-active {
  background-color: var(--MAIN) !important;
}

/* 活用事例側のpaginationを非表示 */
.top.lib-blog-001 .lib-swiper__pagination {
  display: none !important;
}

  /*----------------------topスライダーここまで--------------------*/

  .onayami01 {
    max-width: 35px;
    margin-top: -10%;
  }

  .onayami02 {
    max-width: 100px;
    margin-top: -10%;
  }

  .onayami03 {
    max-width: 85px;
    margin-top: -10%;
  }

  @media (min-width: 992px) {
  .onayami01 {
    max-width: 70px;
    margin-top: -20%;
  }

  .onayami02 {
    max-width: 200px;
    margin-top: -20%;
  }

  .onayami03 {
    max-width: 170px;
    margin-top: -20%;
  }
  }

  @media (min-width: 1024px) {
  .onayami01 {
    max-width: 40px;
    margin-top: -12%;
  }

  .onayami02 {
    max-width: 110px;
    margin-top: -10%;
  }

  .onayami03 {
    max-width: 100px;
    margin-top: -15%;
  }
  }

.radius-5 {
	border-radius: 5px;
}

/* ========================================
下層
======================================== */
/*---------- 下層MV ----------*/
.lib-hero__outer {
  background: linear-gradient(135deg, var(--MAIN) 0%, #076B82 100%);
}

.lib-hero__inner {
  color: var(--WHT);
}

.fs-48 {
  font-size: clamp( 2rem, calc( 1.5945945945945945rem + 1.7297297297297298vw ), 3rem );
}

.lib-flow-001__col:nth-child(3n):after {
  display: block;
  }

  .lib-flow-002__item:after {
    border-top-color: var(--MAIN);
}

/* 全体コンテナ */
.step-container {
  display: flex;
  flex-direction: column; /* SP: 縦並び */
  gap: 15px;
  width: 100%;
}

/* 共通スタイル */
.step-item {
  background-color: var(--MAIN);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  position: relative;
}

.step-label {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-text {
  font-size: 0.9rem;
  margin: 0;
}

/* --- SP時の形状（下向き矢印） --- */
.step-item {
  /* 上を凹ませ、下を凸にする */
  clip-path: polygon(0% 0%, 50% 5%, 100% 0%, 100% 95%, 50% 100%, 0% 95%);
}

/* 最初：上を平らに */
.step-item:first-child {
  clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0% 95%);
}

/* 最後：下を平らに */
.step-item:last-child {
  clip-path: polygon(0% 0%, 50% 5%, 100% 0%, 100% 100%, 0% 100%);
}

/* --- PC時の形状（横向き矢印） --- */
@media (min-width: 992px) {
  .step-container {
    flex-direction: row; /* 横並び */
    gap: 8px;
  }

  .step-item {
    flex: 1;
    padding: 30px 10px;
    /* 左を凹ませ、右を凸にする */
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
  }

  /* 最初：左を平らに */
  .step-item:first-child {
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  }

  /* 最後：右を平らに */
  .step-item:last-child {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 5% 50%);
  }
  
  .step-text {
    white-space: nowrap;
  }
}

.lib-toggle__outer {
  border-top: var(--GRY) 1px solid;
  border-bottom: var(--GRY) 1px solid;
  border: var(--MAIN) 1px solid;
  padding: 1rem 1rem !important;
}

 /* ========================================================
     日新 VIXELL 製品ページ 追加CSS（2026-06-15）
     ======================================================== */

  /* === ② 導入の流れ 6ステップ 6列×1段（横一列）レイアウト（国際輸送サービス等） === */
  @media (min-width:992px){
    .step-container.step-flow-3{ flex-wrap:nowrap; gap:8px; }
    .step-container.step-flow-3 .step-item{
      flex:1 1 0%;
      max-width:none;
      clip-path:polygon(0% 0%,95% 0%,100% 50%,95% 100%,0% 100%,5% 50%);
    }
    /* 先頭（STEP1）＝左ノッチなし */
    .step-container.step-flow-3 .step-item:first-child{
      clip-path:polygon(0% 0%,95% 0%,100% 50%,95% 100%,0% 100%);
    }
    /* 最後（STEP6）だけ右矢印なしフラット */
    .step-container.step-flow-3 .step-item:last-child{
      clip-path:polygon(0% 0%,100% 0%,100% 100%,0% 100%,5% 50%);
    }
    .step-container.step-flow-3 .step-text{ white-space:normal; }
  }
  .step-container.step-flow-3 .step-note{
    display:block;
    font-size:0.72rem;
    line-height:1.4;
    margin-top:6px;
    opacity:.95;
  }
/* MV見出し内の VIXELL ロゴを文字サイズに合わせる（2026-06-25 追記） */
.lib-fv-002 .lib-card__title img {
  height: 1.1em;        /* 文字の高さに合わせて縮小 */
  width: auto;          /* 縦横比キープ */
  vertical-align: -0.18em; /* 日本語ベースラインに光学調整 */
  margin: 0 .12em;      /* 前後の文字との余白 */
}

.lib-title__outer.--typeA :where(.title):before {
  top: 0em;
}

.w-18 {
	width: 18% !important;
}
