@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);
}
/* MacやiOSには適用 */
html body:not(.dcms_editor) {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Windowsは font-smoothing の指定を避けるか、上書き */
.is-windows body:not(.dcms_editor) {
  -webkit-font-smoothing: auto !important;
  font-family: 'Noto Sans JP',sans-serif !important;
  /*transform: rotate(0.05deg);*/
}
body:not(.dcms_editor) {
  letter-spacing: 1px;
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
: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-lh-2_5 {
  line-height: 2.5 !important;
}
.u-lh-3 {
  line-height: 3 !important;
}
.u-lh-3_5 {
  line-height: 3.5 !important;
}
@media print, screen and (max-width: 767px) {
  .u-lh-3 {
    line-height: 2.5 !important;
  }
}


/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--2x1 img {
  aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
  aspect-ratio: 3 / 1;
}
.u-aspect.--4x1 img {
  aspect-ratio: 4 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
  aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
  aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img {
  object-fit: contain;
}

/* メディア一覧の画像 */
.media-post__thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
  overflow: hidden;
}
.u-rounded-_25 {
  border-radius: 0.25rem !important;
}
.u-rounded-_5 {
  border-radius: 0.5rem !important;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
}
.u-rounded-1 {
  border-radius: 1rem !important;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
}
.u-rounded-2 {
  border-radius: 2rem !important;
}
.u-rounded-3 {
  border-radius: 3rem !important;
}
[class*="u-rounded-"].--t-only {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--b-only {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
[class*="u-rounded-"].--r-only {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--l-only {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
  margin-right: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-r-md-over {
    margin-right: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-r-lg-over {
    margin-right: var(--oversize);
  }
}
/* 左に */
.u-l-over {
  margin-left: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-l-md-over {
    margin-left: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-l-lg-over {
    margin-left: var(--oversize);
  }
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
}
.c-icon img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5em;
  justify-content: center;
  align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
  grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
  grid-template-columns: auto 1fr;
}
@media print, screen and (min-width: 992px) {
  .c-icon-text {
    column-gap: 1em;
  }
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bl);
  opacity: 0.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);
}

/* ==================================
ヘッダー
===================================== */
header {
  position: fixed;
  top: 60px;
  right: 50%;
  z-index: 1000;
  transform: translateX(50%);
}
/*---------- TOP header ----------*/
.page-index header {
  top: 120px;
}
.is-scroll .page-index header {
  top: 60px;
}
@media print, screen and (min-width: 992px) {
  /*---------- TOP header ----------*/
  .page-index header {
    display: inline-block !important;
  }
}
@media print, screen and (max-width: 991px) {
  header.p-0 {
    max-width: none;
    padding: 0 20px 0 24px !important;
    top: 30px;
  }
  /*---------- TOP header ----------*/
  .page-index header {
    top: 90px;
  }
  .is-scroll .page-index header {
    top: 20px;
  }
}

/*---------- logo ----------*/
.lib-header__logo {
  z-index: 10000;
}
.lib-header__logo .logo02 {
  display: none;
}
.page-index .lib-header__logo .logo02 {
  display: inline-block;
}
/* スクロールしたらロゴを消す */
.is-scroll .lib-header__logo {
  display: none !important;
}
@media print, screen and (min-width: 992px) {
  .lib-header__logo a .logo01 img {
    width: auto !important;
    height: 30px !important;
    margin-right: 14px;
  }
  .lib-header__logo a .logo02 img {
    width: auto !important;
    height: 22px !important;
  }
}
@media print, screen and (max-width: 991px) {
  .lib-header__logo a .logo01 img {
    width: auto !important;
    height: 18px !important;
    margin-right: 8px;
  }
  .lib-header__logo a .logo02 img {
    width: auto !important;
    height: 13px;
  }
}


/*---------- header menu ----------*/
.menu-wrapper {
  z-index: 1000;
  margin-left: auto;
}
/*---------- TOP header menu ----------*/
.page-index .menu-wrapper {
  opacity: 0;
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 3s; /* AOSのdelayに合わせる */
  margin-top: 50px;
}
.is-scroll .page-index .menu-wrapper {
  margin-top: 0;
}
/* フッターが画面内に表示されたらMENUを消す */
header.footer-visible .menu-wrapper {
  opacity: 0 !important;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media print, screen and (max-width: 991px) {
  .page-index .menu-wrapper {
    margin-top: 0;
  }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 78px;
  height: 24px;
  z-index: 101;
}
.menu-dot {
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--DEF);
  position: absolute;
  border-radius: 10px;
}
.menu-dot:first-of-type {
  top: 0;
  right: 16px;
}
.menu-dot:nth-of-type(2) {
  top: 0;
  right: 0;
}
.menu-dot:nth-of-type(3) {
  bottom: 0px;
  right: 16px;
}
.menu-dot:nth-of-type(4) {
  bottom: 0;
  right: 0;
}
.menu-label {
  position: absolute;
  left: 0;
  top: 8px;
}
.menu-nav {
  top: -80px;
  right: -200px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 480px;
  height: 480px;
  border-radius: 100%;
  position: absolute;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);

  /* 初期状態：非表示＋縮小 */
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  pointer-events: none; /* 非表示中はクリック無効に */
  z-index: 100;
}
.menu-nav.active {
  transform: scale(1);     /* 拡大表示 */
  opacity: 1;
  pointer-events: auto;    /* クリック有効化 */
}
.menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 167px;
}
.menu-nav li {
  margin-bottom: .6rem;
}
.menu-nav a {
  font-size: 0.875rem;
  text-decoration: none !important;
  color: var(--DEF);
  letter-spacing: 0.1em;
}
.menu-nav a:hover {
  color: var(--DEF);
  opacity: .6;
}
@media print, screen and (max-width: 991px) {
  .menu-nav {
    top: -90px;
    right: -19vw;
    background-color: var(--WHT);
    width: 128vw;
    height: fit-content;
    border-radius: 0 0 1000px 1000px;
  }
  .is-scroll .menu-nav {
    top: -40px;
  }
  .menu-nav ul {
    padding-top: 209px;
  }
  .is-scroll .menu-nav ul {
    padding-top: 139px;
  }
  .menu-nav li {
    margin-bottom: 43px;
    line-height: 1;
  }
  .menu-nav li:last-child {
    margin-bottom: 83px;
  }
}


/* ========================================
PAGE TOP
======================================== */
.lib-pagetop__btn a .txt {
  width: auto;
  height: auto;
  border: none;
}
.lib-pagetop__btn a .txt:before {
  display: none;
}
.lib-pagetop__btn a .txt img {
  width: auto;
  height: 60px;
}
.lib-pagetop__btn.is-scroll a {
  right: 5%;
  display: block;
  height: 60px;
}
.lib-pagetop__btn a .txt {
  box-shadow: none;
  background-color: transparent;
}
@media print, screen and (max-width: 576px) {
  .lib-pagetop__btn.is-bottom a {
    top: -40px;
  }
}
@media print, screen and (min-width: 576px) {
  .lib-pagetop__btn.is-bottom a {
    top: -95px;
  }
}

/* ========================================
フッター
======================================== */
.lib-footer__outer {
  padding-top: 130px;
  padding-bottom: 48px;
}

/*---------- footer logo  ----------*/
.lib-footer__logo {
  width: auto;
  text-align: end;
}
.lib-footer__logo img {
  width: auto;
  height: 30px;
}
/*---------- footer menu ----------*/
.lib-footer__child {
  margin-bottom: 60px;
}
.lib-footer__container .col-8 .thumb:first-of-type {
  margin-right: 18px;
}
.lib-footer__container .col-8 .thumb:first-of-type img {
  width: auto;
  height: 43px;
}
.lib-footer__container .col-8 .thumb:last-of-type img {
  width: auto;
  height: 65px;
}
.lib-footer__title>a {
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none !important;
}
.lib-footer__child a, .lib-footer__title>a .txt {
  text-decoration: none !important;
}
.lib-footer__title>a:hover, .lib-footer__child a:hover {
  color: var(--DEF);
  opacity: .6;
  text-decoration: none !important;
}

/*---------- コピーライト ----------*/
.copyright {
  margin-top: 30px;
}

@media print, screen and (max-width: 767px) {
  .lib-footer__inner {
    max-width: 1120px;
    padding-left: 40px;
    padding-right: 40px;
  }

  /*---------- footer logo  ----------*/
  .lib-footer__logo {
    margin-top: 100px;
  }
  .lib-footer__logo img {
    height: 55px;
  }

  /*---------- footer menu ----------*/
  .lib-footer__child {
    margin-bottom: 30px;
  }
  .lib-footer__title>a {
    font-size: 0.75rem;
    padding: 19px 0;
  }
  footer .lib-footer__child:first-of-type {
    border-bottom: 1px solid var(--WHT);
    padding-bottom: 3rem;
  }
  footer .lib-footer__child:nth-of-type(2) {
    margin-top: 80px;
  }
}


/* ========================================
COMMON
======================================== */
:where(a):hover {
  opacity: .6;
  text-decoration: none !important;
  color: var(--DEF) !important;
}
:where(a):where(:not([class*=lib-])):where(:not([class*=hover-])) {
  text-decoration: none !important;
}
@media print, screen and (min-width: 992px) {
  .container, #contents {
    max-width: 1120px;
  }
  #contents {
    padding-left: 0;
    padding-right: 0;
  }
}
@media print, screen and (max-width: 991px) {
  #wrapper {
    padding-top: 0;
  }
}
@media print, screen and (max-width: 767px) {
  #contents {
    padding-left: 40px;
    padding-right: 40px;
  }
  .lib-wide__outer {
    margin-left: -40px;
    margin-right: -40px;
  }
  .lib-wide__outer.--fill-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/*---------- 共通タイトル ----------*/
