@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切り替え
===================================================*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@media screen and (min-width: 766px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*==================================================
　カラー指定
===================================================*/
/*==================================================
　大枠・内枠・全幅表示
===================================================*/
/* 固定ページ_枠
------------------------------------------ */
.content {
  margin-top: 0;
}
.page .wrap {
  width: 100%;
  max-width: 1180px;
}
.page .main {
  padding: 0 20px;
  border: none;
}
@media screen and (min-width: 768px) {
  .page .main {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1200px) {
  .page .main {
    padding: 0 60px;
  }
}
.page section {
  margin-bottom: 0;
}
.contentWrap {
  padding: 4em 0;
}
@media screen and (min-width: 1200px) {
  .contentWrap {
    padding: 8em 0;
  }
}
.contentWrap .blockWrap:not(:last-child) {
  margin-bottom: 5em;
}
.contentWrap .areaWrap:not(:last-child) {
  margin-bottom: 4em;
}
.wideBg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
/* inner
------------------------------------------ */
[class^="inner_"] {
  margin: 0 auto;
}
.inner_xl {
  max-width: 1220px;
  padding: 0 20px;
  border: none;
}
@media screen and (min-width: 768px) {
  .inner_xl {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1200px) {
  .inner_xl {
    padding: 0 60px;
  }
}
.inner_lg {
  max-width: 1100px;
}
.inner_md {
  max-width: 880px;
}
.inner_sm {
  max-width: 730px;
}
/*==================================================
　初期設定
===================================================*/
.page h1.entry-title {
  display: none;
}
body {
  margin-top: 0;
}
.page .date-tags {
  display: none;
}
a {
  text-decoration: none;
  transition: 0.3s ease;
  pointer-events: auto;
  /* 有効化 */
  cursor: pointer;
  /* ポインターに設定 */
}
a:hover {
  opacity: 0.7;
}
.article {
  margin-bottom: 0 !important;
}
.article .entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
/* Chrome、Safari以外 */
summary {
  display: block;
  list-style: none;
}
/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}
/*=================================================
　mixin
===================================================*/
.mBtm_1 {
  margin-bottom: 1em;
}
.mTop_1 {
  margin-top: 1em;
}
.mBtm_2 {
  margin-bottom: 2em;
}
.mTop_2 {
  margin-top: 2em;
}
.mBtm_3 {
  margin-bottom: 3em;
}
.mTop_3 {
  margin-top: 3em;
}
.mBtm_4 {
  margin-bottom: 4em;
}
.mTop_4 {
  margin-top: 4em;
}
.mBtm_5 {
  margin-bottom: 5em;
}
.mTop_5 {
  margin-top: 5em;
}
.pBtm_1 {
  padding-bottom: 1em;
}
.pTop_1 {
  padding-top: 1em;
}
.pBtm_2 {
  padding-bottom: 2em;
}
.pTop_2 {
  padding-top: 2em;
}
.pBtm_3 {
  padding-bottom: 3em;
}
.pTop_3 {
  padding-top: 3em;
}
.pBtm_4 {
  padding-bottom: 4em;
}
.pTop_4 {
  padding-top: 4em;
}
.pBtm_5 {
  padding-bottom: 5em;
}
.pTop_5 {
  padding-top: 5em;
}
/*=================================================
　flex/grid
===================================================*/
@media screen and (min-width: 768px) {
  .container .flex {
    display: flex;
    justify-content: space-between;
  }
}
.container .flex.reFlex {
  flex-direction: row-reverse;
}
.container .wid_35 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_35 {
    width: 35%;
  }
}
.container .wid_40 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_40 {
    width: 40%;
  }
}
.container .wid_45 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_45 {
    width: 45%;
  }
}
.container .wid_50 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_50 {
    width: 50%;
  }
}
.container .wid_55 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_55 {
    width: 55%;
  }
}
.container .wid_60 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_60 {
    width: 60%;
  }
}
.container .wid_65 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container .wid_65 {
    width: 65%;
  }
}
.container .grid2_1 {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .container .grid2_1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 2.4em;
  }
}
@media screen and (min-width: 1200px) {
  .container .grid2_1 {
    gap: 2em 4em;
  }
}
.container .grid3_1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media screen and (min-width: 768px) {
  .container .grid3_1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
.boxWrap {
  background-color: #FFFFFF;
  padding: 3em 1.2em;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .boxWrap {
    width: 100%;
    margin: 0 auto;
    padding: 4em 2.2em;
  }
}
@media screen and (min-width: 1200px) {
  .boxWrap {
    padding: 5em 6.875em;
  }
}
.borderBox {
  max-width: 880px;
  margin: 0 auto;
  padding: 2em 1.2em;
  border: 1px solid #444444;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .borderBox {
    padding: 2.6em 2em;
  }
}
.itemBox:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .itemBox:not(:last-child) {
    margin-bottom: 3em;
  }
}
/*==================================================
　テキスト
===================================================*/
.page .article h2 {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}
.page .article h3 {
  font-size: 1em;
  border: none;
  padding: 0;
  margin-bottom: 1em;
}
.page .article h4 {
  border: none;
  padding: 0;
  margin-bottom: 1em;
}
.page .alignCenter {
  text-align: center;
}
.page .alignRight {
  text-align: right;
}
.page .alignLeft {
  text-align: left;
}
.page .noteText {
  display: block;
  font-size: 14px;
  color: #959191;
}
.page .textBox p {
  text-align: justify;
}
.page .textBox p:last-child {
  margin-bottom: 0;
}
.page .alignResponsive p {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .page .alignResponsive p {
    text-align: center;
  }
}
table {
  margin-bottom: 0 !important;
}
table tr:nth-of-type(2n+1) {
  background-color: transparent;
}
table tr th, table tr td {
  background-color: transparent;
  font-size: calc(clamp(0.875rem, 0.818rem + 0.24vw, 1rem));
  border: none;
}
@media screen and (min-width: 768px) {
  table tr th, table tr td {
    font-size: 1em;
  }
}
.tableContents .tableInfo tr th, .tableContents .tableInfo tr td {
  padding: 4% 1%;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tableContents .tableInfo tr th {
  border-bottom: 2px solid #DD3E18;
  width: 28%;
}
@media screen and (min-width: 768px) {
  .tableContents .tableInfo tr th {
    width: 25%;
  }
}
.tableContents .tableInfo tr td {
  border-bottom: 2px solid #E8E8E8;
  padding-left: 5%;
}
.pBtm_0 {
  padding-bottom: 0;
}
.bgColor01 {
  background-color: #FFFFFF;
}
.bgColor02 {
  background-color: #F2F2F2;
}
.bgColor03 {
  background-color: #FDFCFC;
}
/*==================================================
　header（共通）
===================================================*/
#header-container {
  display: none;
}
.mobile-header-menu-buttons {
  display: none;
}
/* HEADER
------------------------------------------ */
.or-header {
  height: 80px;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
}
.or-header .headerInner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
.or-header .headerInner .headerLogo {
  position: absolute;
  /* デフォルトではabsolute */
  left: 0;
  top: 0;
  z-index: 8888;
}
.or-header .headerInner .headerLogo a {
  display: flex;
  gap: 1em;
  color: #FFFFFF;
}
.or-header .headerInner .headerLogo a:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .or-header .headerInner .headerLogo a {
    gap: 1.6em;
  }
}
.or-header .headerInner .headerLogo .logoImg {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .or-header .headerInner .headerLogo .logoImg {
    max-width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerLogo .logoImg {
    max-width: 180px;
  }
}
.or-header .headerInner .headerLogo .logoText {
  line-height: 70px;
  font-size: 0.75em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .or-header .headerInner .headerLogo .logoText {
    line-height: 80px;
    font-size: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerLogo .logoText {
    font-size: 1.25em;
    font-weight: normal;
  }
}
.or-header .headerInner .headerLogo.fixed {
  position: fixed;
  /* ハンバーガー開閉時にfixedに変更 */
}
.or-header .headerInner .navContent {
  padding: 25% 10% 0;
  min-height: 100%;
  position: fixed;
  background-color: #D0CECE;
  top: 0;
  right: -100%;
  /* 初期位置を画面外に */
  width: 100%;
  height: 100vh;
  height: 100svh;
  /* 正確なビューポートの高さを適用 */
  padding-bottom: 20px;
  flex-direction: column;
  /* 縦並び */
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 7777;
  overflow-y: auto;
}
.or-header .headerInner .navContent.open {
  right: 0;
}
@media screen and (min-width: 768px) {
  .or-header .headerInner .navContent {
    padding: 15% 10% 0;
  }
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .navContent {
    padding: 0;
    position: static;
    background-color: transparent;
    height: 100%;
    width: auto;
  }
}
.or-header .headerInner .headerNav {
  margin-bottom: 2em;
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerNav {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
.or-header .headerInner .headerNav ul.navMenu {
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerNav ul.navMenu {
    display: flex;
  }
}
.or-header .headerInner .headerNav ul.navMenu li {
  border-bottom: 1px solid #707070;
}
.or-header .headerInner .headerNav ul.navMenu li a {
  color: #444444;
  font-size: 0.875em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1em 0;
  font-weight: 700;
}
.or-header .headerInner .headerNav ul.navMenu li a span {
  font-size: 1.75em;
  font-weight: 500;
  width: 140px;
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerNav ul.navMenu li a {
    font-weight: normal;
    padding: 0;
    justify-content: center;
  }
}
.or-header .headerInner .headerNav ul.navMenu li a .spNavTitle_en {
  display: block;
  font-family: "Oswald", sans-serif;
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerNav ul.navMenu li a .spNavTitle_en {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .headerNav ul.navMenu li {
    border: none;
    height: 100%;
    min-width: 110px;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }
  .or-header .headerInner .headerNav ul.navMenu li.highlight {
    background-color: #284186;
    color: #FFFFFF;
  }
  .or-header .headerInner .headerNav ul.navMenu li.highlight a {
    width: 168px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 1.25em;
  }
}
.or-header .headerInner .navContact {
  display: block;
}
@media screen and (min-width: 1200px) {
  .or-header .headerInner .navContact {
    display: none;
  }
}
.or-header .headerInner .navContact ul {
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .or-header .headerInner .navContact ul {
    display: flex;
    gap: 1.6em;
  }
}
.or-header .headerInner .navContact ul li {
  margin-bottom: 1.6em;
}
.navAddress {
  display: block;
  margin-bottom: 2em;
}
.navAddress address {
  font-style: normal;
}
.navAddress address a {
  color: #202026;
}
@media screen and (min-width: 1200px) {
  .navAddress {
    display: none;
  }
}
/* HAMBURGER_MENU
------------------------------------------ */
.hamburgerMenu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 20px;
  z-index: 8888;
}
.hamburgerMenu span {
  display: block;
  height: 2px;
  background-color: #202026;
  transition: 0.3s;
}
.hamburgerMenu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #FFFFFF;
}
.hamburgerMenu.active span:nth-child(2) {
  opacity: 0;
}
.hamburgerMenu.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background-color: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .hamburgerMenu {
    display: none;
  }
}
/* ハンバーガー開いたらスクロール禁止 */
body.no-scroll {
  overflow: hidden;
  /* スクロールバーを非表示にしてスクロールを無効化 */
  height: 100%;
  /* 高さを固定 */
}
/*==================================================
　footer（共通）
===================================================*/
#footer {
  padding: 0;
  margin-top: 0;
}
#footer-in {
  display: none;
}
.or-footerContents {
  position: relative;
}
.or-footerContents .textBox {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .or-footerContents .textBox {
    margin-bottom: 0;
  }
}
.or-footerContents .footerContact .boxWrap {
  width: 100%;
  margin: 0 auto;
}
.or-footerContents .footerContact .navContact ul {
  list-style: none;
  padding-left: 0;
}
.or-footerContents .footerContact .navContact ul li:first-child {
  margin-bottom: 1.6em;
}
/* FOOTER_CONTACT
------------------------------------------ */
.footerContact {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_footerContact-bg-scaled.jpg) no-repeat center center / cover;
  width: 100%;
  height: 100%;
}
/* FOOTER_MAP
------------------------------------------ */
.gmap {
  position: relative;
  aspect-ratio: 1.6;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gmap {
    height: 500px;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* FOOTER_INFO
------------------------------------------ */
.footerInfo {
  background-color: #202026;
  color: #FFFFFF;
  padding: 3em 0 6em;
}
@media screen and (min-width: 768px) {
  .footerInfo {
    padding-bottom: 1em;
  }
}
.footerInfo .infoItem {
  flex-wrap: wrap;
}
.footerInfo .footerLogo {
  margin-bottom: 2em;
}
.footerInfo .footerLogo .logoImg {
  max-width: 120px;
  margin: 0 auto 2em;
}
@media screen and (min-width: 768px) {
  .footerInfo .footerLogo .logoImg {
    max-width: 180px;
    margin-left: 0;
  }
}
.footerInfo .footerLogo .logoName {
  font-size: 1.25em;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
}
.footerInfo address {
  font-style: normal;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .footerInfo address {
    text-align: left;
  }
}
.footerInfo address a {
  color: #FFFFFF;
}
.footerInfo .footerSns {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .footerInfo .footerSns {
    justify-content: flex-end;
  }
}
.footerInfo .footerSns a.snsLink {
  display: block;
  width: 44.1px;
}
.footerInfo .copyRight {
  font-size: 80%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footerInfo .copyRight {
    text-align: left;
  }
}
.footerNav {
  width: 750px;
}
.footerNav ul {
  list-style: none;
  padding-left: 0;
}
.footerNav ul li a {
  font-size: 0.875em;
  color: #FFFFFF;
}
.footerNav ul.navMenu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}
.footerNav ul.navMenu li.navItem ul.subNavItem {
  margin-left: 1em !important;
}
.fixdeBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}
#go-to-top {
  display: none !important;
}
.pageTop {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #DD3E18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 10px;
  bottom: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (min-width: 768px) {
  .pageTop {
    right: 20px;
    bottom: 60px;
  }
}
.pageTop::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(-45deg);
}
.pageTop.is-visible {
  opacity: 1;
  visibility: visible;
}
/*==================================================
　タイトル類（共通）
===================================================*/
.headingBox {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .headingBox {
    margin-bottom: 3em;
  }
}
.headingBox .pageTitle, .headingBox .sectionTitle {
  font-size: calc(clamp(3.75rem, 2.5rem + 5.33vw, 6.5rem));
  font-family: "Oswald", sans-serif;
  color: #444444;
  margin-bottom: 0.2em;
  line-height: 1;
}
.headingBox .pageTitle::first-letter, .headingBox .sectionTitle::first-letter {
  color: #DD3E18;
}
.headingBox span {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 55px;
  font-size: 1em;
  color: #DD3E18;
  font-weight: 700;
  margin-top: 1em;
}
@media screen and (min-width: 1200px) {
  .headingBox span {
    padding-left: 150px;
  }
}
.headingBox span:before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #DD3E18;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .headingBox span:before {
    width: 130px;
  }
}
.lowerPage .headingBox {
  text-align: center;
}
.lowerPage .headingBox .sectionTitle {
  font-size: calc(clamp(2.5rem, 1.364rem + 4.85vw, 5rem));
}
.lowerPage .headingBox span {
  display: block;
  padding-left: 0;
}
.lowerPage .headingBox span:before {
  display: none;
}
h2.sm_sectionTitle {
  font-family: "Oswald", sans-serif;
  color: #444444;
  font-size: 1em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  h2.sm_sectionTitle {
    font-size: 1.5em;
  }
}
.boxTitle {
  font-size: 1.5em !important;
  line-height: 1.6 !important;
  color: #444444;
  margin-bottom: 0.5em !important;
}
@media screen and (min-width: 768px) {
  .boxTitle {
    margin-bottom: 0.8em !important;
  }
}
.boxTitle span {
  color: #DD3E18;
}
.sm_boxTitle {
  font-size: 1.1em !important;
  line-height: 1.6 !important;
  color: #444444;
  margin-bottom: 0.8em !important;
  text-align: center;
}
.leftLineTitle {
  border-left: 4px solid #DD3E18 !important;
  font-size: 1.2em !important;
  margin-bottom: 16px !important;
  padding: 10px 20px !important;
}
@media screen and (min-width: 1200px) {
  .leftLineTitle {
    font-size: 1.4em !important;
  }
}
.btmLineTitle {
  border-bottom: 1px solid #707070 !important;
  font-size: calc(clamp(1.125rem, 0.955rem + 0.73vw, 1.5rem)) !important;
  padding-bottom: 0.6em !important;
  margin-bottom: 0.8em !important;
}
@media screen and (min-width: 768px) {
  .btmLineTitle {
    padding-bottom: 0.5em !important;
    margin-bottom: 0.6em !important;
  }
}
.doubleLineTitle {
  border-bottom: solid 2px #E8E8E8 !important;
  font-size: 1em !important;
  position: relative;
  padding-bottom: 0.8em !important;
}
.doubleLineTitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #DD3E18;
  bottom: -3px;
  width: 20%;
}
.leadText {
  font-size: calc(clamp(1.5rem, 1.045rem + 1.94vw, 2.5rem));
  color: #444444;
  font-weight: 700;
  margin-bottom: 0.8em;
}
.leadText span {
  color: #DD3E18;
}
/*==================================================
　ボタン（共通）
===================================================*/
.baseBtn {
  max-width: 260px;
  margin: 2em auto 0;
}
.baseBtn a {
  display: block;
  position: relative;
  border: 1px solid #DD3E18;
  background-color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 20px 10px;
  width: 100%;
  color: #DD3E18;
  transition: none;
  transition: color 0.3s ease;
}
.baseBtn a:hover {
  opacity: 1;
  color: #FFFFFF;
}
.baseBtn a:hover::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_btn-arrow_white.png) no-repeat center / cover;
}
.baseBtn a::before {
  width: 13px;
  height: 13px;
  content: "";
  display: inline-block;
  position: absolute;
  right: 16px;
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_btn-arrow_key.png) no-repeat center / cover;
  z-index: 9999;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
