* {
  box-sizing: border-box;
  color: inherit;
  margin: 0;
  padding: 0;
}

:root {
  --font-family-base: "Noto Serif JP";

  --color-bg: #0f1b4f;
  --color-white: #fefefe;
  --color-black: #0d0d0d;
  --color-muted: #f7a000;
  --color-gold: #c39000cc;
  --accent-ig: #f7a000;

  --fs-xxxl: 96px;
  --fs-xxl: 64px;
  --fs-xl: 48px;
  --fs-lg: 36px;
  --fs-md: 24px;
  --fs-sm: 16px;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg);
  color: var(--color-white);
}

/* ------------------------------ BUTTONS ------------------------------ */

.check-btn-wrapper .form-submit-btn {
  font-family: var(--font-family-base);
  background-color: var(--color-muted);
  width: 450px;
  height: 60px;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
}

.check-btn-wrapper .form-submit-btn i {
  font-size: 20px;
  color: var(--color-white);
}

.check-btn-wrapper .form-submit-btn span {
  font-family: var(--font-family-base);
  margin: 0 auto;
}

.check-btn-wrapper .form-submit-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.check-btn-wrapper .form-submit-btn:hover i {
  color: var(--color-black);
}

.check-btn-wrapper a.form-submit-btn {
  background-color: var(--color-muted);
  width: 450px;
  height: 60px;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all 0.3s ease;
}

.check-btn-wrapper a.form-submit-btn i {
  font-size: 20px;
  color: var(--color-white);
}

.check-btn-wrapper a.form-submit-btn span {
  margin: 0 auto;
}

.check-btn-wrapper a.form-submit-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.check-btn-wrapper a.form-submit-btn:hover i {
  color: var(--color-black);
}

