@charset "utf-8";

main {
  overflow: hidden;
}

/* font設定 (NotoSansJP,サブセット化済 YakuHanJPはfunction.phpで読み込み)
---------------------------------------------------------------- */
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Regular.woff) format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Bold.woff) format('woff');
  font-weight: bold;
  font-display: swap;
}

/* 以下不必要なら削除すること */
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Light.woff) format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Medium.woff) format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-SemiBold.woff) format('woff');
  font-weight: 600;
  font-display: swap;
}
body {
  font-family: YakuHanJP, 'noto-sans-jp', sans-serif;
  font-weight: 500;
}

/* title
---------------------------------------------------------------- */
/* トップページタイトル */
.ttl-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  font-size: var(--fs-ttl-l);
  margin-bottom: 0.3em;
}
.ttl-top span {
  position: relative;
  display: block;
}
.ttl-top span.icon-img {
  max-width: 150px;
}
.ttl-top span.en {
  max-width: 92px;
}
@media only screen and (max-width: 599px) {
  .ttl-top span.icon-img {
    max-width: 120px;
  }
}
.se-news .ttl-top {
  align-items: flex-start;
  gap: 0.3em;
}
.se-news .ttl-top span.en {
  max-width: 55px;
}
.se-news .news-list {
  gap: 2em;
}
.search-filter-box .ttl-top span.jp {
  position: relative;
}
.search-filter-box .ttl-top span.jp::before,
.search-filter-box .ttl-top span.jp::after {
  content: '';
  display: inline-block;
  width: 48%;
  height: auto;
  position: absolute;
  bottom: -0.2em;
  aspect-ratio: 56/51;
}
.search-filter-box .ttl-top span.jp::before {
  background: url(../images/top/ttl_object_circle01.svg) center center no-repeat;
  background-size: contain;
  right: calc(100% + 1em);
}
.search-filter-box .ttl-top span.jp::after {
  background: url(../images/top/ttl_object_circle02.svg) center center no-repeat;
  background-size: contain;
  left: calc(100% + 1em);
}
@media only screen and (max-width: 599px) {
  .search-filter-box .ttl-top span.jp::before,
  .search-filter-box .ttl-top span.jp::after {
    display: none;
  }
}

/* 汎用見出し */
.ttl-01 {
  position: relative;
  font-size: var(--fs-ttl-m);
  background: var(--white);
  color: var(--black);
  border: var(--cl-main) 2px solid;
  border-radius: var(--block-br);
  padding: 0.5em 1em 0.5em 1.1em;
  margin: 1.5em 0 1em;
}
.ttl-01::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  width: 6px;
  height: calc(100% - 1em);
  background: var(--cl-main);
  border-radius: var(--btn-br);
}
.ttl-02 {
  position: relative;
  font-size: var(--fs-ttl-s);
  padding: 0 0 0.5em 0;
  margin: 1.5em 0 1em;
}
.ttl-02::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cl-main);
  border-radius: 8px;
}
.ttl-03 {
  position: relative;
  font-size: var(--fs-ttl-xs);
  padding: 0 0 0 2.2em;
  margin: 1.5em 0 1em;
}
.ttl-03::before {
  position: absolute;
  content: '';
  display: block;
  background: var(--cl-main);
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: var(--btn-br);
}
.ttl-03::after {
  position: absolute;
  content: '';
  display: block;
  background: var(--cl-accent);
  top: 0.75em;
  left: 10px;
  width: 1.4em;
  height: 5px;
  border-radius: var(--btn-br);
}
.ttl-04 {
  font-size: var(--fs-ttl-s);
  border-bottom: solid 2px var(--cl-main);
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}
.ttl-05 {
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
  margin-bottom: 1em;
}
/* 左右にstick */
.ttl-stick {
  position: relative;
  width: fit-content;
  padding: 0 3.5em 0.8em;
}
.ttl-stick span {
  padding: 0 0.1em;
}
.ttl-stick::before,
.ttl-stick::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 2.5em;
}
.ttl-stick::before {
  background: url(../images/page/left_stick.svg) center center no-repeat;
  background-size: contain;
  left: 0;
}
.ttl-stick::after {
  background: url(../images/page/right_stick.svg) center center no-repeat;
  background-size: contain;
  right: 0;
}

/* text
---------------------------------------------------------------- */
.text-lead {
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.text-link {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  color: var(--black);
  padding-right: 1.5em;
}
.text-link::after {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

/* btn
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  position: relative;
  color: var(--black);
  font-weight: bold;
  text-align: center;
  padding: 0.8em 2em;
  width: 100%;
  border-radius: var(--btn-br);
  cursor: pointer;
}
/* メインボタン */
.btn-main {
  font-size: var(--fs-lead);
  background: var(--white);
  border: var(--black) 2px solid;
  border-radius: var(--btn-br);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease-in-out;
}

/* お問い合わせボタン */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-main);
  color: var(--white);
  transition: 0.3s all;
  padding: 1em 2em 1em 3.5em;
  width: 100%;
  height: 100%;
}
.btn-contact::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-family: 'Font Awesome 6 Free';
  content: '\f0e0';
  font-weight: 900;
  background: var(--cl-main);
  color: var(--white);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  transition: 0.3s all;
}
.btn-contact:hover {
  opacity: 1;
  background: var(--cl-main);
  color: var(--white);
}
/* 左矢印 */
.btn-back::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_back.svg) center center no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  left: 1.5em;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.btn-back:hover::before {
  transform: translateY(-50%) translateX(-0.3em);
}
.btn.btn-back {
  padding: 0.8em 1.5em 0.8em 2.8em;
}
/* 右矢印 */
.btn-next::after {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.btn-next:hover::after {
  transform: translateY(-50%) translateX(0.3em);
}
.btn.btn-next {
  padding: 0.8em 2.8em 0.8em 1.5em;
}

.category-link-item a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-notes);
  color: var(--black);
  background: var(--white);
  border: var(--cl-main) 2px solid;
  border-radius: var(--block-br);
  box-shadow: var(--shadow);
  padding: 0.8em 0.5em;
  width: 100%;
}
.category-link-item a .img-wrap {
  width: 36px;
}
.category-link-item a .txt-wrap {
  width: 80%;
}
.category-link-item a .txt-wrap p {
  line-height: 1.6;
  font-weight: bold;
}

/* box
---------------------------------------------------------------- */
.box-basic {
  padding: var(--wrap-pd-s);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  background: var(--white);
}
.box-main {
  padding: var(--wrap-pd-s);
  border: var(--cl-main) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  background: var(--white);
}
.box-none {
  padding: var(--wrap-pd-s);
  background: var(--l-gray);
  border-radius: var(--box-br);
}
.img-wrap,
.txt-wrap {
  display: block;
}

/* カードアイテム */
.card-item {
  display: block;
  background: var(--white);
  color: var(--black);
  padding: var(--box-pd);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  max-width: var(--contents-max-width);
}
.card-item + .card-item {
  margin-top: 2em;
}
.card-ttl {
  font-size: var(--fs-ttl-xs);
}
.card-item .img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* list
---------------------------------------------------------------- */
.dl-list dl {
  display: flex;
  width: 100%;
}
.dl-list dl dt {
  width: 100%;
  max-width: 240px;
  color: var(--cl-main);
  border-bottom: var(--cl-main) 1px solid;
  padding: 1.5em 1em;
}
.dl-list dl dd {
  flex-grow: 1;
  border-bottom: var(--gray) 1px solid;
  padding: 1.5em 1em;
}
@media only screen and (max-width: 768px) {
  .dl-list dl {
    flex-wrap: wrap;
  }
  .dl-list dl dt {
    max-width: none;
    border-bottom: none;
    padding: 1.5em 1em 0.5em 1em;
  }
  .dl-list dl dd {
    padding: 0.5em 1em 1.5em 1em;
  }
}

/* icon
---------------------------------------------------------------- */
.icon,
.fa-icon {
  display: flex;
  align-items: center;
}
/* 画像 */
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 0.5em;
}
.icon-mail::before {
  background: url(../images/common/icon-mail.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
}
/* font-awesome */
.fa-icon::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 0.3em;
}
.fa-icon-tel::before {
  content: '\f095';
  font-weight: 900;
}
.fa-icon-arrow::before {
  content: '\f054';
  font-weight: 900;
  font-size: 1em;
  color: var(--cl-accent);
  text-align: right;
}

/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: 'Font Awesome 6 Free';
  content: '\f35d';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 900;
  font-size: 0.8em;
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  z-index: 2;
  padding: 1em var(--header-side-pd);
  transition: padding 0.3s ease-in-out;
}
.header-inner {
  background: var(--white);
  width: 100%;
  max-width: var(--contents-max-width);
  height: var(--header-height);
  border-radius: var(--box-br);
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.header-logo-wrap {
  width: 100%;
  max-width: 20%;
  transition: all 0.3s ease-in-out;
}
.header-logo {
  text-indent: -9999px;
  height: 100%;
}
.header-logo a {
  display: block;
  background: url(../images/common/logo.svg) center left no-repeat;
  background-size: contain;
  max-width: 200px;
  height: inherit;
}
.header-contents-wrap {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.header-btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}
.btn-header {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background: var(--cl-sub-btn);
  color: var(--black);
  font-weight: bold;
  font-size: var(--fs-notes);
  padding: 0.5em 1em 0.5em 0.5em;
  border: var(--black) 2px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.5em;
}
.btn-header img {
  width: 1.8em;
}
.btn-header:hover {
  background: var(--cl-sub);
  opacity: 1;
}
@media only screen and (max-width: 599px) {
  .header-logo-wrap {
    max-width: 40%;
  }
}

/* スクロール時のヘッダー表示スタイル */
#header.is-scrolled {
  padding: 0.5em var(--header-side-pd);
}
#header.is-scrolled .header-inner {
  height: var(--header-scrolled-height);
}
.header-logo-wrap.is-hidden,
#header.is-scrolled .nav-global-list-item > img {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin-right: 0;
}
.header-contents-wrap.is-expanded {
  margin-left: 0;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}
.header-contents-wrap.is-expanded .nav-global {
  width: 90%;
}
.header-contents-wrap.is-expanded .nav-global .nav-global-list {
  display: flex;
  justify-content: center;
}

