.p-text-light {
  text-transform: uppercase;
  font-family: var(--ff-barlow);
  font-weight: 700;
  color: var(--color-secondary);
  opacity: 0.1;
  font-size: clamp(60px, calc(160 / 1440 * 100vw), 160px);
  text-align: center;
  line-height: 1;
}
.p-text-light--min{
    font-size: clamp(60px, calc(150 / 1440 * 100vw), 150px);
}

.p-text-light--white {
  color: #fff;
  opacity: 1;
}

.p-top-nav {
  margin-top: -40px;
}
.p-top-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
  @media (max-width: 1024px) {
    gap: 30px;
  }
  @media (max-width: 768px) {
    gap: 10px;
  }
}

.p-top-nav__item {
  width: calc(1 / 4 * 100% - 50px * 3 / 4);
  @media (max-width: 1024px) {
    width: calc(1 / 4 * 100% - 30px * 3 / 4);
  }
  @media (max-width: 768px) {
    width: calc(1 / 2 * 100% - 5px);
  }
}

.p-top-nav__link {
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-top-nav__link:hover,
  .p-top-nav__link:focus-visible {
    opacity: 0.8;
  }
}
.p-top-nav__link img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-reccomend {
  position: relative;
}
.p-top-reccomend__inner {
  width: min(360px, calc(360 / 460 * 100vw));
  height: min(180px, calc(180 / 460 * 100vw));
  margin: 0 auto;
  position: relative;
  background: var(--color-tertiary);
  border-radius: 50% / 100% 100% 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 15px;

}
.p-top-reccomend__inner::before,
.p-top-reccomend__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--color-tertiary);
}
.p-top-reccomend__inner::before {
  left: -45px;
  clip-path: path('M0 0V50H50C22.4 50 0 27.6 0 0Z');
  transform: scale(-1, 1);
  @media (max-width: 1024px) {
    left: -40px;
  }
}
.p-top-reccomend__inner::after {
  right: -45px;
  clip-path: path('M0 0V50H50C22.4 50 0 27.6 0 0Z');
  @media (max-width: 1024px) {
    right: -40px;
  }
}

.p-top-reccomend__text {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--ff-zen);
  margin-top: 20px;
}

.p-top-reccomend__pop {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.p-top-reccomend__left{
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(404px, calc(404 / 1200 * 100vw));
  height: auto;
    @media (max-width: 768px) {
      display: none;
  }
}
.p-top-reccomend__right{
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(413px, calc(413 / 1200 * 100vw));
  height: auto;
    @media (max-width: 768px) {
      display: none;
  }
}

.p-top-cars {
  width: 100%;
  margin-top: -50px;
  padding-bottom: 140px;
  @media (max-width: 1024px) {
    max-width: 100% !important;
    padding-bottom: 80px;
  }
}
.p-top-cars__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-top-cars__header-label {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--ff-zen);
  margin-bottom: 10px;
  text-align: center;
  padding-top: 30px;
  @media (max-width: 768px) {
    font-size: 24px;
    padding-top: 20px;
  }
}

.p-top-cars__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 70px;
  list-style: none;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 80px;
  @media (max-width: 1024px) {
    gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  @media (max-width: 768px) {
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
    margin-top: 40px;
  }
}


.p-top-cars__item {
  width: calc(1 / 3 * 100% - 70px * 2 / 3);
  @media (max-width: 1024px) {
    width: calc(1 / 3 * 100% - 40px * 2 / 3);
  }
  @media (max-width: 768px) {
    width: calc(1 / 2 * 100% - 20px / 2);
  }
}


.p-top-cars__link{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 7px 7px 17px rgba(221,221,221,0.9), -7px -7px 13px rgba(255,255,255,0.9),7px -7px 13px rgba(221,221,221,0.2), -7px 7px 13px rgba(221,221,221,0.2), -2px -2px 3px rgba(221,221,221,0.5), 2px 2px 3px rgba(255,255,255,0.3);
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-in-out;
  z-index: 0;

}

.p-top-cars__link::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg,#EAEAEA,#FFFFFF);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}



.p-top-cars__link img{
  display: block;
  mix-blend-mode: multiply;
  max-width: 80%;
  height: auto;
  transition: 0.3s ease-in-out;
}
.p-top-cars__label{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ff-zen);
  margin-top: 30px;
  margin-bottom: -30px;
  transition: color 0.3s ease-in-out;
  @media (max-width:768px) {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: -15px;
  }
}

.p-top-cars__link:hover{
  box-shadow:none;
}
.p-top-cars__link:hover::before {
  opacity: 0;
}

.p-top-cars__link:hover img {
  scale: 1.1;
}
.p-top-cars__link:hover .p-top-cars__label{
  color: var(--color-secondary);
}

.p-top-w260{
  width: 260px;
  max-width: 100%;
}

.p-top-nav-wrap{
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}

#u20250714233209 .unit-base{
  padding-bottom: 0;
}

#u20250714235821 .unit-base{
  padding-top: 100px;
  @media (max-width: 768px) {
      padding-top: 50px;
  }
}

#u20250714235821.bg-color-23{
  background: var(--color-tertiary);
}

