@charset "UTF-8";
/* メディアクエリ
==================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
button,
textarea,
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  color: inherit;
  font-size: 16px;
  font-family: inherit;
}

label {
  cursor: pointer;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  min-height: 100vh;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  color: #3B0000;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: clip;
}

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

a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ------ 旧62.5%のscss ----- */
.inner {
  z-index: 5;
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.bg-black {
  background: #3B0000;
  color: #FFF;
}

.bg-gray {
  background: #e2e2e2;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0.01em;
}
.btn .--arrow {
  position: relative;
}
.btn .--arrow svg {
  z-index: 1;
  position: relative;
  width: 3.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn .--arrow::after {
  position: absolute;
  top: 55%;
  left: 53%;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid #9C1218;
  border-radius: 50%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn .--arrow.--return::after {
  right: 50%;
  left: initial;
}
.btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
/* ハンバーガーメニュー */
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
.hamburger {
  display: block;
  z-index: 1000;
  position: relative;
  width: 41px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}

/*ボタン内側*/
.hamburger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #3B0000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
  right: 0;
  left: initial;
  width: 75.6097560976%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span {
  top: 50%;
  left: 50%;
  width: 25px;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-145deg);
          transform: translate(-50%, -50%) rotate(-145deg);
}

.hamburger.active span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(145deg);
          transform: translate(-50%, -50%) rotate(145deg);
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(145deg);
          transform: translate(-50%, -50%) rotate(145deg);
}

.pankuz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -30px;
  padding: 15px 0;
}

.pankuz.--top {
  margin-top: initial;
}

.pankuz__arrow {
  display: inline-block;
  position: relative;
  width: 4px;
  height: 6px;
}

.pankuz__arrow::after {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/arrow_pankuz.webp) no-repeat center center/contain;
  content: "";
}

.pankuz__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
}

.pattern__left,
.pattern__right,
.pattern__right-bottom,
.pattern__right-top {
  position: relative;
}

.pattern__left::after {
  position: absolute;
  top: -100px;
  left: 0;
  aspect-ratio: 478/692;
  width: 40vw;
  background: url(../img/pattern_left.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.pattern__right::before {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 560/692;
  width: 40vw;
  background: url(../img/pattern_right.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.pattern__right-bottom::before {
  position: absolute;
  right: 0;
  bottom: -100px;
  aspect-ratio: 560/692;
  width: 40vw;
  background: url(../img/pattern_right.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.pattern__right-top::before {
  position: absolute;
  top: -100px;
  right: 0;
  aspect-ratio: 445/692;
  width: 40vw;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.section__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-top: 16px;
}
.section__title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #9C1218), color-stop(66%, #3B0000));
  background: linear-gradient(to right, #9C1218 66%, #3B0000 66%);
  content: "";
}

.section__title.--white {
  color: #FFF;
}
.section__title.--white::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #9C1218), color-stop(66%, #FFF));
  background: linear-gradient(to right, #9C1218 66%, #FFF 66%);
}

.section__jp {
  font-weight: 700;
  font-size: 26px;
}

.section__en {
  font-weight: 400;
  font-size: 14px;
  font-family: "Zen Antique Soft", serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__title-lower {
  position: relative;
  padding-top: 10px;
  font-weight: 700;
  font-size: 24px;
}
.section__title-lower::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #9C1218), color-stop(66%, #3B0000));
  background: linear-gradient(to right, #9C1218 66%, #3B0000 66%);
  content: "";
}

.section__title-lower.--white {
  color: #FFF;
}
.section__title-lower.--white::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #9C1218), color-stop(66%, #FFF));
  background: linear-gradient(to right, #9C1218 66%, #FFF 66%);
}

.section__title-lower.--center {
  text-align: center;
}
.section__title-lower.--center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.text {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.text-14 {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}

.text-16 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.text-18 {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.text__bold {
  font-weight: 700;
}

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

.text__head {
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.text__head.--mini {
  font-size: 2rem;
}

.about-top {
  padding: 100px 0 50px;
  letter-spacing: 0.05em;
}

.about-top__titles {
  display: grid;
  position: relative;
  padding-top: 30px;
  gap: 20px;
}
.about-top__titles::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #9C1218), color-stop(66%, #3B0000));
  background: linear-gradient(to right, #9C1218 66%, #3B0000 66%);
  content: "";
}

.about-top__title {
  font-weight: 700;
  font-size: 24px;
}

.about-top__text {
  margin-top: 30px;
}

.about-bottom {
  padding: 50px 0;
  background: url(../img/about_bottom.webp) no-repeat center center/cover;
  color: #FFF;
  letter-spacing: 0.05em;
  text-align: center;
}

.about-bottom__title {
  font-size: 20px;
  font-family: "Zen Antique Soft", serif;
}

.about-bottom__text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
}

.access-top {
  position: relative;
  padding: 40px 0 50px;
  letter-spacing: 0.05em;
}

.access-top::before {
  position: absolute;
  right: 0;
  bottom: -100px;
  aspect-ratio: 445/692;
  width: 40vw;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.access-top__copy {
  text-align: left;
}

.access {
  padding: 50px 0;
}

.access__map {
  margin-top: 30px;
}
.access__map iframe {
  width: 100%;
  height: 100%;
}

.access__items {
  letter-spacing: 0.05em;
}

.access__item {
  display: grid;
  position: relative;
  padding: 30px 0;
  gap: 10px;
  border-bottom: 1px solid #ecdfdf;
}
.access__item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #9C1218;
  content: "";
}

.access__label {
  font-size: 16px;
  line-height: 2;
}

.access__value {
  font-size: 14px;
  line-height: 1.6;
}

.access__ways {
  display: grid;
  margin-top: 40px;
  gap: 30px;
}

.access__way {
  display: grid;
  gap: 15px;
}

.access__title {
  position: relative;
  padding-left: 40px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.access__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_way01.webp) no-repeat center center/contain;
  content: "";
}

.access__way:nth-child(2) .access__title::before {
  width: 23px;
  height: 28px;
  background: url(../img/icon_way02.webp) no-repeat center center/contain;
}

.access__way .text-16 {
  padding-left: 40px;
}
.access__way .text-16 span {
  color: #ff0000;
}

.anchor__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 20px;
}

.anchor__btns.--case {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.anchor__btn {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.anchor__btn a,
.anchor__btn button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
.anchor__btn .--arrow {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #3B0000;
  border-radius: 50px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.anchor__btn .--arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.archive__page {
  background: #F5F5F5;
}

.archive__section {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.archive__wrapper {
  display: grid;
  gap: 60px;
}

.archive__items {
  display: grid;
  gap: 30px;
}

.archive__item a {
  display: grid;
  gap: 13px;
}

.archive__image {
  aspect-ratio: 350/227;
}
.archive__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.archive__time {
  color: #575656;
  font-weight: 500;
  font-size: 12px;
}

.archive__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.archive__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 26px;
  padding: 2px 16px;
  border: 1px solid #9C1218;
  border-radius: 4px;
  background: #F5E7E8;
  color: #9C1218;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}

.archive__title {
  display: -webkit-box;
  overflow: hidden;
  color: #575656;
  font-weight: 700;
  font-size: 16px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
}

.archive__date {
  letter-spacing: 0.05em;
}

.bottom-link {
  z-index: 1;
  position: relative;
  padding: 40px 0;
  background: #E2E2E2;
}

.bottom-link__links {
  display: grid;
  width: 85%;
  margin-inline: auto;
  gap: 20px;
}

.bottom-link__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 75px;
  padding: 14px 16px 16px 13px;
  border-radius: 4px;
  background: #FFF;
  text-align: center;
}
.bottom-link__link .--arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #3B0000;
  border-radius: 50%;
  color: #3B0000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.bottom-link__link .--arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.bottom-link__name {
  letter-spacing: 0.075em;
}

.bottom-link__en {
  font-size: 12px;
  font-family: "Zen Antique Soft", serif;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.bottom-link__jp {
  font-weight: 700;
  font-size: 16px;
}

.brand {
  position: relative;
  padding: 50px 0;
  background: #F5F5F5;
  letter-spacing: 0.05em;
}
.brand::before {
  top: initial;
  bottom: -100px;
}

.brand__text {
  margin-top: 20px;
}

.brand__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 50px 15px;
}

.brand__item {
  position: relative;
  text-align: center;
}

.brand__icon {
  aspect-ratio: 1/1;
}

.brand__name {
  position: absolute;
  top: 101%;
  left: 50%;
  width: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: -0.04em;
}

.brand__text.--bottom {
  margin-top: 50px;
}

/* 車両画像スライダーのスタイル */
.car__images {
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
  background: #9C1218;
}

/* メインスライダー */
.main-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-swiper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f9fa;
  text-align: center;
}

.main-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* サムネイルエリア（Swiperを使わずグリッド表示） */
.thumbs-swiper {
  position: relative;
  width: 100%;
  padding: 15px;
}

/* グリッドレイアウト */
.thumbs-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.thumbs-swiper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 106/68;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumbs-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.thumbnail-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
  gap: 30px;
}

.thumbnail__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
  color: #9C1218;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.thumbnail__btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.thumbnail__btn.--prev svg {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.thumbnail-nav-btn:disabled {
  -webkit-transform: none;
          transform: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.thumbnail-nav-btn.is-hidden {
  display: none;
}

.car__page {
  background: #F5F5F5;
}

.car {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.car__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3846153846;
}

.car__prices {
  display: grid;
  position: relative;
  width: 80%;
  margin-top: 30px;
  margin-inline: auto;
  gap: 10px;
}
.car__prices .car__price.--full {
  border-top: 1px solid #ecdfdf;
  border-bottom: 1px solid #ecdfdf;
}

.car__prices .car__price.--full.--sold .value {
  color: #ff0000;
  font-size: 30px;
  text-transform: uppercase;
}

.car__price {
  padding: 15px 0;
  text-align: center;
}

.car__price .label {
  font-weight: 700;
  font-size: 14px;
}
.car__price .value {
  font-size: 32px;
}
.car__price .value span {
  margin-left: 5px;
  font-size: 14px;
}

.car__description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.8;
}

.car__lists {
  display: grid;
  width: 80%;
  margin-top: 30px;
  margin-inline: auto;
  gap: 20px;
}

.car__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  place-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80px;
  gap: 10px;
  border-top: 3px solid #9C1218;
  background: #FFF;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.car__list span {
  font-size: 14px;
}
.car__list span .--small {
  font-size: 12px;
}
.car__youtube {
  aspect-ratio: 1000/520;
  width: 100%;
  margin-top: 40px;
}
.car__youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car__wrapper {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.car__wrap {
  background: #FFF;
}

.car__head {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding-left: 15px;
  background: #9C1218;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
}

.car__info {
  display: grid;
  padding: 30px 15px;
  gap: 12px;
}

.car__info-item {
  display: grid;
  grid-template-columns: 45% 55%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 14px;
}

.car__info-term {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  padding: 10px;
  background: #3B0000;
  color: #FFF;
  font-size: 12px;
}

.car__info-desc {
  line-height: 1.75;
}

.car__comment {
  display: grid;
  margin-top: 40px;
  gap: 20px;
}

.car__staff {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  width: 110px;
  margin-inline: auto;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  color: #FFF;
  font-size: 14px;
  line-height: 1.7777777778;
  letter-spacing: 0.075em;
  text-align: center;
}

.company {
  padding-bottom: 50px;
}

.company__content {
  padding-top: 50px;
}

.company__title {
  text-align: left;
}

.company__items {
  margin-top: 50px;
  letter-spacing: 0.05em;
}

.company__item {
  display: grid;
  padding: 30px 0;
  gap: 10px;
  border-bottom: 1px solid #ecdfdf;
}

.company__item:first-child {
  padding-top: initial;
}

.company__label {
  font-size: 16px;
  line-height: 2;
}

.company__value {
  font-size: 14px;
  line-height: 1.6;
}

.company__map {
  height: 32rem;
  margin-top: 20px;
}
.company__map iframe {
  width: 100%;
  height: 100%;
}

.company__link {
  margin-top: 20px;
  text-align: right;
}
.company__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

.cta {
  position: relative;
  padding: 50px 0;
  background: url(../img/bg_cta.webp) no-repeat center center/cover;
}
.cta::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.61);
  content: "";
}

.cta__attention {
  margin-top: 30px;
  color: #FFF;
}

.cta__wrap {
  display: grid;
  place-items: center;
  min-height: 310px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.cta__container {
  display: grid;
  position: relative;
  gap: 50px 0;
}

.cta__container::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #3B0000;
  content: "";
}

.cta__title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.cta__title.--tel span {
  position: relative;
  padding-left: 30px;
}

.cta__title.--tel span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/cta_icon_tel.webp) no-repeat;
  background-size: contain;
  content: "";
}

.cta__tel {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.cta__tel span {
  margin-left: 8px;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0;
}

.cta__time {
  margin-top: 10px;
  text-align: right;
}

.cta__links {
  display: grid;
  gap: 20px;
}

.cta__link {
  font-family: "Montserrat", sans-serif;
}

.cta__title.--mail span,
.cta__title.--line span {
  position: relative;
  padding-left: 40px;
}

.cta__title.--line span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/cta_icon_line.webp) no-repeat;
  background-size: contain;
  content: "";
}

.cta__title.--mail span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/cta_icon_mail.webp) no-repeat;
  background-size: contain;
  content: "";
}

