
:root {
  --font-family-main: 'Outfit', 'Noto Sans JP',
             -apple-system, BlinkMacSystemFont,
             'Segoe UI', 'Helvetica Neue', Helvetica,
             'Meiryo', 'Yu Gothic',
             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以上）
   ========================= */

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.pc-header .logo {
  position: static;
  width: 188px;
  height: 42px;
  margin: 0;
  cursor: pointer;
}

.pc-header .btn-recruitment-req,
.pc-header .btn-ENTRY {
  width: 140px;
  padding: 16px 0;
  text-align: center;
}

.pc-header .header-menu {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-link {
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 16px;
  color: var(--color-semantic-color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}


/* PC・タブレット時（769px以上）でメニューボタンとメニューを非表示 */
@media (min-width: 769px) {
  .menu,
  .menu-btn-independent,
  .menu-btn-fixed-independent,
  .menu-overlay {
    display: none !important;
  }
}


.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 var(--color-shadow-black);
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-100%);
}
.fixed-header-sp{
  display: none;
}

#recruitment,
#company,
#access,
#dispatch,
#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: 14px 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 var(--color-shadow-black-medium);
}

.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 var(--color-shadow-black-medium);
}

.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: 158px;
  height: 38px;
  cursor: pointer;
}

.fixed-header .header-menu {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  top: 8px;
}

.fixed-header .btn-recruitment-req,
.fixed-header .btn-ENTRY {
  width: 126px;
  padding: 12px 0;
  text-align: center;
  font-size: 15px;
}

.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: 14px;
}


.mv {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 634px;
  padding: 0 20px;
}

.mv .bg-image {
  position: absolute;
  width: calc(100% - 80px);
  height: 634px;
  top: 0;
  left: 40px;
  background-image: url('../img/bg_mv.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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% - 80px);
  height: 634px;
  opacity: 0.2;
  top: 0;
  left: 40px;
  background: linear-gradient(var(--color-gradient-overlay-1), var(--color-gradient-overlay-1)), linear-gradient(135.35deg, var(--color-gradient-overlay-2), var(--color-gradient-overlay-3));
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

.tiktok-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-icon img {
  width: 28px;
  height: auto;
}

.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: 510px;
  height: auto;
  max-height: 256px;
  display: block;
  margin: 0 auto;
  margin: 220px 0px 0px 40px;
}

.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: 13px;
  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 var(--color-shadow-blue);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-recruitment-req:hover {
  box-shadow: 12px 12px 30px var(--color-shadow-blue-hover);
  transform: translateY(-2px);
}

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

.btn-ENTRY:hover {
  box-shadow: 12px 12px 30px var(--color-shadow-red-hover);
  transform: translateY(-2px);
}

.recruitment-button {
  font-weight: 700;
  font-size: 16px;
  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: 16px;
  line-height: 23.4px;
  color: var(--color-semantic-color-text-quinaty);
  font-family: "Noto Sans JP", sans-serif;
}

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


.menu-btn-independent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 64px;
  right: 50px;
  z-index: 10002;
  width: 31px;
  height: 31px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 8px;
}

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

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


.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;
  right: -8px;
  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-900);
  letter-spacing: 2px;
  transform: rotate(90deg);
  white-space: nowrap;
  margin-bottom: 30px;
}

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


.section-concept {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 60px;
  padding: 60px 60px 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);
}

.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: 800;
}

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

/* 配車セクション */
.section_dispatch {
  background-color: var(--color-primitivie-color-promary-600);
  padding: 60px 4%;
  width: calc(100% - 120px);
  max-width: 1400px;
  margin: 0px auto;
  border-radius: 20px;
}

.dispatch-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  gap: 30px;
}

.dispatch-left-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.dispatch-image {
  max-width: 140px;
  width: 30%;
  flex-shrink: 0;
}

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

.dispatch-text {
  text-align: left;
}

.section_dispatch h2 {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-primitivie-color-natral-100);
  margin-bottom: 20px;
  margin-top: 0;
}

.section_dispatch p {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-primitivie-color-natral-100);
  margin: 0;
}

.dispatch-divider {
  width: 1px;
  height: 120px;
  background-color: var(--color-primitivie-color-natral-100);
  flex-shrink: 0;
  opacity: 0.6;
}

.dispatch-area {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.dispatch-area h3{
  color: var(--color-primitivie-color-natral-100);
  font-size: 24px;
  font-weight: 700;
}

.dispatch-area p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.dispatch-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-number {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-primitivie-color-natral-100);
  position: relative;
  padding-left: 35px;
  margin-right: 6px;
}

