@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);
}

/* ==================================
リセット・調整
===================================== */
: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;
}

.is-scroll .lib-header__outer.lib-header-BS02 .lib-induce__outer {
  height: 40px;
  top: 15%;
}


/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさは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;
  }
}

/*---------- 背景のベース ----------*/
body {
  background-color: #F9F9F9;
  letter-spacing: 2px;
}
.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;
}
.logo-text {
  color: var(--WHT);
  line-height: 1.5;
}
.header-sns-tel {
  width: 200px !important;
  border: none !important;
}
.header-sns-tel span:where(.ico-before-phone):before {
  margin-top: 0;
  border: 2px solid #FFF;
  border-radius: 50px;
  padding: 6px;
  margin-left: 10px;
}


/* ========================================
下層MV
======================================== */
.js-page-main {
  background-image: url(/dcms_media/image/wagara.jpg);
  background-position: center;
  background-size: cover;
  /* background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay; */
}
.lib-hero__outer {
  background-color: transparent;
  min-height: 230px;
  /* color: var(--MAIN); */
}
.lib-hero__title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.875rem;
  /* text-shadow: 2px 2px 2px #000; */
}
.title-en {
  font-size: 3.4375rem;
  font-weight: bold;
  color: #ffffff;
  /* text-shadow: 2px 2px 2px #000; */
}
.c-under-mv-text-en {
  color: rgb(14 90 136 / 18%);
  font-size: clamp(2.5rem, calc(1.3636363636363635rem + 4.848484848484849vw), 5rem);
  font-weight: bold;
  line-height: 1;
  margin-bottom: -0.4em;
  position: relative;
  z-index: 1;
}

.mb-150 {
  margin-bottom: 150px;
}

@media screen and (max-width: 768px) {
  .mb-150 {
    margin-bottom: 150px;
  }
}

/* ========================================
下層
======================================== */
.lib-title__outer :where(.title) {
  color: var(--DEF);
}
.lib-title__outer.--typeB :where(.title):before {
  background-color: var(--ACC);
}
.--main .lib-cnt-016__link:before {
  background-color: var(--MAIN);
}
.maru-title {
  font-size: 1.25rem;
}
.maru-title::before {
  content: "●";
  display: inline-block;
  color: #C5C5C5;
  width: 1em;
  height: 1em;
  margin-right: .5em;
}
.midashi-g {
  color: #333333;
  font-size: 1.5rem;
  font-weight: bold;
}
.bg-fa {
  background-color: #FAFAFA;
}
.pl-10 {
  padding-left: 10% !important;
}
.pl-25 {
  padding-left: 25% !important;
}
.lib-rss__title span {
  background-color: #092C4C;
  color: #FFF;
  padding: 5px 10px;
  margin-right: 20px;
}
.lib-rss__001 .lib-rss__title a {
  align-items: center;
}
.lib-form__outer {
  margin-bottom: 5rem;
}
.bg-blue {
  background-color: #092C4C;
}
.lib-flow-004__item:after {
  border-top-color: var(--MAIN);
}
.lib-title__outer.--typeD :where(.title):before {
  background-color: var(--DEF);
}
/*---------- 採用ページ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: 80px;
}*/
.s-catch {
  color: #333;
  font-size: 1.25rem;
  margin-left: 10px;
}