.lib-title__outer :where(.title).before-color01:before {
  background-color: var(--COLOR01) !important;
}
.lib-title__outer :where(.title).before-color02:before {
  background-color: var(--COLOR02) !important;
}
.lib-title__outer :where(.title).before-color03:before {
  background-color: var(--COLOR03) !important;
}
.text-color01 {
  color: var(--COLOR01) !important;
}
.lib-title__outer.--typeB :where(.title) {
  padding-left: 28px;
}
@media print, screen and (max-width: 767px) {
  .lib-title__outer.--typeB :where(.title) {
    padding-left: 20px;
  }
}
.lib-title__outer.--typeB :where(.title):before {
  width: .5em;
  height: .5em;
  position: absolute;
  top: .5em;
  left: 0;
}
.page-index .lib-title__outer.--typeB :where(.title):before,
.download-block .lib-title__outer.--typeB :where(.title):before {
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

/*---------- 共通ボタン ----------*/
.common-btn a {
  display: block;
  position: relative;
  color: var(--DEF);
  font-family: 'Metropolis', sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  width: 110px;
  height: 50px;
  letter-spacing: 0.1em;
  line-height: 17.5px;
}
.common-btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(/dcms_media/image/arrow.png) no-repeat 100% / 100% auto;
  width: 50px;
  height: 18px;
  transition: all .6s;
  padding-top: 13px;
}
.common-btn a:hover {
  color: var(--DEF);
  opacity: .6;
}
.common-btn a:hover:before {
  left: 50%;
  transition: all .6s;
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  .common-btn a {
    width: 92px;
    height: 42px;
  }
  .common-btn a::before {
    width: 43px;
    height: 15px;
  }
}

/* ========================================
TOP
======================================== */
.page-index #contents {
  padding-top: 90px;
}
@media print, screen and (max-width: 767px) {
  .page-index #contents {
    padding-top: 17px;
  }
}
.top-sub-title {
  margin-bottom: .20rem !important;
  font-size: 17px;
}
/*---------- 背景色ありの余白 ----------*/
.bg-p {
  padding: 100px 0 120px;
}
@media print, screen and (max-width: 767px) {
  .bg-p {
    padding: 80px 20px 100px;
  }
}