.phone-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 37px;
  background-image: url('../img/icon_tel.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-hours {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primitivie-color-natral-100);
  border: 1px solid var(--color-primitivie-color-natral-100);
  border-radius: 20px;
  padding: 8px 16px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap:wrap;
}

.tel-icon {
  width: 28px;
  height: 37px;
}

.customer-contact {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
  margin-top: 10px !important;
}

/* 求人セクション */
.section-recruit {
  margin: 20px 60px;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.recruit-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.recruit-text {
  flex: 1;
  width: 45%;
}

.recruit-image {
  flex-shrink: 0;
  width: 45%;
}

.recruit-image img {
  max-width: 540px;
  width: 100%;
  height: auto;
}

.section-recruit h4 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.section-recruit p.recruit-subtext {
  line-height: 2;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 460px;
  text-align: left;
}

.recruit-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.recruit-buttons .btn-recruitment-req,
.recruit-buttons .btn-ENTRY {
  max-width: 250px;
  width: 45%;
  text-align: center;
  justify-content: center;
  padding: 16px 0px;
}

/* お問い合わせセクション */
.section-contact {
  background-color: var(--color-semantic-color-background-quinary);
  padding: 60px;
  width: 90%;
  max-width: 1400px;
  border-radius:20px;
  margin-bottom: 40px;
}

.contact-content {
  max-width: 1160px;
  margin: 0 auto;
}

.contact-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.contact-layout h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-semantic-color-text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-text {
  flex: 1;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-semantic-color-text-primary);
  margin-bottom: 30px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--color-primitivie-color-natral-100);
  color: var(--color-primitivie-color-promary-600);
  border: 1px solid var(--color-primitivie-color-promary-600);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 8px 8px 20px var(--color-shadow-blue);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  box-shadow: 12px 12px 30px var(--color-shadow-blue-hover);
  transform: translateY(-2px);
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.btn-contact .contact-text {
  margin: 0;
}


