﻿:root {
  --ht-red: #811C21;
  --ht-red-dark: #7f171e;
  --ht-cream: #FFF4D0;
  --ht-paper: #f7f3ee;
  --ht-ink: #2c1718;
  --ht-muted: rgba(255, 255, 255, 0.72);
  --ht-green: #33bb67;
  --ht-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hataraku-front,
body.hataraku-site-page {
  margin: 0;
  background: #efe8df;
  color: var(--ht-ink);
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body.is-menu-open,
body.is-movie-modal-open {
  overflow: hidden;
}

body.hataraku-front img,
body.hataraku-site-page img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hataraku-site {
  margin: 0 auto;
  background: var(--ht-red);
  overflow: hidden;
  box-shadow: 0 0 48px rgba(44, 23, 24, 0.16);
}

body.hataraku-site-page .hataraku-site {
  background: #fff;
  overflow: visible;
}

.hataraku-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px;
  color: #fff;
  pointer-events: none;
}

body.hataraku-site-page .hataraku-header {
  height: 118px;
  padding: 28px 0 28px 44px;
  background: transparent;
  color: var(--ht-red);
  align-items: flex-start;
}

body.hataraku-site-page .hataraku-logo {
  width: min(124px, 28vw);
}

body.hataraku-site-page .hataraku-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-content: center;
  width: clamp(92px, 6.2vw, 126px);
  height: clamp(92px, 6.2vw, 126px);
  padding: 0 28px;
  border-radius: 0 0 0 28px;
  background: var(--ht-red);
  color: #fff;
}

body.hataraku-site-page .hataraku-menu__bar {
  width: 100%;
  min-width: 42px;
  margin: 7px 0;
}

.admin-bar .hataraku-header {
  top: 32px;
}

.hataraku-logo,
.hataraku-menu,
.hataraku-nav {
  pointer-events: auto;
}

.hataraku-logo {
  width: min(120px, 32vw);
  margin: 0;
  line-height: 0;
}

.hataraku-logo a,
.hataraku-logo img {
  display: block;
}

.hataraku-logo img {
  width: 100%;
  height: auto;
}