#u20200507150926.bg-color-0,#u20250715211341.bg-color-0,#u20250715233522.bg-color-0{
  background: var(--color-tertiary);
}
#u20200507150926 .unit-base .calendar-0001 h2{
  display: none;
}

#u20200417170136 .news-car-title,#u20200417170136 .news-notice-title{
  font-family: var(--ff-zen);
  border: 2px solid var(--color-secondary);
  border-radius: 50px;
  text-align: center;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#u20200417170136 .new-arrivals-title{
  font-family: var(--ff-zen);
  color: var(--color-secondary);
  font-size: 16px;

}
#u20200417170136 .news-set-0001 .news-set-0001-image{
    @media (min-width: 768px) {
      margin-left: 60px;
  }
}
#u20200417170136 .news-set-0001 .news-set-0001-button-desing{
  font-family: var(--ff-zen);
  font-weight: 500;
}

#u20200417170136 .news-car-wrapper,#u20200417170136 .news-notice-wrapper {
  padding: 15px;
}

.p-top-sns{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -15px;
  flex-wrap: wrap;
}

.p-top-sns-item{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  @media (min-width: 1024px) {
    margin-bottom: 90px;
    width: calc(1 / 2 * 100% - 30px);
  }
}

.p-top-sns-item__header{
  position: relative;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-secondary);
  gap: 20px;
}

.p-top-sns-item__text{
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.8;
}

@media (any-hover: hover) {
  .p-top-sns-item__link:hover img,.p-top-sns-item__link:focus-visible img{
    opacity: 0.8;
  }
}
.p-top-sns-item__link img{
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 30px;
  transition: opacity 0.3s ease-in-out;
  border: 1px solid #000;
}

.p-top-calendar{
  background: var(--color-tertiary);
}

.p-top-calendar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -35px;
}
.p-top-calendar__header-label {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--ff-zen);
  margin-bottom: 10px;
  text-align: center;
  padding-top: 30px;
  @media (max-width: 768px) {
    font-size: 24px;
    padding-top: 20px;
  }
}

.p-top-bnrlist{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -5px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  @media (min-width: 1024px) {
      margin: -20px -25px;
      padding-bottom: 100px;
  }
}
.p-top-bnrlist__item{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc(1 / 2 * 100% - 5px);
  padding: 5px;
  @media (min-width: 1024px) {
    padding: 15px;
    width: calc(1 / 4 * 100% - 30px);
  }
}

.p-top-bnrlist__item img{
  width: 100%;
  height: auto;
}

.p-top-slide {
  background: var(--color-tertiary);
  padding-top: 50px;
  padding-bottom: 50px;
  @media (min-width:1024px) {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.p-top-slide__main {
  position: relative;
  width: 100%;
  padding-top: calc(552 / 1200 * 100%);
  overflow: hidden;
}

.p-top-slide__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.p-top-slide__item.is-active {
  opacity: 1;
  z-index: 2;
}

.p-top-slide__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-slide__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-slide__list {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: space-between;
}

.p-top-slide__thumb {
  padding: 0;
  cursor: pointer;
  opacity: 1;
  background: #000;
  width: calc(1 / 4 * 100% - 5px * 3 / 4);
  border: none;
    @media (min-width:1024px) {
  width: calc(1 / 4 * 100% - 53px * 3 / 4);
  }
}

.p-top-slide__thumb:hover img {
  opacity: 0.5;
}

.p-top-slide__thumb.is-active img{
  opacity: 0.5;
}

.p-top-slide__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.copy-0001:has(.p-text-light){
  padding: 0 !important;
}

.p-top-information{
  background: var(--color-tertiary);
}
.p-top-information__inner{
  position: relative;
}

.p-top-information__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -35px;
  padding-bottom: 30px;
}
.p-top-information__header-label {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--ff-zen);
  margin-bottom: 10px;
  text-align: center;
  padding-top: 30px;
  @media (max-width: 768px) {
    font-size: 24px;
    padding-top: 20px;
  }
}

.p-top-card{
  background: #fff;
  border-radius: 20px;
  width: calc(1/3 * 100% - 60px * 2 / 3);
  position: relative;
  z-index: 0;
  display: block;
  @media (max-width: 768px) {
    width: 100%;
    max-width: 500px;
  }
}

.p-top-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 3px solid var(--color-secondary);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
.p-top-card-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px 100px;
  @media (max-width: 1024px) {
    padding: 30px 0;
    gap: 20px;
  }
}
.p-top-card__img{
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: block;
}
.p-top-card__img img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out;
}

.p-top-card__inner{
  padding: 30px 40px;
  position: relative;
  display: block;
}

.p-top-card__text{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--ff-zen);
  margin-bottom: 10px;
  line-height: 1.6;
  display: block;
}
.p-top-card__icon{
  position: absolute;
  right: 20px;
  bottom: 20px;
}

@media (any-hover: hover) {
  .p-top-card:hover::before,.p-top-card:focus-visible::before {
    opacity: 1;
  }

  .p-top-card:hover img,.p-top-card:focus-visible img {
    transform: scale(1.05);
    opacity: .8;
  }
}