#header.is-scrolled .header-btn-wrap {
  flex-direction: row;
  align-items: center;
}
#header.is-scrolled .header-btn-wrap > div {
  width: 3.5em;
  height: 3.5em;
}
#header.is-scrolled .btn-header {
  border-radius: var(--btn-br);
  padding: 0.5em;
  justify-content: center;
  gap: 0;
}
#header.is-scrolled .btn-header span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
}

/* 下層ページモバイル表示時のヘッダーロゴ変更 */
@media only screen and (max-width: 1100px) {
  /* 下層ページの場合、.home-page (トップページに付くクラス) が body に付かないことを利用 */
  body:not(.home) .mobile-header .header-logo a {
    background-image: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .header-logo-wrap {
    max-width: 40%;
  }
}

/* global nav -------------------------- */
.nav-global {
  height: inherit;
}
.nav-global-list {
  display: flex;
  flex-wrap: wrap;
  height: inherit;
}
.nav-global-list li {
  height: inherit;
}
.nav-global-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  padding: 0.8em 1em;
  color: var(--black);
  height: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .header-logo-wrap {
    max-width: 15%;
  }
  .nav-global-list-item {
    font-size: 1.4rem;
  }
  .header-contents-wrap {
    width: 100%;
  }
}
.nav-global-list-item > img {
  width: 40px;
  transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
}
.nav-global-list-item > span {
  position: relative;
  display: inline-block;
}
.nav-global-list-item:hover {
  opacity: 1;
  color: var(--cl-main);
}
.nav-global-list li:nth-of-type(odd) .nav-global-list-item:hover img {
  transform: translate(0px, -5px) rotate(-10deg);
}
.nav-global-list li:nth-of-type(even) .nav-global-list-item:hover img {
  transform: translate(0px, -5px) rotate(10deg);
}
.nav-global-list > .dropdown-trigger > .nav-global-list-item span {
  position: relative;
}
.nav-global-list > .dropdown-trigger > .nav-global-list-item span::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 0.9em;
  font-weight: 900;
  display: inline-block;
  position: absolute;
  bottom: -1.2em;
  left: 50%;
  transform: translateX(-50%);
  /*
  margin-left: 0.2em;
  top: 50%;
  transform: translateY(-50%); */
}
.nav-global-list .dropdown-trigger {
  position: relative;
}
.nav-global-dropdown-area {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 2em);
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  background: var(--white);
  color: var(--white);
  border-radius: var(--box-br);
  width: max-content;
  min-width: 280px;
  max-width: 90vw;
  height: auto;
  padding: 2em;
  opacity: 0;
  transition: 0.3s all;
  border: var(--black) 2px solid;
  z-index: 0;
}
.nav-global-dropdown-area::after,
.nav-global-dropdown-area::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-global-dropdown-area::after {
  bottom: calc(100% - 1px);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 20px solid var(--white);
  z-index: 1;
}
.nav-global-dropdown-area::before {
  bottom: calc(100%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 22px solid var(--black);
  z-index: 0;
}
.dropdown-trigger.is-open .nav-global-dropdown-area {
  visibility: visible;
  opacity: 1;
}
.dropdown-area-list {
  display: flex;
  gap: 2em;
}
.dropdown-trigger.is-open .nav-global-list-item {
  color: var(--cl-main);
}
.dropdown-area-list-item {
  position: relative;
  display: block;
  padding: 1.2em 1.2em 1.2em 3.5em;
  color: var(--black);
  font-weight: bold;
  border-radius: var(--box-br);
}
.dropdown-area-list-item:hover {
  opacity: 1;
}
.dropdown-area-list-item span {
  position: relative;
}
.dropdown-area-list-item span::after {
  content: '';
  background-color: var(--black);
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.dropdown-area-list-item:hover span::after {
  transform: scale(1, 1);
}

.dropdown-area-list-item::before {
  content: '';
  display: inline-block;
  width: 3em;
  height: 3em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.dropdown-area-list-item::after {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.dropdown-area-list-item.about::before {
  background: url(../images/common/drop_icon_about.svg) center center no-repeat;
  background-size: contain;
}
.dropdown-area-list-item.ws::before {
  background: url(../images/common/drop_icon_ws.svg) center center no-repeat;
  background-size: contain;
}
.dropdown-area-list-item.recruitment::before {
  background: url(../images/common/drop_icon_recruit.svg) center center no-repeat;
  background-size: contain;
}
.dropdown-area-list-item.session::before {
  background: url(../images/common/drop_icon_session.svg) center center no-repeat;
  background-size: contain;
}
.dropdown-menu-ttl {
  font-size: var(--fs-ttl-top);
  font-weight: bold;
}
.nav-global-dropdown-area .dropdown-menu {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s);
}

/* ハンバーガーボタン */
.btn-hamburger {
  position: fixed;
  top: var(--hamburger-side-width);
  right: var(--hamburger-side-width);
  width: var(--hamburger-width);
  max-width: 50%;
  height: var(--hamburger-height);
  z-index: 99;
}
.btn-hamburger button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--white);
  border-radius: var(--btn-br);
  padding: 5px;
}
.btn-hamburger button::after {
  position: absolute;
  content: 'メニュー';
  font-size: 1rem;
  font-weight: bold;
  color: var(--black);
  left: 0;
  top: 50%;
  text-align: center;
  width: 60%;
  transform: translateY(-50%);
}
.btn-hamburger button.is-active::after {
  content: '閉じる';
}
.btn-hamburger button span {
  background: var(--cl-main);
  content: '';
  display: block;
  width: 30%;
  height: 3px;
  border-radius: var(--btn-br);
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  background: var(--cl-main);
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  border-radius: var(--btn-br);
  position: absolute;
  transition: all 0.4s;
}
.btn-hamburger button span:before {
  top: 10px;
}
.btn-hamburger button span:after {
  top: -10px;
}
.btn-hamburger button.is-active {
  background: var(--cl-sub);
}
.btn-hamburger button.is-active span {
  background-color: transparent;
}
.btn-hamburger button.is-active span:before {
  top: 0;
  transform: rotate(45deg);
  background: var(--black);
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--black);
}

@media only screen and (max-width: 1100px) {
  .header-inner {
    display: none;
  }
  .header {
    position: absolute;
    padding: 0;
  }
  .header-logo-wrap {
    position: relative;
    max-width: 30%;
    height: 100%;
  }
  .header-logo a {
    max-width: 100%;
  }
  .header-btn-wrap {
    flex-direction: row;
    gap: 1em;
  }
  .header-btn-wrap > div {
    width: 50%;
  }
  .btn-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--block-br);
    padding: 0.5em 0.5em 0.5em 0.5em;
  }
}

/* mobile nav
---------------------------------------------------------------- */
@media only screen and (min-width: 1101px) {
  .mobile-header {
    display: none;
  }
}

.mobile-header,
.nav-mobile-header {
  padding: var(--hamburger-side-width) var(--hamburger-side-width) 0;
  height: calc(var(--hamburger-height) + var(--hamburger-side-width) * 2);
}
.nav-mobile-header {
  display: flex;
  align-items: center;
}
.nav-mobile-logo {
  display: block;
  width: 200px;
  max-width: 40%;
}

/* ナビゲーションオーバーレイ */
#nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 109;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}
#nav-mobile-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.nav-mobile {
  position: fixed;
  top: 0;
  /* 変更点: 初期位置を画面外右側に設定 */
  right: -80%;
  left: auto;
  bottom: 0;
  width: 80%;
  min-width: 300px;
  height: 100%;
  background: var(--white);
  overflow: auto;
  opacity: 0;
  /* z-indexはスライドイン中は高い値にしたい */
  z-index: -999;
  transition: right 0.4s ease-in-out, opacity 0.2s ease-in-out 0.4s, /* 0.4秒後にopacityが切り替わる */ z-index 0s 0.4s; /* 0.4秒後にz-indexが切り替わる */
}
.nav-mobile.is-open {
  right: 0;
  opacity: 1;
  z-index: 110;
  transition: right 0.4s ease-in-out, opacity 0.2s ease-in-out 0s, z-index 0s 0s;
}
.nav-mobile-inner {
  background: var(--white);
  padding: 0em 1em 5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.nav-mobile-list > li {
  border-bottom: var(--cl-main) 1px solid;
}
.nav-mobile-list-item {
  display: flex;
  gap: 0.8em;
  align-items: center;
  position: relative;
  color: var(--black);
  font-size: var(--fs-default);
  font-weight: bold;
  padding: 1em 0.5em;
  width: 100%;
  text-align: left;
}
.nav-mobile-list-item img {
  display: block;
  width: 2em;
}
.nav-mobile-list li.dropdown {
  display: flex;
  flex-wrap: wrap;
}
.nav-mobile-list li.dropdown > a {
  width: 85%;
}

.nav-mobile-list .btn-dropdown:before,
.nav-mobile-list .btn-dropdown:after {
  position: absolute;
  content: '';
  display: block;
  transition: all 0.4s;
  background: var(--cl-main);
  right: 0;
  top: 50%;
  width: 1em;
  height: 2px;
  transform: translate(-50%, -50%);
}
.nav-mobile-list .btn-dropdown:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nav-mobile-list .btn-dropdown.is-open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .btn-dropdown.is-open:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .dropdown-menu {
  display: none;
  width: 100%;
  padding-bottom: 0.5em;
}
.nav-mobile-list .dropdown-menu li {
  padding: 0;
}
.nav-mobile-list .dropdown-menu li + li {
  margin-top: 0.2em;
}
.nav-mobile-list .dropdown-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--fs-default);
  color: var(--black);
  padding: 1em 0 1em 3em;
}
.nav-mobile-list .dropdown-area-list-item::before {
  content: '';
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav-mobile-search-area {
  display: none;
}
.nav-mobile-search-area .search-form-input-text input[type='text'] {
  border-radius: var(--block-br) 0 0 var(--block-br);
  font-size: var(--fs-default);
  padding: 0.5em;
}
.nav-mobile-search-area .search-form-input-submit input[type='submit'] {
  border-radius: 0 var(--block-br) var(--block-br) 0;
  font-size: 1.5em;
  padding: 0.5em;
}

/* sitemap
---------------------------------------------------------------- */
.page-sitemap a {
  color: var(--black);
}
.sitemap-section-ttl {
  position: relative;
  padding: 0 0 0.3em 0;
  margin: 1.5em 0 1em;
}
.sitemap-section-ttl::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cl-main);
  border-radius: 8px;
}
.sitemap-list li a {
  display: inline-block;
  font-weight: bold;
  font-size: var(--fs-lead);
  padding: 0.3em 0;
}
.sitemap-list li a span {
  position: relative;
  padding-left: 1.8em;
}
.sitemap-list li a span::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0.2em;
  left: 0;
  transition: right 0.3s;
}
.page-sitemap .ex-link {
  padding-right: 1.5em;
}
.page-sitemap .ex-link::after {
  color: var(--cl-main);
  font-size: 1.2em;
}