/*.lib-fv__thumb img {
  filter: opacity(50%);
}*/
.lib-header__outer {
  background-color: #F9F9F9;
}
.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;
}
.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;
  color: #000;
  background-color: #C5C5C5;
  border-left-color: #C5C5C5 !important;
}
.lib-table__01 td {
  border: #F5F5F5 1px solid !important;
}
.lib-table__01.t-rec th {
  text-align: left;
  background-color: var(--MAIN);
  border-top: none !important;
  border-right: none !important;
}
.t-rec th {
  text-align: left;
  color: #000;
  background-color: transparent !important;
  border-left: none !important;
  border-bottom: 1px solid #C5C5C5;
  font-weight: 400;
}
.t-rec td {
  border: #C5C5C5 1px solid !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.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: 600;
}
/*.lib-card__thumb img {
  border-radius: 10px;
}*/
.bg-yellow {
  background-color: #FFF9D5;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 10px 20px;
}
.fs-h5 {
  line-height: 1.5;
}
.fs-19-bold {
  font-size: 1.1875rem;
  font-weight: bold;
}
.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;
}
.lib-cta__phone>dt .txt:before {
  font-size: 130%;
  font-weight: 100;
}
.dis-flex-column {
  display: flex;
  flex-flow: column;
}
.lib-header__outer a:not([class*=__btn]) {
  color: var(--MAIN);
  font-size: 20px;
  font-weight: bold;
}
.lib-nav__btn {
  color: var(--DEF);
}
.lib-nav__btn>.txt {
  font-size: 18px;
}
.lib-nav__btn>.txt:before {
  background-color: var(--MAIN);
}
.lib-induce__outer {
  justify-content: center;
}
.lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
  width: 70%;
}
.lib-header__outer .lib-footer__sns {
  margin-top: 0;
}
.lib-header__outer .lib-footer__sns>li>a {
  color: #fff;
  border: none;
  background-color: #F9F9F9;
}
.lib-header__outer .lib-footer__sns>li>a:hover {
  opacity: 0.7;
}
.lib-header__outer .lib-footer__sns {
  gap: 20px;
}
footer table.tblC {
  width: 100%;
  margin: 20px auto;
}
footer :where(.thumb) {
  background-color: transparent !important;
}
.lib-footer__sns>li>a {
  border: var(--WHT) 2px solid;
  background-color: var(--WHT);
}
.lib-footer__sns>li>a:hover {
  opacity: 0.7;
}
.lib-footer__logo {
  width: 150px;
  margin: 0;
}
.lib-footer__copyright {
  background-color: var(--MAIN);
}
.lib-footer__title>a {
  font-weight: 400;
  /* border-bottom: 1px solid #0E5A88; */
  background-color: var(--WHT);
  width: 100%;
  padding-bottom: 5px;
  justify-content: center;
  align-items: center;
  color: var(--DEF);
  border: none !important;
}
.lib-footer__title>a:hover {
  text-decoration: underline !important;
}
.lib-footer__gnav .lib-footer__title a:hover span {
  text-decoration: none !important;
}
.lib-footer__sns>li>a.--ig:before {
  color: #000;
  font-size: 2rem;
}
.lib-footer__sns>li>a.--cart:before {
  font-family: 'Material Icons' !important;
  content: "\e8cc";
  color: #000;
  font-size: 2rem;
}
.page_index #contents {
  padding-top: 0rem;
}
.mt-n100 {
  margin-top: -100px;
}
.lib-rss__list {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid var(--GRY);
  border-top: 1px solid var(--GRY);
  color: var(--WHT) !important;
}
:where(a):has([class*=__btn]):has(.txt),
:where(a)[class*=__btn]:has(.txt) {
  text-decoration: none !important;
  /* max-width: 280px; */
  border-radius: 0;
}
.title_line {
  padding: 1rem 0 1rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #661A0A 0% 100%);
  background-repeat: no-repeat;
  background-size: 60px 2px;
  background-position: left bottom;
}
.bg-f5 {
  background-color: #F5F5F5 !important;
}
.bg-cta {
  background: url(/dcms_media/image/bg-cta.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: -2;
  background-position: center;
}
.bg-recruit {
  background: url(/dcms_media/image/bg-recruit.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 0;
  background-position: center;
}
.bg-company {
  background: url(/dcms_media/image/bg-company.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 50%);
  background-blend-mode: overlay;
}
.bg-store {
  background: url(/dcms_media/image/bg-store.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 50%);
  background-blend-mode: overlay;
}
.bg-contact {
  background: url(/dcms_media/image/bg-contact.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 50%);
  background-blend-mode: overlay;
}
.bg-service {
  background: url(/dcms_media/image/bg-service.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(0 0 0 / 30%);
  background-blend-mode: overlay;
}
.bg-service-01 {
  background: url(/dcms_media/image/service-01.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
  padding-top: 6rem;
  padding-bottom: 18rem;
}
.bg-service-02 {
  background: url(/dcms_media/image/service-02.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
  padding-top: 6rem;
  padding-bottom: 18rem;
}
.bg-service-03 {
  background: url(/dcms_media/image/service-03.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
  padding-top: 6rem;
  padding-bottom: 18rem;
}
.bg-service-04 {
  background: url(/dcms_media/image/service-04.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
  padding-top: 6rem;
  padding-bottom: 18rem;
}
.bg-service-05 {
  background: url(/dcms_media/image/service-05.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-color: rgb(255 255 255 / 30%);
  background-blend-mode: overlay;
  padding-top: 6rem;
  padding-bottom: 18rem;
}
.bg-top-07 {
  background: url(/dcms_media/image/top-07.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: top;
  background-color: rgb(0 0 0 / 20%);
  background-blend-mode: overlay;
}
.bg-commitment {
  background: url(/dcms_media/image/commitment-01.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  /* background-color: rgb(255 255 255 / 50%); */
  background-blend-mode: overlay;
}
.bg-menu {
  background: url(/dcms_media/image/bg-menu.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  /* background-color: rgb(255 255 255 / 50%); */
  background-blend-mode: overlay;
}
.bg-store {
  background: url(/dcms_media/image/store-01.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  /* background-color: rgb(255 255 255 / 50%); */
  background-blend-mode: overlay;
}
.bg-souvenir {
  background: url(/dcms_media/image/souvenir-01.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  /* background-color: rgb(255 255 255 / 50%); */
  background-blend-mode: overlay;
}
.bg-group {
  background: url(/dcms_media/image/group-01.jpg);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: 1;
  background-position: center;
  /* background-color: rgb(255 255 255 / 50%); */
  background-blend-mode: overlay;
}
.bg-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.bg-other-touka {
  background-color: #e7f7fdb3;
}
.fs-46 {
  font-size: 46px;
}
.rounded-50 {
  border-radius: 50px !important;
}
.rounded-50p {
  border-radius: 50% !important;
}
.lib-footer__guidance a {
  color: #FFF;
}
.lib-footer__guidance>li~li:before {
  background-color: #ffffff;
  top: 20%;
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__guidance a {
  color: var(--WHT);
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__guidance>li~li:before {
  background-color: var(--WHT);
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__utility {
  background-color: #000;
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__copyright {
  background-color: #000;
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__gnav {
  border-top: none;
  padding-bottom: 30px;
  border-bottom: var(--GRY) 1px solid;
}
#wrapper:has(.lib-header-BS02) {
  z-index: 0;
  position: relative;
}
.mv-catch {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  padding: 3%;
  line-height: 1.5;
  z-index: 100;
  text-shadow: 2px 2px 2px #000000;
}
.mv-botan {
  position: absolute;
  bottom: 1%;
  right: 10%;
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  padding: 3%;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.mv-botan a:first-child {
  background-color: rgb(22 179 237 / 90%);
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
  padding: 20px;
  /* background: #cccccc; */
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mv-botan a:nth-child(2) {
  background-color: rgb(14 90 136 / 90%);
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
  padding: 20px;
  /* background: #cccccc; */
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mv-botan a:hover {
  opacity: 0.8;
}
.lib-fv__thumb {
  position: relative;
  display: inline-block;
}
.lib-fv__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.3); */
}
.grid-pic5 {
  margin-top: 40px;
  display: grid;
  gap: 5%;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
ul.kuromaru {
  padding-left: 0.5rem;
}
ul.kuromaru li:before {
  background-color: var(--DEF);
}
.p-name {
  font-family: "HGP行書体";
  font-size: 45px;
  text-align: right;
  padding-right: 2rem;
}
.p-name-sub {
  font-family: "HGP行書体";
  font-size: 20px;
  text-align: right;
  padding-right: 5rem;
}
.t-com:where(table) th,
.t-com:where(table)>thead {
  border: var(--GRY) 1px solid;
  background-color: var(--WHT);
  color: var(--DEF);
  border-top: none;
  border-left: none;
  border-right: none;
}
.t-com:where(table) td {
  border-top: none !important;
  border-left: none;
  border-right: none;
}
.img-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #FFF;
  font-size: 14px;
}
.list-cjk {
  list-style-type: cjk-ideographic;
}
ul.list-cjk {
  padding-left: 2rem;
}
ul.list-cjk li:before {
  display: none;
}
ul.list-cjk li {
  padding-left: 0;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
}
#loading img {
  width: 240px;
  margin: 0 auto;
}
#load-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.h2_title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.page-index .lib-flow-001__col:nth-child(2n):after {
  display: none;
}
.page-index .lib-flow-001__col:after {
  left: unset;
  top: 20%;
  content: url(/dcms_media/image/flow-arrow.png);
  border: none;
  transform: none;
}
.page-index .lib-flow-001__col {
  margin-top: 0;
}
.text-center-red {
  color: #dc3545;
  font-weight: bold;
}
.lib-wrr-003__band:before {
  bottom: -25px;
}
.text-gold span {
  color: #F8D32F;
  font-size: 1.8rem;
}
span.yellow {
  font-size: 30px;
  color: #F8D32F;
}
#t-service a {
  text-decoration: none;
}
.y-waku {
  background-color: var(--MAIN);
  border-radius: 20px;
  font-size: 21px;
  font-weight: bold;
  color: #FFF;
  padding: 3%;
  text-align: center;
}
.py-company {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 0px !important;
}
.lib-flow-001__col:after {
  border-top-color: var(--MAIN);
}
.lib-grid__outer :where(.lib-link__btn) {
  background-color: var(--LOTH);
  color: var(--WHT);
  border: var(--LOTH) 2px solid;
}
.lib-grid__outer :where(.lib-link__btn):hover {
  background-color: var(--WHT);
  color: var(--LOTH);
  border: var(--LOTH) 2px solid;
}
.lib-header__logo span:where(.thumb) {
  background-color: transparent !important;
}
.lib-header__outer .lib-footer__data {
  margin-top: 0;
}
.lib-flow-003__item~.lib-flow-003__item {
  margin-top: 4rem;
}
.lib-flow-003__item:after {
  bottom: -60px;
  color: var(--MAIN);
  text-shadow: 0 15px var(--MAIN), 0 -15px var(--MAIN);
}
.lib-card__inside>:where(*)~:where(*) {
  line-height: 1.8;
}






@media print,
screen and (min-width: 992px) {
  .lib-header__outer {
    height: 100px;
  }
  /*.is-scroll .lib-header__logo img {
    width: 50px;
  }*/
  .lib-header__outer.lib-header-BS02 .lib-induce__outer {
    height: 60px;
    right: 10px;
    top: 20%;
  }
  .lib-header__outer.lib-header-BS02 .lib-induce__outer>li {
    width: 100%;
    height: 100%;
  }
  .lib-nav__panel:has(.lib-induce__outer) {
    padding-right: 480px;
  }
  #wrapper:has(.lib-header-BS02) {
    padding-top: 100px;
  }
  .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: 450px;
  }
  .mv-h1 {
    font-size: 2.8rem;
  }
  .contact-m span {
    font-size: 24px;
  }
  .lib-cta__outer .lib-link__btn.sizeL {
    max-width: 360px;
  }
  .lib-flow-001__title {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  .lib-flow-001__col:nth-child(3n):after {
    display: block;
  }
  .lib-flow-001__col:last-child:after {
    display: none;
  }
}

.mv-tel {
  position: absolute;
  top: 20%;
  right: 245px !important;
  font-size: 24px;
  font-weight: bold;
  color: var(--MAIN);
  line-height: 1.5;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.mv-tel span {
  font-size: 30px;
}
.mv-tel .ico-before-phone:before {
  padding: 0;
  font-size: 30px;
  position: relative;
  top: -3px;
}
.text-area {
  position: absolute;
  top: 10%;
}
.bg-rec-hei {
  height: 500px;
}


@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;
  }
  #col-4 .lib-card__title {
    font-size: 1.1rem;
  }
  .max-md-380 {
    max-width: 280px;
  }
  .lib-footer__outer.lib-footer-BS02 .lib-footer__utility {
    margin-top: 0px;
  }
  .lib-flow-001__col:after {
    border-top-color: var(--MAIN);
  }
  .page-index .lib-flow-001__col:nth-child(3n):after {
    display: block;
  }
  .page-index .lib-flow-001__col:nth-child(2n):after {
    display: block;
  }
  .page-index .lib-flow-001__col:last-child:after {
    display: none;
  }
  .page-index .lib-flow-001__col:after {
    /* right: 12px; */
    left: 85% !important;
    top: 20% !important;
    content: url(/dcms_media/image/flow-arrow.png);
    border: none;
    transform: none !important;
  }
  :where(.lib-link__btn).sizeL {
    min-height: 60px;
  }
  .pa-5 {
    padding: 2.5rem;
  }
  .lib-wrr-003__band:before {
    bottom: -60px;
  }
  .lib-footer__outer.lib-footer-BS01 .lib-footer__guidance {
    left: auto;
  }
}

@media print,
screen and (min-width: 576px) {
  .lib-fv__thumb.shimei {
    height: 320px;
  }
  .lib-fv__thumb {
    height: 70vh;
  }
  #contents {
    padding: 3rem .75rem 0px;
    margin-bottom: 60px;
  }
  .lib-footer__outer.lib-footer-BS02 .lib-footer__info {
    padding-bottom: 0px;
  }
}

.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: 991.8px) {
  body.is-overlay:after {
    opacity: 1;
    visibility: hidden;
  }
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
}

@media print,
screen and (max-width: 768px) {
  .lib-header__outer {
    height: 60px;
  }
  .lib-header__bar {
    height: 60px;
  }
  .logo-text {
    font-size: 12px;
  }
  .lib-menu__btn {
    height: 60px;
  }
  .lib-hero__title {
    font-size: 1.8rem;
  }
  .lib-nav__panel.is-open {
    background-color: #F9F9F9;
  }
  .title-en {
    font-size: 2.5rem;
  }
  .header-sns-tel span:where(.ico-before-phone):before {
    padding: 10px;
    background-color: var(--MAIN);
  }
  .c-under-mv-text-en {
    font-size: 1.8rem;
  }
  .lib-hero__outer {
    min-height: 160px;
  }
  .lib-header__outer a:not([class*=__btn]) {
    font-size: 16px;
  }
  .lib-footer__data {
    margin-top: -10px;
  }
  .bg-service-01,
  .bg-service-02,
  .bg-service-03,
  .bg-service-04,
  .bg-service-05 {
    padding-top: 3rem;
    padding-bottom: 9rem;
  }
  .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;
  }
  h2 {
    font-size: 1.2rem;
  }
  .fs-h3 {
    font-size: 1rem;
    line-height: 5;
  }
  table.tblC {
    width: 100%;
  }
  #contents {
    padding: 1.5rem .75rem 10px;
  }
  .lib-fv__thumb {
    height: 40vh;
  }
  .sp-flex {
    display: flex;
  }
  .w-50 {
    width: 100% !important;
  }
  .lib-footer__outer.lib-footer-BS02 .lib-footer__info {
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .lib-footer__logo {
    width: 140px;
    margin: 0;
  }
  .bg-cta {
    margin-top: 90px;
  }
  .sp-center-botan {
    text-align: center;
    margin-top: 30px;
  }
  .sp-pd-2 {
    padding: 3rem 1rem;
  }
  .mv-catch {
    bottom: 25%;
    left: 5%;
    top: 37%;
    font-size: 24px;
  }
  .mv-tel {
    position: relative;
    right: 0% !important;
  }
  .mv-tel span {
    font-size: 24px;
  }
  .mv-tel .ico-before-phone:before {
    font-size: 20px;
  }
  .pl-10 {
    padding-left: 3% !important;
  }
  .pl-25 {
    padding-left: 3% !important;
  }
  .sp-flex-flow {
    flex-flow: column;
  }
  .sp-flex-dire {
    flex-direction: column !important;
  }
  .sp-order-1 {
    order: 1;
  }
  .sp-order-2 {
    order: 2;
  }
  .mv-botan {
    right: 5%;
  }
  .mv-botan a:first-child {
    font-size: 14px;
    padding: 10px;
    height: 100px;
    width: 100px;
  }
  .mv-botan a:nth-child(2) {
    font-size: 14px;
    padding: 10px;
    height: 100px;
    width: 100px;
  }
  .sp-fs-12 {
    font-size: 12px !important;
  }
  .fs-h2 {
    font-size: 1.3rem;
  }
  .lib-cnt-010 .col.d-flex.pa-5 {
    margin-top: 10px;
  }
  #t-service {
    margin-top: 40px !important;
  }
  .y-waku {
    font-size: 16px;
  }
  .sp-mt-20 {
    margin-top: 20px !important;
  }
  .sp-pt-10 {
    padding-top: 10px;
  }
  .lib-card__btn {
    text-align: center !important;
  }
  .h2_title {
    font-size: 2rem;
  }
  .bg-company {
    padding: 4.5rem 20px;
  }
  .grid-pic5 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
  パーツ
======================================== */
/*---------- ボタン ----------*/
/* アイコン付きボタン（リンク） */
.c-btn-icon {
  display: grid !important;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}
.c-btn-icon .material-icons,
.c-btn-icon .material-icons-outlined {
  font-size: 1.5em;
}
/* 右にアイコン */
.c-btn-icon.--right {
  grid-template-columns: auto 1.5em;
}
/* 左にアイコン */
.c-btn-icon.--left {
  grid-template-columns: 1.5em auto;
}

.float-btn-01 {
  border: 1px solid #ee903d !important;
}
.float-btn-01 a {
  color: #fff !important;
  background-color: #ee903d !important;
}
.float-btn-01 a:hover {
  color: #ee903d !important;
  background-color: #fff !important;
}
.float-btn-02 {
  border: 1px solid #00B900 !important;
}
.float-btn-02 a {
  color: #fff !important;
  background-color: #00B900 !important;
}
.float-btn-02 a:hover {
  color: #00B900 !important;
  background-color: #fff !important;
}
.img-line img {
  width: 25px;
}



/* ========================================
フッター
======================================== */
/*---------- フッターフィックスとの位置調整 ----------*/
@media (max-width: 767.98px) {
  .share_top-link .top-link {
    top: -120px;
  }
  .img-line img {
    width: 40px;
  }
  .c-btn-icon.--left {
    grid-template-columns: auto;
  }
  .lib-footer__outer.lib-footer-BS02 .lib-footer__gnav {
    padding-bottom: 0px;
    border-bottom: none;
  }
  .lib-footer__utility {
    margin-top: 0px;
  }
  .lib-footer__copyright {
    margin: 0px -15px 0 !important;
  }
  .lib-footer__guidance {
    padding-top: 20px;
  }
}

/* ========================================
フッターフィックス
======================================== */
.p-footer-fix {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  position: sticky;
  inset: 0;
  top: auto;
}
@media only screen and (min-width: 992px) {
  .p-footer-fix {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    position: fixed;
    top: 50vh;
    left: auto;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 10;
  }
  .p-footer-fix .c-btn-icon {
    grid-template-columns: auto;
    grid-template-rows: 1em auto;
  }
  .p-footer-fix .btn .c-text-vertical {
    writing-mode: vertical-rl;
  }
}
@media(min-width:751px) {
  .sp {
    display: none !important;
  }
}
@media(max-width:750px) {
  .pc {
    display: none !important;
  }
  .page-index .lib-flow-001__col:after {
    left: 95%;
  }
  .rounded-50p {
    border-radius: 0% !important;
  }
}