@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table,
td,
th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  position: relative;
  z-index: 100;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
body:before {
  content: "";
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s cubic-bezier(0.66, 0, 0.34, 1);
  opacity: 0;
  pointer-events: none;
}

.is-overlay:before {
  opacity: 1;
}

.wrap {
  width: calc(100% - 50px);
  margin-inline: auto;
  max-width: 1200px;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2.5px 2.5px 0 rgba(0, 0, 0, 0.1);
}
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .container .logo {
  margin-left: 15px;
}
.site-header .container .logo img {
  width: 125px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .logo img {
    width: 150px;
  }
}
.site-header .container .hbg {
  position: relative;
  width: 55px;
  height: 55px;
  background: #E96A46;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .inner {
  position: relative;
}
.site-header .container .hbg .inner .line-wrap {
  position: relative;
  width: 30px;
  height: 16px;
}
.site-header .container .hbg .inner .line-wrap .line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .container .hbg .inner .line-wrap .line:first-child {
  top: 0;
}
.site-header .container .hbg .inner .line-wrap .line:nth-child(2) {
  top: 6.5px;
}
.site-header .container .hbg .inner .line-wrap .line:last-child {
  bottom: 0;
}
.site-header .container .hbg .inner .text {
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.site-header .container .is-hbg .line-wrap .line:first-child {
  transform: translateX(2.5px) translateY(6.5px) rotate(45deg);
}
.site-header .container .is-hbg .line-wrap .line:nth-child(2) {
  opacity: 0;
}
.site-header .container .is-hbg .line-wrap .line:last-child {
  transform: translateX(2.5px) translateY(-6.5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  z-index: 100;
  top: 55px;
  right: -100%;
  width: 80%;
  height: calc(100% - 55px);
  background: #fff;
  transition: right 0.5s cubic-bezier(0.66, 0, 0.34, 1);
  pointer-events: none;
  overflow-y: auto;
}
.site-header .container .drawer .drawer-links .link {
  border-bottom: 1px solid #ccc;
}
.site-header .container .drawer .drawer-links .link a {
  position: relative;
  display: block;
  padding: 20px;
  font-weight: 700;
}
.site-header .container .drawer .drawer-links .link a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  background-image: url("../../../assets/images/common/drawer-icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 15px;
  height: 15px;
}
.site-header .container .drawer .drawer-links .link {
  /* SP表示（ドロワーメニュー内） */
}
.site-header .container .drawer .drawer-links .link .more-menu {
  display: none;
  padding: 0 20px 20px;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-title {
  font-weight: 700;
  font-size: 14px;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item {
  margin-top: 5px;
  width: calc(50% - 2.5px);
  margin-right: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item:nth-child(2n) {
  margin-right: 0;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item:nth-child(-n+2) {
  margin-top: 0;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item a {
  padding: 0;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item a::after {
  display: none;
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item.more-menu-item--sell {
  border: 1px solid rgb(94, 154, 248);
}
.site-header .container .drawer .drawer-links .link .more-menu .more-menu-list .more-menu-item.more-menu-item--buy {
  border: 1px solid rgb(233, 106, 70);
}
.site-header .container .drawer .sns {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.site-header .container .drawer .sns .icon {
  width: 35px;
  height: 35px;
}
.site-header .container .drawer .sns .icon:not(:first-child) {
  margin-left: 10px;
}
.site-header .container .drawer .cp {
  text-align: center;
  margin: 25px 0;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0;
}
.site-header .container .is-drawer {
  right: 0;
  pointer-events: auto;
}
.site-header .container .info {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .info {
    display: flex;
    align-items: center;
  }
}
.site-header .container .info .links {
  display: flex;
}
.site-header .container .info .links .link:not(:first-child) {
  margin-left: 20px;
}
.site-header .container .info .links .link a {
  position: relative;
  display: inline-block;
  font-weight: 700;
  transition: color 0.15s ease;
  letter-spacing: -1px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .info .links .link a {
    letter-spacing: 0;
  }
}
.site-header .container .info .links .link a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #5E9AF8;
  border-radius: 100vh;
  transition: opacity 0.15s ease;
  opacity: 0;
}
.site-header .container .info .links .link a:hover {
  color: #5E9AF8;
}
.site-header .container .info .links .link a:hover:before {
  opacity: 1;
}
.site-header .container .info .cta {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .cta {
    padding: 15px 0;
    display: flex;
    margin-left: 20px;
    margin-right: 15px;
  }
}
.site-header .container .info .cta .form {
  background: #5E9AF8;
}
.site-header .container .info .cta .tel {
  background: #E96A46;
}
.site-header .container .info .cta .line {
  background: #06C755;
}
.site-header .container .info .cta .cta-main {
  margin-right: 7.5px;
}
.site-header .container .info .cta .cta-main a {
  display: block;
  text-align-last: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  height: 100%;
}
.site-header .container .info .cta .cta-main a .icon img {
  width: 40px;
}
.site-header .container .info .cta .cta-main a .text {
  margin-top: 7.5px;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .info .cta .cta-main a .text {
    font-size: 14px;
  }
}
.site-header .container .info .cta .cta-sub .sub-btn:nth-child(2) {
  margin-top: 5px;
}
.site-header .container .info .cta .cta-sub .sub-btn a {
  padding: 10px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .info .cta .cta-sub .sub-btn a {
    font-size: 13px;
  }
}
.site-header .container .info .cta .cta-sub .sub-btn a .icon {
  width: 20px;
  margin-right: 7.5px;
}
/* PC表示（デスクトップ用メガメニュー） */
/* メガメニュー全体 */
.site-header .mega-menu {
  display: none;
  position: absolute;
  top: 115px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px;
  transition: opacity 0.3s;
  background: rgb(247, 247, 247);
  opacity: 0;
  pointer-events: none;
  /* 1024px以上でブロック表示 */
}
@media screen and (min-width: 1024px) {
  .site-header .mega-menu {
    display: block;
  }
}
.site-header .mega-menu {
  /* 内側コンテナ */
}
.site-header .mega-menu .mega-menu-inner {
  max-width: 1200px;
  margin-inline: auto;
}
.site-header .mega-menu {
  /* タイトル「買取車両一覧」 */
}
.site-header .mega-menu .mega-menu-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
.site-header .mega-menu {
  /* リスト（横並び） */
}
.site-header .mega-menu .mega-menu-list {
  display: flex;
}
.site-header .mega-menu {
  /* 各アイテム（4列） */
}
.site-header .mega-menu .mega-menu-list .mega-menu-item {
  width: calc(25% - 11.25px);
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
  /* 4番目ごとのアイテムは右マージンなし */
}
.site-header .mega-menu .mega-menu-list .mega-menu-item:nth-child(4n) {
  margin-right: 0;
}
.site-header .mega-menu {
  /* 販売車両一覧アイテムの枠色（青） */
}
.site-header .mega-menu .mega-menu-list .mega-menu-item--sell {
  border: 2px solid rgb(94, 154, 248);
}
.site-header .mega-menu {
  /* 買取車両一覧アイテムの枠色（オレンジ） */
}
.site-header .mega-menu .mega-menu-list .mega-menu-item--buy {
  border: 2px solid rgb(233, 106, 70);
}

/* ホバー時に表示 */
.site-header .is-mega-menu {
  opacity: 1;
  pointer-events: auto;
}

/* ─── /sell ヘッダー専用スタイル ─── */
.site-header .container .drawer .drawer-sell-cta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn:hover {
  opacity: 0.85;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn--tel {
  background: #E96A46;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn--line {
  background: #06C755;
}
.site-header .container .drawer .drawer-sell-cta .drawer-cta-btn--form {
  background: #5E9AF8;
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .links {
    align-self: stretch;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .links .link-mega-sell,
  .site-header .container .info .links .link-mega-buy {
    align-self: stretch;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .links .link-mega-sell > a,
  .site-header .container .info .links .link-mega-buy > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: opacity 0.18s ease;
  }
  .site-header .container .info .links .link-mega-sell > a:before,
  .site-header .container .info .links .link-mega-buy > a:before {
    display: none;
  }
  .site-header .container .info .links .link-mega-sell > a:hover,
  .site-header .container .info .links .link-mega-buy > a:hover {
    color: #fff;
    opacity: 0.85;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .links .link-mega-sell > a {
    background: #5E9AF8;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .links .link-mega-buy > a {
    background: #E96A46;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info {
    align-self: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .sell-nav-btn {
    align-self: stretch;
    display: flex;
    margin-left: 16px;
  }
  .site-header .container .info .sell-nav-btn a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 28px;
    background: #5E9AF8;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.18s ease;
  }
  .site-header .container .info .sell-nav-btn a:hover {
    background: #7badf9;
    color: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .info .buy-nav-btn {
    align-self: stretch;
    display: flex;
    margin-left: 16px;
  }
  .site-header .container .info .buy-nav-btn a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 28px;
    background: #E96A46;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.18s ease;
  }
  .site-header .container .info .buy-nav-btn a:hover {
    background: #f07950;
    color: #fff;
  }
}
.site-header .container .info .cta--sell .cta-main {
  display: flex;
  align-items: center;
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #e0e0e0;
}
.site-header .container .info .cta--sell .cta-main a.tel-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: inherit;
  background: none;
  border-radius: 0;
  padding: 0;
  height: auto;
  text-decoration: none;
  line-height: 1;
}
.site-header .container .info .cta--sell .cta-main .tel-display__number {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #E96A46;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  .site-header .container .info .cta--sell .cta-main .tel-display__number {
    font-size: 24px;
  }
}
.site-header .container .info .cta--sell .cta-main .tel-display__hours {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  color: #888;
  white-space: nowrap;
}

/*
main
================================*/
.site-main {
  position: relative;
  margin-top: 55px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 115px;
  }
}
.site-main__page-title {
  padding: 25px 0;
  background: #5E9AF8;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-main__page-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5E9AF8 0%, #9ab8f8 50%, #E96A46 100%);
}
@media screen and (min-width: 768px) {
  .site-main__page-title {
    padding: 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__page-title {
    padding: 45px 0;
  }
}
.site-main__page-title .title span {
  display: block;
}
.site-main__page-title .title .logo img {
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .site-main__page-title .title .logo img {
    width: 150px;
  }
}
.site-main__page-title .title__en {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .site-main__page-title .title__en {
    margin-bottom: 15px;
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__page-title .title__en {
    font-size: 45px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__page-title .title__ja {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__page-title .title__ja {
    font-size: 18px;
  }
}
.site-main__page-wrap {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .site-main__page-wrap {
    padding: 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__page-wrap {
    padding: 45px 0;
  }
}

/*
footer
================================*/
.site-footer .cta {
  background: #E96A46;
}
.site-footer .cta .cta-title {
  text-align-last: center;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-title {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-title {
    margin-bottom: 45px;
  }
}
.site-footer .cta .cta-title span {
  display: block;
}
.site-footer .cta .cta-title__en {
  font-size: 25px;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-title__en {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-title__en {
    font-size: 45px;
  }
}
.site-footer .cta .cta-title__ja {
  margin-top: 7.5px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-title__ja {
    margin-top: 12.5px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-title__ja {
    font-size: 18px;
  }
}
.site-footer .cta .catch {
  margin-top: -5px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.4em;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .catch {
    margin-top: -9px;
    font-size: 30px;
  }
}
.site-footer .cta .cta-list {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list {
    display: flex;
    margin-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-list {
    margin-top: 45px;
  }
}
.site-footer .cta .cta-list .item {
  padding: 25px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item {
    width: calc(50% - 12.5px);
    margin-right: 25px;
  }
}
.site-footer .cta .cta-list .item:nth-child(2) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item:nth-child(2) {
    margin-top: 0;
    margin-right: 0;
  }
}
.site-footer .cta .cta-list .item .title {
  text-align: center;
  font-weight: 700;
  color: #E96A46;
  font-size: 17.5px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item .title {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.site-footer .cta .cta-list .item .cta-sub-text {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item .cta-sub-text {
    font-size: 13px;
  }
}
.site-footer .cta .cta-list .item .cta-tel-number {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item .cta-tel-number {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-list .item .cta-tel-number {
    font-size: 36px;
  }
}
.site-footer .cta .cta-list .item .cta-tel-hours {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .cta-list .item .cta-tel-hours {
    font-size: 13px;
  }
}
.site-footer .cta .cta-list .item .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #E96A46;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 0 #b84d2c;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.site-footer .cta .cta-list .item .btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 106, 70, 0.4);
  background: #f07950;
}
.site-footer .cta .cta-list .item .btn a .icon {
  width: 35px;
  margin-right: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-list .item .btn a .icon {
    width: 40px;
  }
}
.site-footer .cta .cta-list .item .btn a .text {
  font-weight: 700;
  font-size: 17.5px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .cta-list .item .btn a .text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .info .company {
    display: flex;
    justify-content: space-between;
  }
}
.site-footer .info .company .logo img {
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .company .logo img {
    width: 150px;
  }
}
.site-footer .info .company .address {
  margin-top: 15px;
  line-height: 1.4em;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .company .address {
    text-align: right;
    margin-top: 0;
  }
}
.site-footer .info .links {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .site-footer .info .links {
    margin-top: 35px;
    padding-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .info .links {
    margin-top: 45px;
    padding-top: 45px;
  }
}
.site-footer .info .links .link {
  margin-top: 25px;
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .links .link {
    margin-top: 0;
    width: initial;
  }
}
.site-footer .info .links .link:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .links .link:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .info .links .link:not(:first-child) {
    margin-left: 30px;
  }
}
.site-footer .info .links .link a {
  font-weight: 700;
}
.site-footer .info .sns {
  display: flex;
}
.site-footer .info .sns .icon {
  width: 35px;
  height: 35px;
}
.site-footer .info .sns .icon:not(:first-child) {
  margin-left: 10px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .sns .icon:not(:first-child) {
    margin-left: 15px;
  }
}
.site-footer .info .cp {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0;
  padding-bottom: 90px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .cp {
    padding-bottom: 0;
  }
}

/*
bottom-cta
================================*/
.bottom-cta {
  position: fixed;
  z-index: 50;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 5px;
  background: #f7f7f7;
  display: flex;
  pointer-events: none;
  transition: bottom 0.3s cubic-bezier(0.66, 0, 0.34, 1);
}
@media screen and (min-width: 1024px) {
  .bottom-cta {
    display: none;
  }
}
.bottom-cta .form {
  background: #5E9AF8;
}
.bottom-cta .tel {
  background: #E96A46;
}
.bottom-cta .line {
  background: #06C755;
}
.bottom-cta .cta-main {
  width: calc(50% - 5px);
  margin-right: 5px;
  flex-shrink: 0;
}
.bottom-cta .cta-main a {
  display: block;
  text-align-last: center;
  background: #E96A46;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .bottom-cta .cta-main a {
    padding: 10px 50px;
  }
}
.bottom-cta .cta-main a.form {
  background: #5E9AF8;
}
.bottom-cta .cta-main a .icon img {
  width: 40px;
}
.bottom-cta .cta-main a .text {
  margin-top: 7.5px;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .bottom-cta .cta-main a .text {
    font-size: 14px;
  }
}
.bottom-cta .cta-sub {
  flex: 0 0 50%;
}
.bottom-cta .cta-sub .sub-btn:nth-child(2) {
  margin-top: 5px;
}
.bottom-cta .cta-sub .sub-btn a {
  padding: 10px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 12px;
}
.bottom-cta .cta-sub .sub-btn a .icon {
  width: 20px;
  margin-right: 7.5px;
}
.is-bottom-cta {
  bottom: 0;
  pointer-events: auto;
}

@media print {
  .bottom-cta {
    display: none !important;
  }
}
/*===============================
module
================================*/
/*
vehicle-list
================================*/
.vehicle-list {
  display: flex;
  flex-wrap: wrap;
}
.vehicle-list .item {
  position: relative;
  margin-top: 10px;
  width: calc(50% - 5px);
  margin-right: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.vehicle-list .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(94, 154, 248, 0.18);
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item {
    margin-top: 15px;
    width: calc(25% - 11.25px);
    margin-right: 15px;
  }
}
.vehicle-list .item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item:nth-child(2n) {
    margin-right: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item:nth-child(4n) {
    margin-right: 0;
  }
}
.vehicle-list .item:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item:nth-child(-n+4) {
    margin-top: 0;
  }
}
.vehicle-list .item .thumb {
  position: relative;
  aspect-ratio: 640/480;
  margin: 5px 0;
}
.vehicle-list .item .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-list .item .contents {
  padding: 10px;
  border: 1px solid #c8d8f8;
  border-top: none;
  border-radius: 8px;
}
.vehicle-list .item .contents .info dl {
  font-size: 10px;
  display: flex;
  letter-spacing: -1px;
  border: 1px solid #dde2ee;
}
@media screen and (min-width: 481px) {
  .vehicle-list .item .contents .info dl {
    font-size: 11px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item .contents .info dl {
    letter-spacing: 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list .item .contents .info dl {
    font-size: 13px;
  }
}
.vehicle-list .item .contents .info dl:not(:first-child) {
  border-top: none;
}
.vehicle-list .item .contents .info dl dt,
.vehicle-list .item .contents .info dl dd {
  padding: 2.5px 5px;
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .vehicle-list .item .contents .info dl dt,
  .vehicle-list .item .contents .info dl dd {
    padding: 5px;
  }
}
.vehicle-list .item .contents .info dl dt {
  width: 40%;
  background: #eef4ff;
  color: #5E9AF8;
  font-weight: 700;
  border-right: 1px solid #dde2ee;
}
.vehicle-list .item .contents .info dl dd {
  flex: 1;
  letter-spacing: -1px;
}
.vehicle-list .item .contents .info dl dd a {
  color: #1a1a1a;
  text-decoration-line: underline;
  text-decoration-color: rgba(94, 154, 248, 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.vehicle-list .item .contents .info dl dd a:hover {
  color: #5E9AF8;
  text-decoration-color: #5E9AF8;
}
.vehicle-list .item .contents .more-btn {
  margin-top: 10px;
}
.vehicle-list .item .contents .more-btn a {
  max-width: 100%;
  font-size: 10px;
  padding: 10px 5px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .vehicle-list .item .contents .more-btn a {
    font-size: 12px;
    padding: 10px;
  }
}

.vehicle-list--sell .item .contact-num {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5E9AF8;
  color: #fff;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contact-num {
    padding: 15px;
  }
}
.vehicle-list--sell .item .contact-num .text {
  font-size: 11px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contact-num .text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--sell .item .contact-num .text {
    font-size: 14px;
  }
}
.vehicle-list--sell .item .contact-num .num {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contact-num .num {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--sell .item .contact-num .num {
    font-size: 22px;
  }
}
.vehicle-list--sell .item .thumb {
  position: relative;
}
.vehicle-list--sell .item .contents .tag-list {
  text-align: initial;
  margin-bottom: 5px;
}
.vehicle-list--sell .item .contents .tag-list .tag {
  margin-bottom: 2.5px;
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: rgba(94, 154, 248, 0.1);
  color: #5E9AF8;
  font-size: 10px;
  border-radius: 3px;
  border: 1px solid rgba(94, 154, 248, 0.3);
}
@media screen and (min-width: 768px) {
  .vehicle-list--sell .item .contents .tag-list .tag {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contents .tag-list .tag {
    padding: 3px 7px;
    font-size: 11px;
  }
}
.vehicle-list--sell .item .contents .tag-list .tag:not(:last-child) {
  margin-right: 2.5px;
}
@media screen and (min-width: 768px) {
  .vehicle-list--sell .item .contents .tag-list .tag:not(:last-child) {
    margin-right: 5px;
  }
}
.vehicle-list--sell .item .contents .price .price-block {
  font-size: 11px;
  letter-spacing: -1.4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .vehicle-list--sell .item .contents .price .price-block {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contents .price .price-block {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--sell .item .contents .price .price-block {
    font-size: 14px;
  }
}
.vehicle-list--sell .item .contents .price .price-block span {
  display: inline-block;
  color: #E96A46;
  font-weight: 700;
  font-size: 20px;
  margin-right: 1px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contents .price .price-block span {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--sell .item .contents .price .price-block span {
    font-size: 24px;
  }
}
.vehicle-list--sell .item .contents .price .price-block:not(:first-child) {
  margin-top: 10px;
}
.vehicle-list--sell .item .contents .price .price-block:first-child {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vehicle-list--sell .item .contents .price .price-block:first-child .text {
  font-size: 10px;
  color: #888;
  letter-spacing: 0;
}
.vehicle-list--sell .item .contents .price .price-block:first-child span {
  font-size: 36px !important;
  font-weight: 800;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--sell .item .contents .price .price-block:first-child span {
    font-size: 40px !important;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--sell .item .contents .price .price-block:first-child span {
    font-size: 44px !important;
  }
}
.vehicle-list--sell .item .contents .info {
  padding-top: 10px;
  margin-top: 12px;
  border-top: 1px dashed #ccc;
}
.vehicle-list--sell .item--negotiation .thumb:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}
.vehicle-list--sell .item--negotiation .thumb:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  background-image: url("../../../assets/images/common/sales-pending.webp");
  background-repeat: no-repeat;
  background-size: 75% auto;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.vehicle-list--sell .item--sold .thumb:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  bottom: 5px;
  left: 5px;
  background-image: url("../../../assets/images/common/deal-closed.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom left;
  width: 34px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .vehicle-list--sell .item--sold .thumb:after {
    width: 51px;
    height: 150px;
    bottom: 10px;
    left: 10px;
  }
}

.vehicle-list--buy .item .model-name {
  padding: 10px;
  text-align: center;
  background: #5E9AF8;
  color: #fff;
  letter-spacing: -1px;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .vehicle-list--buy .item .model-name {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .vehicle-list--buy .item .model-name {
    padding: 15px;
  }
}
.vehicle-list--buy .item .price {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vehicle-list--buy .item .price .icon {
  width: 35px;
  margin-right: 5px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .vehicle-list--buy .item .price .icon {
    margin-right: 10px;
    width: 50px;
  }
}
.vehicle-list--buy .item .price .yen {
  position: relative;
  width: auto;
  letter-spacing: -1px;
  transform: translateY(-2px);
}
@media screen and (min-width: 768px) {
  .vehicle-list--buy .item .price .yen {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-list--buy .item .price .yen {
    transform: translateY(-3px);
  }
}
.vehicle-list--buy .item .price .yen span {
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
  margin-right: 2px;
}
@media screen and (min-width: 768px) {
  .vehicle-list--buy .item .price .yen span {
    font-size: 50px;
  }
}
.vehicle-list--buy .item .price .yen__main {
  -webkit-text-stroke: 6px #000;
}
@media screen and (min-width: 768px) {
  .vehicle-list--buy .item .price .yen__main {
    -webkit-text-stroke: 8px #000;
  }
}
.vehicle-list--buy .item .price .yen__sub {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, #face00 0%, #fffbd0 20%, #ca9a0c 55%, #f2e08a 80%, #fffbd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

/*
maker-body-list
================================*/
.maker-list,
.shape-list {
  display: flex;
  flex-wrap: wrap;
}
.maker-list .item,
.shape-list .item {
  margin-top: 5px;
  width: calc(20% - 4px);
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .maker-list .item,
  .shape-list .item {
    margin-top: 0;
    width: calc(10% - 13.5px);
    margin-right: 15px;
  }
}
.maker-list .item:nth-child(5n),
.shape-list .item:nth-child(5n) {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .maker-list .item:nth-child(5n),
  .shape-list .item:nth-child(5n) {
    margin-right: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .maker-list .item:nth-child(10n),
  .shape-list .item:nth-child(10n) {
    margin-right: 0;
  }
}
.maker-list .item:nth-child(-n+5),
.shape-list .item:nth-child(-n+5) {
  margin-top: 0;
}
.maker-list .item:nth-child(odd),
.shape-list .item:nth-child(odd) {
  background: #fff;
}
.maker-list .item:nth-child(even),
.shape-list .item:nth-child(even) {
  background: #f7f7f7;
}

.maker-list--mT,
.shape-list--mT {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .maker-list--mT,
  .shape-list--mT {
    margin-top: 20px;
  }
}

/*
search
================================*/
.search {
  max-width: 1000px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.search .search-list {
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .search .search-list {
    display: flex;
  }
}
.search .search-list .item {
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .search .search-list .item {
    border-top: none;
    width: 33.3333333333%;
  }
  .search .search-list .item:not(:first-child) {
    border-left: 1px solid #ccc;
  }
}
.search .search-list .item:first-child {
  border-top: none;
}
.search .search-list .item select {
  width: 100%;
  padding: 10px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .search .search-list .item select {
    padding: 15px;
  }
}
.search .search-input {
  border-radius: 5px 5px 0 0;
}
.search .search-input input[type=text] {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border: none;
}
@media screen and (min-width: 1024px) {
  .search .search-input input[type=text] {
    padding: 15px;
  }
}
.search .search-submit {
  border-radius: 0 0 5px 5px;
}
.search .search-submit input[type=submit] {
  width: 100%;
  text-align: center;
  display: block;
  background: linear-gradient(135deg, #E96A46, #f07950);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.search .search-submit input[type=submit]:hover {
  opacity: 0.85;
}
@media screen and (min-width: 1024px) {
  .search .search-submit input[type=submit] {
    padding: 15px 0;
  }
}

/*
sort field
================================*/
.sort {
  position: relative;
}
.sort .sort-wrap {
  display: flex;
}
.sort .sort-wrap .sort-block {
  border: 1px solid #ccc;
  width: calc(50% - 5px);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  padding: 10px 0;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-wrap .sort-block {
    padding: 15px 0;
  }
}
.sort .sort-wrap .sort-block:nth-child(2) {
  margin-right: 0;
}
.sort .sort-wrap .sort-block:nth-child(2) .icon {
  width: 14px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-wrap .sort-block:nth-child(2) .icon {
    width: 16px;
  }
}
.sort .sort-wrap .sort-block .icon {
  width: 16px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-wrap .sort-block .icon {
    width: 18px;
  }
}
.sort .sort-wrap .sort-block .text {
  margin-left: 12.5px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-wrap .sort-block .text {
    margin-left: 15px;
    font-size: 16px;
  }
}
.sort .sort-list {
  opacity: 0;
  position: absolute;
  z-index: 10;
  bottom: -136px;
  right: 0;
  width: 50%;
  transition: opacity 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .sort .sort-list {
    bottom: -140px;
  }
}
@media screen and (min-width: 1024px) {
  .sort .sort-list {
    bottom: -45px;
    display: flex;
  }
}
.sort .sort-list .sort-list-item {
  border: 1px solid #ccc;
  border-top: none;
  padding: 10px 0;
  text-align: center;
  background: #fff;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .sort .sort-list .sort-list-item {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  .sort .sort-list .sort-list-item {
    width: 25%;
  }
  .sort .sort-list .sort-list-item:not(:first-child) {
    border-left: none;
  }
}
.sort .is-show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.sort .sort-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 155;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  width: calc(100% - 60px);
  max-width: 800px;
  height: calc(100% - 60px);
  max-height: fit-content;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .sort .sort-form {
    padding: 30px;
  }
}
.sort .sort-form {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.sort .sort-form.is-form-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sort .sort-form .sort-form-block:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block:not(:first-child) {
    margin-top: 25px;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-content-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check {
  width: calc(50% - 5px);
  margin-right: 10px;
  margin-top: 5px;
}
.sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check:nth-child(2n) {
    margin-right: 10px;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check {
    width: calc(25% - 7.5px);
    margin-top: 10px;
  }
  .sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check:nth-child(4n) {
    margin-right: 0;
  }
  .sort .sort-form .sort-form-block .sort-form-block-content-checkbox .sort-form-check:nth-child(-n+4) {
    margin-top: 0;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-content-select select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-content-select select {
    font-size: 16px;
  }
}
.sort .sort-form .sort-form-block .sort-form-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
  border: 1px solid #4fc3f7;
  border-radius: 5px;
  background: #fff;
  color: #0288d1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-check {
    font-size: 13px;
    padding: 10px;
  }
}
.sort .sort-form .sort-form-block .sort-form-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sort .sort-form .sort-form-block .sort-form-check:hover {
  border-color: #0288d1;
  color: #01579b;
}
.sort .sort-form .sort-form-block .sort-form-check:has(input:checked) {
  background: #0288d1;
  border-color: #0288d1;
  color: #fff;
}
.sort .sort-form .sort-form-block .sort-form-block-content-submit {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-content-submit {
    gap: 15px;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-content-submit button {
  width: 100%;
  margin-inline: auto;
  text-align: center;
  display: block;
  background: #E96A46;
  color: #fff;
  font-weight: 700;
  padding: 15px 0;
  border-radius: 5px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .sort .sort-form .sort-form-block .sort-form-block-content-submit button {
    padding: 20px 0;
  }
}
.sort .sort-form .sort-form-block .sort-form-block-content-submit .sort-form-btn-reset {
  background: #f0f0f0;
  color: #1a1a1a;
}
.sort .close-btn {
  position: absolute;
  z-index: 160;
  top: 7px;
  right: 10px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .sort .close-btn {
    top: 15px;
    right: 15px;
  }
}
.sort .close-btn img {
  width: 30px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .sort .close-btn img {
    width: 40px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.overlay.is-overlay-show {
  opacity: 1;
  visibility: visible;
}

/*
title
================================*/
.sec-title {
  margin-bottom: 25px;
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .sec-title {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title {
    margin-bottom: 45px;
  }
}
.sec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, #5E9AF8, #E96A46);
  border-radius: 2px;
}
.sec-title span {
  display: block;
}
.sec-title__en {
  font-size: 25px;
  letter-spacing: -1px;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title__en {
    font-size: 45px;
  }
}
.sec-title__ja {
  margin-top: 7.5px;
}
@media screen and (min-width: 768px) {
  .sec-title__ja {
    margin-top: 12.5px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title__ja {
    font-size: 18px;
  }
}

/*
btn
================================*/
.back-btn,
.more-btn {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .back-btn,
  .more-btn {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .back-btn,
  .more-btn {
    margin-top: 45px;
  }
}
.back-btn a,
.more-btn a {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E96A46;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 2px 0 #b84d2c;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.15s ease;
}
.back-btn a::after,
.more-btn a::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.back-btn a:hover,
.more-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(233, 106, 70, 0.35);
  background: #f07950;
  color: #fff;
}
.back-btn a:hover::after,
.more-btn a:hover::after {
  transform: translateX(4px);
}
.back-btn a:active,
.more-btn a:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #b84d2c;
}
.back-btn a:focus-visible,
.more-btn a:focus-visible {
  outline: 2px solid #E96A46;
  outline-offset: 3px;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .back-btn a,
  .more-btn a {
    padding: 20px 24px;
  }
}

@keyframes vehicle-request-cta-btn-glow {
  0%,
  100% {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 2px 0 #b84d2c;
  }
  50% {
    box-shadow: 0 2px 14px rgba(233, 106, 70, 0.32), 0 2px 0 #b84d2c;
  }
}
@keyframes vehicle-request-cta-arrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* 未掲載車両リクエスト導線 */
.vehicle-request-cta {
  --vehicle-request-cta-accent: #e96a46;
  max-width: min(100%, 680px);
  margin-top: 28px;
  margin-inline: auto;
  padding: 22px 20px 24px 22px;
  background: #f4f6fa;
  border: 1px solid #cfd8e6;
  border-radius: 12px;
  border-left: 4px solid var(--vehicle-request-cta-accent);
  box-shadow: 0 1px 3px rgba(26, 35, 50, 0.06);
}
@media screen and (min-width: 768px) {
  .vehicle-request-cta {
    margin-top: 36px;
    padding: 28px 32px 30px 28px;
  }
}
.vehicle-request-cta__inner {
  max-width: 36em;
  margin-inline: auto;
  text-align: center;
}
.vehicle-request-cta__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0 0 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .vehicle-request-cta__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-request-cta__title {
    font-size: 24px;
  }
}
.vehicle-request-cta__lead {
  font-size: 14px;
  line-height: 1.75;
  color: #1f2937;
  margin: 0 auto 22px;
  text-align: center;
  max-width: 34em;
}
@media screen and (min-width: 768px) {
  .vehicle-request-cta__lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.vehicle-request-cta__action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
}
.vehicle-request-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  box-sizing: border-box;
  width: min(100%, 420px);
  flex: 0 0 auto;
  background: #e96a46;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 2px 0 #b84d2c;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.15s ease;
  animation: vehicle-request-cta-btn-glow 3s ease-in-out infinite;
}
.vehicle-request-cta__btn::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: vehicle-request-cta-arrow 1.75s ease-in-out infinite;
}
.vehicle-request-cta__btn:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(233, 106, 70, 0.35);
  background: #f07950;
  color: #fff !important;
}
.vehicle-request-cta__btn:hover::after {
  animation: none;
  transform: translateX(4px);
}
.vehicle-request-cta__btn:active {
  animation: none;
  transform: translateY(1px);
  box-shadow: 0 1px 0 #b84d2c;
}
.vehicle-request-cta__btn:active::after {
  animation: none;
}
.vehicle-request-cta__btn:focus-visible {
  animation: none;
  outline: 2px solid #e96a46;
  outline-offset: 3px;
  border-radius: 8px;
}
.vehicle-request-cta__btn:focus-visible::after {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .vehicle-request-cta__btn {
    animation: none;
  }
  .vehicle-request-cta__btn::after {
    animation: none;
  }
}
@media screen and (min-width: 1024px) {
  .vehicle-request-cta__btn {
    padding: 16px 28px;
    font-size: 15px;
  }
}

/*
column
================================*/
@media screen and (min-width: 1024px) {
  .column-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.column-list .item {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dde2ee;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.column-list .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .column-list .item {
    margin-top: 0;
    width: calc(25% - 11.25px);
    margin-right: 15px;
  }
  .column-list .item:nth-child(4n) {
    margin-right: 0;
  }
}
.column-list .item:first-child {
  margin-top: 0;
}
.column-list .item .thumb {
  aspect-ratio: 768/432;
  background: #ccc;
}
.column-list .item .contents {
  padding: 10px;
  border-top: 1px solid #dde2ee;
}
@media screen and (min-width: 1024px) {
  .column-list .item .contents {
    padding: 15px;
  }
}
.column-list .item .contents .info {
  display: flex;
  align-items: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .column-list .item .contents .info {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .column-list .item .contents .info {
    font-size: 14px;
  }
}
.column-list .item .contents .info .date {
  margin-right: 10px;
  color: #888;
}
.column-list .item .contents .info .cat {
  color: #5E9AF8;
  background: rgba(94, 154, 248, 0.1);
  padding: 1px 7px;
  border-radius: 3px;
  border: 1px solid rgba(94, 154, 248, 0.25);
}
.column-list .item .contents .title {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (min-width: 1200px) {
  .column-list .item .contents .title {
    font-size: 16px;
  }
}

.column-list .item .contents .tag {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}
@media screen and (min-width: 1024px) {
  .column-list .item .contents .tag {
    font-size: 13px;
  }
 }

/*
single
================================*/
.single-contents {
  border-top: 1px solid #5E9AF8;
  border-bottom: 1px solid #5E9AF8;
}
.single-contents .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .single-contents .title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .title {
    margin-bottom: 40px;
  }
}
.single-contents .content h1,
.single-contents .content h2,
.single-contents .content h3,
.single-contents .content h4,
.single-contents .content h5,
.single-contents .content h6,
.single-contents .content ul,
.single-contents .content p {
  margin-top: 20px;
}
.single-contents .content h1,
.single-contents .content h2,
.single-contents .content h3,
.single-contents .content h4,
.single-contents .content h5,
.single-contents .content h6,
.single-contents .content ul {
  line-height: 1.4em;
}
.single-contents .content ul li {
  padding: 7.5px 10px 10px;
  border-left: 5px solid #5E9AF8;
  border-bottom: 1px dashed #ccc;
}
@media screen and (min-width: 1024px) {
  .single-contents .content ul li {
    padding: 10px 10px 12.5px;
  }
}
.single-contents .content ul li:not(:first-child) {
  margin-top: 10px;
}
.single-contents .content p {
  margin-top: 10px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .single-contents .content p {
    margin-top: 15px;
  }
}
.single-contents .content h1 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .single-contents .content h1 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .content h1 {
    font-size: 28px;
  }
}
.single-contents .content h2 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .single-contents .content h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .content h2 {
    font-size: 26px;
  }
}
.single-contents .content h3 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .single-contents .content h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .content h3 {
    font-size: 24px;
  }
}
.single-contents .content h4 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .single-contents .content h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .content h4 {
    font-size: 22px;
  }
}
.single-contents .content h5 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .single-contents .content h5 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .single-contents .content h5 {
    font-size: 18px;
  }
}

.post-date {
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #5E9AF8;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (min-width: 768px) {
  .post-date {
    padding: 25px 0;
  }
}

/*
space
================================*/
.pad-tb {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .pad-tb {
    padding: 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .pad-tb {
    padding: 45px 0;
  }
}

.pad-t {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .pad-t {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .pad-t {
    padding-top: 45px;
  }
}

.pad-b {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .pad-b {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .pad-b {
    padding-bottom: 45px;
  }
}

.mar-tb {
  margin: 25px 0;
}
@media screen and (min-width: 768px) {
  .mar-tb {
    margin: 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .mar-tb {
    margin: 45px 0;
  }
}

.mar-t {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .mar-t {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .mar-t {
    margin-top: 45px;
  }
}

.mar-b {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .mar-b {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .mar-b {
    margin-bottom: 45px;
  }
}

/*
pagination
================================*/
.pagination {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .pagination {
    margin-top: 45px;
  }
}
.pagination-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination-list .pagination-item {
  border: 2px solid #5E9AF8;
  border-radius: 8px;
  overflow: hidden;
}
.pagination-list .pagination-item:not(:first-child) {
  margin-left: 0;
}
.pagination-list .pagination-item a,
.pagination-list .pagination-item span {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #5E9AF8;
  transition: background 0.15s ease;
}
@media screen and (min-width: 1024px) {
  .pagination-list .pagination-item a,
  .pagination-list .pagination-item span {
    width: 48px;
    height: 48px;
  }
}
.pagination-list .pagination-item a:hover {
  background: rgba(94, 155, 248, 0.1);
}
.pagination-list .pagination-item .is-current {
  background: #5E9AF8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
@media screen and (min-width: 1024px) {
  .pagination-list .pagination-item .is-current {
    width: 48px;
    height: 48px;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*===============================
パンくずリスト
================================*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  font-size: 11px;
  line-height: 1.5;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 6px;
  font-size: 10px;
}

/* テキストのみパンくず（/buy トップ ヒーロー直後） */
.breadcrumb-text-wrap {
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
}
.breadcrumb-text-wrap .breadcrumb {
  color: #aaa;
}
.breadcrumb-text-wrap .breadcrumb a {
  color: #888;
}
.breadcrumb-text-wrap .breadcrumb a:hover {
  color: #555;
  text-decoration: underline;
}
.breadcrumb-text-wrap .breadcrumb .breadcrumb__sep {
  color: #ccc;
}

/* スクリーンリーダー専用（SEO用非表示H1） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ページタイトルバー内のパンくず（明示的上書き） */
.site-main__page-title {
  background: linear-gradient(135deg, #4272cc 0%, #355a9e 100%);
}
.site-main__page-title .title {
  position: relative;
  padding-left: 16px;
}
.site-main__page-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.35) 100%);
  border-radius: 2px;
}
.site-main__page-title .title__en {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 4px;
}
.site-main__page-title .title__ja {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__page-title .title__ja {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__page-title .title__ja {
    font-size: 28px;
  }
}