/* modal-search
---------------------------------------------------------------- */
.modal-search {
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.modal-search.is-open {
  visibility: visible;
  opacity: 1;
}
.modal-search-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  top: 0;
  width: 100%;
  height: var(--header-height);
}
.modal-search-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  max-height: 500px;
  margin: auto;
  padding: var(--wrap-pd) var(--wrap-pd-s);
  background: var(--white);
  border-radius: var(--box-br);
  overflow-y: auto;
}
.modal-form-search {
  width: 100%;
}
/* 閉じるボタン */
.btn-search-close {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 200;
  width: 50px;
  height: 50px;
}
.btn-search-close button {
  width: 100%;
  height: 100%;
}
.btn-search-close button span {
  position: absolute;
  background-color: #333;
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  top: calc(50%);
  left: calc(50%);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: all 0.4s;
}
.btn-search-close button span::after {
  position: absolute;
  background-color: #333;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}

/* 検索フォーム
---------------------------------------------------------------- */
.search-form-input-text {
  flex-grow: 1;
}
.search-form-input-text input[type='text'] {
  width: 100%;
  height: 100%;
  padding: 1em 2em;
  font-size: 2rem;
  background: var(--white);
  border: var(--black) 3px solid;
  border-right: none;
  border-radius: var(--btn-br) 0 0 var(--btn-br);
}
.search-form-input-text input[type='text']:focus-visible {
  outline: 0;
}
.search-form-input-text {
  width: 4em;
}
.search-form-input-submit {
  position: relative;
}
.search-form-input-submit::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '';
  display: inline-block;
  width: 2px;
  height: 60%;
  background: var(--gray);
}
.search-form-input-submit input[type='submit'] {
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: var(--cl-main);
  background: var(--white);
  border: var(--black) 3px solid;
  border-left: none;
  border-radius: 0 var(--btn-br) var(--btn-br) 0;
  padding: 0.5em 1em;
}
.form-search {
  width: 100%;
}
.form-search input[type='text'] {
  width: 82%;
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  border-right: 0;
  background: var(--white);
  border-radius: 8px 0 0 8px;
  box-shadow: none;
}
.form-search input[type='text']:focus-visible {
  outline: 0;
}
.form-search input[type='submit'] {
  width: 18%;
  padding: 0;
  border-top: 1px solid var(--cl-main);
  border-right: 1px solid var(--cl-main);
  border-bottom: 1px solid var(--cl-main);
  border-left: 0;
  box-shadow: none;
  background: var(--cl-main);
  color: var(--white);
  font-size: 1.8rem;
  border-radius: 0 8px 8px 0;
}
.form-search input[type='submit']:hover {
  cursor: pointer;
}

.modal-search .page-link-item-box a {
  padding: 1em;
}
.modal-search .page-link-item-box a::after {
  display: none;
}
.modal-search .page-link-item-ttl {
  margin-bottom: 0;
}
.modal-search .page-link-item-ttl img {
  width: 50px;
  margin-left: 0;
}
.modal-search .page-link-item-ttl .txt {
  font-size: var(--fs-lead);
  color: var(--black);
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  color: var(--white);
  width: 100%;
  z-index: 1;
  margin-top: 12%;
}
.footer-inner {
  background: var(--cl-main);
  padding-bottom: 1em;
}
.footer-sitemap {
  position: relative;
  width: 100%;
}
.footer-sitemap-section-wrap {
  display: flex;
  gap: 2em;
}
.footer-sitemap-list-ttl {
  margin-bottom: 0.5em;
}
.footer-sitemap-list li + li {
  margin-top: 0.5em;
}
.footer-sitemap-list a {
  position: relative;
  color: var(--white);
  padding-left: 1.5em;
}
.footer-sitemap-list a::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next_white.svg) center center no-repeat;
  background-size: contain;
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 0.3em;
  left: 0;
  transition: right 0.3s;
}

/* footer bottom */
.footer-bottom {
  position: relative;
  background: var(--cl-main);
  padding: var(--wrap-pd) 0 0 0;
}
.footer-bg-shape {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.footer-bg-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
}
.footer-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.footer-icon img {
  display: inline-block;
  width: 184px;
}
.footer-icon .footer-link-list .footer-link-item + .footer-link-item {
  margin-left: 2em;
}
.footer-link-item a {
  display: flex;
  align-items: center;
  font-size: var(--fs-notes);
}
.footer-copyright {
  font-size: var(--fs-notes);
  padding: 0.5em 0;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .footer-sitemap-section:first-of-type {
    width: 100%;
  }
  .footer-bg-shape {
    bottom: 100%;
  }
  .footer-bottom {
    padding-top: 2em;
  }
  .footer-icon-wrap {
    width: 100%;
    gap: 3em;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-sitemap-section-wrap {
    flex-wrap: wrap;
    gap: 2em;
  }
  .footer-sitemap-section:first-of-type {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom {
    position: static;
  }
  .footer-sitemap {
    background: var(--cl-main);
  }
  .footer-bg-shape {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 14vw;
    z-index: -1;
  }
  .footer-bg-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }
  .footer-sitemap-section-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em 1em;
  }
  /* 1. ホーム (既存のままで1行目全体を使用) */
  .footer-sitemap-section:nth-of-type(1) {
    grid-column: 1 / span 2;
  }
  /* 2. W.Coを知る (2行目1列目) */
  .footer-sitemap-section:nth-of-type(2) {
    grid-column: 1 / 2;
    width: auto !important;
  }
  /* 3. W.Coをさがす */
  .footer-sitemap-section:nth-of-type(3) {
    grid-column: 1 / 2;
    order: 4;
  }
  /* 4. 募集・説明会情報 (2行目2列目) */
  .footer-sitemap-section:nth-of-type(4) {
    grid-column: 2 / 3;
    width: auto !important;
  }
  /* 5. 最新情報/FAQ/サイトマップ */
  .footer-sitemap-section:nth-of-type(5) {
    grid-column: 2 / 3;
    order: 5;
  }
}

/* トップページ Top
---------------------------------------------------------------- */
.top-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.top-main-txt-wrap {
  position: absolute;
  left: var(--header-side-pd);
  bottom: 10%;
  z-index: 1;
}
.top-main-txt {
  width: 100%;
}
.top-main-txt img {
  display: block;
}
.top-main-txt img:nth-of-type(1) {
  width: 560px;
}
.top-main-txt img:nth-of-type(2) {
  width: 600px;
  margin-top: 0.5em;
}
.top-main-txt h2 {
  line-height: 1.2;
}
.top-main-txt p {
  margin-top: 1em;
  font-size: var(--fs-ttl-xs);
  line-height: 1.4;
}
.top-hero-bottom {
  width: 100%;
  z-index: 2;
}

@media only screen and (max-width: 599px) {
  .top-hero {
    height: auto;
  }
  .top-main-txt-wrap {
    left: 0;
    bottom: 11%;
    z-index: 1;
    width: 100%;
    padding: 0 var(--header-side-pd);
  }
  .top-main-txt img:nth-of-type(1) {
    width: 94%;
  }
  .top-main-txt img:nth-of-type(2) {
    width: 100%;
    margin-top: 0.5em;
  }
}

/* トップバナーエリア ----------------------------- */
.se-banner {
  background: var(--cl-base);
}
.splide-banner .splide__slide a {
  display: block;
}
.splide-banner .splide__slide img {
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .splide-banner .splide__list {
  }
}
@media only screen and (min-width: 769px) {
  .splide-banner {
    visibility: visible;
  }
  .splide-banner .splide__list {
  }
}
@media only screen and (max-width: 768px) {
  .se-banner {
    overflow: visible; /* 親要素のオーバーフロー制限を解除 */
  }
  /* main が flex/grid コンテナのアイテムでないため、ここで overflow: hidden を上書き */
  .se-banner .splide__track {
    overflow: visible;
  }
}
@media only screen and (max-width: 768px) {
  .se-banner .b-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .splide-banner .grid-col {
    display: block;
  }
}

/* トップ 業種スライダー ----------------------------- */
@media only screen and (max-width: 768px) {
  .wco-cat-list-wrap .b-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .wco-cat-list-wrap .category-tabs-container {
    padding: 0 3%;
  }
}

