@charset "utf-8";

:root {
  --bl: #000;
  --grad-1: linear-gradient(30deg, var(--main) 0%, transparent 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* html {
  scroll-behavior: smooth;
} */

/* ==================================
リセット・調整
===================================== */
:where(img) {
  /* max-width: 100%; */
  height: auto;
  vertical-align: bottom;
}

/*---------- アクセシビリティ ----------*/
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}

/* ==================================
タイポ
===================================== */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-zenmarugo {
  font-family: "Zen Maru Gothic", 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-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}

.fw-600 {
  font-weight: 600 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--contain img {
  object-fit: contain;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--2x1 img {
  aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
  aspect-ratio: 3 / 1;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 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;
}

/*---------- 角丸 ----------*/
[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;
}
.--t-only {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--b-only {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
.--r-only {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--l-only {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: calc(50% - 50vw);
}
/* 右に */
.u-r-over {
  margin-right: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .u-r-md-over-50 {
    margin-right: calc((100% - 100vw) / 2);
    flex-basis: 50%;
    flex-grow: 1;
  }
}
/* 左に */
.u-l-over {
  margin-left: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .u-l-md-over-50 {
    margin-left: calc((100% - 100vw) / 2);
    flex-basis: 50%;
    flex-grow: 1;
  }
}

/*---------- 中央配置 ----------*/
.l-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  transition-timing-function: linear;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさは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;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
.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 (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;
  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.--accent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ACC);
  opacity: 0.3;
}
.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-lmain:hover {
  background-color: var(--LMAIN);
}
.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);
}

/* ==================================
ヘッダー
===================================== */
/*---------- アコーディオンボタン（ヘッダー以外にも汎用可能） ----------*/
.c-btn-accordion {
  top: 0;
  right: 0;
  height: 2.5em;
  width: 2.5em;
  background-color: transparent;
  border: none;
}
.c-accordion-icon {
  display: block;
  width: 100%;
  height: 100%;
}
.c-accordion-icon::before,
.c-accordion-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: currentColor;
  transition: all 0.3s ease-in-out;
}
.c-accordion-icon::before {
  width: 1em;
  height: 2px;
}
.c-accordion-icon::after {
  width: 2px;
  height: 1em;
}
.c-accordion-icon.is-active::after {
  opacity: 0;
}

/* ========================================
下層MV
======================================== */
.lib-hero__outer {
  background-color: #E8F5E9;
  /* color: var(--MAIN); */
}
.lib-hero__title {
  position: relative;
  z-index: 2;
  font-weight: bold;
  color: #333333;
}
.c-under-mv-text-en {
  color: var(--ACC);
  /* font-size: clamp(2.5rem, calc(1.3636363636363635rem + 4.848484848484849vw), 6.25rem); */
  font-size: clamp(2.5rem, calc(1.3636363636363635rem + 4.848484848484849vw), 5rem);
  opacity: 0.4;
  font-weight: bold;
  line-height: 1;
  /* margin-bottom: -7%; */
  margin-bottom: -0.4em;
  /* letter-spacing: 0.1em; */
  position: relative;
  z-index: 1;
}

/* ========================================
下層
======================================== */
.lib-title__outer.--typeB :where(.title):before {
  background-color: var(--ACC);
}

.--main .lib-cnt-016__link:before {
  background-color: var(--MAIN);
}

/*---------- 採用ページCTAの見出し ----------*/
.c-h-recruit-cta {
  font-size: clamp(5rem, calc(4.431818181818182rem + 2.4242424242424243vw), 6.25rem);
  line-height: 1;
  margin-bottom: -0.4em;
}

.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}

/* header */
.lib-header__logo img {
  width: 360px;
}
.s-catch {
  color: #333;
  font-size: 1.25rem;
  margin-left: 10px;
}

/*.lib-fv__thumb img {
  filter: opacity(50%);
}*/
.lib-blog-004__slider .lib-media__time {
  display: none;
}
.about-bg {
  background-image: url(/dcms_media/image/top-company01.png);
  background-position: bottom;
  background-size: cover;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
}
.contact-bg {
  background-image: url(/dcms_media/image/top-contact01.jpg);
  background-position: center;
  background-size: cover;
}
.lib-card__btn {
  width: 90%;
  margin: auto;
}
.contact-m span {
  font-size: 18px;
}
.lib-hero__title span {
  font-weight: 100;
  line-height: 1.25;
  font-size: 1.25rem;
  color: #333333;
}
.lib-table__01 th {
  text-align: left;
}
.reason-05-bg {
  background-image: url(/dcms_media/image/reason-05.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  justify-content: start;
  position: relative;
}
.reason-06-bg {
  background-image: url(/dcms_media/image/reason-06.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  justify-content: start;
  position: relative;
}
.service-07-bg {
  background-image: url(/dcms_media/image/service-07.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  justify-content: start;
  position: relative;
}
.reason-05-bg a,
.reason-06-bg a,
.service-07-bg a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.reason-05-bg .lib-card__txtarea,
.reason-06-bg .lib-card__txtarea,
.service-07-bg .lib-card__txtarea {
  position: relative;
  top: 15%;
  left: 5%;
  width: 80%;
}
.reason-05-bg .lib-card__title,
.reason-06-bg .lib-card__title,
.service-07-bg .lib-card__title {
  font-size: 2.5rem;
}
.reason-05-bg .lib-card__title span,
.reason-06-bg .lib-card__title span,
.service-07-bg .lib-card__title span {
  font-size: 1.25rem;
}
.bg-blue {
  background-color: #EEF8FC;
}
.lib-induce__btn .flex-column::after {
  display: none !important;
}
ol.list_parentheses {
  padding: 0 0 0 2em;
  margin: 0;
}
ol.list_parentheses li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}
ol.list_parentheses li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
table.tblC {
  width: 80%;
  margin: 20px auto;
}
.tblC tr th:first-child {
  width: 30%;
}
.tblC tr td {
  text-align: center;
  color: var(--MAIN);
}
.sub-catch {
  font-size: 19px;
  font-weight: 400;
}
.lib-card__thumb img {
  border-radius: 10px;
}
.bg-yellow {
  background-color: #FFF9D5;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 10px 20px;
}
.fs-19-bold {
  font-size: 1.1875rem;
  font-weight: bold;
}
:where(.lib-link__btn) {
  border-radius: 10px;
}
.bg-recruit {
  background-color: #F8F8F8;
}
.lib-induce__outer>li {
  flex-flow: column;
}
.fs-12 {
  font-size: 12px;
  text-align: right;
}
.h-time {
  background-color: #03793B;
  color: #FFF;
  font-size: 10px;
  border-radius: 4px;
  text-align: center;
  display: none;
}
.ico-before-phone:before {
  background-color: #03793b;
  color: #FFF;
  padding: 4px;
  font-size: 12px;
  border-radius: 50%;
}
.lib-header__outer a:not([class*=__btn]) {
  color: #03793B;
  font-size: 20px;
  font-weight: bold;
  justify-content: end;
}
.lib-induce__outer {
  justify-content: center;
}
.lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
  width: 70%;
}
footer table.tblC {
  width: 100%;
  margin: 20px auto;
  display: none;
}
.lib-footer__logo {
  width: 240px;
  margin: 0 auto;
}
.lib-footer__copyright {
  background-color: var(--MAIN);
}
.lib-footer__title>a {
  font-weight: 400;
}
.lib-rss__001 .lib-card__thumb img {
  height: fit-content;
}
.lib-rss__001 .lib-media__thumb {
  border-radius: 10px;
}
.lib-rss__001 .lib-media__title a {
  font-size: 1.25rem;
  font-weight: 400;
}
span.red-bold {
  font-weight: bold;
  color: red;
}
.bg-mv {
  background-color: #E8F5E9;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.lib-hero__txtarea {
  justify-content: center;
}
.bg-bag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5em;
  background-image: url('/dcms_media/image/icon-bag.png');
  background-size: cover;
  vertical-align: middle;
}
.cl-midashi {
  color: #333;
  background-color: #E8F5E9;
  padding: 1em 2em;
  font-size: 1.25rem;
}
ul.s-black li:before {
  background-color: var(--DEF);
}
.bg-internal {
  background-color: #FFFEEE;
  border: 1px solid #C7C7C7;
  padding: 30px !important;
}
.flow-flex {
  column-gap: 40px;
  justify-content: center;
}
.flow-flex .col {
  width: 25%;
}
.w-80 {
  width: 80%;
}
a.no-link {
  pointer-events: none
}
#access .lib-cnt-protrude__outer.lib-wide__outer>*>[class*=__txtarea]:before {
  width: 665px;
  box-shadow: var(--bs-box-shadow) !important;
}
#access .pl-6 {
  padding-left: 6rem !important;
}
#access .bg-y {
  background-color: #FFF9D5;
  padding: 20px;
  width: 400px;
}
.bg-t-wht {
  background-color: var(--WHT);
  border: var(--GRY) 1px solid !important;
  color: var(--MAIN);
}

