@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
.l-lower-title-area h1 .large .wrap .img.w01 {
  width: 80%;
  transform: translate(-55%, -50%);
}
.l-lower-title-area h1 .large .wrap .img.w02 {
  width: 69%;
  transform: translate(-50%, -47%);
}
.l-lower-title-area h1 .large .wrap .img.w03 {
  width: 78%;
  transform: translate(-50%, -48%);
}

/*================================================ メニュー左寄せ ================================================*/
@media screen and (min-width: 768px) {
  .l-side-menu nav.side-menu-inner .menu-btn-wrap {
    left: 28px;
    right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .l-side-menu nav.side-menu-inner .menu-btn-wrap {
    left: 0;
  }
}

/*================================================ 中古車を探す TOP ================================================*/
@keyframes u_car-cont-title {
  0% {
    transform: translate(0, 1.2em);
  }
  100% {
    transform: translate(0, 0);
  }
}
h2.u_car-cont-title.animation .en {
  animation: fade 0.4s 0s forwards;
}
h2.u_car-cont-title.animation .ja span {
  animation: u_car-cont-title 0.4s 0.3s ease forwards;
}
h2.u_car-cont-title .en {
  display: inline-block;
  line-height: 0.85em;
  font-size: calc(75 / 750 * 100vw);
  font-weight: bold;
  font-family: var(--font-montserrat);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  h2.u_car-cont-title .en {
    font-size: clamp(10px, 65 / 1366 * 100vw, 1000px);
  }
}
h2.u_car-cont-title .ja {
  display: inline-block;
  line-height: 1.2em;
  font-weight: 500;
  margin-top: 0.8em;
  margin-left: 1em;
  font-size: calc(22 / 750 * 100vw);
  overflow: hidden;
  height: 1.2em;
}
@media screen and (min-width: 768px) {
  h2.u_car-cont-title .ja {
    font-size: clamp(10px, 15 / 1366 * 100vw, 1000px);
  }
}
h2.u_car-cont-title .ja span {
  display: inline-block;
  transform: translate(0, 1.2em);
}

div.fix-btn-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  div.fix-btn-wrap {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 5;
    top: auto;
    right: 28px;
    bottom: 28px;
    gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  div.fix-btn-wrap a.m-btn-base:nth-of-type(1) {
    width: 168px;
  }
}
@media screen and (min-width: 768px) {
  div.fix-btn-wrap a.m-btn-base:nth-of-type(2) {
    width: 139px;
  }
}
@media screen and (min-width: 768px) {
  div.fix-btn-wrap a.m-btn-base {
    height: 40px;
    padding: 0 20px;
    font-size: 13px;
  }
}

section.sec-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 0 calc(85 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-hero {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec-hero div.sec-hero-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-hero div.video-wrap {
  width: 100%;
  height: calc(633 / 750 * 100vw);
  overflow: hidden;
  isolation: isolate;
  position: relative;
  line-height: 0;
  margin-bottom: calc(45 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-hero div.video-wrap {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
  }
}
section.sec-hero div.video-wrap video {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  section.sec-hero div.video-wrap video {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
  }
}
section.sec-hero div.hero-link-wrap {
  width: 85.8%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-hero div.hero-link-wrap {
    width: 100%;
    display: flex;
    gap: 8px;
  }
}
section.sec-hero div.hero-link-wrap a {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: calc(5 / 750 * 100vw);
  padding: 1em 1.6em 1em 1.6em;
  margin-bottom: calc(8 / 750 * 100vw);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec-hero div.hero-link-wrap a {
    border-radius: 5px;
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
    width: 100%;
    padding: 1.2em 1em 1.2em 1.4em;
    margin-bottom: 0;
    transition: 0.3s;
  }
  section.sec-hero div.hero-link-wrap a:hover {
    background-color: var(--color-used);
    color: #fff;
  }
  section.sec-hero div.hero-link-wrap a:hover .arrow svg:nth-of-type(1) {
    transform: translate(0, 120%);
  }
  section.sec-hero div.hero-link-wrap a:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  section.sec-hero div.hero-link-wrap a:hover .arrow svg path {
    stroke: #fff;
  }
}
section.sec-hero div.hero-link-wrap a .arrow {
  display: block;
  position: relative;
  overflow: hidden;
  width: 0.8em;
}
@media screen and (min-width: 768px) {
  section.sec-hero div.hero-link-wrap a .arrow {
    width: 0.8em;
  }
}
section.sec-hero div.hero-link-wrap a .arrow svg {
  transition: all 0.3s;
}
section.sec-hero div.hero-link-wrap a .arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -120%);
}
section.sec-hero div.hero-link-wrap a .arrow svg path {
  transition: all 0.3s;
}

section.sec-reason {
  position: relative;
  padding: calc(84 / 750 * 100vw) 0 0;
  margin-bottom: calc(20 / 750 * 100vw);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason {
    padding: calc(229 / 1366 * 100vw) 0 0;
    margin-bottom: 18px;
  }
}
section.sec-reason div.reason-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-bg {
    top: calc(140 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-reason div.reason-bg {
    width: calc(100% + 36px);
  }
}
section.sec-reason div.sec-reason-inner {
  position: relative;
  z-index: 1;
}
section.sec-reason h2 {
  font-weight: bold;
  line-height: 1.25em;
  text-align: center;
  font-weight: 700;
  font-size: calc(40 / 750 * 100vw);
  line-height: 1.32em;
  letter-spacing: 0.04em;
  margin-bottom: 1.46em;
}
@media screen and (min-width: 768px) {
  section.sec-reason h2 {
    font-size: clamp(10px, 40 / 1366 * 100vw, 1000px);
    margin-bottom: 1.25em;
  }
}
section.sec-reason h2.animation .small {
  animation: fade 1s 0s forwards;
}
section.sec-reason h2.animation .large {
  animation: fade 1s 0.3s forwards;
}
section.sec-reason h2 .small {
  display: block;
  font-weight: 500;
  font-size: 0.62em;
  line-height: 1.2em;
  opacity: 0;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-reason h2 .small {
    margin-bottom: 0;
  }
}
section.sec-reason h2 .large {
  opacity: 0;
}
section.sec-reason h2 .red {
  color: var(--color-used);
}
section.sec-reason div.reason-box {
  background: #eff1f2;
  border: solid 1px #fff;
  box-sizing: border-box;
  padding: calc(33 / 750 * 100vw) calc(33 / 750 * 100vw) calc(90 / 750 * 100vw) calc(33 / 750 * 100vw);
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 5px;
    padding: calc(80 / 1366 * 100vw) 56px;
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap {
  width: 90%;
  margin: calc(55 / 750 * 100vw) auto 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap {
    width: 44%;
    margin: 0;
    order: -1;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-reason div.reason-box div.reason-txt-wrap {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-reason div.reason-box div.reason-txt-wrap {
    width: 46%;
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap.animation div.title-wrap {
  animation: fade 1s 0.1s forwards;
}
section.sec-reason div.reason-box div.reason-txt-wrap.animation div.info-wrap p {
  animation: fade 1s 0.2s forwards;
}
section.sec-reason div.reason-box div.reason-txt-wrap.animation div.info-wrap a.m-btn-base {
  animation: fade 1s 0.3s forwards;
}
section.sec-reason div.reason-box div.reason-txt-wrap div.title-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: 0;
}
section.sec-reason div.reason-box div.reason-txt-wrap div.title-wrap h3 {
  font-weight: 700;
  font-size: calc(34 / 750 * 100vw);
  line-height: 1.52em;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap div.title-wrap h3 {
    width: calc(100% - 56 / 1366 * 100vw);
    line-height: 1.5em;
    font-size: clamp(10px, 24 / 1366 * 100vw, 1000px);
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap div.title-wrap div.reason-logo {
  width: calc(57 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap div.title-wrap div.reason-logo {
    width: calc(56 / 1366 * 100vw);
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap {
  border-top: solid 1px var(--color-light-gray);
  padding: calc(40 / 750 * 100vw) 0 0;
  margin: calc(40 / 750 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap {
    padding: calc(30 / 1366 * 100vw) 0 0;
    margin: calc(30 / 1366 * 100vw) 0 0;
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap p {
  color: var(--color-sub-txt-v02);
  font-weight: 400;
  font-size: calc(24 / 750 * 100vw);
  line-height: 1.75em;
  letter-spacing: 0.02em;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap p {
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
  }
}
section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap a.m-btn-base {
  margin: 2em 0 0 0;
  width: calc(387 / 750 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-txt-wrap div.info-wrap a.m-btn-base {
    width: 18.6em;
  }
}
section.sec-reason div.reason-box div.reason-img {
  isolation: isolate;
  overflow: hidden;
  border-radius: calc(5 / 750 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-reason div.reason-box div.reason-img {
    width: 50%;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-reason div.reason-box div.reason-img {
    width: 45%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-reason div.reason-box div.reason-img {
    width: 49%;
  }
}
section.sec-reason div.reason-box div.reason-img.animation {
  animation: fade 1s 0s forwards;
}

section.sec-service {
  box-sizing: border-box;
  background-color: #f4f6f7;
  border: solid 1px #fff;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-service {
    border-radius: 10px;
  }
}
section.sec-service {
  margin-top: calc(20 / 750 * 100vw);
  padding: calc(110 / 750 * 100vw) calc(33 / 750 * 100vw) calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-service {
    margin-top: 18px;
    padding: calc(100 / 1366 * 100vw) 39px calc(60 / 1366 * 100vw);
  }
}
section.sec-service h2.u_car-cont-title {
  text-align: center;
  margin-bottom: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-service h2.u_car-cont-title {
    margin-bottom: 46px;
  }
}
section.sec-service h2.u_car-cont-title .en {
  display: block;
}
section.sec-service h2.u_car-cont-title .ja {
  display: block;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  section.sec-service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
}
@keyframes service-list {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
section.sec-service ul.animation > li:nth-of-type(1) {
  animation: service-list 0.5s 0s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(2) {
  animation: service-list 0.5s 0.08s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(3) {
  animation: service-list 0.5s 0.16s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(4) {
  animation: service-list 0.5s 0.24s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(5) {
  animation: service-list 0.5s 0.32s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(6) {
  animation: service-list 0.5s 0.4s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(7) {
  animation: service-list 0.5s 0.48s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(8) {
  animation: service-list 0.5s 0.56s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(9) {
  animation: service-list 0.5s 0.64s ease forwards;
}
section.sec-service ul.animation > li:nth-of-type(10) {
  animation: service-list 0.5s 0.72s ease forwards;
}
section.sec-service ul li {
  margin-bottom: calc(10 / 750 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-service ul li {
    width: calc(50% - 4px);
    margin-bottom: 0;
  }
}
section.sec-service ul li a {
  background: #fff;
  border: solid 1px #fff;
  display: block;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: calc(52 / 750 * 100vw) 0;
  border-radius: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-service ul li a {
    border-radius: 5px;
    padding: 0 5% 0 8%;
    height: calc(205 / 1366 * 100vw);
    transition: all 0.3s;
  }
  section.sec-service ul li a:hover {
    background: var(--color-used);
    border: solid 1px var(--color-used);
  }
  section.sec-service ul li a:hover div.img-wrap .base-img {
    opacity: 0;
  }
  section.sec-service ul li a:hover div.img-wrap .hover-img {
    opacity: 1;
  }
  section.sec-service ul li a:hover div.txt-wrap p, section.sec-service ul li a:hover div.txt-wrap h3 {
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-service ul li a {
    padding: 0 35px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-service ul li a {
    padding: 0 46px;
  }
}
section.sec-service ul li a div.img-wrap {
  position: relative;
  width: 25%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-service ul li a div.img-wrap {
    width: 25%;
    margin: 0;
  }
}
section.sec-service ul li a div.img-wrap .base-img, section.sec-service ul li a div.img-wrap .hover-img {
  transition: all 0.3s;
}
section.sec-service ul li a div.img-wrap .hover-img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
section.sec-service ul li a div.txt-wrap {
  width: 59%;
}
@media screen and (min-width: 768px) {
  section.sec-service ul li a div.txt-wrap {
    width: 65%;
  }
}
section.sec-service ul li a div.txt-wrap h3 {
  line-height: 1.58em;
  margin-bottom: 0.4em;
  font-size: calc(28 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-service ul li a div.txt-wrap h3 {
    transition: color 0.3s;
    font-size: clamp(18px, 24 / 1366 * 100vw, 1000px);
  }
}
section.sec-service ul li a div.txt-wrap p {
  line-height: 1.62em;
  font-size: calc(22 / 750 * 100vw);
  color: var(--color-sub-txt-v02);
}
@media screen and (min-width: 768px) {
  section.sec-service ul li a div.txt-wrap p {
    transition: color 0.3s;
    font-size: clamp(12px, 16 / 1366 * 100vw, 1000px);
  }
}

div.bk-bg-wrap {
  background-color: var(--color-main);
  box-sizing: border-box;
  padding: calc(120 / 750 * 100vw) calc(53 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.bk-bg-wrap {
    padding: calc(125 / 1366 * 100vw) 74px;
  }
}
@media screen and (min-width: 768px) {
  div.bk-bg-wrap.search {
    padding: calc(125 / 1366 * 100vw) 74px;
  }
}
div.bk-bg-wrap.others {
  padding: calc(112 / 750 * 100vw) calc(20 / 750 * 100vw) calc(1 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.bk-bg-wrap.others {
    padding: calc(92 / 1366 * 100vw) 74px 1px;
  }
}

section.sec-search h2 {
  color: #fff;
  margin-bottom: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-search h2 {
    margin-bottom: 75px;
  }
}
section.sec-search h2 .ja {
  color: var(--color-light-gray);
}
section.sec-search h3 {
  color: var(--color-light-gray);
  margin-bottom: 1em;
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.04em;
  letter-spacing: 0.02em;
  height: 1.2em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-search h3 {
    line-height: 1.2em;
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
@keyframes search-sub-title {
  0% {
    transform: translate(0, 1.2em);
  }
  100% {
    transform: translate(0, 0);
  }
}
section.sec-search h3 span {
  display: block;
  transform: translate(0, 1.2em);
}
section.sec-search h3.animation span {
  animation: search-sub-title 0.4s 0.3s ease forwards;
}
@keyframes search-list {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
section.sec-search ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  section.sec-search ul {
    gap: 8px;
  }
}
section.sec-search ul.animation li:nth-of-type(1) {
  animation: search-list 0.5s 0s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(2) {
  animation: search-list 0.5s 0.04s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(3) {
  animation: search-list 0.5s 0.08s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(4) {
  animation: search-list 0.5s 0.12s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(5) {
  animation: search-list 0.5s 0.16s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(6) {
  animation: search-list 0.5s 0.2s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(7) {
  animation: search-list 0.5s 0.24s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(8) {
  animation: search-list 0.5s 0.28s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(9) {
  animation: search-list 0.5s 0.32s ease forwards;
}
section.sec-search ul.animation li:nth-of-type(10) {
  animation: search-list 0.5s 0.36s ease forwards;
}
section.sec-search ul li {
  transform: scale(0.4);
  opacity: 0;
}
section.sec-search ul a {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: #414141;
  box-sizing: border-box;
  border-radius: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-search ul a {
    border-radius: 5px;
    transition: all 0.3s;
  }
  section.sec-search ul a:hover {
    background: #fff;
  }
  section.sec-search ul a:hover svg path {
    stroke: var(--color-main);
  }
  section.sec-search ul a:hover p {
    color: var(--color-main);
  }
}
section.sec-search ul a svg path {
  transition: all 0.3s;
}
section.sec-search ul a svg .st0 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}
section.sec-search ul a p {
  text-align: center;
  color: #fff;
  line-height: 1.2em;
  margin-top: 1em;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-search ul a p {
    font-size: 16px;
  }
}
section.sec-search div.search-cont {
  margin-bottom: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont {
    margin-bottom: 50px;
  }
}
section.sec-search div.search-cont.type ul {
  gap: 1.1%;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.type ul {
    gap: 8px;
  }
}
section.sec-search div.search-cont.type ul li {
  width: 32.6%;
  margin-bottom: 1.1%;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.type ul li {
    margin-bottom: 0;
    width: calc(20% - 7px);
  }
}
section.sec-search div.search-cont.type a {
  padding: calc(57 / 750 * 100vw) 0 calc(42 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.type a {
    padding: calc(36 / 1366 * 100vw) 0 calc(28 / 1366 * 100vw);
  }
}
section.sec-search div.search-cont.type a p {
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.04em;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.type a p {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
section.sec-search div.search-cont.type a svg {
  width: 70%;
  margin: 0 auto;
}
section.sec-search div.search-cont.budget ul {
  gap: 1.2%;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.budget ul {
    gap: 8px;
  }
}
section.sec-search div.search-cont.budget ul li {
  width: 49.4%;
  margin-bottom: 1.2%;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.budget ul li {
    width: calc(25% - 6px);
    margin-bottom: 0;
  }
}
section.sec-search div.search-cont.budget a {
  box-sizing: border-box;
  padding: calc(36 / 750 * 100vw) 0;
  font-family: var(--font-manrope);
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.budget a {
    padding: calc(29 / 1366 * 100vw) 0;
  }
}
section.sec-search div.search-cont.budget a p {
  margin: 0;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  section.sec-search div.search-cont.budget a p {
    font-size: clamp(10px, 17 / 1366 * 100vw, 1000px);
  }
}
section.sec-search a.m-btn-base {
  margin-top: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-search a.m-btn-base {
    margin-top: calc(75 / 1366 * 100vw);
  }
}

section.sec-shop {
  box-sizing: border-box;
  padding: calc(120 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-shop {
    padding: calc(115 / 1366 * 100vw) 0 calc(100 / 1366 * 100vw);
  }
}
section.sec-shop h2 {
  text-align: center;
  margin-bottom: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-shop h2 {
    margin-bottom: calc(50 / 1366 * 100vw);
  }
}
section.sec-shop h2 span.en, section.sec-shop h2 span.ja {
  display: block;
}
@keyframes shop-list {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  section.sec-shop ul.shop-list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(1) {
  animation: shop-list 0.7s 0s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(2) {
  animation: shop-list 0.7s 0.08s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(3) {
  animation: shop-list 0.7s 0.16s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(4) {
  animation: shop-list 0.7s 0.24s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(5) {
  animation: shop-list 0.7s 0.32s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(6) {
  animation: shop-list 0.7s 0.4s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(7) {
  animation: shop-list 0.7s 0.48s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(8) {
  animation: shop-list 0.7s 0.56s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(9) {
  animation: shop-list 0.7s 0.64s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(10) {
  animation: shop-list 0.7s 0.72s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(11) {
  animation: shop-list 0.7s 0.8s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(12) {
  animation: shop-list 0.7s 0.88s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(13) {
  animation: shop-list 0.7s 0.96s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(14) {
  animation: shop-list 0.7s 1.04s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(15) {
  animation: shop-list 0.7s 1.12s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(16) {
  animation: shop-list 0.7s 1.2s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(17) {
  animation: shop-list 0.7s 1.28s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(18) {
  animation: shop-list 0.7s 1.36s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(19) {
  animation: shop-list 0.7s 1.44s ease forwards;
}
section.sec-shop ul.shop-list.animation > li:nth-of-type(20) {
  animation: shop-list 0.7s 1.52s ease forwards;
}
section.sec-shop ul.shop-list > li {
  position: relative;
  border-radius: calc(10 / 750 * 100vw);
  isolation: isolate;
  overflow: hidden;
  margin-bottom: calc(20 / 750 * 100vw);
  background: #fff;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-shop ul.shop-list > li {
    width: calc(50% - 9px);
    border-radius: calc(5 / 750 * 100vw);
    margin-bottom: 18px;
  }
}
section.sec-shop ul.shop-list > li a.link-wrap {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  section.sec-shop ul.shop-list > li a.link-wrap {
    border-radius: 5px;
  }
}
section.sec-shop .shop-img {
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 768px) {
  section.sec-shop .shop-img:hover img {
    transform: scale(1.04);
  }
}
section.sec-shop .shop-img img {
  aspect-ratio: 710/400;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-shop .shop-img img {
    aspect-ratio: 543/306;
  }
}
section.sec-shop .shop-txt-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: calc(50 / 750 * 100vw) calc(33 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-shop .shop-txt-wrap {
    padding: calc(25 / 1366 * 100vw) calc(30 / 1366 * 100vw) calc(35 / 1366 * 100vw);
  }
}
section.sec-shop h3 {
  font-weight: 700;
  font-size: calc(36 / 750 * 100vw);
  line-height: 1.44em;
  letter-spacing: 0.03em;
  line-height: 1.2em;
  margin-bottom: 0.8em;
  width: 100%;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-shop h3 {
    font-weight: 700;
    font-size: clamp(17px, 26 / 1366 * 100vw, 35px);
    line-height: 1.46em;
    letter-spacing: 0.02em;
    margin-bottom: 0.6em;
  }
}
section.sec-shop .icon-txt-wrap {
  width: 55%;
}
@media screen and (min-width: 768px) {
  section.sec-shop .icon-txt-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
}
section.sec-shop .icon-txt {
  display: block;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  font-size: calc(23 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-shop .icon-txt {
    transition: color 0.3s;
    font-size: calc(13 / 1366 * 100vw);
    margin-bottom: calc(13 / 750 * 100vw);
  }
}
section.sec-shop .icon-txt span {
  display: inline-block;
}
section.sec-shop .icon-txt .icon {
  width: 1em;
  transform: translate(0, 0.2em);
}
section.sec-shop .icon-txt .en {
  font-family: var(--font-manrope);
}
section.sec-shop a.icon-txt {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section.sec-shop a.icon-txt:hover {
    color: var(--color-used);
  }
}
section.sec-shop .tag-list {
  display: flex;
  flex-wrap: wrap;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.2em;
  gap: calc(3 / 750 * 100vw);
  width: 44.2%;
}
@media screen and (min-width: 768px) {
  section.sec-shop .tag-list {
    width: 80%;
    font-size: calc(10 / 1366 * 100vw);
    gap: 3px;
  }
}
section.sec-shop .tag-list li {
  display: inline-block;
  padding: 0.4em 0.6em;
  box-sizing: border-box;
  color: #686868;
  background-color: #F4F4F4;
  border-radius: 2px;
}

section.sec-others h3 {
  font-weight: bold;
  color: #fff;
  padding-left: 1em;
  position: relative;
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.04em;
  letter-spacing: 0.02em;
  margin-bottom: 2em;
  margin-left: calc(33 / 750 * 100vw);
  line-height: 1.2em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-others h3 {
    font-size: clamp(10px, 20 / 1366 * 100vw, 1000px);
    line-height: 1.2em;
    margin-bottom: 35px;
    margin-left: 0;
  }
}
section.sec-others h3 span {
  display: block;
  transform: translate(0, 1.2em);
}
section.sec-others h3.animation span {
  animation: others-title 0.4s 0.2s ease forwards;
}
section.sec-others h3.animation::after {
  animation: big 0.4s 0s ease forwards;
}
@keyframes others-title {
  0% {
    transform: translate(0, 1.2em);
  }
  100% {
    transform: translate(0, 0);
  }
}
section.sec-others h3::after {
  content: "";
  display: block;
  width: calc(12 / 750 * 100vw);
  height: calc(12 / 750 * 100vw);
  position: absolute;
  top: 0.3em;
  left: 0;
  border-radius: 50em;
  background-color: var(--color-used);
  transform: scale(0);
}
@media screen and (min-width: 768px) {
  section.sec-others h3::after {
    top: 0.4em;
    width: 0.5em;
    height: 0.5em;
  }
}/*# sourceMappingURL=u_car.css.map */