@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, .media-post__image 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.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;
}
/*---------- 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;
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}


/* ==================================
ヘッダー
===================================== */
@media print, screen and (min-width: 992px) {
  /* スクロールする前も細いヘッダーのままにする */
  #wrapper:has(.lib-header-BS02) {
    padding-top: 0;
  }
  #wrapper:has(.lib-header-BS02) .lib-hero__outer {
    padding-top: 120px;
  }
  .lib-header__outer {
    height: 60px;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__outer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 60px;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__outer>li:nth-child(2) {
    height: 100%;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .is-scroll .lib-header__logo img {
    width: 200px;
  }
}


/* ========================================
フッター
======================================== */
.lib-footer__copyright a {
  color: var(--WHT);
  text-decoration: none;
}
.lib-footer__copyright a:hover {
  text-decoration: underline;
}
.lib-footer__title>a {
  border: none;
}

@media print, screen and (max-width: 767px) {
  .lib-footer__list {
    display: block;
    padding-left: 1rem;
    margin-bottom: 1rem;
  }
}



/* ========================================
CTA
======================================== */
.common-cta {
  border-radius: 1.5rem;
  background: -moz-linear-gradient(left, #3752F0, #42CAFF);
  background: -webkit-linear-gradient(left, #3752F0, #42CAFF);
  background: linear-gradient(to right, #3752F0, #42CAFF);
}
.common-cta .lib-link__btn {
  max-width: none;
  min-height: 100px;
}
.common-cta .lib-link__btn:hover .text-dgry {
  color: var(--WHT) !important;
}


/* ========================================
TOP
======================================== */
[class*=lib-fv]+#contents {
  padding-top: 0;
}
.border-main {
  border-color: var(--MAIN) !important;
}
.border-wht {
  border-color: var(--WHT) !important;
}
.lib-link__btn:hover .border-main {
  border-color: var(--WHT) !important;
}
.lib-link__btn:hover .border-wht {
  border-color: var(--MAIN) !important;
}
.top-sub-title {
  font-size:clamp( 2.5rem, calc( 1.875rem + 2.5vw ), 3.75rem );
}

/* mv */
.top-mv h1 {
  font-size: clamp( 1.625rem, calc( -0.0625rem + 6.75vw ), 5rem );
}
.top-mv .lib-wide__outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--WHT);
  opacity: .4;
}
.top-mv .lib-fv__thumb {
  height: auto !important;
}

@media print, screen and (max-width: 767px) {
  .top-mv .lib-fv__txtarea {
    align-items: flex-end;
  }
  .top-mv {
    line-height: 1;
  }
}

/* service */
.top-service {
  border-radius: 0 0 5rem 5rem;
}
.service-col3::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  border: 2px solid var(--MAIN);
  border-radius: 2000px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
} 
.service-col3 .col a {
  width: 250px !important;
  height: 250px !important;
  transition: all .3s;
}
@media print, screen and (max-width: 767px) {
  .top-service {
    border-radius: 0 0 2rem 2rem;
  }
  .service-col3 .col a {
    width: 170px !important;
    height: 170px !important;
  }
  .service-col3::before {
    width: 200px;
    height: 200px;
  }
}
.service-col3 .col a:hover {
  background-color: var(--MAIN) !important;
  color: var(--WHT) !important;
  transition: all .3s;
}
.service-col3 .col a:hover .text-main, .service-col3 .col a:hover .text-dgry {
  color: var(--WHT) !important;
}
.top-link-col2 .col .lib-cnt-002__row {
  transition: all .3s;
}
.top-link-col2 .col .lib-cnt-002__row:hover {
  background-color: var(--MAIN) !important;
  color: var(--WHT) !important;
  transition: all .3s;
}
.top-link-col2 .col .lib-cnt-002__row:hover .border-main {
  border-color: var(--WHT) !important;
}
.top-link-col2 .col .lib-cnt-002__row:hover .text-main {
  color: var(--WHT) !important;
}
@media print, screen and (max-width: 991px) {
  .top-link-col2.u-aspect.--4x3 img {
    aspect-ratio: 16 / 9;
  }
}

/* 流れるスライダー */
.loop-slider {
    overflow: hidden;
}
.loop-slider .swiper-wrapper {
    transition-timing-function: linear;
}

/* recruit */
.top-recruit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('/dcms_media/image/top-bg-01.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: .1;
  transform: rotate(45deg);
}
.top-img2 .col-6 {
  margin-top: -10%;
}