/* FORM BUTTONS */
.form-btn-wrapper .form-confirm-btn {
  font-family: var(--font-family-base);
  background-color: var(--color-white);
  width: 450px;
  height: 60px;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.form-btn-wrapper .form-confirm-btn i {
  font-size: 16px;
  color: var(--color-black);
}

.form-btn-wrapper .form-confirm-btn span {
  margin: 0 auto;
  font-family: var(--font-family-base);
  letter-spacing: 4px;
  font-weight: 600;
}

.form-btn-wrapper .form-confirm-btn:hover {
  background-color: var(--color-muted);
  color: var(--color-white);
}

.form-btn-wrapper .form-confirm-btn:hover i {
  color: var(--color-white);
}

.form-btn-area {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

/* BLOG BUTTON */
.button01-wrapper a.blog-button {
  background-color: var(--color-white);
  width: 280px;
  height: 60px;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button01-wrapper a.blog-button i {
  font-size: 20px;
  color: var(--color-black);
}

.button01-wrapper a.blog-button span {
  margin: 0 auto;
}

.button01-wrapper a.blog-button:hover {
  background-color: var(--color-muted);
  color: var(--color-white);
}

.button01-wrapper a.blog-button:hover i {
  color: var(--color-white);
}

.blog-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* HEADER BUTTON */
.button-wrapper a.contact-button,
.mobile-button a.contact-button {
  background-color: var(--color-muted);
  width: 300px;
  height: 60px;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.button-wrapper a.contact-button i,
.mobile-button a.contact-button i {
  font-size: 24px;
}

.button-wrapper a.contact-button:hover,
.mobile-button a.contact-button:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.button-wrapper a.contact-button:hover i,
.mobile-button a.contact-button:hover i {
  color: var(--color-black);
}

/* INDEX BUTTON */

.section-btn-wrapper {
  display: flex;
  justify-content: flex-end;
}

.read-more-btn {
  position: relative;
  display: inline-block;
  padding: 0 40px 10px;
  font-size: var(--fs-sm);
  color: var(--color-white);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: pointer;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.read-more-btn:hover,
.read-more-btn:focus-visible {
  color: #f7a000;
}

.read-more-btn:hover::after {
  height: 1px;
  width: 100%;
}

.read-more-btn:hover::after,
.read-more-btn:focus-visible::after {
  width: 100%;
  background-color: #f7a000;
}

/* Header Layout */
header,
.header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  padding: 30px;
  margin: 0 auto;
}

/* Logo */
.logo {
  flex-shrink: 0;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 400;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 30px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 50px;
  flex-wrap: nowrap;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--fs-sm);
  padding: 10px 25px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--color-muted);
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  /* FA icon size */
  line-height: 1;
  cursor: pointer;
}

.contact-links .contact-ig i {
  color: var(--accent-ig);
  font-size: 30px;
}

.contact-links .contact-phone {
  border-left: 1px solid var(--accent-ig);
  padding: 15px 0 15px 40px;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-nav.open {
  right: 0;
  padding: 150px 30px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--fs-sm);
  padding: 10px 25px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.mobile-links a:hover {
  border-bottom: 2px solid var(--color-muted);
}

.mobile-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
}

.mobile-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mobile-contacts a {
  color: #fefefe;
  line-height: 1;
  text-decoration: none;
}

.mobile-contacts .mobile-ig i {
  font-size: 30px;
  color: #fefefe;
}

.mobile-contacts .mobile-phone img {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) invert(1);
}

.mobile-contacts a:hover i,
.mobile-contacts a:hover img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.mobile-copy {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

/* Main Visual Section */
.mv-wrapper {
  width: 100%;
  max-width: 1920px;
  height: 70vh;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.mv {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Section */
.content02-wrapper {
  max-width: 1920px;
  overflow: visible;
  position: relative;
  padding: 200px 0 0 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.section-wrapper {
  max-width: 1920px;
  margin: 200px auto;
  position: relative;
  overflow: hidden;
  overflow: visible;
  position: relative;
}

.section-container,
.price-container {
  margin: 0 200px;
}

/* Section Title */
.section-title h2 {
  font-size: var(--fs-lg);
  color: var(--color-white);
  margin-bottom: 60px;
  letter-spacing: 10.8px;
}

.section-title span {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-left: 0.5rem;
  letter-spacing: 2.08px;
  font-weight: 700;
}

/* Content Flex Layout */
.section-content {
  display: flex;
  gap: 40px;
}

/* Left: Image Area */
.section-left {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.img-wrapper {
  position: relative;
  width: 500px;
  height: 600px;
  overflow: hidden;
}

.img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #1c2d3533 20%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-front {
  z-index: 2;
  position: relative;
}

.img-back {
  margin-top: 100px;
  margin-left: 0;
  z-index: 1;
  position: relative;
}

/* Right: Text Area */
.section-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: var(--color-white);
}

.section-right h3 {
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-right p {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
  color: var(--color-white);
  text-align: justify;
}

/* Layout for section title + button */
.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: baseline;
}

.section-title {
  font-size: var(--fs-lg);
  color: var(--color-white);
}

/* Service grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* Card styling */
.service-card {
  position: relative;
  border: 1px solid var(--color-white);
  height: 450px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-1 {
  background-image: url("../img/top/img03.jpg");
}

.service-2 {
  background-image: url("../img/top/img04.jpg");
}

.service-3 {
  background-image: url("../img/top/img05.jpg");
}

.service-4 {
  background-image: url("../img/top/img06.jpg");
}

.service-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: center;
  padding: 80px 60px;
  transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.service-header {
  text-align: center;
}

.service-text {
  color: var(--color-white);
  z-index: 2;
}

.service-header span {
  color: #f7a000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 3.6px;
}

.service-header h3 {
  font-size: var(--fs-md);
  color: var(--color-white);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  line-height: 30px;
  letter-spacing: 7.2px;
}

.service-text p {
  font-size: var(--fs-sm);
  color: var(--color-white);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
  text-align: justify;
}

/* Section layout */
.price-section-fixed {
  position: relative;
  display: flex;
  height: 600px;
  background-color: var(--color-white);
  overflow: hidden;
}

/* Slanted image layer */
.price-image-fixed {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
  z-index: 1;
}

.price-image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text content block on white bg */
.price-text-fixed {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 35%;
  padding: 30px;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
}

.price-text-fixed .section-title {
  font-size: var(--fs-lg);
  color: var(--color-black);
  text-align: center;
  letter-spacing: 10.8px;
  font-weight: 700;
}

.price-text-fixed .section-title span {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  letter-spacing: 2.08px;
  font-weight: 700;
}

.price-text-fixed p {
  font-size: var(--fs-sm);
  color: var(--color-black);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.price-text-fixed .read-more-btn {
  color: var(--color-black);
  transition: color 0.3s ease;
}

.price-text-fixed .read-more-btn::after {
  background-color: var(--color-black);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.price-text-fixed .read-more-btn:hover,
.price-text-fixed .read-more-btn:focus-visible {
  color: #f7a000;
}

.price-text-fixed .read-more-btn:hover::after,
.price-text-fixed .read-more-btn:focus-visible::after {
  background-color: #f7a000;
  width: 100%;
}

.price-text-fixed .section-btn-wrapper {
  justify-content: center;
}

/* Flex wrap for both left and right sides */
.vehicle-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left text container */
.vehicle-text-container {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.title-wrapper.section-title {
  font-size: var(--fs-lg);
  color: var(--color-white);
}

.title-wrapper span {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-left: 0.5rem;
}

.vehicle-description h3 {
  font-size: var(--fs-md);
  color: var(--color-white);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.vehicle-description p {
  font-size: var(--fs-sm);
  color: var(--color-white);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;
}

/* Right image container */
.vehicle-image-container {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vehicle-image-container img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.access-background {
  width: 100%;
  background-image: url("../img/top/sec-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.access-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 200px;
  width: 100%;
}

.access-title {
  margin-bottom: 60px;
}

.access-title .section-title {
  font-size: var(--fs-lg);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 10.8px;
}

.access-title .section-title span {
  color: var(--color-muted);
  font-size: var(--fs-sm);
  margin-left: 0.5rem;
  letter-spacing: 2.4px;
  font-weight: 700;
}

.access-content {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.access-map {
  flex: 1;
  width: 580px;
  height: 400px;
}

.access-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.access-info {
  flex: 1;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.access-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px 100px;
  font-size: var(--fs-sm);
  color: var(--color-white);
}

.access-dl dt {
  text-align: left;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.access-dl dd {
  margin: 0;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.section-blog {
  margin-bottom: 200px;
}

.access-section .section-btn-wrapper {
  justify-content: center;
}

.blog-section .section-title-wrapper {
  margin-bottom: 0;
}

.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Blog Grid */
.blog-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.blog-item {
  text-decoration: none;
  width: calc(33.333% - 1.33rem);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: opacity 0.3s ease;
}

.blog-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  padding-bottom: 30px;
}

.blog-date {
  text-decoration: none;
  font-size: var(--fs-sm);
  color: var(--color-white);
}

.blog-title {
  text-decoration: none;
  font-size: var(--fs-md);
  color: var(--color-white);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.site-footer {
  max-width: 1920px;
  margin: 0 auto;
  background-color: var(--color-bg);
  padding-top: 200px;
  color: var(--color-black);
  font-family: var(--font-family-base);
  position: relative;
}

/* Contact Banner */
.footer-contact a {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 350px;
  background-color: #f7a000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
  /* flex-wrap: wrap; */
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
}

.footer-contact-left {
  border-right: 1px solid var(--color-black);
  padding: 60px 100px;
}

.footer-contact-left h2 {
  font-size: var(--fs-xl);
  color: var(--color-black);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 9.6px;
}

.footer-contact-left p {
  font-size: var(--fs-sm);
  color: var(--color-black);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.2px;
}

.footer-contact-right {
  width: 100%;
  padding-left: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 60px;
}

.footer-contact-right p {
  font-size: var(--fs-sm);
  color: var(--color-black);
  text-align: center;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.arrow-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  width: 50%;
}

/* Main Footer */
.footer-main {
  background-color: #fff;
  color: var(--color-black);
  padding: 200px 60px 30px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 200px;

}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-black);
  line-height: 1;
}

.footer-icons .footer-ig i {
  font-size: 30px;
  color: var(--color-black);
}

.footer-icons .footer-phone img {
  width: 30px;
  height: 30px;
  display: block;
}

/* Hover hint */
.footer-icons a:hover i,
.footer-icons a:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

.footer-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-logo {
  font-size: var(--fs-lg);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 9.6px;
}

.footer-logo:hover {
  color: var(--color-muted);
}

.footer-links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-links li a {
  color: var(--color-black);
  text-decoration: none;
  font-size: var(--fs-sm);
  padding: 8px 12px 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-links li a:hover {
  border-bottom: 1px solid var(--color-muted);
}

.footer-link {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-link li a {
  color: var(--color-black);
  text-decoration: none;
  font-size: var(--fs-sm);
  padding: 8px 12px 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-link li a:hover {
  border-bottom: 1px solid var(--color-muted);
}

.copyright {
  font-size: var(--fs-sm);
  display: flex;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

/* SUB MV */
.sub-mv {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sub-mv__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.sub-mv__overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-mv__content {
  text-align: center;
  color: #fff;
}

.sub-mv__title {
  font-size: var(--fs-xxl);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 40px;
  border-bottom: 3px solid var(--color-muted);
  letter-spacing: 12.8px;
}

.sub-mv__subtitle {
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
}

/* ABOUT */
.content-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.content01-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.smoke-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.smoke-left {
  position: absolute;
  left: 0;
  top: -60px;
  height: auto;
  width: 850px;
  max-width: none;
  max-height: none;
}

.smoke-right {
  position: absolute;
  right: 0;
  top: -60px;
  height: auto;
  width: 850px;
  max-width: none;
  max-height: none;
}

.content01-container {
  max-width: 1920px;
  padding: 0 200px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content02-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 200px;
  text-align: center;
  position: relative;
}

.content03-container {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%;
}

.content01-title {
  font-size: var(--fs-xxxl);
  text-align: left;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #a4a4a4;
  padding: 0 200px;
}

.content01-title--bold {
  color: white;
  font-weight: bold;
}

.content01-car-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.content01-car {
  width: 100%;
  height: auto;
  z-index: 2;
}

.content01-subtitle {
  width: 100%;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  letter-spacing: 4.8px;
}

.content01-text-wrapper {
  padding: 0 200px;
}

.content01-text {
  width: 100%;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
  text-align: left;
}

/* CONTENT 2*/
.content-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 60px;
}

.content02-images {
  width: 100%;
  height: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 60px;
  position: relative;
}

.image-container {
  position: absolute;
  width: 700px;
  height: 900px;
}

.image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-left {
  top: 0;
  left: 0px;
}

.image-right {
  top: 100px;
  right: 0;
}

.text-container {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 20px;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.text01-container {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 20px;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.content-header {
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 4.8px;
}

.content-body {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
  text-align: justify;
}

.content-text {
  width: 30vw;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
  text-align: justify;
}

.car-section-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 60px;
  flex-direction: row;
  padding-right: 200px;
}

.car-image-container {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.car-image-container img {
  width: 900px;
  height: auto;
}

/* SERVICE */

.content-wrapper {
  max-width: 1920px;
  overflow: visible;
  position: relative;
  padding: 200px 0 0 0;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.content-wrapper.reverse {
  justify-content: flex-start;
  /* align boxes to the left */
}

/* Flex Container for Boxes */
.content-flex-box {
  position: relative;
  background-color: #fff;
  width: 1600px;
  height: 900px;
}

/* Each Image + Text Box */
.content-box {
  position: absolute;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Control positions manually */
.box-left {
  top: -200px;
  left: 100px;
}

.box-right {
  top: -100px;
  right: 200px;
}

.content-wrapper.reverse .box-left {
  top: -200px;
  left: 200px;
}

.content-wrapper.reverse .box-right {
  top: -100px;
  right: 100px;
}

/* Image Part */
.image-wrapper {
  position: relative;
  width: 600px;
  height: 600px;
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.category-label {
  color: var(--color-muted);
  text-align: left;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

/* PRICE */
.price-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.price-title {
  text-align: center;
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.price-subtitle {
  color: #fff;

  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.price-subtitle-2 {
  color: #fff;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

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

.price-table {
  border-collapse: collapse;
  background-color: transparent;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  color: #fff;
}

.price-table th {
  font-weight: 600;
}

.price-content--compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
  text-align: right;
}

.price-table--compact {
  border-collapse: collapse;
}

.price-table th,
.price-table td,
.price-table--compact th,
.price-table--compact td {
  width: 220px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  padding: 14px;
  border: 1px solid #ccc;
  color: #fff;
}

/* FOR SALE */

.vehicle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 200px;
  text-decoration: none;
}

.vehicle-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  text-decoration: none;
}

.vehicle-text {
  flex: 1;
  max-width: 50%;
  text-decoration: none;
}

.vehicle-title {
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
  z-index: 10;
  text-decoration: none;
}

.vehicle-description {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;
  text-decoration: none;
}

.vehicle-image-wrapper {
  flex: 1;
  max-width: 50%;
}

.vehicle-image-wrapper img {
  width: 680px;
  height: 485px;
  object-fit: cover;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin-top: 60px;
}

.custom-pagination .page-numbers {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.custom-pagination .page-numbers:hover {
  background: rgba(255, 255, 255, 0.3);
}

.custom-pagination .page-numbers.current {
  background: white;
  color: var(--color-bg);
  /* Replace with your dark background variable if needed */
  font-weight: bold;
}

/* BLOG */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  text-decoration: none;
}

.blog-item-wrapper {
  width: 380px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-decoration: none;
}

.blog-image-wrapper {
  width: 380px;
  height: 300px;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details {
  text-decoration: none;
}

.blog-date {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.blog-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.detail-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-header {
  display: flex;
  border-bottom: 1px solid var(--color-muted);
  padding-bottom: 15px;
  /* margin-bottom: 30px; */
  flex-direction: column;
  gap: 15px;
}

.detail-title {
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
}

.detail-date {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}

.detail-image {
  width: 100%;
  /* max-width: 800px; */
  height: 600px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.6px;
}

/* CONTACT FORM */
.form-text p {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 3.2px;
  margin-bottom: 60px;
  text-align: center;
}

.jp-contact-form {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 250px 50px 1fr;
  align-items: center;
  gap: 50px;
  padding: 0 60px 30px 60px;
  border-bottom: 1px solid #d9d9d9;
}

.form-row label {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 3.2px;
}

.required {
  display: flex;
  background: #bf0000;
  color: white;
  width: 60px;
  height: 30px;
  padding: 2px 7px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.required span {
  color: #f9f9f9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

.optional {
  content: "";
}

.input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  /* 312.5% */
  letter-spacing: 1.6px;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="number"],
.mw_wp_form textarea,
.mw_wp_form input[type="radio"]+label,
.mw_wp_form input[type="checkbox"]+label {
  color: var(--color-black);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
  font-family: var(--font-family-base);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  display: flex;
  width: 80%;
  height: 50px;
  padding: 10px 25px;
  align-items: center;
  background: #e1e1e1;
  border: none;
}

textarea {
  display: flex;
  width: 100%;
  height: 280px;
  padding: 10px 25px;
  align-items: center;
  background: #e1e1e1;
  border: none;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  background-color: #eee;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: background-color 0.2s, border-color 0.2s;
}

input[type="checkbox"]:checked {
  background-color: #fefefe;
  border: 1px solid transparent;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: 1px solid var(--color-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-text {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.privacy-box a {
  color: #ff4646;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
  text-decoration: none;
}

.privacy-box i {
  color: #ff4646;
}

.privacy-box span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
}

input::placeholder,
textarea::placeholder {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

.mwform-checkbox-field-text {
  display: none;
}

/* CONTACT-CHECK PAGE ONLY */
body.page-template-page-contact0-check .privacy-text,
body.page-template-page-contact0-check .required,
body.page-template-page-contact0-check .optional {
  display: none;
}

.contact-check-page .jp-contact-form .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

body.page-template-page-contact0-check .jp-contact-form .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

.contact-check-page .jp-contact-form .required,
.contact-check-page .jp-contact-form .optional,
.contact-check-page .jp-contact-form .privacy-box a,
.contact-check-page .jp-contact-form .privacy-box i,
.contact-check-page .jp-contact-form .privacy-box span {
  display: none;
}

.contact-check-page .static-answer {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

/* CONTACT-FINISH*/
.finish-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.finish-container h4 {
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 4.8px;
}

.finish-container p {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.privacy-container {
  max-width: 100%;
  margin: 0 auto;
}

.privacy-container p,
ol,
li {
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.privacy-container ol {
  padding-left: 30px;
}

.privacy-container h2 {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  letter-spacing: 4px;
  margin: 30px 0;
}

.fp-about {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-1 {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: column;
  padding: 0 40px;
}

.content-2 {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row;
  padding: 0 200px;
  padding: 0 200px;
  justify-content: space-between;
}

.text-part {
  width: 100%;
  padding: 0 200px;
}

.heading-xl {
  font-size: var(--fs-xxl);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.text-part p {
  font-size: var(--fs-sm);
  line-height: 2;
  opacity: 0.9;
}

.image-part {
  width: 100%;
  height: 500px;
}

.image-part img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.content-2 .table-part {
  flex: 0 1 70%;
}

.content-2 .image-part {
  width: 400px;
}

.company-info {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--color-white);
}

.company-info th {
  background: var(--color-white);
  color: var(--color-black);
  border-bottom: 2px solid var(--color-bg);
  white-space: nowrap;
  padding: 15px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 3.2px;
  width: 200px;
  text-align: right;
}

.company-info td {
  background: transparent;
  border-bottom: 0.5px solid var(--color-white);
  word-break: break-word;
  padding: 10px 50px;
  width: 600px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.2px;
}

.recruit-inner {
  padding: 0 200px;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.recruit-title {
  width: 100%;
  background: var(--color-white);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid var(--color-bg);
}

.recruit-title h2 {
  font-size: 36px;
  letter-spacing: 7.2px;
  font-weight: 700;
  color: var(--color-black);
}

.recruit-table-wrap {
  width: 100%;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--color-white);
}

.recruit-table th,
.recruit-table td {
  vertical-align: top;
  font-size: var(--fs-sm);
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 3.2px;
}

.recruit-table th {
  width: 20%;
  padding: 15px;
  background: var(--color-white);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-bg);
  white-space: nowrap;
  text-align: right;
}

.recruit-table td {
  width: 70%;
  background: transparent;
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  word-break: break-word;
  padding: 15px 50px;
}

@media (max-width: 1600px) {

  .content-2,
  .text-part,
  .recruit-inner {
    padding: 0 150px;
  }
}

@media (max-width: 1503px) {
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 1440px) {

  .content-text {
    width: 32vw;
  }

  .footer-left {
    gap: 150px;
  }

  .footer-right {
    width: 50%;
  }

  .content-2,
  .text-part {
    padding: 0 100px;
  }

  .blog-grid {
    gap: 30px;
  }

  .vehicle-list {
    gap: 100px;
  }

  .vehicle-text {
    max-width: 40%;
  }

  .vehicle-image-wrapper {
    max-width: 60%;
  }

  /* SERVICE*/
  .content-flex-box {
    width: 1300px;
  }

  .image-wrapper {
    width: 450px;
  }

  /* ABOUT*/
  .car-image-container img {
    width: 700px;
  }

  .image-container {
    width: 500px;
    height: 700px;
  }

  .content02-images {
    height: 800px;
  }

  /* INDEX*/

  .section-wrapper {
    margin: 100px auto;
  }

  .section-container,
  .price-container {
    margin: 0 100px;
  }

  .img-wrapper {
    width: 350px;
    height: 400px;
  }

  .service-overlay {
    padding: 60px;
  }

  .price-image-fixed {
    width: 65%;
  }

  .price-text-fixed {
    width: 40%;
  }

  .access-overlay {
    padding: 60px 100px;
  }

  .footer-contact-left {
    padding: 60px 60px 60px 0;
  }

  .footer-contact-right {
    gap: 20px;
    padding-left: 60px;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-right {
    gap: 30px;
  }

  .footer-links {
    gap: 10px 50px;
  }
}

@media (max-width: 1353px) {
  .footer-left {
    width: 50%;
  }

  .footer-links {
    gap: 10px 20px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .header-right {
    gap: 30px;
  }
}

@media (max-width: 1200px) {

  .content-text {
    width: 36vw;
  }

  .arrow-line img {
    width: 70%;

  }

  .content-2 .table-part {
    flex: 0 1 60%;
  }

  .company-info {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
  }

  .company-info tr {
    display: block;
  }

  .company-info th,
  .company-info td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .company-info th {
    padding: 10px;
    background: var(--color-white);
    color: var(--color-black);
    border: 0;
    line-height: 1.6;
    letter-spacing: 3.2px;
    white-space: normal;
  }

  .company-info td {
    padding: 10px;
    background: transparent;
    border-top: 0;
    line-height: 1.6;
    letter-spacing: 3.2px;
    word-break: break-word;
    border-bottom: none;
  }

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

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
  }

  .form-row {
    padding: 0 30px 30px 30px;
  }

  .vehicle-title {
    top: -30px;
  }

  .vehicle-text {
    max-width: 50%;
  }

  .vehicle-image-wrapper img {
    width: 500px;
    height: 300px;
  }

  /* SERVICE*/
  .content-flex-box {
    width: 1100px;
    height: 700px;
  }

  .image-wrapper {
    width: 100%;
    height: 450px;
  }

  .content-wrapper.reverse .box-left {
    top: -200px;
    left: 100px;
  }

  .box-right,
  .box-left {
    width: 430px;
  }

  .box-right {
    top: -100px;
    right: 100px;
  }

  /*ABOUT*/

  .content01-container,
  .content02-container,
  .content01-title,
  .content01-text-wrapper,
  .recruit-inner {
    padding: 0 100px;
  }

  .content02-images {
    height: 700px;
  }

  .image-container {
    width: 480px;
    height: 600px;
  }

  .car-section-container {
    padding-right: 100px;
  }

  .car-image-container img {
    width: 500px;
  }

  /* INDEX*/
  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .service-overlay {
    padding: 30px;
  }

  .vehicle-section {
    gap: 30px;
  }

  .access-dl {
    gap: 50px 30px;
  }

  .footer-contact a {
    height: 300px;
    padding: 50px;
  }

  .footer-contact-left {
    padding: 50px 50px 50px 0;
  }

  .footer-contact-right {
    gap: 10px;
    padding-left: 50px;
  }

  .footer-main {
    padding: 150px 50px 30px 50px;
  }
}

@media (max-width: 1100px) {
  .content-text {
    width: 40vw;
  }


  .footer-left {
    width: 40%;
    gap: 100px;
  }

  .copyright {
    font-size: 12px;
  }

  .footer-right {
    width: 60%;
  }
}

@media (max-width: 1024px) {
  .content-text {
    width: 100%;
  }

  .footer-left {
    gap: 60px;
  }

  .service-card {
    height: 550px;
  }

  .access-map {
    width: 100%;
  }

  .footer-main {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .footer-links {
    display: none;
  }

  .footer-link {
    justify-content: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-icons,
  .copyright {
    justify-content: center;
  }

  .footer-left {
    align-items: center;
    width: 100%;
  }

  .recruit-inner {
    gap: 100px;
  }

  .heading-xl {
    font-size: var(--fs-xl);
  }

  .text-part {
    padding: 0;
  }

  .content-2 {
    padding: 0 40px;
  }

  .content-body {
    width: 100%;
  }

  .contact-check-page .jp-contact-form .form-row {
    grid-template-columns: 150px 1fr;
  }

  body.page-template-page-contact0-check .jp-contact-form .form-row {
    grid-template-columns: 150px 1fr;
  }

  .form-btn-area {
    display: flex;
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .form-btn-wrapper .form-confirm-btn,
  .check-btn-wrapper .form-submit-btn {
    width: 400px;
  }

  .form-row .input-wrapper {
    grid-column: 1 / span 2;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 312.5% */
    letter-spacing: 1.6px;
  }

  .form-row {
    grid-template-columns: 250px auto;
    grid-template-rows: auto auto;
    gap: 10px 10px;
  }

  .form-row label {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .form-row .required,
  .form-row .optional {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row textarea,
  .form-row .privacy-box {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    width: 100%;
  }

  body.page-template-page-contact0-check .jp-contact-form .form-row {
    grid-template-columns: 250px auto;
    grid-template-rows: auto auto;
    gap: 10px 10px;
  }

  body.page-template-page-contact0-check .jp-contact-form label {
    grid-column: 1;
    grid-row: 1;
  }

  body.page-template-page-contact0-check .jp-contact-form .form-row label {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  body.page-template-page-contact0-check .jp-contact-form .static-answer {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
  }

  body.page-template-page-contact0-check .jp-contact-form .static-answer {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .access-content {
    flex-direction: column;
  }

  .access-map {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .access-info {
    gap: 30px;
  }

  /*VEHICLES*/
  .vehicle-list {
    gap: 100px;
  }

  .vehicle-item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }

  .vehicle-title {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }

  .vehicle-image-wrapper {
    max-width: 80%;
    margin: 0;
    height: 400px;
  }

  .vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
  }

  .vehicle-text {
    max-width: 100%;
    width: 100%;
  }

  .vehicle-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .content-wrapper {
    padding: 0;
  }

  .content-flex-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--color-black);
  }

  .box-left,
  .box-right,
  .content-wrapper.reverse .box-left,
  .content-wrapper.reverse .box-right {
    width: 80%;
    top: unset;
    left: unset;
    right: unset;
  }

  /*ABOUT*/
  .content02-wrapper {
    padding: 100px 0 0 0;
  }

  .content01-title {
    font-size: var(--fs-xxl);
  }

  .content01-car {
    width: 100%;
  }

  .content02-images {
    height: 650px;
  }

  .image-container {
    width: 400px;
    height: 550px;
  }

  .smoke-wrapper {
    width: 100%;
    height: auto;
  }

  .smoke-left,
  .smoke-right {
    width: 500px;
  }

  /*INDEX*/
  .price-container {
    margin: 0;
  }

  .section-container {
    margin: 0 50px;
  }

  .mv-wrapper {
    height: 80vh;
  }

  .section-content {
    flex-direction: column;
    align-items: center;
  }

  .section-left,
  .section-right {
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .section-btn-wrapper {
    justify-content: center;
    margin-top: 30px;
  }

  .img-wrapper {
    width: 400px;
    height: 600px;
  }

  .access-overlay {
    padding: 50px;
  }

  .vehicle-text-container {
    width: 50%;
  }

  .vehicle-image-container {
    width: 60%;
  }

  .access-dl {
    gap: 30px 10px;
  }

  .footer-contact a {
    width: 90%;
  }
}

@media (max-width: 853px) {
  .sub-mv__title {
    font-size: 48px;
  }

  .footer-contact a {
    width: 95%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-evenly;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recruit-inner {
    padding: 0 40px;
  }

  .recruit-table td {
    padding: 15px 30px;
  }

  .content-2 {
    flex-direction: column;
  }

  .content-2 .table-part,
  .content-2 .image-part {
    width: 100%;
  }

  .service-card {
    height: 450px;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-xl: 36px;
    --fs-lg: 24px;
    --fs-md: 20px;
  }

  .price-text-fixed .section-title {
    margin-bottom: 20px;
    width: 100%;
  }

  .price-text-fixed {
    gap: 0;
  }

  .recruit-table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
  }

  .recruit-title {
    border-bottom: none;
  }

  .recruit-table tr {
    display: block;
  }

  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
  }

  .recruit-table th {
    padding: 12px 16px;
    color: var(--color-black);
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
  }

  .recruit-table td {
    padding: 12px 16px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    border-top: 0;
    word-break: break-word;
    color: var(--color-black);
  }

  .recruit-table th {
    width: auto;
  }

  .recruit-table td {
    width: auto;
    border-right: 1px solid var(--color-white);
  }

  .sub-mv__title {
    font-size: var(--fs-xl);
  }

  .price-table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .price-table {
    border-collapse: collapse;
    min-width: 800px;
    width: max-content;
  }

  .price-table th,
  .price-table td {
    border: 1px solid #fff;
    padding: 12px;
    text-align: center;
    white-space: nowrap;
    color: var(--color-white);
    font-size: 13px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    position: sticky;
    left: 0;
    background-color: #0e1d25;
    z-index: 1;
    width: 150px;
  }

  .price-table th:first-child {
    z-index: 2;
    font-weight: bold;
  }

  .price-content--compact .price-table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .price-table--compact {
    border-collapse: collapse;
    min-width: 600px;
    width: max-content;
  }

  .price-table--compact th,
  .price-table--compact td {
    border: 1px solid #fff;
    padding: 12px;
    text-align: center;
    white-space: nowrap;
    color: var(--color-white);
    font-size: 13px;
    width: 150px;
  }

  .price-table--compact th:first-child,
  .price-table--compact td:first-child {
    position: sticky;
    left: 0;
    background-color: #0e1d25;
    z-index: 1;
  }

  .price-table--compact th:first-child {
    z-index: 2;
    font-weight: bold;
  }

  .form-row {
    padding: 0 0 30px 0;
  }

  .blog-item-wrapper,
  .blog-image-wrapper {
    width: 450px;
  }

  /*ABOUT*/
  .content01-container,
  .content02-container {
    padding: 0 30px;
  }

  .content02-images {
    height: 550px;
  }

  .image-container {
    width: 340px;
    height: 450px;
  }

  .car-section-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .text01-container,
  .content01-title,
  .content01-text-wrapper {
    padding: 0 30px;
  }

  /*INDEX*/
  .service-header h3 {
    font-weight: 500;
  }

  .service-text p,
  .price-text-fixed p {
    font-size: 12px;
  }

  .section-container {
    margin: 0 30px;
  }

  .price-section-fixed {
    height: 500px;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .vehicle-section {
    flex-direction: column;
  }

  .vehicle-text-container,
  .vehicle-image-container,
  .blog-section {
    width: 100%;
    gap: 0;
  }

  .footer-contact a {
    padding: 30px;
  }

  .img-wrapper {
    height: 500px;
  }

  .access-overlay {
    padding: 50px;
  }

  .access-content {
    flex-direction: column;
  }

  .access-map {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .access-info {
    gap: 30px;
  }



  .footer-contact-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-black);
    padding: 0 0 20px 0;
  }

  .footer-contact-right {
    justify-content: space-between;
  }

  .footer-right,
  .footer-left {
    width: 100%;
    gap: 30px;
    align-items: center;
  }

  .blog-item {
    width: 100%;
  }

  .blog-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 540px) {

  .footer-contact-right {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .arrow-line img {
    width: 100%;
  }

  .sub-mv__subtitle {
    padding: 20px 0 0 0;
  }

  .read-more-btn {
    padding: 0 20px 10px;
  }

  .service-header h3 {
    font-size: var(--fs-sm);
  }

  .access-map {
    height: 350px;
  }

  .content-1,
  .content-2,
  .recruit-inner {
    padding: 0 20px;
  }

  .image-part {
    height: 450px;
  }

  .footer-contact-right {
    padding-left: 0;
  }

  .mv-wrapper {
    height: 40vh;
  }

  .section-left,
  .section-right {
    gap: 20px;
  }

  .img-wrapper {
    height: 400px;
  }

  .service-card {
    height: 500px;
  }

  .section-title-wrapper {
    align-items: center;
    flex-direction: column;
  }

  .section-title-wrapper {
    margin-bottom: 30px;
  }

  .price-section-fixed {
    padding: 30px;
    flex-direction: column;
    height: auto;
  }

  .price-image-fixed {
    position: relative;
    width: 100%;
    height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .price-text-fixed {
    width: 100%;
    margin-left: 0;
    gap: 0;
    padding: 0;
  }

  .access-overlay {
    padding: 50px 20px;
  }

  .price-text-fixed p {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-overlay {
    padding: 15px;
  }


}

@media (max-width: 425px) {
  :root {
    --fs-xl: 24px;
    --fs-lg: 20px;
    --fs-md: 16px;
  }

  .form-row .input-wrapper {
    line-height: 30px;
  }

  .price-content--compact {
    width: 100%;
  }

  .price-table th:first-child,
  .price-table td:first-child,
  .price-table--compact th:first-child,
  .price-table--compact td:first-child {
    width: 100px;
  }

  .contact-check-page .static-answer {
    line-height: 30px;
  }

  .form-btn-wrapper .form-confirm-btn,
  .check-btn-wrapper .form-submit-btn {
    width: 300px;
    height: 50px;
  }

  .required {
    width: 50px;
    height: 25px;
  }

  .detail-image {
    height: 400px;
  }

  .blog-grid {
    gap: 60px;
  }

  .blog-item-wrapper,
  .blog-image-wrapper {
    width: 100%;
  }

  .vehicle-image-wrapper {
    max-width: 100%;
  }

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

  .vehicle-item {
    gap: 0;
  }

  .custom-pagination {
    gap: 30px;
  }

  /*SERVICE*/
  .content-wrapper {
    padding: 0;
  }

  .content-flex-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--color-black);
  }

  .box-left,
  .box-right,
  .content-wrapper.reverse .box-left,
  .content-wrapper.reverse .box-right {
    width: 100%;
    top: unset;
    left: unset;
    right: unset;
  }

  /*ABOUT*/
  .content01-container,
  .content02-container {
    padding: 0 20px;
  }

  .content02-images {
    flex-direction: column;
    height: 450px;
  }

  .image-container {
    width: 350px;
    height: 200px;
  }

  .image-right {
    top: 220px;
  }

  .car-section-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .car-image-container img {
    width: 350px;
  }

  .text01-container,
  .content01-title,
  .content01-text-wrapper {
    padding: 0 20px;
  }

  .content01-title {
    font-size: 56px;
  }

  .smoke-left,
  .smoke-right {
    width: 300px;
    top: 0;
  }

  /*INDEX*/
  .footer-contact-right p,
  .section-title span,
  .price-text-fixed .section-title span {
    font-size: 12px;
  }

  .price-text-fixed p {
    font-size: var(--fs-md);
  }

  .section-container {
    margin: 0 20px;
  }

  .section-left {
    gap: 20px;
  }

  .img-wrapper,
  .vehicle-image-container {
    height: 300px;
  }

  .vehicle-image-container img {
    height: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .access-overlay {
    padding: 50px 20px;
  }

  .access-dl {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .access-dl dt {
    font-weight: 600;
  }

  .blog-item {
    width: 80%;
  }

  .footer-contact-right {
    padding-left: 0;
  }

  .footer-contact a {
    justify-content: center;
    height: 250px;
    padding: 20px;
    gap: 20px;
  }

  .footer-main {
    padding: 100px 20px 20px 20px;
  }

  .copyright {
    font-size: 12px;
    text-align: center;
  }

  .section-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .price-section-fixed {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .price-image-fixed {
    position: relative;
    width: 100%;
    height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .price-text-fixed {
    width: 100%;
    margin-left: 0;
    gap: 0;
  }

  .access-dl dd {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
}

@media (max-width: 375px) {


  .header-inner {
    padding: 30px 20px;
  }

  .footer-contact-right {
    gap: 0;
  }

  .form-btn-wrapper .form-confirm-btn,
  .check-btn-wrapper .form-submit-btn {
    width: 280px;
    height: 50px;
  }

  .detail-image {
    height: 350px;
  }

  .button01-wrapper a.blog-button {
    width: 250px;
    height: 50px;
  }

  .custom-pagination {
    gap: 20px;
  }

  .image-wrapper {
    height: 350px;
  }

  .car-image-container img {
    width: 300px;
  }

  .content01-title {
    font-size: 42px;
  }

  .smoke-left,
  .smoke-right {
    width: 300px;
    top: -40px;
  }

  .image-right {
    top: 200px;
  }

  .image-container {
    width: 300px;
    height: 180px;
  }

  .content02-images {
    height: 400px;
  }

  .mobile-links {
    gap: 20px;
  }

  .section-left {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .img-wrapper {
    width: 90%;
    height: 150px;
  }

  .img-back {
    margin-top: 0;
    margin-left: 30px;
  }

  .blog-item {
    width: 100%;
  }

  .access-map {
    height: 350px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-links {
    gap: 10px;
  }

  .button-wrapper a.contact-button,
  .mobile-button a.contact-button {
    width: 250px;
    height: 50px;
  }
}

@media (max-width: 320px) {
  .sub-mv {
    height: 40vh;
  }

  .form-row {
    grid-template-columns: 210px auto;
  }

  .privacy-box {
    align-items: baseline;
  }

  .privacy-text {
    display: flex;
    align-items: flex-start;
    gap: 0;
    line-height: 1.5;
    flex-direction: column;
  }

  .privacy-box a {
    line-height: 30px;
  }

  .detail-title {
    font-size: var(--fs-sm);
  }

  .service-card {
    height: 600px;
  }

  .image-container {
    width: 280px;
    height: 180px;
  }
}