.cta__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
}
.cta__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 250px;
  min-height: 50px;
  padding-right: 15px;
  gap: 10px;
  border: 1px solid #06C755;
  border-radius: calc(infinity * 1px);
  background: #06C755;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.cta__btn .--arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.cta__btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #06C755;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.custom {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.custom__top {
  margin-top: 20px;
}

.custom__items {
  display: grid;
  margin-top: 40px;
  gap: 30px;
}

.custom__item {
  position: relative;
  padding-top: 30px;
}

.custom__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.custom__content {
  position: relative;
  padding: 20px;
  background: #e2e2e2;
}

.custom__title {
  font-weight: 700;
  font-size: 18px;
}

.custom__text {
  margin-top: 10px;
}

.detail {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.detail__wrapper {
  display: grid;
  gap: 60px;
}

.detail__title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.detail__content {
  padding-bottom: 50px;
  border-bottom: 1px solid #ecdfdf;
}
.detail__content .detail__thumbnail {
  aspect-ratio: 728/472;
  margin-top: 15px;
}
.detail__content .detail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__content .wp-block-image {
  margin-top: 30px;
}
.detail__content p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
}
.detail__content h3 {
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid #9C1218;
  font-weight: 700;
  font-size: 16px;
}

.detail__content.--case {
  border-bottom: initial;
}
.detail__content.--case h3 {
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid #9C1218;
  font-weight: 700;
  font-size: 16px;
}

.detail__return {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 60px;
  padding-left: 1em;
}

.detail__return.--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.document {
  padding: 50px 0;
  background: #F5F5F5;
  letter-spacing: 0.05em;
}

.document__top {
  margin-top: 20px;
}

.document__wrap {
  margin-top: 30px;
}

.document__label {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 45px;
  margin-inline: auto;
  padding: 2px 20px;
  background: #3B0000;
  color: #FFF;
}

.document__items {
  display: grid;
  margin-top: 30px;
  gap: 30px;
}

.document__item {
  padding: 20px 10px;
  border-left: 3px solid #9C1218;
  background: #FFF;
}

.document__title {
  font-weight: 700;
  font-size: 18px;
}

.document__container {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-columns: 30.8008213552% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  gap: 15px;
}

.document__image {
  aspect-ratio: 1/1;
}
.document__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.document__content {
  font-size: 14px;
  line-height: 2;
}
.document__content span {
  font-size: 12px;
}

.document__bottom {
  margin-top: 30px;
}