@media print,
screen and (min-width: 992px) {
  .is-scroll .lib-header__logo img {
    width: 360px;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__btn .txt {
    padding-left: 0px;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__btn .txt:before {
    margin-bottom: 10px;
    margin-right: 0px;
  }
  .lib-header__outer.lib-header-BS02 .lib-header__bar {
    width: 480px;
  }
  #wrapper:has(.lib-header-BS02) .lib-hero__outer {
    padding-top: 0;
    min-height: 100px;
  }
  .mv-h1 {
    font-size: 2.8rem;
  }
  .contact-m span {
    font-size: 24px;
  }
}

@media print,
screen and (min-width: 768px) {
  .lib-cnt-012__outer .lib-cnt-012__col:nth-child(4n-1) .lib-card__item,
  .lib-cnt-012__outer .lib-cnt-012__col:nth-child(4n-2) .lib-card__item {
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: overlay;
  }
  .lib-cnt-012__outer .lib-cnt-012__col:nth-child(4n) .lib-card__item,
  .lib-cnt-012__outer .lib-cnt-012__col:nth-child(4n-3) .lib-card__item {
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: overlay;
  }
  #s-col .lib-cnt-020__thumb {
    width: 420px;
  }
  h2 {
    font-size: 1.6rem;
  }
  #col-4 .lib-card__title {
    font-size: 1.1rem;
  }
}

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

