@charset "UTF-8";

:root {
  --bl: #000;
  --gray-02: #ccc;
  --grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-01-rev: linear-gradient(270deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-02: linear-gradient(90deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-02-rev: linear-gradient(270deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-03: linear-gradient(90deg, var(--LOTH) 0%, var(--OTH) 100%);
  --grad-03-rev: linear-gradient(270deg, var(--LOTH) 0%, var(--OTH) 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
  /* max-width: 100%; */
  height: auto;
  vertical-align: bottom;
}

/* 下層ページの画像に共通のアスペクト比設定 */
/* :where(#dcms_layoutPageBlock) :where(img) {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
} */

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}
/*---------- マテリアルアイコンのフォントサイズを親要素から継承させる ----------*/
/*[class*="material-icons"],
[class*="material-symbols"] {
  font-size: inherit;
}*/

/*---------- ボタンのアイコンを「→」に変更 ----------*/
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt:after {
  content: "\ea03";
  font-size: 1em;
} */

/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.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: "Staatliches", sans-serif;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
  font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.07deg);
}
/* 明朝とか */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}

/* font-weight */
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 字幅 ----------*/
.u-l-0 {
  letter-spacing: 0;
}
.u-l-1 {
  letter-spacing: 1px;
}
.u-l-2 {
  letter-spacing: 2px;
}
.u-l-3 {
  letter-spacing: 3px;
}
.u-l-4 {
  letter-spacing: 4px;
}
.u-l-5 {
  letter-spacing: 5px;
}

/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--2x1 img {
  aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
  aspect-ratio: 3 / 1;
}
.u-aspect.--4x1 img {
  aspect-ratio: 4 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
  aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
  aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img {
  object-fit: contain;
}

/* メディア一覧の画像 */
.media-post__thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
  overflow: hidden;
}
.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;
}
[class*="u-rounded-"].--t-only {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--b-only {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
[class*="u-rounded-"].--r-only {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--l-only {
  border-top-right-radius: unset !important;
  border-bottom-right-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);
  }
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
}
.c-icon img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5em;
  justify-content: center;
  align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
  grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
  grid-template-columns: auto 1fr;
}
@media print,
screen and (min-width: 992px) {
  .c-icon-text {
    column-gap: 1em;
  }
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bl);
  opacity: 0.4;
}
/* 白透明フィルター */
.p-bg.--wh::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--WHT);
  opacity: 0.3;
}
/* メインカラーフィルター */
.p-bg.--main::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--MAIN);
  opacity: 0.3;
}
.p-bg.--lmain::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LMAIN);
  opacity: 0.3;
}
/* アクセントカラーフィルター */
.p-bg.--accent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ACC);
  opacity: 0.3;
}
.p-bg.--laccent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LACC);
  opacity: 0.3;
}
/* 補助色カラーフィルター */
.p-bg.--other::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--OTH);
  opacity: 0.3;
}
.p-bg.--lother::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LOTH);
  opacity: 0.3;
}
/* 色の濃さ（opacity） */
.p-bg.--light::before {
  opacity: 0.1;
}
.p-bg.--md::before {
  opacity: 0.5;
}
.p-bg.--strong::before {
  opacity: 0.7;
}
.p-bg.--strongest::before {
  opacity: 0.9;
}

/*---------- ホバーアクション ----------*/
.c-hover {
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.c-hover:hover {
  text-decoration: none;
}
/*---------- 下線がつく ----------*/
.c-hover.--underline:hover {
  text-decoration: underline;
}
/*---------- LMAINの背景色がつく----------*/
.c-hover.--bg-main:hover {
  background-color: var(--MAIN);
}
.c-hover.--bg-accent:hover {
  background-color: var(--ACC);
}
.c-hover.--bg-other:hover {
  background-color: var(--OTH);
}
.c-hover.--bg-lmain:hover {
  background-color: var(--LMAIN);
}
.c-hover.--bg-laccent:hover {
  background-color: var(--LACC);
}
.c-hover.--bg-lother:hover {
  background-color: var(--LOTH);
}
.c-hover.--bg-gry:hover {
  background-color: var(--GRY);
}
.c-hover.--bg-lgry:hover {
  background-color: var(--LGRY);
}
/*---------- 透過する（0.8） ----------*/
.c-hover.--opacity:hover {
  opacity: 0.8;
}
/*---------- 少し上に浮く ----------*/
.c-hover.--up:hover {
  transform: translateY(-0.125rem);
}
/*---------- 画像が拡大する ----------*/
.c-hover.--scale-up img {
  transition: var(--transition);
}
.c-hover.--scale-up:hover img {
  transform: scale(1.1);
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
  display: grid;
}
.l-overlap>* {
  grid-area: 1 / -1;
}
.c-hover.--overlap .--after {
  opacity: 0;
  transition: var(--transition);
}
.c-hover.--overlap:hover .--after {
  opacity: 1;
}
#tinymce .l-overlap>*,
.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;
}