.slide-text-wrapper {
  width: 2896px;
  height: 68px;
  margin-top: -60px;
  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 {
  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: calc(100% - 120px);
  margin: 0 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.company-image-pc,
.company-image-sp {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.company-image-pc {
  display: block;
}

.company-image-sp {
  display: none;
}

.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: 90%;
  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;
  margin-top: 60px;
  padding: 40px 40px 30px;
  border-top: 1px solid var(--color-border-gray);
}




.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-links {
  display: flex;
  align-items: center;
  gap: 46px;
}

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

.footer-tiktok-icon {
  width: 26px;
  height: auto;
}

.footer-list > .footer-tiktok-link {
  display: none;
}

.footer-menu-text {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.4px;
  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: 30px;
  flex-wrap: wrap;
}

.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;
}

.mv-bottom-right-img {
  display: none;
}

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

@media (max-width: 1024px) {
  
  .pc-only {
    display: none !important;
  }
  
  .sp-only {
    display: block !important;
  }
  
  .pc-header {
    display: flex !important;
  }
  
  .mv-bottom-right-img {
    display: none;
  }

  
  .section-concept {
    position: relative;
  }
  
  
  .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;
  }
  .footer-submenu{
    gap:10px;
  }
  
  
  .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) {

  .pc-header {
    display: none !important;
  }

  .footer-list > .footer-tiktok-link {
    display: block;
    position: absolute;
    right: 35px;
  }

  .contents {
    gap: 1px;
  }
  
  /* スマホでメニューボタンを強制表示 */
  .menu,
  .menu-btn-independent,
  .menu-btn-fixed-independent {
    display: flex !important;
  }
  
  .mv {
    height: 490px;
  }
  
  .mv .bg-image {
    display: block;
    z-index: 1;
    width:calc(100% - 20px);
    height: 420px;
    top: 0px;
    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: 240px 0px 0px;
  }
  
  .mv img.mv-title-pc {
    display: block;
  }
  
  .mv img.mv-title-sp {
    display: none;
  }
  
  .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: 15px;
    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: 26px;
    height: 2px;
    background-color: var(--color-semantic-color-text-primary);
    display: block;
  }
  
  .mv .scroll-arrow {
    display: none;
  }
  
  .mv .bg-image {
    width: 100%;
    margin-top: 68px;
    left: 0px;
  }
  
  .mv .video-overlay {
    width: 100%;
    height: 420px;
    top: 0px;
    left: 0px;
    margin-top: 68px;
  }
  
  .tiktok-icon {
    display: none;
  }
  
  .section_dispatch {
    width: 100%;
    margin: 0;
    border-radius: 20px;
    padding: 40px 20px;
  }

  .dispatch-content {
    flex-direction: column;
    gap: 30px;
  }

  .dispatch-divider {
    width: 100%;
    height: 1px;
    transform: rotate(0deg);
  }

  .dispatch-image {
    max-width: 70px;
    width: 70px;
    order: 1;
  }

  .dispatch-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }


  .dispatch-area{
    text-align:center ;
    gap: 12px;
  }
  .dispatch-area h3{
    color: var(--color-primitivie-color-natral-100);
    font-weight: 700;
    font-size: 20px;
  }

  .dispatch-area .customer-contact{
    text-align: left;
    line-height: 1.8;
  }

  .dispatch-left-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .dispatch-image {
    order: 1;
  }

  .dispatch-text {
    order: 2;
    text-align: center;
  }

  .phone-info {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background-color: var(--color-primitivie-color-natral-100);
    border-radius: 40px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 8px 8px 20px rgba(2, 76, 145, 0.46);
  }

  .phone-number::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('/img/icon_tel_blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
  }

  .phone-info:hover {
    background-color: var(--color-primitivie-color-natral-200);
  }

  .phone-info .phone-number{
    color: var(--color-primitivie-color-promary-600);
    font-size: 26px;
    padding-left: 22px;
  }
  .phone-info .service-hours {
    color: var(--color-primitivie-color-promary-600);
    font-size: 12px;
    border: 1px solid var(--color-primitivie-color-promary-600);
    padding: 4px 6px;
  }
  .dispatch-contact{
    align-items: center;
  }

  .recruit-content {
    flex-direction: column;
    gap: 30px;
  }

  .recruit-text,
  .recruit-image {
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .section-recruit {
    margin: 65px 20px;
  }

  .recruit-text h4 {
    font-size: 28px;
    text-align: left;
  }

  .recruit-buttons{
    gap: 10px;
    justify-content: center;
  }

  .recruit-buttons .btn-ENTRY,
  .recruit-buttons .btn-recruitment-req{
    width: 50%;
    border-radius: 14px;
  }

  .contact-layout {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .contact-layout h2{
    font-size: 28px;
  }

  .contact-button {
    text-align: center;
    width: 100%;
  }
  .company-info-section{
    margin-top: 20px;
  }
  
  
  .header-menu-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 13px;
    left: 15px;
    right: 56px;
    z-index: 10;
    gap: 6px;
  }
  
  .header-sp-logo {
    display: flex;
    align-items: center;
  }
  
  .header-sp-logo img {
    height: 30px;
    width: 137px;
  }
  
  .header-sp-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .btn-dispatch-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 13px;
    background-color: var(--color-semantic-color-background-primary);
    border-radius: 100px;
    box-shadow: 6px 6px 8px var(--color-shadow-blue);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .btn-dispatch-sp .text-wrapper {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    font-family: "Outfit", sans-serif;
    color: var(--color-semantic-color-text-quinaty);
  }
  
  .header-menu-sp .btn-ENTRY {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 13px;
    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;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .header-menu-sp .text-wrapper {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    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 15px;
    height: 60px;
  }
  
  .fixed-header-sp .logo {
    height: 30px;
    width: 137px;
    margin: 0;
    top: 0px;
    left: 0px;
    position: relative;
  }
  
  .fixed-header-sp-inner > a {
    display: block;
    z-index: 10;
    width: 118px;
    height: 26px;
    top: 2px;
    position: relative;
    z-index: 11;
  }
  
  .fixed-header-sp .logo img {
    width: 118px;
    height: 26px;
    object-fit: contain;
  }
  
  .fixed-header-sp .header-menu-sp {
    position: absolute;
    top: 10px;
    right: 56px;
    justify-content: end;
  }

  .menu-btn-fixed-independent{
    top: 10px;
    right: 15px;
    gap: 8px;
  }
  .menu-btn-fixed-independent .menu-line{
    width: 26px;
  }
  
  .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: 90%;
  }

  .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%;
  }
  .h-2{
    gap: 8px;
  }
  .img-3{
    width: 24px;
    height: 24px;
  }
  .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: 24px;
    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: 400;
    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 {
    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 {
    margin: 40px auto;
    width: 100%;
    border-radius: 20px;
  }

  .company-image-pc {
    display: none;
  }

  .company-image-sp {
    display: block;
  }
  .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%;
  }

  .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;
  }
  .btn-contact{
    width: 100%;
    max-width: 300px;
  }

  .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);
  }

  .section-contact{
    padding: 40px 30px!important;
  }

  /* 料金ページ - スマホ対応 */
  .page-header {
    padding: 60px 0 40px;
  }

  .page-title {
    font-size: 32px;
    margin: 0 0 15px;
  }

  .page-description {
    font-size: 16px;
  }

  .price-section,
  .price-notes-section,
  .dispatch-cta-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin: 0 0 40px;
  }

  .price-category {
    font-size: 20px;
    margin: 0 0 20px;
    padding: 12px 16px;
  }

  .price-table {
    overflow-x: auto;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .price-table th {
    font-size: 14px;
  }

  .notes-list li {
    font-size: 14px;
    padding: 12px 0;
    padding-left: 25px;
  }

  .dispatch-cta-section h2 {
    font-size: 28px;
    margin: 0 0 15px;
  }

  .dispatch-cta-section p {
    font-size: 16px;
    margin: 0 0 30px;
  }

  .cta-phone-info {
    flex-direction: column;
    gap: 10px;
    padding: 20px 30px;
  }

  .cta-phone-number {
    font-size: 24px;
  }

  .cta-service-hours {
    font-size: 12px;
  }

  /* 採用情報ページ - スマホ対応 */
  .recruitment-page-header {
    padding: 60px 0 40px;
  }

  .recruitment-page-title {
    font-size: 32px;
    margin: 0 0 15px;
  }

  .recruitment-page-description {
    font-size: 16px;
  }

  .recruitment-message-section,
  .driver-recruitment-section,
  .other-jobs-section,
  .application-section {
    padding: 60px 0;
  }

  .recruitment-message-container {
    flex-direction: column;
    gap: 30px;
  }

  .message-image {
    width: 100%;
  }

  .message-content h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }

  .message-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
    margin: 0 0 40px;
    flex-direction: column;
    gap: 10px;
  }

  .recruitment-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon img {
    width: 30px;
  }

  .feature-item h3 {
    font-size: 20px;
  }

  .feature-item p {
    font-size: 14px;
  }

  .job-details {
    padding: 30px 20px;
  }

  .details-title {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .details-table {
    overflow-x: auto;
  }

  .details-table th,
  .details-table td {
    padding: 15px 10px;
    font-size: 14px;
  }

  .details-table th {
    width: 100px;
    font-size: 13px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    padding: 25px 20px;
  }

  .job-card h3 {
    font-size: 20px;
  }

  .job-card p {
    font-size: 14px;
  }

  .application-section h2 {
    font-size: 28px;
    margin: 0 0 15px;
  }

  .application-section p {
    font-size: 16px;
    margin: 0 0 40px;
  }

  .application-buttons {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .app-button-group {
    padding: 30px 20px;
  }

  .app-button-group h3 {
    font-size: 18px;
  }

  .btn-application-driver,
  .btn-application-other {
    padding: 12px 24px;
    font-size: 14px;
  }
}


.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;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.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 var(--color-shadow-red);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-size: 18px;
}

