@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);
}

/* 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__logo img {
  width: 200px;
}

@media print,
screen and (min-width: 992px) {
  .lib-nav__panel:has(.lib-induce__outer) {
    padding-right: 160px;
  }

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

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

.lib-header__outer.lib-header-BS02 .lib-induce__outer.w-140 {
  width: 140px;
}

.no-link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}



/* ========================================
フッター
======================================== */
.lib-footer__guidance>li~li::before {
  background-color: currentColor !important;
}

.lib-footer__outer.lib-footer-BS02 .lib-footer__copyright {
  background-color: transparent;
  width: 100%;
}

@media print,
screen and (min-width: 576px) {
  .lib-footer__outer.lib-footer-BS02 .lib-footer__copyright {
    width: unset;
  }
}

.p-sdgs-wrap .flex-wrap {
  img {
    max-width: 100px;
    width: 10%;
    height: auto;
  }
}

.lib-footer__list {
  display: block;
}

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


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

/* ========================================
TOP
======================================== */
.mv-title-left {
  position: absolute;
  top: 200px;
  left: 380px;
  z-index: 1;
  writing-mode: vertical-rl;
  --bg-opacity: 0.6;
}

@media print,
screen and (max-width: 991px) {
  .mv-title-left {
    left: 55%;
    transform: translateX(-55%);
    --bg-opacity: 0.8;
  }
}

@media print,
screen and (max-width: 575px) {
  .mv-title-left {
    left: 57%;
    transform: translateX(-57%);
  }
}

.mv-title-right {
  position: absolute;
  top: 200px;
  left: 290px;
  z-index: 1;
  writing-mode: vertical-rl;
  --bg-opacity: 0.6;
}

@media print,
screen and (max-width: 991px) {
  .mv-title-right {
    left: 45%;
    transform: translateX(-45%);
    --bg-opacity: 0.8;
  }
}

@media print,
screen and (max-width: 575px) {
  .mv-title-right {
    left: 43%;
    transform: translateX(-43%);
  }
}


.mv-title-right .fv-title,
.mv-title-left .fv-title {
  font-size: clamp(22px, calc(18.116504854368934px + 1.035598705501618vw), 38px);
}


.top-service-list {
  li {
    a:hover {
      background-color: #e3f3ff;
      border-radius: 10px;
    }

    a:hover img {
      filter: saturate(0);
    }
  }
}

.top-service-list-title {
  margin: 0 auto;
  position: relative;
  border-bottom: 60px solid #FFF;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  height: 0;
  max-width: 760px;
  z-index: 3;
  top: -6rem;
  text-align: center;

  h2 {
    filter: none;
    padding-top: 13px;
    font-size: clamp(18px, calc(15.572815533980583px + 0.6472491909385114vw), 28px);
  }
}

@media print,
screen and (max-width: 575px) {
  .top-service-list-title {
    width: 100%;
    border-bottom: 50px solid #FFF;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    top: -4rem;
  }
}

.p-reason-item {
  img {
    width: 100%;
    height: auto;
  }
}

.p-reason-num {
  border-color: var(--MAIN);
  color: var(--WHT);
  background-color: var(--MAIN);
  font-weight: 700;
  font-size: clamp(18px, calc(15.572815533980583px + 0.6472491909385114vw), 28px);
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  top: 123px;
  left: 30px;
}

@media print,
screen and (max-width: 991px) {
  .p-reason-num {
    bottom: unset;
    left: 10px;
    top: 188px;
  }
}

@media print,
screen and (max-width: 767px) {
  .p-reason-num {
    bottom: unset;
    top: 136px;
  }
}


@media print,
screen and (max-width: 575px) {
  .p-reason-num {
    bottom: unset;
    left: 10px;
    top: 80px;
  }
}



/* ==========================
-----導入実績ループエリア-----
==========================*/

/* /---------- ループテキスト ----------/ */
.p-loop-text {
  width: 100vw;
  overflow: hidden;
  margin-left: calc(50% - 50vw);

  .p-loop-box {
    display: flex;
    width: max-content;
  }

  .c-loop-item {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
  }

  .c-loop-item::before {
    content: unset;
  }

  .c-loop-text {
    display: flex;
    white-space: nowrap;
    min-width: auto;
    font-size: clamp(6.25rem, calc(3.125rem + 12.5vw), 12.5rem);
  }

  .thumb {
    flex: 0 0 auto;
  }
}

