@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(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) {
  /* max-width: 100%; */
  height: auto;
  vertical-align: bottom;
}

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}
/*---------- マテリアルアイコンのフォントサイズを親要素から継承させる ----------*/
[class*="material-icons"],
[class*="material-symbols"] {
  font-size: inherit;
}

/*---------- BMパーツの調整 ----------*/
/* 疑似要素の削除 */
.no-before::before,
.no-after::after {
  content: unset !important;
}

/* ボタンのアイコンを「→」に変更 */
/* :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: "Zen Maru Gothic", 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";
}
/* 明朝とか */
.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-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--3x2 img {
  aspect-ratio: 3 / 2;
}
.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.--2x3 img {
  aspect-ratio: 2 / 3;
}
.u-aspect.--3x4 img {
  aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img {
  object-fit: contain;
}

/*---------- 角丸 ----------*/
[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;
}

/*---------- 字幅 ----------*/
.u-l-1 {
  letter-spacing: 1px;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさは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.3;
}
/* 白透明フィルター */
.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;
}
.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);
}
.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);
}

/*---追記---*/
.b-hover:hover{
  border: 2px solid var(--MAIN);
  transition: var(--transition);
}

/*---------- レイアウト ----------*/
/* 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;
}


/* ==================================
共通部分
===================================== */
/* 共通ボタン */
.common-btn {
  background-color: transparent;
  border-color: var(--WHT);
  color: var(--WHT);
  justify-content: space-between;
  padding: 20px;
  border-radius: 4px;
}
.common-btn:hover {
  background-color: var(--WHT);
  color: var(--MAIN);
}
.common-btn.--main {
  background-color: transparent;
  border-color: var(--MAIN);
  color: var(--MAIN);
  justify-content: space-between;
  padding: 20px;
}
.common-btn.--main:hover {
  background-color: var(--MAIN);
  color: var(--WHT);
}

/* ボーダーカラー */
.border-main {
    border-color: var(--MAIN) !important;
}