/* se-introduction ----------------------------- */
.se-introduction {
  position: relative;
  margin-top: var(--wrap-pd-s);
}
.se-intro-inner {
  position: relative;
  width: 100%;
  max-width: var(--contents-bg-width);
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.se-intro-bg {
  position: absolute;
  inset: 0;
  margin: -4% auto auto;
}
.bg-item {
  position: absolute;
}
.se-intro-inner .bg-item-01 {
  width: 160px;
  top: 30%;
  left: -2%;
}
.se-intro-inner .bg-item-02 {
  width: 136px;
  top: 65%;
  left: 10%;
}
.se-intro-inner .bg-item-03 {
  width: 130px;
  top: 55%;
  right: 12%;
}
.se-intro-inner .bg-item-04 {
  width: 200px;
  top: 20%;
  right: -1%;
}

.se-intro-txt {
  position: relative;
  padding-top: max(2%, 6em);
}

.se-intro-wco {
  max-width: 260px;
  aspect-ratio: 3/1;
}
.se-intro-wco img {
  object-fit: contain;
}
@media only screen and (max-width: 1100px) {
  .se-intro-inner .bg-item-01 {
    width: min(160px, 14.5vw);
    top: 12%;
    left: -2%;
  }
  .se-intro-inner .bg-item-04 {
    width: min(200px, 18vw);
    top: -12%;
    right: -2%;
  }
  .se-intro-inner .bg-item-02 {
    display: none;
  }
  .se-intro-inner .bg-item-03 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .se-intro-wco {
    max-width: 43.3vw;
  }
}
@media only screen and (max-width: 599px) {
  .se-intro-inner .bg-item-01 {
    width: min(130px, 20vw);
    top: 8%;
    left: -2%;
  }
  .se-intro-inner .bg-item-04 {
    width: min(180px, 30vw);
    top: -8%;
    right: -2%;
  }
}

/* se-about / se-work-style  ----------------------------- */
.top-col-01 .txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.se-work-style {
  padding-bottom: min(20%, 9em);
}
@media only screen and (max-width: 1100px) {
  .se-work-style {
    padding-bottom: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .top-col-01 {
    display: block;
  }
  .top-col-01 .img-wrap {
    max-width: 400px;
  }
  .top-col-01 .txt-wrap {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 599px) {
  .se-work-style {
    padding-bottom: 40vw;
  }
}

/* se-wco ----------------------------- */
.se-wco {
  position: relative;
  padding-top: 20%;
  background: var(--white);
}
.se-wco-head {
  position: relative;
  width: 100%;
}
.se-wco-head-txt p span {
  display: block;
}
.se-wco-inner {
  position: relative;
  width: 100%;
  max-width: var(--contents-bg-width);
  margin-left: auto;
  margin-right: auto;
}
.se-wco-inner .bg-item-05 {
  bottom: 60%;
  left: -15%;
  width: min(396px, 36vw);
}
.se-wco-inner .bg-item-06 {
  bottom: 200%;
  right: 10%;
  width: min(140px, 12.8vw);
}
.se-wco-bg {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 734/141;
}
.se-wco-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.se-wco-head-txt-img {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 650px;
}
span.wco-count {
  font-size: 3em;
  color: var(--cl-main);
  padding: 0 0.1em;
}
@media only screen and (max-width: 1100px) {
  .se-wco-inner .bg-item-05 {
    top: -230%;
    bottom: auto;
    left: -15%;
    width: min(396px, 36vw);
  }
  .se-wco-inner .bg-item-06 {
    bottom: 220%;
    right: 10%;
    width: min(140px, 12.8vw);
  }
}
@media only screen and (max-width: 768px) {
  .se-wco {
    padding-top: 0;
  }
  .se-wco-inner {
    padding-top: 23%;
  }
  .se-wco-head-txt-img {
    top: 0%;
    width: 95%;
    max-width: 599px;
  }
  .se-wco-inner .bg-item-05 {
    top: -60%;
    left: -15%;
    width: min(396px, 36vw);
  }
  .se-wco-inner .bg-item-06 {
    top: -50%;
    bottom: auto;
    right: 10%;
    width: min(140px, 15vw);
  }
  .se-wco-bg {
    min-height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .se-wco-inner {
    padding-top: 30%;
  }
  .se-wco-inner .bg-item-05 {
    top: -35vw;
    width: 40vw;
  }
  .se-wco-inner .bg-item-06 {
    top: -30vw;
    width: 18vw;
  }
}

/* ピックアップW.Co ----------------------------- */
.pickup-item-wrap {
  position: relative;
  display: flex;
}
.pickup-item-wrap.splide__slide {
  padding-top: 5em;
}
.pickup-item-wrap .pickup-txt-area {
  position: absolute;
  width: 50%;
  left: 46%;
  bottom: calc(100% - 8em);
  z-index: 1;
}
.b-wrapper.is-single-pickup {
  margin-top: 7em;
}
.b-wrapper.is-single-pickup .pickup-item-wrap .pickup-txt-area {
  bottom: calc(100% - 3.2em);
}
.card-item.pickup-item {
  display: grid;
  padding: var(--box-pd-2);
}
.card-item.pickup-item .txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1.5em;
}
@media only screen and (max-width: 768px) {
  .pickup-item-wrap {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-item.pickup-item {
    display: block;
  }
  .pickup-item-wrap .pickup-txt-area {
    left: 50%;
    width: 95%;
    bottom: calc(100% - 8em);
    transform: translateX(-50%);
    z-index: 1;
  }
  .b-wrapper.is-single-pickup .pickup-item-wrap .pickup-txt-area {
    bottom: calc(100% - 2em);
  }
}

/*  ----------------------------- */
.se-wco-btn-wrap {
  position: relative;
  z-index: 1;
}
.se-wco-bottom {
  position: relative;
  padding-top: min(17%, 200px);
}
.se-wco-bottom-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  aspect-ratio: 75/13;
  max-height: 200px;
  transform: translateX(-50%);
  z-index: 1;
}
.se-wco-bottom-bg img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
  aspect-ratio: 144/25;
}
.se-wco-bottom-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.se-wco .bg-item-07 {
  left: 0;
  bottom: -10%;
  width: 160px;
  z-index: 1;
}
.se-wco .bg-item-08 {
  right: -5%;
  bottom: 60%;
  width: 190px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .se-wco .bg-item-07 {
    left: 5%;
    bottom: -20%;
    width: min(150px, 26vw);
  }
  .se-wco .bg-item-08 {
    right: 5%;
    bottom: 10%;
    width: min(150px, 28vw);
  }
  .se-wco-bottom {
    padding-top: max(17%, 140px);
  }
  .se-wco-bottom-bg {
    min-height: 140px;
  }
}
/*  ----------------------------- */
.se-recruitment {
  position: relative;
  padding-top: 10em;
  padding-bottom: min(18em, 22vw);
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .se-recruitment {
    padding-top: 5em;
    padding-bottom: min(10em, 27vw);
  }
}

/* トップ最新情報 ----------------------------- */
.se-news {
  position: relative;
}
.se-news-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.se-news-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: var(--wrap-pd);
}
.se-news .bg-item-09 {
  left: 10%;
  bottom: 130%;
  width: min(160px, 11vw);
}
.se-news .bg-item-10 {
  right: 10%;
  bottom: 200%;
  width: min(245px, 17vw);
}
.se-news .cat-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.news-top-col {
  position: relative;
}
.news-top-col.box-basic {
  padding: 4em clamp(1em, 5%, 4em);
}
.news-top-btn {
  position: relative;
  margin-top: 2em;
}
@media only screen and (max-width: 1024px) {
  .se-news .bg-item-09 {
    left: 5%;
    bottom: 3vw;
    width: min(128px, 21vw);
  }
  .se-news .bg-item-10 {
    right: 5%;
    bottom: 10vw;
    width: min(196px, 32vw);
  }
  .news-top-col.box-basic {
    display: block;
    padding: 4em clamp(1em, 5%, 4em) 10em;
  }
  .news-top-col .ttl-top {
    align-items: center;
  }
  .news-top-col .content-area {
    margin-top: 2em;
  }
  .news-top-btn {
    position: absolute;
    top: auto;
    bottom: 3em;
    left: 0;
    padding-left: 0;
  }
  .news-top-btn .mw-btn-s {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 599px) {
  .se-news .bg-item-09 {
    bottom: 8vw;
  }
  .se-news .bg-item-10 {
    right: 3%;
    bottom: 12vw;
  }
  .news-top-col.box-basic {
    padding: 2em clamp(1em, 5%, 4em) 8em;
  }
  .news-top-btn {
    bottom: 1.5em;
  }
}

/* サブページ（共通） Sub-common
---------------------------------------------------------------- */
.sub-hero {
  position: relative;
  padding: var(--header-outer-height) 0;
  width: 100%;
  line-height: 1.4;
  background-size: cover;
  background: var(--cl-main);
  color: var(--white);
}
.sub-hero-02 {
  padding: var(--header-outer-height) 0;
}
.sub-hero > .b-wrapper {
  position: relative;
}
.sub-hero > .b-wrapper::after {
  content: '';
  display: inline-block;
  background: url(../images/common/sub_object.svg) center center no-repeat;
  background-size: contain;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 30%;
  right: 0;
  z-index: 1;
}
.sub-hero-ttl {
  margin-top: 1em;
}
.sub-hero-ttl {
  font-size: var(--fs-ttl-top);
  font-weight: bold;
}
.sub-hero-txt {
  font-size: var(--fs-ttl-s);
}

.sub-hero + .site-main {
  position: relative;
  border-radius: 60px;
  margin-top: -80px;
  background: var(--white);
}
@media only screen and (max-width: 1024px) {
  .sub-hero + .site-main {
    border-radius: 40px;
  }
  .sub-hero > .b-wrapper::after {
    max-width: 20%;
    top: auto;
    top: -4em;
    right: 3%;
  }
}
@media only screen and (max-width: 599px) {
  .sub-hero + .site-main {
    border-radius: 20px;
  }
}
/* 業種タブ
---------------------------------------------------------------- */
.category-list-wrapper .tab-menu-item-02 {
  position: relative;
  background: var(--white);
  border-color: var(--cl-main);
  color: var(--black);
  border-radius: var(--block-br);
  box-shadow: none;
  padding: 0.8em 2em;
}
.category-list-wrapper .tab-menu-item-02 .is-active {
  background: var(--cl-main);
  border-color: var(--cl-main);
  color: var(--white);
}
.category-list-wrapper .tab-menu-item-02 .is-active::after {
  content: '';
  display: inline-block;
  background: var(--cl-main);
  height: calc(25px / 2);
  width: 25px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.category-list-wrapper .tab-menu-list-02 {
  --col-gap: 1em;
  --row-gap: 1em;
}
@media only screen and (max-width: 768px) {
  .tab-menu-list-02 {
  }
  .category-list-wrapper .tab-menu-item-02 {
    padding: 0.5em;
  }
}

/* ページリンク page-link
---------------------------------------------------------------- */
.se-page-link {
}
.page-link-ttl {
  font-size: var(--fs-ttl-ll);
}
.page-link-ttl span {
  font-size: 1.2em;
  display: inline-block;
  padding: 0 0.1em;
}
.page-link-lead {
  font-size: var(--fs-ttl-m);
  font-weight: bold;
  text-align: center;
}
.page-link-lead span.line {
  padding: 0 0.5em 0.3em;
  -webkit-box-decoration-break: clone; /* Chrome/Safari */
  box-decoration-break: clone; /* 標準 */
  background-image: linear-gradient(to top, var(--cl-accent-02) 4px, transparent 4px);
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 100% 100%;
}
.page-link-item-box {
  display: flex;
}
.page-link-item-box a {
  position: relative;
  display: block;
  width: 100%;
  background: var(--white);
  border: var(--cl-main) 3px solid;
  border-radius: var(--box-br);
  color: var(--black);
  padding: 2em 2em 4em;
  box-shadow: var(--shadow);
}
.page-link-item-box a::after {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1.8em;
  height: 1.8em;
  position: absolute;
  bottom: 1.5em;
  right: 2em;
  transition: right 0.3s;
}
.page-link-item-box a:hover {
  opacity: 1;
}
.page-link-item-box a:hover::after {
  right: 1.5em;
}
.page-link-item-ttl {
  display: flex;
  align-items: center;
  color: var(--cl-main);
  gap: 0.8em;
  margin-bottom: 1em;
}
.page-link-item-ttl img {
  width: 80px;
  margin-left: 0.5em;
}
.page-link-item-ttl .txt {
  position: relative;
}
.page-link-item-ttl .txt::after {
  content: '';
  background-color: var(--black);
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.page-link-item-box a:hover .page-link-item-ttl .txt::after {
  transform: scale(1, 1);
}
@media only screen and (max-width: 768px) {
  .page-link-item-box a {
    padding: 1.5em 1em 4em;
  }
}

/* W.Coとは about
---------------------------------------------------------------- */
.page-about-section h2 {
  font-size: var(--fs-ttl-l);
  text-align: center;
}
.page-about-section .section-head {
  position: relative;
}

.about-01 {
  position: relative;
  margin-top: min(5em, 8vw);
}
.about-01 .section-head .img-photo {
  position: absolute;
}
.about-01 .section-head .img-photo-01 {
  width: min(20vw, 250px);
  bottom: 125%;
  left: 20%;
}
.about-01 .section-head .img-photo-02 {
  width: min(25vw, 300px);
  bottom: -50%;
}
.about-01 .section-head .img-photo-03 {
  width: min(30vw, 360px);
  bottom: 0;
  right: 0;
}
.about-01 .img-wco {
  max-width: min(41vw, 500px);
}
.about-01 .section-head {
  position: relative;
}
.about-01-ttl,
.ws-01-ttl {
  line-height: 1.9;
  margin-top: 2em;
}
.about-01-ttl span,
.ws-01-ttl span {
  font-size: 1.5em;
  line-height: 1.5;
}
.about-01-txt span {
  display: block;
}
@media only screen and (max-width: 768px) {
  .about-01 {
    margin-top: 20vw;
  }
  .about-01-txt span {
    display: inline;
  }
  .about-01 .img-wco {
    max-width: min(76vw, 460px);
  }
  .about-01-ttl {
    line-height: 1.9;
    margin-top: 1em;
  }
  .about-01-ttl span,
  .ws-01-ttl span {
    font-size: 1.3em;
  }
  .page-about-section .section-head .img-photo-01 {
    width: 31vw;
    bottom: 182%;
    left: 52%;
  }
  .page-about-section .section-head .img-photo-02 {
    width: 34vw;
    bottom: 120%;
    left: 15%;
  }
  .page-about-section .section-head .img-photo-03 {
    display: none;
  }
}
/*  ----------------------------- */
.about-02-ttl span {
  font-size: 2em;
}
.about-02-box > div:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.about-02-box-ttl {
  font-size: var(--fs-ttl-s);
  text-align: center;
}
.about-02-box-ttl span {
  font-size: 1.3em;
  padding: 0 0.1em;
}
.about-02-box-img {
  max-width: 210px;
}
@media only screen and (max-width: 1024px) {
  .grid-col.about-02-col {
    gap: 1em;
  }
  .about-02-box {
    padding: 1.5em 1em;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .grid-col.about-02-col {
    grid-template-columns: 1fr;
  }
  .about-02-box-img {
    max-width: 30%;
  }
  .about-02-box > div:first-of-type {
    flex-direction: row;
  }
  .about-02-box-ttl {
    flex-grow: 1;
    text-align: center;
  }
}
/*  ----------------------------- */
.about-03-ttl {
  width: 100%;
  max-width: 700px;
}
.about-03-table th,
.about-03-table td {
  border: none;
  padding: 1em;
  text-align: center;
  font-size: var(--fs-lead);
}
.about-03-table tr:nth-of-type(1) th {
  background: var(--white);
}
.about-03-table tr:nth-of-type(n + 2) th {
  background: var(--cl-main);
  color: var(--white);
}
.about-03-table tr:nth-of-type(2n) td:nth-of-type(1) {
  background: #e8f6f7;
  color: var(--black);
}
.about-03-table tr:nth-of-type(2n + 1) td:nth-of-type(1) {
  background: #d8f0f2;
  color: var(--black);
}
.about-03-table tr:nth-of-type(n + 2) td:nth-of-type(n + 2) {
  background: var(--l-gray);
  color: var(--d-gray);
}
@media only screen and (max-width: 768px) {
  .about-03-ttl {
    max-width: 560px;
  }
}
/*  ----------------------------- */
.about-04-ttl {
  max-width: 700px;
}
.about-04-col .img-wrap img {
  object-fit: cover;
}
.about-04-col-ttl {
  font-size: var(--fs-ttl-m);
}
.about-04-col-ttl span {
  font-size: 1.2em;
}
.about-04-recommend-box {
  position: relative;
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  background: var(--cl-base);
  padding: 2.5em 1.2em 1.5em;
  margin-top: 3em;
}
.about-04-recommend-box .recommend-list {
  gap: 0.8em;
}
.about-04-recommend-box .pickup-txt-area {
  top: -2em;
  left: 1em;
}
.about-04-recommend-box .pickup-txt {
  font-size: var(--fs-ttl-xs);
  padding: 0.5em 1em;
}
.about-04-recommend-box .pickup-txt::after {
  left: 15%;
  border-width: 0.5em 0.8em 0 0;
}
.about-04-recommend-box .category-link-item {
  font-size: var(--fs-notes);
  display: flex;
  width: 100%;
}
.about-04-ttl-02 {
  max-width: 600px;
}
@media only screen and (max-width: 1100px) {
  .grid-col.about-04-col {
    grid-template-columns: 1fr;
  }
  .about-04-col .img-wrap {
    max-width: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .about-04-ttl {
    max-width: 560px;
  }
  .grid-col.recommend-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .grid-col.recommend-list {
    grid-template-columns: 1fr;
  }
  .about-04-recommend-box .pickup-txt {
    font-size: 1.6rem;
    padding: 0.8em 0.5em;
  }
}
/*  ----------------------------- */
.more-box {
  position: relative;
  padding: 4em 4em 3.5em;
}
.ttl-more {
  position: absolute;
  background: var(--white);
  top: -2em;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
}
.ttl-more span {
  position: relative;
  display: block;
  padding: 1em 1em 1em 5em;
}
.ttl-more span::before {
  content: '';
  display: inline-block;
  background: url(../images/common/more.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
  width: 4em;
  height: 3em;
}
.more-box-lead {
  font-size: var(--fs-ttl-s);
}
.more-box-lead span {
  font-size: 1.2em;
}
@media only screen and (max-width: 1100px) {
  .more-box {
    position: relative;
    padding: 3em 2em 3em;
  }
}
@media only screen and (max-width: 768px) {
  .more-box .grid-col {
    grid-template-columns: 1fr;
  }
  .more-box .img-wrap {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 599px) {
  .more-box {
    position: relative;
    padding: 3em 1em 2em;
  }
  .page-about-section h2.ttl-more {
    font-size: max(4vw, 1.8rem);
  }
}
/* W.Coでの働き方 work-style
---------------------------------------------------------------- */
/*  ----------------------------- */
.ws-02-ttl {
  padding: 0 3.5em 0.35em;
}
.ws-02-ttl span {
  font-size: 1.3em;
}
.ws-02-value-col {
  gap: 4em 2em;
}
.ws-02-value-col .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% / 3 - 4em);
  height: 100%;
  text-align: center;
}
.value-col-img {
  max-width: 240px;
}
.value-col-txt {
  margin-top: 1em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .ws-02-value-col {
    gap: 1.5em;
  }
  .ws-02-value-col .col-item {
    width: calc(100% / 2 - 1em);
    text-align: center;
  }
}

/*  ----------------------------- */
.ws-03-ttl {
  max-width: 600px;
}
.schedule-area {
  position: relative;
  --cl-schedule-bg: #fdf0f1;
  --cl-schedule: var(--cl-accent-02);
  background: var(--cl-schedule-bg);
  padding: 5em 2em 2em;
}
.schedule-area:nth-child(2) {
  --cl-schedule-bg: #e8f6f7;
  --cl-schedule: var(--cl-main);
}
.schedule-ttl-wrap {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 3em);
  display: flex;
  justify-content: center;
}

.schedule-ttl {
  position: relative;
  display: inline-block;
  font-size: var(--fs-ttl-xs);
  margin-bottom: 15px;
  padding: 0.8em;
  border: 3px solid var(--cl-schedule);
  border-radius: var(--box-br);
  background-color: var(--white);
  text-align: center;
  line-height: 1.5;
  color: var(--cl-schedule);
  width: 90%;
}
.schedule-ttl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 0.95em 0.9em 0 0.9em;
  border-color: var(--cl-schedule) transparent transparent;
  translate: -50% 100%;
}
.schedule-ttl::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 0.8em 0.75em 0 0.75em;
  border-color: var(--white) transparent transparent;
  translate: -50% 100%;
}
.schedule-step + .schedule-step {
  margin-top: 2.5em;
}
.schedule-step-time {
  background: var(--cl-schedule);
  color: var(--white);
  border-radius: var(--btn-br);
  text-align: center;
  padding: 0.2em 1em;
  display: inline-block;
  width: 100px;
  font-size: var(--fs-lead);
}
.schedule-step .img-wrap {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-step-ttl {
  font-size: var(--fs-lead);
  margin-top: 0.5em;
}
.schedule-step-txt {
  font-size: var(--fs-notes);
  line-height: 1.6;
  margin-top: 0.8em;
}
@media only screen and (max-width: 768px) {
  .grid-col.schedule-col {
    grid-template-columns: 1fr;
  }
  .schedule-area {
    padding: 4em 1em 2em;
  }
  .schedule-area + .schedule-area {
    margin-top: 4em;
  }
}
@media only screen and (max-width: 599px) {
  .schedule-ttl {
    font-size: 1.6rem;
    width: 100%;
  }
}

/*  メンバーの声 ----------------------------- */
.ws-04-ttl {
  max-width: 600px;
}

/*  ----------------------------- */
.ws-video {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--row-gap);
}
.video-col .col-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5em;
}
.ws-video-ttl {
  max-width: 540px;
}

@media (min-width: 769px) {
  .ws-video {
    grid-template-columns: 5.5fr 4.5fr;
    grid-template-areas:
      'head-area first-video-area'
      'other-content other-content';
    align-items: start;
  }
  .section-head {
    grid-area: head-area;
  }
  .head-and-first-video-wrapper {
    grid-area: first-video-area;
  }

  .section-contents {
    grid-area: other-content;
  }

  .head-and-first-video-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--col-gap);
  }

  .section-head {
    flex: 5.5;
    box-sizing: border-box;
  }

  .col-item.first-video-item {
    flex: 4.5;
    padding-left: calc(var(--col-gap) / 2);
    box-sizing: border-box;
  }

  .grid-col.video-col {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    row-gap: var(--row-gap);
    column-gap: var(--col-gap);
  }
}

