@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/*==================================================
　breakpoint
===================================================*/
/*==================================================
　PC・SP切り替え
===================================================*/
@media screen and (min-width: 766px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*==================================================
　カラー指定
===================================================*/
/*==================================================
　大枠・内枠・全幅表示
===================================================*/
/* 固定ページ_枠
------------------------------------------ */
.page .wrap {
  width: 100%;
  max-width: 1160px;
}
.page .content {
  margin-top: 0;
}
.page .main {
  padding: 0 20px;
  border: none;
}
@media screen and (min-width: 767px) {
  .page .main {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1024px) {
  .page .main {
    padding: 0 60px;
  }
}
.contentWrap {
  padding: 3em 0;
}
@media screen and (min-width: 1024px) {
  .contentWrap {
    padding: 5em 0;
  }
}
.contentWrap .blockWrap:not(:last-child) {
  margin-bottom: 5em;
}
.contentWrap .areaWrap:not(:last-child) {
  margin-bottom: 4em;
}
/* inner
------------------------------------------ */
[class^="inner_"] {
  margin: 0 auto;
}
.inner_xl {
  max-width: 1280px;
}
.inner_lg {
  max-width: 1100px;
}
.inner_md {
  max-width: 880px;
}
.inner_sm {
  max-width: 680px;
}
/* 全幅指定
------------------------------------------ */
.wideBg {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: calc(50vw - 50%) !important;
  padding-right: calc(50vw - 50%) !important;
  vertical-align: middle;
}
/*=================================================
　mixin
===================================================*/
/* z-index管理（マップ管理）
------------------------------------------ */
.top_mvCopy {
  z-index: 10;
}
.scrollButtonWrap {
  z-index: 30;
}
.pc_bnrRecruit {
  z-index: 40;
}
.openingMask {
  z-index: 1000;
}
.openingLoading {
  z-index: 1100;
}
.hamburgerBtn {
  z-index: 300;
}
.headerLogo {
  z-index: 100;
}
.sp_navMenu {
  z-index: 200;
}
.entrybtn {
  z-index: 700;
}
.header {
  z-index: 1300;
}
.gnavWrap {
  z-index: 400;
}
.navModal {
  z-index: 500;
}
.opening {
  z-index: 600;
}
.decoText {
  z-index: 20;
}
.fixdeBtn {
  z-index: 1200;
}
/* mixin_ポジションセンター寄せ
------------------------------------------ */
/* mixin_タイトル共通
------------------------------------------ */
/* mixin_レイアウト
------------------------------------------ */
/* mixin_余白指定
------------------------------------------ */
.mTop_5 {
  margin-top: 5em;
}
.mTop_4 {
  margin-top: 4em;
}
.mTop_3 {
  margin-top: 3em;
}
.mTop_2 {
  margin-top: 2em;
}
.mTop_1 {
  margin-top: 1em;
}
.mTop_0 {
  margin-top: 0;
}
.mBtm_5 {
  margin-bottom: 5em;
}
.mBtm_4 {
  margin-bottom: 4em;
}
.mBtm_3 {
  margin-bottom: 3em;
}
.mBtm_2 {
  margin-bottom: 2em;
}
.mBtm_1 {
  margin-bottom: 1em;
}
.mBtm_0 {
  margin-bottom: 0;
}
.pTop_5 {
  padding-top: 5em;
}
.pTop_4 {
  padding-top: 4em;
}
.pTop_3 {
  padding-top: 3em;
}
.pTop_2 {
  padding-top: 2em;
}
.pTop_1 {
  padding-top: 1em;
}
.pTop_0 {
  padding-top: 0;
}
.pBtm_5 {
  padding-bottom: 5em;
}
.pBtm_4 {
  padding-bottom: 4em;
}
.pBtm_3 {
  padding-bottom: 3em;
}
.pBtm_2 {
  padding-bottom: 2em;
}
.pBtm_1 {
  padding-bottom: 1em;
}
.pBtm_0 {
  padding-bottom: 0;
}
/*=================================================
　エフェクト
===================================================*/
/* 下から上に移動しながらフェードイン
------------------------------------------ */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.fadeInUp {
  opacity: 0;
  transform: translateY(10%);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から右へテキストが出現
------------------------------------------ */
.effect span {
  position: relative;
  display: inline-block;
  color: #FFF;
  background: linear-gradient(45deg, #175ae3 40%, #003298 100%);
  padding: 4px 10px;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .effect span {
    padding: 6px 20px;
  }
}
.effect span:last-child {
  margin-bottom: 0;
}
.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
}
.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #003298 50%, #175ae3 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.effect span, .effect span::after {
  animation-delay: var(--animation-delay, 2s);
  /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1);
  /* 再生される回数 */
  animation-duration: var(--duration, 800ms);
  /* 完了するまでの所要時間 */
  animation-fill-mode: both;
  /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  /* タイミングの指定 */
}
@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.effect {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.scroll-in {
  opacity: 1;
}
/*==================================================
　　ベース・打ち消し
===================================================*/
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
section:target {
  scroll-margin-top: 80px;
  /* 固定ヘッダーの高さなどに合わせて調整 */
}
body {
  position: relative;
}
.main {
  background-color: transparent;
}
address {
  font-style: normal;
  line-height: inherit;
}
dl {
  margin-bottom: 0;
}
dl dd {
  margin-left: 0 !important;
}
a {
  background-color: transparent;
  text-decoration: none !important;
  transition: 0.2s ease;
}
a:hover {
  opacity: 0.6;
}
img {
  display: block;
}
small {
  font-size: 80%;
}
table tr, table th, table td {
  background-color: transparent !important;
}
.page ul, .page ol {
  padding-left: 0;
  list-style: none;
}
.page ul li, .page ol li {
  margin: 0;
  padding: 0;
}
/* ページ上部へ戻るボタン
------------------------------------------ */
.go-to-top {
  display: none !important;
}
.scrollButtonWrap {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 50px;
}
@media screen and (min-width: 767px) {
  .scrollButtonWrap {
    right: 30px;
  }
}
/*==================================================
　レイアウト
===================================================*/
/* flex
------------------------------------------ */
.flex {
  display: block;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 767px) {
  .flex.reFlex {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 767px) {
  .flex .wid35 {
    width: 35%;
  }
  .flex .wid40 {
    width: 40%;
  }
  .flex .wid55 {
    width: 55%;
  }
  .flex .wid62 {
    width: 62%;
  }
}
/* grid
------------------------------------------ */
.grid2_1 {
  display: grid;
  gap: 2em;
}
.grid2_1.sp_gap1 {
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .grid2_1.sp_gap1 {
    gap: 2em;
  }
}
@media screen and (min-width: 767px) {
  .grid2_1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
}
.grid30 {
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 1024px) {
  .grid30 {
    grid-template-columns: 30% 1fr;
    gap: 3em;
  }
}
.grid40 {
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 1024px) {
  .grid40 {
    grid-template-columns: 40% 1fr;
    gap: 3em;
  }
}
.grid3_1 {
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 767px) {
  .grid3_1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .grid3_1 {
    gap: 3em;
  }
}
.grid3_2 {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 767px) {
  .grid3_2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
.grid4_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .grid4_2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
  }
}
.order_1 {
  order: 1;
}
@media screen and (min-width: 767px) {
  .order_1 {
    order: 2;
  }
}
.order_2 {
  order: 2;
}
@media screen and (min-width: 767px) {
  .order_2 {
    order: 1;
  }
}
/*=================================================
　 タイトル
===================================================*/
/* 固定ページ_タイトル類
------------------------------------------ */
.entry-content > * {
  margin-bottom: 0;
}
.page .article {
  margin-bottom: 0 !important;
}
.page h1.entry-title {
  display: none;
}
.page .article h2, .page .article h3, .page .article h4 {
  padding: 0;
  margin-bottom: 0;
}
.page .article h2 {
  background-color: transparent !important;
}
.page .article h3 {
  border: none;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.page .article h4 {
  text-align: inherit;
  border: none;
  letter-spacing: 0.1em;
}
.top_secTtlBox {
  position: relative;
  margin-bottom: 3em;
}
.top_secTtlBox .en_ttl {
  font-size: calc(clamp(3rem, 1.364rem + 8.18vw, 7.5rem));
  font-weight: 700;
  background: linear-gradient(0deg, #175AE3 0%, #003298 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "ゴシックMB101 B";
}
.top_secTtlBox .ja_ttl span {
  position: relative;
  font-size: 0.8em;
  padding-left: 4em;
  font-family: "ゴシックMB101 B";
}
@media screen and (min-width: 1024px) {
  .top_secTtlBox .ja_ttl span {
    font-size: 1em;
  }
}
.top_secTtlBox .ja_ttl span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  display: inline-block;
  width: 3em;
  border-top: 1px solid #0E40A5;
  vertical-align: middle;
  margin-right: 1em;
  padding-bottom: 4px;
}
.msTtlBox .en_ttl {
  background: linear-gradient(0deg, #175AE3 0%, #003298 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6em;
  line-height: 1.6;
  font-weight: 700;
  font-family: "ゴシックMB101 B";
}
.msTtlBox .ja_ttl {
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
}
.rec_secTtlBox {
  margin-bottom: 2em;
}
@media screen and (min-width: 767px) {
  .rec_secTtlBox {
    margin-bottom: 3em;
  }
}
.rec_secTtlBox .en_ttl {
  font-size: calc(clamp(2rem, 0.864rem + 5.68vw, 5.125rem));
  color: #193265;
  font-family: "ゴシックMB101 B";
}
.rec_secTtlBox .ja_ttl {
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
  color: #0098BD;
}
.rec_subTtl {
  color: #193265;
}
.rec_leadText {
  color: #193265;
  font-size: calc(clamp(1.2rem, 0.909rem + 1.45vw, 2rem));
  font-weight: 700;
  margin-bottom: 1em;
  font-family: "ゴシックMB101 B";
}
.rec_msTtlBox {
  font-family: "ゴシックMB101 B";
  text-align: center;
  margin-bottom: 2.6em;
}
@media screen and (min-width: 767px) {
  .rec_msTtlBox {
    margin-bottom: 4em;
  }
}
.rec_msTtlBox .en_ttl {
  color: #0E40A5;
  font-size: 2em;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 767px) {
  .rec_msTtlBox .en_ttl {
    font-size: 2.6em;
  }
}
.rec_msTtlBox .ja_ttl {
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
}
.ulSubTtl {
  color: #193265;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em !important;
  padding-bottom: 0.5em !important;
  margin-bottom: 1.2em !important;
  border-bottom: 1px solid #0098BD !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .ulSubTtl {
    font-size: 1.8em !important;
    margin-bottom: 1.4em !important;
  }
}
.ulSubTtl span {
  color: #0098BD;
  font-size: 0.6em;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .ulSubTtl span {
    margin-left: 1em;
  }
}
.recruit_careersWrap .ulSubTtl {
  color: #193265;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em !important;
  padding-bottom: 0.5em !important;
  margin-bottom: 1.2em !important;
  border-bottom: 1px solid #193265 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .recruit_careersWrap .ulSubTtl {
    font-size: 1.8em !important;
    margin-bottom: 1.4em !important;
  }
}
.recruit_careersWrap .ulSubTtl span {
  color: #193265;
  font-size: 0.6em;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .recruit_careersWrap .ulSubTtl span {
    margin-left: 1em;
  }
}
.recruit_careersWrap .wlSubTtl {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 1em !important;
  color: #193265;
}
.recruit_careersWrap .wlSubTtl::before, .recruit_careersWrap .wlSubTtl::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #193265;
}
.recruit_careersWrap .wlSubTtl::before {
  margin-right: 1.2em;
}
.recruit_careersWrap .wlSubTtl::after {
  margin-left: 1.2em;
}
.rec_secTtl {
  position: relative;
  font-family: "ゴシックMB101 B";
  color: #193265;
  text-align: center;
  font-size: 1.4em !important;
  letter-spacing: 0.1em;
  margin-bottom: 2em !important;
}
@media screen and (min-width: 767px) {
  .rec_secTtl {
    font-size: 1.806em !important;
  }
}
.rec_secTtl::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  border-radius: 30px;
  background-color: #0098BD;
  margin: 16px auto 0;
}
.jobDescriptionArea .ulSubTtl {
  font-size: 1.2em !important;
}
@media screen and (min-width: 767px) {
  .jobDescriptionArea .ulSubTtl {
    font-size: 1.4em !important;
  }
}
.whiteTtlBox {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}
.whiteTtlBox .en_ttl {
  font-size: calc(clamp(3.2rem, 2.182rem + 5.09vw, 6rem));
  color: #FFF;
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
}
.whiteTtlBox .ja_ttl {
  white-space: nowrap;
  font-size: calc(clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem));
  color: #0E40A5;
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.lgTtl {
  font-family: "ゴシックMB101 B";
  color: #193265;
  background-color: transparent;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .lgTtl {
    font-size: 1.4em;
  }
}
.lower_lgTtl {
  font-family: "ゴシックMB101 B";
  color: #0E40A5;
  background-color: #F4F5F6;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 2em;
  padding: 1em;
  margin-bottom: 2em;
}
@media screen and (min-width: 767px) {
  .lower_lgTtl {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 767px) {
  .lower_lgTtl {
    padding: 1.4em 1em;
  }
}
.smTtl {
  font-size: 1em !important;
  margin-bottom: 0.5em !important;
  color: #193265;
}
@media screen and (min-width: 767px) {
  .smTtl {
    font-size: 1.1em !important;
  }
}
[class^="subTtl"] {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  margin-bottom: 1em !important;
  font-size: 1em;
  line-height: 1.6;
}
[class^="subTtl"].subTtl_01 {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  margin-bottom: 1em !important;
  font-size: 1.2em;
  line-height: 1.6;
}
[class^="subTtl"].subTtl_02 {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  margin-bottom: 1em !important;
  font-size: 1.4em;
  line-height: 1.6;
  padding: 0 0 0 1em;
  border-left: 5px solid #0E40A5;
}
@media screen and (min-width: 767px) {
  [class^="subTtl"].subTtl_02 {
    font-size: 1.6em;
  }
}
[class^="subTtl"].subTtl_03 {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  margin-bottom: 1em !important;
  font-size: 1.8em;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  [class^="subTtl"].subTtl_03 {
    font-size: 2.2em !important;
  }
}
.lower_introWrap .summaryArea .txtlist .subTtl_01, .lower_businessDetails.iot .txtlist .subTtl_01, .lower_businessDetails.instrumentation .subTtl_01 {
  margin-bottom: 0.5em !important;
}
.recruit_partnerUniversitiesWrap .subTtl_02, .recruit_recruitmentProcessWrap .subTtl_02 {
  color: #193265;
  font-family: "ゴシックMB101 B";
  margin-bottom: 1em !important;
  font-size: 1.4em;
  line-height: 1.6;
  margin-bottom: 0.5em !important;
}
/* 全ページ共通_タイトル
------------------------------------------ */
.leadText {
  color: #0E40A5;
  font-size: calc(clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem));
  font-weight: 700;
  margin-bottom: 1em !important;
  font-family: "ゴシックMB101 B";
}
@media screen and (max-width: 767px) {
  .leadText {
    width: 100%;
    overflow: hidden;
    font-size: 1.2em;
  }
  .leadText.effect span {
    padding: 4px 10px;
    white-space: normal;
    display: inline-block;
  }
}
.page .article h4.itemTtl {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8em;
  line-height: 1;
  font-size: 1.2em;
  color: #193265;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .page .article h4.itemTtl {
    font-size: 1.4em;
  }
}
.page .article h4.itemTtl::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  background-color: #0098BD;
  transform: rotate(45deg);
  margin: 6px auto;
}
.boxTtl {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  color: #193265;
}
@media screen and (min-width: 767px) {
  .boxTtl {
    font-size: 1.4em;
  }
}
.txtRight {
  text-align: right;
}
.txtLeft {
  text-align: left;
}
.txtCenter {
  text-align: center;
}
.boldTxt {
  font-weight: 700;
}
.textBox p {
  text-align: justify;
}
.textBox p:last-child {
  margin-bottom: 0;
}
/*=================================================
　ステップバー
===================================================*/
.stepBarWrap {
  background-color: rgba(177, 227, 239, 0.18);
  padding: 1.2em;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 3em;
}
@media screen and (min-width: 767px) {
  .stepBarWrap {
    width: 100%;
    margin: 0 auto 3em;
    padding: 3em 1.2em;
  }
}
.stepBarWrap .stepBarItem {
  margin-bottom: 1.6em;
  position: relative;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem {
    margin: 2em;
  }
}
.stepBarWrap .stepBarItem .stepTitle {
  display: inline-flex;
  align-items: center;
  font-family: "ゴシックMB101 B";
  color: #193265;
  letter-spacing: 0.1em;
}
.stepBarWrap .stepBarItem .stepTitle .stepCircle {
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  background-color: #0098BD;
  color: #FFF;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem .stepTitle .stepCircle {
    width: 3.3em;
    height: 3.3em;
  }
}
.stepBarWrap .stepBarItem .stepTitle .stepCircle span {
  display: block;
  font-size: 1.2em;
  position: relative;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem .stepTitle .stepCircle span {
    font-size: 1.4em;
  }
}
.stepBarWrap .stepBarItem .stepTitle .title {
  margin: 0.5em 0.5em 0.5em 0.8em;
  font-weight: bold;
  font-size: 1.2em;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem .stepTitle .title {
    margin-left: 1.3em;
  }
}
.stepBarWrap .stepBarItem .stepTexT {
  padding-left: 3.5em;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem .stepTexT {
    padding-left: 5.2em;
  }
}
.stepBarWrap .stepBarItem .stepTexT p {
  font-size: 0.9em;
}
.stepBarWrap .stepBarItem::before {
  content: "";
  width: 3px;
  height: calc(100% + 1em);
  background-color: #0098BD;
  position: absolute;
  top: 2em;
  left: 1.2em;
  z-index: -1;
}
@media screen and (min-width: 767px) {
  .stepBarWrap .stepBarItem::before {
    left: 1.6em;
  }
}
.stepBarWrap .stepBarItem:last-of-type::before {
  display: none;
}
/* top_オーバーレイ
------------------------------------------ */
@media screen and (min-width: 767px) {
  .overlay.type01 {
    position: relative;
    margin-bottom: 0;
  }
  .overlay.type01::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    display: grid;
    place-items: center;
    background-image: linear-gradient(0deg, rgba(23, 90, 227, 0.1), rgba(0, 31, 152, 0.1));
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
  .overlay.type02 {
    position: relative;
    margin-bottom: 0;
  }
  .overlay.type02::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    z-index: -1;
    height: calc(100% + 300px);
    display: grid;
    place-items: center;
    background-image: linear-gradient(0deg, rgba(164, 232, 248, 0.29), rgba(0, 152, 189, 0.3));
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
  .overlay.type03 {
    position: relative;
    margin-bottom: 0;
  }
  .overlay.type03::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    z-index: -1;
    height: calc(100% + 300px);
    display: grid;
    place-items: center;
    background-image: linear-gradient(0deg, rgba(0, 152, 189, 0.2), rgba(164, 232, 248, 0.2));
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
  .overlay.type04 {
    position: relative;
    margin-bottom: 0;
  }
  .overlay.type04::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    display: grid;
    place-items: center;
    background-image: linear-gradient(0deg, rgba(164, 232, 248, 0.2), rgba(0, 152, 189, 0.2));
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
}
.top_serviceWrap {
  position: relative;
}
.top_serviceWrap::before {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F4F5F6;
}
.top_recruitWrap {
  position: relative;
}
.top_recruitWrap::before {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F4F5F6;
}
.recruit_introWrap, .recruit_messageWrap {
  position: relative;
}
.recruit_introWrap::before, .recruit_messageWrap::before {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F4F5F6;
}
section {
  scroll-margin-top: 70px;
}
/*=================================================
　loading/op-animation
===================================================*/
/* loading
------------------------------------------ */
/* 初期状態で非表示 */
.openingLoading {
  opacity: 0;
}
/* 初期状態で幅を0%に設定 */
.progress-fill {
  width: 0%;
}
/* 初期状態で非表示 */
.loading-text {
  opacity: 0;
}
/* home 以外では openingMask を非表示に */
body:not(.home) .openingMask {
  display: none;
}
/* op-animation
------------------------------------------ */
.openingWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.openingWrap .opening {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.openingWrap .opening .openingMask {
  will-change: transform, opacity;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom center;
  /* 下から上に開く */
  background-color: #010101;
}
.openingWrap .opening .openingLoading {
  position: absolute;
  width: 100%;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.openingWrap .opening .openingLoading .loadingLogo {
  width: 40%;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .openingWrap .opening .openingLoading .loadingLogo {
    width: 30%;
    max-width: 200px;
  }
}
/*=================================================
　PC heade
===================================================*/
/* 既存ヘッダー非表示
------------------------------------------ */
body {
  margin-top: 0;
}
.header-container, .sp-header-menu-buttons {
  display: none;
}
.mobile-header-menu-buttons {
  display: none;
}
/* PC header_base
------------------------------------------ */
.header {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  height: auto;
  background-color: transparent;
}
.header .headerWrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 70px;
}
@media screen and (min-width: 1024px) {
  .header .headerWrap {
    min-height: 90px;
  }
}
.header .headerWrap .headerLogo {
  height: auto;
  line-height: 0;
  transition: 0.3s ease-in-out;
  position: absolute;
  left: 16px;
  max-width: 120px;
}
@media screen and (min-width: 1024px) {
  .header .headerWrap .headerLogo {
    max-width: 150px;
  }
}
/* PC header_gnavi
------------------------------------------ */
.gnavWrap {
  display: none;
  height: 100%;
  position: absolute;
  right: 16px;
  top: 0;
  padding-left: 160px;
}
@media screen and (min-width: 1024px) {
  .gnavWrap {
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
.gnavWrap ul.gnavList {
  list-style: none;
  padding-left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.gnavWrap ul.gnavList li.gnavItem .gnavItemLink {
  opacity: 1;
  color: #FFF;
  cursor: pointer;
  padding: 0 16px;
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  transition: 0.2s ease;
}
.gnavWrap ul.gnavList li.gnavItem .gnavItemLink::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #0E40A5 !important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s ease;
}
.gnavWrap ul.gnavList li.gnavItem .gnavItemLink:hover {
  color: #0E40A5 !important;
}
.gnavWrap ul.gnavList li.gnavItem .gnavItemLink:hover::after {
  transform: translateX(-50%) scale(1, 1);
  transform-origin: left top;
}
.menuLang {
  position: relative;
  margin-right: 1.8em;
  margin-left: 1em;
  padding-left: 1.8em;
}
.menuLang:before {
  content: "";
  position: absolute;
  left: 0%;
  top: 20%;
  background: #FFF;
  width: 1px;
  height: 50%;
}
.gtranslate_wrapper {
  display: flex;
  justify-content: center;
  padding: 2em;
  gap: 15px;
  margin-top: 0 !important;
}
@media screen and (min-width: 1024px) {
  .gtranslate_wrapper {
    padding: 0;
    margin-top: 15px;
  }
}
.gtranslate_wrapper a.glink.gt-current-lang {
  font-weight: normal;
}
.gtranslate_wrapper a.glink {
  color: #FFF;
}
.gtranslate_wrapper a.glink span {
  margin-right: 0 !important;
  line-height: 2;
}
.gtranslate_wrapper a.glink img {
  display: none !important;
}
/*  PC header_contactBtn/entryBtn
------------------------------------------ */
.menuBtnWrap {
  list-style: none;
  display: flex;
  justify-content: end;
  padding-left: 0;
}
.menuBtnWrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 0.9em;
  width: 160px;
  height: 60px;
  color: #FFF !important;
  background-image: linear-gradient(45deg, #003298 60%, #175ae3);
}
.menuBtnWrap .menuBtn_entry a {
  background-image: linear-gradient(45deg, #0098bd 60%, #6ecee5);
}
/* PC header_subNav
------------------------------------------ */
.subNav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  transition: 0.2s ease;
  background-color: #F7F7F8;
}
.subNav .subNavInner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  width: 1200px;
  margin: 0 auto;
}
.subNav .subNavInner .subNavImg {
  max-width: 480px;
  width: 38%;
  margin-right: 60px;
}
.subNav .subNavInner .subNavDetail {
  max-width: 500px;
  width: 60%;
}
.subNav .subNavInner .subNavDetail ul.subNavDetailList {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.subNav .subNavInner .subNavDetail ul.subNavDetailList li.subNavDetailItem {
  width: 48%;
  position: relative;
}
.subNav .subNavInner .subNavDetail ul.subNavDetailList li.subNavDetailItem:before {
  content: "＞";
  background: linear-gradient(0deg, #175AE3 0%, #003298 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.7em;
  font-weight: 700;
}
.subNav .subNavInner .subNavDetail ul.subNavDetailList li.subNavDetailItem a {
  color: #333;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 0 4px 8px;
}
.subNav .subNavInner .subNavDetail ul.subNavDetailList li.subNavDetailItem a:hover {
  opacity: 1;
  color: #0E40A5;
}
.gnavItem:hover .subNav {
  visibility: visible;
  opacity: 1;
}
/*=================================================
　SP header
===================================================*/
/* hamburgerBtn_base
------------------------------------------ */
.hamburgerBtn {
  position: absolute;
  height: 50px;
  width: 50px;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  border: none;
  background: linear-gradient(45deg, #175ae3 40%, #003298 100%);
}
.hamburgerBtn span {
  display: block;
  background: #FFF;
  width: 24px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s;
}
.hamburgerBtn span::before, .hamburgerBtn span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: inherit;
  background-color: inherit;
}
.hamburgerBtn span::before {
  transform: translate3d(0, -8px, 0);
}
.hamburgerBtn span::after {
  transform: translate3d(0, 8px, 0);
}
@media screen and (min-width: 1024px) {
  .hamburgerBtn {
    display: none;
  }
}
/* hamburgerBtn_展開時
------------------------------------------ */
.is-drawerActive .hamburgerBtn {
  background: #FFF;
}
.is-drawerActive .hamburgerBtn span {
  background-color: transparent;
}
.is-drawerActive .hamburgerBtn span::before, .is-drawerActive .hamburgerBtn span::after {
  transform: translate3d(0, 0, 0);
  background: linear-gradient(45deg, #175ae3 40%, #003298 100%);
}
.is-drawerActive .hamburgerBtn span::before {
  transform: rotate(-45deg);
}
.is-drawerActive .hamburgerBtn span::after {
  transform: rotate(45deg);
}
/* sp menu_base
------------------------------------------ */
.sp_navMenu {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--svh, 1vh) * 100);
  pointer-events: none;
  overflow-y: scroll;
  padding: 50px 20px 0;
  background: linear-gradient(45deg, #175ae3 40%, #003298 100%);
}
@media screen and (min-width: 1024px) {
  .sp_navMenu {
    display: none;
  }
}
.sp_navMenu ul {
  padding-left: 0;
  list-style: none;
}
.sp_navMenu ul.sp_navList li.sp_navItem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
}
.sp_navMenu ul.sp_navList li.sp_navItem a {
  color: #FFF;
  display: block;
}
.sp_navMenu ul.sp_navList li.sp_navItem ul.subMenu {
  margin-left: 1em;
  padding-top: 10px;
  transition: max-height 0.2s ease;
}
.sp_navMenu ul.sp_navList li.sp_navItem ul.subMenu a {
  position: relative;
  display: block;
  padding: 8px 0 8px 25px;
  font-size: 0.9em;
}
.sp_navMenu ul.sp_navList li.sp_navItem ul.subMenu a::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sp_navMenu .gtranslate_wrapper a.glink {
  color: #FFF !important;
}
/* sp menu_展開時
------------------------------------------ */
.is-drawerActive .sp_navMenu {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  pointer-events: all;
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion {
  color: #FFF;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion .symbol {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion .symbol span {
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.2s ease;
  background: #FFF;
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion .symbol span:nth-of-type(1) {
  transform: translateX(15px);
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion .symbol span:nth-of-type(2) {
  transform: rotate(-90deg);
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordion.open .symbol span:nth-of-type(2) {
  transform: rotate(0deg);
}
.is-drawerActive .sp_navMenu .sp_navList .sp_navItem .accordionText {
  display: none;
}
/* スクロールでヘッダーレイアウト変更
------------------------------------------ */
.header .logoImg.-before {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.header .logoImg.-after {
  display: none;
}
.header.scrolled .headerWrap, .header.transparent-hover .headerWrap {
  transition: 0.3s ease-in-out;
  background-color: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header.scrolled .gnavWrap .gnavList .gnavItem .gnavItemLink, .header.transparent-hover .gnavWrap .gnavList .gnavItem .gnavItemLink {
  color: #333;
}
.header.scrolled .gnavWrap .gnavList .gnavItem .gnavItemLink::after, .header.transparent-hover .gnavWrap .gnavList .gnavItem .gnavItemLink::after {
  background: #333;
}
.header.scrolled .gnavItemLink, .header.transparent-hover .gnavItemLink {
  color: #333;
}
.header.scrolled .gnavItemLink a, .header.transparent-hover .gnavItemLink a {
  color: #333;
}
.header.scrolled .gnavItemLink::after, .header.transparent-hover .gnavItemLink::after {
  background: #333;
}
.header.scrolled .gtranslate_wrapper a.glink, .header.transparent-hover .gtranslate_wrapper a.glink {
  color: #333;
}
.header.scrolled .menuLang::before, .header.transparent-hover .menuLang::before {
  background: #333;
}
.header.scrolled .logoImg.-before {
  display: none;
}
.header.scrolled .logoImg.-after {
  display: block;
}
.header.transparent-hover .logoImg.-before {
  display: none;
}
.header.transparent-hover .logoImg.-after {
  display: block;
}
[lang="en"] .header .headerWrap .headerLogo {
  max-width: 120px;
}
[lang="en"] .gnavWrap ul.gnavList {
  font-size: 0.8em;
}
[lang="en"] .menuLang {
  margin-right: 1.4em;
  margin-left: 0.5em;
  padding-left: 1.4em;
}
/*=================================================
　top_mv
===================================================*/
.top_mvWrap, .top_mvVideo, .opening {
  height: calc(var(--svh, 1svh) * 100);
}
.top_mvWrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top_mvWrap .top_mvCopy {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 90%;
  clip-path: inset(100% 0 0 0);
  /* 初期状態で非表示 */
  opacity: 0;
  /* 初期状態で非表示 */
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .top_mvWrap .top_mvCopy {
    left: 10%;
  }
}
.top_mvWrap .top_mvCopy > div {
  font-family: "リュウミンR-KL", serif;
  font-size: clamp(48px, 8.8vw, 88px);
  line-height: 1.6;
  margin-bottom: 20px;
}
.top_mvWrap .top_mvCopy > p {
  font-family: "ゴシックMB101 B";
  letter-spacing: 0.2em;
  font-size: clamp(10px, 2vw, 14px);
  display: inline-block;
  border-bottom: 1px solid #FFF;
  padding-bottom: 20px;
}
.top_mvWrap .top_mvVideo {
  position: relative;
}
.top_mvWrap .top_mvVideo video {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.top_mvWrap .top_mvVideo::after {
  content: "";
  background: rgba(14, 64, 165, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top_mvWrap .fallbackImage {
  width: 100%;
  height: 100%;
}
.top_mvWrap .fallbackImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_mvCopy.active {
  clip-path: inset(0% 0 0 0);
  /* 表示 */
  opacity: 1;
  visibility: visible;
}
.translated-ltr .top_mvCopy {
  left: 5%;
  width: 80%;
  max-width: 1100px;
  overflow-wrap: break-word;
  /* 単語単位で折り返し */
}
/*=================================================
　 リクルートバナー
===================================================*/
.pc_bnrRecruit {
  display: none;
}
@media screen and (min-width: 767px) {
  .pc_bnrRecruit {
    display: block;
    width: 260px;
    line-height: 0;
    background-color: #FFF;
    border-radius: 5px;
    position: absolute;
    cursor: pointer;
    right: 5%;
    bottom: 10%;
    transition: all 0.3s;
  }
  .pc_bnrRecruit img {
    border-radius: 5px;
  }
  .pc_bnrRecruit:hover {
    transform: translateY(-8px);
  }
  .pc_bnrRecruit a:hover {
    opacity: 0.7;
  }
}
.sp_bnrRecruit {
  background-color: #FFF;
  line-height: 0;
}
.sp_bnrRecruit img {
  box-shadow: 3px 3px 8px 0px #e0e0e0;
}
@media screen and (min-width: 767px) {
  .sp_bnrRecruit {
    display: none;
  }
}
.sp_navMenu a {
  color: #FFF;
}
.sp_navMenu .bnrRecruit {
  max-width: 400px;
  margin: 0 auto 2em;
  line-height: 0;
}
.sp_navMenu .bnrRecruit img {
  box-shadow: none;
}
.header__nav_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
@media screen and (min-width: 767px) {
  .header__nav_contact {
    gap: 3em;
    justify-content: center;
  }
}
.header__nav_contact p {
  color: #FFF;
  font-size: 0.8em;
}
.conceptSliderWrap {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.loopSlide {
  display: flex;
  width: 380%;
}
@media screen and (min-width: 767px) {
  .loopSlide {
    width: 180%;
  }
}
.loopSlide img {
  width: auto;
  height: 100%;
}
.loopSlide img:first-child {
  animation: slide1 80s -40s linear infinite;
}
.loopSlide img:last-child {
  animation: slide2 80s linear infinite;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* tab共通
------------------------------------------ */
.area {
  display: none;
  opacity: 0;
  padding: 1em 0 2em;
}
.area.is-active {
  display: block;
  opacity: 1;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.postCard {
  overflow: hidden;
}
.postCard .swiper {
  overflow: visible;
}
.postCard .swiper .swiper-slide {
  width: 290px;
}
@media screen and (min-width: 767px) {
  .postCard .swiper .swiper-slide {
    width: 320px;
  }
}
@media screen and (min-width: 1024px) {
  .postCard .swiper .swiper-slide {
    width: 400px;
  }
}
.postCard .slide-media {
  margin-bottom: 0.5em;
  position: relative;
}
.postCard .slide-media span.cardTag {
  position: absolute;
  top: 48px;
  left: 20px;
  min-width: 110px;
  text-align: center;
  padding: 0.3em 1em;
  font-size: 0.7em;
  background-color: #0E40A5;
  color: #FFF;
  display: inline-block;
}
.postCard .slide-content {
  color: #333;
}
.postCard .slide-content .slide-date {
  font-size: 0.8em;
  color: #8D8D8D;
}
.postCard .slide-content .slide-title {
  font-size: 0.9em;
}
@media screen and (min-width: 767px) {
  .postCard .slide-content .slide-title {
    font-size: 1em;
  }
}
.top_worksWrap #btnTabLink, .top_recruitWrap #btnTabLink, .recruit_interviewWrap #btnTabLink {
  margin-top: 2em;
  text-align: right;
}
.top_worksWrap, .recruit_learnMoreWrap, .interviewSlider {
  position: relative;
}
.top_worksWrap .swiper-controller, .recruit_learnMoreWrap .swiper-controller, .interviewSlider .swiper-controller {
  margin-top: 4em;
}
/*=================================================
　ボタン
===================================================*/
.customBtn {
  display: inline-flex;
  align-items: center;
  font-family: "ゴシックMB101 B";
  color: #0E40A5;
  font-size: 0.9em;
}
.customBtn:hover {
  color: #0a2e76;
}
.customBtn .circleBtn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #0E40A5;
  border-radius: 50%;
  margin-left: 1em;
}
@media screen and (min-width: 767px) {
  .customBtn .circleBtn {
    width: 45px;
    height: 45px;
  }
}
.customBtn .circleBtn::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
@media screen and (min-width: 767px) {
  .customBtn .circleBtn::after {
    top: 18px;
    width: 23px;
  }
}
.top_recruitWrap .linkBoxWrap .circleBtn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #0098BD;
  border-radius: 50%;
  margin-left: 1em;
  margin-left: 0;
  margin-right: 1em;
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .linkBoxWrap .circleBtn {
    width: 45px;
    height: 45px;
  }
}
.top_recruitWrap .linkBoxWrap .circleBtn::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .linkBoxWrap .circleBtn::after {
    top: 18px;
    width: 23px;
  }
}
.recruit_newsWrap .customBtn {
  display: inline-flex;
  align-items: center;
  font-family: "ゴシックMB101 B";
  color: #193265;
  font-size: 0.9em;
}
.recruit_newsWrap .customBtn:hover {
  color: #0a2e76;
}
.recruit_newsWrap .circleBtn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #193265;
  border-radius: 50%;
  margin-left: 1em;
}
@media screen and (min-width: 767px) {
  .recruit_newsWrap .circleBtn {
    width: 45px;
    height: 45px;
  }
}
.recruit_newsWrap .circleBtn::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
@media screen and (min-width: 767px) {
  .recruit_newsWrap .circleBtn::after {
    top: 18px;
    width: 23px;
  }
}
.recruit_entryWrap .bgBtm.career .circleBtn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFF;
  border-radius: 50%;
  margin-left: 1em;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .recruit_entryWrap .bgBtm.career .circleBtn {
    width: 45px;
    height: 45px;
  }
}
.recruit_entryWrap .bgBtm.career .circleBtn::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
@media screen and (min-width: 767px) {
  .recruit_entryWrap .bgBtm.career .circleBtn::after {
    top: 18px;
    width: 23px;
  }
}
.recruit_entryWrap .bgBtm.career .circleBtn:after {
  border-bottom: solid 1px #0E40A5;
  border-right: solid 1px #0E40A5;
}
.recruit_entryWrap .bgBtm.newGraduates .circleBtn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFF;
  border-radius: 50%;
  margin-left: 1em;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .recruit_entryWrap .bgBtm.newGraduates .circleBtn {
    width: 45px;
    height: 45px;
  }
}
.recruit_entryWrap .bgBtm.newGraduates .circleBtn::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
@media screen and (min-width: 767px) {
  .recruit_entryWrap .bgBtm.newGraduates .circleBtn::after {
    top: 18px;
    width: 23px;
  }
}
.recruit_entryWrap .bgBtm.newGraduates .circleBtn:after {
  border-bottom: solid 1px #0098BD;
  border-right: solid 1px #0E40A5;
}
.boxBtn {
  width: 100%;
}
.boxBtn a {
  position: relative;
  color: #FFF;
  min-height: 95px;
  display: grid;
  place-items: center;
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
  text-align: center;
  font-size: 1em;
}
@media screen and (min-width: 767px) {
  .boxBtn a {
    min-height: 110px;
    font-size: 1.2em;
  }
}
.boxBtn a::after {
  content: "";
  position: absolute;
  right: 25px;
  width: 23px;
  height: 6px;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  transform: skew(45deg);
}
.boxBtn.lineBtn a {
  border: 1px solid #0E40A5;
  background-color: #FFF;
  color: #0E40A5;
}
.boxBtn.lineBtn a::after {
  border-bottom: solid 1px #0E40A5;
  border-right: solid 1px #0E40A5;
}
.blueBtn a {
  background: #0E40A5;
}
.blueBtn a:hover {
  color: #FFF;
}
.lightBlueBtn a {
  background: linear-gradient(45deg, #08a2c7 50%, #84d8ed 100%);
}
.lightBlueBtn a:hover {
  color: #FFF;
}
.linkBtnWrap .linkBtnItem {
  max-width: 880px;
  margin: 0 auto;
}
.linkBtnWrap .linkBtnItem.boxBtn a {
  font-size: 1.3em;
}
.baseBtn a {
  display: block;
  position: relative;
  border: 1px solid #0E40A5;
  background-color: #FFF;
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  text-align: center;
  padding: 12px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .baseBtn a {
    max-width: 280px;
    margin-left: 0;
    padding: 16px;
  }
}
.baseBtn a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 25px;
  width: 23px;
  height: 6px;
  border-bottom: solid 1px #0E40A5;
  border-right: solid 1px #0E40A5;
  transform: skew(45deg);
}
.baseBtn a:hover {
  color: #0E40A5;
}
.smBtn a {
  display: block;
  max-width: 160px;
  background-color: #0E40A5;
  text-align: center;
  color: #FFF;
  padding: 5px 10px;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
.smBtn a:hover {
  color: #FFF;
}
.telBtn a {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #003298 0%, #175ae3 100%);
  font-family: "ゴシックMB101 B";
  letter-spacing: 0.1em;
  padding: 0.8em 0.5em;
}
.telBtn a .officeName {
  font-size: 1.2em;
  color: #FFF;
}
.telBtn a .telNumber {
  font-size: 1.4em;
  color: #FFF;
}
@media screen and (min-width: 767px) {
  .telBtn a .telNumber {
    font-size: 1.8em;
  }
}
.telBtn a .telNumber:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  padding-right: 5px;
}
/*=================================================
　投稿レイアウト
===================================================*/
.archive .content-in, .single-post .content-in {
  margin-bottom: 50px;
}
.sidebar .sidebar-scroll {
  position: static;
}
.post-date {
  padding: 0;
}
.post-date .fa-clock {
  display: none;
}
.post-date .entry-date {
  margin-left: 0;
}
.ect-entry-card .card-meta, .rect-entry-card .card-meta, .ect-big-card-first .card-meta {
  clear: none;
}
#breadcrumb {
  margin-top: 3em;
}
#breadcrumb .sp {
  display: inline;
}
#breadcrumb .breadcrumb-home .fas.fa-home {
  display: none;
}
#breadcrumb .breadcrumb-item .fas.fa-folder {
  display: none;
}
#breadcrumb .breadcrumb-item:last-child .breadcrumb-caption {
  color: #0E40A5;
  font-weight: 700;
}
ul.wp-block-categories-list {
  padding-left: 26px !important;
}
#sidebar .widget-title, #sidebar .wp-block-heading {
  background: transparent !important;
  font-size: 18px !important;
  padding: 0 !important;
  margin: 40px 0 16px !important;
}
#sidebar .widget-title::before, #sidebar .wp-block-heading::before {
  content: "■";
  color: #0E40A5;
  margin-right: 0.5em;
}
#sidebar .wp-block-search__label {
  display: none;
}
.single-post .article h2 {
  background-color: #0E40A5;
  color: #FFF;
  font-size: 1.2em;
  padding: 16px;
  margin-top: 40px;
}
@media screen and (min-width: 767px) {
  .single-post .article h2 {
    padding: 20px;
  }
}
.single-post .article h3 {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 7px solid #0E40A5;
  font-size: 1.2em;
  padding: 10px 16px;
  background-color: #F4F5F6;
  color: #0E40A5;
  margin-top: 30px;
}
@media screen and (min-width: 767px) {
  .single-post .article h3 {
    padding: 10px 20px;
  }
}
.single-post .article h4 {
  border-top: none;
  border-bottom: 2px solid #0E40A5;
  font-size: 1em;
  color: #0E40A5;
  padding: 10px 5px;
}
.cat-item-1 {
  display: none;
}
/* 記事一覧
------------------------------------------ */
.archive h1.archive-title {
  display: none;
}
.archive .entry-card-thumb {
  width: 120px;
}
@media screen and (min-width: 767px) {
  .archive .entry-card-thumb {
    width: 200px;
  }
}
.archive .entry-card-thumb img {
  box-shadow: 6px 6px 15px -10px #8f8f8f;
}
.archive .entry-card-content {
  margin-left: 0;
}
.archive #list {
  row-gap: 0;
}
.archive #list h2.related-entry-card-title, .archive #list h2.entry-card-title {
  font-size: 0.9em;
  margin-bottom: 0;
  text-align: justify;
}
@media screen and (min-width: 767px) {
  .archive #list h2.related-entry-card-title, .archive #list h2.entry-card-title {
    font-size: 1em;
  }
}
.archive .ect-entry-card a.entry-card-wrap.a-wrap {
  border-bottom: 1px solid #DDDDDD;
  padding: 0.8em 0.5em;
}
.archive .ect-entry-card a.entry-card-wrap.a-wrap:first-child {
  border-top: 1px solid #DDDDDD;
}
.search .entry-card-content {
  margin-left: 0;
}
.search .entry-card-thumb img {
  box-shadow: 6px 6px 15px -10px #8f8f8f;
}
/* 個別記事
------------------------------------------ */
.single-post .article.post {
  margin-bottom: 50px;
}
.single-post .article-header h1.entry-title {
  font-family: "ゴシックMB101 B";
  padding: 0 0 16px 0;
  color: #0E40A5;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  border-bottom: solid 3px rgba(14, 64, 165, 0.1);
}
.single-post .article-header h1.entry-title:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #0E40A5;
  bottom: -3px;
  width: 15%;
}
h2.related-entry-heading {
  border-bottom: 1px solid #0E40A5;
  line-height: 1;
}
h2.related-entry-heading span.related-entry-main-heading {
  display: inline-block;
  background-color: #0E40A5;
  padding: 0.5em 1em;
  color: #FFF;
  font-size: 16px;
  font-weight: normal;
}
.related-entries, .related-list {
  margin-bottom: 0;
}
.related-list {
  display: block;
}
.related-list .related-entry-card-wrap .related-entry-card .related-entry-card-thumb img {
  box-shadow: 6px 6px 15px -10px #8f8f8f;
}
.related-list .related-entry-card-wrap .related-entry-card .related-entry-card-content {
  margin-left: 0;
}
.related-list .related-entry-card-wrap .related-entry-card .related-entry-card-content .related-entry-card-title {
  text-align: justify;
  font-size: 0.9em;
}
@media screen and (min-width: 767px) {
  .related-list .related-entry-card-wrap .related-entry-card .related-entry-card-content .related-entry-card-title {
    font-size: 1em;
  }
}
.entry-card, .related-entry-card {
  display: flex;
  justify-content: flex-start;
}
.entry-card .related-entry-card-thumb, .entry-card .entry-card-thumb, .entry-card .under-entry-card-thumb, .related-entry-card .related-entry-card-thumb, .related-entry-card .entry-card-thumb, .related-entry-card .under-entry-card-thumb {
  width: 34%;
  margin-right: 4%;
}
@media screen and (min-width: 767px) {
  .entry-card .related-entry-card-thumb, .entry-card .entry-card-thumb, .entry-card .under-entry-card-thumb, .related-entry-card .related-entry-card-thumb, .related-entry-card .entry-card-thumb, .related-entry-card .under-entry-card-thumb {
    max-width: 100%;
  }
}
.entry-card .entry-card-content, .entry-card .related-entry-card-content, .entry-card .under-entry-card-content, .related-entry-card .entry-card-content, .related-entry-card .related-entry-card-content, .related-entry-card .under-entry-card-content {
  width: 62%;
  padding-bottom: 0;
}
.entry-card.cf::after, .related-entry-card.cf::after {
  display: none;
}
.entry-card-meta, .related-entry-card-meta {
  margin-bottom: 0.5em;
  position: static;
  text-align: left;
}
.entry-card-meta .e-card-info, .related-entry-card-meta .e-card-info {
  display: block;
}
/*=================================================
　固定ページ_記事リスト
===================================================*/
.postList .titleArea {
  border-bottom: 1px solid #DBDBDB;
  padding: 1.2em 0.5em;
  font-size: 0.9em;
  transition: all 0.3s;
}
.postList .titleArea:first-child {
  border-top: 1px solid #DBDBDB;
}
@media screen and (min-width: 767px) {
  .postList .titleArea {
    display: flex;
    padding: 0 1em;
  }
}
.postList .titleArea a {
  color: #333;
}
.postList .titleArea:hover {
  background: #F4F5F6;
  cursor: pointer;
}
.postList .titleArea:hover .title a {
  color: #0E40A5;
  opacity: 1;
}
.postList .titleArea .dayCat {
  display: flex;
  align-items: center;
  gap: 1em;
}
.postList .titleArea .cat a {
  border: 1px solid;
  padding: 2px 8px;
  font-size: 11px;
  margin-right: 1em;
  border-radius: 2px;
  display: block;
  color: #333;
  background: #FFF;
  border: 1px solid #DBDBDB;
  line-height: 1.4;
}
.postList .titleArea .cat a:last-child {
  margin-right: 0;
}
.postList .titleArea .title {
  width: 100%;
}
@media screen and (min-width: 767px) {
  .postList .titleArea .title {
    width: calc(100% - 210px);
  }
}
.postList .titleArea .title a {
  display: block;
  cursor: pointer;
  width: 100%;
  line-height: 1.6;
}
@media screen and (min-width: 767px) {
  .postList .titleArea .title a {
    padding: 1.8em 1em 1.8em;
  }
}
/*=================================================
公式サイトトップページレイアウト
===================================================*/
/* top_topics（トピックス）
------------------------------------------ */
@media screen and (min-width: 1024px) {
  .topicsWrap .titleCatWrap {
    display: flex;
    align-items: baseline;
  }
}
.topicsWrap .titleCatWrap .msTtlBox {
  margin-right: 5em;
}
.tabList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0 !important;
  padding: 1em 0 !important;
}
.tabList .tabItem {
  flex: 1 1 calc(50% - 20px);
  padding: 5px;
}
@media screen and (min-width: 767px) {
  .tabList .tabItem {
    flex: 1 1 calc(25% - 20px);
    padding: 0 10px;
  }
}
.tabList .tabItem a {
  min-width: 130px;
  display: inline-block;
  line-height: 1;
  border: 1px solid #0E40A5;
  padding: 6px 20px;
  font-size: 0.8em;
  color: #0E40A5;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .tabList .tabItem a {
    padding: 6px 26px;
  }
}
.tabList .tabItem a:hover {
  opacity: 1;
  color: #0E40A5;
}
.tabList .tabItem.active a {
  background: #0E40A5;
  color: #FFF;
}
.postList .dayCatWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0.5em;
  width: 210px;
  gap: 1.4em;
}
@media screen and (min-width: 767px) {
  .postList .dayCatWrap {
    margin-bottom: 0;
  }
}
.postList .dayCatWrap .day {
  font-size: 0.9em;
}
.top_topicsWrap {
  padding: 1em;
  border: 1px solid #DBDBDB;
}
@media screen and (min-width: 1024px) {
  .top_topicsWrap {
    padding: 2em;
    display: flex;
    align-items: center;
    gap: 1em;
  }
}
.top_topicsWrap h2.en_secTtl {
  color: #0E40A5;
  text-align: left !important;
  margin-bottom: 0.5em;
  font-family: "ゴシックMB101 B";
}
@media screen and (min-width: 1024px) {
  .top_topicsWrap h2.en_secTtl {
    width: 15%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top_topicsWrap .newsList {
    width: 85%;
  }
}
/* top_ourWorks（私たちの仕事）
------------------------------------------ */
.top_ourWorksWrap .contents, .top_recruitWrap .contents {
  position: relative;
}
@media screen and (min-width: 767px) {
  .top_ourWorksWrap .contents, .top_recruitWrap .contents {
    min-height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top_ourWorksWrap .contents, .top_recruitWrap .contents {
    min-height: 580px;
  }
}
.top_ourWorksWrap .contents .bgImgBox, .top_recruitWrap .contents .bgImgBox {
  position: absolute;
  left: 0;
  z-index: -1;
  z-index: revert-layer;
  z-index: revert;
  /* 古いブラウザでは次に強いスタイルに戻る */
  width: 93%;
  height: 300px;
  background-size: cover;
}
@media screen and (min-width: 767px) {
  .top_ourWorksWrap .contents .bgImgBox, .top_recruitWrap .contents .bgImgBox {
    width: 90%;
    height: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .top_ourWorksWrap .contents .bgImgBox, .top_recruitWrap .contents .bgImgBox {
    bottom: 0;
    left: 0;
    top: 0;
    width: 45%;
    height: 580px;
    margin: 0 auto;
  }
}
.top_ourWorksWrap .contents .textArea, .top_recruitWrap .contents .textArea {
  padding-top: 275px;
}
@media screen and (min-width: 767px) {
  .top_ourWorksWrap .contents .textArea, .top_recruitWrap .contents .textArea {
    padding-top: 325px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .top_ourWorksWrap .contents .textArea, .top_recruitWrap .contents .textArea {
    padding-top: 0;
    width: 50%;
    margin-left: auto;
  }
}
.top_ourWorksWrap {
  margin-top: 1em;
}
@media screen and (min-width: 767px) {
  .top_ourWorksWrap {
    margin-top: 3em;
  }
}
.top_ourWorksWrap .contents .bgImgBox {
  margin-left: -1px;
}
.top_ourWorksWrap .contents .bgImgBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 50, 152, 0.1);
  transform: translate(20px, 20px);
  filter: blur(0px);
}
@media screen and (min-width: 767px) {
  .top_ourWorksWrap .contents .bgImgBox::before {
    transform: translate(30px, 30px);
  }
}
.ourWorksSlider {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.ourWorksSlider .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  opacity: 0;
}
/* top_service（事業内容）
------------------------------------------ */
.top_serviceWrap .leadText {
  margin-bottom: 3em !important;
}
.top_serviceWrap .itemBox:not(:last-child) {
  margin-bottom: 4em;
}
.top_serviceWrap .itemBox.grid2_1 {
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .top_serviceWrap .itemBox.grid2_1 {
    gap: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .top_serviceWrap .itemBox.grid2_1 {
    gap: 4em;
  }
}
.top_serviceWrap .itemBox h3.subTtl_03 {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em !important;
}
.top_serviceWrap .itemBox h3.subTtl_03::before {
  content: "";
  background: url(https://m5m.me/klec/wp-content/uploads/2024/11/titleIcon.png) no-repeat center / cover;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.top_serviceWrap .itemBox .textBox .btnWrap {
  text-align: right;
  margin-top: 2em;
}
@media screen and (min-width: 767px) {
  .top_serviceWrap .itemBox .textBox .btnWrap {
    text-align: left;
  }
}
.top_serviceWrap .itemBox .bnrItem {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top_serviceWrap .itemBox .bnrItem {
    margin-left: 0;
  }
}
[lang="en"] .top_serviceWrap .itemBox h3.subTtl_03 {
  font-size: 1em !important;
}
@media screen and (min-width: 1024px) {
  [lang="en"] .top_serviceWrap .itemBox h3.subTtl_03 {
    font-size: 1.2em !important;
  }
}
[lang="en"] .interviewArea .whiteTtlBox .ja_ttl {
  display: none;
}
/* top_works（納入・施工実績）
------------------------------------------ */
.top_worksWrap {
  position: relative;
}
.top_worksWrap .top_secTtlBox {
  margin-bottom: 0;
}
.top_worksWrap .worksBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .top_worksWrap .worksBg {
    width: 50%;
  }
}
.top_worksWrap .postCard .slide-media {
  padding-top: 30px;
}
@media screen and (min-width: 1024px) {
  .top_worksWrap .postCard .slide-media {
    padding-top: 60px;
  }
}
.top_worksWrap .postCard .slide-media img {
  box-shadow: 6px 6px 30px 0px rgba(78, 109, 173, 0.2);
}
@media screen and (min-width: 1024px) {
  .top_worksWrap .postCard .slide-media img {
    box-shadow: 6px 6px 60px 0px rgba(78, 109, 173, 0.2);
  }
}
/* top_recruit（採用情報）
------------------------------------------ */
.top_recruitWrap .contents.leadArea {
  position: relative;
}
.top_recruitWrap .contents.leadArea .decoText {
  position: absolute;
  width: 100%;
  max-width: 260px;
  right: 2%;
  top: -50px;
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .contents.leadArea .decoText {
    max-width: 360px;
    top: 0;
    right: 10%;
    margin: -80px 0 0 50px;
  }
}
.top_recruitWrap .contents.leadArea .bgImgBox {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/11/recruit_leadArea_bg.jpg) no-repeat center/cover;
}
.top_recruitWrap .contents.leadArea .bgImgBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(60deg, rgba(0, 152, 189, 0.3), rgba(164, 232, 248, 0.3));
  transform: translate(-20px, 20px);
  filter: blur(0px);
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .contents.leadArea .bgImgBox::before {
    transform: translate(-30px, 30px);
  }
}
@media screen and (min-width: 1024px) {
  .top_recruitWrap .contents.leadArea .bgImgBox {
    left: inherit;
    right: 0;
  }
}
.top_recruitWrap .contents.leadArea .textArea {
  margin-right: auto;
  margin-left: 0;
}
.top_recruitWrap .contents.leadArea .textArea .boxBtn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .contents.leadArea .textArea .boxBtn {
    margin-left: 0;
  }
}
.top_recruitWrap .contents.leadArea .textArea .boxBtn a {
  min-height: 70px;
  font-size: 1em;
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .contents.leadArea .textArea .boxBtn a {
    min-height: 90px;
  }
}
.top_recruitWrap .linkBox {
  background: #FFF;
}
.top_recruitWrap .linkBox .linkBoxList {
  display: grid;
  min-height: 110px;
  grid-template-areas: "first second" "last last";
  padding: 1.2em 1em;
  gap: 2em;
}
@media screen and (min-width: 767px) {
  .top_recruitWrap .linkBox .linkBoxList {
    grid-template-areas: "first second last";
    margin: 0;
    width: inherit;
  }
}
.top_recruitWrap .linkBox .linkBoxList li:first-of-type {
  grid-area: first;
}
.top_recruitWrap .linkBox .linkBoxList li:nth-of-type(2) {
  grid-area: second;
}
.top_recruitWrap .linkBox .linkBoxList li:last-of-type {
  grid-area: last;
}
.top_recruitWrap .linkBox .linkBoxList a {
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .top_recruitWrap .linkBox .linkBoxList a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top_recruitWrap .linkBox .linkBoxList a .ttlBox {
  line-height: 1.6;
  margin-bottom: 0;
}
.top_recruitWrap .linkBox .linkBoxList a .ttlBox .ja_text {
  color: #193265;
  display: block;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 B";
}
.top_recruitWrap .linkBox .linkBoxList a .ttlBox .en_text {
  font-size: 0.7em;
  color: #0098BD;
  letter-spacing: 0.1em;
}
[lang="en"] .top_recruitWrap .linkBox .linkBoxList {
  display: block;
}
@media screen and (min-width: 1024px) {
  [lang="en"] .top_recruitWrap .linkBox .linkBoxList {
    display: grid;
  }
}
/* top_aboutUs（関東エルエンジニアリングについて）
------------------------------------------ */
.top_aboutUsWrap .linkCard {
  margin-bottom: 0;
}
.top_aboutUsWrap .linkCard li > a {
  position: relative;
  display: block;
  font-family: "ゴシックMB101 B";
  color: #FFF;
}
.top_aboutUsWrap .linkCard li > a > div {
  position: absolute;
  bottom: 10px;
  left: 16px;
}
.top_aboutUsWrap .linkCard li > a > div h3 {
  font-size: 28px !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .top_aboutUsWrap .linkCard li > a > div h3 {
    font-size: 20px !important;
  }
}
@media screen and (min-width: 1024px) {
  .top_aboutUsWrap .linkCard li > a > div h3 {
    font-size: 24px !important;
  }
}
.top_aboutUsWrap .linkCard li > a > div span {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.clientLogoSwiper {
  margin: 0 calc(50% - 50vw) 3em;
  width: 100vw;
  padding-bottom: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .clientLogoSwiper {
    margin-bottom: 5em;
  }
}
.clientLogoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.clientLogoSwiper .swiper-wrapper .swiper-slide {
  width: auto;
}
.clientLogoSwiper .swiper-wrapper .swiper-slide img {
  height: 200px;
  width: auto;
  object-fit: contain;
}
/*=================================================
　contact（共通）
===================================================*/
.contactWrap {
  background: linear-gradient(180deg, #003298 0%, #175ae3 100%);
  margin-bottom: 0;
}
.contactWrap ul.contactBtn {
  list-style: none;
  padding-left: 0;
}
.contactWrap .traBox {
  background: rgba(255, 255, 255, 0.8);
  padding: 2em 1.4em;
}
@media screen and (min-width: 767px) {
  .contactWrap .traBox {
    padding: 3em;
  }
}
@media screen and (min-width: 1024px) {
  .contactWrap .traBox {
    padding: 4em;
  }
}
.contactWrap .traBox .boxBtn a {
  min-height: 70px;
}
@media screen and (min-width: 767px) {
  .contactWrap .traBox .boxBtn a {
    min-height: 110px;
  }
}
.bg-lightGray {
  background: #F4F5F6;
  margin-bottom: 0;
}
.bg-turquoiseBlue {
  margin-bottom: 0;
}
.home .entryBoxWrap {
  background: transparent;
  padding-bottom: 0;
}
/*=================================================
　footer（共通）
===================================================*/
#footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  #footer {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1024px) {
  #footer {
    padding: 0 60px;
  }
}
#footer .footer-bottom {
  display: none;
}
.footerWrap {
  margin-bottom: 0;
}
.footerWrap .footerAd {
  padding: 5em 0;
}
.footerWrap .footerAd .footerLogo {
  max-width: 160px;
  margin-bottom: 3em;
}
@media screen and (min-width: 767px) {
  .footerWrap .footerAd .footerLogo {
    max-width: 200px;
  }
}
.footerWrap .footerAd .adTtl {
  font-weight: 700;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
}
.footerWrap .footerAd .adBox address, .footerWrap .footerAd .adBox .tel {
  font-size: 0.9em;
}
.footerWrap .footerAd .adBox address {
  display: inline-block;
}
.footerWrap .footerAd .adBox .mapLink {
  color: #0E40A5;
}
.footerWrap .footerBtm {
  background: linear-gradient(180deg, #003298 0%, #175ae3 100%);
}
.footerWrap .footerBtm .footerNavi {
  padding: 3em 0;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2em 1em;
  padding-left: 0;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList > li {
  width: 46%;
}
@media screen and (min-width: 767px) {
  .footerWrap .footerBtm .footerNavi ul.footerNavList > li {
    width: 22%;
  }
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem a {
  color: #FFF;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem .navTtl {
  color: #FFF;
  font-size: 0.9em;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem .subMenu {
  padding-left: 1em !important;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem .subMenu li {
  list-style: none;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem .subMenu a {
  font-size: 0.8em;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem .subMenu a::before {
  content: "ー";
  display: inline-block;
  margin-right: 0.5em;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem ul.menuList {
  list-style: none;
  padding-left: 0;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem ul.menuList li {
  margin-bottom: 1em !important;
}
.footerWrap .footerBtm .footerNavi ul.footerNavList .footerNavItem ul.menuList li:last-child {
  margin-bottom: 0 !important;
}
.footerWrap .footerBtm .footerInfo {
  padding: 1em;
  border-top: 1px solid #FFF;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.footerWrap .footerBtm .footerInfo .copyright {
  color: #FFF;
  text-align: right;
  font-size: 0.8em;
  margin: 0;
}
/* トップへ戻るボタン
------------------------------------------ */
.pagetopArrow {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: linear-gradient(45deg, #175ae3 40%, #003298 100%);
  border-radius: 50%;
}
.pagetopArrow::before {
  content: "";
  height: 10px;
  width: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(-90deg) skew(45deg);
  transform: translateY(20%) rotate(-45deg);
}
.pagetopArrow:hover {
  opacity: 1;
}
.entry-content {
  margin-bottom: 0;
}
/*=================================================
　js
===================================================*/
/* slider共通
------------------------------------------ */
.swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper-wrapper {
  margin-top: 0;
}
/* swiper-controller
------------------------------------------ */
.interviewSlider .swiper-controller, .postCard .swiper-controller {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.interviewSlider .swiper-controller .swiper-pagination-progressbar, .postCard .swiper-controller .swiper-pagination-progressbar {
  position: absolute;
  bottom: 30px;
  top: inherit;
  width: 60%;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.interviewSlider .swiper-controller .swiper-pagination-progressbar .swiper-pagination-progressbar-fill, .postCard .swiper-controller .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #0E40A5;
}
.interviewSlider .swiper-controller .swiper-button-next, .interviewSlider .swiper-controller .swiper-button-prev, .postCard .swiper-controller .swiper-button-next, .postCard .swiper-controller .swiper-button-prev {
  position: static;
  background: #FFF;
  border: 1px solid #0E40A5;
  color: #0E40A5;
  width: 45px;
  height: 45px;
  opacity: 1;
}
.interviewSlider .swiper-controller .swiper-button-next::after, .interviewSlider .swiper-controller .swiper-button-prev::after, .postCard .swiper-controller .swiper-button-next::after, .postCard .swiper-controller .swiper-button-prev::after {
  font-size: 20px;
}
.interviewSlider .swiper-pagination-bullets.swiper-pagination-horizontal, .postCard .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -30px;
}
.interviewSlider .swiper {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 767px) {
  .interviewSlider .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
/* flowSlider
------------------------------------------ */
.flowSliderWrap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-bottom: 0;
  overflow: hidden;
}
.flowSliderWrap .swiper-wrapper {
  transition-timing-function: linear !important;
  /* スライドの動き等速 */
}
/* スマホではhoverを解除（他の部分は影響なし）
------------------------------------------ */
@media (hover: none) {
  a:hover {
    color: inherit;
    /* 色を元の状態に保つ */
    opacity: 1;
    /* 透明度も元の状態に保つ */
  }
  .postList .titleArea:hover {
    background: transparent;
  }
}
/*=================================================
　テーブル
===================================================*/
.tableContainer {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.tableContainer table {
  margin-bottom: 0;
}
.tableContainer table th, .tableContainer table td {
  font-size: 1em;
}
.tableInfo {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.tableInfo tr, .tableInfo th, .tableInfo td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .tableInfo tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #DBDBDB;
  }
  .tableInfo tr:first-child {
    border-top: 1px solid #DBDBDB;
  }
}
.tableInfo th, .tableInfo td {
  padding: 1em;
  border: none;
}
@media screen and (min-width: 767px) {
  .tableInfo th, .tableInfo td {
    padding: 1.4em;
  }
}
.tableInfo th {
  font-weight: 700;
  text-align: left;
  background-color: #f1f4fb !important;
  color: #193265;
  white-space: normal;
}
@media screen and (min-width: 767px) {
  .tableInfo th {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26%;
  }
}
@media screen and (min-width: 767px) {
  .tableInfo td {
    width: 74%;
  }
}
ul.tableAccess {
  margin-bottom: 0;
}
ul.tableAccess li:not(:last-child) {
  margin-bottom: 1em;
}
ul.tableAccess li .tableAccessTtl {
  font-weight: 700;
}
.table02.grid2_1 {
  gap: 0;
}
.tableList th, .tableList td {
  padding: 0.5em 1em;
}
.tableList th {
  font-weight: normal;
  text-align: left;
}
.tableList td {
  width: 80px;
  background-color: #f1f4fb !important;
  color: #193265;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .lower_businessDetails.iot th, .lower_businessDetails.iot td {
    padding: 0.5em 1em;
  }
  .lower_businessDetails.iot td {
    font-size: 0.9em;
  }
  .tableTwoColumns .tableInfo tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 0.2em;
  }
  .tableTwoColumns .tableInfo tbody th, .tableTwoColumns .tableInfo tbody td {
    text-align: left;
    padding: 0.5em 0.8em;
    font-size: 0.9em;
  }
}
/*=================================================
 説明リスト
===================================================*/
.descriptionListContainer {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.descriptionListContainer dl dt {
  background-color: #f1f4fb;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #193265;
  font-size: 1.1em;
  font-weight: 700;
}
.descriptionListContainer dl dd {
  padding: 1em;
}
.descriptionListContainer dl dd.grid2_1 {
  gap: 0em;
}
@media screen and (min-width: 767px) {
  .descriptionListContainer dl dd.grid2_1 {
    gap: 2em;
    padding: 1em 1.6em;
  }
}
.descriptionListContainer dl dd ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0;
}
.descriptionListContainer dl dd ul.grid2_1 {
  gap: 0em;
}
.descriptionListContainer dl dd ul li {
  margin-bottom: 0.5em;
}
/*=================================================
　マップ
===================================================*/
.mapContainer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .mapContainer {
    padding-bottom: 36%;
    /* 高さを低くする */
  }
}
.mapContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/*=================================================
　lower_タイトル
===================================================*/
[class^="lower_"] .ulMainTtl {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em !important;
  padding-bottom: 0.5em !important;
  margin-bottom: 1.2em !important;
  border-bottom: 1px solid #193265 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  [class^="lower_"] .ulMainTtl {
    font-size: 1.8em !important;
    margin-bottom: 1.4em !important;
  }
}
[class^="lower_"] .ulMainTtl span {
  color: #193265;
  font-size: 0.6em;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  [class^="lower_"] .ulMainTtl span {
    margin-left: 1em;
  }
}
[class^="lower_"] .ulMainTtl span {
  color: #193265;
  font-size: 0.6em;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1.4;
  letter-spacing: 0 !important;
}
@media screen and (min-width: 767px) {
  [class^="lower_"] .ulMainTtl span {
    margin-left: 1em;
  }
}
[class^="lower_"] .itemWrap {
  margin-bottom: 5em;
}
@media screen and (min-width: 1024px) {
  [class^="lower_"] .itemWrap {
    margin-bottom: 8em;
  }
}
[class^="lower_"] .itemWrap:last-child {
  margin-bottom: 0;
}
.url {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}
a.extLink {
  color: #333;
  font-weight: 700;
}
a.extLink::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 8px 0 8px;
}
/*=================================================
　lower_事業内容
===================================================*/
/* 事業内容イントロ
------------------------------------------ */
.lower_introWrap .summaryArea {
  padding: 3em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower_introWrap .summaryArea {
    background-size: cover;
  }
  .lower_introWrap .summaryArea::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    /* 白の半透明 */
    z-index: 1;
    /* 背景の上に表示 */
  }
}
@media screen and (min-width: 767px) {
  .lower_introWrap .summaryArea {
    padding: 5em 0;
  }
}
@media screen and (min-width: 767px) {
  .lower_introWrap .summaryArea {
    background-color: #F2F7FD;
  }
}
.lower_introWrap .summaryArea ul.txtlist {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.lower_introWrap .summaryArea ul.txtlist li {
  margin-bottom: 2.6em !important;
  padding: 0px 0 5px 20px;
  position: relative;
}
@media screen and (min-width: 767px) {
  .lower_introWrap .summaryArea ul.txtlist li {
    padding-left: 28px;
  }
}
.lower_introWrap .summaryArea ul.txtlist li:last-child {
  margin-bottom: 0 !important;
}
.lower_introWrap .summaryArea ul.txtlist li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #0E40A5;
  left: 0;
  top: 0;
}
.lower_introWrap .summaryArea ul.txtlist li p {
  margin-bottom: 0;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .instrumentation .summaryArea {
    background: url(https://m5m.me/klec/wp-content/uploads/2024/12/summary_bg_instrumentation.jpg) no-repeat right / cover;
  }
}
@media screen and (max-width: 767px) {
  .machinery .summaryArea {
    background: url(https://m5m.me/klec/wp-content/uploads/2024/12/summary_bg_machinery.jpg) no-repeat center / cover;
  }
}
@media screen and (max-width: 767px) {
  .iot .summaryArea {
    background: url(https://m5m.me/klec/wp-content/uploads/2024/12/summary_bg_iot.jpg) no-repeat center / cover;
  }
}
.bnrItem {
  border: 1px solid #B1B1B1;
}
.logoItem {
  max-width: 240px;
}
.exteriorImg {
  max-width: 680px;
  margin: 0 auto;
}
.overseas.lower_introWrap {
  position: relative;
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/vietnam_klec_office.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 767px) {
  .overseas.lower_introWrap {
    min-height: 380px;
  }
}
@media screen and (min-width: 1024px) {
  .overseas.lower_introWrap {
    min-height: 500px;
  }
}
.overseas.lower_introWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  /* 白の半透明 */
  z-index: 1;
  /* 背景の上に表示 */
}
.overseas.lower_introWrap .leadArea {
  position: relative;
  z-index: 2;
}
.overseas.lower_introWrap .leadArea .leadText {
  text-align: center;
}
.overseas.lower_introWrap .textBox p {
  font-family: "ゴシックMB101 B";
  color: #193265;
  font-size: 1em;
  text-align: justify;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .overseas.lower_introWrap .textBox p {
    font-size: 1.2em;
    text-align: center;
  }
}
/* 事業内容詳細
------------------------------------------ */
.lower_businessDetails .ulMainTtl {
  font-size: 1.4em !important;
}
@media screen and (min-width: 767px) {
  .lower_businessDetails .ulMainTtl {
    font-size: 1.8em !important;
  }
}
.lower_businessDetails ul.txtlist {
  margin-bottom: 0;
}
.lower_businessDetails ul.txtlist li {
  margin-bottom: 2.6em !important;
}
.lower_businessDetails ul.txtlist li:last-child {
  margin-bottom: 0 !important;
}
.lower_businessDetails ul.txtlist li p {
  text-align: justify;
}
.lower_businessDetails .shadow {
  box-shadow: 6px 6px 15px -10px #8f8f8f;
}
.lower_businessDetails .itemWrap .itemBox {
  margin-bottom: 5em;
}
.grid_iotImg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6em;
}
@media screen and (min-width: 767px) {
  .grid_iotImg {
    grid-template-columns: 1fr 1fr;
    gap: 3em;
  }
  .grid_iotImg > div:nth-child(1) {
    grid-column: span 2;
  }
}
/*=================================================
　lower_メインビジュアル
===================================================*/
.lowerMvWrap {
  position: relative;
  height: 260px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .lowerMvWrap {
    height: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .lowerMvWrap {
    height: 480px;
  }
}
.lowerMvWrap .ttlBox {
  position: absolute;
  top: 50%;
  left: 5%;
  color: #FFF;
  line-height: 1.4;
  font-family: "ゴシックMB101 B";
}
@media screen and (min-width: 767px) {
  .lowerMvWrap .ttlBox {
    top: 60%;
  }
}
.lowerMvWrap .ttlBox p.en_Ttl {
  font-size: calc(clamp(1.75rem, 0.675rem + 4.59vw, 4rem));
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.lowerMvWrap .ttlBox p.en_Ttl::first-letter {
  color: #0E40A5;
}
.lowerMvWrap .ttlBox h1.ja_subTtl {
  display: block;
  font-size: 1em;
  letter-spacing: 0.1em;
  margin-left: 0.3em;
}
@media screen and (min-width: 1024px) {
  .lowerMvWrap .ttlBox h1.ja_subTtl {
    font-size: 1.4em;
  }
}
.lowerMvWrap.company, .lowerMvWrap.lowerPage {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/company_mv-scaled.jpg) no-repeat center / cover;
}
.lowerMvWrap.product, .lowerMvWrap.technical {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/technical_mv-scaled.jpg) no-repeat center / cover;
}
.lowerMvWrap.contact, .lowerMvWrap.privacy, .lowerMvWrap.page404 {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/12/contact_mv-scaled.jpg) no-repeat center / cover;
}
.lowerMvWrap.recruitMv {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/recruit_mv-scaled.jpg) no-repeat center / cover;
}
.lowerMvWrap.recruitMv p.en_Ttl::first-letter {
  color: #0098BD;
}
.lower_messageWrap .imgBox, .recruit_messageWrap .imgBox {
  width: 80%;
  margin: 0 auto 2em;
}
@media screen and (min-width: 767px) {
  .lower_messageWrap .imgBox, .recruit_messageWrap .imgBox {
    width: 100%;
  }
}
.lower_messageWrap .gridContainer, .recruit_messageWrap .gridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media screen and (min-width: 767px) {
  .lower_messageWrap .gridContainer, .recruit_messageWrap .gridContainer {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 3em;
  }
}
.nameBox {
  line-height: 1.6;
}
.nameBox .name {
  font-size: 1.4em;
}
@media screen and (min-width: 767px) {
  .nameBox .name {
    font-size: 1.6em;
  }
}
.nameBox .name span {
  padding-left: 1em;
  font-size: 0.7em;
}
.lower_messageWrap .nameBox, .recruit_messageWrap .nameBox {
  border-left: 4px solid #193265;
  padding-left: 1em;
  font-family: "ゴシックMB101 B";
  color: #193265;
}
/*=================================================
　lower_代表挨拶
===================================================*/
.lower_messageWrap .signature {
  max-width: 240px;
  margin: 2em 0 0 auto;
}
/*=================================================
　lower_理念・行動方針
===================================================*/
.lower_leadTtl {
  text-align: center;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em;
  color: #333;
  letter-spacing: 0.1em;
}
.lower_leadTtl span {
  color: #0E40A5;
}
@media screen and (min-width: 767px) {
  .lower_leadTtl {
    font-size: 1.6em;
  }
}
/* 理念
------------------------------------------ */
.lower_visionWrap {
  margin: 2em 0;
  position: relative;
  min-height: 430px;
  /*
    .lower_leadTtl {
		text-align: justify;
	    @include mq(md) {
		   text-align: center;
	    }
    }
*/
}
@media screen and (min-width: 767px) {
  .lower_visionWrap {
    min-height: 540px;
  }
}
.lower_visionWrap:before {
  content: "";
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/philosophy_bg_241023.png) no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  max-width: 350px;
  height: 349px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .lower_visionWrap:before {
    top: 0px;
    max-width: 550px;
    height: 549px;
  }
}
.lower_visionWrap .secTtlBox {
  margin-bottom: 2.4em;
}
@media screen and (min-width: 767px) {
  .lower_visionWrap {
    margin: 3em 0;
    background-size: 90%;
  }
}
/* 行動方針
------------------------------------------ */
.lower_missionWrap {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/10/mission_bg-scaled.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 767px) {
  .lower_missionWrap {
    padding-top: 90px;
    padding-bottom: 110px;
  }
}
.lower_missionWrap .secTtlBox {
  margin-bottom: 2.4em;
}
@media screen and (min-width: 767px) {
  .lower_missionWrap .textBox p {
    text-align: center;
  }
}
/* 品質目標
------------------------------------------ */
.lower_qualityGoalsWrap {
  background: #F4F5F6;
}
.lower_qualityGoalsWrap .secTtlBox {
  margin-bottom: 2.4em;
}
.lower_qualityGoalsWrap .qualityPolityArea .lower_mainTtl {
  text-align: center;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.lower_qualityPolicysWrap ul.qualityPolityList li {
  margin-bottom: 1em !important;
  text-align: justify;
  padding-left: 1em;
  background: #FFF;
  border: 1px solid #0E40A5 !important;
  padding: 1.2em;
}
@media screen and (min-width: 767px) {
  .lower_qualityPolicysWrap ul.qualityPolityList li {
    padding: 2em 1.2em;
    margin-bottom: 1.4em !important;
    text-align: center;
  }
}
.lower_qualityPolicysWrap ul.qualityPolityList li:last-child {
  margin-bottom: 0 !important;
}
/*=================================================
　lower_会社概要
===================================================*/
/* 事業所案内
------------------------------------------ */
.lower_officeWrap .ulSubTtl {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em !important;
  padding-bottom: 0.5em !important;
  margin-bottom: 1.2em !important;
  border-bottom: 1px solid #193265 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .lower_officeWrap .ulSubTtl {
    font-size: 1.8em !important;
    margin-bottom: 1.4em !important;
  }
}
.lower_officeWrap .ulSubTtl span {
  color: #193265;
  font-size: 0.6em;
  display: inline-block;
  margin-top: 0.5em;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .lower_officeWrap .ulSubTtl span {
    margin-left: 1em;
  }
}
.lower_officeWrap .itemBox {
  margin-bottom: 5em;
}
.lower_officeWrap .itemBox:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .lower_officeWrap .itemBox .officeArea {
    margin-bottom: 2em;
  }
}
a[href^="tel:"]:not(.header__nav_contact a) {
  color: #333;
  font-weight: 700;
}
/* 役員
------------------------------------------ */
.lower_officerWrap .profBox {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.lower_officerWrap .profBox .imgBox {
  margin-bottom: 0.5em;
}
.lower_officerWrap .profBox .nameBox p {
  margin-bottom: 0;
  font-weight: 600;
}
.lower_officerWrap .profBox .nameBox .position {
  color: #193265;
  line-height: 1.6;
}
.lower_officerWrap .profBox .nameBox .name {
  font-size: 1.2em;
}
/* 沿革
------------------------------------------ */
.lower_historyWrap {
  background-color: #F4F5F6;
}
/* タイムライン
------------------------------------------ */
.timeline > li {
  margin-bottom: 1.4em !important;
  border-bottom: 1px solid #193265;
}
@media screen and (min-width: 767px) {
  .timeline > li {
    display: flex;
    border-bottom: none;
    margin-bottom: 0 !important;
  }
}
.timeline > li .timelineDate {
  color: #193265;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .timeline > li .timelineDate {
    width: 150px;
    font-size: 0.9em;
    margin-bottom: 2.4em;
  }
}
.timeline > li .timelineTxt p {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1.4em;
}
@media screen and (min-width: 767px) {
  .timeline > li .timelineTxt {
    width: 80%;
    border-left: 1px solid #193265;
    padding-left: 3em;
    position: relative;
  }
  .timeline > li .timelineTxt:before {
    content: "";
    width: 16px;
    height: 16px;
    background: #FFF;
    border: 1px solid #193265;
    position: absolute;
    left: -8px;
    top: 0;
    border-radius: 100%;
  }
}
.descriptionListContainer.descriptionList02 dl {
  margin-bottom: 2em;
}
.descriptionListContainer.descriptionList02 dd {
  padding: 1.6em 1em;
}
@media screen and (min-width: 767px) {
  .descriptionListContainer.descriptionList02 dd {
    padding: 2em 1em;
  }
}
.descriptionListContainer.descriptionList02 .linkTtl {
  color: #0E40A5;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.descriptionListContainer.descriptionList02 .logoImg {
  max-width: 200px;
}
.descriptionListContainer.descriptionList02 a.extLink {
  font-weight: normal;
}
.lower_partnerWrap dd {
  padding: 1.6em 1em;
  display: grid;
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .lower_partnerWrap dd {
    padding: 2em 1em;
    grid-template-columns: 200px 1fr;
    gap: 3em;
  }
}
.logoGrid {
  padding: 1.6em 1em;
  display: grid;
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .logoGrid {
    padding: 2em 1em;
    grid-template-columns: 200px 1fr;
    gap: 3em;
  }
}
.logoGrid .logoImg {
  max-width: 200px;
}
strong {
  color: #0E40A5;
}
.page-id-2764 .entry-content {
  margin-top: 0;
}
.entry-content {
  margin-top: 0;
}
.page .article-header {
  display: none;
}
/*=================================================
　lower_ページ内リンクレイアウト
===================================================*/
/* 公式ページページ内リンク
------------------------------------------ */
.lower_pageNavWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.lower_pageNavWrap .pageNav {
  width: 90%;
  position: relative;
  left: 0;
  z-index: 1;
  padding: 1em;
  background-color: #0E40A5;
  color: #FFF;
  font-size: 0.8em;
}
@media screen and (min-width: 767px) {
  .lower_pageNavWrap .pageNav {
    padding: 2em 3% 2em 5%;
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .lower_pageNavWrap .pageNav {
    padding: 4em 3% 4em 5%;
  }
}
.lower_pageNavWrap .pageNav .pageNavList {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 767px) {
  .lower_pageNavWrap .pageNav .pageNavList {
    display: flex;
    flex-wrap: wrap;
  }
}
.lower_pageNavWrap .pageNav .pageNavList .pageNavItem {
  position: relative;
  margin-left: 1em;
  padding: 0.5em 0 0.5em 1em;
}
@media screen and (min-width: 767px) {
  .lower_pageNavWrap .pageNav .pageNavList .pageNavItem {
    margin-left: 1em;
    padding-left: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .lower_pageNavWrap .pageNav .pageNavList .pageNavItem {
    margin-left: 2em;
    padding-left: 2em;
  }
}
.lower_pageNavWrap .pageNav .pageNavList .pageNavItem::after {
  content: "";
  position: absolute;
  top: calc(50% - .6em);
  left: 0;
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: #FFF;
  transform: rotate(40deg);
}
@media screen and (min-width: 767px) {
  .lower_pageNavWrap .pageNav .pageNavList .pageNavItem:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .lower_pageNavWrap .pageNav .pageNavList .pageNavItem:first-child::after {
    display: none;
  }
}
.lower_pageNavWrap .pageNav .pageNavList .pageNavItem .textLink {
  display: inline-block;
  color: #FFF;
  line-height: 2;
  padding: 0 0.5em;
}
/* 採用ページページ内リンク
------------------------------------------ */
.recruitMv {
  display: grid;
  place-content: center;
}
.page-id-693 .lower_pageNavWrap .pageNav, .parent-pageid-693 .lower_pageNavWrap .pageNav {
  background-color: #0098BD;
}
.lower_patentWrap {
  background-color: #F4F5F6;
}
.lower_patentWrap .descriptionListContainer dl dt {
  background: #FFF;
}
.lower_patentWrap .descriptionListContainer dl dd .smBtn {
  margin-top: 0.5em;
}
.alignResponsive p {
  text-align: justify;
}
@media screen and (min-width: 767px) {
  .alignResponsive p {
    text-align: center;
  }
}
.lower_contactWrap .lineBox .textBox {
  margin-bottom: 1em;
}
@media screen and (min-width: 767px) {
  .lower_contactWrap .lineBox .textBox {
    margin-bottom: 2em;
  }
}
.lower_contactWrap .telBtn {
  max-width: 480px;
  margin: 0 auto 0.5em;
}
.lower_contactWrap .noteTxt {
  text-align: center;
}
.lower_contactWrap.phon .lineBox {
  border: 1px solid #193265;
  background-color: #FFF;
  padding: 2em 1.2em;
}
@media screen and (min-width: 767px) {
  .lower_contactWrap.phon .lineBox {
    padding: 2em;
  }
}
.lower_contactWrap.phon .lineBox .subTtl_02 {
  text-align: center;
  margin-bottom: 1.4em !important;
}
.lower_contactWrap.form {
  background-color: rgba(14, 64, 165, 0.1);
}
.noteTxt {
  font-size: 0.7em;
}
@media screen and (min-width: 767px) {
  .noteTxt {
    font-size: 0.9em;
  }
}
/* 全体的なリスト設定 */
.lower_privacyWrap .itemBox {
  margin-bottom: 4em;
}
.lower_privacyWrap .itemBox:last-child {
  margin-bottom: 0;
}
.lower_privacyWrap .itemBox .underlineTtl {
  margin-bottom: 1em !important;
}
/* 親リストと入れ子リストを区別 */
.numOuterList {
  list-style-type: none;
  counter-reset: list-counter;
}
.numOuterList > li {
  counter-increment: list-counter;
  margin-bottom: 0.8em !important;
  text-indent: 0;
  padding-left: 2.4em !important;
  position: relative;
  text-align: justify;
  /* 第一レベルの入れ子リスト: 1. 2. 3. */
  /* 第二レベルの入れ子リスト: ⅰ. ⅱ. ⅲ. */
}
.numOuterList > li::before {
  content: "（" counter(list-counter) "）";
  /* (1), (2), (3) 表示 */
  position: absolute;
  left: 0;
}
.numOuterList > li .numNestedList-1 {
  list-style-type: decimal;
  padding-left: 2em;
  /* 親リストより少し多めにインデント */
  text-indent: 0;
  /* インデントリセット */
  margin-top: 0.3em;
}
.numOuterList > li .numNestedList-1 > li {
  margin-bottom: 0.5em !important;
  padding-left: 0;
}
.numOuterList > li .numNestedList-2 {
  list-style-type: lower-roman;
  padding-left: 2.4em;
  /* 第二レベルリストのインデント */
  text-indent: 0;
  margin-top: 0.3em;
}
.numOuterList > li .numNestedList-2 > li {
  margin-bottom: 0.5em !important;
  padding-left: 0;
}
/*=================================================
　共通_コンタクトフォーム
===================================================*/
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em !important;
}
.cf7__list p {
  margin-bottom: 0;
}
.cf7__list dt {
  width: 100%;
  padding: 15px 0 10px 0;
  font-family: "ゴシックMB101 B";
  color: #193265;
}
.cf7__list dt:nth-of-type(n + 2) {
  margin-top: 15px;
}
@media screen and (min-width: 767px) {
  .cf7__list dt {
    width: 28%;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .cf7__list dt:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}
.cf7__list dd {
  width: 100%;
}
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 0;
}
@media screen and (min-width: 767px) {
  .cf7__list dd {
    width: 70%;
  }
  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}
.cf7__list dd input[type="text"], .cf7__list dd input[type="tel"], .cf7__list dd input[type="email"], .cf7__list dd textarea, .cf7__list dd select {
  border-radius: 0;
  width: 100%;
  padding: 15px 20px;
}
.cf7__list dd input::placeholder, .cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}
.cf7__list dd textarea {
  field-sizing: content;
  min-height: 200px;
}
.cf7__list dd .wpcf7-checkbox, .cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}
.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}
.cf7__required, .cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 10px;
  vertical-align: 1px;
}
.cf7__required {
  background: #0E40A5;
}
.cf7__optional {
  background: #a5a5a5;
}
.cf7__button {
  text-align: center;
}
input[type="radio"] {
  position: relative;
  cursor: pointer;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  background: #FFF;
  vertical-align: -3px;
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #193265;
}
input[type="submit"] {
  max-width: 380px;
  width: 100%;
  height: 70px;
  background: #FFF;
  font-family: "ゴシックMB101 B";
  color: #0E40A5;
  border: 1px solid #0E40A5;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  transition: 0.3s ease-in-out;
  border-radius: 0;
}
input[type="submit"]:hover {
  color: #FFF;
  background: #0E40A5;
}
.wpcf7-spinner {
  display: none;
}
.wpcf7-list-item {
  margin-bottom: 2em;
}
.recaptcha {
  font-size: 0.8em;
  margin-top: 3em;
  text-align: center;
}
/*=================================================
　recruit_共通レイアウト
===================================================*/
/*=================================================
　採用共通_固定ボタン
===================================================*/
.fixdeBtn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .fixdeBtn {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(45deg, #0098bd 60%, #6ecee5);
  }
  .fixdeBtn a {
    color: #FFF;
    text-align: center;
    display: grid;
    min-height: 73px;
    place-content: center;
    font-family: "ゴシックMB101 B";
    padding: 14px 10px;
  }
  .fixdeBtn a img {
    width: 110px;
  }
}
.accordionWrap details {
  margin-bottom: 1.4em;
}
.accordionWrap details summary {
  display: block;
  position: relative;
}
.accordionWrap details summary::-webkit-details-marker {
  display: none;
}
.accordionWrap details summary .summary_inner {
  display: block;
  cursor: pointer;
  font-weight: 700;
  background-color: #193265;
  color: #FFF;
  padding: 1.2em 3em 1.2em 1.2em;
}
@media screen and (min-width: 767px) {
  .accordionWrap details summary .summary_inner {
    padding-right: 5em;
    padding-left: 2em;
  }
}
.accordionWrap details summary .iconWrap {
  position: absolute;
  right: 20px;
  top: 50%;
}
.accordionWrap details summary .iconWrap .icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
.accordionWrap details summary .iconWrap .icon:before, .accordionWrap details summary .iconWrap .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #FFF;
}
.accordionWrap details summary .iconWrap .icon::before {
  left: 0;
  transform: rotate(45deg);
}
.accordionWrap details summary .iconWrap .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.accordionWrap details.is-opened .icon {
  transform: rotate(180deg);
}
.accordionWrap details .content {
  overflow: hidden;
  background-color: rgba(177, 202, 255, 0.1);
}
.accordionWrap details .content .content_inner {
  padding: 1.4em 1.2em;
}
@media screen and (min-width: 767px) {
  .accordionWrap details .content .content_inner {
    padding: 3em 2em;
  }
}
.entryBoxWrap .entryBtnList {
  margin-bottom: 1em;
}
@media screen and (min-width: 767px) {
  .entryBoxWrap .entryBtnList {
    margin-bottom: 2em;
  }
}
.entryBoxWrap .entryBtnList .entryBtnItem.boxBtn a .ttlBox {
  line-height: 1.6;
  margin-bottom: 0;
  pointer-events: none;
}
.entryBoxWrap .entryBtnList .entryBtnItem.boxBtn a .ttlBox .ja_text {
  font-size: 1.3em !important;
  display: block;
}
.entryBoxWrap .entryBtnList .entryBtnItem.boxBtn a .ttlBox .en_text {
  font-size: 1em;
}
.entryBoxWrap .internBtn a {
  min-height: 70px !important;
}
/* accordion_faq（採用によくある質問）
------------------------------------------ */
.recruit_faqWrap .area {
  padding-bottom: 0;
}
.recruit_faqWrap .accordionWrap summary .summary_inner {
  padding: 1em 3em 1em 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_faqWrap .accordionWrap summary .summary_inner {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    padding-right: 5em;
  }
}
.recruit_faqWrap .accordionWrap summary .summary_inner:before {
  content: "Q.";
  color: #FFF;
  margin-right: 0.8em;
}
.recruit_faqWrap .accordionWrap .content {
  background-color: #FFF;
}
.recruit_faqWrap .accordionWrap .content .content_inner {
  display: flex;
  padding: 1.2em 3em 1.2em 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_faqWrap .accordionWrap .content .content_inner {
    padding-top: 1.4em;
    padding-bottom: 1.4em;
  }
}
.recruit_faqWrap .accordionWrap .content .content_inner:before {
  content: "A.";
  color: #0098BD;
  margin-right: 0.8em;
  font-weight: 700;
}
/* accordion_openPositions（募集職種）
------------------------------------------ */
@media screen and (min-width: 767px) {
  .recruit_openPositionsWrap .accordionWrap details {
    margin-bottom: 2em;
  }
}
.recruit_openPositionsWrap .accordionWrap details summary .summary_inner {
  padding-right: 1em;
}
.recruit_openPositionsWrap .accordionWrap details summary .summary_inner span {
  font-size: 0.8em;
}
@media screen and (min-width: 767px) {
  .recruit_openPositionsWrap .accordionWrap details summary .summary_inner {
    font-size: 1.2em;
  }
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner {
  padding-top: 3em;
  padding-bottom: 3em;
  display: flex;
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo th {
  background-color: #E9EDF7 !important;
  padding: 0.5em 1em;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 767px) {
  .recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo th {
    padding: 1.4em;
  }
}
@media screen and (min-width: 767px) {
  .recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo th {
    background-color: transparent !important;
    width: 18%;
  }
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td {
  padding: 1em 0.5em 2em;
  font-size: 0.9em;
}
@media screen and (min-width: 767px) {
  .recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td {
    padding: 1.6em 0;
    width: 80%;
    font-size: 1em;
  }
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td > ul {
  margin-bottom: 0;
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td > ul li {
  margin-bottom: 2em !important;
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td > ul li:last-child {
  margin-bottom: 0 !important;
}
.recruit_openPositionsWrap .accordionWrap details .content .content_inner .tableInfo td > ul li h4.smTtl {
  font-size: 1.1em !important;
}
/*=================================================
採用TOPページレイアウト
===================================================*/
/* 採用TOP_リードコンテンツ
------------------------------------------ */
.recruit_leadContentWrap {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.recruit_leadContentWrap.contentWrap {
  padding-bottom: 0;
}
@media screen and (min-width: 767px) {
  .recruit_leadContentWrap.contentWrap {
    padding-top: 3em;
    padding-bottom: 5em;
  }
}
@media screen and (min-width: 1024px) {
  .recruit_leadContentWrap.contentWrap {
    padding-top: 5em;
  }
}
@media screen and (min-width: 767px) {
  .recruit_leadContentWrap.contentWrap .inner_xl {
    padding: 0 2em;
  }
}
/* 採用TOP_ニュース
------------------------------------------ */
.recruit_newsWrap .newsContents {
  background: #FFF;
  padding: 2em 1.2em;
  border: 1px solid #193265;
}
@media screen and (min-width: 767px) {
  .recruit_newsWrap .newsContents {
    padding: 2em 2em 2.6em;
  }
}
.recruit_newsWrap .newsContents .ttlArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
.recruit_newsWrap .newsContents .postList .titleArea:hover {
  background: transparent;
}
.recruit_newsWrap .newsContents .postList .titleArea:hover .title a {
  color: #193265;
}
/* 採用TOP_はじめに
------------------------------------------ */
.recruit_introWrap .swiper-slide {
  overflow: hidden;
  width: 100%;
}
.recruit_introWrap .swiper-container {
  width: 100%;
  overflow: hidden;
}
/*
Swiperのズレ補正：
全画面サイズで-1px補正を適用。
この設定は、特定のSwiperバージョンで発生するズレを解消するため。
問題が解決したら、このルールを再評価してください。
*/
.introSliderWrap {
  transition: background-color 0.3s ease, color 0.3s ease;
  /* 1枚目のスライダー用スタイル */
}
.introSliderWrap .introSlider .swiper {
  margin-left: -1px;
}
.introSliderWrap .introSlider .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  top: -60px;
}
@media screen and (min-width: 767px) {
  .introSliderWrap .introSlider .slider-controls {
    top: -80px;
  }
}
.introSliderWrap .introSlider .swiper-pagination-fraction {
  width: auto;
  color: #193265;
}
.introSliderWrap.first-slide-active {
  /* 1枚目スライド時の白い矢印 */
}
.introSliderWrap.first-slide-active .custom-prev, .introSliderWrap.first-slide-active .custom-next {
  color: #FFF;
  /* ページネーションと矢印を白に変更 */
  background-color: #193265;
  /* 矢印ボタン背景をネイビーブルー */
}
.introSliderWrap.first-slide-active .custom-pagination {
  color: #FFF;
}
.introSliderWrap.first-slide-active .custom-prev.white-arrow {
  border: 1px solid #FFF;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
  /* 左向き白矢印 */
}
.introSliderWrap.first-slide-active .custom-next.white-arrow {
  border: 1px solid #FFF;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z"/></svg>');
  /* 右向き白矢印 */
}
.introSliderWrap .custom-pagination {
  transition: color 0.3s ease, background-color 0.3s ease;
}
.custom-prev, .custom-next {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border: 1px solid #193265;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .custom-prev, .custom-next {
    width: 55px;
    height: 55px;
  }
}
.custom-pagination {
  margin: 0 20px;
  font-size: 1.2em;
  font-weight: 700;
  color: #193265;
  text-align: center;
}
/* SVGアイコンを利用 */
.custom-prev {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23193265"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.custom-next {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23193265"><path d="M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.recruit_messageWrap .featuresArea .rec_secTtl, .recruit_messageWrap .seekArea .rec_secTtl, .recruit_trainingWrap .trainingSliderWrap .rec_secTtl, .recruit_welfareWrap .rec_secTtl {
  position: relative;
  font-family: "ゴシックMB101 B";
  color: #193265;
  text-align: left;
  font-size: 1.4em !important;
  letter-spacing: 0.1em;
  margin-bottom: 2em !important;
  margin-bottom: 1em !important;
}
@media screen and (min-width: 767px) {
  .recruit_messageWrap .featuresArea .rec_secTtl, .recruit_messageWrap .seekArea .rec_secTtl, .recruit_trainingWrap .trainingSliderWrap .rec_secTtl, .recruit_welfareWrap .rec_secTtl {
    font-size: 1.806em !important;
  }
}
.recruit_messageWrap .featuresArea .rec_secTtl::after, .recruit_messageWrap .seekArea .rec_secTtl::after, .recruit_trainingWrap .trainingSliderWrap .rec_secTtl::after, .recruit_welfareWrap .rec_secTtl::after {
  content: "";
  display: block;
  width: 55px;
  height: 5px;
  border-radius: 30px;
  background-color: #0098BD;
  margin: 16px 0 0;
}
.descriptionText {
  font-family: "ゴシックMB101 B";
  color: #193265;
}
/* 採用TOP_採用メッセージ
------------------------------------------ */
.recruit_messageWrap .featuresArea .rec_secTtl, .recruit_messageWrap .seekArea .rec_secTtl {
  margin-bottom: 2em !important;
}
.recruit_messageWrap .messageArea .imgBox img {
  box-shadow: 6px 6px 60px 0px rgba(78, 109, 173, 0.2);
}
.recruit_messageWrap .seekArea .seekAreaListWrap {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/11/seek_list_img.jpg) no-repeat center center / cover;
  position: relative;
  min-height: 360px;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 767px) {
  .recruit_messageWrap .seekArea .seekAreaListWrap {
    min-height: 440px;
  }
}
.recruit_messageWrap .seekArea .seekAreaListWrap::before {
  content: "";
  position: absolute;
  border: 1px solid #FFF;
  width: 90%;
  display: block;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.recruit_messageWrap .seekArea .seekAreaText {
  color: #FFF;
  font-size: calc(clamp(2rem, 1.164rem + 3.57vw, 3.75rem));
  font-family: "ゴシックMB101 B";
  letter-spacing: 0.1em;
  text-align: center;
}
[lang="en"] .textBox p {
  text-align: left;
}
/* 採用TOP_KLECで働く魅力
------------------------------------------ */
.recruit_charmWrap .charmItem {
  margin-bottom: 4em;
}
.recruit_charmWrap .charmItem:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .charmItem {
    margin-bottom: 6em;
  }
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .charmItem .flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 3em;
  }
}
.recruit_charmWrap .charmItem:nth-child(even) {
  flex-direction: row-reverse;
}
.recruit_charmWrap .charmItem:nth-of-type(1) .imgArea {
  background: url("https://m5m.me/klec/wp-content/uploads/2024/11/recruit_charm_01.jpg") no-repeat center / cover;
  background-position: center -40px;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .charmItem:nth-of-type(1) .imgArea {
    background-position: 0;
  }
}
.recruit_charmWrap .charmItem:nth-of-type(2) .imgArea {
  background: url("https://m5m.me/klec/wp-content/uploads/2024/11/recruit_charm_02.jpg") no-repeat center / cover;
}
.recruit_charmWrap .charmItem:nth-of-type(3) .imgArea {
  background: url("https://m5m.me/klec/wp-content/uploads/2024/11/recruit_charm_03.jpg") no-repeat center / cover;
}
.recruit_charmWrap .charmItem:nth-of-type(4) .imgArea {
  background: url("https://m5m.me/klec/wp-content/uploads/2024/11/recruit_charm_04.jpg") no-repeat top / cover;
}
.recruit_charmWrap .charmItem:nth-of-type(5) .imgArea {
  background: url("https://m5m.me/klec/wp-content/uploads/2024/11/recruit_charm_05.jpg") no-repeat center / cover;
}
.recruit_charmWrap .rec_accent {
  position: relative;
  font-family: "ゴシックMB101 B";
  color: #193265;
  text-align: left;
  font-size: 1.4em !important;
  letter-spacing: 0.1em;
  margin-bottom: 2em !important;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .rec_accent {
    font-size: 1.806em !important;
  }
}
.recruit_charmWrap .rec_accent::after {
  content: "";
  display: block;
  width: 55px;
  height: 5px;
  border-radius: 30px;
  background-color: #0098BD;
  margin: 16px 0 0;
}
.recruit_charmWrap .rec_accent span {
  display: inline-block;
  font-size: 2em;
  line-height: 1;
}
.recruit_charmWrap .leadArea {
  margin-bottom: 3em;
}
.recruit_charmWrap .detailArea .imgBox {
  margin-bottom: 0.8em;
}
.recruit_charmWrap .textArea {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .recruit_charmWrap .textArea {
    width: 52%;
  }
}
.recruit_charmWrap .textArea .rec_accent {
  margin-bottom: 1em !important;
}
.recruit_charmWrap .imgArea {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 280px;
  margin-bottom: 1.6em;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .imgArea {
    height: 530px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit_charmWrap .imgArea {
    height: 530px;
    max-width: 420px;
    margin-bottom: 0;
  }
}
.recruit_charmWrap .hojokinArea .hojokinList {
  counter-reset: list-counter;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .hojokinArea .hojokinList {
    display: flex;
    align-items: center;
    margin-top: 2em;
  }
}
.recruit_charmWrap .hojokinArea .hojokinList .title {
  color: #193265;
  font-size: 1.2em;
  font-weight: 700;
}
.recruit_charmWrap .hojokinArea .iconPlus {
  width: 40px;
  margin: 1.6em auto;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .hojokinArea .iconPlus {
    margin: 1.6em;
  }
}
.recruit_charmWrap .hojokinArea .itemBox {
  position: relative;
  padding-left: 74px;
  margin-bottom: 1em;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .hojokinArea .itemBox {
    margin-bottom: 1.6em;
    padding-left: 100px;
  }
}
.recruit_charmWrap .hojokinArea .itemBox:before {
  content: "";
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: #FFF;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4em;
  color: #0098BD;
  box-shadow: 0px 3px 32px 0px rgba(78, 109, 173, 0.2);
  counter-increment: list-counter;
  content: counter(list-counter) "";
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .hojokinArea .itemBox:before {
    font-size: 1.8em;
    width: 72px;
    height: 72px;
  }
}
.recruit_charmWrap .hojokinArea .itemBox.alpha:before {
  content: "α";
}
.recruit_charmWrap .detailArea {
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}
.recruit_charmWrap .lineBox {
  border: 1px solid #193265;
  background-color: #FFF;
  padding: 2em 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_charmWrap .lineBox {
    padding: 2em;
  }
}
.recruit_charmWrap .lineBox ul.grid3_1 {
  gap: 1em;
}
.recruit_charmWrap .lineBox ul.grid3_1 li {
  padding-left: 20px;
  list-style: disc;
  list-style-position: inside;
}
/* 採用TOP_人材育成・キャリアプラン
------------------------------------------ */
.recruit_trainingWrap {
  overflow: hidden;
}
.recruit_trainingWrap .trainingArea {
  margin-bottom: 8em;
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap {
  position: relative;
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem {
  background: #FFF;
  padding: 1.6em;
  border-radius: 8px;
  box-shadow: 6px 6px 60px 0px rgba(78, 109, 173, 0.2);
}
@media screen and (min-width: 767px) {
  .recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem {
    padding: 2em 2.4em;
  }
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem .textBox p {
  font-size: 0.9em;
}
@media screen and (min-width: 767px) {
  .recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem .textBox p {
    font-size: 1em;
  }
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem .grid2_1 {
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .recruit_trainingWrap .trainingArea .trainingSliderWrap .slideItem .grid2_1 {
    grid-template-columns: 1fr 35%;
    gap: 3em;
  }
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .swiper-pagination {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-prev, .recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-next {
  position: absolute;
  z-index: 9999;
  top: 50%;
  transform: translateY(-50%);
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-prev {
  left: -16px;
}
@media screen and (min-width: 1024px) {
  .recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-prev {
    left: 20px;
  }
}
.recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-next {
  right: -16px;
}
@media screen and (min-width: 1024px) {
  .recruit_trainingWrap .trainingArea .trainingSliderWrap .custom-next {
    right: 20px;
  }
}
.recruit_trainingWrap .careerArea .bgBox {
  background: #F4F5F6;
  padding: 2em 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_trainingWrap .careerArea .bgBox {
    padding: 3em 2em;
  }
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox {
  position: relative;
  gap: 1em;
  border-bottom: 1px dashed #0098BD;
  padding: 1.6em 0;
}
@media screen and (min-width: 767px) {
  .recruit_trainingWrap .careerArea .careerListWrap .careerBox {
    grid-template-columns: 140px 1fr;
    padding: 2em 1em;
  }
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox:first-child {
  border-top: 1px dashed #0098BD;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerIndex {
  color: #193265;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerIndex span {
  font-size: 2em;
  padding-right: 0.1em;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerList .listTtl {
  color: #193265;
  font-weight: 700;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerList.grid2_1 {
  gap: 0 1em;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerList.grid2_1 ul li {
  text-indent: -1em !important;
  padding-left: 1em !important;
  text-align: justify;
}
.recruit_trainingWrap .careerArea .careerListWrap .careerBox .careerList.grid2_1 ul li > ul {
  margin-left: 1em;
}
/* 採用TOP_福利厚生・手当
------------------------------------------ */
.recruit_welfareWrap .itemBox {
  margin-bottom: 4em;
}
.recruit_welfareWrap .welfareList {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
@media screen and (min-width: 767px) {
  .recruit_welfareWrap .welfareList {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.recruit_welfareWrap .welfareList li {
  border: 1px solid #DBDBDB;
  font-family: "ゴシックMB101 B";
  border-radius: 4px;
  text-align: center;
  min-height: 70px;
  display: grid;
  place-items: center;
  color: #193265;
  line-height: 1.6;
  background-color: #FFF;
}
@media screen and (min-width: 767px) {
  .recruit_welfareWrap .welfareList li {
    font-size: 1.1em;
    min-height: 90px;
  }
}
.recruit_welfareWrap .lineBox {
  border: 1px solid #193265;
  background-color: #FFF;
  padding: 2em 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_welfareWrap .lineBox {
    padding: 2em;
  }
}
/* 採用TOP_KLECについて、もっと知る
------------------------------------------ */
.recruit_learnMoreWrap .postCard {
  padding-top: 60px;
}
.recruit_learnMoreWrap .postCard .slide-media {
  margin-bottom: 0;
}
.recruit_learnMoreWrap .postCard .swiper-slide {
  background: #FFF;
  box-shadow: 6px 6px 60px 0px rgba(78, 109, 173, 0.2);
}
/* 採用TOP_採用によくある質問
------------------------------------------ */
.recruit_faqWrap .tabList {
  padding: 0 0 2em !important;
  justify-content: flex-start;
}
@media screen and (min-width: 767px) {
  .recruit_faqWrap .tabList {
    justify-content: center;
  }
}
.recruit_faqWrap .tabItem {
  flex: 0 0 50% !important;
  /* 各タブを正確に50%幅に */
  box-sizing: border-box;
  padding: 5px;
  /* gapの補正として使用 */
  text-align: center;
}
@media screen and (min-width: 767px) {
  .recruit_faqWrap .tabItem {
    flex: 0 0 calc(33.333% - 16px) !important;
    /* PC: 3分割 */
    padding: 0 10px;
    /* gapの補正として使用 */
  }
}
.recruit_faqWrap .tabItem a {
  display: block;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #193265;
  color: #193265;
  font-size: 0.9em;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.recruit_faqWrap .tabItem a:hover {
  color: #193265;
}
.recruit_faqWrap .tabItem.active a {
  background-color: #193265;
  color: #FFF;
}
.bandWrap {
  background: #2E4269;
}
/*=================================================
　recruit_top-intervie
===================================================*/
.recruit_interviewWrap {
  position: relative;
  background-color: #F4F5F6;
}
.recruit_supportWrap .imgBox.chart {
  margin-bottom: 1em;
}
.recruit_supportWrap .imgBox.chart img {
  max-width: 100%;
  min-width: 840px;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .recruit_supportWrap .imgBox.chart img {
    min-width: 1100px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit_supportWrap .imgBox.chart img {
    min-width: inherit;
  }
}
/*=================================================
　scrollbar
===================================================*/
.scrollBox {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.scrollBox::-webkit-scrollbar {
  /*スクロールバー全体の高さ*/
  height: 8px;
}
.scrollBox::-webkit-scrollbar-track {
  /*スクロールバーの動く部分*/
  background: #eee;
  border-radius: 30px;
}
.scrollBox::-webkit-scrollbar-thumb {
  /*スクロールバー全体の背景*/
  background: #aaa;
  border-radius: 30px;
  border: none;
}
.scrollBox::-webkit-scrollbar-thumb:hover {
  /*スクロールバーの動く部分のホバー（マウスオーバー）*/
  background: #999;
}
/*=================================================
　recruit_社員インタビュー
===================================================*/
.interviewTxtWrap {
  margin: 2.4em 0;
}
@media screen and (min-width: 767px) {
  .interviewTxtWrap {
    margin: 3em 0;
  }
}
.interviewTxtWrap:last-child {
  margin-bottom: 0;
}
.interviewTxtWrap .imgBox {
  margin-bottom: 1em;
}
.interviewTxtWrap h3.interviewTtl {
  letter-spacing: 0;
}
.interviewBox.bgBox {
  background: rgba(177, 227, 239, 0.18);
  padding: 2em 1.4em;
}
@media screen and (min-width: 767px) {
  .interviewBox.bgBox {
    padding: 4em 4em;
  }
}
.interviewBox.bgBox .interviewTxtWrap {
  margin-top: 0;
}
/*=================================================
　recruit_職種紹介
===================================================*/
.recruit_supportWrap .leadTxt {
  color: #193265;
  font-family: "ゴシックMB101 B";
}
@media screen and (min-width: 767px) {
  .recruit_supportWrap .leadTxt {
    font-size: 1.2em;
  }
}
.recruit_careersWrap .leadTxt {
  margin: 2em 0;
}
.recruit_careersWrap .leadTxt p {
  color: #193265;
  font-weight: 700;
}
.recruit_careersWrap .accordionWrap .content .areaWrap {
  margin-bottom: 3em;
}
@media screen and (min-width: 767px) {
  .recruit_careersWrap .accordionWrap .content .areaWrap {
    margin-bottom: 5em;
  }
}
.recruit_careersWrap .accordionWrap .content .areaWrap:last-child, .recruit_careersWrap .accordionWrap .content .areaWrap:only-child {
  margin-bottom: 0;
}
.recruit_careersWrap .accordionWrap .content .itemBox {
  margin-bottom: 3em;
}
.recruit_careersWrap .accordionWrap .content .itemBox:last-child {
  margin-bottom: 0;
}
.recruit_careersWrap .accordionWrap .shadow {
  box-shadow: 6px 6px 15px -10px #8f8f8f;
}
.workFlowArea .timeline > li {
  position: relative;
  padding: 1em 0;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #DBDBDB;
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li {
    padding: 0;
    border-bottom: none;
  }
}
.workFlowArea .timeline > li .timelineDate, .workFlowArea .timeline > li .timelineTxt > div {
  color: #333;
  font-size: 1em;
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li .timelineDate, .workFlowArea .timeline > li .timelineTxt > div {
    font-size: 1.1em;
    line-height: 1;
  }
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li .timelineDate {
    width: 80px;
    margin-bottom: 2.4em;
  }
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li .timelineTxt {
    width: 66%;
    padding-left: 3%;
    padding-right: 3%;
    position: relative;
  }
}
.workFlowArea .timeline > li .timelineTxt > div {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.workFlowArea .timeline > li .timelineTxt p {
  margin-bottom: 0;
  line-height: 1.8;
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li .timelineTxt p {
    margin-bottom: 3em;
  }
}
.workFlowArea .timeline > li:last-child .timelineTxt p {
  margin-bottom: 0;
}
.workFlowArea .timeline > li .timelineImage {
  width: 80%;
  margin: 1em auto 0.6em;
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li .timelineImage {
    position: absolute;
    right: 0px;
    top: 0;
    width: 22%;
    margin: 0;
  }
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li:last-child .timelineDate {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 767px) {
  .workFlowArea .timeline > li:last-child .timelineTxt {
    border-left: none;
  }
}
/* 採用LOWER_数字で見るKLEC
------------------------------------------ */
.recruit_numbersWrap .rec_secTtlBox p.ja_ttl {
  font-size: 1.6em;
  margin-bottom: 0.5em;
}
.recruit_numbersWrap ul.numbersList li img {
  box-shadow: 6px 6px 30px 0px rgba(78, 109, 173, 0.2);
}
/*=================================================
　recruit_会社説明会/インターンシップ
===================================================*/
.sessionWrap .bgBox, .internshipWrap .bgBox {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(177, 227, 239, 0.18);
  padding: 1.2em 1.2em;
}
@media screen and (min-width: 767px) {
  .sessionWrap .bgBox, .internshipWrap .bgBox {
    padding: 2em 2em;
  }
}
.sessionWrap .bgBox ul, .internshipWrap .bgBox ul {
  margin-bottom: 0;
}
.sessionWrap .bgBox ul li, .internshipWrap .bgBox ul li {
  color: #193265;
  font-weight: 700;
  line-height: 2.4;
}
.sessionWrap .textBox p.boldTxt {
  color: #193265;
}
.eventTableWrapper {
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  overflow-x: auto;
  white-space: nowrap;
}
.eventTable {
  width: auto;
  min-width: 800px;
  /* 必要に応じて調整 */
  border-collapse: collapse;
  font-size: 1em;
  text-align: left;
  table-layout: fixed;
  /* 列幅を均等にする */
  margin-bottom: 0 !important;
}
@media screen and (min-width: 767px) {
  .eventTable {
    width: 100%;
  }
}
.eventTable th, .eventTable td {
  padding: 1.4em 1em;
  border: 1px solid #ddd;
  width: 25%;
  /* 4列なので、全列の幅を均等に */
  word-wrap: break-word;
  /* テキスト折り返し */
  white-space: normal;
  /* 必要に応じて折り返し */
  text-align: center;
}
@media screen and (min-width: 767px) {
  .eventTable th, .eventTable td {
    font-size: 1em;
  }
}
.eventTable th {
  background-color: rgba(14, 64, 165, 0.1) !important;
  font-weight: bold;
}
.eventTable tr:nth-child(even) {
  background-color: #f9f9f9;
}
.eventTable tr:hover {
  background-color: #f1f1f1;
}
.eventTable tbody tr td:first-child {
  font-weight: bold;
}
/*=================================================
　recruit_エントリー
===================================================*/
.recruit_entryFormWrap {
  background: linear-gradient(to bottom, rgba(0, 152, 189, 0.2) 60%, rgba(164, 232, 248, 0.2));
}
.recruit_entryFormWrap .lgText {
  color: #0E40A5;
  font-family: "ゴシックMB101 B";
  font-size: 1.4em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .recruit_entryFormWrap .lgText {
    font-size: 2em;
  }
}
.lineHorizontal {
  position: relative;
  display: inline-block;
  color: #193265;
  font-family: "ゴシックMB101 B";
  margin-bottom: 0.5em !important;
  text-align: justify;
  text-indent: 35px;
}
@media screen and (min-width: 767px) {
  .lineHorizontal {
    text-indent: 0;
    padding-left: 60px !important;
    margin-bottom: 1em !important;
  }
}
.lineHorizontal::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 25px;
  background-color: #0098BD;
  pointer-events: none;
  transform: translateY(calc(50% - 1px));
  top: calc(0.8em - 2px);
  transform: none;
}
@media screen and (min-width: 767px) {
  .lineHorizontal::before {
    width: 45px;
  }
}
.pageLinkWrap .pageLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
}
@media screen and (min-width: 767px) {
  .pageLinkWrap .pageLinks {
    gap: 2em;
  }
}
.pageLinkWrap .pageLinks a {
  width: 100%;
  text-align: center;
  font-family: "ゴシックMB101 B";
  color: #193265;
  position: relative;
  border-bottom: 1px solid #193265;
  text-align: left;
  font-size: 1.1em;
  line-height: 2.4;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .pageLinkWrap .pageLinks a {
    width: 270px;
  }
}
.pageLinkWrap .pageLinks a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #193265;
  border-bottom: 2px solid #193265;
}
.recruit_careersWrap:nth-child(odd) {
  background-color: rgba(177, 202, 255, 0.1);
}
.recruit_careersWrap:nth-child(odd) .accordionWrap details .content {
  background-color: #FFF;
}
/*=================================================
　recruit_募集要項
===================================================*/
/* 会社説明会エントリーボタン
------------------------------------------ */
.recruit_jobsessionEntryWrap {
  background: url(https://m5m.me/klec/wp-content/uploads/2024/11/recruit_entrybtn_bg-scaled.jpg) no-repeat center / cover;
}
@media screen and (min-width: 767px) {
  .recruit_jobsessionEntryWrap {
    text-align: center;
  }
}
.recruit_jobsessionEntryWrap .lgTtl {
  text-align: center;
  margin-bottom: 1em;
}
.recruit_jobsessionEntryWrap .boxBtn a {
  max-width: 680px;
  margin: 0 auto;
  background-color: #FFF;
  color: #0098BD;
  font-size: 1.2em;
}
@media screen and (min-width: 767px) {
  .recruit_jobsessionEntryWrap .boxBtn a {
    width: 80%;
    font-size: 1.6em;
  }
}
.recruit_jobsessionEntryWrap .boxBtn a::after {
  border-bottom: solid 1px #0098BD;
  border-right: solid 1px #0098BD;
}
.interviewProfile {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 767px) {
  .interviewProfile {
    width: 100%;
    margin: 0 auto;
  }
}
.body {
  animation: fadein 0.5s forwards;
  /*アニメーション指定*/
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  /*アニメーション開始時*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時*/
}
.bgBtm a {
  display: block;
  position: relative;
  text-align: center;
}
.bgBtm a .bgBtmText {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
  color: #FFF;
  font-family: "ゴシックMB101 B";
  line-height: 1.5;
  /* 行間の調整 */
  text-align: center;
  /* 中央揃え */
  letter-spacing: 0.1em;
  pointer-events: none;
  /* テキスト部分をクリック不可にする（必要に応じて） */
}
@media screen and (min-width: 767px) {
  .bgBtm a .bgBtmText {
    font-size: 1.8em;
  }
}
.bgBtm.career a .bgBtmText {
  text-shadow: 0 3px 20px rgba(14, 64, 165, 0.8);
}
.bgBtm.newGraduates a .bgBtmText {
  text-shadow: 0 3px 20px rgba(0, 152, 189, 0.8);
}
/* 404ページ*/
body.error404 #content {
  margin-top: 0;
}
body.error404 #main {
  width: 100%;
  padding-top: 0;
  margin: 0;
  border: none;
}
body.error404 #main .lowerMvWrap h2.en_Ttl {
  background-color: transparent;
}
body.error404 .page404 {
  margin-bottom: 50px;
}
body.error404 #sidebar {
  display: none;
}
/* [lang="en"] セレクタ用 */
[lang="en"] .body font {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
[lang="en"] .lower_qualityPolicysWrap ul.qualityPolityList li, [lang="en"] .timeline > li .timelineTxt p, [lang="en"] .lower_businessDetails ul.txtlist li p, [lang="en"] .lower_introWrap .summaryArea ul.txtlist li p, [lang="en"] .overseas.lower_introWrap .textBox p, [lang="en"] .talkTxtWrap .talkItem .talkTxt p {
  text-align: left;
}
[lang="en"] .lower_messageWrap .nameBox .name, [lang="en"] .recruit_messageWrap .messageArea .nameBox .name, [lang="en"] .lower_officerWrap .profBox.ceo .nameBox .name, [lang="en"] .lower_overviewWrap .tableInfo td.name {
  visibility: hidden;
  position: relative;
}
[lang="en"] .lower_messageWrap .nameBox .name::after, [lang="en"] .recruit_messageWrap .messageArea .nameBox .name::after, [lang="en"] .lower_officerWrap .profBox.ceo .nameBox .name::after, [lang="en"] .lower_overviewWrap .tableInfo td.name::after {
  content: "Kim Choulho";
  visibility: visible;
  font-family: initial;
  position: absolute;
  top: 0;
  left: 0;
}
[lang="en"] .lower_overviewWrap .tableInfo td.name::after {
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  [lang="en"] .lower_overviewWrap .tableInfo td.name::after {
    left: 1.4em;
  }
}
@media screen and (min-width: 767px) {
  [lang="en"] .tableInfo th {
    display: block;
  }
}
/*=================================================
　recruit_learnmore
===================================================*/
/* learnmore_一覧ページ
------------------------------------------ */
.learnMore_introWrap .rec_leadText {
  margin-bottom: 0;
}
.learnMore_linkWrap {
  background-image: linear-gradient(to bottom, rgba(0, 152, 189, 0.2) 60%, rgba(164, 232, 248, 0.2));
}
.learnMore_linkWrap .linkItem img {
  box-shadow: 6px 6px 60px 0px rgba(78, 109, 173, 0.2);
}
/* learnmore_入社1年目の先輩が語るKLEC/先輩社員に聞いた！KLECの魅力を大解剖
------------------------------------------ */
@media screen and (min-width: 767px) {
  .talksContentWrap {
    display: flex;
    justify-content: space-between;
  }
}
.learnMoreSidebar {
  background-color: rgba(177, 227, 239, 0.18);
  padding: 2em 1.4em;
}
@media screen and (min-width: 767px) {
  .learnMoreSidebar {
    position: sticky;
    top: 140px;
    height: 100vh;
    width: 35%;
    margin-right: 5%;
    padding: 3em 1.8em;
  }
}
@media screen and (min-width: 1024px) {
  .learnMoreSidebar {
    width: 30%;
  }
}
.learnMoreSidebar .pageLinks a {
  font-size: 1em;
  padding-right: 30px;
}
@media screen and (min-width: 767px) {
  .learnMoreSidebar .pageLinks a {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 1024px) {
  .learnMoreSidebar .pageLinks a {
    font-size: 1em;
  }
}
@media screen and (min-width: 767px) {
  .talksBodyWrap {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .talksBodyWrap {
    width: 65%;
  }
}
.talksBodyWrap .talkTxtWrap h2.ulSubTtl {
  font-size: calc(clamp(1.25rem, 0.976rem + 1.17vw, 1.75rem)) !important;
}
.talksBodyWrap .talkTxtWrap .talkItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.6em;
}
@media screen and (min-width: 767px) {
  .talksBodyWrap .talkTxtWrap .talkItem {
    gap: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .talksBodyWrap .talkTxtWrap .talkItem {
    grid-template-columns: 90px 1fr;
  }
}
.talksBodyWrap .talkTxtWrap .talkItem:not(:last-child) {
  margin-bottom: 2.4em;
}
.talksBodyWrap .talkTxtWrap .talkItem .talkTxt p {
  text-align: justify;
}
.talksBodyWrap .talkTxtWrap .talkItem .talkTxt p:last-child {
  margin-bottom: 0;
}
.talksBodyWrap .talksVoiceWrap {
  text-align: center;
  background-color: rgba(177, 227, 239, 0.18);
  padding: 2em 1.4em;
}
.talksBodyWrap .talksVoiceWrap .bgBox {
  display: inline-block;
  text-align: left;
}
.talksBodyWrap .talksVoiceWrap p {
  color: #193265;
  font-family: "ゴシックMB101 B";
}
.talksBodyWrap .talksVoiceWrap p:last-child {
  margin-bottom: 0;
}
.talksBodyWrap .titleWrap {
  text-align: center;
  margin-bottom: 2em;
  color: #193265;
}
.talksBodyWrap .titleAccent {
  font-size: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  display: block;
}
.talksBodyWrap .titleMain {
  font-size: 1.4em;
  font-family: "ゴシックMB101 B";
  letter-spacing: 0.1em;
}
.page .article h4.talkTtl {
  padding: 1em 0 !important;
  margin-bottom: 1em;
  text-align: justify;
}
/* learnmore_本社・東京支店を知る！KLEC大解剖！
------------------------------------------ */
.page-id-5093 .contentWrap .areaWrap:not(:last-child) {
  margin-bottom: 5em;
}
@media screen and (min-width: 767px) {
  .page-id-5093 .contentWrap .businessContentArea.areaWrap {
    margin-bottom: 6em;
  }
}
.officeBranch {
  /* imgとtext横並びレイアウト */
  /* 業務内容のgridレイアウト */
}
@media screen and (min-width: 767px) {
  .officeBranch h3.smTtl {
    font-size: 1.2em !important;
  }
}
@media screen and (min-width: 1024px) {
  .officeBranch h3.smTtl {
    font-size: 1.5em !important;
  }
}
.officeBranch .officeBranchTtl {
  color: #193265;
  position: relative;
  font-family: "ゴシックMB101 B";
  font-size: 1.25em !important;
  margin-bottom: 2.4em !important;
  line-height: 1.6 !important;
}
@media screen and (min-width: 767px) {
  .officeBranch .officeBranchTtl {
    margin-bottom: 2.4em !important;
    font-size: 1.8em !important;
  }
}
.officeBranch .officeBranchTtl.iconTitle {
  padding-left: 100px !important;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .officeBranch .officeBranchTtl.iconTitle {
    padding-left: 120px !important;
  }
}
.officeBranch .officeBranchTtl.iconTitle::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(https://klec.co.jp/wp-content/uploads/2025/01/office-branch_ttl-icon.png) no-repeat center/cover;
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 767px) {
  .officeBranch .officeBranchTtl.iconTitle::before {
    width: 100px;
    height: 100px;
  }
}
.officeBranch .officeBranchTtl h3.smTtl {
  font-size: 1.1em !important;
  font-family: "ゴシックMB101 B";
}
.officeBranch .boxRow .itemBox:not(:last-child) {
  margin-bottom: 2.4em;
}
@media screen and (min-width: 767px) {
  .officeBranch .boxRow .itemBox.flex {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .officeBranch .boxRow .itemBox.flex {
    align-items: center;
  }
}
.officeBranch .boxRow .itemBox .imgBox {
  margin-bottom: 1em;
}
.officeBranch .gridContainer, .officeBranch .halfContainer {
  display: grid;
  gap: 1.25em;
}
@media screen and (min-width: 767px) {
  .officeBranch .gridContainer, .officeBranch .halfContainer {
    gap: 1.75em;
  }
}
.officeBranch .gridContainer {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 767px) {
  .officeBranch .gridContainer {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 767px) {
  .officeBranch .halfContainer {
    grid-template-columns: 1fr 1fr;
  }
}
.officeBranch .fullBox, .officeBranch .halfBox {
  background-color: rgba(177, 227, 239, 0.18);
  padding: 2em 1.4em;
}
@media screen and (min-width: 767px) {
  .officeBranch .fullBox, .officeBranch .halfBox {
    padding: 3em;
  }
}
.officeBranch .fullBox h3.smTtl, .officeBranch .halfBox h3.smTtl {
  text-align: center;
  margin-bottom: 1em !important;
}
/* pointのボックスレイアウト */
.officeBranch .pointArea {
  border: 2px solid #0098BD;
  border-radius: 24px;
  padding: 2em 1.4em;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 767px) {
  .officeBranch .pointArea {
    padding: 3em;
  }
}
.officeBranch .pointArea::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -50px;
  background: url(https://klec.co.jp/wp-content/uploads/2025/01/pointArea_ttl-icon.png) no-repeat center/cover;
  width: 90px;
  height: 90px;
}
@media screen and (min-width: 767px) {
  .officeBranch .pointArea::before {
    left: -30px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .officeBranch .pointArea::before {
    left: -50px;
    width: 160px;
    height: 160px;
  }
}
.officeBranch .pointArea .titleWrap {
  text-align: center;
  margin-bottom: 1em;
  color: #193265;
}
.officeBranch .pointArea .titleWrap .titleAccent {
  font-size: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  display: block;
}
.officeBranch .pointArea .titleWrap h2.officeBranchTtl {
  margin-bottom: 1em !important;
  letter-spacing: 0.1em;
}
.officeBranch .pointArea .icon {
  max-width: 220px;
  margin: 0 auto 2em;
}
.officeBranch .pointArea h3.smTtl {
  text-align: center;
}
/* learnmore_女性社員も活躍！KLECでの私の働き方
------------------------------------------ */
.womenWorkWrap .talksBodyWrap {
  margin: 2em 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .womenWorkWrap .talksBodyWrap {
    margin: 4em 0;
  }
}
.womenWorkWrap .talksBodyWrap.closingMessage {
  margin-bottom: 0;
}
.womenWorkWrap .talksBodyWrap .talkItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1em;
}
.womenWorkWrap .talksBodyWrap .talkItem .talkTxt p {
  font-size: 1em;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .womenWorkWrap .talksBodyWrap .talkItem {
    grid-template-columns: 110px 1fr;
    gap: 1.6em;
  }
}
.womenWorkWrap .interviewBox.bgBox {
  background-color: rgba(219, 219, 219, 0.15);
}
.womenWorkWrap .interviewBox .interviewTxtWrap .lineHorizontal {
  color: inherit;
}
.womenWorkWrap .interviewBox .interviewTxtWrap .lineHorizontal::before {
  background-color: #E3799E;
}