.dressup {
  padding: 50px 0;
  background: #a09485;
  color: #FFF;
}
.dressup .painting__image {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.dressup .sales__copy {
  color: #FFF;
}
.dressup .sales__en {
  color: #FFF;
}
.dressup .sales__en::before {
  background: #FFF;
}

.facility {
  padding: 50px 0;
}

.facility__top {
  margin-top: 10px;
}

.facility__items {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.facility__item {
  position: relative;
  padding: 30px 20px 30px 50px;
  background: url(../img/point01.webp) no-repeat center center/cover;
}

.facility__item:nth-child(2) {
  background: url(../img/point02.webp) no-repeat center center/cover;
}

.facility__item:nth-child(3) {
  background: url(../img/point03.webp) no-repeat center center/cover;
}

.facility__label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
  line-height: 1;
  font-family: "Zen Antique Soft", serif;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.facility__text {
  width: 100%;
  max-width: 900px;
}

.fade,
.fade-delay {
  /*追加*/
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade.is-active,
.fade-delay.fade.is-active {
  visibility: visible;
  /*元の位置に戻す*/
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /*要素を表示させる*/
  opacity: 1;
}

.load {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.loaded .load {
  opacity: 1;
}

.feature {
  padding: 100px 0 50px;
  letter-spacing: 0.05em;
}

.feature__items {
  display: grid;
  margin-top: 40px;
  padding: 0 15px;
  gap: 50px;
}

.feature__item {
  display: grid;
  gap: 15px;
}

.feature__image {
  aspect-ratio: 700/440;
}
.feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__content {
  display: grid;
  gap: 20px;
}

.feature__title {
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}
.feature__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(33%, #3B0000), color-stop(33%, #9C1218));
  background: linear-gradient(to right, #3B0000 33%, #9C1218 33%);
  content: "";
}

.feature__box {
  padding: 20px;
  background: #e2e2e2;
}

/* ソート機能のスタイル */
.stock-filter {
  max-width: 1000px;
  margin-inline: auto;
  padding: 30px 20px;
  background: #9C1218;
}

.filter__items {
  display: grid;
  gap: 20px;
}

.filter-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.filter-item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  min-height: 37px;
  padding: 10px 20px;
  border-top: initial;
  border-radius: initial;
  background-image: url(../img/arrow_select.webp);
  background-position: right 11px center;
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-color: white;
  font-size: 16px;
  line-height: 2;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.filter-item select:focus {
  border-color: #007cba;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.clear-btn {
  height: 50px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background-color: #dc3545;
  color: white;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.clear-btn:hover {
  background-color: #c82333;
}

.search-results {
  margin-bottom: 20px;
  padding: 10px 0;
  text-align: right;
}

#results-count {
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

/* ローディング状態 */
.topStock__items.loading {
  position: relative;
  opacity: 0.6;
  pointer-events: none;
}

.topStock__items.loading::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007cba;
  border-radius: 50%;
  content: "";
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 検索結果なしのスタイル */
.no-results {
  margin: 20px 0;
  padding: 40px 20px;
  border-radius: 8px;
  background-color: #f8f9fa;
  color: #666;
  font-size: 18px;
  text-align: center;
}

/* レスポンシブ対応 */
.flow {
  position: relative;
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.flow::before {
  position: absolute;
  top: -100px;
  left: 0;
  aspect-ratio: 496/692;
  width: 40vw;
  background: url(../img/pattern_left_496.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.flow.--repair::before,
.flow.--custom::before,
.flow.--buy::before {
  top: -100px;
  right: 0;
  left: initial;
  width: 40vw;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
}

.flow__items {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.flow__item {
  display: grid;
  position: relative;
  grid-template-columns: 20% 1fr;
}
.flow__item::after {
  position: absolute;
  top: 100%;
  left: 60%;
  width: 30px;
  height: 11px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/arrow_flow.webp) no-repeat center center/contain;
  content: "";
}

.flow__item:last-child::after {
  display: none;
}

.flow__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-family: "Zen Antique Soft", serif;
  text-align: center;
}
.flow__label span {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.flow__container {
  display: grid;
  gap: 15px;
}

.flow__image img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow_content {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid #ecdfdf;
}

.flow__title {
  font-weight: 700;
  font-size: 18px;
}

.flow__text {
  margin-top: 10px;
}

.flow.bg-gray .flow_content {
  border-bottom: 1px solid #dbcece;
}

.footer {
  padding-top: 50px;
}

.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.footer__logo {
  text-align: center;
}

.footer__lists {
  display: grid;
  gap: 16px;
}

.footer__items {
  display: grid;
  gap: 16px;
}

.footer__item {
  font-weight: 700;
  font-size: 14px;
}

.footer__memus {
  display: grid;
  gap: 12px;
}

.footer__menu {
  font-weight: 500;
  font-size: 12px;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid #FFF;
}

.footer__contents {
  display: grid;
  gap: 20px;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.footer__insta {
  width: 40px;
}

.footer__info {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.footer__privacy {
  font-weight: 500;
  font-size: 14px;
}

.footer__text {
  margin-top: 30px;
  padding: 20px;
  background: #FFF;
  color: #3B0000;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.fv {
  z-index: 1;
  position: relative;
  height: 60vh;
  height: calc(100vh - 50px);
  margin-top: 50px;
  color: #FFF;
}

.fv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40.615385%;
  height: 100%;
  background: rgba(156, 18, 24, 0.4);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 14% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 14% 100%, 0% 100%);
}

.fv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 57.076923%;
  height: 100%;
  background: rgba(156, 18, 24, 0.4);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 40% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 40% 100%, 0% 100%);
}

.fv__slider {
  z-index: -1;
  position: relative;
  width: 100vw;
  height: inherit;
}
.fv__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 6.2vw;
  font-family: "Zen Antique Soft", serif;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.fv__content {
  z-index: 1;
  position: absolute;
  top: 70%;
  left: 50%;
  width: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fv__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

.fv__arrow {
  position: relative;
  width: 32px;
  height: 32px;
  margin-top: 20px;
  margin-inline: auto;
  border: 1px solid #9C1218;
  border-radius: 50%;
  background: #9C1218;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fv__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.swiper-pagination.fv__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: absolute;
  top: 80%;
  right: 15px;
  bottom: initial;
  left: initial;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  gap: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.swiper-pagination.fv__pagination .swiper-pagination-bullet {
  margin: initial;
  background: #FFF;
  opacity: 1;
}
.swiper-pagination.fv__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: initial;
  background: #9C1218;
}

.fv__slide {
  position: relative;
}
.fv__slide::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}

.fv__en {
  position: absolute;
  top: 20%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6153846154;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.014em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.fvSub {
  position: relative;
  height: 20rem;
  margin-top: 50px;
}

.fvSub::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40.615385%;
  height: 100%;
  background: rgba(156, 18, 24, 0.4);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 14% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 14% 100%, 0% 100%);
}

.fvSub::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 57.076923%;
  height: 100%;
  background: rgba(156, 18, 24, 0.4);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 40% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 40% 100%, 0% 100%);
}

.fvSub__title {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
}

.fvSub__en {
  font-size: 16px;
  font-family: "Zen Antique Soft", serif;
  letter-spacing: 0.05em;
  text-shadow: -2px 2px 7px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.fvSub__jp {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-shadow: -2px 2px 7px rgba(0, 0, 0, 0.25);
}

.fvSub__image {
  height: 100%;
}
.fvSub__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  padding: 50px 0;
}

.gallery__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  gap: 15px;
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.gallery__item img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* ライトボックススタイル */
.lightbox {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 10px;
  border: none;
  background: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lightbox__close:hover {
  opacity: 0.7;
}

/* アニメーション */
@-webkit-keyframes fadeIn {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* Header */
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 3.125rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: inherit;
  padding-right: 10px;
  padding-left: 10px;
}

.header__logo {
  width: 180px;
}

.header__nav {
  display: none;
  height: inherit;
  margin-left: auto;
}

.header__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: min(3.7vw, 48px);
}

.header__item {
  position: relative;
  height: inherit;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
.header__item a,
.header__item p {
  display: grid;
  place-items: center;
  height: inherit;
}
.header__item::before {
  visibility: hidden;
  position: absolute;
  top: 70%;
  left: 50%;
  width: 7px;
  height: 7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 5px;
  background: #9C1218;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__contact {
  display: none;
}
.header__contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 162px;
  min-height: 40px;
  padding-left: 1em;
  gap: 16px;
  border-radius: calc(infinity * 1px);
  background: #06C755;
  color: #FFF;
  font-weight: 500;
  font-size: 14px;
}
.header__contact .--arrow {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
  color: #06C755;
}
.header__contact .--arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.headerSp {
  visibility: hidden;
  z-index: 120;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100%;
  padding-bottom: 100px;
  overflow: scroll;
  background: #FFF;
  /* これで右に隠す↓↓ */
  opacity: 0;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.headerSp.is-openSP {
  visibility: visible;
  z-index: 999;
  opacity: 1;
}

.headerSp__container {
  display: grid;
  gap: 30px;
}

.headerSp__navs {
  margin-top: 40px;
}

.headerSp__items {
  display: grid;
}

.headerSp__item {
  border-bottom: 1px solid #3B0000;
  font-weight: 700;
  font-size: 16px;
}
.headerSp__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border-bottom: initial;
}

.headerSp__loop {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
}
.headerSp__loop .loop__text {
  line-height: 0.7;
}

.loop {
  z-index: -1;
  position: relative;
}

.loop__texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap; /* 改行させない */
  -webkit-animation: scroll-left 5s linear infinite;
          animation: scroll-left 5s linear infinite;
  pointer-events: none;
  /* パフォーマンス向上のため */
  will-change: transform;
}

.loop__text {
  z-index: -1;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; /* 要素の幅が縮まらないようにする */
  color: #9C1218;
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  line-height: 0.4090909091;
  font-family: "Zen Antique Soft", serif;
  letter-spacing: -0.05em;
  opacity: 0.05;
}

/* キーフレームの設定 */
/* ここでは全体幅の半分（テキスト1個分）だけ左に移動する */
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.maintenance {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.maintenance__top {
  margin-top: 20px;
}

.maintenance__items {
  display: grid;
  margin-top: 40px;
  gap: 30px;
}

.maintenance__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
  gap: 10px;
  background: #e2e2e2;
}

.maintenance__title {
  font-weight: 700;
  font-size: 18px;
}

.maintenance__image {
  margin-top: 5px;
}

.maker__lineups {
  display: grid;
  margin-top: 28px;
  gap: 60px;
  letter-spacing: 0.05em;
}

.maker__lineup {
  display: grid;
  gap: 20px;
}

.maker__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  font-weight: 700;
  font-size: 16px;
}
.maker__label span {
  rotate: 90deg;
}

.maker__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px 10px;
}

.maker__item {
  position: relative;
  text-align: center;
}

.maker__icon {
  aspect-ratio: 1/1;
}

.maker__name {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.maker__bottom {
  margin-top: 30px;
  padding: 20px 38px;
  background: #e2e2e2;
}

.megaMenu__btn {
  position: relative;
  padding-right: 1em;
}

.megaMenu__btn::after {
  position: absolute;
  position: absolute;
  top: 48%;
  right: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #3B0000;
  border-bottom: 2px solid #3B0000;
  content: "";
}

.megaMenu__container {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 276px;
  padding: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 4px;
  background: #FFF;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.megaMenu__container a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.megaMenu__container.is-visible {
  visibility: visible;
  opacity: 1;
}

.megaMenu__item {
  font-size: 14px;
  line-height: 2.5;
}
.megaMenu__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 20px;
  border-radius: 4px;
}

.megaMenu__item:not(:first-child) a {
  border-top: 1px solid #F5F5F5;
}

.megaMenu__item:hover a {
  background: #9C1218;
  color: #FFF;
  opacity: 1;
}

.menu__btn {
  position: relative;
  padding: 15px 0;
}

.menu__btn::before,
.menu__btn::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3B0000;
  content: "";
}

.menu__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu__btn.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.headerSp__item:has(.menu__btn) {
  border-bottom: 1px solid #3B0000;
}

.menu__items {
  display: none;
}

.menu__item a {
  padding: 0 0 5px;
  gap: 4px;
  border: initial;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}
.menu__item .main {
  padding: 10px 0;
}
.menu__item ul {
  padding-left: 0.5em;
}

.menu__item:first-child .main {
  padding-top: initial;
}

.menu__item:last-child .main {
  padding-bottom: 20px;
}

.message {
  padding: 50px 0 50px;
}
.message::before {
  top: 200px;
  right: -55px;
}