@media (max-width: 768px) {
  .video-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-item.first-video-item {
    grid-column: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .video-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-item.first-video-item {
    grid-column: 1 / span 2;
  }
}
.video-thumbnail-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
  border-radius: var(--box-br);
  border: var(--black) 2px solid;
}
.video-thumbnail-container .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-ttl {
  color: var(--black);
  font-size: var(--fs-default);
  font-weight: bold;
  transition: 0.3s all;
}
.video-link:hover .video-ttl {
  opacity: 0.6;
}
.first-video-item .video-ttl {
  font-size: var(--fs-ttl-xs);
}
.video-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}
.video-category-tag {
  background-color: #eee;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  white-space: nowrap;
}
.video-category-tag a {
  color: #333;
  text-decoration: none;
}
.video-category-tag a:hover {
  text-decoration: underline;
}

/* よくある質問 faq
---------------------------------------------------------------- */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: var(--cl-base);
  padding: var(--box-pd-2);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
}
.faq-wrap + .faq-wrap {
  margin-top: 2em;
}
.faq-q {
  position: relative;
  padding: 0 0 0 50px;
  font-size: var(--fs-ttl-xs);
  margin-bottom: 1em;
}
.faq-q::before {
  content: '';
  display: inline-block;
  background: url(../images/faq/faq_q.svg) center center no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
}