/*---------- mv topics ----------*/
.top-mv-topics {
  top: 0;
  left: 0;
  z-index: 1000;
  height: 60px;
  box-shadow: inset 0 -8px 8px -5px rgba(0, 0, 0, 0.3);
  animation-delay: 3.6s;
}
.top-mv-topics .lib-media__txtarea {
  flex-direction: row-reverse;
  padding: 0 !important;
}
.top-mv-topics .lib-media__thumb, 
.top-mv-topics .lib-media__txt, 
.top-mv-topics .lib-media__category, 
.top-mv-topics .lib-media__time.media-post__time p span, 
.top-mv-topics .lib-media__time.media-post__time p:nth-child(2), 
.top-mv-topics .lib-swiper__control {
  display: none !important;
}
.top-mv-topics .lib-media__time.media-post__time {
  display: block !important;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
  position: relative;
}
.top-mv-topics .lib-media__time.media-post__time time {
  font-size: 0.875rem;
}
.top-mv-topics .lib-media__time.media-post__time::before {
  content: "｜";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-mv-topics .lib-media__time.media-post__time::after {
  content: "｜";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.top-mv-topics .lib-media__title {
  font-size: 0.875rem;
  padding: 0 !important;
  margin: 0 !important;
  font-weight: 500;
}
.top-mv-topics .lib-media__title a:hover {
  color: var(--DEF);
  opacity: .6;
}
@media print, screen and (max-width: 991px) {
  .top-mv-topics .topics-title, 
  .top-mv-topics .lib-media__time.media-post__time::before, 
  .top-mv-topics .lib-media__time.media-post__time {
    display: none !important;
  }
}

@media print, screen and (max-width: 767px) {
  .top-mv-topics {
    z-index: 0;
  }
}



/*---------- MV ----------*/
.text-fast  {
  margin-right: -16px;
}
.test-grasp {
  margin-left: 16px;
}
@media print, screen and (min-width: 768px) {
  .text-fast {
    margin-right: -33px;
  }
  .test-grasp {
    margin-left: 33px;
  }
}
.top-mv .lib-wide__outer {
  padding-top: 200px;
  margin: 0 !important;
}
.top-mv .title-01, .top-mv .title-02 {
  font-size: clamp( 2.75rem, calc( 1.375rem + 5.5vw ), 5.5rem );
  letter-spacing: 0.1em;
  line-height: 98px;
}
.top-mv .title-01 {
  position: absolute;
  top: 16px;
  left: 0;
}
.top-mv .title-02 {
  position: absolute;
  left: 225px;
  padding-top: 16px;
}
@media print, screen and (min-width: 1500px) {
  .top-mv .title-01 {
    top: 76px;
  }
}
@media print, screen and (max-width: 991px) {
  .top-mv .title-01 {
    top: -34px;
  }
  .top-mv .title-02 {
    left: 185px;
    padding-top: 0;
  }
}
@media print, screen and (max-width: 767px) {
  .top-mv .lib-wide__outer {
    padding: 228px 0 0;
  }
  .top-mv .title-01, .top-mv .title-02 {
    line-height: 56px;
    letter-spacing: 0.15em;
  }
  .top-mv .title-01 {
    top: -26px;
    left: 37px;
  }
  .top-mv .title-02 {        
    left: 110px;
    top: 118px;
  }
}

.top-mv .bg-img {
  width: 100vw;
  animation: slideLeft 4s ease-out forwards;
}

@keyframes slideLeft {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-17.3vw);
  }
}

@media print, screen and (min-width: 1500px) {
  @keyframes slideLeft {
    0% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(-28vw);
    }
  }
}

@media print, screen and (max-width: 767px) {
  @keyframes slideLeft {
    0% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(-13.3vw);
    }
  }
}

.top-mv .bg-img .thumb img {
  height: 326px;
  width: auto;
  opacity: 0.1;
  animation: rollInAndFadeOut 8.5s ease-out forwards; 
}
.top-mv .bg-img .thumb:last-of-type img {
  height: 440px;
  margin-left: -10px;
}

@keyframes rollInAndFadeOut {
  0% {
    opacity: 0.1;
    transform: translateX(100px) rotate(0deg);
  }
  47.06% {
    opacity: 1;
    transform: translateX(0) rotate(-360deg);
  }
  76.47% {
    opacity: 1;
    transform: translateX(0) rotate(-360deg);
  }
  100% {
    opacity: 0.2;
    transform: translateX(0) rotate(-360deg);
  }
}


@media print, screen and (min-width: 1500px) {
  .top-mv .bg-img .thumb img {
    height: 426px;
  }
  .top-mv .bg-img .thumb:last-of-type img {
    height: 580px;
  }
}
@media print, screen and (max-width: 991px) {
  .top-mv .bg-img .thumb img {
    height: 206px;
  }
  .top-mv .bg-img .thumb:last-of-type img {
    height: 273px;
  }
}
@media print, screen and (max-width: 767px) {
  .top-mv .bg-img .thumb img {
    height: 106px;
  }
  .top-mv .bg-img .thumb:last-of-type img {
    height: 143px;
    margin-left: 0;
  }
}

/* タイトルブロックへのアニメーション適用 */
.top-mv .title-btn .title-block {
  opacity: 0; /* アニメーション開始前は非表示に */
  animation: fadeInFromZero 4s ease-out forwards; /* 4秒かけてフェードイン */
  animation-delay: 1.8s; /* 1.8秒後にアニメーション開始 */
}

/* ボタンブロックへのアニメーション適用 */
.top-mv .title-btn .btn-block {
  opacity: 0; /* アニメーション開始前は非表示に */
  animation: fadeInFromZero 4s ease-out forwards; /* 4秒かけてフェードイン */
  animation-delay: 3s; /* 3秒後にアニメーション開始 */
}
/* フェードインアニメーションの定義 */
@keyframes fadeInFromZero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media print, screen and (min-width: 768px) {
  .top-mv .btn-block {
    margin-left: 43px;
  }
}
@media print, screen and (min-width: 992px) {
  .top-mv .title-block {
    margin-left: 100px;
  }
  .top-mv .title-btn {
    margin-top: 0;
  }
}

@media print, screen and (max-width: 767px) {
  .top-mv .title-btn {
    margin-top: 78px;
    padding: 0;
    padding-left: 37px;
  }
  .top-mv .title-block {
    position: relative;
    z-index: 1;
  }
  .top-mv .title-block h1 {
    line-height: 30px;
    letter-spacing: 0.1em;
  }
}

.top-mv .btn-block .common-btn {
  width: 190px;
  height: 190px;
  transition: all .6s;
}
.top-mv .btn-block:hover .common-btn {
  background-color: #efedb9;
  transition: all .6s;
} 
.top-mv .btn-block .common-btn a {
  color: var(--DEF) !important;
  width: 100%;
  height: 100%;
}
.top-mv .common-btn a span.arrow {
  position: relative;
}
.top-mv .common-btn a span.arrow::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: url('/dcms_media/image/arrow.png') no-repeat 100% / 100% auto;
  width: 50px;
  height: 18px;
  transition: all .6s;
}
.top-mv .common-btn a:hover {
  opacity: 1;
}
.top-mv .common-btn a:hover span.arrow::before {
  left: 50%;
  transition: all .6s;
  opacity: 1;
}
.top-mv .common-btn a::before {
  display: none;
}