.baseBtn a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.baseBtn a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #DD3E18;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.baseBtn a .btnText {
  position: relative;
  z-index: 9999;
}
.top_newsWrap .baseBtn {
  max-width: 220px;
}
.top_newsWrap .baseBtn a {
  padding: 8px 10px;
  font-size: 0.9em;
}
.entryBtn {
  margin-top: 5em;
}
@media screen and (min-width: 768px) {
  .entryBtn {
    margin-top: 8em;
  }
}
.entryBtn a {
  background-color: #DD3E18;
  color: #FFFFFF;
  font-family: "Oswald", sans-serif;
  display: block;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 1em;
  position: relative;
  overflow: hidden;
}
.entryBtn a span {
  font-size: calc(clamp(2.5rem, 1.705rem + 3.39vw, 4.25rem));
  display: block;
  line-height: 1.1;
}
.entryBtn a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}
@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.is-touch .baseBtn a:hover {
  color: #DD3E18;
  opacity: 1;
}
.is-touch .baseBtn a:hover::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_btn-arrow_key.png) no-repeat center / cover;
  /* 通常の矢印 */
}
.is-touch .baseBtn a:hover::after {
  transform: scaleX(0);
  /* アニメーション無効化 */
}
@media screen and (min-width: 768px) {
  .top_aboutusWrap .baseBtn, .top_messageWrap .baseBtn {
    margin-left: 0;
  }
}
html {
  height: 100%;
}
body {
  height: 100%;
  overscroll-behavior: none;
  /* オーバースクロールを無効化 */
}
/*==================================================
　TOP-PAGE
===================================================*/
.fixdBg {
  background: #eee;
  background: linear-gradient(45deg, rgba(224, 81, 47, 0.7) 75%, rgba(224, 81, 47, 0.7) 75%), url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_fixdBg-scaled.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  transform: translateZ(0);
  position: fixed;
  width: 100%;
  height: 100vh;
  /* 古いブラウザ用 */
  height: 100svh;
  /* モダンブラウザ用 */
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .fixdBg {
    background-attachment: fixed;
    /* デスクトップは固定背景 */
  }
}
.diagonalBg {
  position: relative;
}
.diagonalBg::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 35%);
}
@media screen and (min-width: 768px) {
  .diagonalBg::before {
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70%);
  }
}
@media screen and (min-width: 1200px) {
  .diagonalBg::before {
    clip-path: polygon(48% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 80%);
  }
}
/* TOP_MV
------------------------------------------ */
.main_content {
  overflow: hidden;
  position: relative;
}
.main_content.diagonalBg {
  min-height: 850px;
}
@media screen and (min-width: 1200px) {
  .main_content.diagonalBg {
    min-height: 880px;
  }
}
.main_content.diagonalBg::before {
  clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%);
}
@media screen and (min-width: 768px) {
  .main_content.diagonalBg::before {
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70%);
  }
}
@media screen and (min-width: 1200px) {
  .main_content.diagonalBg::before {
    clip-path: polygon(46% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 80%);
  }
}
.main_content .inner {
  width: 100%;
  height: 100%;
  height: 520px;
  left: 10%;
  position: relative;
  top: 80px;
}
.main_content .inner::before {
  content: "";
  display: block;
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_mv-overlay.png) no-repeat center / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .main_content .inner {
    height: 560px;
  }
}
@media screen and (min-width: 1200px) {
  .main_content .inner {
    height: 620px;
    left: 10%;
  }
}
.main_content .inner .mvCopy {
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 80%;
  max-width: 460px;
}
@media screen and (min-width: 768px) {
  .main_content .inner .mvCopy {
    left: 5%;
    top: 50%;
    max-width: 660px;
    width: 60%;
  }
}
.main_content .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main_content .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_contentInner {
  position: relative;
  min-height: 850px;
}
@media screen and (min-width: 1200px) {
  .main_contentInner {
    min-height: 880px;
  }
}
/* LOWER_MV
------------------------------------------ */
.lowerMvWrap {
  position: relative;
  z-index: 1;
}
.lowerMvWrap.diagonalBg {
  min-height: 320px;
}
@media screen and (min-width: 768px) {
  .lowerMvWrap.diagonalBg {
    min-height: 460px;
  }
}
@media screen and (min-width: 1200px) {
  .lowerMvWrap.diagonalBg {
    min-height: 560px;
  }
}
.lowerMvWrap .inner {
  height: 200px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .lowerMvWrap .inner {
    min-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .lowerMvWrap .inner {
    min-height: 400px;
  }
}
.lowerMvWrap .inner .mvBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lowerMvWrap .inner .mvBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lowerMvWrap .inner .mvCopy {
  left: 6%;
}
.lowerMvWrap .inner .mvCopy .headingBox {
  margin-bottom: 0;
}
.lowerMvWrap .inner .mvCopy .headingBox .pageTitle {
  color: #FFFFFF;
  text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3);
  font-size: calc(clamp(3rem, 1.409rem + 6.79vw, 6.5rem));
}
.lowerMvWrap .inner .mvCopy .headingBox span {
  color: #FFFFFF;
  font-size: calc(clamp(0.875rem, 0.818rem + 0.24vw, 1rem));
}
.lowerMvWrap .inner .mvCopy .headingBox span:before {
  background-color: #FFFFFF;
}
/* TOP_NEWS
------------------------------------------ */
.top_newsWrap {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 880px;
  padding: 0 1.2em;
}
@media screen and (min-width: 768px) {
  .top_newsWrap {
    bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top_newsWrap {
    bottom: 70px;
  }
}
.top_newsWrap .top_newsInner {
  background-color: #FFFFFF;
  padding: 6% 4%;
}
@media screen and (min-width: 768px) {
  .top_newsWrap .top_newsInner {
    padding: 4% 6%;
  }
}
.top_newsWrap .nwesBox {
  display: flex;
}
.top_newsWrap .nwesBox .headingBox {
  border-right: 1px solid #DD3E18;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding-right: 5%;
  margin-right: 5%;
}
.top_newsWrap .postList {
  width: 100%;
}
.top_newsWrap .postList .titleArea {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .top_newsWrap .postList .titleArea {
    flex-wrap: nowrap;
  }
}
.top_newsWrap .postList .titleArea:not(:last-child) {
  margin-bottom: 1em;
}
.top_newsWrap .postList .titleArea .dayCat {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}
.top_newsWrap .postList .titleArea .dayCat .day {
  color: #959191;
  font-weight: 700;
}
.top_newsWrap .postList .titleArea .dayCat .cat {
  margin: 0 1em;
  width: 90px;
  line-height: 1.2;
}
.top_newsWrap .postList .titleArea .dayCat .cat a {
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 1px;
  font-size: 12px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.top_newsWrap .postList .titleArea .dayCat .cat .cat-news {
  background-color: #E2694D;
}
.top_newsWrap .postList .titleArea .dayCat .cat .cat-blog {
  background-color: #707070;
}
.top_newsWrap .postList .titleArea .title a {
  color: #444444;
}
/* TOP_ABOUTUS
------------------------------------------ */
.top_aboutusWrap {
  background-color: #FDFCFC;
}
.top_aboutusWrap .inner_xl {
  position: relative;
  z-index: 1;
}
.top_aboutusWrap .inner_xl .textArea .imgBox {
  margin: 3em auto 0;
}
@media screen and (min-width: 768px) {
  .top_aboutusWrap .inner_xl .textArea .imgBox {
    margin-top: 0;
    margin-bottom: 3em;
  }
}
.top_aboutusWrap .inner_xl .textArea .imgBox .noteText {
  margin-top: 0.5em;
}
.overlay.type01 {
  position: relative;
}
.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: #F2F2F2;
  clip-path: polygon(0 80%, 100% 55%, 100% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .overlay.type01::before {
    clip-path: polygon(100% 50%, 67% 100%, 100% 100%);
  }
}
@media screen and (min-width: 1200px) {
  .overlay.type01::before {
    clip-path: polygon(100% 54%, 60% 100%, 100% 100%);
  }
}
/* TOP_TEXTSLIDER
------------------------------------------ */
.textSliderWrap {
  background-color: #FFFFFF;
  padding: 2em 0;
  overflow: hidden;
  /* スライダー領域外を非表示 */
}
.textSliderWrap .sliderItem {
  display: flex;
  width: 280%;
}
@media screen and (min-width: 768px) {
  .textSliderWrap .sliderItem {
    width: 120%;
  }
}
.textSliderWrap .sliderItem img {
  width: auto;
  height: 100%;
}
.textSliderWrap .sliderItem img:first-child {
  animation: slide1 80s -40s linear infinite;
}
.textSliderWrap .sliderItem 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%);
  }
}
/* TOP_SERVICE
------------------------------------------ */
@media screen and (min-width: 768px) {
  .top_serviceWrap {
    padding-top: 6em;
  }
  .top_serviceWrap .inner_xl {
    position: relative;
  }
  .top_serviceWrap .top_serviceMv {
    position: absolute;
    width: 100%;
    right: 0;
    top: -60px;
  }
}
@media screen and (min-width: 768px) {
  .top_serviceWrap {
    padding-top: 8em;
  }
}
.top_serviceWrap.diagonalBg::before {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0% 100%, 0 10%);
}
@media screen and (min-width: 768px) {
  .top_serviceWrap.diagonalBg::before {
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70%);
  }
}
@media screen and (min-width: 1200px) {
  .top_serviceWrap.diagonalBg::before {
    clip-path: polygon(48% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40%);
  }
}
@media screen and (min-width: 768px) {
  .top_serviceWrap .top_serviceMv {
    width: 45%;
    max-width: 368px;
  }
}
@media screen and (min-width: 1200px) {
  .top_serviceWrap .top_serviceMv {
    max-width: 468px;
    width: 40%;
  }
}
.top_serviceWrap h3.leftLineTitle, .worksWrap h3.leftLineTitle {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.top_serviceWrap h3.leftLineTitle .noteText, .worksWrap h3.leftLineTitle .noteText {
  margin-top: 10px;
}
.top_serviceWrap .cardImg, .worksWrap .cardImg {
  margin-bottom: 1em;
}
.serviceSlider {
  position: relative;
}
.serviceSlider .swiper {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .serviceSlider .swiper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .serviceSlider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 2.4em;
  }
}
@media screen and (min-width: 1200px) {
  .serviceSlider .swiper-wrapper {
    gap: 2em 4em;
  }
}
/* 初期状態（すべて非表示） */
.swiper-button-prev, .swiper-button-next {
  display: flex;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}