/* ==================================
幅
===================================== */
.w-90 {
  width: 90% !important;
}
.w-80 {
  width: 80% !important;
}
.w-70 {
  width: 70% !important;
}
.w-60 {
  width: 60% !important;
}
.w-50 {
  width: 50% !important;
}
.w-40 {
  width: 40% !important;
}
.w-30 {
  width: 30% !important;
}
.w-20 {
  width: 20% !important;
}
.w-10 {
  width: 10% !important;
}
.bg-lgry {
  background-color: var(--LGRY) !important;
}
.max-auto {
  max-width: none !important;
}

@media print,
screen and (max-width: 767px) {
  .w-60 {
    width: 100% !important;
  }
}
@media print,
screen and (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem;
  }
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.border-main {
  border-color: var(--MAIN) !important;
}
/* ==================================
ヘッダー
===================================== */
.lib-header__logo img {
  width: auto !important;
  height: 50px !important;
}
.lib-child__item.--headline a .text-wht,
.lib-child__item img,
.lib-child__item.--headline a .material-symbols-outlined,
.lib-child__item .lib-bnr-002__txt,
.lib-child__item .material-symbols-outlined,
header .lib-child__outer .lib-bnr-002__link,
header .lib-child__outer .lib-bnr-002__link .material-symbols-outlined {
  transition: all 0.3s;
}
.lib-child__item.--headline a {
  text-decoration: none !important;
  background-color: var(--MAIN);
  border: 2px solid var(--MAIN);
  transition: all 0.3s;
}
.lib-child__item.--headline a:hover {
  text-decoration: none;
  background-color: var(--WHT);
  transition: all 0.3s;
}
.lib-child__item.--headline a:hover .text-wht {
  color: var(--MAIN) !important;
  transition: all 0.3s;
}
.lib-child__item.--headline a:hover .material-symbols-outlined {
  transition: all 0.3s;
  color: var(--WHT) !important;
  background-color: var(--MAIN);
}
.lib-child__item:hover .material-symbols-outlined,
header .lib-child__outer .lib-bnr-002__link:hover .material-symbols-outlined {
  transition: all 0.3s;
  color: var(--MAIN) !important;
  background-color: var(--WHT);
}
.lib-child__item:hover img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.lib-child__item:hover .lib-bnr-002__txt,
header .lib-child__outer .lib-bnr-002__link:hover {
  color: var(--MAIN) !important;
  transition: all 0.3s;
}
header .lib-child__outer .lib-bnr-002__link:hover {
  background-color: var(--GRY);
}
.lib-child__item.--headline.--accent a {
  background-color: var(--ACC);
  border: 2px solid var(--ACC);
}
.lib-child__item.--headline.--accent a:hover {
  background-color: var(--WHT);
}
.lib-child__item.--headline.--accent a:hover .text-wht {
  color: var(--ACC) !important;
}
.lib-child__item.--headline.--accent a:hover .material-symbols-outlined {
  background-color: var(--ACC);
}
.--accent .lib-child__item:hover .lib-bnr-002__txt,
.--accent .lib-child__item:hover .lib-bnr-002__txt .material-symbols-outlined {
  color: var(--ACC) !important;
}
.h-btn .lib-nav__btn .txt:before {
  display: none !important;
}
.h-btn .lib-nav__btn.bg-accent:hover,
.h-btn .lib-nav__btn.bg-accent:active,
.h-btn .lib-nav__btn.bg-accent:focus,
.h-btn:hover .lib-nav__btn.bg-accent,
.h-btn:active .lib-nav__btn.bg-accent .h-btn:focus .lib-nav__btn.bg-accent {
  color: var(--ACC) !important;
  background-color: var(--WHT) !important;
}
.h-btn .lib-nav__btn.bg-main:hover,
.h-btn .lib-nav__btn.bg-main:active,
.h-btn .lib-nav__btn.bg-main:focus,
.h-btn:hover .lib-nav__btn.bg-main,
.h-btn:active .lib-nav__btn.bg-main,
.h-btn:focus .lib-nav__btn.bg-main {
  color: var(--MAIN) !important;
  background-color: var(--WHT) !important;
}
.lib-child__item {
  border: none !important;
}
.js-child__panel[aria-hidden="true"] {
  display: none !important;
}
.js-child__panel[aria-hidden="false"] {
  display: block !important;
}


