
:root {
  --font-family-main: 'Outfit', 'Noto Sans JP', 'Segoe UI', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-family-secondary: "Outfit", "Noto Sans JP", sans-serif;
}

body {
  font-family: var(--font-family-main);
  color: var(--color-semantic-color-text-primary);
}

.main-container {
  background-color: var(--color-primitivie-color-natral-100);
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.contents-wrapper {
  background-color: var(--color-semantic-color-text-quinaty);
  overflow: hidden;
  width: 100%;
}

.contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 60px;
  position: relative;
}


.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* =========================
   PC版スタイル（1024px以上）
   ========================= */


.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-100%);
}
.fixed-header-sp{
  display: none;
}

#recruitment,
#company,
#access,
#entry {
  scroll-margin-top: 100px;
}

body.menu-open .fixed-header {
  z-index: 9000;
}

.fixed-header.show {
  opacity: 1;
  transform: translateY(0);
}

.fixed-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 76px 10px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
  transition: z-index 0.3s ease;
}

body.menu-open .fixed-header-inner {
  z-index: 9000;
}


.menu-btn-fixed-independent {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fixed-header.show ~ .menu-btn-fixed-independent {
  opacity: 1;
  visibility: visible;
}

body.menu-open .menu-btn-fixed-independent {
  z-index: 10100;
}

.menu-btn-fixed-independent .menu-line {
  width: 38px;
  height: 2px;
  background-color: var(--color-semantic-color-text-primary);
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}


.menu-btn-fixed-independent.active .menu-line:first-child {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: var(--color-primitivie-color-natral-900);
}

.menu-btn-fixed-independent.active .menu-line:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--color-primitivie-color-natral-900);
}


.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: var(--color-semantic-color-text-primary);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease, bottom 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.page-top-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(5%) saturate(1070%) hue-rotate(202deg) brightness(95%) contrast(80%);
  transition: transform 0.3s ease;
}

.page-top-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.page-top-btn:hover .page-top-arrow {
  transform: rotate(-90deg) translateX(2px);
}


.page-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.menu.menu-btn-independent.active {
  z-index: 10100 !important;
}

.fixed-header .logo {
  position: static;
  width: 136px;
  height: 30px;
  cursor: pointer;
}

.fixed-header .header-menu {
  position: static;
  gap: 30px;
}

.fixed-header .btn-recruitment-req,
.fixed-header .btn-ENTRY {
  padding: 12px 30px 13px;
  font-size: 16px;
}

.fixed-header .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 8px;
  right: 20px;
  top: 26px;
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
}

.fixed-header .menu-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-semantic-color-text-primary);
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}


.fixed-header .menu.active .menu-line:first-child {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: var(--color-primitivie-color-natral-900);
}

.fixed-header .menu.active .menu-line:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--color-primitivie-color-natral-900);
}

.fixed-header .menu.active {
  z-index: 9998;
}

.fixed-header .header-menu-btn-list{
  gap: 12px;
}
.fixed-header .recruitment-button{
  font-size: 15px;
}


.mv {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: calc(100vh - 40px);
  max-height: 800px;
  min-height: 500px;
  padding: 20px;
}

.mv .bg-video {
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100vh - 40px);
  max-height: 800px;
  min-height: 460px;
  top: 20px;
  left: 20px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  z-index: 0;
}

.mv .fallback-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.mv .video-overlay {
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100vh - 40px);
  max-height: 800px;
  min-height: 460px;
  top: 20px;
  left: 20px;
  background: linear-gradient(rgba(14, 30, 62, 0.13), rgba(14, 30, 62, 0.13)), linear-gradient(135.35deg, rgba(249, 199, 194, 0.30), rgba(6, 98, 185, 0.60));
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

.mv .mv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  width: 100%;
}

.mv .mv-title img {
  width: 80vw;
  max-width: 922px;
  height: auto;
  max-height: 200px;
  display: block;
  margin: 0 auto;
}

.mv img.mv-title-pc {
  display: block;
}

.mv img.mv-title-sp {
  display: none;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: 44px;
  right: 130px;
  z-index: 10;
}

.header-menu-sp {
  display: none;
}