.menu-link.entry-link:hover {
  box-shadow: 12px 12px 30px var(--color-shadow-red-hover);
  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 var(--color-shadow-blue);
  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 var(--color-shadow-blue-hover);
  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: 10px;
  justify-content: left;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.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;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .menu-content {
  right: 0;
}

.section-contact{
  padding: 60px 60px;
  margin-top: 40px;
}
.contact-content h2{
  text-align: center;
  margin: auto;
}


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

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

  .menu-link.recruitment-link{
    margin-top: 40px;
  }

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

/* =========================
   料金ページのスタイル
   ========================= */

/* ページヘッダー */
.page-header {
  background: linear-gradient(135deg, var(--color-primitivie-color-promary-600), var(--color-primitivie-color-promary-700));
  padding: 80px 0 60px;
  text-align: center;
  color: white;
}

.page-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

.page-description {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

/* 料金セクション */
.price-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-natral-100);
}

.price-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 60px;
  color: var(--color-semantic-color-text-primary);
}

.price-table-wrapper {
  margin-bottom: 60px;
}

.price-category {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
  color: var(--color-primitivie-color-promary-600);
  padding: 15px 20px;
  background-color: var(--color-primitivie-color-natral-200);
  border-radius: 10px;
}

.price-table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-primitivie-color-natral-300);
}

.price-table th {
  background-color: var(--color-primitivie-color-promary-600);
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.price-table td {
  font-size: 16px;
  color: var(--color-semantic-color-text-primary);
}

.price-table tbody tr:hover {
  background-color: var(--color-primitivie-color-natral-100);
}

/* 注意事項セクション */
.price-notes-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-natral-200);
}