.message__container {
  display: grid;
  margin-top: 40px;
  gap: 30px;
}

.message__image {
  text-align: center;
}

.message__name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  margin-left: auto;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.not-found {
  padding: 70px 40px;
  text-align: center;
}

.not-found__title {
  font-size: 24px;
  font-family: "Zen Antique Soft", serif;
}

.not-found__text {
  margin-top: 30px;
  line-height: 2;
}

.not-found__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.other {
  padding: 50px 0;
}

.navigation {
  margin-top: 40px;
  text-align: center;
}

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

.page-numbers {
  display: grid;
  position: relative;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ecdfdf;
  background: #FFF;
  font-weight: 700;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-numbers.current {
  background: #3B0000;
  color: #FFF;
}

.page-numbers.prev::after,
.page-numbers.next::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3B0000;
  border-bottom: 2px solid #3B0000;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-numbers.next::after {
  left: 42%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.page-numbers.prev::after {
  left: 58%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.pay {
  padding: 50px 0;
}

.pay__text {
  margin-top: 20px;
}

.price {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.price__anotation {
  margin-top: 20px;
  color: #ff0000;
}

.privacy {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.privacy__items {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.privacy__item {
  display: grid;
  gap: 10px;
}

.privacy__title {
  font-weight: 700;
  font-size: 20px;
}

.privacy__content {
  display: grid;
  gap: 10px;
}
.privacy__content ol,
.privacy__content ul {
  padding-left: 2em;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}
.privacy__content ol li {
  list-style: decimal;
}
.privacy__content ul li {
  list-style: disc;
}

.pirvacy__bottom {
  margin-top: 30px;
}

.privacy__info {
  padding: 20px;
  background: #e2e2e2;
}

.qa {
  padding-top: 50px;
  padding-bottom: 100px;
  letter-spacing: 0.05em;
}

.qa__content {
  position: relative;
  padding: 50px 0;
}

.qa__content::before {
  position: absolute;
  aspect-ratio: 445/692;
  width: 40vw;
  content: "";
  pointer-events: none;
}

.qa__content:nth-child(odd)::before {
  top: 0;
  right: 0;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
}

.qa__content:nth-child(even)::before {
  top: -30px;
  left: 0;
  background: url(../img/pattern_left_496.webp) no-repeat center center/contain;
}

.qa__title {
  text-align: left;
}

.qa__items {
  display: grid;
  margin-top: 50px;
  gap: 35px;
}

.qa__item {
  line-height: 180%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__question {
  position: relative;
  padding: 20px 15px;
  background: #3B0000;
  color: #FFF;
  cursor: pointer;
}

.qa__answer {
  padding: 28px 15px 28px;
  background: #e2e2e2;
}

.qa__label,
.qa__value {
  display: grid;
  grid-template-columns: 10% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa__question span,
.qa__answer span {
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  font-family: "Zen Antique Soft", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qa__answer.--first {
  display: block;
}

.reason {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.reason__wrapper {
  display: grid;
  margin-top: 40px;
  gap: 55px;
  counter-reset: initiatives-counter;
}

.reason__wrap {
  position: relative;
  counter-increment: initiatives-counter;
}
.reason__wrap::after {
  position: absolute;
  top: -24px;
  left: 10px;
  content: "0" counter(initiatives-counter);
  color: #FFF;
  font-size: 40px;
  line-height: 1;
  font-family: "Zen Antique Soft", serif;
  text-shadow: -2px 2px 7px rgba(0, 0, 0, 0.25);
}

.reason__box {
  position: relative;
  padding: 30px 20px;
  background: #FFF;
  color: #3B0000;
}

.reason__title {
  display: grid;
  padding-bottom: 20px;
  gap: 15px;
  border-bottom: 1px solid #ecdfdf;
}
.reason__title h3 {
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}
.reason__title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(33%, #3B0000), color-stop(33%, #9C1218));
  background: linear-gradient(to right, #3B0000 33%, #9C1218 33%);
  content: "";
}
.reason__title p {
  font-size: 16px;
}

.reason__top {
  margin-top: 20px;
}

.reason__examples {
  display: grid;
  margin-top: 50px;
  gap: 40px;
}

.reason__example {
  padding: 20px 6px;
}

.reason__example:first-child {
  position: relative;
  background: #f5f5f5;
  font-size: 14px;
  line-height: 1.75;
}
.reason__example:first-child::before {
  display: grid;
  position: absolute;
  top: -17.5px;
  left: 0;
  place-items: center;
  width: 87px;
  height: 35px;
  background: #e2e2e2;
  content: "具体例";
  font-weight: 700;
  font-size: 16px;
}
.reason__example:first-child::after {
  position: absolute;
  top: 103%;
  left: 50%;
  width: 16px;
  height: 30px;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  background: url(../img/right_arrow.webp) no-repeat center center/cover;
  content: "";
}

.reason__example:last-child {
  padding: 10px;
  border-top: 2px solid #9b1219;
  background: #e2e2e2;
  line-height: 1.75;
}

.reason__bottoms {
  display: grid;
  margin-top: 30px;
  gap: 30px;
}

.reason__bottom {
  display: grid;
  gap: 10px;
}

.reason__label {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 35px;
  padding: 2px 17px;
  background: #3B0000;
  color: #FFF;
  font-weight: 700;
  font-size: 14px;
}

.reason__label.--gray {
  background: #e2e2e2;
  color: #3B0000;
}

.reason__car {
  margin-top: 50px;
}

.reason__label.--support {
  position: absolute;
  top: -17.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.reason__area {
  position: relative;
  margin-top: 50px;
  padding: 67px 20px 40px;
  border: 1px solid #ecdfdf;
}

.reason__supports {
  display: grid;
}

.reason__support {
  padding: 0 0 20px;
  border-top: 1px solid #ecdfdf;
}

.reason__support-title {
  display: grid;
  z-index: 1;
  position: relative;
  place-items: center;
  width: 72px;
  height: 45px;
  margin-inline: auto;
  background: #9C1218;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
}

.reason__support-image {
  margin-top: -10px;
}

.reason__support-text {
  margin-top: 20px;
}

.reason__lists {
  display: grid;
  margin-top: 30px;
  gap: 30px;
}

.reason__list {
  display: grid;
  place-items: center;
  min-height: 60px;
  padding: 2px 1em;
  border: 1px solid #ecdfdf;
  background: #f5f5f5;
  font-size: 16px;
}

.repair {
  padding-top: 50px;
  padding-bottom: 30px;
  letter-spacing: 0.05em;
}

.repair__top {
  margin-top: 20px;
}

.repair__items {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.repair__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  gap: 15px;
  background: #e2e2e2;
}

.repair__title {
  font-weight: 700;
  font-size: 18px;
}

.repair__circles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.repair__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-feature {
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.serive-feature__items {
  display: grid;
  margin-top: 40px;
  gap: 40px;
}

.service-feature__item {
  display: grid;
  gap: 20px;
}

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

.service-feature__content {
  display: grid;
  gap: 20px;
}

.service-feature__title {
  position: relative;
  padding-bottom: 10px;
}
.service-feature__title p {
  font-size: 14px;
  font-family: "Zen Antique Soft", serif;
}
.service-feature__title h3 {
  margin-top: 5px;
  font-weight: 700;
  font-size: 18px;
}
.service-feature__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(33%, #FFF), color-stop(33%, #9C1218));
  background: linear-gradient(to right, #FFF 33%, #9C1218 33%);
  content: "";
}

.service-top {
  position: relative;
  padding: 40px 0 50px;
  letter-spacing: 0.05em;
}
.service-top .text-center {
  text-align: left;
}

.service-top::before {
  position: absolute;
  right: 0;
  bottom: -100px;
  aspect-ratio: 445/692;
  width: 40vw;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.service-bottom {
  position: relative;
  padding: 50px 0;
  letter-spacing: 0.05em;
}

.service-bottom::before {
  position: absolute;
  top: -100px;
  right: 0;
  aspect-ratio: 445/692;
  width: 40vw;
  background: url(../img/pattern_right_service.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.service-bottom.--care::before {
  position: absolute;
  top: -100px;
  right: initial;
  left: 0;
  aspect-ratio: 445/692;
  width: 40vw;
  background: url(../img/pattern_left.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.service-bottom__top {
  margin-top: 30px;
}

.service-bottom__items {
  display: grid;
  margin-top: 30px;
  gap: 20px;
}

.service-bottom__item {
  display: grid;
  padding: 20px 10px;
  gap: 10px;
  border-top: 3px solid #9C1218;
  background: #FFF;
  color: #3B0000;
  text-align: center;
}

.service-bottom__title {
  font-weight: 700;
  font-size: 16px;
}

.sidebar__container {
  display: grid;
  gap: 30px;
}

.sidebar__title {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 36px;
  padding-left: 0.5em;
  border-bottom: 3px solid #9C1218;
  background: #FFF;
  font-weight: 700;
  font-size: 18px;
}

.sidebar__categories {
  display: grid;
  margin-top: 20px;
  padding-left: 1em;
  gap: 15px;
}

.sidebar__category {
  font-size: 14px;
}
.sidebar__category a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 1em;
}
.sidebar__category a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7.5px;
  height: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3B0000;
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 100%, 0 0);
          clip-path: polygon(100% 50%, 0 100%, 0 0);
}

.sidebar__year {
  padding: 20px 10px;
  border-bottom: 2px solid #ecdfdf;
  cursor: pointer;
}

.sidebar__article {
  position: relative;
  font-size: 14px;
}
.sidebar__article::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  width: 7.5px;
  height: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3B0000;
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__article.is-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.sidebar__accordion {
  display: none;
}

.sidebar__accordion.is-active {
  display: block;
}

.sidebar__months {
  display: grid;
  margin-top: 1rem;
  padding-left: 1rem;
  gap: 1rem;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.stock {
  padding: 50px 0;
}

.topStock__item.stock__item a {
  height: 100%;
  border-color: #ecdfdf;
}

.topStock__items.stock__items {
  border-color: #ecdfdf;
}

.topAbout {
  margin-top: 60px;
}

.topAbout__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
}

.topAccess {
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
  background: #F5F5F5;
}

.topAccess__container {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 15px;
}

.topAccess__content {
  z-index: 1;
  position: relative;
  padding: 20px 15px;
  border-top: 3px solid #9C1218;
  background: #FFF;
}

.topAccess__items {
  display: grid;
  margin-top: 32px;
  gap: 20px;
}

.topAccess__item {
  display: grid;
  grid-template-columns: 75px 1fr;
  font-size: 15px;
}

.topAccess__label {
  font-weight: 700;
}

.topAccess__value {
  font-weight: 400;
}
.topAccess__value span {
  display: block;
  color: #9C1218;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.topBlog {
  padding: 50px 0;
  background: #F5F5F5;
}

.topBlog__items {
  display: grid;
  margin-top: 30px;
  gap: 30px;
}

.topBlog__item a {
  display: grid;
  gap: 20px;
}

.topBlog__image {
  aspect-ratio: 510/331;
}
.topBlog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4.48px;
}

.topBlog__content {
  display: grid;
  gap: 16px;
}

.topBlog__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.topBlog__time {
  color: #575656;
  font-weight: 500;
  font-size: 12px;
}

.topBlog__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.topBlog__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 26px;
  padding: 2px 16px;
  border: 1px solid #9C1218;
  border-radius: 4px;
  background: #F5E7E8;
  color: #9C1218;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}

.topBlog__title {
  display: -webkit-box;
  overflow: hidden;
  color: #575656;
  font-weight: 700;
  font-size: 16px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topBlog__btn {
  margin-top: 30px;
}

.topReason {
  padding: 50px 0;
}
.topReason::after {
  top: -460px;
}

.topReason__copy {
  margin-top: 20px;
}

.topReason__items {
  display: grid;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  gap: 30px 15px;
}

.topReason__item {
  display: grid;
  gap: 32px;
  text-align: center;
}

.topReason__image {
  aspect-ratio: 1/1;
  max-width: 160px;
}

.topReason__content {
  display: grid;
  gap: 10px;
}

.topReason__title {
  font-size: 16px;
}

.topReason__text {
  font-weight: 400;
  line-height: 175%;
}

.topService {
  padding: 50px 0;
}

.topService__items {
  display: grid;
  margin-top: 48px;
  gap: 30px;
}

.topService__item a {
  display: inline-block;
  position: relative;
}

.topService__image {
  position: relative;
}
.topService__image img {
  border-radius: 4px;
}
.topService__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
  content: "";
}

.topService__title {
  position: absolute;
  top: 50%;
  left: 16px;
  padding-bottom: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
  font-weight: 700;
  font-size: 18px;
}
.topService__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(66%, #FFF), color-stop(66%, #9C1218));
  background: linear-gradient(to right, #FFF 66%, #9C1218 66%);
  content: "";
}

.topService__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: #FFF;
}
.topService__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topStock {
  padding: 50px 0;
}
.topStock.ashirai::after {
  top: initial;
  bottom: 0;
}

.topStock__items {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.topStock__items .no-results {
  grid-column: 1/-1;
}

.topStock__item a {
  display: inline-block;
  height: 100%;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

/* 右端の列はボーダー不要 */

.topStock__item.--sold .topStock__image {
  position: relative;
}
.topStock__item.--sold .topStock__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  pointer-events: none;
}
.topStock__item.--sold .topStock__image::before {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "sold out";
  color: #FFF;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topStock__item.--sold .topStock__price {
  grid-template-columns: 40% 1fr;
}
.topStock__item.--sold .topStock__price.--full .topStock__value {
  color: #ff0000;
  text-transform: uppercase;
}

.topStock__image {
  aspect-ratio: 314/220;
}
.topStock__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topStock__content {
  display: grid;
  margin-top: 12px;
  gap: 12px;
}

.topStock__name {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topStock__information {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topStock__prices {
  display: grid;
  gap: 12px;
}

.topStock__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topStock__label {
  font-size: 14px;
}
.topStock__label span {
  font-size: 10px;
}

.topStock__value {
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.02em;
}
.topStock__value span {
  margin-top: -2px;
  margin-left: 5px;
  font-size: 12px;
}
.topStock__value span.--small {
  margin-top: initial;
  margin-left: initial;
  font-size: 16px;
}

.topStock__value.--full {
  color: #F11814;
}
.topStock__value.--full span {
  color: #FFF;
}
.topStock__value.--full span.--small {
  color: #F11814;
}

.topStock__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.topStock__price.--full .topStock__value {
  color: #ff0000;
  text-transform: uppercase;
}
.topStock__price.--full .topStock__value span {
  color: #FFF;
}
.topStock__price.--full .topStock__value span.--small {
  color: #ff0000;
}

.topStock__items.stock__items .topStock__price.--full .topStock__value span {
  color: #3B0000;
}
.topStock__items.stock__items .topStock__price.--full .topStock__value span.--small {
  color: #ff0000;
}

.topVoice {
  padding-bottom: 50px;
  background: #F5F5F5;
}
.topVoice .section__title {
  margin-top: 50px;
}

.topVoice__items {
  margin-top: 40px;
  overflow: visible;
}
.topVoice__items .swiper-slide {
  height: auto;
}

.topVoice__item {
  width: 76.9230769231%;
}
.topVoice__item a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.topVoice__items.--archive {
  display: grid;
  gap: 50px;
}
.topVoice__items.--archive .topVoice__item {
  width: 100%;
}

.topVoice__image {
  aspect-ratio: 600/360;
}
.topVoice__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topVoice__content {
  display: grid;
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 20px;
  gap: 20px;
  border-top: 3px solid #9C1218;
  background: #FFF;
}

.topVoice__title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 700;
  font-size: 18px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topVoice__text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.topVoice__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.topVoice__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 26px;
  padding: 2px 16px;
  border: 1px solid #9C1218;
  border-radius: 4px;
  background: #F5E7E8;
  color: #9C1218;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}

.topVoice__navigation {
  display: none;
}

.topVoice__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
  color: #9C1218;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.topVoice__btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.topVoice__btn:disabled {
  -webkit-transform: none;
          transform: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.topVoice__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.voice {
  padding: 50px 0;
}

.voice__related {
  padding-top: 80px;
  padding-bottom: 50px;
}

.u-desktop {
  display: none;
}

@media (min-width: 768px) {
  .main-swiper {
    aspect-ratio: 628/400;
    width: 59.8095238095%;
  }
}

@media (min-width: 768px) and (max-width: 1240px) {
  .footer__lists {
    zoom: 0.9;
  }
  .header__inner {
    zoom: 0.9;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
  .inner {
    max-width: 1140px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .inner__mini {
    max-width: 1040px;
  }
  .btn {
    font-size: 0.9375rem;
  }
  .hamburger {
    width: 41px;
    height: 20px;
    margin-left: 26px;
  }
  .hamburger.active span {
    width: 41px;
  }
  .pankuz {
    margin-top: -90px;
  }
  .pankuz.--top {
    margin-top: initial;
  }
  .pankuz__items {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 14px;
  }
  .pattern__left::after {
    top: -230px;
    width: 478px;
    height: 692px;
  }
  .pattern__right::before {
    width: 560px;
    height: 692px;
  }
  .pattern__right-bottom::before {
    bottom: -230px;
    width: 560px;
    height: 692px;
  }
  .pattern__right-top::before {
    top: -244px;
    width: 445px;
    height: 692px;
  }
  .section__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 24px;
    gap: 16px;
  }
  .section__title::before {
    width: 60px;
    height: 4px;
  }
  .section__jp {
    font-size: 40px;
  }
  .section__en {
    font-size: 18px;
  }
  .section__title-lower {
    padding-top: 20px;
    font-size: 38px;
  }
  .section__title-lower::before {
    width: 60px;
    height: 4px;
  }
  .text {
    font-size: 15px;
    line-height: 150%;
  }
  .text-16 {
    line-height: 2.25;
  }
  .text-18 {
    line-height: 2.6666666667;
  }
  .text__head {
    font-size: 3.4rem;
  }
  .text__head.--mini {
    font-size: 3.4rem;
  }
  .about-top {
    padding: 200px 0 120px;
  }
  .about-top::before {
    bottom: -130px;
    width: 500px;
  }
  .about-top__titles {
    gap: 40px;
  }
  .about-top__titles::before {
    width: 60px;
    height: 4px;
  }
  .about-top__title {
    font-size: 46px;
  }
  .about-top__text {
    margin-top: 60px;
  }
  .about-bottom {
    padding: 110px 0;
  }
  .about-bottom__title {
    font-size: 32px;
  }
  .about-bottom__text {
    margin-top: 40px;
    font-size: 18px;
    line-height: 2.6666666667;
  }
  .access-top {
    padding: 220px 0 120px;
  }
  .access-top::before {
    bottom: -430px;
    width: 445px;
    height: 692px;
  }
  .access-top__copy {
    text-align: center;
  }
  .access {
    padding: 140px 0;
  }
  .access__map {
    height: 390px;
  }
  .access__items {
    padding: 0 50px;
  }
  .access__item {
    grid-template-columns: 1fr 80%;
    padding-left: 1em;
    gap: initial;
  }
  .access__label {
    font-size: 18px;
  }
  .access__value {
    font-size: 16px;
    line-height: 2.25;
  }
  .access__ways {
    padding: 0 50px;
  }
  .access__title {
    font-size: 18px;
  }
  .anchor__btns {
    gap: 30px 55px;
  }
  .anchor__btn {
    font-size: 18px;
  }
  .anchor__btn .--arrow {
    width: 32px;
    height: 32px;
  }
  .archive__section {
    padding: 70px 0 175px;
  }
  .archive__wrapper {
    grid-template-columns: 66.3636363636% 1fr;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .archive__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }
  .archive__label {
    gap: 13px;
  }
  .archive__time {
    font-size: 14px;
  }
  .archive__title {
    font-size: 17px;
    line-height: 2.1176470588;
  }
  .bottom-link__links {
    width: 80%;
    gap: 30px;
  }
  .bottom-link__link a {
    min-height: 83px;
  }
  .bottom-link__link img {
    width: 50px;
  }
  .bottom-link__en {
    font-size: 14px;
  }
  .bottom-link__jp {
    font-size: 20px;
  }
  .brand {
    padding: 140px 0 180px;
  }
  .brand::before {
    top: initial;
    bottom: -450px;
  }
  .brand__text {
    margin-top: 30px;
  }
  .brand__items {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    -webkit-flex-wrap: initial;
        -ms-flex-wrap: initial;
            flex-wrap: initial;
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-top: 50px;
    gap: 67px 19px;
  }
  .brand__name {
    font-size: 14px;
  }
  .brand__text.--bottom {
    margin-top: 70px;
  }
  .car__images {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-right: 50px;
    padding-bottom: initial;
  }
  .thumbs-swiper {
    width: 39.3%;
    width: 40.1904761905%;
    padding: 13px 42px;
  }
  .thumbs-swiper .swiper-wrapper {
    grid-template-rows: repeat(5, 1fr);
  }
  .thumbnail-navigation {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: initial;
    margin-right: -2.6rem;
    gap: initial;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .thumbnail__btn {
    background: #9C1218;
    color: #F5F5F5;
  }
  .car {
    padding: 11rem 0 13.4rem;
  }
  .car__name {
    font-size: 26px;
  }
  .car__status {
    padding: 0 50px;
  }
  .car__prices {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 76px;
  }
  .car__prices .car__price.--full {
    border-top: initial;
    border-right: 1px solid #ecdfdf;
    border-bottom: initial;
    border-left: 1px solid #ecdfdf;
  }
  .car__prices .car__price.--full.--sold .value {
    font-size: 50px;
  }
  .car__price {
    padding: 30px 0;
  }
  .car__price .label {
    font-size: 16px;
  }
  .car__price .value {
    font-size: 42px;
  }
  .car__price .value span {
    margin-left: 10px;
    font-size: 18px;
  }
  .car__description {
    margin-top: 50px;
    line-height: 2.5714285714;
  }
  .car__lists {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 735px;
    margin-top: 56px;
  }
  .car__list {
    min-height: 114px;
    font-size: 22px;
  }
  .car__list span {
    font-size: 16px;
  }
  .car__youtube {
    margin-top: 100px;
  }
  .car__wrapper {
    margin-top: 100px;
    gap: 68px;
  }
  .car__head {
    min-height: 50px;
    padding-left: 27px;
    font-size: 20px;
  }
  .car__info {
    grid-template-columns: repeat(2, 1fr);
  }
  .car__info-item {
    grid-template-columns: repeat(2, 1fr);
  }
  .car__info-term {
    min-height: 50px;
    padding: 12px;
    font-size: 14px;
  }
  .car__info.--other {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 5px;
  }
  .car__comment {
    grid-template-columns: 173px 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
    gap: 50px;
  }
  .car__staff {
    width: 100%;
    margin-inline: initial;
    font-size: 16px;
    font-size: 20px;
  }
  .car__return.detail__return {
    margin-top: 150px;
  }
  .company {
    padding-bottom: 140px;
  }
  .company::after {
    top: -150px;
    width: 449px;
  }
  .company__content {
    padding-top: 9rem;
  }
  .company__items {
    margin-top: 8rem;
  }
  .company__item {
    grid-template-columns: 1fr 80%;
    padding-left: 1em;
    gap: initial;
  }
  .company__label {
    font-size: 18px;
  }
  .company__value {
    font-size: 16px;
    line-height: 2.25;
  }
  .cta {
    padding: 100px 0;
  }
  .cta__attention {
    margin-top: 40px;
  }
  .cta__wrap {
    margin-top: 48px;
  }
  .cta__container {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 833px;
    margin-inline: auto;
    gap: 0 clamp(0.938rem, -10.521rem + 23.872vi, 8.875rem);
  }
  .cta__container::after {
    width: 1px;
    height: 150px;
  }
  .cta__title {
    font-size: 20px;
  }
  .cta__title.--tel span {
    padding-left: 40px;
  }
  .cta__title.--tel span::after {
    width: 32px;
    height: 32px;
  }
  .cta__tel {
    margin-top: 32px;
    font-size: 18px;
  }
  .cta__tel span {
    font-size: 48px;
  }
  .cta__links {
    gap: 56px;
  }
  .cta__title.--line span::after {
    width: 36px;
    height: 36px;
  }
  .cta__title.--mail span::after {
    width: 32px;
    height: 32px;
  }
  .cta__btn {
    margin-top: 32px;
    font-size: 18px;
  }
  .cta__btn a {
    width: clamp(17.5rem, 12.989rem + 9.398vi, 20.625rem);
    max-width: 330px;
    min-height: 72px;
    gap: clamp(1.25rem, -1.457rem + 5.639vi, 3.125rem);
  }
  .custom {
    padding: 120px 0;
  }
  .custom__items {
    margin-top: 60px;
    gap: 60px;
  }
  .custom__item {
    padding-top: 50px;
  }
  .custom__container {
    display: grid;
    grid-template-columns: 47.3% 62%;
    gap: 62px;
  }
  .custom__content {
    padding: 0 0 0 40px;
    background: initial;
  }
  .custom__content::after {
    z-index: -1;
    position: absolute;
    top: -54px;
    left: 0;
    width: 1050px;
    height: 91%;
    min-height: 250px;
    background: #e2e2e2;
    content: "";
  }
  .custom__title {
    font-size: 20px;
  }
  .custom__text {
    margin-top: 20px;
  }
  .detail {
    padding: 70px 0 175px;
  }
  .detail__wrapper {
    grid-template-columns: 66.3636363636% 1fr;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .detail__title {
    font-size: 24px;
  }
  .detail__content {
    padding-bottom: 80px;
  }
  .detail__content .detail__thumbnail {
    margin-top: 20px;
  }
  .detail__content .wp-block-image {
    margin-top: 40px;
  }
  .detail__content p {
    font-size: 14px;
    line-height: 2.25;
  }
  .detail__content h3 {
    margin-top: 80px;
    font-size: 20px;
    line-height: 1.2;
  }
  .detail__wrap {
    max-width: 1000px;
    margin-inline: auto;
  }
  .detail__content.--case h3 {
    margin-top: 80px;
    font-size: 20px;
    line-height: 1.2;
  }
  .detail__return {
    margin-top: 70px;
  }
  .document {
    padding: 80px 0 120px;
  }
  .document__wrap {
    margin-top: 50px;
  }
  .document__label {
    min-height: 59px;
  }
  .document__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .document__item {
    padding: 30px 10px 30px 30px;
  }
  .document__title {
    font-size: 20px;
  }
  .document__container {
    gap: 35px;
  }
  .document__bottom {
    margin-top: 50px;
  }
  .dressup {
    padding: 15rem 0 14rem;
  }
  .facility {
    padding: 90px 0;
  }
  .facility__items {
    margin-top: 70px;
    gap: 65px;
  }
  .facility__item {
    min-height: 320px;
  }
  .facility__label {
    left: 20px;
    font-size: 34px;
  }
  .facility__text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 81.8181818182%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .feature {
    padding: 200px 0 170px;
  }
  .feature__items {
    margin-top: 80px;
    padding: initial;
    gap: 100px;
  }
  .feature__item {
    grid-template-columns: 53.8461538462% 34.6153846154%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .feature__item:nth-child(even) {
    grid-template-columns: 34.6153846154% 53.8461538462%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .feature__item:nth-child(even) .feature__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .feature__item:nth-child(even) .feature__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .feature__title {
    font-size: 24px;
  }
  .feature__title::before {
    width: 60px;
    height: 4px;
  }
  .stock-filter {
    padding: 33px 60px;
  }
  .filter__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  .filter-item select {
    min-height: 41;
    padding: 10px 30px;
    font-size: 16px;
  }
  .flow {
    padding: 120px 0 260px;
  }
  .flow::before {
    top: -338px;
    width: 496px;
    height: 692px;
  }
  .flow.--repair::before,
  .flow.--custom::before,
  .flow.--buy::before {
    top: -200px;
    width: 445px;
  }
  .flow__items {
    margin-top: 100px;
    padding: 0 50px;
    gap: 55px;
  }
  .flow__item {
    grid-template-columns: 1fr 93%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .flow__item::after {
    left: 50%;
  }
  .flow__container {
    grid-template-columns: 13.9784946237% 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 22px;
  }
  .flow__image img {
    height: auto;
    max-height: initial;
  }
  .flow_content {
    height: 100%;
    padding-bottom: 10px;
  }
  .flow__title {
    font-size: 22px;
  }
  .footer {
    padding-top: 80px;
  }
  .footer__inner {
    gap: 80px;
  }
  .footer__lists {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 800px;
    margin-inline: auto;
    gap: 88px;
    white-space: nowrap;
  }
  .footer__item {
    font-size: 16px;
  }
  .footer__menu {
    font-size: 14px;
  }
  .footer__bottom {
    padding-top: 40px;
  }
  .footer__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 800px;
    margin-inline: auto;
  }
  .footer__content {
    gap: 32px;
  }
  .footer__insta {
    width: 50px;
  }
  .footer__info {
    font-size: 15px;
  }
  .footer__privacy {
    font-size: 15px;
  }
  .footer__text {
    margin-top: 48px;
  }
  .fv {
    height: 100vh;
    height: calc(100vh - 72px);
    margin-top: 72px;
  }
  .fv::before {
    width: 20.6153846154%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 45% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 45% 100%, 0% 100%);
  }
  .fv::after {
    width: 47.0769230769%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
  }
  .fv__title {
    top: 50%;
    font-size: 60px;
    font-size: min(6.2vw, 60px);
    line-height: 1.4;
  }
  .fv__content {
    top: initial;
    bottom: 60px;
    left: 100px;
    width: 353px;
    padding: 0 11.5px;
    -webkit-transform: initial;
            transform: initial;
  }
  .fv__text {
    font-size: 18px;
  }
  .swiper-pagination.fv__pagination {
    top: 50%;
    right: 32px;
  }
  .fv__en {
    top: 50%;
    left: 10px;
  }
  .fvSub {
    height: auto;
    margin-top: 72px;
  }
  .fvSub::before {
    width: 18.4615384615%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
  }
  .fvSub::after {
    width: 44.6153846154%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  }
  .fvSub__title {
    left: 100px;
  }
  .fvSub__en {
    font-size: 18px;
  }
  .fvSub__jp {
    font-size: 40px;
  }
  .gallery {
    padding: 50px 0 140px;
  }
  .gallery__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 20px 24px;
  }
  .header {
    height: 4.5rem;
  }
  .header__inner {
    padding-right: 20px;
    padding-left: 30px;
  }
  .header__logo {
    width: 240px;
  }
  .headerSp {
    padding-bottom: initial;
  }
  .headerSp__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1160px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .headerSp__container {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
  .headerSp__navs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: initial;
    gap: 30px;
    gap: 72px;
  }
  .headerSp__items {
    gap: 20px;
    gap: 15px;
  }
  .headerSp__item {
    border-bottom: initial;
    font-size: 20px;
  }
  .headerSp__item a {
    padding: initial;
  }
  .headerSp__loop {
    display: block;
  }
  .headerSp__loop .loop__texts {
    -webkit-animation: scroll-left 20s linear infinite;
            animation: scroll-left 20s linear infinite;
  }
  .loop__texts {
    -webkit-animation: scroll-left 10s linear infinite;
            animation: scroll-left 10s linear infinite;
  }
  .loop__text {
    font-size: 220px;
  }
  .maintenance {
    padding: 120px 0;
  }
  .maintenance__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 90px;
    gap: 20px;
  }
  .maintenance__item {
    min-height: 382px;
    padding: 30px 20px;
  }
  .maintenance__title {
    font-size: 20px;
  }
  .maintenance__text {
    margin-top: 14px;
  }
  .maintenance__image {
    margin-top: auto;
  }
  .maker__lineup {
    grid-template-columns: 110px 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .maker__label {
    width: 100%;
  }
  .maker__label span {
    rotate: initial;
  }
  .maker__items {
    gap: 60px 19px;
  }
  .maker__bottom {
    font-size: 16px;
    line-height: 2.25;
  }
  .menu__btn {
    padding: initial;
  }
  .menu__btn::before,
  .menu__btn::after {
    display: none;
  }
  .headerSp__item:has(.menu__btn) {
    border-bottom: initial;
  }
  .menu__items {
    display: block;
    margin-top: 16px;
  }
  .menu__item a {
    font-size: 15px;
  }
  .message {
    padding: 270px 0 200px;
  }
  .message__container {
    grid-template-columns: 41.8181818182% 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 60px;
    gap: 50px;
  }
  .message__image {
    text-align: initial;
  }
  .message__name {
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.3;
  }
  .not-found {
    padding: 170px 0;
  }
  .not-found__title {
    font-size: 30px;
  }
  .not-found__text {
    margin-top: 60px;
  }
  .not-found__btn {
    margin-top: 120px;
  }
  .other {
    padding: 90px 0 120px;
  }
  .navigation {
    margin-top: 130px;
  }
  .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .page-numbers.prev::after,
  .page-numbers.next::after {
    width: 12px;
    height: 12px;
  }
  .pay {
    padding: 40px 0 140px;
  }
  .pay::after {
    top: -130px;
  }
  .price {
    padding: 50px 0 220px;
  }
  .price::before {
    top: -565px;
  }
  .price__items.company__items {
    margin-top: 60px;
  }
  .price__items.company__items .company__item {
    grid-template-columns: 1fr 75%;
  }
  .pirce__inner {
    padding: 0 50px;
  }
  .privacy {
    padding: 80px 0 170px;
  }
  .privacy__items {
    margin-top: 70px;
    gap: 50px;
  }
  .privacy__item {
    gap: 20px;
  }
  .privacy__title {
    font-size: 24px;
  }
  .privacy__content {
    gap: 20px;
  }
  .privacy__content ol,
  .privacy__content ul {
    padding-left: 70px;
    line-height: 2.25;
  }
  .pirvacy__bottom {
    margin-top: 50px;
    padding: 0 50px;
  }
  .privacy__info {
    padding: 30px 37px;
  }
  .qa {
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .qa__content {
    padding: 110px 0;
  }
  .qa__content::before {
    width: 445px;
    height: 692px;
  }
  .qa__question {
    padding: 28px 60px 28px 26px;
  }
  .qa__answer {
    padding: 28px 60px 28px 26px;
  }
  .qa__label,
  .qa__value {
    grid-template-columns: 5% 1fr;
  }
  .qa__question span,
  .qa__answer span {
    font-size: 30px;
    line-height: 1.2;
  }
  .reason {
    padding: 90px 0 220px;
  }
  .reason__wrapper {
    margin-top: 80px;
    gap: 170px;
  }
  .reason__wrap::after {
    top: -32px;
    left: 28px;
    font-size: 60px;
  }
  .reason__box {
    z-index: 1;
    width: 90.9090909091%;
    margin-top: -93px;
    margin-inline: auto;
    padding: 40px 50px;
  }
  .reason__title h3 {
    font-size: 24px;
  }
  .reason__title h3::before {
    width: 60px;
    height: 4px;
  }
  .reason__title p {
    font-size: 18px;
  }
  .reason__examples {
    grid-template-columns: 1fr 44.4444444444%;
    margin-top: 60px;
    gap: 36px;
  }
  .reason__example {
    display: grid;
    place-items: center;
    min-height: 140px;
  }
  .reason__example:first-child::after {
    top: 50%;
    left: 103%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 2.1428571429;
  }
  .reason__example:last-child {
    padding: 34px;
    font-size: 16px;
  }
  .reason__bottoms {
    margin-top: 60px;
    gap: 55px;
  }
  .reason__label {
    font-size: 16px;
  }
  .reason__supports {
    grid-template-columns: repeat(3, 1fr);
  }
  .reason__support {
    padding: 0 20px;
  }
  .reason__support:not(:first-child) {
    border-left: 1px solid #ecdfdf;
  }
  .reason__support-title {
    width: 72px;
    height: 72px;
  }
  .reason__support-image {
    margin-top: -20px;
  }
  .reason__lists {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    gap: 29px 34px;
  }
  .reason__list {
    min-height: 70px;
    font-size: 18px;
  }
  .repair {
    padding-top: 120px;
  }
  .repair__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .repair__item {
    padding: 30px 25px;
  }
  .repair__title {
    font-size: 20px;
  }
  .service-feature {
    padding: 90px 0 170px;
  }
  .serive-feature__items {
    margin-top: 90px;
    gap: 90px;
  }
  .service-feature__item {
    grid-template-columns: 54.5454545455% 1fr;
    align-self: center;
    gap: 47px;
  }
  .service-feature__item:nth-child(odd) {
    grid-template-columns: 1fr 54.5454545455%;
  }
  .service-feature__item:nth-child(odd) .service-feature__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .service-feature__item:nth-child(odd) .service-feature__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .service-feature__content {
    gap: 30px;
  }
  .service-feature__title h3 {
    font-size: 20px;
  }
  .service-feature__title::before {
    width: 60px;
    height: 4px;
  }
  .service-top {
    padding: 220px 0 140px;
  }
  .service-top .text-center {
    text-align: center;
  }
  .service-top::before {
    bottom: -430px;
    width: 445px;
    height: 692px;
  }
  .service-bottom {
    padding: 70px 0 170px;
  }
  .service-bottom::before {
    top: -266px;
    width: 445px;
    height: 692px;
  }
  .service-bottom.--care::before {
    top: -266px;
    width: 445px;
    height: 692px;
  }
  .service-bottom__top {
    margin-top: 50px;
  }
  .service-bottom__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    gap: 20px 15px;
  }
  .service-bottom__item {
    min-height: 170px;
    padding: 30px 5px;
  }
  .service-bottom__title {
    font-size: 18px;
  }
  .service-bottom__text {
    font-size: 14px;
  }
  .sidebar__container {
    gap: 50px;
  }
  .sidebar__title {
    min-height: 43px;
    font-size: 20px;
  }
  .sidebar__categories {
    margin-top: 20px;
    gap: 20px;
  }
  .sidebar__category {
    font-size: 16px;
  }
  .sidebar__year {
    padding: 20px 10px;
  }
  .sidebar__article {
    font-size: 16px;
  }
  .stock {
    padding: 75px 0 100px;
  }
  .topStock__items.stock__items {
    margin-top: 90px;
  }
  .topAbout {
    margin-top: 200px;
  }
  .topAbout__text {
    font-size: 16px;
    line-height: 2.625;
    text-align: center;
  }
  .topAccess {
    padding-top: initial;
    padding-bottom: 140px;
  }
  .topAccess__container {
    grid-template-columns: 41.0769230769% 54.0601503759%;
    max-width: 1300px;
    margin-inline: auto;
    padding: initial;
  }
  .topAccess__content {
    min-width: 400px;
    padding: 40px 50px;
  }
  .topAccess__logo {
    width: 220px;
  }
  .topAccess__item {
    gap: 20px;
    font-size: 16px;
  }
  .topAccess__image {
    min-width: 600px;
    margin-left: -54px;
  }
  .topBlog {
    padding: 140px 0;
  }
  .topBlog__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    gap: 20px;
  }
  .topBlog__info {
    gap: 32px;
  }
  .topBlog__time {
    font-size: 15px;
  }
  .topBlog__title {
    font-size: 18px;
  }
  .topBlog__btn {
    margin-top: 80px;
  }
  .topReason {
    padding: 140px 0;
  }
  .topReason__copy {
    margin-top: 40px;
  }
  .topReason__items {
    margin-top: 80px;
    gap: 40px;
    gap: 47.5px;
  }
  .topReason__image {
    max-width: 180px;
  }
  .topReason__title {
    font-size: 20px;
  }
  .topService {
    padding: 140px 0;
  }
  .topService__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .topService__title {
    left: 24px;
    font-size: 26px;
  }
  .topService__title::after {
    width: 60px;
  }
  .topStock {
    padding: 140px 0 120px;
  }
  .topStock__inner {
    max-width: 1180px;
  }
  .topStock__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
  .topStock__item a {
    /* clamp はそのまま */
    padding: clamp(0.938rem, -0.596rem + 3.195vi, 2rem) clamp(0.938rem, -1.318rem + 4.699vi, 2.5rem);
  }
  .topStock__item:nth-child(3n) a {
    border-right: none;
  }
  .topStock__item:nth-child(1n) a {
    border-left: none;
  }
  .topStock__item:nth-child(-n+3) a {
    border-top: none;
  }
  .topStock__item.--sold .topStock__image::before {
    font-size: 30px;
  }
  .topStock__item.--sold .topStock__price.--full .topStock__value {
    font-size: 18px;
  }
  .topStock__name {
    font-size: 18px;
  }
  .topStock__information {
    font-size: 15px;
  }
  .topStock__label {
    font-size: 15px;
  }
  .topStock__label span {
    font-size: 11px;
  }
  .topStock__value {
    font-size: 24px;
  }
  .topStock__value span {
    font-size: 13px;
  }
  .topStock__value span.--small {
    font-size: 18px;
  }
  .topStock__btn {
    margin-top: 80px;
  }
  .topStock__price.--full .topStock__value {
    font-size: 18px;
  }
  .topVoice {
    padding-bottom: 140px;
  }
  .topVoice .section__title {
    margin-top: 100px;
  }
  .topVoice__items {
    margin-top: 80px;
  }
  .topVoice__items.--archive {
    gap: 93px;
  }
  .topVoice__image {
    width: 70%;
    height: 100%;
  }
  .topVoice__content {
    position: absolute;
    top: 50%;
    right: 0;
    width: 51.6%;
    padding: 25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .topVoice__title {
    font-size: 18px;
  }
  .topVoice__title {
    font-size: 20px;
  }
  .topVoice__text {
    -webkit-line-clamp: 2;
  }
  .topVoice__navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 120%;
    top: calc(100% + 100px);
    right: 100px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
  .topVoice__btn {
    background: #9C1218;
    color: #F5F5F5;
  }
  .topVoice__more {
    margin-top: 100px;
  }
  .voice {
    padding: 90px 0 190px;
  }
  .voice__related {
    padding-bottom: 250px;
  }
  .u-mobile {
    display: none;
  }
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .brand::after {
    top: -300px;
  }
}

@media (920px <= width) {
  .header__nav {
    display: block;
  }
  .header__contact {
    display: block;
    margin-left: 24px;
  }
}

@media screen and (min-width: 1100px) {
  .text-16 {
    font-size: 16px;
  }
  .text-18 {
    font-size: 18px;
  }
  .archive__wrapper {
    gap: 60px;
  }
  .bottom-link__links {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: min(5.5vw, 67px);
  }
  .brand__items {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .brand__name {
    white-space: nowrap;
  }
  .car__price .label {
    font-size: 18px;
  }
  .car__price .value {
    font-size: 50px;
  }
  .car__info {
    padding: 35px 28px;
  }
  .car__info-item {
    font-size: 16px;
  }
  .car__info-term {
    min-height: 57px;
    padding: 17px;
    font-size: 16px;
  }
  .custom__image {
    margin-right: calc(50% - 50vw);
  }
  .detail__wrapper {
    gap: 60px;
  }
  .detail__content p {
    margin-top: 50px;
    font-size: 16px;
  }
  .document__items {
    gap: 40px;
  }
  .document__content {
    font-size: 16px;
    line-height: 2.25;
  }
  .filter__items {
    gap: 109px;
  }
  .fv__en {
    left: 31px;
  }
  .headerSp__container {
    grid-template-columns: 1fr 50%;
    gap: 72px;
  }
  .headerSp__navs {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .maintenance__items {
    gap: 38px;
  }
  .maintenance__item {
    padding: 30px 30px 40px;
  }
  .privacy__content ol,
  .privacy__content ul {
    font-size: 16px;
  }
  .repair__items {
    gap: 37px 38px;
  }
  .repair__circles {
    gap: 20px;
  }
  .repair__images {
    gap: 29px;
  }
  .service-bottom__items {
    padding: 30px 24px;
  }
  .service-bottom__item {
    padding: 30px 10px;
  }
  .service-bottom__text {
    font-size: 16px;
  }
  .topAccess__item {
    gap: 40px;
    font-size: 18px;
  }
  .topBlog__items {
    gap: 80px;
  }
  .topReason__items {
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
  }
  .topStock__item.--sold .topStock__price.--full .topStock__value {
    font-size: 22px;
  }
  .topStock__name {
    font-size: 20px;
  }
  .topStock__price.--full .topStock__value {
    font-size: 22px;
  }
  .topVoice__image {
    width: 60%;
  }
  .topVoice__content {
    padding: 48px;
  }
  .topVoice__text {
    -webkit-line-clamp: 4;
  }
}

@media (width < 920px) {
  .hamburger {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .filter-item {
    min-width: 100%;
  }
  .clear-btn {
    width: 100%;
    margin-top: 10px;
  }
  .search-results {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .thumbnail-nav-btn.is-hidden {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .btn a:hover {
    opacity: 1;
  }
  .btn a:hover .--arrow svg {
    width: 1.875rem;
  }
  .btn a:hover .--arrow::after {
    left: 45%;
    width: 2rem;
    height: 2rem;
    background: #9C1218;
  }
  .btn a:hover .--arrow.--return::after {
    right: 45%;
    left: initial;
  }
  .anchor__btn:hover a,
  .anchor__btn:hover button {
    opacity: 1;
  }
  .anchor__btn:hover a .--arrow,
  .anchor__btn:hover button .--arrow {
    background: #9C1218;
    color: #FFF;
  }
  .bottom-link__link:hover a {
    opacity: 1;
  }
  .bottom-link__link:hover .--arrow {
    border-color: #9C1218;
    background: #9C1218;
  }
  .bottom-link__link:hover svg {
    color: #F5F5F5;
  }
  .thumbs-swiper .swiper-slide:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.8;
  }
  .thumbnail-nav-btn:hover {
    border: 1px solid #9C1218;
    background: #F5F5F5;
    color: #9C1218;
  }
  .cta__btn:hover a {
    background: #F5F5F5;
    color: #06C755;
    opacity: 1;
  }
  .cta__btn:hover .--arrow {
    background: #06C755;
  }
  .cta__btn:hover svg {
    color: #FFF;
  }
  .fv__content a:hover {
    opacity: 1;
  }
  .fv__content a:hover .fv__arrow {
    background: transparent;
    color: #9C1218;
  }
  .gallery__item:hover {
    cursor: pointer;
  }
  .header__item:hover::before {
    visibility: visible;
    opacity: 1;
  }
  .header__contact a:hover {
    background: #049B42;
    opacity: 1;
  }
  .header__contact a:hover .--arrow {
    color: #049B42;
  }
  .page-numbers:hover {
    background: #3B0000;
    color: #FFF;
    opacity: 1;
  }
  .page-numbers.prev:hover::after,
  .page-numbers.next:hover::after {
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
  }
  .topVoice__btn:hover {
    border: 1px solid #9C1218;
    background: #F5F5F5;
    color: #9C1218;
  }
}
/*# sourceMappingURL=map/styles.css.map */