.swiper-pagination {
  display: block;
  /* 表示する */
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}
.swiper-pagination {
  bottom: -10px !important;
}
.swiper-pagination-bullet-active {
  background: #DD3E18;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.5em;
  color: #DD3E18;
}
.swiper-button-prev {
  left: -16px;
}
.swiper-button-next {
  right: -16px;
}
.cardTag {
  background-color: #444444;
  color: #FFFFFF;
  font-size: 0.625em;
  padding: 5px 10px;
  margin-top: 10px;
  display: inline-block;
}
/* TOP_MESSAGE
------------------------------------------ */
.top_messageWrap .imgArea {
  width: 90%;
  margin: 0 auto 3em;
}
@media screen and (min-width: 768px) {
  .top_messageWrap .imgArea {
    width: 40%;
    margin-bottom: 0;
  }
}
/* TOP_RECRUIT
------------------------------------------ */
.top_recruitWrap {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_top_recruit-bg-scaled.jpg) no-repeat center center / cover;
  overflow: hidden;
  height: 100%;
}
.top_recruitWrap .boxWrap {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}
.top_recruitWrap .boxWrap .inner {
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  .top_recruitWrap .boxWrap .inner {
    padding-right: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .top_recruitWrap .boxWrap .inner {
    padding-right: 20px;
  }
}
.top_recruitWrap .boxWrap .imgArea {
  margin-top: -80px;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .top_recruitWrap .boxWrap .imgArea {
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* FLOWSLIDER
------------------------------------------ */
.flowsliderWrap {
  /* 画像のサイズ調整 */
}
.flowsliderWrap .swiper-wrapper {
  transition-timing-function: linear;
  margin-top: 0;
}
.flowsliderWrap .swiper-slide img {
  height: auto;
  width: 100%;
}
/* TOP_FAQ
------------------------------------------ */
.top_faqWrap {
  background-color: #F2F2F2;
  /* 矢印アイコン */
}
.top_faqWrap .faqDetails {
  padding: 0.8em 0;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .faqDetails {
    font-size: 1em;
  }
}
.top_faqWrap .faqSummary {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #DD3E18;
  font-weight: 700;
  color: #DD3E18;
  padding: 1em 3em 1em 2.6em;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .faqSummary {
    padding-left: 4em;
  }
}
.top_faqWrap .faqText {
  position: relative;
  background-color: #D0CECE;
  margin-bottom: 0;
  padding: 1em 1em 1em 2.6em;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .faqText {
    padding-left: 4em;
  }
}
.top_faqWrap .faqSummary::before, .top_faqWrap .faqText::before {
  position: absolute;
  left: 0.6em;
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .faqSummary::before, .top_faqWrap .faqText::before {
    left: 1.25em;
    top: 50%;
    transform: translateY(-50%);
  }
}
.top_faqWrap .faqSummary::before {
  content: "Q";
  color: #DD3E18;
  font-family: "Oswald", sans-serif;
}
.top_faqWrap .faqText::before {
  content: "A";
  color: #444444;
  font-family: "Oswald", sans-serif;
}
.top_faqWrap .iconWrap {
  position: absolute;
  right: 16px;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .iconWrap {
    right: 20px;
  }
}
.top_faqWrap .iconWrap .icon {
  display: block;
  position: relative;
  width: 18px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .iconWrap .icon {
    width: 24px;
  }
}
.top_faqWrap .iconWrap .icon:before, .top_faqWrap .iconWrap .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 2px;
  background-color: #DD3E18;
}
@media screen and (min-width: 768px) {
  .top_faqWrap .iconWrap .icon:before, .top_faqWrap .iconWrap .icon::after {
    width: 15px;
  }
}
.top_faqWrap .iconWrap .icon::before {
  left: 0;
  transform: rotate(45deg);
}
.top_faqWrap .iconWrap .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.top_faqWrap .icon.active {
  transform: rotate(180deg);
}
.top_faqWrap .faqContent {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.top_faqWrap .js-details[open] .js-content {
  height: auto;
}
.conceptWrap.diagonalBg::before {
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%, 0 30%);
}
@media screen and (min-width: 768px) {
  .conceptWrap.diagonalBg::before {
    clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 39%);
  }
}
@media screen and (min-width: 1200px) {
  .conceptWrap.diagonalBg::before {
    clip-path: polygon(32% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 45%);
  }
}
.worksWrap.diagonalBg::before {
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%, 0 24%);
}
@media screen and (min-width: 768px) {
  .worksWrap.diagonalBg::before {
    clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
  }
}
@media screen and (min-width: 1200px) {
  .worksWrap.diagonalBg::before {
    clip-path: polygon(32% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 27%);
  }
}
.rec_strengthsWrap.diagonalBg::before {
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%, 0 4%);
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap.diagonalBg::before {
    clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
  }
}
@media screen and (min-width: 1200px) {
  .rec_strengthsWrap.diagonalBg::before {
    clip-path: polygon(32% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 12%);
  }
}
/*==================================================
　 LOWER_ABOUT US
===================================================*/
/* ABOUT US_message
------------------------------------------ */
.messageWrap .imgArea {
  width: 80%;
  margin: 0 auto 2em;
}
@media screen and (min-width: 768px) {
  .messageWrap .imgArea {
    width: 50%;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.messageWrap .textArea .textBox .ceoName {
  max-width: 210px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .messageWrap .textArea .textBox .ceoName {
    max-width: 270px;
  }
}
/* ABOUT US_concept
------------------------------------------ */
.conceptWrap .bgImg {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_lower-concept-img.jpg) no-repeat center center / cover;
  width: 100%;
  height: 226px;
}
@media screen and (min-width: 768px) {
  .conceptWrap .bgImg {
    height: 370px;
  }
}
/* ABOUT US_OUTLINE
------------------------------------------ */
/* ABOUT US_ACCESS
------------------------------------------ */
.accessWrap .accessGmap {
  height: 248px;
  width: 100%;
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .accessWrap .accessGmap {
    height: 400px;
  }
}
/*==================================================
　 LOWER_SERVICE
===================================================*/
/* SERVICE_FEATURES
------------------------------------------ */
.featuresWrap .featuresArea {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .featuresWrap .featuresArea {
    margin-bottom: 5em;
  }
}
.cardContents .itemBox {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  padding: 2em 1.4em;
  position: relative;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .cardContents .itemBox {
    padding: 2em;
  }
}
@media screen and (min-width: 768px) {
  .cardContents .itemBox::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: calc(10vw + 50px);
    height: calc(12vw + 64px);
    max-width: 214px;
    max-height: 264px;
  }
}
.cardContents .itemBox:nth-child(1 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_features-num01.png) no-repeat center / cover;
}
.cardContents .itemBox:nth-child(2 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_features-num02.png) no-repeat center / cover;
}
.cardContents .itemBox:nth-child(3 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_features-num03.png) no-repeat center / cover;
}
.cardContents .itemBox:nth-child(4 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_features-num04.png) no-repeat center / cover;
}
.cardContents .itemBox:nth-child(5 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_features-num05.png) no-repeat center / cover;
}
.cardContents .itemBox:nth-child(6 of .itemBox)::before {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2025/11/hm_features-num06.png) no-repeat center / cover;
}
.cardContents .itemBox > .flex {
  align-items: center;
}
.cardContents .itemBox .imgArea {
  margin-bottom: 2em;
}
/* SERVICE_FACILITIES
------------------------------------------ */
.facilitiesWrap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.facilitiesWrap ul li {
  margin: 0;
}
.facilitiesWrap ul li p {
  margin-bottom: 0;
  margin-top: 0.5em;
}
.stepBarContents .stepBarItem {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  position: relative;
}
.stepBarContents .stepBarItem:not(:last-child) {
  margin-bottom: 3em;
}
.stepBarContents .stepBarItem::before {
  content: "";
  width: 1px;
  height: calc(100% + 1em);
  background-color: #444444;
  position: absolute;
  top: 2em;
  left: 25px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .stepBarContents .stepBarItem::before {
    width: 2px;
    left: 50px;
  }
}
.stepBarContents .stepBarItem:last-child::before {
  content: none;
}
.stepBarContents .stepBarItem .stepNum {
  position: relative;
  z-index: 2;
  background-color: #444444;
  color: white;
  font-family: "Oswald", sans-serif;
  width: 52px;
  height: 52px;
  font-size: 1em;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .stepBarContents .stepBarItem .stepNum {
    font-size: 2em;
    width: 104px;
    height: 104px;
  }
}
.stepBarContents .stepBarItem .stepInfo {
  width: 84%;
}
@media screen and (min-width: 768px) {
  .stepBarContents .stepBarItem .stepInfo {
    display: flex;
    justify-content: space-between;
  }
}
.stepBarContents .stepBarItem .stepInfo .stepText {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .stepBarContents .stepBarItem .stepInfo .stepText {
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .stepBarContents .stepBarItem .stepInfo .stepImg {
    width: 30%;
  }
}
/*==================================================
　 共通スタイル
===================================================*/
.noteArea {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .noteArea {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1200px) {
  .noteArea {
    padding: 0 60px;
  }
}
.noteArea h3.sm_boxTitle {
  font-size: 1.5em !important;
}
.noteArea h3.sm_boxTitle span {
  display: block;
  font-size: 16px !important;
  font-weight: normal !important;
  margin-bottom: 1em;
}
/*==================================================
　 LOWER_RECRUIT
===================================================*/
/* RECRUIT_MESSAGE
------------------------------------------ */
.rec_messageWrap .imgArea {
  width: 80%;
  margin: 0 auto 2em;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .rec_messageWrap .imgArea {
    width: 45%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
/* RECRUIT_STRENGTHS
------------------------------------------ */
.rec_strengthsWrap .pointArea {
  margin-bottom: 5em;
}
.rec_strengthsWrap .pointArea ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap .pointArea ul {
    gap: 2em;
  }
}
@media screen and (min-width: 1200px) {
  .rec_strengthsWrap .pointArea ul {
    gap: 2.7em;
  }
}
.rec_strengthsWrap .pointArea ul li {
  margin: 0;
  flex: 0 1 47%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap .pointArea ul li {
    flex: 0 1 30%;
  }
}
.rec_strengthsWrap .pointArea ul li:nth-child(4), .rec_strengthsWrap .pointArea ul li:nth-child(5) {
  flex: 0 1 47%;
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap .pointArea ul li:nth-child(4), .rec_strengthsWrap .pointArea ul li:nth-child(5) {
    flex: 0 1 30%;
  }
}
.rec_strengthsWrap .strengthsArea {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap .strengthsArea {
    margin-bottom: 5em;
  }
}
.rec_strengthsWrap .noteArea .sm_boxTitle {
  margin-bottom: 1.6em !important;
}
.rec_strengthsWrap .noteArea .honneBox {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .rec_strengthsWrap .noteArea .honneBox {
    margin-bottom: 5em;
  }
}
.rec_strengthsWrap .noteArea .torisetsuBox h3.sm_boxTitle {
  margin-bottom: 1em !important;
}
.rec_strengthsWrap .noteArea .torisetsuBox .ceoImg {
  max-width: 160px;
  margin: 0 auto 2em;
}
/* RECRUIT_VOICE
------------------------------------------ */
.rec_voiceWrap .bgImg {
  background: url(https://hataraku-kuruma.com/wp-content/uploads/2024/12/hm_rec_voice-img.jpg) no-repeat 70% center / cover;
  margin-bottom: 4em;
  width: 100%;
  height: 226px;
}
@media screen and (min-width: 768px) {
  .rec_voiceWrap .bgImg {
    background-position: center center;
  }
}
@media screen and (min-width: 768px) {
  .rec_voiceWrap .bgImg {
    height: 370px;
  }
}
.rec_voiceWrap .interviewArea {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .rec_voiceWrap .interviewArea {
    margin-bottom: 5em;
  }
}
.rec_voiceWrap .interviewArea .itemBox .doubleLineTitle {
  font-size: calc(clamp(1rem, 0.773rem + 0.97vw, 1.5rem)) !important;
}
.rec_voiceWrap .timelineArea.borderBox {
  max-width: 736px;
  background-color: #FDFCFC;
}
.rec_voiceWrap .timelineArea.borderBox h3.sm_boxTitle {
  font-size: 1.5em !important;
  margin-bottom: 3.6em !important;
  position: relative;
  letter-spacing: 0.1em;
}
.rec_voiceWrap .timelineArea.borderBox h3.sm_boxTitle::before {
  content: "";
  background-color: #E8E8E8;
  height: 2px;
  width: 30%;
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}
.rec_voiceWrap .timelineArea.borderBox h3.sm_boxTitle::after {
  content: "";
  display: block;
  height: 2px;
  width: 15%;
  background-color: #DD3E18;
  position: absolute;
  bottom: -24px;
  left: 35%;
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline {
  max-width: 543px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline li {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0;
  padding-left: 10%;
  border-left: 1px solid #DD3E18;
  padding-bottom: 3em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .rec_voiceWrap .timelineArea.borderBox ul.timeline li {
    font-size: 1.25em;
    margin-left: 0;
  }
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #DD3E18;
  position: absolute;
  left: -10px;
  top: 0;
  border-radius: 100%;
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline li:last-child {
  border-left: none;
  padding-bottom: 2em;
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline .timelineDate {
  color: #DD3E18;
  width: 24%;
}
@media screen and (min-width: 768px) {
  .rec_voiceWrap .timelineArea.borderBox ul.timeline .timelineDate {
    width: 20%;
  }
}
.rec_voiceWrap .timelineArea.borderBox ul.timeline .timelineTxt {
  line-height: 1.6;
  margin-top: -5px;
  width: 76%;
}
/* RECRUIT_RECRUITMENT
------------------------------------------ */
.rec_recruitmentWrap .detailArea h3.recruitmentType {
  background-color: #DD3E18;
  color: #FFFFFF;
  padding: 16px 20px;
  margin-bottom: 0;
}
.rec_recruitmentWrap .detailArea .tableContents {
  background-color: #FDFCFC;
  padding: 1.2em 1.2em 3em;
}
@media screen and (min-width: 768px) {
  .rec_recruitmentWrap .detailArea .tableContents {
    padding: 2em 2.4em 4em;
  }
}
.rec_recruitmentWrap .detailArea .tableContents .tableInfo tr h4 {
  font-size: 1em;
}
.rec_recruitmentWrap .detailArea .tableContents .tableInfo tr th {
  vertical-align: top;
  width: 20%;
}
.rec_recruitmentWrap .detailArea .tableContents .tableInfo tr td ul {
  padding-left: 1em;
  margin-bottom: 0;
}
.rec_recruitmentWrap .detailArea .tableContents .tableInfo tr td p {
  margin-bottom: 0;
}
/* RECRUIT_FLOW
------------------------------------------ */
@media screen and (min-width: 768px) {
  .rec_flowWrap .stepBarContents .stepBarItem .stepInfo {
    width: 80%;
  }
}
.rec_flowWrap .stepBarContents .stepBarItem .stepInfo .stepText {
  width: 100%;
}
/*==================================================
　 LOWER_CONTACT
===================================================*/
.contactWrap .itemBox:not(:last-child) {
  border-bottom: 1px solid #444444;
  padding-bottom: 4em;
  margin-bottom: 4em;
}
.contactWrap h3 {
  text-align: center;
  font-size: calc(clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem)) !important;
}
.contactWrap .contactBtn {
  max-width: 398px;
  margin: 0 auto;
}
.contactWrap .qrImg {
  max-width: 160px;
  margin: 3em auto 0;
}
/*==================================================
　 LOADING
===================================================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100svh;
  background: #FFFFFF;
}
#loading #loadingBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#loading #loadingBox .loadingLine {
  display: inline-block;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
#loading #loadingBox .loadingLine .loadingItem {
  color: #DD3E18;
  font-size: 1em;
  padding: 1.2em 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  #loading #loadingBox .loadingLine .loadingItem {
    padding: 1.6em 0;
    font-size: 1.25em;
  }
}
#loading #loadingBox .loadingLine .loadingItem img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  #loading #loadingBox .loadingLine .loadingItem img {
    width: 140px;
  }
}
#loading #loadingBox .loadingLine .loadingItem span {
  display: block;
  line-height: 1;
  margin-top: 12px;
}
.animation_loading {
  animation: equalizer_loading 7000ms infinite;
  animation-iteration-count: 10;
}
@keyframes equalizer_loading {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 30%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 30%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 30%;
  }
  100% {
    width: 70%;
  }
}
#loading, #loadingBox {
  display: none;
  /* 初期状態では非表示 */
}
body.home #loading, body.home #loadingBox {
  display: block;
  /* トップページでは表示 */
}
/*==================================================
　投稿
===================================================*/
.breadcrumb-home .sp, .breadcrumb-item .sp {
  display: inline-block;
}
.breadcrumb-home .fa-home {
  display: none;
}
.breadcrumb-home .breadcrumb-caption {
  color: #DD3E18;
  font-weight: 700;
}
/*
.breadcrumb-item {
    .fa-folder {
        display: none;;
    }
}
*/
.archive .content-in, .single-post .content-in {
  max-width: 1080px;
}
.post .entry-content {
  margin-bottom: 3em;
}
.under-entry-content {
  margin-top: 3em;
}
.related-entry-card-meta, .entry-card-meta {
  position: static;
  text-align: left;
}
.e-card-info {
  display: block;
}
.e-card-info > span {
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0;
  display: inline-block;
}
.entry-card, .related-entry-card {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .entry-card, .related-entry-card {
    justify-content: flex-start;
  }
}
.related-entry-card-content, .entry-card-content {
  padding-bottom: 0;
}
.related-entry-card-content, .entry-card-content {
  margin-left: 0;
}
.list {
  row-gap: 0;
}
.list a.entry-card-wrap {
  padding: 30px 0;
  border-bottom: 1px solid #e1e1e1;
}
.list a.entry-card-wrap:hover {
  background: none;
}
.entry-card-thumb, .related-entry-card-thumb {
  max-width: 120px;
  width: 28%;
}
@media screen and (min-width: 768px) {
  .entry-card-thumb, .related-entry-card-thumb {
    max-width: 200px;
    width: 25%;
  }
}
.ect-entry-card .card-content, .related-entry-card-content {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .ect-entry-card .card-content, .related-entry-card-content {
    width: 75%;
  }
}
.cf::after {
  display: none;
}
.post-date .fa-clock-o {
  display: none;
}
.archive h1.archive-title {
  display: none;
}
.entry-card, .related-entry-card, .e-card-title {
  line-height: 1.5;
}
.single-post article {
  margin-top: 50px;
}
.single-post article .date-tags {
  text-align: left;
  margin: 0;
}
.single-post article .date-tags .post-date {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.single-post article .entry-date {
  margin-left: 0;
}
.single-post h1.entry-title {
  font-size: 1.4em;
  border-bottom: 2px solid #DD3E18;
  padding: 0 0 20px 0;
  margin: 16px 0 30px 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .single-post h1.entry-title {
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
}
.single-post h2.wp-block-heading {
  padding: 1rem 2rem;
  border-left: 5px solid #DD3E18;
  background: #F2F2F2;
  border-radius: 0;
  line-height: 1.5;
  font-size: 1.2em;
  padding: 16px;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .single-post h2.wp-block-heading {
    font-size: 1.4em;
    padding: 16px 16px 16px 20px;
  }
}
.single-post h2.related-entry-heading {
  border-bottom: 1px solid #284186;
  line-height: 1;
}
.single-post h2.related-entry-heading .related-entry-main-heading {
  display: inline-block;
  background-color: #284186;
  padding: 0.5em 1em;
  color: #FFF;
  font-size: 16px;
  font-weight: normal;
}