.faq-a {
  position: relative;
  padding: 0 0 0 50px;
}
.faq-a::before {
  content: '';
  display: inline-block;
  background: url(../images/faq/faq_a.svg) center center no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* カテゴリーラベル */
.cat-label {
  display: inline-block;
  padding: 0.1em 1em;
  font-size: var(--fs-notes);
  background: var(--cl-main);
  color: var(--white) !important;
  min-width: 100px;
  text-align: center;
  border-radius: var(--btn-br);
}
.tag-label {
  display: inline-block;
  padding: 0.1em 0.5em;
  font-size: var(--fs-notes);
  color: var(--cl-main) !important;
  min-width: 100px;
  border: var(--cl-main) 1px solid;
  border-radius: 4px;
}
.tag-label span {
  position: relative;
  padding-left: 1em;
}
.tag-label span::before {
  content: '#';
  display: inline-block;
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0;
}
.tag-label.tag-label-job {
  border: none;
  font-weight: bold;
  min-width: auto;
}
.tag-label-wrap {
  background: var(--cl-base);
  padding: 0.8em 1em;
  border-radius: var(--block-br);
}

/* 記事リスト */
.article-list li {
  border-bottom: var(--l-gray) 1px solid;
  transition: 0.3s all;
  border-radius: var(--box-br);
}
.article-list li a {
  display: block;
  color: var(--black);
  padding: 0.8em 0;
}
.article-list li:hover {
  background: var(--cl-base);
}
.article-list li:hover a {
  opacity: 1;
}
.article-list a.zoom-out:hover {
  transform: scale(0.98);
}

/* 記事日付 */
.article-date {
  position: relative;
  display: block;
  color: var(--d-gray);
  font-size: var(--fs-notes);
  font-weight: bold;
}
/* 記事タイトル */
.article-ttl {
  font-weight: bold;
  color: var(--black);
  border-bottom: var(--gray) 1px solid;
  padding-bottom: 0.5em;
}
.article-list .article-date {
  margin-left: 0.3em;
}

/* カテゴリー、タームリスト */
.se-cat-list {
  margin-bottom: 3em;
}
.cat-list-wrap {
  position: relative;
  width: 100%;
  padding: 1em 0;
}
.cat-list {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fs-default);
  padding-right: 3em;
  gap: 0.5em;
}
.cat-list li {
  text-align: center;
}
.cat-list li a,
.cat-list li span {
  font-size: var(--fs-default);
  font-weight: bold;
  background: var(--white);
  color: var(--gray);
  padding: 0.3em 2em;
  border: var(--gray) 2px solid;
  border-radius: var(--btn-br);
  cursor: pointer;
}
.cat-list li.current a,
.cat-list li.current span {
  background: var(--cl-main);
  border: var(--cl-main) 2px solid;
  color: var(--white);
}
.cat-area {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .cat-area {
    position: relative;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .cat-area::before,
  .cat-area::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
  }
  .cat-area::before {
    width: 5%;
    left: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
  }
  .cat-area::after {
    width: 20%;
    right: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
  }
  .cat-list-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1em 0 1em 1.5em;
  }
  .cat-list-wrap::-webkit-scrollbar {
    display: none;
  }
  .cat-list {
    width: max-content;
    flex-wrap: nowrap;
  }
}

/* カテゴリードロップダウン */
.cat-dropdown {
  position: relative;
  display: inline-block;
  font-size: var(--fs-default);
  background: var(--white);
  border: var(--gray) 2px solid;
  border-radius: 5px;
  color: var(--black);
  width: 100%;
  max-width: 500px;
  height: 100%;
  text-align: left;
  transition: all 0.5s ease;
}
.cat-dropdown .select {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1em;
}
.cat-dropdown .select > i {
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: var(--fs-default);
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 20px;
  transform: translateY(-50%);
}
.cat-dropdown:active {
  background-color: #f8f8f8;
}
.cat-dropdown.active:hover,
.cat-dropdown.active {
  border-radius: 5px 5px 0 0;
  background-color: #f8f8f8;
}
.cat-dropdown.active .select > i {
  transform: rotate(180deg);
  top: 30%;
}
.cat-dropdown .cat-dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: calc(100% + 4px);
  left: -2px;
  border: var(--gray) 2px solid;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  display: none;
  overflow-y: auto;
  z-index: 9;
}
.cat-dropdown .cat-dropdown-menu li a {
  display: inline-block;
  color: var(--black);
  width: 100%;
  padding: 1em;
  transition: all 0.2s ease-in-out;
}
.cat-dropdown .cat-dropdown-menu {
  padding: 0;
  list-style: none;
}
.cat-dropdown .cat-dropdown-menu li a:hover {
  background-color: #f2f2f2;
}
.cat-dropdown .cat-dropdown-menu li a:active {
  background-color: #e2e2e2;
}

/* タグリスト */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  background: var(--l-gray);
  margin-top: 0.3em;
  border-radius: 5px;
  padding: 0.5em;
}
.tag-list li {
  padding: 0.25em;
}
.tag-list li a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: var(--black) 1px solid;
  font-size: var(--fs-notes);
  color: var(--black);
}
.tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  content: '\23';
  font-weight: 900;
  color: var(--cl-main);
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary .single-article {
  padding: 0 1em 1.5em;
  border-radius: var(--box-br);
}
.type-single .l-primary .article-inner {
  max-width: 850px;
  margin: auto;
}
.article-content {
  margin: 3em 0;
}

/* 投稿サイドバー（共通）sidebar common
---------------------------------------------------------------- */
.sidebar-section {
  background: var(--l-gray);
  padding: 1.5em 1em;
  border-radius: var(--box-br);
}
.l-secondary .sidebar-section + .sidebar-section {
  margin-top: 1.5em;
}
.sidebar-section-ttl {
  font-size: var(--fs-ttl-s);
  margin-bottom: 0.5em;
}
.sidebar-section ul li a {
  display: block;
  font-size: 1.4rem;
  color: var(--black);
  padding: 0.5em 0;
  border-bottom: var(--cl-main) 1px solid;
}
.sidebar-tag-list a {
  display: inline-block;
  position: relative;
  color: var(--black);
  padding: 0 0 0 1em;
  border-bottom: var(--black) 1px solid;
  margin-top: 10px;
}
.sidebar-tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  content: '\23';
  font-weight: 900;
  color: var(--cl-main);
}
.sticky-area {
  position: -webkit-sticky; /*Safari*/
  position: sticky;
  top: 100px;
  height: auto;
}

/* archive news
---------------------------------------------------------------- */
.news-list {
  gap: 4em;
}
.news-list-item a {
  display: flex;
  gap: 3%;
  color: var(--black);
}
.news-list-item .img-wrap {
  width: 18%;
  height: 100%;
  min-width: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.news-list-item .img-wrap img {
  object-fit: cover;
  border-radius: var(--box-br);
  width: 100%;
  height: 100%;
}
.news-list-item .txt-wrap {
  width: 82%;
}
.news-list-item .article-ttl {
  font-size: var(--fs-ttl-xs);
}
.news-list-item .article-excerpt {
  padding-top: 1em;
}
@media only screen and (max-width: 599px) {
  .news-list-item .article-excerpt {
    display: none;
  }
  .news-list-item .article-ttl {
    border-bottom: none;
    padding-bottom: 0;
  }
  .news-list {
    gap: 2em;
  }
}

/* single news
---------------------------------------------------------------- */
.single-article .article-ttl {
  font-size: var(--fs-ttl-m);
  margin-top: 0.5em;
}

/* single category-page 業種ページ
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .grid-col.category-page-head-col {
    grid-template-columns: 1fr;
  }
  .category-page-head-col .img-wrap {
    max-width: 400px;
  }
}

/* archive wco-list W.Coをさがす 一覧
---------------------------------------------------------------- */
/* 記事カラム */
.col-wco {
  gap: 1.5em;
}
.col-wco .col-item {
  display: flex;
  flex-wrap: wrap;
}
.col-wco .card-ttl {
  font-size: var(--fs-lead);
}
.col-wco-item a span.area::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_map.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
}
@media only screen and (max-width: 1024px) {
  .search-results-col.col-wco {
    gap: 1em;
  }
  .col-wco .card-item {
    padding: 1em 0.5em;
  }
}