/* member */
.top-member {
  border-radius: 5rem;
}

@media print, screen and (max-width: 767px) {
  .top-member {
    border-radius: 2rem;
  }
}

.top-member.p-bg.--wh::before {
  opacity: .7;
}
.top-member .lib-card__item:hover {
  cursor: pointer;
  color: var(--MAIN) !important;
}
.top-member .lib-card__item:hover .material-symbols-outlined {
  background-color: var(--MAIN) !important;
  color: var(--WHT) !important;
}
.top-member .lib-card__item .lib-card__thumb {
  overflow: hidden;
}
.top-member .lib-card__item img, .top-member .lib-card__item .material-symbols-outlined {
  transition: all .3s;
}
.top-member .lib-card__item:hover img {
  transform: scale(1.1);
  transition: all .3s;
}

/* enviroment */
.top-enviroment::before {
  position: absolute;
  content: "";
  width: 130%;
  height: 100%;
  top: -20%;
  left: 50%;
  background-image: url(/dcms_media/image/top-bg-02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: .2;
  transform: translateX(-50%) rotate(-45deg);
}

/* entry */
.top-entry {
  border-radius: 1.5rem;
}
.top-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #067B60;
  opacity: .6;
}

/* news */
.top-news::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('/dcms_media/image/top-bg-01.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: .1;
  transform: rotate(-20deg);
}
.top-news .lib-tab__panel {
  box-shadow: none !important;
}
.top-news .swiper-wrapper {
  display: block !important;
}
.top-news .lib-tab__btn {
  background-color: var(--WHT);
}
.top-news .lib-tab__btn[aria-selected=true] {
  background-color: var(--MAIN);
}
.top-news .lib-media__txtarea {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--GRY);
  margin-bottom: 1rem;
}
.top-news .lib-swiper__control, .top-news .lib-media__thumb, .top-news .lib-media__txt {
  display: none !important;
}
.top-news .lib-media__category .badge {
  background-color: var(--WHT);
  color: var(--MAIN);
  border: 1px solid var(--MAIN);
  border-radius: 4px;
}
.top-news .lib-media__category .badge:hover {
  background-color: var(--MAIN);
  color: var(--WHT);
  border: 1px solid var(--MAIN);
}
@media print, screen and (min-width: 768px) {
  .top-news .lib-media__txtarea {
    flex-direction: row !important;
  }
  .top-news .lib-media__time {
    order: 1;
    margin-top: 0 !important;
    margin-right: 1.5rem !important;
    align-items: center;
  }
  .top-news .lib-media__category {
    margin-right: 1.5rem !important;
    order: 2;
  }
  .top-news .lib-media__tag {
    margin-top: 0 !important;
    margin-right: 1.5rem !important;
    order: 3;
  }
  .top-news .lib-media__title {
    font-size: 1rem;
    margin-top: 0 !important;
    order: 4;
  }
  .top-news .lib-tab__menu>li:first-child button {
    border-radius: 6px 0 0 6px;
  }
  .top-news .lib-tab__menu>li:last-child button {
    border-radius: 0 6px 6px 0;
  }
}

@media print, screen and (max-width: 767px) {
  .top-news .lib-card__btn {
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    max-width: none;
  }
  .top-news .lib-tab__menu {
    flex-direction: column;
  }
}


/* ========================================
下層
======================================== */
/* table  */
:where(table) tbody>tr>th:first-child {
  border-left-color: transparent;
}

:where(table) th, :where(table)>thead {
  border-bottom: var(--GRY) 1px solid;
  background-color: transparent;
  color: var(--DEF);
  border-top: 1px solid var(--GRY);
  border-left: 0;
  border-right: 0;
  text-align: start;
}

:where(table) td {
  border-bottom: var(--GRY) 1px solid;
  border-top: var(--GRY) 1px solid;
  border-left: 0;
  border-right: 0;
}

/* 製品一覧 */
.products-list a {
  text-decoration: none;
}
.products-list a:hover {
  color: var(--MAIN);
}
@media print, screen and (max-width: 768px) {
  .lib-table__03 td, .lib-table__03 .sp-row {
    display: block;
    width: 100%;
  }
  }

/* 働く環境を知る */
.fs-80 {
  font-size: 80px;
}
.environment-table td, .environment-table th {
  border: 1px solid var(--GRY) !important;
}
@media print, screen and (max-width: 767px) {
  .environment-table td, .environment-table th {
    display: table-cell !important;
    width: auto !important;
  }
}