@media print, screen and (max-width: 767px) {
  .top-mv .btn-block .common-btn {
    width: 168px;
    height: 168px;
    margin-left: auto;
    margin-top: -25px;
    margin-right: 25px;
  }
  .top-mv .btn-block .common-btn a {
    line-height: 17.5px;
  }
  .top-mv .common-btn a span.arrow::before {
    width: 44px;
    height: 16px;
    bottom: 44px;
    left: 40px;
  }
}



/*---------- service ----------*/
.top-service .title-block {
  max-width: 1000px !important;
  margin-left: auto;
  margin-right: auto;
}
.top-service .bg-p {
  padding-bottom: 140px;
}
.top-service .bg-main {
  background-color: var(--MAIN) !important;
}
.top-service .bg-def {
  background-color: var(--DEF) !important;
}
.top-service .lib-title__outer {
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 1;
}
.top-service .lib-title__outer:last-of-type {
  margin-bottom: 0;
}
.top-service .lib-title__outer a {
  display: block;
}
.top-service .lib-title__outer a h2 {
  position: relative;
  transition: all .6s;
  padding-right: 80px;
  line-height: 1.2;
}
.top-service .lib-title__outer a h2::before {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 0;
  background: url(/dcms_media/image/arrow.png) no-repeat 100% / 100% auto;
  width: 50px;
  height: 100%;
  transition: all .6s;
  opacity: 0;
}
.top-service .lib-title__outer a.active:hover h2:before {
  opacity: 1;
}
@media print, screen and (max-width: 991px) {
  .top-service .lib-title__outer a h2:before {
    opacity: 1;
  }
}
@media print, screen and (max-width: 767px) {
  .top-service .bg-p {
    padding-bottom: 75px;
  }
  .top-service .lib-title__outer {
    margin-bottom: 0;
  }
  .top-service .lib-title__outer a h2 {
    padding-right: 30px;
  }
  .top-service .lib-title__outer a h2:before {
    width: 20px;
    bottom: -8px;
  }
  .top-service .lib-title__outer a h2.u-l-2, .top-service .lib-title__outer a h2 .u-l-2 {
    letter-spacing: 1px;
  } 
  .top-service .service-in .lib-title__outer {
    margin-bottom: 40px;
  }
  .top-service .service-in .lib-title__outer:last-of-type {
    margin-bottom: 75px;
  }
}