@media print,
screen and (min-width: 992px) {
  .lib-nav__panel {
    padding: 0 !important;
  }
  .lib-nav__cover,
  .lib-nav__outer,
  .h-btn .lib-nav__btn,
  #lib-header-nav {
    height: 100% !important;
  }
  #lib-header-nav {
    align-items: center !important;
    margin: 0 !important;
  }
  .lib-nav__outer {
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
  }
  .lib-header__outer.lib-header-BS02 .lib-nav__btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    font-weight: bold;
  }
  .is-scroll .lib-header__outer.lib-header-BS02 .lib-nav__btn {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media print,
screen and (max-width: 991px) {
  .lib-header__logo img {
    height: 30px !important;
  }
  .lib-child__item {
    width: 50% !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .lib-header__outer.typeM .lib-child__panel,
  .lib-child__outer {
    background-color: transparent !important;
  }
}
@media print,
screen and (max-width: 576px) {
  .lib-child__item {
    width: 100% !important;
  }
}
@media print,
screen and (min-width: 576px) and (max-width: 991.8px) {
  .lib-nav__panel {
    width: 80%;
    max-width: none;
  }
  .lib-header__outer.typeM .lib-child__panel,
  .lib-child__outer {
    padding: 1rem;
  }
}

/* ========================================
フッター
======================================== */
footer {
  border: none !important;
}
.lib-footer__logo {
  width: 120px !important;
}
.lib-footer__copyright a {
  text-decoration: none;
  color: var(--WHT);
  display: block;
}
.lib-footer__copyright a:hover {
  text-decoration: underline;
  opacity: .6;
}
.lib-footer__item>a {
  display: block;
}
.lib-footer__copyright .col {
  border-right: 1px solid var(--WHT);
}
.lib-footer__copyright .col:last-child {
  border: none;
}
.lib-footer__list {
  display: block !important;
  padding: 12px 15px;
}
.lib-footer__title>a {
  position: relative;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--GRY);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.lib-footer__title>a .material-symbols-outlined {
  transition: all 0.3s;
}
.lib-footer__title>a:hover {
  background-color: var(--GRY);
}
.lib-footer__title>a:hover .material-symbols-outlined {
  background-color: var(--WHT);
  color: var(--MAIN) !important;
  transition: all 0.3s;
}
.lib-footer__title>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 1px;
  background-color: var(--MAIN);
}
.lib-footer__title {
  margin-bottom: 1rem;
}
@media print,
screen and (max-width: 767px) {
  .lib-footer__copyright .col {
    border-right: none;
  }
  .lib-footer__copyright a {
    padding: 5px;
  }
}

/* ========================================
CTA
======================================== */
@media print,
screen and (max-width: 767px) {
  .common-cta {
    width: 96%;
  }
}

/* ========================================
TOP
======================================== */
/* MV */
.bg01 {
  position: absolute;
  top: -65%;
  left: -25%;
}
@media print,
screen and (max-width: 1440px) {
  .bg01 {
    left: -35%;
  }
}
@media print,
screen and (max-width: 1024px) {
  .bg01 {
    top: -10%;
    left: -40%;
    width: 90%;
  }
}
@media print,
screen and (max-width: 991px) {
  .bg01 {
    top: -10%;
  }
}
@media print,
screen and (max-width: 767px) {
  .bg01 {
    top: -10%;
    left: -90%;
    width: 90%;
  }
}

.top-mv .p-bg.--bl::before {
  z-index: 0;
}

/* banner */
.top-banner {
  margin-top: -30%;
  z-index: 2;
}
@media print,
screen and (min-width: 768px) {
  .top-banner {
    margin-top: -15%;
  }
}
@media print,
screen and (min-width: 992px) {
  .top-banner {
    margin-top: -7%;
  }
}
@media print,
screen and (min-width: 1401px) {
  .top-banner {
    margin-top: -5%;
  }
}
.top-banner .--01.p-bg.--bl::before {
  background-color: #4b814e;
  mix-blend-mode: multiply;
  opacity: 1;
}
.top-banner .--02.p-bg.--bl::before {
  background-color: #5b7495;
  mix-blend-mode: multiply;
  opacity: 1;
}
.top-banner .--03.p-bg.--bl::before {
  background-color: #776e5f;
  mix-blend-mode: multiply;
  opacity: 1;
}
.top-banner .--04.p-bg.--bl::before {
  background-color: #cc799e;
  mix-blend-mode: multiply;
  opacity: 1;
}
.top-banner .lib-sld-001__item {
  overflow: hidden;
  transition: all 0.3s;
}
.top-banner .lib-sld-001__item:hover .p-bg {
  transform: scale(1.1);
  transition: all 0.3s;
}
.swiper-pagination-bullet {
  background-color: var(--GRY) !important;
  border-color: var(--GRY) !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--MAIN) !important;
  border-color: var(--MAIN) !important;
}