@media only screen and (max-width: 599px) {
  .search-results-col.col-wco {
    gap: 0.8em;
  }
  .col-wco .col-item {
    display: flex;
  }
  .col-wco .card-item {
    display: flex;
    gap: 0.5em;
    width: 100%;
    align-items: flex-start;
  }
  .col-wco .card-item .img-wrap {
    width: 30%;
  }
  .col-wco .card-item .txt-wrap {
    width: 70%;
    margin-top: 0;
  }
}

/* single wco-list W.Coをさがす 詳細
---------------------------------------------------------------- */
.wco-head-box {
  background: var(--cl-base);
  padding: var(--box-pd-2);
  border-radius: var(--box-br);
}
.wco-head-box a {
  position: relative;
  padding-bottom: 0;
  color: var(--cl-main);
}
.wco-head-box .inner {
  position: relative;
}
.wco-head-box-col {
  gap: 2em;
}
.wco-head-box-col .img-wrap {
  width: 100%;
}
.wco-article-ttl {
  font-size: var(--fs-ttl-ll);
}
.wco-info-group {
  margin-top: 1em;
}
.wco-info-group + .wco-info-group {
  padding-top: 1em;
  border-top: var(--gray) 2px solid;
}
.wco-info-item {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}
.wco-info-item + .wco-info-item {
  margin-top: 0.5em;
}
.wco-info-item dt {
  font-weight: 500;
}
.wco-info-item > dt {
  position: relative;
  font-weight: bold;
  width: 25%;
}
.wco-info-item > dd {
  width: 75%;
}
.wco-info-item .contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em 0.8em;
}
.wco-info-item > dd dl {
  display: flex;
  gap: 0.2em;
}
.wco-info-item dl.tel {
  font-weight: bold !important;
  color: var(--cl-main);
  font-size: 1.2em;
  letter-spacing: 0.03em;
}
.wco-info-item dl.tel dt {
  font-weight: bold;
}
.wco-info-tel a {
  font-size: 1.8em;
}
.wco-info-tel a::after {
  display: none;
}
.wco-info-tel dt {
  font-weight: bold;
}
.pickup-txt-area {
  position: absolute;
  left: 50%;
  bottom: 103%;
}
.pickup-txt {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 1em;
  border-radius: 8px;
  background: var(--cl-accent-02);
  text-align: left;
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  line-height: 1.5;
  color: var(--white);
}
.pickup-txt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: var(--cl-accent-02) transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}
.wco-head-box .pickup-txt-area {
  left: 48%;
}
.wco-message-inner {
  background: var(--cl-base);
  border-radius: var(--box-br);
  padding: var(--wrap-pd-s);
}
.wco-outline .ttl-01 {
  margin: 0 0 1em;
}
@media only screen and (max-width: 1024px) {
  .wco-head-box .pickup-txt-area {
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    width: 100%;
  }
  .grid-col.wco-head-box-col {
    gap: 1em;
    grid-template-columns: 1fr;
  }
  .wco-head-box-col .img-wrap {
    max-width: 400px;
  }

  .wco-info-item + .wco-info-item {
    margin-top: 0.8em;
  }
}

@media only screen and (max-width: 599px) {
  .pickup-txt {
    padding: 0.5em 1em;
  }
  .wco-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
  }
  .wco-info-item > dt {
    width: 100%;
  }
  .wco-info-item > dd {
    width: 100%;
  }
  .pickup-txt {
    font-size: var(--fs-lead);
  }
}

/* archive recruitment-list 採用情報
---------------------------------------------------------------- */
.card-item.recruitment-item {
  display: grid;
}
.card-item.recruitment-item .img-wrap {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.card-item.recruitment-item .txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-results-item a {
  color: var(--black);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  padding: 2em;
}
.search-results-item + .search-results-item {
  margin-top: 2em;
}
.search-results-item .img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.search-results-item .img-wrap img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.wco-name-wrap {
}
.wco-name-wrap .wco-name {
  font-weight: bold;
  font-size: var(--fs-lead);
}
.area-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.5em;
  padding-left: 2em;
  font-size: var(--fs-notes);
}
.area-wrap::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_map.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
}
.area-wrap .area {
}
.area-wrap .area + .area::before {
  content: '/';
  display: inline-block;
  margin-right: 0.5em;
}
.job-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.job-wrap .job {
  padding: 0em 0.8em;
  border: var(--cl-main) 2px solid;
  border-radius: var(--block-br);
  color: var(--cl-main);
  font-size: var(--fs-notes);
}

/* single recruitment-list 採用情報 詳細
---------------------------------------------------------------- */
.recruitment-img {
  max-width: 600px;
}
.recruitment-cta-box {
  display: flex;
  align-items: center;
  gap: 2em;
}
.recruitment-cta-box .img-wrap {
  width: 120px;
}
.recruitment-cta-box .txt-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .recruitment-cta-box {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2em;
  }
  .recruitment-cta-box .txt-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5em;
  }
}

/* archive session-list 説明会情報
---------------------------------------------------------------- */
.thumb-img {
  max-width: 500px;
}

/* single session-list 説明会情報 詳細
---------------------------------------------------------------- */
.session-info-item + .session-info-item {
  padding-top: 1em;
  border-top: var(--gray) 1px solid;
  margin-top: 1em;
}
.session-info-item .map-link .cat-label span {
  position: relative;
  padding-left: 1.8em;
}
.session-info-item .map-link .cat-label {
  padding: 0.5em 1.2em 0.5em 1em;
}
.session-info-item .map-link .cat-label span::before {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_map_white.svg) center center no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 0;
  left: 0;
}

/* 検索結果 se-search-result
---------------------------------------------------------------- */
.se-search-result article {
  width: 100%;
  height: 100%;
}
.col-search article > a {
  border-radius: var(--box-br);
  padding: 2em;
  background: var(--white);
  border: var(--black) 3px solid;
  box-shadow: var(--shadow);
}
.col-search > .col-item + .col-item {
  margin-top: 2em;
}
.se-search-result .entry-header {
  font-weight: bold;
  color: var(--cl-main);
  font-size: var(--fs-ttl-s);
}

/* 検索コンテナのローディング状態を視覚的に調整 */
#search-results-container.loading-active {
  min-height: 150px; /* ロード中に要素が消えないように高さを確保 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スピナー本体 */
.spinner-loader {
  border: 4px solid #f3f3f3; /* ライトグレー */
  border-top: 4px solid #3498db; /* ブルー */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite; /* 1秒で無限に回転 */
}

.search-result-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding-bottom: 2em;
}
.count-display {
  font-size: var(--fs-lead);
}
.count-display span {
  font-size: 2em;
  font-weight: bold;
  color: var(--cl-main);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 599px) {
  .col-search article > a {
    padding: 1.5em 1em;
  }
  .search-result-info {
    flex-wrap: wrap;
  }
  .search-result-info .wp-pagenavi {
    width: 100%;
  }
}

/* 絞り込み検索 search-filter
---------------------------------------------------------------- */
/* 絞り込み検索 search-filter */
.search-filter-box {
  background: var(--white);
  font-weight: bold;
  padding: 4em clamp(1em, 5%, 4em);
  border: var(--black) 4px solid;
  border-radius: var(--box-br);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}
.search-filter-box .custom-filter-group:first-of-type {
  padding: 0 0 var(--wrap-pd-s) 0;
}
.custom-filter-group {
  padding: var(--wrap-pd-s) 0;
}
.custom-filter-group + .custom-filter-group {
  background-image: radial-gradient(circle, var(--cl-main) 2.5px, transparent 2.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 15px 5px;
}
.custom-filter-group.area {
  padding-top: 0;
}
.custom-filter-group:last-child {
  background: none;
  padding-bottom: 0;
}
.custom-filter-group.word {
  display: flex;
  align-items: center;
  gap: 1em;
}
.custom-filter-group .filter-ttl {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: var(--fs-ttl-xs);
  padding-left: 2.5em;
  margin-bottom: 1.5em;
}
.custom-filter-group.word .filter-ttl {
  margin-bottom: 0;
}
.custom-filter-group .filter-ttl::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 2em;
  position: absolute;
  left: 0;
}
.custom-filter-group.word .filter-ttl::before {
  background: url(../images/search/search_word.svg) center center no-repeat;
  background-size: contain;
}
.custom-filter-group.area .filter-ttl::before {
  background: url(../images/search/search_area.svg) center center no-repeat;
  background-size: contain;
}
.custom-filter-group.cat .filter-ttl::before {
  background: url(../images/search/search_category.svg) center center no-repeat;
  background-size: contain;
}
.custom-filter-group.job .filter-ttl::before {
  background: url(../images/search/search_job.svg) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 599px) {
  .search-filter-box {
    padding: 2em clamp(1em, 5%, 4em);
    border: var(--black) 4px solid;
  }
  .custom-filter-group.word {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
  .custom-search-form {
    width: 100%;
  }
}

/* チェックボックスのコンテナのレイアウト */
.area-terms-container,
.wco-category-container,
.job-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* 子タームを持つ親のレイアウト */
.parent-and-children-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* 子タームを持たない親のレイアウト */
.parent-only-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 子タームを囲むグループ */
.child-area-group {
  background-color: var(--l-gray);
  padding: 1em;
  border-radius: var(--block-br);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 親タームのチェックボックス */
.parent-area-item,
.wco-category-item {
  position: relative;
}
/* 子タームのチェックボックス */
.child-area-item {
  position: relative;
}

/* PC向けレイアウト */
@media (min-width: 768px) {
  .parent-and-children-row {
    flex-direction: row;
    align-items: center;
    gap: var(--col-gap);
  }
  .parent-area-item {
    flex-shrink: 0;
  }
}

/* 業種の横並び */
.wco-category-container,
.job-container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

/* チェックボックスの装飾 */
.custom-checkbox-container label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--fs-default);
  padding: 0.5em 1em 0.5em 3em;
  background: var(--white);
  border-radius: 5px;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.custom-checkbox-container input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox-container label::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 2em;
  border: 2px solid var(--gray);
  background: var(--white);
  border-radius: 3px;
  margin-right: 8px;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
}
.custom-checkbox-container label::after {
  content: '';
  display: inline-block;
  background: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20viewBox%3D%220%200%2018%2015%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%3E%0A%3Cpolyline%20points%3D%221.5%207.5%206.5%2013.5%2016.5%201.5%22%20fill%3D%22none%22%20stroke%3D%22%23cdcdcd%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E')
    center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
}
.custom-checkbox-container input[type='checkbox']:checked + label::before {
  background: var(--cl-main);
  border-color: var(--cl-main);
}
.custom-checkbox-container input[type='checkbox']:checked + label::after {
  background: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20viewBox%3D%220%200%2018%2015%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%3E%0A%3Cpolyline%20points%3D%221.5%207.5%206.5%2013.5%2016.5%201.5%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E')
    center center no-repeat;
  background-size: contain;
}
.custom-checkbox-container label span {
  font-size: var(--fs-default);
  color: var(--black);
}