.top-service .service-block {
  position: relative;
  height: 380px;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media print, screen and (max-width: 991px) {
  .top-service .service-block {
    height: 700px;
    max-width: 600px;
  }
}
@media print, screen and (max-width: 767px) {
  .top-service .service-block {
    height: 509px;
    margin-top: 74px;
    margin-bottom: 40px;
    max-width: 295px;
  }
}

.top-service .service-block .lib-cnt-011__col {
  position: absolute;
  mix-blend-mode: multiply !important;
}
.service-block .lib-cnt-011__col .lib-card__thumb {
  width: auto;
}
.service-block .lib-cnt-011__col .lib-card__item {
  width: 240px;
  height: 240px;
  position: relative;
}
.service-block .lib-cnt-011__col:first-of-type .lib-card__item {
  width: 300px;
  height: 300px;
}
.service-block .lib-cnt-011__col:nth-of-type(2) .lib-card__item.bg-def,
.service-block .lib-cnt-011__col:nth-of-type(5) .lib-card__item.bg-def {
  width: 200px;
  height: 200px;
}
@media print, screen and (max-width: 767px) {
  .service-block .lib-cnt-011__col .lib-card__item {
    width: 144px;
    height: 144px;
  }
  .service-block .lib-cnt-011__col:first-of-type .lib-card__item {
    width: 176px;
    height: 176px;
  }
  .service-block .lib-cnt-011__col:nth-of-type(2) .lib-card__item.bg-def, 
  .service-block .lib-cnt-011__col:nth-of-type(5) .lib-card__item.bg-def {
    width: 112px;
    height: 112px;
  }
}

@media print, screen and (min-width: 992px) {
  .top-service .step-01 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.top-service .step-01 .lib-card__thumb {
  margin-bottom: 32px;
}
.top-service .step-01 img {
  height: 123px;
  width: auto;
  margin-right: 30px;
}
.top-service .step-02 {
  bottom: 20px;
  left: 250px;
}
@media print, screen and (min-width: 992px) {
  .top-service .step-03 {
    top: 0;
    left: 380px;
  }
}

.top-service .step-03 .lib-card__thumb {
  margin-bottom: 20px;
}
.top-service .step-03 img {
  height: 115px;
  width: auto;
}

@media print, screen and (min-width: 992px) {
  .top-service .step-04 {
    bottom: 0;
    right: 340px;
    margin-left: 0;
  }
}
.top-service .step-04 .lib-card__thumb {
  margin-bottom: 16px;
}
.top-service .step-04 img {
  height: 112px;
  width: auto;
}
.top-service .step-05 {
  top: 25px;
  right: 220px;
  margin-left: 0;
}
@media print, screen and (min-width: 992px) {
  .top-service .step-06 {
    margin: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.top-service .step-06 .lib-card__thumb {
  margin-bottom: 16px;
}
.top-service .step-06 img {
  height: 120px;
  width: auto;
}
.top-service .service-block .arrow-01 {
  position: absolute;
  top: 60px;
  left: 222px;
  mix-blend-mode: multiply !important;
}
.top-service .service-block .arrow-02 {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  mix-blend-mode: multiply !important;
}
.top-service .service-block .arrow-03 {
  position: absolute;
  right: -85px;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: multiply !important;
}
.top-service .service-block .lib-cnt-011__col .arrow-01 img, 
.top-service .service-block .lib-cnt-011__col .arrow-03 img {
  width: 118px;
  height: auto;
}
.top-service .service-block .lib-cnt-011__col .arrow-02 img {
  width: 37px;
  height: auto;
}

@media print, screen and (max-width: 991px) {
  .top-service .step-02 {
    left: 220px;
    bottom: 330px;
  }
  .top-service .step-03 {
    right: 0;    
  }
  .top-service .step-04 {
    bottom: 120px;
  }
  .top-service .step-05 {
    top: auto;
    bottom: 0;
    right: 200px;
  }
  .top-service .step-06 { 
    bottom: 110px;
    right: 0;
  }
  .top-service .service-block .arrow-02 {
    transform: translateX(-50%) rotate(90deg);
  }
}
@media print, screen and (max-width: 767px) {
  .top-service .step-01 {
    top: 0;
    left: 5px;
    transform: none;
  }
  .top-service .step-01 .lib-card__thumb {
    margin-bottom: 18px;
  }
  .top-service .step-01 img {
    width: auto;
    height: 72px;
    margin-right: 10px;
  }
  .top-service .step-02 {
    top: 65px;
    bottom: auto;
    left: auto;
    right: 15px;
  }
  .top-service .step-03 {
    top: 162px;
    left: auto;
    right: -23px;
  }
  .top-service .step-03 .lib-card__thumb {
    margin-bottom: 12px;
  }
  .top-service .step-03 img {
    width: auto;
    height: 69px;
  }
  .top-service .step-04 {
    top: 202px;
    bottom: auto;
    right: auto;
    left: -23px;
  }
  .top-service .step-04 .lib-card__thumb {
    margin-bottom: 10px;
  }
  .top-service .step-04 img {
    width: auto;
    height: 67px;
  }
  .top-service .step-05 {
    right: 50%;
    bottom: 117px;
    transform: translateX(50%);
  }
  .top-service .step-06 {
    right: 20px;
    top: auto;
    transform: none;
    bottom: 0;
  }
  .top-service .step-06 .lib-card__thumb {
    margin-bottom: 9px;
  }
  .top-service .step-06 img {
    width: auto;
    height: 73px;
  }
  .top-service .service-block .arrow-01 {
    top: auto;
    left: 120px;
    bottom: 0;
  }
  .top-service .service-block .arrow-02 {
    left: -43px;
    bottom: 50%;
    transform: rotate(180deg) translateY(-50%);
  }
  .top-service .service-block .arrow-03 {
      right: 8px;
      top: auto;
      transform: none;
      bottom: -50px;
  }
  .top-service .service-block .lib-cnt-011__col .arrow-01 img, 
  .top-service .service-block .lib-cnt-011__col .arrow-03 img {
    width: 60px;
    height: auto;
    transform: rotate(45deg);
  }
  .top-service .service-block .lib-cnt-011__col .arrow-02 img {
    width: 51px;
  }
}

.top-service .lib-horizon__col {
  position: relative;
}
.top-service .img-container {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  width: 700px !important;
  height: 700px !important;
}
.top-service .img-container img {
  transition: all .3s;
  opacity: 0;
  position: absolute;
}
.top-service .img-container img.active {
  opacity: 1;
  transition: all .3s;
}

@media print, screen and (max-width: 991px) {
  .top-service .title-block {
    margin-left: -20px;
  }
  .top-service .img-container {
    width: 500px !important;
    height: 500px !important;
    position: relative;
    top: auto;
    transform: none;
    right: auto;
    margin: 0 auto 40px;
  }
  .top-service .img-container img {
    opacity: 1;
    position: relative;
  }
}

@media print, screen and (max-width: 767px) {
  .top-service .img-container {
    width: 300px !important;
    height: 300px !important;
  }
}


/*---------- サービスアニメーション ----------*/
  .service-block.is-view .animation {
    opacity: 0;
    animation: fade 1.5s ease-out forwards;
  }
  @keyframes fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

/* is-viewが付いたときにアニメーションを開始 */
.service-block.is-view .animation.--200 {
  animation-delay: 0.2s;
}
.service-block.is-view .animation.--600 {
  animation-delay: 0.6s;
}
.service-block.is-view .animation.--1000 {
  animation-delay: 1s;
}
.service-block.is-view .animation.--1400 {
  animation-delay: 1.4s;
}
.service-block.is-view .animation.--2000 {
  animation-delay: 2s;
}
.service-block.is-view .animation.--2400 {
  animation-delay: 2.4s;
}
.service-block.is-view .animation.--2800 {
  animation-delay: 2.8s;
}
.service-block.is-view .animation.--3000 {
  animation-delay: 3s;
}
.service-block.is-view .animation.--3400 {
  animation-delay: 3.4s;
}



/*---------- 事例紹介 ----------*/
.case-number {
  font-size: clamp( 3rem, calc( 2.3125rem + 2.75vw ), 4.375rem );
  margin: 30px 0;
}
.case-title {
  letter-spacing: 0.1em;
}
.case-study {
  max-width: 1000px !important;
  margin-top: 84px !important;
}
.case-study .lib-grid__outer {
  margin-top: 72px;
}
.case-study .lib-card__item {
  padding: 50px 40px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
.case-contents {
  padding: 43px 0;
  margin: 0 0 40px;
  letter-spacing: 0.2em;
  line-height: 42px;
}
@media print, screen and (min-width: 768px) {
  .case-study .col:first-child {
    padding-right: 20px;
  }
  .case-study .col:last-child {
    padding-left: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .case-study .col:first-child {
    padding-right: 60px;
  }
  .case-study .col:last-child {
    padding-left: 60px;
  }
}
@media print, screen and (max-width: 767px) {
  .case-study {
    margin-top: 80px !important;
  }
  .case-study .title-block {
    margin-left: -20px;
  }
  .case-study .lib-grid__outer {
    margin-top: 50px;
  }
  .case-study .col {
    padding: 30px 0;
  }
  .case-study .col:last-child {
    padding-bottom: 80px;
  }
  .case-study .lib-card__item {
    padding: 30px 25px 40px;
  }
  .case-number {
    margin-bottom: 20px;
  }
  .case-contents {
    padding: 30px 0;
    margin: 0 0 20px;
    line-height: 28px;
  }
  .case-title {
    line-height: 1;
  }
}


/*---------- TOPICS ----------*/
.container.top-topics {
  margin-top: 126px !important;
}
@media print, screen and (min-width: 992px) {
  .container.top-topics .container {
    max-width: 1000px !important;
  }
}
@media print, screen and (max-width: 767px) {
  .container.top-topics {
    margin-top: 80px !important;
  }
}
.top-topics .title-block {
  margin-bottom: 84px;
}
.top-topics .lib-media__thumb, .top-topics .lib-media__txt, 
.top-topics .lib-media__category, 
.top-topics .lib-media__time.media-post__time p span, 
.top-topics .lib-media__time.media-post__time p:nth-child(2), 
.top-topics .lib-swiper__control {
  display: none !important;
}
.top-topics .lib-media__time.media-post__time {
  display: block !important;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 40px !important;
  font-weight: 500;
  letter-spacing: 1px;
}
.top-topics .swiper-wrapper {
  flex-direction: column;
}
.top-topics .lib-media__item {
  width: 100% !important;
  border-bottom: 1px solid var(--GRY);
  padding: 0 22px 20px;
  margin-bottom: 73px;
}
.top-topics .lib-media__item:last-of-type {
  margin-bottom: 0;
}
.top-topics .lib-media__title {
  font-size: 0.875rem;
  margin: 0 !important;
  font-weight: 400;
}
.top-topics .lib-media__txtarea {
  justify-content: start;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
}
@media print, screen and (max-width: 767px) {
  .top-topics .title-block {
    margin-left: -20px;
    margin-bottom: 70px;
  }
  .top-topics .bg-p {
    padding: 80px 40px;
  }
  .top-topics .lib-media__item {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
  .top-topics .lib-media__item:last-of-type {
    margin-bottom: 70px;
  }
  .top-topics .lib-media__txtarea {
    justify-content: start;
    flex-direction: column-reverse;
    align-items: start;
  }
  .top-topics .lib-media__time.media-post__time {
    margin-bottom: 30px !important;
    margin-right: 0 !important;
  }
}

/*---------- column ----------*/
.top-column {
  margin-top: 80px !important;
  margin-left: auto;
  margin-right: auto;
}
.top-column .title-block {
  margin-bottom: 54px;
}
@media print, screen and (min-width: 992px) {
  .top-column {
    max-width: 1000px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .top-column .lib-media__outer {
    margin-right: -13vw;
  }
}
.top-column .lib-media__txt, .top-column .lib-swiper__pagination, 
.top-column .lib-media__time.media-post__time>p~p,
.top-column .lib-media__time.media-post__time>p span {
  display: none !important;
}
.top-column .lib-media__time.media-post__time {
  display: block !important;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto;
}
.top-column .lib-media__time.media-post__time time {
  font-size: 0.875rem;
  font-weight: 400;
  padding-right: 20px;
  position: relative;
}
/*.top-column .lib-media__time.media-post__time time::before {
  content: "｜";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}*/
.top-column .lib-media__category {
  display: none;
  position: absolute;
  bottom: -4px;
  left: 120px;
  margin: 0;
}
.top-column .lib-media__category a {
  border-radius: 0;
  background-color: transparent !important;
  padding: 0;
  color: var(--DEF);
  border: none;
  font-size: 0.875rem;
  font-weight: 400;
}
.top-column .lib-media__thumb {
  border-radius: 1rem;
}
.top-column .lib-media__thumb .thumb {
  max-height: none;
  height: auto;
}
.top-column .lib-media__title {
  font-size: 0.875rem;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: .5rem !important;
  font-weight: 400;
}
.top-column .lib-swiper__control {
  justify-content: space-between;
  margin: 0;
}
.top-column .lib-swiper__btn {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, .7) !important;
  border: none;
}
.top-column .lib-swiper__btn.--prev, .top-column .lib-swiper__btn.--next {
  position: absolute !important;
  top: 40%;
  z-index: 1;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 1500px) {
  .top-column .lib-swiper__btn.--prev, .top-column .lib-swiper__btn.--next {
    top: 44%;
  }
}
.top-column .lib-swiper__btn.--prev {
  left: -25px;
}
.top-column .lib-swiper__btn.--next {
  right: 200px;
}
.top-column .lib-swiper__btn:after {
  font-size: 14px;
}
.top-column .swiper-button-next.swiper-button-disabled, 
.top-column .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.top-column .swiper-pagination-bullet {
  width: 70px !important;
  height: 4px !important;
  background-color: var(--GRY) !important;
  border-color: var(--GRY);
  border-radius: 4px !important;
}
.top-column .swiper-pagination-bullet-active {
  background-color: var(--DEF) !important;
  border-color: var(--DEF);
}

@media print, screen and (max-width: 991px) {
  .top-column .lib-swiper__btn {
    display: none !important
  }
}
@media print, screen and (max-width: 767px) {
  .top-column {
    margin-top: 70px !important;
  }
  .top-column .title-block {
    margin-left: -20px;
    margin-bottom: 80px;
  }
  .top-column .u-aspect.--16x9 img {
    aspect-ratio: 4 / 3;
  }
  .top-column .lib-media__slider .swiper-wrapper .lib-media__txtarea {
    padding-top: 30px;
  }
  .top-column .common-btn {
    margin-top: 80px;
  }
}

/*---------- download ----------*/
.top-download {
  margin-top: 80px !important;
}
@media print, screen and (min-width: 992px) {
  .top-download .container {
    max-width: 1000px !important;
  }
}
.top-download .title-block {
  margin-bottom: 64px;
}
.top-download .download-btn a {
  font-weight: 400;
  text-decoration: underline !important;
}
.top-download .download-contents {
  width: 100% !important;
  border-bottom: 1px solid var(--GRY);
  padding: 0 0 10px 22px;
  margin-bottom: 60px;
}

@media print, screen and (max-width: 767px) {
  .top-download {
    margin-top: 20px !important;
  }
  .top-download.bg-p {
    padding: 80px 40px;
  }
  .top-download .title-block {
    margin-bottom: 80px;
  }
  .top-download .common-btn {
    margin-top: 80px;
  }
  .top-download .download-contents {
    padding-left: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}


/* ========================================
下層
======================================== */
/*---------- パンくず ----------*/
.lib-breadcrumb__outer {
  padding-top: 134px;
  font-weight: 500;
  line-height: 1;
}
.lib-breadcrumb__list {
  padding-bottom: 0;
  overflow: hidden;
}
.lib-breadcrumb__list li {
  padding-left: 26px;
}
.lib-breadcrumb__list li:after {
  top: 3px;
}
.lib-breadcrumb__list li a {
  font-family: 'Metropolis', sans-serif;
}
.lib-breadcrumb__list li a, :where(.lib-link__arr) a:before, :where(a.lib-link__arr):before {
  color: var(--DEF);
}
@media print, screen and (max-width: 767px) {
  /*---------- パンくず ----------*/
  .lib-breadcrumb__outer {
    padding-top: 87px;
  }
  .lib-breadcrumb__list {
    padding-left: 25px;
  }
  .lib-breadcrumb__list li:after {
    top: 1px;
  }
}

/*---------- 下層共通タイトル ----------*/
.lib-hero__outer {
  padding: 0;
  min-height: auto;
  margin-bottom: 70px;
}
/* 左側に傍線があるタイトル */
.lib-title__outer.--typeA :where(.title):before {
  border-radius: 10px;
}
@media print, screen and (max-width: 767px) {
  .lib-hero__outer {
    margin-bottom: 56px;
    margin-left: -15px;
  }
}

.shadow { 
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2) !important;
}
/*---------- サイゴンのブロックをfooerにかぶせる ----------*/
.last-block {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0 0 50px 50px;
  transform: translateY(50px) !important;
  z-index: 1;
  position: relative;
}


/*---------- ボタンホバー ----------*/
.bg-def[class*=__btn]:hover {
  border: var(--DEF) 2px solid;
  background-color: var(--DEF);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-main[class*=__btn]:hover {
  border: var(--MAIN) 2px solid;
  background-color: var(--MAIN);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-accent[class*=__btn]:hover {
  border: var(--ACC) 2px solid;
  background-color: var(--ACC);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-other[class*=__btn]:hover {
  border: var(--OTH) 2px solid;
  background-color: var(--OTH);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-link[class*=__btn]:hover {
  border: var(--LINK) 2px solid;
  background-color: var(--LINK);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-gry[class*=__btn]:hover {
  border: var(--GRY) 2px solid;
  background-color: var(--GRY);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-dgry[class*=__btn]:hover {
  border: var(--DGRY) 2px solid;
  background-color: var(--DGRY);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-lgry[class*=__btn]:hover {
  border: var(--LGRY) 2px solid;
  background-color: var(--LGRY);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-wht[class*=__btn]:hover {
  border: var(--MAIN) 2px solid;
  background-color: var(--WHT);
  color: var(--MAIN) !important;
  opacity: .6;
}
.bg-lmain[class*=__btn]:hover {
  border: var(--LMAIN) 2px solid;
  background-color: var(--LMAIN);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-laccent[class*=__btn]:hover {
  border: var(--LACC) 2px solid;
  background-color: var(--LACC);
  color: var(--WHT) !important;
  opacity: .6;
}
.bg-lother[class*=__btn] {  
  color: var(--WHT) !important;
}
.bg-lother[class*=__btn]:hover {
  border: var(--LOTH) 2px solid;
  background-color: var(--LOTH);
  color: var(--WHT) !important;
  opacity: .6;
}



/*---------- 私たちの強み ----------*/
.over-img {
  transform: translateY(-25%);
}


/*---------- サービス ----------*/
.marker-under {
  position: relative;
  /*text-decoration: underline #fcee21 12px;*/
}
.marker-under::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 12px;
  background-color: #fcee21;
  bottom: 0;
  left: -3%;
  z-index: -1;
  border-radius: 12px;
}
.marker-under:last-of-type:before {
  width: 105%;
}
@media print, screen and (max-width: 767px) {
  .marker-under::before {
    width: 100%;
  }
}

/*---------- ダウンロード ----------*/
.border.border-def {
  border-color: var(--DEF) !important;
}

/*---------- 事例紹介 ----------*/
.case-number-02 {
  font-size: clamp( 2.25rem, calc( 1.625rem + 2.5vw ), 3.5rem );
  margin-top: 12px;
}
.case-contents-02 {
  padding: 40px 0;
  margin: 30px 0;
  letter-spacing: 0.05em;
  line-height: 32px;
}
.case-img {
  margin-right: 34px;
}
.case-img img {
  width: 100px;
  height: 100px;
}
@media print, screen and (min-width: 992px) {
  /*.case-img img:first-of-type {    
    margin-top: var(--bs-gutter-y);
  }*/
  .case-study-in .col:first-child {
    margin-top: 24px;
  }
  .case-img img {
    margin-top: 8px;
  }
}

@media print, screen and (max-width: 767px) {
  .case-contents-02 {
    padding: 20px 0;
    margin: 12px 0;
  }
  .maker-block {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .case-number-02 {
    margin-top: 0;
  }
  .case-study-in {
    overflow: visible;
  }
  .case-img {
    margin-left: -41px;
    margin-right: 17px;
  }
  .case-img img {
    width: 70px;
    height: 70px;
  }
  .case-block .h-100 {
    height: auto !important;
  }
}

/*---------- 会社概要 ----------*/
.company-bg .thumb {
  top: 50%;
  right: -20vw;
  transform: translateY(-50%);
  padding-left: 20%;
}
@media print, screen and (max-width: 767px) {
  .company-bg .thumb {
    right: -90vw;
    transform: translateY(-50%) rotate(90deg);
    padding-left: 0;
  }
}

/* 社長画像 */
.president-img img {
  transform: translateX(-10%);
}
@media print, screen and (min-width: 992px) {
  .president-img .lib-card__thumb {
    padding-top: 20%;
    padding-right: 10%;
  }
}
@media print, screen and (max-width: 991px) {
  .president-img .lib-card__thumb.u-aspect.--3x4 img {
    aspect-ratio: 4 / 3;
  }
  .president-img img {
      transform: translateY(-10%);
      margin-bottom: -5%;
  }
}

/* 会社概要　表*/
.border-table {
  border: none !important;
}
.border-table td {
  padding: 20px 10px;
  border: none !important;
  border-top: var(--GRY) 1px solid !important;
}
.border-table tr:last-child td {
  border-bottom: var(--GRY) 1px solid !important;
}

@media print, screen and (max-width: 991px) {
  .border-table td:last-child {
    border-top: none !important;
    padding-top: 0;
  }
  .border-table tr:last-child {
    border-bottom: var(--GRY) 1px solid !important;    
  }
  .border-table tr:last-child td {
    border-bottom: none !important;    
  }
}

/* 沿革 */
.company-history::before {
  position: absolute;
  content: "HISTORY of ART WORKS";
  font-weight: 100;
  font-family: 'Metropolis', sans-serif;
  font-size: clamp( 3.25rem, calc( 2.375rem + 3.5000000000000004vw ), 5rem );
  color: var(--LGRY);
  writing-mode: vertical-rl;
  white-space: nowrap; 
  top: 10%;
  left: 10%;
  letter-spacing: 10px;
}
.company-history .lib-timeline-002__headline:before {
  background-color: var(--WHT);
  border: 6px solid var(--COLOR01);
}
.company-history .lib-timeline-002__outer>li+li {
  border: none;
}
.company-history .lib-scroll__cover {
  overflow-x: initial;
  scrollbar-color: rgba(0, 108, 10, .5) var(--GRY);
}
@media print, screen and (min-width: 992px) {
  .company-history .lib-timeline__headline {
    width: 100px;
    padding-right: 60px;
  }
  .company-history .lib-timeline-002__headline:before {
    left: 60px;
    top: 0;
  }
  .company-history .lib-timeline-002__row:after, .company-history .lib-timeline-002__headline:after {
    left: 67px;
    border-radius: 6px;
  }
  .company-history .lib-timeline-002__outer>li+li {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .company-history .lib-timeline-002__headline:after {
    height: calc(130px + 3rem * 2);
  }
}
@media print, screen and (max-width: 767px) {
  .company-history::before {
    content: "HISTORY of \A ART WORKS";
    writing-mode: initial;
    white-space: pre;
    top: 70%;
    line-height: 1.2;
    left: -10%;
  }
    .company-history .lib-scroll__cover {
      overflow-x: auto;
      padding-bottom: 150px;
    }
    .company-history .lib-timeline-002__headline:after, .company-history .lib-timeline-002__row:after {
      width: 100%;
      height: 8px;
      top: 35px;
      left: 0;
      border-radius: 8px 0 0 8px;
    }
    .company-history .lib-scroll__inside {
      width: fit-content;
    }
    .company-history .lib-timeline-002__row {
      width: 65vw;
    }
    .company-history .lib-timeline-002__headline:before {
      top: 30px;
      border: 4px solid var(--COLOR01);
    }
    .company-history .lib-timeline__txtarea {
      padding-left: 0;
      width: 85%;
    }
    .company-history .lib-timeline-002__outer>li+li {
      margin-top: 0;
      padding-top: 0;
    }
}
/* 沿革movie */
.company-movie video {
  border-radius: 1rem;
  background-color: transparent;
  border: none;
}

/*---------- ダウンロード ----------*/
.download-block .bg-def[class*=__btn]:hover {
  border: var(--DEF) 2px solid;
  background-color: var(--DEF);
  color: var(--WHT) !important;
  opacity: .6;
}
.download-title a {
  text-decoration: underline !important;
}

/* ========================================
メディア
======================================== */

@media print, screen and (min-width: 992px) {
  .lib-column__outer .lib-column__side.media-column__side {
    margin-top: 200px;
  }
}
.lib-title__outer.--typeB.--media :where(.title)::before {
  top: .2em;
}
.lib-title__outer.--typeB.--media :where(.title):after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: .5em;
  height: .5em;
  position: relative;
  border-radius: 50%;
  top: .4em;
  background-color: var(--LACC);
  margin-right: 8px;
  display: block;
  position: absolute;
  top: .8em;
  left: 0;
}
.media-search__btn {
  background-color: var(--DEF);
  border-color: var(--DEF);
}
.media-search__btn:hover {
  background-color: var(--DEF);
  opacity: .6;
}
.media-search__btn:hover:before {
  color: var(--WHT) !important;
}
.media-side__title {
  color: var(--DEF);
  font-size: .875rem;
}
.media-side__newpsot li, .media-side__recommend li {
  margin-bottom: 1rem;
}
.media-post__item {
  border-radius: 20px;
}
.media-side__view a {
  font-size: .875rem;
}
.lib-media__category .badge {
  border-radius: 4px;
  background-color: var(--OTH);
  text-transform: uppercase !important;
  font-family: 'Metropolis', sans-serif;
}
.lib-media__category .badge.--column {
  background-color: var(--LOTH);
}
.lib-media__category .badge.--topics {
  background-color: var(--LACC);
}
.lib-media__category .badge:hover {
  background-color: var(--OTH);
  color: var(--WHT) !important;
  opacity: .6;
}
.lib-media__category .badge.--column:hover {
  background-color: var(--LOTH);
  color: var(--WHT) !important;
  opacity: .6;
}
.lib-media__category .badge.--topics:hover {
  background-color: var(--LACC);
  color: var(--WHT) !important;
  opacity: .6;
}
[class*=media-side] .lib-link__btn {
  background-color: var(--DEF);
  border-color: var(--DEF);
  border-radius: 100px;
}
[class*=media-side] .lib-link__btn:hover {
  background-color: var(--DEF);
  border-color: var(--DEF);
  color: var(--WHT) !important;
  opacity: .6;
}
.media-side__newpsot>li>a:before, 
.media-side__archive>li>a:before, 
.media-side__tree li a:before,
.lib-recommend__thumb, .media-side__title:before, .media-post__image, .media-post__sns {
  display: none !important;
}
.media-relation__title {
  color: var(--DEF);
}
.media-side__tree li a {
  text-transform: uppercase !important;
}
.media-side__newpsot>li>a, .media-side__archive>li>a, .media-side__tree li a, .lib-recommend__txtarea {
  padding-left: 0;
}
:where(.lib-pager__list) :where(.lib-pager__item) a[aria-current=page], :where(.lib-pager__list)>li a:hover  {
  background-color: var(--DEF);
  border-color: var(--DEF);
  border-radius: 50px;
}
:where(.lib-pager__list)>li a {
  border-color: var(--DEF);
  border-radius: 50px;
  font-family: 'Metropolis', sans-serif;
  padding: 10px;
  font-size: 14px;
}
:where(.lib-pager__list)>li a:hover {
  color: var(--WHT) !important;
}
.lib-pager__prev a:hover, .lib-pager__next a:hover {
  color: var(--DEF) !important;
  background-color: transparent;
  border: none;
}
.lib-pager__next a:hover:before, .lib-pager__prev a:hover::before, 
:where(.lib-pager__list) :where(.lib-pager__next) a:hover:before, 
:where(.lib-pager__list) :where(.lib-pager__prev) a:hover:before {
  border-color: var(--DEF);
}
.media-post__txtarea .lib-media__time {
  font-family: 'Metropolis', sans-serif;
}
.media-post__headline {
  font-size: 24px;
}
.media-post__article .lib-media__time {
  font-size: 12px;
  color: #999999;
}
.media-post__pagenation>li a:before {
  margin-top: 0;
}
:where(.lib-pager__list) :where(.lib-pager__next) a:hover:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
:where(.lib-pager__list) :where(.lib-pager__prev) a:hover:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
:where(.media-sort__outer) :where(.media-sort__list) li a {
  text-decoration: underline !important;
  color: var(--DEF);
}
:where(.media-sort__outer) :where(.media-sort__list) li a:hover {
  color: var(--DEF);
  opacity: .6;
}
.lib-recommend__list>li>a:hover .lib-recommend__txtarea .txt, .media-relation__link:hover .txt {
  text-decoration: none !important;
}