/* about */
.top-about .bg02 {
  position: absolute;
  right: -50%;
  z-index: 1;
}
@media print,
screen and (max-width: 991px) {
  .top-about .bg02 {
    width: 70%;
  }
}
@media print,
screen and (max-width: 767px) {
  .top-about .bg02 {
    bottom: -20%;
    left: 40%;
    right: -50%;
    width: 100%;
    display: none;
  }
}

/* ソリューション */
.top-solution {
  overflow: hidden;
}
.top-solution .bg03 {
  position: absolute;
  top: -30%;
  left: -10%;
}
.top-solution .img-container img {
  display: none;
  transition: all 0.3s;
}
.top-solution .img-container img.active {
  transition: all 0.3s;
  display: block;
}
.top-solution .img-container img[data-image="solution02"] {
  object-position: 70% 100%;
}
.top-solution .img-container img[data-image="solution05"] {
  object-position: 10% 100%;
}
.top-solution .lib-bnr-002__link {
  border: none !important;
  border-bottom: 1px solid var(--GRY) !important;
  transition: all 0.3s;
}
.top-solution .lib-bnr-002__link .lib-bnr-002__txt {
  padding-left: 2rem !important;
}
.top-solution .lib-bnr-002__link:hover {
  border-color: transparent !important;
}
.top-solution .lib-bnr-002__link:hover .lib-bnr-002__txt {
  background-color: var(--MAIN);
  border-radius: 100px;
  color: var(--WHT);
  transition: all 0.3s;
}
.top-solution .lib-bnr-002__link .lib-bnr-002__txt .material-symbols-outlined {
  transition: all 0.3s;
}
.top-solution .lib-bnr-002__link:hover .lib-bnr-002__txt .material-symbols-outlined {
  background-color: var(--WHT) !important;
  color: var(--MAIN) !important;
  transition: all 0.3s;
}

@media print,
screen and (max-width: 991px) {
  .top-solution .bg03 {
    top: -30%;
    width: 80%;
  }
}
@media print,
screen and (max-width: 767px) {
  .top-solution .bg03 {
    top: -5%;
    left: -45%;
    right: 35%;
    width: 100%;
  }
  .top-solution .img-container img {
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
  }
}

/* 追記 */
.p-top-solution-box {
  display: block;
}
.p-top-solution-box .c-top-solution-txt-box {
  display: none;
}
.p-top-solution-box:has(img[data-image].active) .c-top-solution-txt-box {
  display: flex;
}
@media print,
screen and (max-width: 767px) {
  .p-top-solution-box:has(img[data-image].active) .c-top-solution-txt-box {
    display: none;
  }
}
/* 追記ここまで */

/* 流れるスライダー(企業ロゴ) */
.loop-slider,
.loop-slider-2 {
  overflow: hidden;
}
.loop-slider .swiper-wrapper,
.loop-slider-2 .swiper-wrapper {
  transition-timing-function: linear;
}
.logo-banner a {
  display: block;
}
.loop-slider a {
  pointer-events: none;
  /* 無効化されたことを視覚的に示すため、任意でスタイルを追加 */
  cursor: default;
  /* カーソルをデフォルト表示に戻す */
  text-decoration: none;
  color: inherit;
  /* リンク色を解除 */
}