.hataraku-menu {
  position: relative;
  z-index: 90;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hataraku-menu__bar {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(2) {
  transform: translateY(9px) rotate(38deg);
}

.hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(3) {
  opacity: 0;
}

.hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(4) {
  transform: translateY(-9px) rotate(-38deg);
}

/* 下層ページは大きいハンバーガーボタンのため、×印の開き幅を広く取る */
body.hataraku-site-page .hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(2) {
  transform: translateY(16px) rotate(38deg);
}

body.hataraku-site-page .hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(4) {
  transform: translateY(-16px) rotate(-38deg);
}

.hataraku-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100vw;
  min-height: 100svh;
  background: #811c21;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.hataraku-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hataraku-nav__panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  padding: 34px clamp(32px, 6vw, 112px) 72px;
  background: #811c21;
}

.hataraku-nav__brand {
  width: min(120px, 36vw);
  line-height: 0;
}

.hataraku-nav__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hataraku-nav__links {
  align-self: center;
  display: grid;
  gap: clamp(20px, 3vw, 25px);
}

/* 各メニュー項目の下線 */
.hataraku-nav__links > a,
.hataraku-nav__row {
  padding-bottom: clamp(12px, 1.6vw, 20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hataraku-nav .hataraku-nav__corporate {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  grid-template-columns: none;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.hataraku-nav .hataraku-nav__corporate::after,
.site-footer__nav .site-footer__corporate::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
}

.hataraku-nav a {
    display: grid;
    grid-template-columns: minmax(80px, 0.4fr) minmax(100px, 0.45fr);
    align-items: center;
    width: min(560px, 100%);
    padding: 0 0 13px 0;
    color: #fff;
    text-decoration: none;
}

.hataraku-nav__en {
  font-size: clamp(20px, 4.2vw, 22px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hataraku-nav__ja {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.12em;
}

.hataraku-nav__visual {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #5f151a;
}

.hataraku-nav__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(129, 28, 33, 0.18);
}

.hataraku-nav__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hataraku-page-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 0px;
}

.hataraku-page-main--recruit {
  width: 100%;
  padding-top: 96px;
}

.site-footer {
  background: var(--ht-red);
  color: #fff;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 42px;
}

.site-footer__brand {
  display: inline-block;
  width: min(120px, 32vw);
  line-height: 0;
  text-decoration: none;
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-top: 34px;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: #fff;
  text-decoration: none;
}

.site-footer__brand:visited,
.site-footer__brand:hover,
.site-footer__brand:focus,
.site-footer__nav a:visited,
.site-footer__nav a:hover,
.site-footer__nav a:focus,
.site-footer__bottom a:visited,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus {
  color: #fff;
}

.site-footer__nav a {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.site-footer__nav .site-footer__corporate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-footer__bottom small {
  font-size: inherit;
}

.recruit-lower {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  color: var(--ht-ink);
}

.recruit-breadcrumbs {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(41, 25, 26, 0.68);
}

.recruit-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(41, 25, 26, 0.36);
}

.recruit-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.recruit-lower__hero {
  display: grid;
  gap: 22px;
  padding: clamp(42px, 7vw, 86px);
  background: var(--ht-cream);
  border-radius: 8px;
}

.recruit-lower__eyebrow {
  color: var(--ht-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.recruit-lower h1,
.recruit-lower h2,
.recruit-lower h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.recruit-lower h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.recruit-lower h2 {
  color: var(--ht-red);
  font-size: clamp(24px, 3.2vw, 38px);
}

.recruit-lower h3 {
  font-size: clamp(19px, 2vw, 24px);
}

.recruit-lower p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.recruit-lower__lead {
  max-width: 780px;
}

.recruit-editor {
  gap: 26px;
}

.recruit-editor__hero {
  width: 100%;
  padding: clamp(70px, 10vw, 132px) 20px clamp(54px, 8vw, 96px);
  background: var(--ht-cream);
}

.recruit-editor__hero-inner,
.recruit-editor__breadcrumbs {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.recruit-editor__article {
  width: 100%;
}

.recruit-editor__content {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.recruit-editor__article {
  padding-block: clamp(42px, 6vw, 78px);
}

.recruit-editor__breadcrumbs {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.recruit-editor__content > * {
  margin-block: 0;
}

.recruit-editor__content :where(.wp-block-group, .wp-block-columns) {
  margin-block: 0;
}

.recruit-editor__content :where(h1, h2, h3, h4) {
  margin-block: 0;
}

.recruit-editor__content :where(ul, ol) {
  padding-left: 1.4em;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.recruit-editor__content .wp-block-button__link {
  border-radius: 999px;
  background: var(--ht-red);
  color: #fff;
  letter-spacing: 0.12em;
}

.recruit-link-grid,
.recruit-section-grid,
.recruit-job-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.recruit-info-card,
.recruit-nav-card,
.recruit-job-card,
.recruit-job-summary {
  border: 1px solid rgba(129, 28, 33, 0.18);
  border-radius: 8px;
  background: #fff;
}

.recruit-info-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
}

.recruit-nav-card,
.recruit-job-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.recruit-nav-card:hover,
.recruit-job-card:hover {
  border-color: var(--ht-red);
  transform: translateY(-3px);
}

.recruit-nav-card__eyebrow,
.recruit-job-card__eyebrow {
  color: var(--ht-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.recruit-section {
  display: grid;
  gap: 24px;
}

.recruit-job-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.recruit-job-summary__item {
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(129, 28, 33, 0.14);
}

.recruit-job-summary__item:nth-child(odd) {
  border-right: 1px solid rgba(129, 28, 33, 0.14);
}

.recruit-job-summary__label {
  color: var(--ht-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.recruit-lower-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: clamp(34px, 5vw, 58px);
  background: var(--ht-red);
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.recruit-lower-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .hataraku-header {
    height: 68px;
    padding: 18px 20px;
  }

  body.hataraku-site-page .hataraku-header {
    height: 88px;
    padding: 22px 0 22px 24px;
  }

  body.hataraku-site-page .hataraku-menu {
    width: 82px;
    height: 82px;
    padding: 0 22px;
    border-radius: 0 0 0 24px;
  }

  .admin-bar .hataraku-header {
    top: 46px;
  }

  .hataraku-nav {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .hataraku-nav__panel {
    min-height: 950px;
    padding: 26px 28px 54px;
  }

  .hataraku-nav__links {
               gap: 24px;
        margin-bottom: 28px;
        margin-top: 40px;
  }

  .hataraku-nav a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hataraku-nav .hataraku-nav__corporate {
    min-width: 0;
    padding: 11px 20px;
  }

  .hataraku-nav__en {
    font-size: clamp(34px, 9vw, 56px);
  }

  .hataraku-nav__visual {
    min-height: 36svh;
  }

  .site-footer__inner {
    width: min(720px, calc(100% - 48px));
    padding: 44px 0 34px;
  }

  .site-footer__nav {
    gap: 14px 26px;
    margin-top: 28px;
  }
}

@media (max-width: 600px) {
	.hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(2) {
  transform: translateY(3px) rotate(38deg);
}

.hataraku-menu[aria-expanded="true"] .hataraku-menu__bar:nth-of-type(4) {
  transform: translateY(-15px) rotate(-38deg);
}
  .hataraku-logo {
    width: min(104px, 36vw);
  }

  body.hataraku-site-page .hataraku-logo {
    width: min(108px, 34vw);
  }

  .hataraku-menu {
    width: 34px;
  }

  body.hataraku-site-page .hataraku-menu {
    width: 72px;
    height: 72px;
    padding: 0 19px;
    border-radius: 0 0 0 22px;
  }

  body.hataraku-site-page .hataraku-menu__bar {
    min-width: 34px;
    margin: 6px 0;
  }

  .hataraku-nav {
    width: 100vw;
  }

  .hataraku-nav__panel {
    padding: 22px 24px 46px;
  }

  .hataraku-nav__brand {
    width: min(104px, 44vw);
  }

  .hataraku-nav__en {
    font-size: 18px;
  }

  .hataraku-nav__ja {
    font-size: 12px;
  }

  .hataraku-nav__visual {
    display: none;
  }

  .hataraku-page-main {
    width: calc(100% - 32px);
    padding-top: 104px;
  }

  .hataraku-page-main--recruit {
    width: 100%;
    padding-top: 78px;
  }

  .site-footer__inner {
    width: calc(100% - 40px);
    padding: 38px 0 30px;
  }

  .site-footer__nav,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    gap: 14px;
  }

  .site-footer__nav .site-footer__corporate {
    margin-left: 0;
  }

  .site-footer__bottom {
    gap: 12px;
    margin-top: 38px;
  }

  .recruit-link-grid,
  .recruit-section-grid,
  .recruit-job-list,
  .recruit-job-summary {
    grid-template-columns: 1fr;
  }

  .recruit-job-summary__item:nth-child(odd) {
    border-right: 0;
  }
}

/* ----------------------------------
 * 下層ページ共通ヒーロー（Figma node 2:2507）
 * デザイン基準幅: 1920px
 * ---------------------------------- */

.recruit-hero {
  position: relative;
}

.recruit-hero__photo {
  position: relative;
  margin-left: 21.6%;
}

.recruit-hero__photo > img {
  display: block;
  width: 100%;
  height: clamp(280px, 27.2vw, 522px);
  object-fit: cover;
  border-radius: 50px 0 0 50px;
}

.recruit-hero__entry {
  position: absolute;
  right: clamp(16px, 3.8vw, 73px);
  bottom: clamp(-79px, -4.1vw, -30px);
  width: clamp(150px, 16.1vw, 310px);
  transition: transform 0.3s ease;
}

.recruit-hero__entry:hover {
  transform: scale(1.05);
}

.recruit-hero__entry img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-hero__title {
  position: relative;
  width: min(955px, 48%);
  margin-top: clamp(-185px, -9.6vw, -70px);
  margin-left: 6.8%;
  padding: clamp(24px, 2.2vw, 43px) 32px clamp(40px, 4.4vw, 85px) clamp(32px, 3.3vw, 64px);
  background: #fff;
  border-radius: 50px 50px 0 0;
}

.recruit-hero__eyebrow {
  margin: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(14px, 1.25vw, 24px);
  letter-spacing: 0.11em;
  line-height: 1.2;
  color: #811c21;
}

.recruit-hero__heading {
  margin: clamp(12px, 1.4vw, 27px) 0 0;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 54px);
  line-height: 1.2;
  color: #333;
}

@media (max-width: 900px) {
  .recruit-hero__photo {
    margin-left: 10%;
  }

  .recruit-hero__photo > img {
    height: clamp(220px, 40vw, 360px);
    border-radius: 30px 0 0 30px;
  }

  .recruit-hero__title {
    width: 84%;
    margin-top: -60px;
    padding-bottom: 28px;
    border-radius: 30px 30px 0 0;
  }

  .recruit-hero__entry {
    width: 130px;
    bottom: -20px;
  }
}

@media (max-width: 600px) {
  .recruit-hero__photo {
    margin-left: 6%;
  }

  .recruit-hero__title {
         width: 65%;
        padding: 20px 20px 24px 10px;
        margin-left: 2.8%;
        border-radius: 0px 30px 0 0;
  }

  .recruit-hero__entry {
    width: 104px;
    right: 10px;
  }
}

/* ----------------------------------
 * 下層ページ共通「採用情報について」リンク
 * ---------------------------------- */

.recruit-links {
  padding: clamp(48px, 6.5vw, 120px) 0 clamp(44px, 3.4vw, 66px);
  background: #fff;
}

.recruit-links__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.recruit-links__heading {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.5vw, 28px);
  color: #000;
}

.recruit-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(40px, 6.3vw, 120px);
  row-gap: clamp(32px, 3.4vw, 64px);
  margin: clamp(24px, 2.1vw, 40px) 0 0;
  padding: 0;
  list-style: none;
}

.recruit-links__grid a {
  position: relative;
  display: block;
  padding: 0 48px 12px 0;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #480b05;
  transition: opacity 0.3s ease;
}

.recruit-links__grid a:hover {
  opacity: 0.6;
}

.recruit-links__grid a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 40px;
  height: 11px;
  background: url("../images/common/link_arrow.svg") no-repeat center / contain;
}

/* ----------------------------------
 * 下層ページ共通 CTA
 * ---------------------------------- */

.recruit-cta {
  padding: clamp(110px, 11.3vw, 217px) 0 clamp(90px, 8.75vw, 168px);
  background:
    linear-gradient(rgba(17, 18, 18, 0.62), rgba(17, 18, 18, 0.62)),
    url("../images/common/cta_bg.jpg") center / cover no-repeat;
  text-align: center;
}

.recruit-cta__inner {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.recruit-cta__heading {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 40px);
  line-height: 1.6;
  color: #fff;
}

.recruit-cta__text {
  margin: clamp(16px, 1.6vw, 30px) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.9;
  color: #fff;
}

.recruit-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(680px, 100%);
  min-height: clamp(84px, 6.9vw, 132px);
    margin: clamp(56px, 3.9vw, 100px) auto 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.25vw, 24px);
  color: #1d1d1d;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.recruit-cta__button:hover {
  opacity: 0.85;
}

.recruit-cta__button::after {
  content: "";
  position: absolute;
  right: clamp(16px, 1.6vw, 22px);
  bottom: clamp(24px, 2vw, 37px);
  width: 29px;
  height: 8px;
  background: url("../images/common/cta_arrow.svg") no-repeat center / contain;
}

@media (max-width: 900px) {
  .recruit-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recruit-links__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .recruit-cta__button::after {
    bottom: 16px;
  }
}

/* 下層ページ共通パンくず */
.hataraku-page-main--recruit .recruit-breadcrumbs {
  width: min(1200px, 92%);
  margin: 24px auto 0;
}

/* ----------------------------------
 * ヘッダーナビ 募集職種アコーディオン
 * ---------------------------------- */

.hataraku-nav__row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(560px, 100%);
}

.hataraku-nav__row a {
  width: auto;
  flex: 1 1 auto;
}

.hataraku-nav__toggle {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hataraku-nav__toggle::before,
.hataraku-nav__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  transition: opacity 0.25s ease;
}

.hataraku-nav__toggle::before {
  width: 13px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.hataraku-nav__toggle::after {
  width: 2px;
  height: 13px;
  transform: translate(-50%, -50%);
}

.hataraku-nav__toggle[aria-expanded="true"]::after {
  opacity: 0;
}

.hataraku-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.32s ease, margin-top 0.32s ease;
}

.hataraku-nav__group.is-open .hataraku-nav__sub {
  max-height: 320px;
  margin-top: 16px;
  opacity: 1;
}

.hataraku-nav__sub a {
  display: block !important;
  grid-template-columns: none;
  width: auto;
  padding: 6px 0 6px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: 0.06em;
    grid-template-columns: minmax(120px, 0.4fr) minmax(120px, 0.45fr) !important;
    width: min(560px, 100%);
   
}

/* ----------------------------------
 * フッターナビ（EN + JA リスト）
 * ---------------------------------- */

.site-footer__nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.site-footer__list {
list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 0;
    margin: 0;
    padding: 0;
    width: 80%;
}

.site-footer__item {
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-footer__link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer__en {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.site-footer__ja {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

/* エントリー: ボタン型 */
.site-footer__entry {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: #fff;
  border-radius: 999px;
}

.site-footer__entry .site-footer__en {
  color: var(--ht-red);
}

.site-footer__entry .site-footer__ja {
  color: rgba(129, 28, 33, 0.72);
}

.site-footer__nav .site-footer__corporate {
  margin-left: 0;
}

/* フッターナビ レスポンシブ */
@media (max-width: 900px) {
  .site-footer__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .site-footer__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
	.sp_text_left{
		text-align:left !important;
	}
	.sp_br{
display:none !important;		
	}
}