.price-notes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.notes-content {
  max-width: 800px;
  margin: 0 auto;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notes-list li {
  padding: 15px 0;
  font-size: 16px;
  color: var(--color-semantic-color-text-primary);
  position: relative;
  padding-left: 30px;
}


/* 配車CTAセクション */
.dispatch-cta-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-promary-600);
  text-align: center;
  color: white;
}

.dispatch-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dispatch-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px;
}

.dispatch-cta-section p {
  font-size: 18px;
  margin: 0 0 40px;
  opacity: 0.9;
}

.dispatch-cta-contact {
  display: flex;
  justify-content: center;
}

.cta-phone-info {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background-color: white;
  color: var(--color-primitivie-color-promary-600);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-phone-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-phone-number {
  font-size: 28px;
  font-weight: 800;
}

.cta-service-hours {
  font-size: 14px;
  padding: 6px 12px;
  background-color: var(--color-primitivie-color-promary-600);
  color: white;
  border-radius: 20px;
}

/* =========================
   採用情報ページのスタイル
   ========================= */

/* 採用情報ページヘッダー */
.recruitment-page-header {
  background: linear-gradient(135deg, var(--color-semantic-color-background-secondary), #E71D0A);
  padding: 80px 0 60px;
  text-align: center;
  color: white;
}

.recruitment-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-page-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

.recruitment-page-description {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

/* メインメッセージセクション */
.recruitment-message-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-natral-100);
}

.recruitment-message-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.message-content {
  flex: 1;
}

.message-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 30px;
  color: var(--color-semantic-color-text-primary);
  line-height: 1.4;
}

.message-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-semantic-color-text-primary);
  margin: 0;
}

.message-image {
  flex-shrink: 0;
  width: 40%;
}

.message-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ドライバー募集セクション */
.driver-recruitment-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-natral-200);
}

.driver-recruitment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 60px;
  color: var(--color-semantic-color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.title-icon {
  width: 40px;
  height: auto;
}

/* 特徴アイテム */
.recruitment-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--color-primitivie-color-promary-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--color-semantic-color-text-primary);
}

.feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-semantic-color-text-primary);
  margin: 0;
}

/* 募集要項 */
.job-details {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.details-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  color: var(--color-semantic-color-text-primary);
  text-align: center;
}

.details-table table {
  width: 100%;
  border-collapse: collapse;
}

.details-table th,
.details-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-primitivie-color-natral-300);
  vertical-align: top;
}

.details-table th {
  background-color: var(--color-primitivie-color-natral-200);
  color: var(--color-semantic-color-text-primary);
  font-weight: 700;
  font-size: 16px;
  width: 150px;
}

.details-table td {
  font-size: 16px;
  color: var(--color-semantic-color-text-primary);
  line-height: 1.6;
}

/* その他職種セクション */
.other-jobs-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-natral-100);
}

.other-jobs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.job-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--color-primitivie-color-promary-600);
}

.job-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-semantic-color-text-primary);
  margin: 0;
}

/* 応募セクション */
.application-section {
  padding: 80px 0;
  background-color: var(--color-primitivie-color-promary-600);
  text-align: center;
  color: white;
}

.application-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.application-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px;
}

.application-section p {
  font-size: 18px;
  margin: 0 0 50px;
  opacity: 0.9;
}

.application-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.app-button-group {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  color: var(--color-semantic-color-text-primary);
}

.app-button-group h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--color-primitivie-color-promary-600);
}

.btn-application-driver,
.btn-application-other {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-semantic-color-background-secondary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-application-other {
  background-color: var(--color-primitivie-color-promary-600);
}

.btn-application-driver:hover {
  background-color: #C61808;
  transform: translateY(-2px);
}

.btn-application-other:hover {
  background-color: var(--color-primitivie-color-promary-700);
  transform: translateY(-2px);
}

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

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

  .footer-menu {
    display: flex !important;
  }

  .footer-tiktok-link {
    display: none !important;
  }

  .footer-list {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
  }

.pc-header .header-menu {
    gap:20px;
  }
.header-menu-btn-list{
  gap:10px;
}
  .logo {
    left: 52px;
  }
  .pc-header .logo{
    width: 148px;
  }

  .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 > .footer-tiktok-link {
    position: absolute;
    top: 36px;
    right: 28px;
    display: block;
  }

  .footer-tiktok-icon {
    width: 24px;
    height: 24px;
  }
  
  .footer-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }
  
  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-submenu {
    order: -1; 
    gap: 30px;
  }

}