/* case */
.lib-swiper__btn {
  border-radius: 100px;
}
.top-case .lib-media__tag,
.top-news .lib-media__tag {
  display: none !important;
}
.top-case .lib-tab__menu,
.top-news .lib-tab__menu {
  border: none;
}
.top-case .lib-tab__btn,
.top-news .lib-tab__btn {
  border: none;
  border-bottom: 1px solid var(--GRY);
  background-color: transparent;
  color: var(--DGRY);
  font-size: 1.25rem;
}

@media print,
screen and (max-width: 767px) {
  .top-case .lib-tab__btn,
  .top-news .lib-tab__btn {
    font-size: 1rem;
  }
}
.top-case .lib-tab__btn[aria-selected="true"],
.top-news .lib-tab__btn[aria-selected="true"] {
  color: var(--MAIN);
  border-bottom: 2px solid var(--MAIN);
  box-shadow: none;
}
.top-case .lib-tab__panel[role="tabpanel"],
.top-news .lib-tab__panel[role="tabpanel"] {
  box-shadow: none;
}
.top-case .lib-media__thumb .thumb,
.top-news .lib-media__thumb .thumb {
  height: auto;
  max-height: none;
}
.top-case .lib-media__thumb img,
.top-news .lib-media__thumb img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}
.top-case .lib-media__category .badge,
.top-news .lib-media__category .badge {
  background-color: var(--ACC);
  color: var(--WHT);
  border-radius: 100px;
}
.top-case .lib-media__category .badge:hover,
.top-news .lib-media__category .badge:hover {
  background-color: var(--WHT);
  color: var(--ACC);
  border-color: var(--ACC);
}
/* スライダー部分：PC時3カラムレイアウト */
@media print,
screen and (min-width: 768px) {
  .p-slider-top-products .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-slider-top-products .swiper-slide {
    width: 100% !important;
  }
}

/* news */
.top-news {
  overflow: hidden;
}
.top-news .bg04 {
  position: absolute;
  top: -50%;
  right: -15%;
  z-index: 0;
}
@media print,
screen and (max-width: 1024px) {
  .top-news .bg04 {
    top: -30%;
    width: 70%;
  }
}
@media print,
screen and (max-width: 767px) {
  .top-news .bg04 {
    top: -20%;
    left: 30%;
    right: -45%;
    width: 100%;
  }
}
.top-news .lib-media__thumb,
.top-news .lib-swiper__control,
.top-news .lib-media__txt {
  display: none !important;
}
.top-news .swiper-wrapper {
  display: block;
}
@media print,
screen and (min-width: 768px) {
  .top-news .lib-card__txtarea {
    flex-direction: row;
    align-items: center;
  }
}
.top-news .lib-media__time {
  margin-top: 0 !important;
  margin-right: 2rem !important;
  order: 1;
}
.top-news .lib-media__category {
  margin-right: 2rem !important;
  order: 2;
}
.top-news .lib-media__tag {
  margin-top: 0 !important;
  margin-right: 2rem !important;
  order: 3;
}
.top-news .lib-media__title {
  margin-top: 0 !important;
  order: 4;
}
.top-news .lib-media__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--GRY);
}

/* 追記ここまで */
@media print,
screen and (max-width: 767px) {
  .top-news .lib-card__txtarea {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 0.25em;
  }
  .top-news .lib-media__tag,
  .top-news .lib-media__title {
    width: 100%;
  }
}
/* 追記ここまで */

/* recruit */
.top-recruit {
  margin-top: -5%;
}
.top-recruit .bg05 {
  position: absolute;
  bottom: -20%;
  right: -35%;
  z-index: 0;
}
.top-recruit::before {
  content: "";
  position: absolute;
  background-color: var(--WHT);
  border-radius: 10000px;
  width: 800px;
  height: 800px;
  top: -10%;
  left: -30%;
  z-index: 1;
}
.top-recruit-links .col .lib-card__thumb {
  overflow: hidden;
}
.top-recruit-links .col img,
.top-recruit-links .col h3,
.top-recruit-links .col .material-symbols-outlined {
  transition: all 0.3s;
}
.top-recruit-links .col:hover img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.top-recruit-links .col:hover h3 {
  color: var(--ACC);
  transition: all 0.3s;
}
.top-recruit-links .col:hover .material-symbols-outlined {
  background-color: var(--WHT);
  color: var(--ACC) !important;
  transition: all 0.3s;
}

