@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}
*,
*::before,
*::after {
  font-family: inherit;
}
* {
  box-sizing: border-box;
}

/* ===============header====================== */

.main-header {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1111;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1520px;
  padding: 19px 50px;
  width: 100%;
  gap: 180px;
  margin: 0 auto;
}

.logo-div {
  flex-shrink: 0;
}

.logo-img {
  height: auto;
  width: auto;
  max-width: 255px;
  display: block;
}

/* ============================================
           NAVIGATION MENU STYLES
           ============================================ */
.main-menues {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 20px;
  list-style: none;
  flex: 1;
}

.main-menues a {
  list-style: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  color: rgba(51, 51, 51, 1);
  transition: color 0.3s ease;
  position: relative;
}

.main-menues a:hover {
  color: #5eb5d0;
}

.main-menues a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5eb5d0;
  transition: width 0.3s ease;
}

.main-menues a:hover::after {
  width: 100%;
}

/* ============================================
           HAMBURGER MENU BUTTON STYLES
           ============================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

/* .hamburger-btn:focus {
  outline: 2px solid #5eb5d0;
  outline-offset: 2px;
} */

/* ============================================
           HAMBURGER ANIMATION - ACTIVE STATE
           ============================================ */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

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

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

@media (max-width: 1200px) {
  .container-header {
    gap: 20px;
    padding: 20px;
  }

  .logo-img {
    max-width: 183px;
  }

  .main-menues {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: white;
    border-top: 2px solid #5eb5d0;
    padding: 20px 30px;
    width: 100%;
    align-items: flex-start;
    margin-top: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease forwards;
  }

  .main-menues.active {
    display: flex;
  }

  .main-menues a {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .main-menues a::after {
    display: none;
  }

  .main-menues a:last-child {
    border-bottom: none;
  }

  .main-menues a:hover {
    padding-left: 10px;
  }

  .hamburger-btn {
    display: flex;
    order: 2;
  }

  .container-header {
    position: relative;
  }
}

@media (max-width: 768px) {
  .main-menues {
    padding: 15px 20px !important;
  }

  .hamburger-btn {
    padding: 8px;
  }

  .hamburger-btn span {
    width: 24px;
    height: 2.5px;
  }

  .main-menues a {
    font-size: 16px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .container-header {
    gap: 10px;
  }

  .main-menues {
    padding: 12px 15px !important;
  }

  .hamburger-btn {
    padding: 6px;
  }

  .hamburger-btn span {
    width: 20px;
    height: 2px;
    gap: 4px;
  }

  .main-menues a {
    font-size: 14px;
    padding: 10px 0;
  }
}

@media (max-width: 360px) {
  .main-menues a {
    font-size: 13px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============header====================== */

/* ===============hero section====================== */
.slider {
  position: relative;
  width: 100%;
  height: 1024px;
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}
.slide {
  min-height: 1024px;
  background-size: cover;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  width: 100%;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  top: 50%;
  left: 10%;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  font-family: Julius Sans One;
  font-weight: 400;
  font-size: 200px;
  line-height: 100%;
  letter-spacing: 0%;
  display: none;
}

.slide-bottom-image {
  position: absolute;
  bottom: 20px;
  display: block;
  right: 0;
}
.main-custom-van {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  overflow: hidden;
  border-radius: 30px;
}
.main-custom-van img {
  object-fit: cover;
  position: relative;
  right: 40px;
  top: -15px;
  z-index: 111;
}
.main-new:after {
  position: absolute;
  width: 74%;
  height: 200px;
  content: "";
  inset: 0;
  top: 0;
  background-color: white;
  z-index: -1;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.88);
  border-radius: 30px;
}
.main-new p {
  background-image: url(pictures/Vector\ 11111.png) !important;
  background-repeat: no-repeat !important;
  background-size: 85% !important;
  margin: auto !important;
  background-position: center !important;
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  padding: 6px 50px;
  background: rgba(151, 202, 217, 1);
  color: white;
}
.main-new {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  padding-top: 30px;
}

.main-new a {
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(151, 202, 217, 1);
  text-decoration: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}
.hero-svg {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(151, 202, 217, 1);
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.hero-svg svg {
  position: relative;
  right: -1px;
  top: 1px;
}

.van-btn-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.van-btn-main a:after {
  position: absolute;
  width: 760px;
  height: 5px;
  background: rgba(151, 202, 217, 1);
  content: "";
  bottom: -18px;
}
.slide-content-mbl {
  display: block !important;
}

@media (min-width: 1024px) {
  .slide-content {
    display: block;
  }
  .slide-content-mbl {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .slide-bottom-image {
    display: block;
  }
}
@media (max-width: 1900px) {
  .slide-content {
    font-size: 7vw;
  }
}

@media (max-width: 768px) {
  .mbl-bottom-img {
    display: flex;
    position: absolute;
    bottom: 140px !important;
    align-items: end;
    justify-content: space-between;
    margin: auto;
    width: 100%;
    border-bottom: 5px solid rgba(151, 202, 217, 1);
  }
  .mbl-custom-lady p {
    background: rgba(151, 202, 217, 1);
    position: absolute;
    bottom: 30%;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 13px 36px;
    color: white;
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left !important;
    background-image: url(pictures/Vector\ 11111.png) !important;
    background-repeat: no-repeat !important;
    background-size: 265px !important;
    margin: auto !important;
    background-position: left !important;
  }
  .mbl-custom-lady a {
    background: white;
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
    left: 0;
    display: flex;
    align-items: anchor-center;
    justify-content: start !important;
    padding: 10px;
    text-decoration: none;
    font-family: Noto Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    align-items: baseline;
    gap: 15px;
    color: rgba(151, 202, 217, 1);
  }
  .mbl-custom-lady a .hero-svg {
    width: 30px;
    height: 30px;
  }
  .slider-yuske img {
    width: 201px;
    z-index: 11111;
    position: relative;
    right: 0;
    bottom: -4px;
  }
}
@media (max-width: 990px) {
  .slider {
    height: 876px;
  }
}

/* ===============hero section====================== */

/* ===============img gallery section====================== */
.main-gallery-section {
  margin-top: 91px;
  width: 100%;
}
.main-gallery-section .container {
  display: flex;
  width: 100%;
  justify-content: center;
}
.first-gallery-main-div {
  display: flex;
  flex-direction: column;
}
.first-gallery-content {
  height: 100%;
  border-right: 5px solid rgba(137, 195, 212, 1);
  padding: 70px 0 0 180px;
  border-radius: 0 30px 0 0;
  margin-right: -100px;
  z-index: 111;
  margin-top: -10px;
  background: white;
}
.gallery-heading {
  font-family: Noto Sans;
  font-weight: 900;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: 5%;
  color: rgba(51, 51, 51, 1);
  margin: 0 0 30px;
}
.gallery-description {
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 5%;
  margin: 0;
}
.second-gallery-img {
  height: 100%;
  object-fit: cover;
}
.pangeg-img {
  position: absolute;
  left: 0;
}

@media (max-width: 440px) {
  .gallery-heading {
    white-space: normal !important;
    max-width: 75%;
  }
}
@media (max-width: 1200px) {
  .pangeg-img {
    display: none !important;
  }
}
@media (max-width: 1600px) {
  .pangeg-img {
    display: none;
  }
  .img-text-card::after {
    width: 100%;
  }
}

@media (max-width: 990px) {
  .main-gallery-section {
    margin-top: 0;
  }
  .main-gallery-section .container {
    flex-direction: column;
  }
  .first-gallery-content {
    height: 100%;
    border-right: none;
    padding: 25px 0 0 20px;
    border-radius: 0;
    margin: 0;
    z-index: 111;
    margin-top: 0;
    background: white;
  }
  .gallery-heading {
    font-size: 28px;
    margin: 0 0 20px;
  }
  .gallery-description {
    margin: 0 0 20px;
  }
}

/* ===============img gallery section====================== */

/* ===============img with text section====================== */
.container-img-text {
  max-width: 1554px;
  margin: auto;
  padding: 130px 50px 0;
}
.img-text-heading {
  margin: 0 0 90px;
  text-align: center;
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  color: rgba(51, 51, 51, 1);
  letter-spacing: 5%;
  width: 52%;
  margin: 0 auto 90px;
  position: relative;
}
.img-text-heading::after {
  content: "";
  position: absolute;
  height: 24px;
  z-index: -1;
  background: rgba(137, 195, 212, 1);
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.img-text-card {
  display: flex;
  justify-content: space-around;
  max-width: 1520px;
  margin: auto;
  position: relative;
  align-items: anchor-center;
  top: 37px;
  margin-bottom: 50px;
}
.img-text-card::after {
  position: absolute;
  background: white;
  content: "";
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  height: 450px;
  width: 101%;
  z-index: -1;
}
.image-text-text {
  padding: 50px 110px 50px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 43px;
}
/* .img-text-img{
    position: absolute;
    right: 25px;
    } */
.img-text-heading-main {
  display: flex;
  align-items: center;
  gap: 50px;
}
.img-text-heading-main span {
  font-family: Goldman;
  font-weight: 400;
  font-size: 96px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(151, 202, 217, 1);
}
.img-text-heading-main h1 {
  margin: 0;
  color: rgba(51, 51, 51, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
}
.image-text-text p {
  color: black;
  margin: 0;
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 0%;
}
.full-img-card {
  position: relative;
}
.reverse-card {
  flex-direction: row-reverse;
}
.reverse-card .img-text-img {
  left: 25px;
  right: auto;
}

.reverse-card .image-text-text {
  padding: 50px 0px 50px 100px;
}
.last-card {
  margin-bottom: 170px;
}

@media (min-width: 500px) {
  .mbl-img-text-heading {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .img-text-heading {
    display: none !important;
  }
  .mbl-img-text-heading {
    display: block !important;
    position: relative;
    font-size: 28px;
    z-index: 111;
  }
  .mbl-img-text-heading::after {
    content: "";
    position: absolute;
    height: 24px;
    z-index: -1;
    background: rgba(137, 195, 212, 1);
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .heading-brake {
    max-width: 60%;
  }
  .container-img-text .vahical-main-heading .img-text-heading {
    margin: 0 !important;
  }
  .container-img-text {
    padding: 50px 0 0 0 !important;
  }
  .image-text-text p br {
    display: none;
  }
  .main-vehicle-section .vahical-main-heading .img-text-heading {
    margin-bottom: 0 !important;
  }
  .main-vehicle-section .vahical-main-heading {
    justify-content: left;
    padding: 0 20px;
  }
  .inner-card {
    padding: 0;
  }
  .vahical-main-heading {
    justify-content: start !important;
    padding: 0 29px;
  }
  .pricing-slider {
    padding: 75px 20px 50px !important;
  }
  .main-content-card {
    padding: 100px 14px 118px !important;
  }
  .card.parking .price {
    white-space: nowrap;
  }

  .main-table-section .img-text-heading {
    font-size: 32px !important;
  }
  .blog-card-heading {
    margin: 0px auto 0px;
    padding: 34px 20px 28px !important;
  }
  .new-blog-brake {
    max-width: 30% !important;
  }
  .grid-wrapper {
    max-width: 100% !important;
    padding: 0 20px !important;
    margin-bottom: 120px !important;
  }
  .lady-image {
    left: 35% !important;
  }
  .main-center-img-div {
    left: 0 !important;
  }
  .slide-custom-default .main-custom-van {
    margin-left: 20px !important;
  }
  .lady-image img {
    height: 273px !important;
    width: 335px !important;
  }
  .slider-wrapper {
    gap: 0 !important;
  }
}

@media (max-width: 990px) {
  .container-img-text {
    padding-top: 50px;
  }
  .reverse-card .image-text-text {
    padding: 20px 9px 20px;
  }
  .container-img-text .vahical-main-heading .img-text-heading {
    margin: 0 auto 30px;
    font-size: 32px;
  }
  .img-text-heading-main span {
    font-size: 64px;
  }
  .img-text-heading-main {
    gap: 30px;
  }
  .img-text-heading-main h1 {
    font-size: 20px;
  }
  .image-text-text p {
    font-size: 16px;
  }
  .img-text-card::after {
    width: 100%;
    border-radius: 0;
  }
  .main-img-text {
    padding: 0 21px;
  }
  .image-text-text {
    padding: 20px 9px 31px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .img-text-card {
    flex-direction: column-reverse;
    margin-bottom: 30px !important;
  }
  .img-text-card .img-text-img {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 1500px) {
  .img-text-card::after {
    /* height: -webkit-fill-available; */
  }
  .image-text-text p br {
    display: none;
  }
  .img-text-img {
    width: 100%;
  }
}

/* ===============img with text section====================== */

/* ===============toy factory section====================== */
.vahical-main-heading {
  width: 100%;
  margin: auto;
  display: inline-grid;
  justify-content: center;
  align-items: baseline;
}
.vahical-main-heading .img-text-heading {
  margin: 0 auto 55px;
  width: 100%;
  line-height: 200%;
}
.vahical-main-heading .img-text-heading::after {
  bottom: 10px;
}
.main-toy-card {
  background-image: url(pictures/Image.png);
  height: 550px;
  background-repeat: no-repeat;
  object-fit: cover;
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  background-size: cover;
}
.inner-card {
  display: flex;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
.factory-inner-content {
  padding: 30px 40px;
  background-color: white;
}
.factory-inner-content p,
h1 {
  margin: 0;
  white-space: nowrap;
}
.content-first-div {
  display: flex;
  justify-content: space-between;
  align-items: anchor-center;
  gap: 25px;
}
.filled-check {
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 5%;
  background: rgba(151, 202, 217, 1);
  padding: 0 13px;
  display: inline-block;
  color: white;
  height: auto;
}
.content-first-div h1 {
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 36px;
  line-height: 200%;
  letter-spacing: 5%;
}

.unfilled {
  border: 1px solid rgba(151, 202, 217, 1);
  color: black;
  background-color: transparent;
}
.content-second-div-para,
.content-second-div-second-para {
  display: flex;
}
.content-second-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 33px 0 25px;
}
.content-third-div .unfilled {
  font-size: 20px;
  font-weight: 400;
  padding: 0 8px;
}
.content-third-div {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.content-fourth-div {
  margin-bottom: 20px;
}
.factory-btn a {
  background: rgba(151, 202, 217, 1);
  text-decoration: none;
  padding: 5px 26px;
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 5%;
  color: white;
  display: flex;
  align-items: anchor-center;
  gap: 14px;
}
.factory-btn {
  display: flex;
  justify-content: end;
}
.factory-svg {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 1);
  display: inline-flex;
  justify-content: center;
  align-items: anchor-center;
  border-radius: 50px;
}
@media (max-width: 990px) {
  .main-vehicle-section .vahical-main-heading {
    margin-top: 55px;
    margin-bottom: 20px;
  }
  .main-vehicle-section .vahical-main-heading .img-text-heading {
    margin-bottom: 20px;
  }
  .main-toy-card {
    height: auto;
  }
  .inner-card {
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    width: 400px;
    margin: 60px auto;
  }
  .inner-card img {
    width: 400px;
  }
  .filled-check {
    font-size: 20px;
  }
  .content-first-div {
    justify-content: space-around;
    gap: 19px;
    padding: 0 10px;
  }
  .content-first-div h1 {
    font-size: 24px;
  }
  .content-second-div {
    justify-content: space-around;
    margin: 32px 0 25px;
    gap: 25px;
    padding: 0 10px;
  }
  .factory-inner-content {
    padding: 15px 0px 25px;
  }
  .content-third-div {
    margin-bottom: 15px;
    display: flex;
    justify-content: start;
    gap: 56px;
    flex-wrap: wrap;
    row-gap: 15px;
    padding: 0 14px;
  }
  .content-fourth-div {
    margin-bottom: 30px;
  }
  .factory-btn a {
    width: 100%;
    justify-content: center;
  }
  .factory-btn {
    padding: 0 13px;
  }
}

/* ===============toy factory section====================== */

/* ===============table section====================== */

.main-table-section {
  padding-top: 80px;
}
.main-table-section .img-text-heading {
  margin: 0 auto 81px;
}

.container-table {
  width: 100%;
  background-image: url(pictures/Group\ 96.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 927px;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  /* flex-wrap: wrap; */
  align-items: center;
  padding: 77px 0 80px;
  max-width: 1500px;
  margin: auto;
}
.main-content-card {
  padding: 100px 15px 118px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.card {
  border-radius: 20px;
  text-align: center;
  padding-top: 24px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* 駐車プラン */
.card.parking {
  background: white;
  max-width: 450px;
  height: 600px;
  width: 100%;
  border-bottom: 20px solid rgba(195, 174, 129, 1);
}

.card.parking .card-title {
  color: #ffffff;
  background: rgba(195, 174, 129, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 21px;
}

.card.parking .label {
  background: #b8a882;
  color: #ffffff;
  padding: 6px 18px;
  display: inline-block;
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: 0;
  width: 181px;
  height: 40px;
  display: flex;
  align-items: anchor-center;
}

.card.parking .price {
  color: rgba(0, 0, 0, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0%;
}
.card.parking .price strong {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}
.card.parking .price em {
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}
.note {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: end;
  color: rgba(178, 0, 0, 1);
  margin-bottom: 62px;
}

.note span {
  display: inline-block;
  font-family: Inter;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}
.note span small {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
/* 来店プラン */
.card.visiting {
  background: white;
  max-width: 500px;
  height: 650px !important;
  width: 100%;
  border-bottom: 20px solid rgba(151, 202, 217, 1);
}

.card.visiting .card-title {
  background-color: rgba(151, 202, 217, 1);
  color: white;
  margin-bottom: 50px;
}

.card.visiting .plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  margin-bottom: 40px;
  padding: 0 15px;
}

.last-second-plan-item {
  margin-bottom: 50px;
}
.card.visiting .plan-label {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  background: rgba(151, 202, 217, 1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 26px;
  height: 40px;
}

.card.visiting .plan-price {
  font-family: Inter;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(178, 0, 0, 1);
  margin-bottom: 0;
}
.card.visiting .plan-price small {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* 駅距車プラン */
.card.station {
  background: white;
  max-width: 450px;
  width: 100%;
  border-bottom: 20px solid #636f97;
}
.card-station-end {
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  row-gap: 136px;
}
.card.station .card-title {
  background-color: rgba(99, 111, 151, 1);
  color: white;
}

.card.station .price {
  font-family: Inter;
  font-weight: 700;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 1);
}
.card.station .price small {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}
.card.station .price span {
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}
.button-container {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.action-button {
  font-family: Inter;
  background: rgba(151, 202, 217, 1);
  color: #ffffff;
  border: none;
  height: 70px;
  width: 350px;
  padding: 14px 15px;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
}
.action-circle {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.action-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.circle-icon {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 1500px) {
  .card.visiting .plan-price {
    font-size: 48px;
  }
}

@media (max-width: 990px) {
  .main-table-section .img-text-heading {
    margin: 0 auto 25px;
  }
  .main-table-section {
    padding-top: 60px;
  }
  .pricing-slider {
    padding-bottom: 0;
  }

  .card.visiting .plan-item {
    justify-content: space-around;
    gap: 0;
    margin-bottom: 58px;
  }
  .note {
    justify-content: space-around;
    margin-bottom: 50px;
  }
  .card.visiting .card-title {
    margin-bottom: 59px;
  }
  .card-title {
    padding: 28px !important;
  }
  .button-container {
    margin: 40px 20px 0;
  }

  .button-container .action-button {
    width: 100%;
  }
}

/* Swiper Fix */
.pricing-slider {
  width: 100%;
  /* padding: 50px; */
}
.pricing-slider .swiper-wrapper {
  align-items: center;
}
/* Center slides */
.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: white;
  width: 20px !important;
  height: 20px !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #97cad9;
  opacity: 1;
}

/* ===============table section====================== */

/* ===============steps workflow section====================== */

.steps-workflow-heading {
  margin: 56px auto 80px;
}
.steps-workflow-heading .img-text-heading {
  margin: 0;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  gap: 50px;
  transition: transform 0.6s ease-in-out;
  width: fit-content;
  padding: 0px 0px 80px;
}
.workflow-slider {
  /* display: flex;
  gap: 50px; */
  padding: 0px 0px 80px;
}
.workflow-slider .owl-stage-outer {
  overflow: visible;
}

.card-workflow {
  flex-shrink: 0;
  width: 350px;
  height: 550px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-workflow:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-workflow .card-image {
  width: 350px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-workflow .card-content {
  padding: 0 10px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-workflow .card-title {
  background: rgba(137, 195, 212, 1);
  display: inline-block;
  margin: 20px 0;
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  padding: 2px 21px;
}

.card-workflow .card-heading {
  margin: 0;
  font-family: Inter;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: black;
  min-height: 54px;
  margin-bottom: 19px;
}

.card-workflow .card-description {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 5%;
  margin: 0;
  color: black;
}
.card-button {
  background: #a8d8e8;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.card-button:hover {
  background: #8bc4d8;
}

.slider-controls {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

.slider-button {
  background: rgba(151, 202, 217, 1);
  width: 405px;
  height: 70px;
  border-radius: 0;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.action-workflow {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}

.slider-button:hover {
  background: #8bc4d8;
}

.slider-button:active {
  transform: scale(0.98);
}
@media (max-width: 990px) {
  .steps-workflow-heading {
    margin: 50px auto 50px;
  }
  .card-workflow .card-title {
    padding: 0 28px !important;
  }

  .card-workflow .card-heading {
    min-height: auto;
  }
}
@media (max-width: 1500px) {
  .slider-wrapper {
    gap: 100px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    display: flex;
    justify-content: center;
  }

  .slider-wrapper {
    padding-left: 50px;
    padding-right: 20px;
  }
}

/* ===============steps workflow section====================== */

/* ===============blog card section====================== */
.grid-top-main-column {
  background-color: rgba(243, 253, 255, 1);
}

.blog-card-heading {
  margin: 0px auto 0px;
  padding: 86px 0 50px;
}
.blog-card-heading .img-text-heading {
  z-index: 111;
}

.grid-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 8px;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 35px;
  justify-content: center;
  padding: 0 50px 158px;
}

.grid-card {
  width: 300px;
  height: 329px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.grid-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.grid-card-content {
  padding: 0;
  height: 129px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
  padding: 10px;
}

.grid-card-title {
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 5%;
  color: rgba(51, 51, 51, 1);
  padding: 10px 0 0;
  margin: 0;
}

.grid-card-date {
  margin: 0;
  color: rgba(51, 51, 51, 1);
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: end;
}

/* --- blog modal styles --- */
.hidden-blog-content {
  display: none;
}

.blog-modal {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
}

.modal-container {
  background: #fff;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 15px;
  border-radius: 8px;
  position: relative;
  transform: scale(0.8);
  transform-origin: center center;
  width: 90%;
}

.blog-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-title {
  margin-top: 0;
  font-size: 24px;
  color: #333;
}

.modal-date {
  margin: 0 0 12px;
  color: #666;
  font-size: 14px;
  font-family: Inter, sans-serif;
  width: fit-content;
  background: rgb(221, 221, 221);
  border-radius: 998px;
  padding: 4px 12px;
}

.modal-body {
  margin-top: 16px;
  color: #444;
  line-height: 1.6;
}

.modal-image {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 1200px) {
  .grid-wrapper {
    grid-template-columns: repeat(3, 300px);
  }
}

@media (max-width: 900px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 600px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .grid-card {
    width: 100%;
  }

  .grid-card-image {
    width: 100%;
  }
}
.second-last-image {
  position: absolute;
}
.second-last-first-image {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
}
.slide-custom-default {
  position: unset !important;
}
.main-new-banner {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 319px;
}
.main-center-img-div {
  display: flex;
  z-index: 11;
  align-items: end;
  position: absolute;
  top: -72px;
  left: 15%;
  right: auto;
  margin: auto;
}
.main-center-img-div::before {
  position: absolute;
  content: "";
  width: 70%;
  background: rgba(137, 195, 212, 1);
  height: 322px;
  z-index: -1;
  filter: blur(2px);
  left: 20%;
}

.sky-border {
  display: none;
}
.slide-custom-default .main-custom-van {
  margin-bottom: 54px;
}

@media (max-width: 1400px) {
  /* .main-center-img-div {
    align-items: start;
  }
  .main-center-img-div::before {
    height: 0;
  }
  .slide-custom-default {
    display: block;
  }
  .main-new:after {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
  }
  .slide-custom-default .main-custom-van {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.88);
    width: 278px;
  }
  .slide-custom-default .main-new {
    row-gap: 9px;
    padding-top: 12px;
    width: 100%;
  }
  .slide-custom-default .main-new p {
    background-image: url(pictures/Vector\ 11111.png) !important;
    background-repeat: no-repeat !important;
    background-size: 80% !important;
    margin: auto !important;
    background-position: center !important;
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    padding: 16px;
    background: rgba(151, 202, 217, 1);
    color: white;
    width: 100%;
  }
  .slide-custom-default .van-btn-main a span {
    font-family: Noto Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
  }
  .slide-custom-default .van-btn-main a {
    display: flex;
    align-items: center;
  }
  .slide-custom-default .van-btn-main {
    row-gap: 13px;
  }
  .slide-custom-default .main-custom-van img {
    display: none;
  }
  .slide-custom-default .main-new:after {
    border-radius: 10px;
  }
  .sky-border {
    height: 5px;
    width: 100%;
    background: rgba(151, 202, 217, 1);
    margin-bottom: 9px;
    display: block;
  }
  .slide-custom-default .van-btn-main a .hero-svg {
    width: 30px;
    height: 30px;
  } */
}

@media (max-width: 990px) {
  .second-last-first-image {
    position: absolute;
    right: 0;
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  .second-last-image {
    display: none;
  }
  .main-new-banner {
    height: 200px;
  }
  .lady-image img {
    width: 348px;
  }
  .lady-image {
    z-index: -1;
    position: absolute;
    left: 50%;
  }
}

/* ===============blog card section====================== */

/* ===============footer section====================== */

footer {
  background: rgba(23, 23, 23, 1);
  color: #fff;
  padding: 120px 250px 50px;
  margin-top: 0;
  position: relative;
  z-index: 11;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  /* max-width: 1420px; */
  margin: auto auto 105px;
}

/* Left Section */
.footer-left {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

.footer-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-tagline {
  margin: 25px 0 0 0;
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
}

.footer-email {
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  margin: 17px 0 0 0;
}

.footer-social {
  display: flex;
  margin-top: 31px;
  gap: 20px;
}
.main-footer-right {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  justify-content: center;
  align-items: end;
}

.footer-social span {
  color: #666;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #a8d8e8;
}

/* Center Section - Buttons */
.footer-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 75px;
  align-items: flex-start;
}

.footer-btn {
  width: 250px;
  height: 70px;
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  border-radius: 0;
  background: rgba(137, 195, 212, 1);
}

.footer-btn:hover {
  background: #8bc4d8;
}

/* Right Section - Links */
.footer-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 100px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-link {
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #a8d8e8;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-copyright {
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 10%;
  color: white;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 100px;
}

.footer-bottom-link {
  font-family: Noto Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  margin: 0;
  text-decoration: none;
}

.footer-bottom-link:hover {
  color: #a8d8e8;
}

@media (max-width: 1700px) {
  footer {
    padding: 120px 50px 50px;
  }
}

@media (max-width: 1024px) {
  footer {
    padding: 50px 20px;
  }
  .footer-left {
    flex-wrap: wrap;
    row-gap: 100px;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 40px;
    margin: auto auto 50px;
  }

  .footer-buttons {
    width: 100%;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    row-gap: 50px;
    text-align: center;
    padding-top: 24px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: -webkit-fill-available;
    row-gap: 20px;
  }
}

@media (min-width: 990px) {
  .mbl-first-footer .mbl-btns {
    display: none !important;
  }
}
@media (max-width: 990px) {
  .mbl-first-footer {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    width:100%;
  }
  .main-footer-right .footer-buttons {
    display: none !important;
  }
  .mbl-first-footer .mbl-btns {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }
}
@media (max-width: 1400px) {
  .footer-btn {
    width: auto;
    height: 38px;
    font-size: 16px;
    outline: none;
    border: none;
  }
}

@media (min-width: 1200px) {
  .img-text-card {
    gap: 110px;
    justify-content: inherit;
  }
  .image-text-text {
    padding: 50px 0 50px 50px;
    max-width: 685px;
  }
  .img-text-img img {
    height: 500px;
  }
  .reverse-card .image-text-text {
    padding: 50px 50px 50px 0px;
  }
  .card.visiting .plan-item {
    padding: 0 61px 0 50px;
    gap: 36px;
  }
  .card.visiting .plan-price {
    height: 77px;
  }
  .card.visiting .note {
    margin-bottom: 50px !important;
    height: 48px;
  }
  .main-content-card {
    padding: 100px 26px 118px;
  }
}

@media (max-width: 768px) {
  .slide-content {
    font-size: 7.5vw;
    font-weight: 600;
  }
  .mbl-custom-lady p {
    padding: 20px 36px;
    text-align: left;
  }
  .mbl-custom-lady a {
    justify-content: start;
    gap: 0px;
    padding-left: 40px;
  }
}

/* ===============footer section====================== */

/* 1681px – 1920px */
@media (min-width: 1681px) and (max-width: 1920px) {
  .van-btn-main .ftarr {
    position: unset;
  }
  .main-new a {
    gap: 0px;
  }
}

/* 1481px – 1680px */
@media (max-width: 1680px) {
  .img-text-heading {
    font-size: 35px;
  }
  .pangeg-img {
    width: 400px;
    display: block;
  }
  .img-text-card {
    top: 0;
  }
  .cards-wrapper {
    gap: 25px;
  }

  .main-new p {
    font-size: 22px;
  }
  .van-btn-main a {
    gap: 5px;
    font-size: 32px;
  }
  .van-btn-main .ftarr {
    position: unset;
  }
  .first-gallery-content {
    padding: 70px 0 70px 180px;
  }
}

/* 1281px – 1480px */
@media (max-width: 1480px) {
  .img-text-heading {
    font-size: 30px;
  }
  .pangeg-img {
    width: 350px;
    display: block;
  }
  .img-text-img img {
    height: 475px;
  }
  .cards-wrapper {
    gap: 15px;
  }
  .card.visiting .plan-price {
    align-content: center;
  }
  .card.parking {
    max-width: 410px;
  }
  .card.visiting {
    max-width: 450px;
  }
  .card.parking .price {
    font-size: 40px;
  }
  .main-new p {
    font-size: 16px;
  }
  .main-custom-van img {
    right: 30px;
  }
  .van-btn-main a {
    font-size: 25px;
    align-items: center;
  }
  .main-new::after {
    height: 190px;
  }
  .main-new {
    row-gap: 17px;
  }
}

/* 992px – 1280px */
@media (max-width: 1300px) {
  .card.visiting .plan-item {
    gap: 30px;
  }
  .card.visiting {
    max-width: 440px;
  }
  .card.parking {
    max-width: 390px;
  }
  .card {
    margin: auto !important;
  }
  .card.visiting .plan-item {
    padding: 0 25px 0 25px;
  }
  .grid-wrapper {
    grid-template-columns: repeat(3, 300px);
  }
  .main-center-img-div {
    left: 10%;
  }
  .main-custom-van img {
    width: 50%;
  }
  .main-custom-van .ftarr {
    width: 40px;
  }
}

/* 769px – 991px */
@media (min-width: 769px) and (max-width: 991px) {
  .first-gallery-content {
    padding: 70px 40px 70px 40px;
    text-align: center;
  }
  .img-text-card {
    top: 20%;
  }
  .pangeg-img {
    width: 260px;
  }
  .container-img-text {
    padding-top: 200px;
  }
  .img-text-card::after {
    height: -webkit-fill-available;
  }
  .img-text-heading-main h1 {
    font-size: 28px;
  }
  .inner-card img {
    width: 500px;
  }
  .inner-card {
    width: 500px;
  }
  .main-table-section .owl-stage-outer .owl-stage {
    /* padding-left: 200px; */
    /* padding-right: 0 !important; */
  }
  .slider {
    height: 1024px;
  }
  .cards-wrapper {
    width: 50%;
  }
  .owl-dots {
    display: block !important;
    margin-top: 30px;
    text-align: center;
  }

  .owl-dot span {
    width: 20px;
    height: 20px;
    background: #fff !important;
    display: block;
    border-radius: 50%;
    margin-right: 15px;
  }
  .owl-dot.active span {
    background: #97cad9 !important;
  }
  .card.visiting {
    height: 600px !important;
  }
  .card-workflow .card-heading {
    min-height: 45px;
  }
  .grid-wrapper {
    grid-template-columns: repeat(2, 300px);
  }
  .main-custom-van .vimgg {
    display: none;
  }
  .lady-image {
    position: initial;
  }
  .main-center-img-div::before {
    display: none;
  }
  .main-new::after {
    width: 100%;
  }
  .slide-custom-default .main-custom-van {
    margin-bottom: 130px;
  }
  .van-btn-main {
    margin-bottom: 30px;
  }
}
.mb-g-d {
  display: none;
}
/* ≤ 768px */
@media (max-width: 768px) {
  .slider .main-custom-van {
    display: none;
  }
  .mbl-custom-lady::after {
    position: absolute;
    width: 760px;
    height: 7px;
    background: rgba(151, 202, 217, 1);
    content: "";
    bottom: 0;
  }
  .first-gallery-content {
    padding: 19px;
  }
  .gallery-heading br {
    display: none;
  }
  .gallery-heading {
    max-width: 90%;
    white-space: normal;
  }
  .mb-g-d {
    display: block;
  }
  .d-g-d {
    display: none;
  }
  .pangeg-img {
    display: none;
  }
  .vahical-main-heading {
    padding: 0;
  }
  .container-img-text .vahical-main-heading .img-text-heading {
    font-size: 28px;
  }
  .mbl-img-text-heading::after {
    height: 14px;
  }
  .img-text-card {
    top: 30px;
  }
  .img-text-img img {
    height: auto;
  }
  .img-text-card::after {
    height: -webkit-fill-available;
  }
  .img-text-heading {
    font-size: 28px;
  }
  .vahical-main-heading .heading-brake {
    /* text-align: center; */
    font-family: Noto Sans;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    letter-spacing: 5%;
  }
  .main-img-text .mbl-img-text-heading.heading-brake::after {
    width: 100%;
  }
  .main-table-section .vahical-main-heading {
    padding: 0 20px;
  }

  /* .cards-wrapper {
    width: 50%;
  } */
  .owl-dots {
    display: block !important;
    margin-top: 30px;
    text-align: center;
  }

  .owl-dot span {
    width: 20px;
    height: 20px;
    background: #fff !important;
    display: block;
    border-radius: 50%;
    margin-right: 15px;
  }
  .owl-dot.active span {
    background: #97cad9 !important;
  }
  .card.visiting {
    height: 600px !important;
  }
  .pricing-slider {
    padding: 75px 20px 0px !important;
  }
  .steps-workflow-heading {
    padding: 0 20px;
  }
  .slider-container {
    display: block;
  }
  .workflow-slider {
    padding-bottom: 0;
  }
  .card-workflow {
    width: 348px;
    margin: auto;
  }
  .grid-wrapper {
    grid-template-columns: repeat(1, 350px);
    gap: 0px;
  }
  .vimgg {
    display: none;
  }
  .main-center-img-div::before {
    display: none;
  }
  .lady-image {
    top: 22px;
  }
  .main-new p {
    padding: 6px 20px;
    margin-left: 0 !important;
    background-size: 96% !important;
  }
  .van-btn-main a {
    font-size: 20px;
  }
  .main-new::after {
    width: 100%;
    height: auto;
  }
  .main-custom-van .ftarr {
    width: 30px;
  }
  /* .van-btn-main::after {
    position: absolute;
    width: 760px;
    height: 7px;
    background: rgba(151, 202, 217, 1);
    content: "";
    bottom: 0;
  } */

  .van-btn-main {
    margin-bottom: 20px;
  }
  .van-btn-main a::after {
    bottom: -12px;
  }
  .img-text-heading-main h1 {
    font-size: 17px;
  }
  .lady-image img {
    height: 250px !important;
    width: 280px !important;
  }
  .main-table-section .img-text-heading {
    font-size: 28px !important;
  }
  .inner-card img {
    width: 350px;
  }
  /* .factory-inner-content {
    width: 350px;
  } */
  .content-first-div h1 {
    font-size: 20px;
  }
  .content-second-div {
    gap: 15px;
  }
  .filled-check {
    font-size: 18px;
    padding: 0 10px;
  }
  .full-img-card .img-text-heading-main {
    gap: 20px;
  }
  .full-img-card .img-text-heading-main span {
    font-size: 50px;
  }
  .note span {
    font-size: 30px;
  }
  .card.parking .price {
    font-size: 30px;
  }
  .card.visiting .plan-price {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  .slide-bottom-image {
    display: none;
  }
  .mbl-bottom-img {
    display: flex;
    position: fixed !important;
    bottom: -10px !important;
    align-items: end;
    justify-content: space-between;
    margin: auto;
    width: 100%;
    border-bottom: 5px solid rgba(151, 202, 217, 1);
    z-index: 111111111111111111;
  }

  .mbl-custom-lady p {
    background: rgba(151, 202, 217, 1);
    position: absolute;
    bottom: 30%;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 13px 36px;
    color: white;
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    background-image: url(pictures/Vector\ 11111.png) !important;
    background-repeat: no-repeat !important;
    background-size: 265px !important;
    margin: auto !important;
    background-position: center;
  }
  .mbl-custom-lady a {
    background: white;
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
    left: 0;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
    font-family: Noto Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    align-items: baseline;
    gap: 15px;
    color: rgba(151, 202, 217, 1);
  }
  .mbl-custom-lady a .hero-svg {
    width: 30px;
    height: 30px;
  }
  .slider-yuske img {
    width: 201px;
    z-index: 11111;
    position: relative;
    right: 0;
    bottom: -4px;
  }
}

@media (min-width: 1100px) {
  .mbl-bottom-img {
    display: none;
  }
}

@media (min-width: 990px) and (max-width: 1190px) {
  .img-text-card {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .image-text-text {
    padding: 50px 30px 50px 50px;
  }
  .img-text-heading-main span {
    font-size: 70px;
  }
  .img-text-heading-main {
    gap: 25px;
  }
  .img-text-heading-main h1 {
    font-size: 24px;
  }
  .image-text-text p {
    font-size: 18px;
  }
  .img-text-img img {
    height: 350px;
    width: 350px;
  }
  .reverse-card .img-text-img {
    display: flex;
    justify-content: end;
  }
  .reverse-card .image-text-text {
    padding: 50px 30px 50px 50px;
  }
}

@media (max-width: 1200px) {
  .inner-card {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: anchor-center !important;
    width: 500px !important;
    margin: 60px auto !important;
    display: flex !important;
    max-width: 1200px !important;
  }
  .main-toy-card {
    height: auto;
  }
  .inner-card img {
    width: 500px !important;
  }
  .content-first-div h1 {
    font-size: 24px;
  }
  .filled-check {
    font-size: 20px;
  }
  .factory-inner-content {
    padding: 15px 13px 25px;
  }
}

@media (max-width: 500px) {
  .inner-card {
    width: auto !important;
    overflow: hidden;
  }
  .inner-card img {
    width: 100% !important;
  }
  .slide-bottom-image {
    display: none !important;
  }
  .main-img-text {
    padding: 0 11px;
  }
}

@media (min-width: 990px) and (max-width: 1200px) {
  .main-center-img-div {
    display: grid;
    grid-template-columns: auto 1fr;
    top: 26%;
  }
  .lady-image img {
    width: 300px;
  }
  .main-center-img-div .slide-bottom-image {
    display: block !important;
  }
}
@media (max-width: 990px) {
  .main-center-img-div .slide-bottom-image {
    display: block !important;
  }
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  display: flex;
  gap: 20px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1920px) {
  .main-header {
    position: fixed;
    top: 0;
    width: 100%;
  }
}
@media (max-width:500px) {
  .footer-btn{
    font-size: 12px;
  }
}