.child-area-group label {
  border: var(--gray) 2px solid;
  padding: 0.5em 3em 0.5em 1em;
  font-size: var(--fs-notes);
}
.child-area-group label::before {
  display: none;
}
.child-area-group label::after {
  left: auto;
  right: 0.5em;
}
.child-area-group input[type='checkbox']:checked + label {
  background: var(--cl-main);
}
.child-area-group input[type='checkbox']:checked + label span {
  color: var(--white);
}

/* フリーワード検索ボタン */
.custom-search-form {
  align-items: stretch;
  flex-grow: 1;
}
.custom-search-form input[type='text'] {
  padding: 10px;
  font-size: var(--fs-default);
  background: var(--l-gray);
  border: 2px solid var(--gray);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  max-width: 600px;
}
.custom-search-form input[type='text']:focus {
  border-color: var(--cl-main);
  outline: none;
}

.search-buttons-wrap {
  position: relative;
}
.custom-search-btn {
  position: relative;
  padding: 0.8em 3.5em 0.8em 2.5em;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--black);
  background: var(--white);
  border: var(--black) 2px solid;
  border-radius: var(--btn-br);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}
.custom-search-btn::after {
  content: '';
  display: inline-block;
  background: url(../images/common/icon_next.svg) center center no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.custom-search-btn:hover::after {
  transform: translateY(-50%) translateX(0.3em);
}

.custom-reset-btn {
  position: absolute;
  right: 0;
  color: var(--cl-main);
}
@media only screen and (max-width: 768px) {
  .search-buttons-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 2em;
  }
  .custom-reset-btn {
    position: relative;
    right: auto;
  }
}

@media only screen and (max-width: 599px) {
  .custom-search-form {
    flex-direction: column;
  }
  .custom-search-form input[type='text'] {
    width: 100%;
  }
  .custom-search-btn {
    width: 100%;
  }
  .child-area-group label {
    padding: 0.2em 3em 0.2em 1em;
  }
}

/* タブメニュー */
.tab-menu-wrapper {
  max-width: var(--contents-inner-width);
  margin-left: auto;
  margin-right: auto;
}
.tab-menu-list {
  --col-gap: 1.5em;
  grid-template-columns: repeat(3, 1fr);
}
.tab-menu-item,
.tab-menu-item-02 {
  position: relative;
  top: 2px;
  list-style: none;
  background: var(--l-gray);
  border: 3px solid var(--gray);
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  padding: 1em 2em;
  font-size: var(--fs-default);
  font-weight: bold;
  text-align: center;
  color: var(--d-gray);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tab-menu-item.is-active,
.tab-menu-item-02.is-active {
  background: var(--cl-main);
  border-color: var(--cl-main);
  color: var(--white);
  z-index: 1;
}
.tab-menu-item .img-wrap,
.tab-menu-item-02 .img-wrap {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.tab-menu-item .txt-wrap,
.tab-menu-item-02 .txt-wrap {
  margin-top: 1em;
  font-size: var(--fs-lead);
}
.tab-contents-wrapper,
.tab-contents-wrapper-02 {
  position: relative;
  padding-top: var(--wrap-pd-s);
}
.tab-contents-wrapper .tab-contents,
.tab-contents-wrapper-02 .tab-contents-02 {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s, height 0.3s;
}
.tab-contents-wrapper .tab-contents.is-active,
.tab-contents-wrapper-02 .tab-contents-02.is-active {
  opacity: 1;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .tab-menu-list {
    --col-gap: 1em;
  }
  .tab-menu-item {
    padding: 1em;
  }
  .tab-menu-item .txt-wrap {
    font-size: var(--fs-default);
  }
  .tab-menu-item .img-wrap {
    max-width: 60px;
  }
}
@media only screen and (max-width: 599px) {
  .tab-menu-list {
    --col-gap: 0;
  }
  .tab-menu-item {
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0.5em;
  }
  .tab-menu-item + .tab-menu-item {
    border-left: var(--gray) 2px solid;
  }
  .tab-menu-item .txt-wrap {
    margin-top: 0.5em;
  }
  .tab-menu-item .img-wrap {
    width: 40%;
    max-width: 40px;
  }
}

.parent-terms-list {
  row-gap: 1em;
  column-gap: 1em;
}
.parent-term-item {
  position: relative;
}
.parent-term-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: bold;
  color: var(--black);
  background: var(--white);
  border: var(--cl-main) 3px solid;
  border-radius: var(--block-br);
  padding: 0.8em 1em;
}
.parent-term-item input:checked + label,
.child-term-item input:checked + label {
  background: var(--cl-main);
  color: var(--white);
}
.parent-term-item input,
.child-term-item input {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.child-terms-list {
  row-gap: 1em;
  column-gap: 1em;
}
.child-term-item {
  position: relative;
  cursor: pointer;
}
.child-term-item label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  font-size: var(--fs-default);
  font-weight: bold;
  background: var(--white);
  border: var(--cl-main) 3px solid;
  border-radius: var(--block-br);
}

.child-terms-group {
  padding: 2em;
  background: var(--l-gray);
  border-radius: var(--box-br);
}
@media only screen and (max-width: 599px) {
  .parent-term-item label {
    padding: 0.5em 0.5em;
  }
  .child-terms-group {
    padding: 1em;
  }
  .child-term-item label {
    padding: 0.5em;
  }
}

/* バナー fixed-banner
---------------------------------------------------------------- */
.fixed-banner a {
  position: fixed;
  width: 200px;
  height: 200px;
  right: 3em;
  bottom: 3em;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .fixed-banner {
    display: none;
  }
}

/* 検索結果なし se-none
---------------------------------------------------------------- */
.page-404 h1 {
  max-width: 300px;
}

/* スライドアイテム slide
---------------------------------------------------------------- */
/* トップメインスライダー ----------------------------- */
.top-main-slider {
  width: 100%;
  height: 100%;
}
.top-main-slider .splide__track,
.top-main-slider .splide__slide {
  width: 100%;
  height: 100%;
}
.top-main-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.top-main-slider .splide__track:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
}
/* sliderオプション(内) */
.top-main-slider .splide-option-inside {
  position: absolute;
  bottom: 1em;
  right: 1.5em;
}
/* 再生・停止ボタン */
.top-main-slider .splide__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-main);
  width: 6em;
  border-radius: 100vh;
  border: transparent 2px solid;
  padding: 0.3em;
}
.top-main-slider .splide__toggle span {
  align-items: center;
  position: relative;
  color: var(--white);
  border-radius: 50%;
  gap: 0.5em;
}
.top-main-slider .splide__toggle span i {
  font-size: 1.4em;
}
.top-main-slider .splide__toggle__play,
.top-main-slider .splide__toggle.is-active .splide__toggle__pause {
  display: flex;
}

@media only screen and (max-width: 599px) {
  .top-main-slider {
    width: 100%;
    height: auto;
    aspect-ratio: 10/13;
  }
}

/* 矢印・ページネーション -------------------------- */
.splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
}
/* ページネーションの配置調整 */
.splide__pagination {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0;
}
.splide__pagination__page.is-active {
  background: var(--cl-accent-03);
}
/* 矢印の配置調整 */
.splide__arrow {
  position: relative;
  opacity: 1;
  top: auto;
  bottom: 0;
  transform: translateY(0);
  background: var(--white);
  width: 3em;
  height: 3em;
}
.splide__arrow--prev {
  left: auto;
  right: auto;
}
.splide__arrow--next {
  left: auto;
  right: auto;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url('../images/common/icon_slider_prev.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.splide__arrow--next::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url('../images/common/icon_slider_next.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ピックアップスライダー */
.pickup-slider {
  position: relative;
}
.pickup-slider .splide__track {
  padding-bottom: 2em;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 業種スライダー */
.category-slider {
  position: relative;
}
.category-slider .splide__track {
  padding-bottom: 2em;
}
.category-list.splide {
  display: block;
}
/* スライダーとグリッドの切り替え */
.category-slider .splide__track {
  width: 100%;
}
.category-slider .splide__list {
  display: flex !important;
}
.category-slider .splide__slide {
  list-style: none;
  /* padding: 0 5px; */
  /* display: flex; */
}
.category-link-col .category-slide-item {
  display: flex;
}
.category-slide-item a {
  display: block;
  color: var(--black);
  background: var(--white);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}
.category-slide-item .txt-wrap {
  padding: 1em;
}
.category-slide-item .card-item-ttl {
  font-weight: bold;
  font-size: var(--fs-ttl-xs);
}
.category-slide-item a .img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.category-slide-item a .img-wrap img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* メンバーの声スライダー */
.voice-slider .splide__track {
  padding-bottom: 2em;
}
.voice-slider .card-item {
  background: var(--white);
  border: var(--black) 3px solid;
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
  padding: var(--box-pd);
  margin-top: 0 !important;
}
.voice-slider .card-item .img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  max-width: 400px;
}
.voice-slider .card-item .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.voice-slider .card-item-ttl {
  font-size: var(--fs-ttl-xs);
}

@media only screen and (max-width: 599px) {
  .voice-slider .card-item {
    padding: 1em 0.5em;
  }
}

/* editor-style
---------------------------------------------------------------- */
.block-btn-01 .wp-block-button a,
.block-btn-01 .wp-element-button {
  display: inline-block;
  font-size: var(--fs-lead);
  background: var(--white);
  color: var(--black);
  border: var(--black) 2px solid;
  border-radius: var(--btn-br);
  box-shadow: var(--shadow);
  min-width: 250px !important;
  transition: transform 0.3s ease-in-out;
  margin-top: 1.5em;
}

.block-btn-02 .wp-block-button a,
.block-btn-02 .wp-element-button {
  display: inline-block;
  font-size: var(--fs-lead);
  background: var(--cl-main);
  color: var(--white);
  border-radius: var(--btn-br);
  box-shadow: var(--shadow);
  min-width: 250px !important;
  transition: transform 0.3s ease-in-out;
  margin-top: 1.5em;
}