@media print,
screen and (max-width: 767px) {
  .top-recruit::before {
    width: 400px;
    height: 400px;
    top: -2%;
    left: -20%;
  }
}
@media print,
screen and (max-width: 767px) {
  .top-recruit::before {
    width: 300px;
    height: 300px;
    left: -30%;
  }
  .top-recruit .bg05 {
    bottom: 75%;
    right: -55%;
  }
}
.top-recruit-slider::before {
  content: "Recruit";
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: clamp(4.375rem, calc(0.625rem + 15vw), 11.875rem);
  color: var(--ACC);
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}

/* ========================================
下層
======================================== */
.nolink {
  pointer-events: none !important;
}
/*ソリューション&サービスのサイドナビ*/
.lib-column__side:not(.media-column__side) {
  display: block !important;
  padding: 0;
  background-color: transparent;
}
.side-nav .text a:hover {
  color: var(--MAIN);
}
.lib-column__outer:not(.media-column__outer) {
  flex-direction: row-reverse;
}
@media print,
screen and (min-width: 992px) {
  .lib-column__main:not(.media-column__main) {
    padding-right: 0;
    padding-left: 30px;
  }
}
@media print,
screen and (max-width: 991px) {
  .lib-column__side:not(.media-column__side) {
    margin-bottom: 1rem !important;
  }
}

.lib-hero__title span {
  text-transform: capitalize;
}
/* 会社概要 */
@media print,
screen and (max-width: 767px) {
  .lib-table__01 .lib-table__03 td,
  .lib-table__01 .lib-table__03 th {
    width: 50% !important;
    display: inline-block;
  }
}

/* 採用情報 */
.heading-25 {
  position: relative;
  padding-top: .75em;
}
.heading-25::before {
  position: absolute;
  bottom: .5em;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #ece7f2;
  font-size: clamp(2.5rem, calc(1.875rem + 2.5vw), 3.75rem);
  line-height: 1;
  content: attr(data-word);
  pointer-events: none;
  width: 90%;
}
.heading-25.--left::before {
  left: 0;
  transform: none;
  bottom: 0;
}
.recruit-person .heading-25::before {
  color: var(--MAIN);
  opacity: .2;
}
.recruit-person .lib-sld-001__item .lib-card__thumb {
  overflow: hidden;
}
.recruit-person .lib-sld-001__item img {
  transition: all .3s;
}
/* .recruit-person .lib-sld-001__item:first-of-type img,
.recruit-person .lib-sld-001__item:nth-of-type(3) img
.recruit-person .lib-grid__col:first-of-type img,
.recruit-person .lib-grid__col:nth-of-type(3) img {
  object-position: 80% 100%;
} */
.recruit-person .lib-sld-001__item:hover img {
  transform: scale(1.1);
  transition: all .3s;
}
:where(table) tbody>tr>th.bg-accent:first-child {
  border-left-color: var(--ACCENT);
}

/* 働く環境を知る */
.lib-flow-001__col:nth-child(3n):after {
  display: block !important;
}
.lib-flow-001__col:last-child:after {
  display: none !important;
}
@media print,
screen and (max-width: 991px) {
  .career-flow .lib-flow-002__step {
    width: 100px;
  }
  .career-flow .lib-flow-002__step>p {
    width: 100px;
    height: 100px;
  }
}
.lib-cnt-021 .lib-toggle__btn {
  font-size: 1rem;
}
.lib-timeline-002__headline .title {
  font-size: 1.5rem;
}
.interview-block .lib-cnt-021__btn:before {
  background-color: var(--WHT);
  color: var(--ACC);
  border: 1px solid var(--ACC);
}
.schedule-block .lib-timeline-002__headline:before {
  background-color: var(--ACC);
}
.other-interview-block .lib-swiper__btn {
  background-color: var(--ACC);
  border: var(--ACC) 2px solid;
}
.other-interview-block .swiper-pagination-bullet-active {
  background-color: var(--ACC) !important;
  border-color: var(--ACC) !important;
}
.other-interview-block .lib-swiper__btn.--prev:active:after {
  color: var(--WHT);
}

/* サービス */
.service-faq .lib-cnt-021__btn:before {
  background-color: var(--WHT);
  color: var(--MAIN);
  border: 1px solid var(--MAIN);
  border-radius: 2px;
}
.service-faq .lib-cnt-021__panel:before {
  background-color: var(--MAIN);
  color: var(--WHT);
  border: 1px solid var(--MAIN);
  border-radius: 2px;
}

.lib-media__time.media-post__time p:nth-child(2) {
  display: none !important;
}
.lib-media__time.media-post__time p span {
  display: none !important;
}