.header-menu-btn-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-recruitment-req,
.btn-ENTRY {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 45px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-recruitment-req {
  background-color: var(--color-semantic-color-background-primary);
  box-shadow: 8px 8px 20px rgba(6, 98, 185, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-recruitment-req:hover {
  box-shadow: 12px 12px 30px rgba(6, 98, 185, 0.4);
  transform: translateY(-2px);
}

.btn-ENTRY {
  background-color: var(--color-semantic-color-background-secondary);
  box-shadow: 8px 8px 20px rgba(231, 29, 10, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-ENTRY:hover {
  box-shadow: 12px 12px 30px rgba(231, 29, 10, 0.4);
  transform: translateY(-2px);
}

.recruitment-button {
  font-weight: 700;
  font-size: 17px;
  line-height: 23.4px;
  color: var(--color-semantic-color-text-quinaty);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.text-wrapper {
  font-weight: 700;
  font-size: 17px;
  line-height: 23.4px;
  color: var(--color-semantic-color-text-quinaty);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.text-wrapper {
  font-family: "Outfit", sans-serif;
}

.menu {
  display: flex;
  flex-direction: column;
  width: 52px;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}


.menu-btn-independent {
  position: absolute;
  top: 64px;
  right: 50px;
  z-index: 10002;
}

.menu-btn-independent.active {
  z-index: 10002;
}

.menu-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-semantic-color-text-quinaty);
  transition: all 0.3s ease;
  transform-origin: center;
}


.menu.active .menu-line:first-child {
  transform: rotate(34deg) translate(0, 10px);
  background-color: var(--color-primitivie-color-natral-900);
}

.menu.active .menu-line:last-child {
  transform: rotate(-34deg) translate(0, -8px);
  background-color: var(--color-primitivie-color-natral-900);
}

.logo {
  position: absolute;
  width: 188px;
  height: 42px;
  top: 50px;
  left: 50px;
  z-index: 10;
  margin: 0;
  cursor: pointer;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-arrow {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-text {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primitivie-color-natral-100);
  letter-spacing: 2px;
}

.scroll-arrow img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}


.section-concept {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 60px;
  padding: 60px 20px 0px;
  margin: 0px auto;
}

.concept-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14%;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.concept-image {
  flex: 1;
  width: 40%;
  max-width: 580px;
  margin-top: 30px;
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.concept-image2{
  width: 40%;
  max-width: 313px;
  position: absolute;
  top: 56%;
  left: 20%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.concept-image2.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.concept-image3 {
  display: none;
}

.concept-image.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.concept-img-pc {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.concept-img-sp {
  width: 100%;
  height: auto;
  display: none;
}

.text-concept {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.concept-title {
  font-family: var(--PC-h2-font-family);
  font-weight: var(--PC-h2-font-weight);
  color: var(--color-semantic-color-text-primary);
  font-size: clamp(32px, 4vw, 64px);
  letter-spacing: var(--PC-h2-letter-spacing);
  line-height: var(--PC-h2-line-height);
  font-style: var(--PC-h2-font-style);
}

.concept-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concept-description,
.concept-detail {
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: 1px;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.concept-decoration {
  position: absolute;
  right: 0px;
  top: -60px;
  width: 16%;
  height: auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.concept-decoration.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.overlap-group {
  position: relative;
}

.image-container {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 10%;
  padding: 60px 0px 0px;
  margin: 0px auto 0;
}

.PC-img {
  position: relative;
  width: 40%;
  left: 20px;
  height: auto;
}

.text-concept {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 40px 0px 70px;
  position: relative;
  left: 54%;
}

.concept-title {
  font-weight: 800;
  font-size: 3.2vw;
  line-height: 1.3;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-text,
.text p {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 2.2;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.concept-text {
  font-weight: 500;
  letter-spacing: 0.36px;
}

.text p {
  font-weight: 400;
  letter-spacing: 0.36px;
}

.text-wrapper-2 {
  font-weight: 700;
}

.img-2 {
  position: absolute;
  width: 16%;
  max-width: 257px;
  top: 0;
  right: 20px;
}


.slide-text-wrapper {
  width: 2896px;
  height: 68px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
}


@keyframes slideText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slide-text-container {
  width: 2896px;
  height: 68px;
  display: inline-block;
  animation: slideText 60s linear infinite;
  object-fit: cover; 
  white-space: nowrap;
  flex-shrink: 0; 
}


.section-recruit-req {
  background-color: var(--color-semantic-color-background-quinary);
  border-radius: 20px;
  width: 97%;
  padding: 90px 60px 110px;
}

.section-recruit-req-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 90px;
}

.recruitment-title {
  font-weight: 800;
  font-size: 3vw;
  line-height: 4vw;
  color: var(--color-semantic-color-text-primary);
  max-width: 1162px;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.section-recruit-req-2 {
  display: flex;
  align-items: flex-start;
  gap: 118px;
  background-color: var(--color-semantic-color-background-quinary);
  border-radius: 20px;
  width: 100%;
}

.h-2 {
  display: flex;
  align-items: center;
  gap: 13px;
}

.img-3 {
  width: 32px;
  height: 32px;
}

.text-wrapper-3 {
  font-family: var(--PC-h3-font-family);
  font-weight: var(--PC-h3-font-weight);
  font-size: var(--PC-h3-font-size);
  letter-spacing: var(--PC-h3-letter-spacing);
  line-height: var(--PC-h3-line-height);
  color: var(--color-semantic-color-text-primary);
  white-space: nowrap;
}

.list-recruit-req {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  width: 100%;
}

.lower-data,
.lower-data-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 865px;
  gap: 35px;
}

.lower-data-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0px 0px 35px;
  border-bottom: 1px solid var(--color-semantic-color-border-primary);
}

.text-wrapper-4 {
  width: 177px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 16px;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.frame {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.div-2,
.text-wrapper-5,
.text-wrapper-6,
.text-wrapper-7 {
  font-family: var(--PC-body-font-family);
  font-weight: var(--PC-body-font-weight);
  font-size: var(--PC-body-font-size);
  letter-spacing: var(--PC-body-letter-spacing);
  line-height: var(--PC-body-line-height);
  color: var(--color-semantic-color-text-primary);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frame-2,
.frame-3,
.frame-4,
.frame-5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.frame-2 {
  flex-direction: column;
  gap: 2px;
}

.bullet-text {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.bullet {
  display: inline-block;
  min-width: 1em;
  flex-shrink: 0;
}

.indent-note {
  margin-left: 1em;
}

.frame-3,
.frame-4 {
  flex-direction: row;
  align-items: flex-start;
  padding: 4px 0px 0px;
}

.btn-entry {
  width: 100%;
  max-width: 587px;
}

.btn-entry-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 36px 60px 38px;
  background-color: var(--color-semantic-color-background-secondary);
  border-radius: 20px;
  box-shadow: 16px 16px 30px rgba(231, 29, 10, 0.2);
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.btn-entry-2:hover {
  box-shadow: 20px 20px 40px rgba(231, 29, 10, 0.3);
}

.btn-entry-2:hover .arrow {
  right: 33px;
}

.frame-6 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-wrapper-8 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20.8px;
  color: var(--color-semantic-color-text-quinaty);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.text-wrapper-9 {
  font-weight: 600;
  font-size: 42px;
  line-height: 42px;
  color: var(--color-semantic-color-text-quinaty);
  font-family: "Outfit", sans-serif;
}

.arrow {
  width: 23px;
  height: 19px;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.img-company-wrapper {
  width: 100%;
  height: 400px;
  background-image: url('../img/img-company.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px;
  width: calc(100% - 40px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.company-info-img {
  max-width: 540px;
  width: 65%;
  height: auto;
  z-index: 2;
}

.company-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.section-company-info,
.section-access {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  max-width: 1160px;
  width: 95%;
  margin: 0px auto;
}

.text-wrapper-10 {
  font-family: var(--PC-body-font-family);
  font-style: var(--PC-body-font-style);
  font-weight: var(--PC-body-font-weight);
  font-size: var(--PC-body-font-size);
  letter-spacing: var(--PC-body-letter-spacing);
  line-height: var(--PC-body-line-height);
}

.text-wrapper-11 {
  text-decoration: underline;
}

.access-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 865px;
  gap: 34px;
}

.access-image-group {
  width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.access-image-group iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.div-3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-info-group,
.car-info-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.img-4 {
  width: 20px;
  height: 20px;
}

.train-text,
.car-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.72px;
  line-height: 18px;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.train-info,
.car-info {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 28.8px;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 52px;
  padding: 40px 40px 30px;
  background-color: var(--color-semantic-color-background-quinary);
  border-radius: 20px 20px 0px 0px;
}




.footer-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  width: 171px;
  gap: 9px;
}

.logo-2 {
  width: 171px;
  height: 38px;
}

.footer-logo-text {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 20.8px;
  color: var(--color-semantic-color-text-primary);
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 46px;
}

.footer-menu-text {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 20.8px;
  color: var(--color-semantic-color-text-primary);
  text-decoration: none;
}

.copyright {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.copyright-text {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 15.6px;
  color: var(--color-semantic-color-text-primary);
}

.footer-submenu {
  display: flex;
  align-items: center;
  gap: 31px;
}

.footer-submenu-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.text-wrapper-12 {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.56px;
  line-height: 18.2px;
  color: var(--color-semantic-color-text-primary);
  text-decoration: none;
}

.popup-icon {
  width: 11px;
  height: 11px;
}

/* =========================
   タブレット・スマホ統一スタイル（1024px以下）
   ========================= */

@media (max-width: 1024px) {
  
  .pc-only {
    display: none !important;
  }
  
  .sp-only {
    display: block !important;
  }
  
  
  .section-company-info.pc-only,
  .section-access.pc-only {
    display: block !important;
    padding: 0px 20px;
    margin: 0px;
    width: 100%;
  }
  
  .section-company-info-SP,
  .section-access-SP {
    display: none !important;
  }
  
  
  .section-company-info,
  .section-access {
    display: block;
  }
  
  .access-container {
    display: block;
  }
  
  .access-image-group {
    margin-bottom: 20px;
  }
  
  .access-info {
    display: block;
  }
  
  
  .footer-menu {
    display: none;
  }
  
  .footer-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-submenu {
    order: -1; 
  }
  
  .footer {
    padding: 36px 28px 20px;
    background-color: var(--color-semantic-color-background-quinary);
    border-radius: 20px 20px 0px 0px;
  }
  
  
  .mv .mv-title-pc {
    display: block;
  }
  
  .mv img.mv-title-sp {
    display: none;
  }
  
  .section-recruit-req-inner{
    gap: 40px;
  }
  .section-concept {
    padding: 0px;
  }
  
  .concept-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  
  .concept-image {
    display: none;
  }
  
  .concept-image2 {
    display: none;
  }
  
  .concept-image3 {
    display: block;
    max-width: 800px;
    width: 80%;
    position: relative;
    margin:0px auto 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .concept-image3.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .concept-img-sp {
    display: block;
    width: 80%;
    padding: 0px 20px;
  }
  
  .concept-decoration {
    display: none;
  }
  
  .text-concept {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px 50px;
    text-align: left;
    gap: 34px;
  }
  
  .concept-title {
    font-family: var(--SP-h2-font-family);
    font-weight: var(--SP-h2-font-weight);
    font-size: clamp(28px, 6vw, 46px);
    letter-spacing: var(--SP-h2-letter-spacing);
    line-height: var(--SP-h2-line-height);
    font-style: var(--SP-h2-font-style);
  }
  
  
  .concept-title br:nth-of-type(2) {
    display: none;
  }
}

/* =========================
   スマホ専用追加スタイル（768px以下）
   ========================= */

@media (max-width: 768px) {

  .contents {
    gap: 1px;
  }
  
  
  .mv {
    height: 560px;
    min-height: 400px;
  }
  
  .mv .bg-video {
    display: block;
    z-index: 1;
    width:calc(100% - 20px);
    height: 480px;
    top: 64px;
    left: 10px;
  }

  .page-top-btn{
    width: 50px;
    height: 50px;
    right: 20px;
    bottom:20px;
  }
  
  .mv .video-overlay {
    width:calc(100% - 20px);
    left: 10px;
    height: 480px;
    top: 64px;
  }
  
  .mv .fallback-img {
    content: url('img/mv-sp.png');
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .mv .mv-title img {
    width: 76vw;
    max-width: 350px;
    display: block;
    margin: 0 auto;
  }
  
  .mv img.mv-title-pc {
    display: none;
  }
  
  .mv img.mv-title-sp {
    display: block;
  }
  
  .mv .header-menu {
    display: none;
  }
  .fixed-header-sp{
    display: block;
  }
  

  
.menu.active .menu-line:first-child {
  transform: rotate(34deg) translate(0, 7px);
  background-color: var(--color-primitivie-color-natral-900);
}

.menu.active .menu-line:last-child {
  transform: rotate(-34deg) translate(0, -5px);
  background-color: var(--color-primitivie-color-natral-900);
}

  
  .mv .logo {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 137px;
    height: 30px;
    z-index: 10;
  }
  
  .mv .menu-btn-independent {
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 10;
    width: 31px;
    height: 31px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .mv .menu-line {
    width: 31px;
    height: 2px;
    background-color: var(--color-semantic-color-text-primary);
    display: block;
  }
  
  .mv .scroll-arrow {
    display: flex;
    bottom: 30px;
  }
  
  
  .header-menu-sp {
    display: block;
    position: absolute;
    top: 9px;
    right: 66px;
    z-index: 10;
  }
  
  .header-menu-sp .btn-ENTRY {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background-color: var(--color-semantic-color-background-secondary);
    border-radius: 100px;
    box-shadow: 6px 6px 8px rgba(231, 29, 10, 0.19);
    text-decoration: none;
  }
  
  .header-menu-sp .text-wrapper {
    font-weight: 700;
    font-size: 16px;
    line-height: 20.8px;
    font-family: "Outfit", sans-serif;
    color: var(--color-semantic-color-text-quinaty);
    white-space: nowrap;
  }
  
  
  
  .fixed-header-sp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .fixed-header-sp.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  
  .fixed-header-sp.show ~ .main-container .mv .menu-btn-independent {
    display: none;
  }
  
  
  body.menu-open .fixed-header-sp {
    display: none;
  }
  
  .fixed-header-sp-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    height: 60px;
  }
  
  .fixed-header-sp .logo {
    width: 128px;
    height: 28px;
    top: 16px;
    left: 14px;
  }
  
  .fixed-header-sp .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .fixed-header-sp .header-menu-sp {
    position: absolute;
    top: auto;
    right: 68px;
  }

  .menu-btn-fixed-independent{
    top: 10px;
    right: 9px;
    gap: 8px;
  }
  .menu-btn-fixed-independent .menu-line{
    width: 31px;
  }
  
  .fixed-header-sp .menu-btn-sp {
    display: none;
  }
  
  .fixed-header-sp .menu-btn-sp .menu-line {
    width: 31px;
    height: 2px;
    background-color: var(--color-semantic-color-text-primary);
    display: block;
  }

  
  .header-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    width: 100%;
  }

  .header-sp .logo {
    position: static;
    width: 129.28px;
    height: 31px;
    margin: 0;
    cursor: pointer;
  }
  
  .header-sp .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .header-sp .header-menu-btn-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-sp .btn-ENTRY {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background-color: var(--color-semantic-color-background-secondary);
    border-radius: 100px;
    box-shadow: 6px 6px 8px rgba(231, 29, 10, 0.19);
    text-decoration: none;
  }

  .header-sp .text-wrapper {
    font-weight: 700;
    font-size: 16px;
    line-height: 20.8px;
    font-family: "Outfit", sans-serif;
    color: var(--color-semantic-color-text-quinaty);
    white-space: nowrap;
  }

  .header-sp .menu {
    display: flex;
    flex-direction: column;
    width: 31px;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    position: relative;
  }

  
  .header-sp .menu-btn-independent {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 10002;
  }

  .header-sp .menu-btn-independent.active {
    z-index: 10002;
  }

  .rectangle {
    width: 31px;
    height: 2px;
    background-color: var(--color-semantic-color-text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  .mv-sp {
    width: 100%;
    height: auto;
    max-height: 522px;
  }

  
  .srction-concept {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 59px;
    padding: 0 20px;
  }
  .text-concept{
    padding: 30px 0px 40px;
    gap:20px;
    left: 0px;  
    width: 88%;
  }

  .srction-concept .text-concept {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 34px;
    padding: 20px 8px 60px;
  }
  .concept-description, .concept-detail{
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.8px;
  }

  .h {
    width: 100%;
  }
  .concept-title{
    font-size: 7vw;
    line-height: 11vw;
  }

  .h .text-wrapper-2 {
    font-family: var(--SP-h2-font-family);
    font-weight: var(--SP-h2-font-weight);
    color: var(--color-semantic-color-text-primary);
    font-size: var(--SP-h2-font-size);
    letter-spacing: var(--SP-h2-letter-spacing);
    line-height: var(--SP-h2-line-height);
    font-style: var(--SP-h2-font-style);
  }

  .srction-concept .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
  }

  .text p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: var(--color-semantic-color-text-primary);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}
.concept-image3{
  width: 90%;
}
  .text-wrapper-3 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 800;
    color: var(--color-semantic-color-text-primary);
    font-size: 22px;
    letter-spacing: 0.30px;
    line-height: 33.0px;
  }

  .p {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.30px;
    line-height: 33.0px;
  }
  .concept-image,.concept-img-sp{
    width: 100%;
    margin-bottom: 10px;
  }

  .span {
    font-weight: 500;
    letter-spacing: 0.04px;
  }


  .text-wrapper-4 {
    font-weight: 700;
    letter-spacing: 0.04px;
  }

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

  .slide-text-wrapper {
    width: 2896px;
    height: 68px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .slide-text-container {
    width: 1704px;
    height: 40px;
    display: inline-block;
    animation: slideText 60s linear infinite;
    object-fit: cover;
    white-space: nowrap;
    flex-shrink: 0; 
  }

  
  .section-recruit-req {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding: 50px 20px 50px;
    width: 100%;
    background-color: var(--color-semantic-color-background-quinary);
    border-radius: 20px;
  }

  .recruitment-title {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 800;
    color: var(--color-semantic-color-text-primary);
    font-size: 23px;
    letter-spacing: 0px;
    line-height: 33.6px;
  }

  .frame-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .frame-3 .h-2 {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .icon-mark {
    width: 24px;
    height: 24px;
  }

  .text-wrapper-6 {
    font-family: var(--SP-h3-font-family);
    font-weight: var(--PC-body-font-weight);
    color: var(--color-semantic-color-text-primary);
    font-size: var(--SP-h3-font-size);
    letter-spacing: var(--SP-h3-letter-spacing);
    line-height: var(--SP-h3-line-height);
    white-space: nowrap;
    font-style: var(--SP-h3-font-style);
  }

  .frame-3 .list-recruit-req {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    align-items: flex-start;
    gap: 40px;
  }

  .list{
    gap: 16px;
  }

  .lower-data, .lower-data-2{
    gap: 25px;
  }

  .frame-3 .lower-data {
    display: block;
    width: 100%;
    gap: 20px;
  }

  .frame-3 .lower-data-row {
    width: 100%;
    display: block;
    gap: 12px;
    padding: 0px 0px 20px;
    border-bottom: 1px solid var(--color-semantic-color-border-primary);
  }
  .lower-data-row {
    display: block;
    gap: 10px;
    padding-bottom: 4px;
  }

  .text-wrapper-4 {
    width: 100%;
    font-size: 18px;
  }
  
  .lower-data-row dt,
  .lower-data-row dd {
    display: block;
    width: 100%;
    padding-bottom: 18px;
  }

  .text-wrapper-7 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: var(--PC-body-font-weight);
    color: var(--color-semantic-color-text-primary);
    font-size: 16px;
    letter-spacing: 0.96px;
    line-height: 1.6rem;
  }

  .frame-4 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
    gap: 4px;
    width: 100%;
  }

  .frame-3 .text-wrapper-8 {
    font-family: var(--SP-body-font-family);
    font-weight: var(--SP-body-font-weight);
    color: var(--color-semantic-color-text-primary);
    font-size: var(--SP-body-font-size);
    letter-spacing: var(--SP-body-letter-spacing);
    line-height: var(--SP-body-line-height);
    white-space: nowrap;
    font-style: var(--SP-body-font-style);
  }

  .frame-5 {
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }

  .frame-3 .list {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .frame-6 {
    gap: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .frame-7 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .text-wrapper-9{
    font-size: 26px;
    font-weight: 700;
  }

  .text-wrapper-10 {
    width: 100%;
    line-height: 21.0px;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.90px;
  }

  .frame-8 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    align-items: flex-start;
  }
  h3.h-2{
    margin-bottom: 28px;
  }
  .div-2 {
    width: 100%;
  }

  .frame-9 {
    display: flex;
    gap: 4px;
    padding: 0px 0px 0px 18px;
    align-items: flex-start;
  }
  .arrow{
    right: 16px;
    width: 18px;
  }
  .btn-entry{
    max-width: 326px;
    margin: auto;
  }

  .text-wrapper-11 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.90px;
    line-height: 21.0px;
  }

  .list-2 {
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .frame-10 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 6px;
  }

  .frame-11 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 0px 0px 0px 18px;
    width: 100%;
  }

  .frame-12 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 0px 0px 0px 18px;
  }

  .frame-13 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  .text-wrapper-12 {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 14px;
    letter-spacing: 0.90px;
    line-height: 24.0px;
    white-space: nowrap;
  }

  .text-wrapper-13 {
    width: 100%;
    line-height: 24.0px;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.90px;
  }

  .frame-14 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 0px 0px 0px 18px;
    width: 100%;
  }

  .frame-15 {
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }

  .frame-3 .btn-entry {
    width: 100%;
    max-width: 360px;
  }

  .frame-3 .btn-entry-2 {
    display: flex;
    width: 100%;
    max-width: 350px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 30px 26px 28px 30px;
    background-color: var(--color-semantic-color-background-secondary);
    border-radius: 20px;
    box-shadow: 20px 20px 40px rgba(231, 29, 10, 0.2);
    text-decoration: none;
    position: relative;
    transition: box-shadow 0.3s ease;
  }
  
  .frame-3 .btn-entry-2:hover {
    box-shadow: 24px 24px 50px rgba(231, 29, 10, 0.3);
  }
  
  .frame-3 .btn-entry-2:hover .arrow {
    right: 7px;
  }

  .frame-16 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px;
  }

  .text-wrapper-14 {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: var(--color-semantic-color-text-quinaty);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
  }

  .text-wrapper-15 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    font-family: "Outfit", sans-serif;
    color: var(--color-semantic-color-text-quinaty);
    letter-spacing: 0;
    white-space: nowrap;
  }
  .list-recruit-req{
    gap: 40px;
  }

  .frame-3 .arrow {
    width: 19px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
  }

  .img-company-wrapper {
    height: 220px;
    margin: 40px auto;
    width: 96%;
    border-radius: 20px;
  }
  .btn-entry-2{
    padding: 20px 24px 18px 28px;
    gap:6px;
  }

  
  .access-image-group{
    height: 250px;
    margin-bottom: 30px;
  }
  .train-info, .car-info{
    white-space: normal;
  }
  .frame-17 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
  }
  .access-info{
    display: flex;
    gap: 30px;
  }

  .section-recruit-req-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 0px;
    width: 100%;
    border-radius: 20px;
  }

  .lower-data-row-2 {
    width: 100%;
    display: block;
    gap: 12px;
    padding: 0px 0px 20px;
    border-bottom: 1px solid var(--color-semantic-color-border-primary);
  }

  .div-3 {
    font-family: var(--SP-body-font-family);
    font-weight: var(--SP-body-font-weight);
    color: var(--color-semantic-color-text-primary);
    font-size: var(--SP-body-font-size);
    letter-spacing: var(--SP-body-letter-spacing);
    line-height: var(--SP-body-line-height);
    white-space: nowrap;
    font-style: var(--SP-body-font-style);
  }

  .text-wrapper-16 {
    letter-spacing: var(--SP-body-letter-spacing);
    font-family: var(--SP-body-font-family);
    font-style: var(--SP-body-font-style);
    font-weight: var(--SP-body-font-weight);
    line-height: var(--SP-body-line-height);
    font-size: var(--SP-body-font-size);
  }

  .text-wrapper-17 {
    letter-spacing: var(--SP-body-letter-spacing);
    text-decoration: underline;
    font-family: var(--SP-body-font-family);
    font-style: var(--SP-body-font-style);
    font-weight: var(--SP-body-font-weight);
    line-height: var(--SP-body-line-height);
    font-size: var(--SP-body-font-size);
  }

  .group {
    width: 100%;
    max-width: 350px;
    height: 249px;
    background-image: url(./img/mask-group.png);
    background-size: cover;
    background-position: center;
  }

  .frame-18 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    align-items: flex-start;
    gap: 30px;
  }

  .frame-19 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 8px;
  }

  .frame-20 {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .img {
    width: 20px;
    height: 20px;
  }

  .text-wrapper-18 {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: var(--color-semantic-color-text-primary);
    font-size: 18px;
    letter-spacing: 0.72px;
    line-height: 18px;
    white-space: nowrap;
  }

  .text-wrapper-19 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.60px;
    line-height: 27.0px;
  }

  .frame-21 {
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }

  .text-wrapper-20 {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: var(--color-semantic-color-text-primary);
    font-size: 18px;
    letter-spacing: 0.72px;
    line-height: 18px;
    white-space: nowrap;
  }

  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 36px 28px 20px;
    width: 100%;
    background-color: var(--color-semantic-color-background-quinary);
    border-radius: 20px 20px 0px 0px;
  }

  .logo-2 {
    display: flex;
    flex-direction: column;
    width: 130px;
    align-items: flex-start;
    gap: 2px;
    height: auto;
  }
  .logo-3 {
    width: 132px;
    height: 31.69px;
  }

  .text-wrapper-21 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: var(--color-semantic-color-text-primary);
    font-size: 15px;
    letter-spacing: 0.60px;
    line-height: 19.5px;
  }

  .sp-only .footer-submenu {
    display: flex;
    flex-direction: column;
    width: 134px;
    align-items: flex-start;
    gap: 18px;
  }

  .frame-22 {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
  }

  .text-wrapper-22 {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: var(--color-semantic-color-text-primary);
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 18.2px;
    white-space: nowrap;
  }

  .icon-popup {
    width: 11px;
    height: 11px;
  }

  .text-wrapper-23 {
    width: 100%;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: var(--color-semantic-color-text-primary);
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 18.2px;
    text-decoration: none;
  }

  .text-wrapper-24 {
    width: 100%;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: var(--color-semantic-color-text-primary);
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: 15.6px;
  }

  
  .sp-only .menu.active .rectangle:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--color-primitivie-color-natral-900);
  }

  .sp-only .menu.active .rectangle:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--color-primitivie-color-natral-900);
  }
}


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 42, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
}

.menu-content {
  position: fixed;
  top: 0;
  right: -30%;
  width: 38%;
  height: 100%;
  background-color: var(--color-primitivie-color-natral-100);
  padding: 80px 40px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  z-index: 10000;
}

.menu-nav {
  width: 100%;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-semantic-color-text-primary);
  text-decoration: none;
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-primitivie-color-natral-300);
  transition: all 0.3s ease;
}

.menu-link:hover {
  color: var(--color-semantic-color-background-secondary);
}

.menu-link.entry-link {
  background-color: var(--color-semantic-color-background-secondary);
  color: var(--color-primitivie-color-natral-100);
  border-radius: 100px;
  border-bottom: none;
  margin: 10px auto 0px;
  width: 280px;
  padding: 20px 45px;
  text-align: center;
  box-shadow: 8px 8px 20px rgba(231, 29, 10, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-size: 18px;
}

.menu-link.entry-link:hover {
  box-shadow: 12px 12px 30px rgba(231, 29, 10, 0.4);
  transform: translateY(-2px);
}

.menu-link.recruitment-link {
  background-color: var(--color-semantic-color-background-primary);
  color: var(--color-primitivie-color-natral-100);
  border-radius: 100px;
  padding: 20px 45px;
  width: 280px;
  font-weight: 600;
  text-align: center;
  box-shadow: 8px 8px 20px rgba(6, 98, 185, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin: 50px auto 10px;
  font-size: 18px;
}

.menu-list li:first-child .menu-link{
  padding-top: 0px;
}

.menu-link.recruitment-link:hover {
  box-shadow: 12px 12px 30px rgba(6, 98, 185, 0.4);
  transform: translateY(-2px);
}

.menu-link span{
  font-size:16px;
  font-weight: 400;
  color: var(--color-primitivie-color-natral-600);
}

.menu-footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.menu-footer-link {
  font-size: 14px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: row;
  font-weight: 400;
}

.menu-divider {
  color: var(--color-primitivie-color-natral-400);
  font-size: 14px;
}


body.menu-open {
  overflow: hidden;
}


@media (max-width: 768px) {
  .fixed-header {
    display: none !important;
  }
  
  .menu-content {
    width: 100%;
    right: -80%;
    padding: 60px 30px 40px;
  }
  
  .menu-link {
    font-size: 20px;
    padding: 22px 0;
  }
  .menu-link.recruitment-link{
    margin-top: 40px;
  }
  .menu-footer-link{
    font-size: 14px;
  }

  .recruitment-link,.entry-link{
    font-size: 16px;
  }

  .close-line {
    width: 25px;
  }
}

/* =========================
   タブレット版スタイル（769px-1023px）
   ========================= */

@media (min-width: 769px) and (max-width: 1023px) {
  .contents-wrapper {
    max-width: 100%;
  }

  .header-menu {
    right: 130px;
  }

  .logo {
    left: 52px;
  }

  .image-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .PC-img,
  .text-concept {
    width: 100%;
    margin: 0px auto;
    max-width: 800px;
    left: 20px;
  }
  .menu-content{
    width: 50%;
  }

  .section-recruit-req {
    padding: 60px 40px;
  }

  .section-recruit-req-2 {
    flex-direction: column;
    gap: 30px;
  }

  .lower-data,
  .lower-data-2 {
    display: flex;
    width: 100%;
    gap: 20px;
  }

  .lower-data-row {
    display: block;
    gap: 10px;
    padding-bottom: 0px;
  }

  .concept-title{
    font-size: 46px;
  }

  .text-wrapper-4 {
    width: 100%;
  }
  
  .lower-data-row dt,
  .lower-data-row dd {
    display: block;
    width: 100%;
  }
  
  .lower-data-row dt {
    margin-bottom: 10px;
  }
  
  .lower-data-row dd {
    margin-bottom: 20px;
  }

  .btn-entry {
    width: 100%;
  }

  .btn-entry-2 {
    padding: 30px 40px;
  }

  
  .section-company-info,
  .section-access {
    display: block;
    padding: 0 16px;
    margin: 0px auto;
  }
  
  .section-company-info .h-2,
  .section-access .h-2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  
  .access-image-group iframe {
    width: 100%;
    height: 300px;
  }
  
  .access-container {
    display: block;
  }
  
  .access-image-group {
    margin-bottom: 40px;
    height: 300px;
  }
  
  .access-info {
    display: flex;
    gap: 30px;
  }

  
  .footer-menu {
    display: none;
  }
  
  .footer-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-submenu {
    order: -1; 
  }

  .footer {
    padding: 36px 28px 20px;
    background-color: var(--color-semantic-color-background-quinary);
    border-radius: 20px 20px 0px 0px;
  }
}