.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .sp-order-1 {
    order: 1;
  }
  .sp-order-2 {
    order: 2;
  }
}



@media print,
screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .spx-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .lib-header__logo img {
    width: 250px;
  }
  .lib-header__outer {
    height: 60px;
  }
  .lib-header__bar {
    height: 60px;
  }
  .lib-menu__btn {
    height: 60px;
  }
  .reason-05-bg,
  .reason-06-bg,
  .service-07-bg {
    height: 150px;
  }
  .lib-cnt-012__col:nth-child(odd) .lib-card__item {
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: overlay;
  }
  .lib-cnt-012__col .lib-card__item {
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: overlay;
  }
  .reason-05-bg .lib-card__title,
  .reason-06-bg .lib-card__title,
  .service-07-bg .lib-card__title {
    font-size: 2rem;
  }
  .reason-05-bg .lib-card__title span,
  .reason-06-bg .lib-card__title span,
  .service-07-bg .lib-card__title span {
    font-size: 1rem;
  }
  .lib-hero__title span {
    display: block;
  }
  table.tblC {
    width: 100%;
  }
  #contents {
    padding: 1.5rem .75rem 10px;
  }
  .lib-fv__thumb {
    height: unset;
  }
  .flow-flex .col {
    width: 80%;
  }
  .lib-card__btn {
    margin: auto !important;
  }
  .lib-hero__outer {
    min-height: 100px;
  }
  #access .pl-6 {
    padding-left: 1rem !important;
  }
  #access .bg-y {
    width: 100%;
  }
}