.p-loop-text {
  .thumb {
    img {
      height: 180px;
      width: auto;
      object-fit: cover;
    }
  }
}

/* ループアニメーション */
@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.p-loop-text .c-loop-item:first-child {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;

  &:first-child {
    -webkit-animation: loop 100s -50s linear infinite;
    animation: loop 100s -50s linear infinite;
  }

  &+.c-loop-item {
    -webkit-animation: loop2 100s linear infinite;
    animation: loop2 100s linear infinite;
  }
}

/* /左から右に流れるバージョン/ */
/* 左から右へ流れるアニメーション（新規追加） */
/* @keyframes loop-reverse {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes loop2-reverse {
  0% {
    transform: translateX(-200%);
  }

  to {
    transform: translateX(0);
  }
} */

/* 左から右に流したい場合のクラス（既存の構造をベースに適用） */
/* .p-loop-text.-reverse {
  .c-loop-item:first-child {
    -webkit-animation: loop-reverse 100s -50s linear infinite;
    animation: loop-reverse 100s -50s linear infinite;
  }

  .c-loop-item+.c-loop-item {
    -webkit-animation: loop2-reverse 100s linear infinite;
    animation: loop2-reverse 100s linear infinite;
  }
} */

/* 管理画面ではオフ */
#tinymce,
.editor_block {
  .p-top-recruit-slider {
    position: static !important;

    .p-loop-box {
      flex-direction: column;

      .c-loop-item {
        animation: unset;

        .c-loop-text {
          width: 100%;
        }
      }
    }
  }
}

/*企業概要*/
.lib-fv__thumb.top-company {
  height: 60vh;
}

@media print,
screen and (min-width: 576px) {
  .lib-fv__thumb.top-company {
    height: 600px;
  }
}

.company-logo img {
  object-fit: contain;
}



/* ========================================
下層
======================================== */
/*---------- 下層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;
  }
} */


/* ======= 太陽光パネルページ ============*/

.c-solar-flow-border {
  border-left: solid 2px #1f92ca;
}

.fs-small {
  font-size: small;
}

/* 共通設定 */
.plus-between::before,
.plus-between::after {
  content: "";
  position: absolute;
  background-color: #FFF;
  z-index: 5;
}

/* --- スマホ時（縦並び） --- */
@media (max-width: 767px) {

  .plus-between::before,
  .plus-between::after {
    top: -2.1rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .plus-between::before {
    width: 40px;
    height: 4px;
  }

  .plus-between::after {
    width: 4px;
    height: 40px;
  }
}

/* --- PC時（横並び） --- */
@media (min-width: 768px) {

  .plus-between::before,
  .plus-between::after {
    top: 50%;
    left: -2.5rem;
    transform: translate(-50%, -50%);
  }

  .plus-between::before {
    width: 40px;
    height: 4px;
  }

  .plus-between::after {
    width: 4px;
    height: 40px;
  }
}

/* ======= 蓄熱式電気暖房機ページ ============*/
@media (max-width: 1300px) {
  .p-heater {
    right: -15% !important;
  }
}

@media (max-width: 991px) {
  .p-heater {
    right: -5% !important;
  }
}

@media (max-width: 767px) {
  .p-heater {
    right: 0% !important;
  }
}

/* ======= 蓄電池/充電スタンドページ ============*/
.p-ev-stand {
  top: 20%;
  right: 0;
}

/* @media (max-width: 991px) {
  .p-ev-stand {
    top: 34%;
  }
} */

@media (max-width: 767px) {
	.p-ev-stand {
  top: 20%;
  right: 0;
}
	
.p-ev-stand img {
      height: 300px;
      width: auto;
  }
}

@media (max-width: 576px) {	
  .p-ev-stand img {
      height: 200px;
  }
}

.c-num-circle {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  background-color: #ffffff;
  display: inline-block;
}


/* ======= 当社の強みページ ============*/
.p-strength-num {
  width: 400px;
}

@media (max-width: 991px) {
  .p-strength-num {
    width: 100%;
  }
}

.lib-cnt-015__title.text-wht.p-strength-num .title:after {
  background-color: #a5a5a6;
}

.lib-cnt-015__title.p-strength-num h3 .num {
  font-size: clamp(150px, calc(120.873786407767px + 7.766990291262135vw), 270px);
}

.p-tag-strength {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 0.9em;
  margin-right: 2.3em;
  padding: 5.5px 25px;
  background: var(--ACC);
  color: #FFFFFF;
}

.p-strength-tag-wrap li span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: var(--ACC);
  border-width: 18px 19px;
  width: 0;
  height: 0;
}