/* ==================================
ヘッダー
===================================== */
.g-en-name {
  letter-spacing: .03em;
}
.lib-lang__outer li:first-child a {
  border-right: 1px solid var(--MAIN) !important;
}
.lib-lang__outer li a {
  background-color: transparent;
  border: none;
  font-weight: bold;
  color: var(--MAIN) !important;
  font-size: .875rem;
}
.lib-lang__outer li a:hover {
  background-color: var(--MAIN);
  color: var(--WHT) !important;
}
.lib-lang__outer li a[aria-current=page] {
  background-color: transparent;
  border-color: transparent;
  color: var(--MAIN) !important;
}
.lib-header__logo img, .is-scroll .lib-header__logo img {
  width: 50px;
}
.lib-header__outer.lib-header-BS02 .lib-header__logo {
  margin-left: 0;
}
@media print, screen and (min-width: 992px) {
  .lib-header__logo img, .is-scroll .lib-header__logo img {
    width: 70px;
  }
  .lib-header__outer.lib-header-BS02 .lib-header__bar {
    width: auto;
  }
  .lib-header__outer.typeM .lib-child__outer {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .lib-header__outer.typeM .lib-child__panel {
    background-color: var(--MAIN);
    height: 300px;
  }
  .lib-header__outer.typeM .lib-child__panel a {
    color: var(--WHT) !important;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    padding-bottom: 1rem;
  }
  .lib-header__outer.typeM .lib-child__panel a:hover {
    text-decoration: none;
    border-bottom: 1px solid var(--WHT);
    text-decoration: none !important;
  }
  .lib-child__item>a .txt:before {
    display: none;
  }
}
@media print, screen and (max-width: 991px) {
  .lib-header__outer {
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
  }
  .lib-header__outer.lib-header-BS02 .lib-header__bar {
    box-shadow: none;
  }
  /* SPボタン */
  .lib-menu__btn {
    background-color: transparent;
    border: var(--MAIN) 2px solid;
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }
  .lib-menu__btn>.line {
    background-color: var(--MAIN);
  }
  .lib-menu__btn>.line:nth-of-type(1) {
    top: calc(50% - 1px - 8px);
  }
  .lib-menu__btn>.line:nth-of-type(3) {
    bottom: calc(50% - 1px - 8px);
  }
  .lib-menu__btn[aria-expanded=true]>.line:nth-of-type(1) {
    -webkit-transform: translateY(calc(50% - 1px + 8px)) rotate(-45deg);
    transform: translateY(calc(50% - 1px + 8px)) rotate(-45deg);
  }
  .lib-menu__btn[aria-expanded=true]>.line:nth-of-type(3) {
    -webkit-transform: translateY(calc(50% - 1px - 8px)) rotate(45deg);
    transform: translateY(calc(50% - 1px - 8px)) rotate(45deg);
  }
/*  .lib-menu__btn>.line:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(90deg);
    transform: translateY(10px) rotate(90deg);
  }
  .lib-menu__btn>.line:nth-of-type(3) {
    display: none;
  }
  .lib-menu__btn[aria-expanded=true]>.line:nth-of-type(1) {
    opacity: 0;
  }
  .lib-menu__btn[aria-expanded=true]>.line:nth-of-type(2) {
    opacity: 1;
  }*/
  .is-scroll .lib-menu__btn {
    border: var(--MAIN) 2px solid;
  }
  .is-scroll .lib-menu__btn>.line {
    background-color: var(--MAIN);
  }
  .lib-nav__btn:after {
    font-family: 'Material Symbols Outlined' !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea02";
    font-size: .625rem;
    margin-left: 10px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    display: block;
    content: "\e941" !important;
    font-size: 1rem;
  }
  .lib-nav__btn[aria-expanded]:after {
    font-family: 'Material Symbols Outlined' !important;
    content: "\e145" !important;
    font-size: 1rem;
    border: 1px solid var(--WHT);
    border-radius: 4px;
    padding: .2rem;
  }
  .lib-nav__btn[aria-expanded=true]:after {
    content: "\e15b" !important;
  }
  
  .lib-nav__list {
    padding: 10px;
    box-shadow: none;
  }
  .lib-nav__panel, .lib-child__outer {
    background-color: var(--MAIN);
  }
  .lib-nav__item {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .lib-nav__btn {
    font-size: 1.25rem;
    color: var(--WHT);
    justify-content: space-between;
    border-bottom: 1px solid var(--WHT);
  }
  .lib-nav__btn[aria-expanded=true] {
    border-bottom: none;
  }
  .lib-child__item {
    border-left: none;
    border-top: none;
    border-bottom: 1px solid var(--WHT);
    width: calc(50% - 10px) !important;
    margin-bottom: 1rem !important;
  }
  .lib-header__outer.typeM .lib-child__item>a {
    color: var(--WHT);
    padding-left: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .lib-child__item>a .txt:before {
    display: none;
  }
  .lib-lang__outer {
    order: 2;
  }
  .lib-search__outer {
    background-color: var(--MAIN);
  }
  .lib-lang__outer li a[aria-current=page] {
    background-color: var(--WHT);
    color: var(--MAIN);
  }
  .lib-lang__outer li:first-child a {
    border-color: var(--WHT) !important;
  }
  .lib-lang__outer li a {
    color: var(--WHT) !important;
  }
}


/* ========================================
フッター
======================================== */
.lib-footer__child a {
  text-decoration: none;
  color: var(--MAIN);
  font-weight: bold;
  font-size: .875rem;
  display: block;
  line-height: inherit;
}
.lib-footer__child a.no-link, .lib-footer__child a.no-link .txt {
  cursor: inherit;
  text-decoration: none !important;
}
.lib-footer__copyright a {
    color: var(--WHT);
    text-decoration: none;
}
.lib-footer__copyright a:hover {
  text-decoration: underline;
  opacity: .6;
}
footer .lib-lang__outer li a[aria-current=page] {
  color: var(--MAIN) !important;
}
footer .lib-search__input {
  background-color: var(--WHT);
}
footer .lib-search__btn:hover {
  background-color: var(--MAIN);
}
footer .lib-search__btn:hover:before {
  color: var(--WHT);
}
footer .lib-lang__outer li:first-child a {
  border-right: 1px solid var(--MAIN) !important;
}
footer .lib-lang__outer li a {
  color: var(--MAIN) !important;
}
footer .lib-lang__outer li a:hover {
  color: var(--WHT) !important;
}
.lib-footer__outer.lib-footer-BS01 .lib-footer__logo {
  line-height: normal;
  width: auto;
}
.lib-footer__outer.lib-footer-BS01 .lib-footer__logo img {
  width: 70px;
}
@media print, screen and (max-width: 767px) {
  .lib-footer__logo {
    margin-left: 0;
  }
}
@media print, screen and (max-width: 576px) {
  .lib-footer__list {
    display: block;
    margin-top: 1rem;
  }
}


/* ========================================
CTA
======================================== */
.common-cta::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, #071522, #FFF);
  background: -webkit-linear-gradient(top, #071522, #FFF);
  background: linear-gradient(to bottom, #071522, #FFF);
  opacity: .2;
  mix-blend-mode: multiply;
  z-index: 1;
}


/* ========================================
TOP
======================================== */
.top-sub-title {
  text-transform: uppercase;
}
/*---------- MV ----------*/
.p-mv .lib-fv__thumb {
  height: unset;
}
.p-mv .lib-fv__thumb img {
  aspect-ratio: 3/4;
}
@media print, screen and (min-width: 768px) {
  .p-mv .lib-fv__thumb img {
    aspect-ratio: 4/3;
  }
}
@media print, screen and (min-width: 992px) {
  .p-mv .lib-fv__thumb img {
    aspect-ratio: 16/9;
  }
}
@media print, screen and (min-width: 1400px) {
  .p-mv .lib-fv__thumb img {
    /* aspect-ratio: 2.51/1; */
    aspect-ratio: 16/8;
  }
}

/* mv */
.top-mv {
  height: 100vh;
}
.top-mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, #071522, #FFF);
  background: -webkit-linear-gradient(top, #071522, #FFF);
  background: linear-gradient(to bottom, #071522, #FFF);
  opacity: .2;
  mix-blend-mode: multiply;
  z-index: 1;
}
.top-mv .text-sub {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: -1;
}
.top-mv .lib-fv__thumb {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-mv .lib-fv__thumb img {
  object-position: right;
}
@media print, screen and (max-width: 991px) {
  .top-mv .lib-fv__thumb img {
    object-position: bottom;
  }
}
@media print, screen and (max-width: 767px) {
  .top-mv .lib-fv__inside {
    position: absolute;
    top: 10%;
  }
  html[lang="en"] .top-mv .lib-fv__inside {
    top: 5%;
  }
}

/* about */
.top-about {
  -webkit-backdrop-filter: blur(30px) brightness(90%);
  backdrop-filter: blur(30px) brightness(90%);
}
.top-about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, #071522, #FFF);
  background: -webkit-linear-gradient(top, #071522, #FFF);
  background: linear-gradient(to bottom, #071522, #FFF);
  opacity: .2;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* products */
.top-products .lib-card__item a {
  text-decoration: none;
}
.top-products .lib-card__item a:hover {
  text-decoration: none;
  opacity: .4;
}

/* csr */
.top-csr .col .lib-card__thumb {
  overflow: hidden;
}
.top-csr .col .lib-card__thumb img, .top-csr .col .lib-card__txt {
  transition: all .3s;
}
.top-csr .col:hover .lib-card__thumb img {
  transform: scale(1.1);
  transition: all .3s;
}
.top-csr .col:hover .lib-card__txt {
  transition: all .3s;
  opacity: .6;
}
@media print, screen and (max-width: 767px) {
  .top-csr .u-aspect.--1x1 img {
      aspect-ratio: 16 / 9;
  }
}

/* recruit */
.top-recruit.p-bg.--wh::before {
  opacity: .8;
}
@media print, screen and (max-width: 767px) {
  .top-recruit {
    background-image: url('/dcms_media/image/top-recruit-bg-sp.jpg') !important;
  }
}

/* news */
.top-news .swiper-wrapper {
  display: block;
}
.top-news .lib-media__title a, .top-news .lib-media__tag a, .top-news .lib-media__time {
  color: var(--WHT) !important;
}
.top-news .lib-media__title a {
  font-size: 1rem;
}
.top-news .lib-media__thumb, .top-news .lib-swiper__control, .top-news .lib-media__txt {
  display: none !important;
}
.top-news .lib-media__item {
  border-bottom: 1px solid var(--WHT);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}


/* ========================================
下層
======================================== */
/*---------- 下層MV ----------*/
.lib-hero__outer.sitemap {
  background-color: unset;
  background-image: url("/dcms_media/image/bg-under-fv.jpg");
  position: relative;
  z-index: 1;
}

.lib-hero__outer.aboutus {
  background-color: unset;
  background-image: url("/dcms_media/image/aboutus-mv.jpeg") !important;
  position: relative;
  z-index: 1;
  background-position: bottom;
}

.lib-hero__outer.products {
  background-color: unset;
  background-image: url("/dcms_media/image/product-mv.jpeg");
  position: relative;
  z-index: 1;
  background-position: 100% 80%;
}
.lib-hero__outer.recruit {
  background-color: unset;
  background-image: url("/dcms_media/image/recruit-mv.jpeg");
  position: relative;
  z-index: 1;
}

.lib-hero__outer.benefits {
  background-color: unset;
  background-image: url("/dcms_media/image/benefits-mv.jpeg");
  position: relative;
  z-index: 1;
}

.lib-hero__outer.recruitment {
  background-color: unset;
  background-image: url("/dcms_media/image/recruitment-mv.jpeg");
  position: relative;
  z-index: 1;
}

.lib-hero__outer.introduction {
  background-color: unset;
  background-image: url("/dcms_media/image/introduction-mv.jpeg");
  position: relative;
  z-index: 1;
  background-position-y: 41%;
}

.lib-hero__outer.recorder {
  background-color: unset;
  background-image: url("/dcms_media/image/recorder-mv.jpeg");
  position: relative;
  z-index: 1;
}

.lib-hero__outer.repair {
  background-color: unset;
  background-image: url("/dcms_media/image/repair-mv.jpeg");
  position: relative;
  z-index: 1;
}


.lib-hero__outer::before {
  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;

  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--WHT);
  opacity: 0.5;
}
.lib-hero__title-en {
  font-size: 1.25rem;
  text-transform: uppercase;
}
.lib-hero__txtarea .lib-hero__inner {
  color: var(--MAIN);
}

/* フォームの時 */
html:has(.lib-form__outer) .lib-hero__outer {
  background-color: unset;
  background-image: url("/dcms_media/image/bg-under-fv-02.jpg");
  position: relative;
  z-index: 1;
}

/*---------- モーダルウィンドウ ----------*/
/* https://web-create-kokusyo.com/snippets/img_click/ */
.p-modal .thumb {
  cursor: pointer;
}

/* モーダルのスタイル */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* 背景色 */
  opacity: 0; /* 初期状態では透明 */
  visibility: hidden; /* 初期状態では不可視 */
  transition: opacity 0.5s, visibility 0.5s; /* アニメーション効果 */
  padding: 5vw;
}
/* モーダルの画像スタイル */
.modal-content {
  display: block;
  /* width: 80%;
  max-width: 700px;
  height: 100dvh; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* モーダルの閉じるボタン */
#closeModal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*会社概要*/
/*社長あいさつの比率調整*/
@media print, screen and (min-width: 768px) {
  .lib-cnt-020__thumb {
    width: 350px;
}
}
.google-maps iframe {
  max-width: 100%;
}
/*会社概要テーブル*/
.border-bottom-bl {
 border-bottom: 1px solid #000;
}

@media print, screen and (max-width: 767.8px) {
.lib-table__03 td, .lib-table__03 th {
  display: block;
  width: 100%!important;
}
}

/*採用情報*/
.border-bl {
  border: 1px solid #000;
 }

.lib-flow-001__col:after {
  display: none;
 }

 @media print, screen and (min-width: 992px) {
 .lib-flow-001__title {
  font-size: 1.5rem;
}
 }

 :where(ol).before-accent.before-none>li:before, :where(ul).before-accent.before-none>li:before {
  display: none;
}

.fs-16 {
  font-size: 1rem;
}

/* .border-bl[class*="__btn"].bg-wht {
  border: #000 1px solid;
  background-color: var(--WHT);
  color: #000;
  transition: 0.3s;
} */

.b-hover {
    border: none;
    border: 2px solid transparent; /* 初期状態で透明なボーダーを設定 */
    box-sizing: border-box;
}

.b-hover:hover{
  border: 2px solid var(--MAIN);
  transition: var(--transition);
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
@media print, screen and (min-width: 992px) {
.w-md-50 {
 width:50%;
}
}

/*先輩紹介*/
@media print, screen and (min-width: 768px) {
  .lib-timeline-002__headline .title {
    font-size: 1.5rem;
}
}

@media print, screen and (min-width: 992px) {
  .lib-timeline__txt .title {
    font-size: 1.25rem;
}
}
/* 先輩社員紹介 */
.sp-table.lib-table__03 td, .sp-table.lib-table__03 th {
  vertical-align: baseline;
}
.w-15 {
  width: 15%;
}
@media print, screen and (max-width: 767.8px) {
.sp-table.lib-table__03 td, .sp-table.lib-table__03 th {
  display: table-cell;
  width: auto!important;
}
.sp-table.lib-table__03 th {
  width: 20% !important;
}
}

/* 製品情報リンク一覧 */
.lib-cnt-016__link.before-main:before {
  background-color: var(--MAIN)
}
.lib-cnt-016__link.before-main:hover {
  color: var(--MAIN);
  border-color: var(--MAIN);
}


/* ========================================
多言語
======================================== */
html[lang="en"] .lib-breadcrumb__list li:first-child, html[lang="en"] .lib-breadcrumb__list li:nth-child(2)::after {
  display: none !important;
}
html[lang="en"] .lib-breadcrumb__list li:nth-child(2) {
  padding-left: 0;
}
html[lang="ja"] .lib-sitemap__outer .lib-sitemap__list>li:last-child,
html[lang="en"] .lib-sitemap__outer .lib-sitemap__list>li {
  display: none !important;
}
html[lang="en"] .lib-sitemap__outer .lib-sitemap__list>li:last-child {
  display: block !important;
}