/* ======= メンテナンスページ ============*/


/* 1. 全体共通の設定 */
.p-maintenance-item {
  background-color: #fff;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  padding: 1.5rem 0;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
	min-height: 100px;
}

.maintenance-flow .col-4 {
  position: relative;
	
}

/* ＋マークの共通デザイン（サイズとPC時の位置） */
.maintenance-flow .col-4:not(:last-child)::after,
.maintenance-flow .col-4:not(:last-child)::before {
  content: "";
  position: absolute;
  background-color: #fff;
  z-index: 10;
  border-radius: 2px;

  /* PC時のデフォルト位置 */
  right: 0px;
  top: 50%;
  transform: translate(50%, -50%);
}

/* ＋マークのサイズ（全サイズ共通にする場合はここに書く） */
.maintenance-flow .col-4:not(:last-child)::after {
  width: 30px;
  height: 6px;
}

.maintenance-flow .col-4:not(:last-child)::before {
  width: 6px;
  height: 30px;
}


@media (min-width: 768px) {
  .p-cta-btn .border-accent[class*=__btn].bg-wht:hover {
    border-color: var(--ACC);
    background-color: var(--GRY);
    color: var(--DGRY) !important;
  }
}



@media print and (hover: hover) and (pointer: fine),
screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-business-list :where(a):where(:not([class*=lib-])):where(:not([class*=hover-]:not([class*=text-hover]))):hover {
    opacity: 0.6;
    background-color: #FFF;
    border-radius: 10px;

    img {
      filter: saturate(0);
    }
  }
}

@media print,
screen and (min-width: 768px) {
  .lib-col-01-02:has([class*=thumb]) .p-message-textarea .lib-card__txtarea {
    margin-top: -40%;
  }
}

/* ======= 会社概要 ============*/
.lib-timeline-001__headline .title {
  font-size: 1.5rem;
}

.lib-timeline-001__row:before {
  top: 34px;
}

@media print,
screen and (min-width: 768px) {
  .lib-timeline-001__headline .title {
    font-size: 1.75rem;
  }

  .lib-timeline-001__row:before {
    left: 1.8rem;
    top: 45px;
  }
}

@media print,
screen and (min-width: 992px) {
  .lib-timeline-001__row:before {
    top: 50px;
    left: 2.3rem;
  }

  .lib-timeline-001__headline .title {
    font-size: 2rem;
  }
}

.lib-timeline__txt .title {
  font-size: 1.25rem;
}



/*  ======= 法人様向け（産業）ページ =======  */

#wrapper:has(.lib-header-BS02) .lib-hero__outer.p-main-header {
  min-height: 645px;

  h1 {
    font-size: clamp(22px, calc(15.689320388349515px + 1.6828478964401297vw), 48px);
  }
}


/*  ======= 採用情報ページ =======  */
.p-recruit-table {
  .lib-tab__menu>li:first-child .lib-tab__btn {
    border-left: var(--MAIN) 2px solid;
  }
}

.max-700 {
  max-width: 700px;
}


/*  ======= お知らせページ =======  */
.media-column__side .media-side__title {
  color: var(--DEF);
}

.lib-media__title {
  font-size: clamp( 1.125rem, calc( 1.0743243243243243rem + 0.21621621621621623vw ), 1.25rem ) !important;
}

/*  ======= 0305追記  =======  */
.ecocute .position-absolute {
  bottom: -15%;
  left: -23%;
}

@media print,
screen and (min-width: 768px) {
.ecocute .position-absolute {
  left: -16%;
}
}