@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: #101010;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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;
}

.inner {
  z-index: 5;
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.btn {
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
}
.btn span {
  padding-right: 1em;
}

.btn a {
  display: grid;
  position: relative;
  place-items: center;
  width: 75%;
  max-width: 330px;
  min-height: 5.1rem;
  margin-inline: auto;
  padding: 0.5em 1rem;
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fcbe31), color-stop(51%, #f47e34), to(#fcbe31));
  background-image: linear-gradient(to right, #fcbe31 0%, #f47e34 51%, #fcbe31 100%);
  background-size: 200% auto;
  -webkit-box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
          box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn a::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_btn.webp) no-repeat center center/contain;
  content: "";
}

/* ハンバーガーメニュー */
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
.hamburger {
  display: block;
  z-index: 1000;
  position: fixed;
  position: fixed;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: #101010;
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  cursor: pointer;
}

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

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

.hamburger span:nth-of-type(2) {
  top: 55%;
}

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

.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);
}

.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;
  min-height: 5rem;
  padding: 0.5em 0;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

.pankuz.--brown {
  background: #a09485;
  color: #FFF;
}

.pankuz__arrow {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 10px;
}

.pankuz.--brown .pankuz__arrow::after {
  background: #FFF;
}

.pankuz__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #f37335;
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.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;
  font-size: 1.4rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.pankuz a {
  margin-right: 0.5rem;
}

.post {
  margin-left: 0.5rem;
}

.pankuz .current-item,
.post-stock-car-archive {
  margin-left: 0.5rem;
}

section.--brown {
  background: #a09485;
  color: #FFF;
}
section.--brown .sales__en {
  color: #FFF;
}
section.--brown .sales__en::before {
  background: #FFF;
}
section.--brown .sales__copy {
  color: #FFF;
}

.section__title {
  position: relative;
  color: #333333;
}

.section__jp {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.section__jp.--back {
  background: #f0f0f0;
  line-height: 1.2;
}

.section__en {
  color: #f0f0f0;
  font-style: italic;
  font-weight: 300;
  font-size: 6rem;
  line-height: 100%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section__en::first-letter {
  color: #ffd8c5;
}

.section__top {
  padding: 50px 0;
}

.text {
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.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;
}

.agency {
  margin-top: 50px;
  padding: 3rem 1.5rem;
  border: 1px solid #1e8ccd;
  background: url(../img/company_image.webp) no-repeat bottom right/contain;
}

.agency__title {
  gap: 12px;
  font-weight: 700;
  font-size: 2rem;
}
.agency__title img {
  width: 18rem;
}

.agency__text {
  -webkit-text-stroke: 4px #FFF;
  margin-top: 1.5rem;
  text-stroke: 4px #FFF;
  paint-order: stroke;
}

.anchor__btns {
  display: grid;
  gap: 2rem;
}

.anchor__btn a {
  display: grid;
  position: relative;
  place-items: center;
  max-width: 300px;
  min-height: 5.5rem;
  margin-inline: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#fcbe31), color-stop(51%, #f47e34), to(#fcbe31));
  background-image: linear-gradient(to right, #fcbe31 0%, #f47e34 51%, #fcbe31 100%);
  background-size: 200% auto;
  -webkit-box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
          box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}
.anchor__btn a::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 9px;
  height: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/arrow_tab.webp) no-repeat center center/cover;
  content: "";
}

.anchor__btn.--qa a {
  line-height: 1;
}

.anitibacerial-feature .purchase-feature__image {
  -webkit-box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5); /* 横、縦、ぼかし半径、色 */
}

.antibacterial__container {
  padding-top: 50px;
}

.antibacterial__feature {
  margin-top: 50px;
}

.archive__section {
  padding: 50px 0;
}

.archive__wrapper {
  display: grid;
  gap: 5rem;
}

.archive__items {
  display: grid;
  gap: 3.5rem;
}

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

.archive__content {
  margin-top: 2rem;
  font-weight: 700;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.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: 2rem;
  font-size: 1.3rem;
  line-height: 1.2307692308;
}

.archive__date {
  letter-spacing: 0.05em;
}

.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: 1rem;
}

.archive__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.4rem;
  padding: 0.2em 1em;
  border: 1px solid #ccc;
  border-radius: calc(infinity * 1px);
  color: #f37335;
}

.archive__title {
  margin-top: 1rem;
  font-weight: 700;
}

.ashirai,
.ashirai-left {
  position: relative;
}

.ashirai::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 60rem;
  background: url(../img/ashirai_right.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.ashirai-left::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20rem;
  height: 60rem;
  background: url(../img/ashirai_left.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.ashirai__right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.ashirai__left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.baner {
  display: grid;
  z-index: 10;
  position: fixed;
  right: 10px;
  bottom: 30px;
  gap: 1rem;
}

.baner__item {
  width: 9rem;
}

/* 車両画像スライダーのスタイル */
.car__images {
  position: relative;
  margin-top: 20px;
  padding-bottom: 2rem;
  border-radius: 5px;
  background: #f0f0f0;
}

/* メインスライダー */
.main-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.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: 99/70;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 5px;
  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: 40px;
  height: 40px;
  border: none;
  background: #101010;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumbnail__btn::after {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 43%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

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

.thumbnail-nav-btn:disabled {
  -webkit-transform: none;
          transform: none;
  cursor: not-allowed;
  opacity: 0.5;
}

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

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

.car__name {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.car__prices {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.car__prices:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 110%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ccc;
  content: "";
}

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

.car__price {
  text-align: center;
}
.car__price .label {
  font-weight: 700;
  font-size: 1.4rem;
}
.car__price .value {
  font-size: 3.3rem;
}
.car__price .value span {
  margin-left: 5px;
  font-size: 1.4rem;
}

.car__price.--car .value {
  color: #999;
}

.car__informations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 1rem;
}

.car__information {
  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: 8rem;
  border-radius: 5px;
  background: #333;
  color: #FFF;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}
.car__information span {
  font-size: 1.4rem;
}
.car__comment {
  display: grid;
  grid-template-columns: 30% 1fr;
  margin-top: 40px;
  gap: 2rem;
}

.car__staff {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  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: 1.4rem;
  line-height: 1.7777777778;
  letter-spacing: 0.075em;
  text-align: center;
}

.carePlan {
  padding: 50px 0;
}

.carePlan__container {
  padding: 0 1rem 3rem;
  border: 1px solid #ccc;
}

.carePlan__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -2rem;
  margin-inline: auto;
  padding: 0 2rem;
  background: #FFF;
  font-size: 2.2rem;
}

.carePlan__top {
  margin-top: 2rem;
  text-align: center;
}

.carePlan__items {
  display: grid;
  margin-top: 5rem;
  gap: 5rem;
}

.carePlan__item {
  display: grid;
  gap: 2rem;
}

.carePlan__content {
  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;
}

.carePlan__title {
  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-bottom: 1rem;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  font-size: 1.8rem;
}

.carePlan__text {
  margin-top: 1.5rem;
}

.carePlan__price {
  margin-top: auto;
  margin-top: 3rem;
  text-align: right;
}

.carePlan__image {
  aspect-ratio: 313/200;
  -webkit-box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
          box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
}
.carePlan__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.comapny__top {
  padding: 50px 0;
  background: url(../img/bg_company.webp) no-repeat center center/cover;
}

.company__head {
  color: #f47f34;
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
}

.company__text {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.company__content {
  padding-top: 50px;
}

.company__title {
  text-align: left;
}

.company__items {
  margin-top: 50px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

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

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

.company__label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}

.company__value {
  font-size: 1.4rem;
  line-height: 1.8;
}

.company__value.--service {
  line-height: 2.25;
}

.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;
}

.concept {
  padding: 50px 0;
}

.concept__title {
  display: grid;
  place-items: center;
  min-height: 60px;
  margin-top: 1.5rem;
  background: #333333;
  color: #FFF;
  font-weight: 700;
  font-size: 2.2rem;
}

.cocept__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.concept__image {
  aspect-ratio: 434/287;
}
.concept__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__text {
  margin-top: 3rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

.contactForm {
  padding: 50px 0 70px;
}

.contactForm__text {
  margin-top: 2rem;
  text-align: center;
}
.contactForm__text span {
  color: #9b0000;
}
.contactForm__text.--bold {
  font-weight: 700;
}

.contactForm__container {
  margin-top: 5rem;
}

.contactForm__items {
  display: grid;
  gap: 4.1rem;
}

.contactForm__item {
  display: grid;
  gap: 1rem;
  font-size: 1.6rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.contactForm__labels span {
  color: #ff0000;
  font-weight: 700;
}

.contactForm__answer.--double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contactForm__annotations {
  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;
  margin-top: 1rem;
  gap: 0 2rem;
}
.contactForm__annotations .contactForm__annotation {
  margin-top: initial;
}

.contactForm__annotation {
  margin-top: 1rem;
  color: #878787;
  font-size: 1.2rem;
}

.contactForm__answer.--confirm {
  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%;
  min-height: 5rem;
  padding: 0.5em 0.65rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f0f0f0;
  color: #101010;
}

.contactForm__answer.--double .--confirm {
  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%;
  min-height: 5rem;
  padding: 0.5em 0.65rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f0f0f0;
  color: #101010;
}

.contactForm__answer-inquiry {
  position: relative;
  max-width: 400px;
}

/* これでキッカケのgrid揃える */

.contactForm__agree {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

.contactForm__btns {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
  gap: 2rem;
}

.contactForm__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #FFF;
  text-align: center;
}
.contactForm__btn input {
  display: grid;
  place-items: center;
  width: 20rem;
  min-height: 7rem;
  min-height: 6rem;
  background: #fa963e;
  color: #FFF;
  font-size: 1.6rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.contactForm__btns .contactForm__btn {
  margin-top: initial;
}

.contactForm__btn-return input {
  background: #333333;
}

.contactForm__policy {
  height: 25rem;
  padding: 2rem;
  overflow-y: scroll;
  background: #f0f0f0;
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}
.contactForm__policy span {
  color: #101010;
  font-weight: 700;
  letter-spacing: initial;
}
.contactForm__policy .--head {
  font-size: 2rem;
}
.contactForm__policy .--title {
  font-size: 1.8rem;
}

.contacForm__thanks {
  width: 90%;
  margin-top: 3rem;
  margin-inline: auto;
  font-size: 1.6rem;
}

.contactForm__return {
  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: 5rem;
}
.contactForm__return a {
  display: grid;
  place-items: center;
  width: 20rem;
  min-height: 6rem;
  background: #333;
  color: #FFF;
  font-size: 1.6rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  min-height: 5rem;
  padding: 0.5em 0.65rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #FFFFFF;
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #d9d9d9;
}

::-moz-placeholder {
  color: #d9d9d9;
}

:-ms-input-placeholder {
  color: #d9d9d9;
}

::-ms-input-placeholder {
  color: #d9d9d9;
}

::placeholder {
  color: #d9d9d9;
}

textarea {
  height: 18rem;
}

.wpcf7-list-item {
  margin: initial;
}

/* チェックボックスとラジオボタンここから */
.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
  display: grid;
  gap: 1rem;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 2rem;
  text-align: center;
}

/* チェック前のradioボタン */
.wpcf7-list-item-label::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ccc;
  background: #FFF;
  content: "";
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* 色をじんわり変化させる */
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before,
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  -webkit-box-shadow: inset 0px 0px 0px 2px #FFF;
          box-shadow: inset 0px 0px 0px 2px #FFF; /* 中心の色のスタイル */
}
div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.contact__form-thanks {
  margin-top: 5rem;
}

.contact__form-confirm dd {
  width: 100%;
  padding: 10px;
  padding: 2rem;
  border: #dddddd solid 1px;
  background: #fff;
  color: #101010;
  font-size: 1.6rem;
}

/* プライバシーポリシーのチェック前のcheckbox */
.contactForm__agree input[type=checkbox] + .wpcf7-list-item-label::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ccc;
  border-radius: initial;
  background: #fff;
  content: "";
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* 色をじんわり変化させる */
}

/* プライバシーポリシーのチェック後のcheckbox */
.contactForm__agree input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  -webkit-box-shadow: inset 0px 0px 0px 2px #FFF;
          box-shadow: inset 0px 0px 0px 2px #FFF; /* 中心の色のスタイル */
}

/* チェック後のcheckbox */
/* チェックボックスとラジオボタンここまで */
.car-cta {
  padding: 56px 0 44px;
  background: url(../img/bg_cta_car.webp) no-repeat center center/cover;
}

.car-cta__head {
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.car-cta__container {
  display: grid;
  position: relative;
  margin-top: 4rem;
  gap: 4rem;
}

.car-cta__content {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 18rem;
  background: rgba(255, 255, 255, 0.8);
}
.car-cta__content .cta__title.--mail span {
  padding-left: 2.5em;
}
.car-cta__content .cta__title.--mail span::after {
  left: 10px;
}
.car-cta__content .cta__btn.--mail {
  margin-top: 2rem;
}
.car-cta__content .cta__btn.--mail a {
  margin-left: initial;
}

.cta-sub {
  padding: 50px 0;
  background: #a09485;
  color: #FFF;
}

.cta-sub.--white {
  background: #FFF;
  color: #101010;
}
.cta-sub.--white .cta-sub__btn a {
  -webkit-box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
          box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
}

.cta-sub__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.cta-sub__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: 3rem;
}
.cta-sub__btn a {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.cta-sub__btn.--most a {
  width: 29rem;
}

.cta {
  position: relative;
  padding: 50px 0;
  background: url(../img/bg_cta.webp) no-repeat center center/cover;
}

.cta__head {
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}

.cta__en {
  font-style: italic;
  font-weight: 300;
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.cta__jp {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.cta__attention {
  margin-top: 3rem;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
}

.cta__container {
  display: grid;
  position: relative;
  margin-top: 5rem;
  padding: 2rem;
  gap: 5rem 0;
  background: rgba(255, 255, 255, 0.8);
}

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

.cta__title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.075em;
  text-align: center;
}

.cta__title.--tel span {
  position: relative;
  padding-left: 3rem;
}

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

.cta__tel {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: initial;
  text-align: center;
}

.cta__tel span {
  margin-left: 0.6rem;
  font-weight: 900;
  font-size: 3.5rem;
}

.cta__time {
  margin-top: 0.5rem;
  margin-right: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.92;
  letter-spacing: 0.075em;
  text-align: right;
}
.cta__links {
  display: grid;
  gap: 20px;
}

.cta__link {
  font-family: "Zen Maru Gothic", sans-serif;
}

.cta__title.--mail span,
.cta__title.--line span {
  position: relative;
  padding-left: 4rem;
}

.cta__title.--line span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3rem;
  -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: 3rem;
  height: 2.2rem;
  -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: 5px;
  color: #FFF;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.cta__btn a {
  display: grid;
  place-items: center;
  width: 25rem;
  min-height: 5rem;
  border-radius: 30.08px;
}

.cta__btn.--line a {
  background: #06c755;
}

.cta__btn.--mail a {
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47e34));
  background: linear-gradient(to right, #fcbe31, #f47e34);
}

.custom {
  padding: 50px 0;
}
.custom::before {
  top: initial;
  bottom: 0;
}

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

.custom__items {
  display: grid;
  margin-top: 50px;
  gap: 3rem;
}

.custom__item {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.custom__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.6rem;
}

.custom__text {
  margin-top: 1rem;
}

.detail {
  padding-bottom: 7rem;
}

.detail__wrapper {
  display: grid;
  gap: 5rem;
}

.detail__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: 2rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2307692308;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.detail__time {
  letter-spacing: 0.05em;
}

.detail__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: 1rem;
}

.detail__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.4rem;
  padding: 0.2em 1em;
  border: 1px solid #ccc;
  border-radius: calc(infinity * 1px);
  color: #f37335;
}

.detail__title {
  margin-top: 2rem;
  color: #333;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6363636364;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.detail__content {
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
.detail__content .detail__thumbnail {
  aspect-ratio: 657/410;
  margin-top: 1.2rem;
}
.detail__content .detail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__content .wp-block-image {
  margin-top: 3rem;
}
.detail__content p {
  margin-top: 2rem;
  color: #333;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.detail__return {
  margin-top: 2rem;
  margin-inline: auto;
}

.detail__return 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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.detail__return a span {
  text-decoration: underline;
}

.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;
}

.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: 50px 0;
  background: #a09485;
}

.feature__head {
  color: #FFF;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.feature__items {
  display: grid;
  margin-top: 50px;
  gap: 50px;
  counter-reset: feature-counter; /* カウンターをリセット */
}

.feature__item {
  position: relative;
  counter-increment: feature-counter; /* カウンターを増加 */
}

.feature__item::after {
  position: absolute;
  top: -2rem;
  left: 1rem;
  content: counter(feature-counter, decimal-leading-zero); /* カウンターを表示（01, 02, 03...形式） */
  color: #FFF;
  font-style: italic;
  font-size: 5rem;
  line-height: 0.5833333333;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.feature__title {
  display: grid;
  place-items: center;
  min-height: 6rem;
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  color: #FFF;
  font-weight: 700;
  font-size: 1.8rem;
}

.feature__text {
  padding: 3rem 2rem;
  background: #FFF;
  font-size: 1.4rem;
  line-height: 1.7777777778;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* ソート機能のスタイル */
.filter-row {
  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: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  width: 70%;
  max-width: 400px;
  margin-inline: auto;
  gap: 20px;
}

.filter-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}

.filter__label {
  display: grid;
  place-items: center;
  min-height: 4rem;
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  font-size: 1.6rem;
}

.filter-item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  min-height: 3.7rem;
  padding: 0 1.3rem;
  border: 1px solid #ccc;
  border-top: initial;
  border-radius: initial;
  background-image: url(../img/arrow_select.webp);
  background-position: right 1.6rem center;
  background-size: 9px auto;
  background-repeat: no-repeat;
  background-color: white;
  -webkit-box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
          box-shadow: 0px 10px 40px rgba(217, 217, 217, 0.85);
  color: #333;
  font-size: 16px;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  -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::before {
  top: 40%;
}

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

.flow__items {
  display: grid;
  margin-top: 50px;
  gap: 60px;
  counter-reset: feature-counter; /* カウンターをリセット */
}

.flow__item {
  display: grid;
  gap: 1.5rem;
  counter-increment: feature-counter; /* カウンターを増加 */
}

.flow__image {
  position: relative;
  aspect-ratio: 400/250;
}
.flow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow__image::before {
  display: grid;
  position: absolute;
  top: -3rem;
  left: -1rem;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#fcbd31), to(#f47f34));
  background: linear-gradient(to right, #fcbd31, #f47f34);
  content: counter(feature-counter, decimal-leading-zero); /* カウンターを表示（01, 02, 03...形式） */
  color: #FFF;
  font-style: italic;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.flow__content {
  display: grid;
  gap: 1rem;
}

.flow__title {
  font-weight: 700;
  font-size: 1.8rem;
}

.flow__text {
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}
.flow__text span {
  font-weight: 700;
  text-decoration: underline;
}

.footer {
  padding: 50px 0;
  background: #333;
  color: #FFF;
}

.footer__left {
  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;
}

.footer__top {
  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;
}

.footer__logo {
  width: 150px;
}

.footer__content {
  margin-top: 4rem;
}

.footer__information {
  color: #FFF;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.footer__instagram {
  width: 40px;
  height: 40px;
  margin-top: 30px;
  border-radius: 50%;
  background: #FFF;
}
.footer__instagram a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.footer__instagram a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/footer_insta.webp) no-repeat center center/contain;
  content: "";
}

.footer__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  gap: 30px;
}

.footer__items {
  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: 20px;
}

.footer__item {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__links {
  display: grid;
  gap: 1.5rem 0;
}

.footer__link {
  color: #f0f0f0;
  font-weight: 500;
  font-size: 1.2rem;
}

.footer__link.--layer {
  position: relative;
  margin-left: 0.8em;
  padding-left: 1.2em;
}

.footer__link.--layer::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f0f0f0;
  content: "";
}

.footer__text {
  margin-top: 40px;
  color: #FFF;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.fv {
  position: relative;
  height: 60vh;
}

/* fv左側オレンジ装飾コメントアウトしています */
/* .fv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 29.6153846154%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f47e34), to(#fcbd31));
  background: linear-gradient(to right, #f47e34, #fcbd31);
  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__movie {
  position: relative;
  width: 100vw;
  height: inherit;
}

.fv__media {
  position: relative;
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.fv__copies {
  display: grid;
  gap: 20px;
  font-size: 2.6rem;
}

.fv__copy {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.fv__text {
  margin-top: 2rem;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.fvSub {
  position: relative;
  height: 20rem;
}

.fvSub::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 29.6153846154%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f47e34), to(#fcbd31));
  background: linear-gradient(to right, #f47e34, #fcbd31);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 62% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 62% 100%, 0% 100%);
}

.fvSub__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
  font-size: 2.2rem;
  line-height: 1.6;
}

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

.gallery {
  padding: 50px 0;
}

.gallery__title {
  text-align: left;
}

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

.gallery__item {
  overflow: hidden;
  border-radius: 8px;
  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;
  border-radius: 8px;
  -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;
  }
}
.greeting {
  padding: 50px 0;
}

.greeting__container {
  display: grid;
  margin-top: 50px;
  gap: 2rem;
}

.greeting__image {
  aspect-ratio: 420/530;
}
.greeting__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting__name {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7777777778;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  text-align: right;
}

/* 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: 5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header.change-color {
  background: #101010;
}

.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: 150px;
}

.main__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.header__menu li {
  margin-left: 20px;
}

.header__menu a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__menu a:hover {
  color: #666;
}

.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: 2.8rem;
}

.header__item {
  height: inherit;
  color: #FFF;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.header__item a,
.header__item p {
  display: grid;
  place-items: center;
  height: inherit;
}

.header__contact {
  display: none;
}
.header__contact a {
  display: grid;
  place-items: center;
  width: 14.2rem;
  min-height: 4.3rem;
  border-radius: 21.5px;
  background: #f37335;
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
}

.headerSp {
  visibility: hidden;
  z-index: 120;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100%;
  padding-bottom: 10rem;
  overflow: scroll;
  border-bottom: 15px solid #101010;
  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__inner {
  margin-top: 1rem;
}

.headerSp__nav {
  margin-top: 20px;
}

.headerSp__items {
  display: grid;
}

.headerSp__item {
  font-weight: 700;
  font-size: 1.6rem;
}
.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: 1px solid #101010;
}

.headerSp__contact {
  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: 2rem;
}
.headerSp__contact a {
  display: grid;
  place-items: center;
  width: 200px;
  min-height: 5rem;
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  color: #FFF;
}

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

.inspection__item {
  display: grid;
  grid-template-columns: 15% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 8rem;
  padding: 7px;
  gap: 2rem;
  background: #FFF;
  color: #333;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.inspection__item span {
  color: #ffd8c5;
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.inspection__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;
}
.inspection__btn a {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.kinds {
  padding: 50px 0;
  background: #a09485;
  color: #FFF;
}

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

.kinds__label {
  display: grid;
  place-items: center;
  min-height: 4rem;
  background: -webkit-gradient(linear, left top, right top, from(#fcbd31), to(#f47f34));
  background: linear-gradient(to right, #fcbd31, #f47f34); /* 黄色→オレンジ */
  font-weight: 700;
  font-size: 1.8rem;
}

.kinds__head {
  margin-top: 30px;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.kinds__attention {
  margin-top: 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.kinds__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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 3rem 1rem;
}

.kinds__item {
  width: 100px;
}

.kinds__item.--last {
  position: relative;
}

.kinds__item.--last::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "ランボルギーニ";
  font-size: 1.4rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.kinds__name {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
  white-space: nowrap;
}

.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 {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; /* 要素の幅が縮まらないようにする */
  color: #f5f5f5;
  font-weight: 300;
  font-size: 8rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
.loop__text span {
  color: #fff2eb;
}

/* キーフレームの設定 */
/* ここでは全体幅の半分（テキスト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__head {
  margin-top: 50px;
}

.maintenance__items {
  display: grid;
  margin-top: 50px;
  gap: 5rem;
}

.maintenance__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1rem;
}

.maintenance__image {
  aspect-ratio: 313/220;
  -webkit-box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
          box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
}
.maintenance__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.maintenance__items.--brown .maintenance__image {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.maintenance__items.--brown .maintenance__title {
  color: #FFF;
}

.maintenance__title {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.maintenance__text {
  margin-top: 1rem;
}

.media {
  margin-top: 50px;
  padding-bottom: 50px;
}

.media__wrapper {
  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: 1em;
  font-size: 1.8rem;
}

.media__line {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ccc;
}

.media__head {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.media__items {
  display: grid;
  margin-top: 30px;
  gap: 3.8rem;
}

.media__image {
  aspect-ratio: 480/280;
}
.media__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media__title {
  position: relative;
  margin-top: 5px;
  padding-left: 1em;
}
.media__title::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fa963e;
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.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 #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

.megaMenu__container {
  visibility: hidden;
  position: absolute;
  top: 90%;
  left: 50%;
  width: 26.4rem;
  padding: 3rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  background: #FFF;
  color: #101010;
  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::before {
  position: absolute;
  bottom: 99.8%;
  left: 50%;
  width: 15px;
  height: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  content: "";
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

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

.meageMenu__item {
  letter-spacing: 0.05em;
}
.meageMenu__item .main {
  font-size: 1.6rem;
}
.meageMenu__item .main span {
  position: relative;
  width: 100%;
}
.meageMenu__item .main span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_megamenu.webp) no-repeat center center/contain;
  content: "";
}
.meageMenu__item .sub {
  font-size: 1.4rem;
}
.meageMenu__item ul {
  display: grid;
  padding-top: 1rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  gap: 1rem;
}
.meageMenu__item li 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: initial;
  gap: 6px;
  border-top: initial;
}
.meageMenu__item li img {
  width: 6px;
  height: 10px;
}

.meageMenu__item a {
  padding: 2rem 0;
  border-top: 1px solid #ccc;
}

.meageMenu__item:has(ul) a {
  padding-bottom: initial;
}

.meageMenu__item:first-child a {
  padding-top: initial;
  border-top: initial;
}

.meageMenu__item:last-child a {
  padding-bottom: initial;
}

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

.menu__btn::before,
.menu__btn::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 1.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #101010;
  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 #101010;
}

.menu__items {
  display: none;
}

.menu__item a {
  padding: 0 0 5px;
  gap: 4px;
  border: initial;
  font-size: 1.4rem;
}
.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;
}

.new-car {
  padding-top: 60px;
  padding-bottom: 60px;
}

.not-found {
  padding: 70px 20px;
  background: url(../img/not-found.webp) no-repeat center center/cover;
}

.not-found__content {
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  color: #FFF;
  text-align: center;
}

.not-found__text {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.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;
}
.not-found__btn a {
  display: grid;
  place-items: center;
  width: 28rem;
  min-height: 5rem;
  background: #333333;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.other {
  padding: 50px 0;
}

.other__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.other__head {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}

.other__btn {
  color: #f47e34;
  font-weight: 700;
  font-size: 1.6rem;
}
.other__btn a {
  display: grid;
  position: relative;
  place-items: center;
  height: 100%;
  padding-right: 1.5em;
}
.other__btn a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_other.webp) no-repeat center center/contain;
  content: "";
}

.navigation {
  margin-top: 4rem;
  padding-bottom: 2rem;
  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: 1.4rem;
}

.page-numbers {
  display: grid;
  position: relative;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  color: #505050;
  font-weight: 700;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-numbers.current {
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  color: #FFF;
}

.page-numbers.prev::after,
.page-numbers.next::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #f37335;
  border-bottom: 2px solid #f37335;
  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);
}

.painting {
  padding: 50px 0;
}
.painting .sales__en {
  text-transform: initial;
}
.painting .sales__en span {
  text-transform: uppercase;
}
.painting .sales__copy {
  text-align: right;
}

.painting::before {
  top: initial;
  bottom: 0;
}

.painting__head {
  margin-top: 50px;
}

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

.painting__item {
  display: grid;
  gap: 2rem;
}

.painting__image {
  -webkit-box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
          box-shadow: 5px 5px 30px rgba(217, 217, 217, 0.5);
}
.painting__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.painting__title {
  font-weight: 700;
  font-size: 2rem;
  text-decoration: underline;
}

.painting__text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.pay {
  padding: 50px 0;
  background: #a09485;
}
.pay::after {
  display: none;
}

.pay__top {
  display: grid;
  gap: 1rem;
  color: #FFF;
}

.pay__head {
  font-weight: 700;
  font-size: 2.4rem;
}

.pay__text {
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.pay__items {
  display: grid;
  margin-top: 30px;
  gap: 2rem;
}

.pay__item {
  display: grid;
  grid-template-columns: 30% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 7rem;
  background: #FFF;
}
.pay__item img {
  margin-inline: auto;
  text-align: center;
}

.pay__title {
  font-weight: 700;
  font-size: 1.8rem;
}

.privacy {
  padding-bottom: 6rem;
}

.privacy__content {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 160%;
}
.privacy__content span {
  font-weight: 700;
}
.privacy__content a {
  color: #0084FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.purchase-feature__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  gap: 2rem 1rem;
}

.purchase-feature__name {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
}

.purchase-feature__lists {
  display: grid;
  margin-top: 50px;
  padding: 0 15px;
  gap: 4rem;
}

.purchase-feature__list {
  display: grid;
  gap: 2rem;
}

.purchase-feature__en {
  padding-left: 0.8em;
  color: #f37335;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.7857142857;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.01em;
}

.purchase-feature__jp {
  font-weight: 700;
  font-size: 2rem;
}

.purchase-feature__text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.purchase-feature__image.--main {
  aspect-ratio: 650/350;
}
.purchase-feature__image.--main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qa {
  padding-top: 50px;
}

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

.qa__content:nth-child(even) {
  background: #a09485;
  color: #FFF;
}
.qa__content:nth-child(even) .qa__item {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.qa__content:nth-child(odd)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20rem;
  height: 60rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/ashirai_right.webp) no-repeat center center/contain;
  content: "";
}

.qa__title {
  text-align: left;
}

.qa__items {
  display: grid;
  margin-top: 4rem;
  gap: 2rem;
}

.qa__item {
  -webkit-box-shadow: 10px 10px 40px #d9d9d9;
          box-shadow: 10px 10px 40px #d9d9d9;
  line-height: 180%;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__item:has(.qa__question.is-active) {
  margin-bottom: 2.4rem;
}

.qa__question {
  position: relative;
  padding: 1.8rem 6rem 1.8rem 1.5rem;
  background: #fa963e;
  color: #FFF;
  cursor: pointer;
}

.qa__question::before,
.qa__question::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFF;
  content: "";
}

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

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

.qa__answer {
  display: none;
  padding: 2.8rem 6rem 2.8rem 1.5rem;
  background: #FFF;
  color: #101010;
}

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

.qa__question span,
.qa__answer span {
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.qa__answer span {
  color: #f37335;
}

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

.repair {
  padding: 50px 0;
  background: #a09485;
  color: #FFF;
}
.repair .sales__en {
  color: #FFF;
  text-transform: initial;
}
.repair .sales__en::first-letter {
  text-transform: uppercase;
}
.repair .sales__en::before {
  background: #FFF;
}
.repair .sales__jp {
  padding-left: 6.3rem;
}
.repair .sales__copy {
  color: #FFF;
}

.repair__items {
  display: grid;
  margin-top: 50px;
  gap: 7rem;
}

.repair__item {
  display: grid;
  gap: 6rem;
}

.repair__content.--before .repair__label,
.repair__content.--after .repair__label {
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.repair__content.--before {
  position: relative;
}
.repair__content.--before .repair__label {
  font-size: 5rem;
}
.repair__content.--before .repair__image {
  aspect-ratio: 340/230;
}
.repair__content.--before .repair__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.repair__content.--before::after {
  position: absolute;
  top: 105%;
  left: 50%;
  width: 6.3rem;
  height: 2.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.repair__content.--after .repair__label {
  font-size: 7rem;
  text-align: right;
}
.repair__content.--after .repair__image {
  aspect-ratio: 500/338;
}
.repair__content.--after .repair__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.repair__text {
  margin-top: 1.5rem;
}

.sales {
  padding: 50px 0;
}

.sales.--used {
  padding-top: 50px;
}

.sales.--order {
  background: #a09485;
  color: #FFF;
}
.sales.--order .sales__en {
  color: #FFF;
}
.sales.--order .sales__en::before {
  background: #FFF;
}
.sales.--order .sales__copy {
  color: #FFF;
}
.sales.--order .sales__item {
  background: #FFF;
  color: #101010;
}
.sales.--order .sales__btn a {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.sales__container {
  display: grid;
  gap: 2rem;
}

.sales__title {
  display: grid;
}

.sales__en {
  position: relative;
  padding-left: 6.3rem;
  color: #f37335;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.sales__en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f37335;
  content: "";
}

.sales__jp {
  font-size: 2.4rem;
}

.sales__jp.--left {
  padding-left: 6.3rem;
}

.sales__copy {
  color: #f47f34;
  font-weight: 600;
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.075em;
}

.sales__image.--main {
  margin-top: 24px;
}

.sales__text {
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.sales__text.--main {
  margin-top: 2rem;
}

.sales__features {
  margin-top: 50px;
}

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

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

.sales__item {
  display: grid;
  padding: 3rem 2rem;
  gap: 2rem;
  background: #a09485;
  color: #FFF;
}
.sales__item h5 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}

.sales__circle {
  text-align: center;
}

.sales__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;
}

.service {
  padding-top: 50px;
}

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

.service__container {
  display: grid;
  margin-top: 2rem;
  gap: 1rem;
}

.service__title {
  display: grid;
}

.service__en {
  position: relative;
  padding-left: 6.3rem;
  color: #f37335;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.service__en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f37335;
  content: "";
}

.service__jp {
  padding-left: 6.3rem;
  font-weight: 700;
  font-size: 2.4rem;
}

.service__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: 3rem;
}

.sidebar__container {
  display: grid;
  gap: 3rem;
}

.sidebar__title {
  border-bottom: 2px solid #e2e2e2;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.sidebar__categories {
  display: grid;
  margin-top: 1rem;
  gap: 1rem;
}

.sidebar__category {
  font-size: 1.4rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

.sidebar__year {
  padding: 1.5rem 0;
  border-bottom: 2px solid #e2e2e2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
}

.sidebar__article {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.sidebar__article::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 10px;
  height: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_sidebar.webp) no-repeat center center/contain;
  content: "";
  -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;
}

.step {
  padding: 50px 0;
}

.step__head {
  text-align: left;
}

.step__items {
  display: grid;
  margin-top: 50px;
  gap: 5rem;
}

.step__item {
  display: grid;
  position: relative;
  grid-template-columns: 15% 1fr;
  border: 1px solid #ccc;
}

.step__item:not(:last-child):after {
  position: absolute;
  top: 107%;
  left: 50%;
  width: 6.3rem;
  height: 2.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f58234;
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.step__laebel {
  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;
  -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: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47e34));
  background: linear-gradient(to right, #fcbe31, #f47e34);
  color: #FFF;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.step__laebel span {
  font-style: normal;
  font-size: 1.2rem;
}

.step__content {
  padding: 1rem;
}

.step__title {
  font-weight: 700;
  font-size: 1.8rem;
}

.step__text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}
.step__text a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stock {
  padding: 50px 0;
}

.stock.ashirai::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.support__container {
  margin-top: 50px;
}

.support__title {
  display: grid;
  place-items: center;
  min-height: 5rem;
  border-radius: 5px 5px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
  background: linear-gradient(to right, #fcbe31, #f47d34);
  font-weight: 700;
  font-size: 2rem;
}

.support__text {
  padding: 2rem 1rem;
  border-radius: 0 0 5px 5px;
  background: #FFF;
  color: #333;
}

.tel__container {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: #FFF;
  color: #101010;
}

.tel__title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

.tel__number {
  margin-top: 2rem;
  font-weight: 900;
  font-size: 3.4rem;
  text-align: center;
}
.tel__number span {
  position: relative;
  padding-left: 1em;
}
.tel__number span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/cta_icon_tel.webp) no-repeat center center/contain;
  content: "";
}

.tel__time {
  margin-top: 2rem;
  text-align: center;
}

.topAbout {
  position: relative;
  padding: 50px 0;
  text-align: center;
}

.topAbout__title {
  background: -webkit-gradient(linear, left top, right top, from(#ffcc00), to(#ff6600));
  background: linear-gradient(to right, #ffcc00, #ff6600); /* 黄色→オレンジ */
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
}

.topAbout__text {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 2.4;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.topAbout__text.--bold {
  font-weight: 700;
}

.topAbout__image.--left {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 12rem;
}

.topAbout__image.--right {
  position: absolute;
  right: 0;
  bottom: -1rem;
  width: 13rem;
}

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

.topAccess::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30rem;
  height: 34rem;
  background: url(../img/ashirai_access.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

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

.topAccess__logo {
  width: 150px;
}

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

.topAccess__item {
  display: grid;
  grid-template-columns: 25% 1fr;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
}

.topAccess__item:not(:first-child) {
  padding-top: 10px;
  border-top: 1px solid #cccccc;
}

.topAccess__label {
  font-weight: 700;
  text-transform: uppercase;
}

.topAccess__value {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.topAccess__map {
  margin-top: 5px;
  color: #909090;
  font-size: 10px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align: right;
}
.topAccess__map 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: 5px;
}

.topAccess__links {
  display: grid;
  margin-top: 50px;
  gap: 2rem;
}

.topAccess__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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 85px;
  gap: 2rem;
  border-radius: 5px;
  background: #333333;
  color: #FFF;
}

.topAccess__name {
  letter-spacing: 0.075em;
}

.topAccess__en {
  font-size: 2.6rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.topAccess__jp {
  font-weight: 400;
  font-size: 1.4rem;
}

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

.topBlog__slider {
  margin-top: 50px;
}

.topBlog__item {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.topBlog__image {
  aspect-ratio: 480/297;
}
.topBlog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topBlog__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;
  margin-top: 2rem;
  gap: 1.5rem;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2307692308;
}

.topBlog__time {
  letter-spacing: 0.05em;
}

.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: 24px;
  padding: 0.2em 1em;
  border-radius: 12px;
  background: #FFF;
  color: #f37335;
}

.topBlog__title {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.075em;
}

.topBlog__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: 4rem;
}
.topBlog__btn a {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.topBlog__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: absolute;
  top: 30%;
  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%;
  margin-right: calc(50% - 50vw);
}

.topBlog__button {
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background: #101010;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.topBlog__button::after {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 43%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

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

.topService {
  position: relative;
  padding: 50px 0;
  background: url(../img/bg_topService02.webp) no-repeat center center/cover;
}

.topService__bg {
  display: none;
}

.topService__bg {
  display: none;
}
.topService__bg img {
  width: 100%;
  height: 100%;
}

.topService__inner {
  padding: 0 15px;
}

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

.topService__container {
  display: grid;
  gap: 20px;
}
.topService__container .topService__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.topService__container .topService__content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.topService__title {
  display: grid;
  gap: 1rem;
  letter-spacing: 0.1em;
}

.topService__en {
  position: relative;
  padding-left: 6.3rem;
  color: #f37335;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

.topService__en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f37335;
  content: "";
}

.topService__jp {
  font-size: 2.4rem;
}

.topService__description {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.075em;
}

.topService__btn {
  margin-top: 3.5rem;
}

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

.topService__lists {
  display: grid;
  margin-top: 3rem;
  gap: 2.5rem;
}

.topService__list {
  position: relative;
}

.topService__image.--list {
  position: relative;
}
.topService__image.--list::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.4);
  content: "";
  pointer-events: none;
}

.topService__wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  padding: 0 10px 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFF;
  letter-spacing: 0.05em;
}

.topService__name {
  position: relative;
  padding-left: 3.6rem;
  font-size: 1.8rem;
}

.topService__name::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFF;
  content: "";
}

.topService__text {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.985;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

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

.topStock__items {
  display: grid;
  margin-top: 50px;
  gap: 50px;
}
.topStock__items .no-results {
  grid-column: 1/-1;
}

.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: 500;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.topStock__item.--sold .topStock__price {
  grid-template-columns: 40% 1fr;
}
.topStock__item.--sold .topStock__value.--car span {
  margin-left: 6rem;
}
.topStock__item.--sold .topStock__price.--full .topStock__value {
  color: #ff0000;
  text-transform: uppercase;
}

.topStock__image {
  aspect-ratio: 313/220;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.5);
}
.topStock__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topStock__content {
  margin-top: 2rem;
  color: #333;
  letter-spacing: 0.05em;
}

.topStock__name {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
}

.topStock__information {
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
  font-size: 1.4rem;
  line-height: 1.7;
}

.topStock__prices {
  display: grid;
  margin-top: 1rem;
  gap: 10px;
}

.topStock__price {
  display: grid;
  grid-template-columns: 50% 1fr;
}

.topStock__label {
  margin-top: 5px;
  font-size: 1.4rem;
}
.topStock__label span {
  font-size: 1rem;
}

.topStock__value {
  font-size: 2.5rem;
  line-height: 100%;
}
.topStock__value span {
  margin-left: 5px;
  font-size: 1.4rem;
}

.topStock__value.--car {
  color: #999999;
}

.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;
}

.u-desktop {
  display: none;
}

@media (min-width: 768px) {
  .main-swiper {
    width: 60.7%;
    min-width: 60.7rem;
    min-height: 42.7rem;
  }
}

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

@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1100 * 100vw);
  }
  body {
    font-size: max(1.6rem, 14px);
  }
  .inner {
    max-width: 1040px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .inner__mini {
    max-width: 1040px;
  }
  .btn {
    font-size: 1.8rem;
  }
  .btn a {
    width: 26.6rem;
    max-width: 100%;
    min-height: 5.7rem;
    margin-inline: initial;
  }
  .btn a::after {
    width: 25px;
    height: 25px;
  }
  .hamburger {
    display: none;
  }
  .pankuz {
    padding: 5rem 0;
  }
  .pankuz__items {
    font-size: 1.6rem;
  }
  .pankuz a {
    margin-right: 1.9rem;
  }
  .post {
    margin-left: 1.9rem;
  }
  .pankuz .current-item,
  .post-stock-car-archive {
    margin-left: 1.9rem;
  }
  .section__title {
    margin-left: 50px;
  }
  .section__jp {
    left: 64px;
    font-size: 3rem;
  }
  .section__en {
    font-size: 15rem;
  }
  .section__title.--subPage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -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;
    margin-right: calc(50% - 50vw);
    margin-left: initial;
  }
  .section__title.--subPage .section__jp {
    position: relative;
    top: initial;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    font-size: 3.4rem;
  }
  .section__title.--subPage .section__en {
    font-size: 10rem;
  }
  .section__top {
    padding: 11rem 0 13.4rem;
  }
  .text {
    font-size: 1.6rem;
  }
  .text__head {
    font-size: 3.4rem;
  }
  .text__head.--mini {
    font-size: 3.4rem;
  }
  .agency {
    min-height: 22.5rem;
    margin-top: 11rem;
    padding: 2.2rem 3.2rem 3.2rem;
    background: url(../img/company_image.webp) no-repeat center right/contain;
  }
  .agency__title {
    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;
    font-size: 2.7rem;
  }
  .agency__title img {
    width: 22rem;
  }
  .agency__text {
    margin-top: 3rem;
  }
  .anchor__btns {
    gap: 4.4rem;
  }
  .anchor__btns.--antibacterial {
    grid-template-columns: repeat(4, 1fr);
  }
  .anchor__btns.--support {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 73.2rem;
    margin-inline: auto;
  }
  .anchor__btns.--qa {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.3rem;
  }
  .anchor__btn a {
    max-width: 100%;
    min-height: 6rem;
    margin-inline: initial;
    font-size: 1.6rem;
  }
  .antibacterial::after {
    top: 30rem;
  }
  .antibacterial__container {
    padding-top: 12rem;
  }
  .antibacterial__feature {
    margin-top: 12rem;
  }
  .archive__section {
    padding: 12rem 0 20rem;
  }
  .archive__wrapper {
    grid-template-columns: 65.5% 24%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: initial;
  }
  .archive__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .archive__content {
    margin-top: 3rem;
  }
  .ashirai::after {
    top: 50px;
    width: 37.8rem;
    height: 75.5rem;
  }
  .ashirai-left::before {
    width: 37.8rem;
    height: 75.5rem;
  }
  .ashirai__right {
    width: 37.8rem;
  }
  .ashirai__left {
    width: 37.8rem;
  }
  .baner {
    right: 20px;
    bottom: 57px;
    gap: 2.3rem;
  }
  .baner__item {
    width: 112px;
  }
  .car__images {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3rem;
    padding-bottom: initial;
  }
  .thumbs-swiper {
    width: 39.3%;
    padding: 15px 20px 15px 30px;
    padding: 1.5rem 2rem 1.5rem 3rem;
  }
  .thumbs-swiper .swiper-wrapper {
    grid-template-rows: repeat(5, 1fr);
  }
  .thumbnail-navigation {
    margin-top: initial;
    margin-right: -2.6rem;
    gap: initial;
  }
  .thumbnail__btn {
    width: 5rem;
    height: 5rem;
  }
  .car {
    padding: 11rem 0 13.4rem;
  }
  .car__name {
    font-size: 3.2rem;
  }
  .car__prices {
    max-width: 60%;
    margin-top: 4rem;
  }
  .car__prices .car__price.--full.--sold .value {
    font-size: 5rem;
  }
  .car__price .label {
    font-size: 1.6rem;
  }
  .car__price .value {
    font-size: 5rem;
  }
  .car__price .value span {
    margin-left: 10px;
    font-size: 1.8rem;
  }
  .car__informations {
    max-width: 700px;
    margin-top: 5.6rem;
    margin-inline: auto;
    gap: 2rem;
  }
  .car__information {
    min-height: 11rem;
    font-size: 2.2rem;
  }
  .car__information span {
    margin-top: -1.5rem;
    font-size: 1.6rem;
  }
  .car__comment {
    grid-template-columns: 17rem 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 7.4rem;
    gap: 5rem;
  }
  .car__staff {
    font-size: 1.8rem;
  }
  .carePlan {
    padding: 7rem 0 17.4rem;
  }
  .carePlan::before {
    top: -30rem;
  }
  .carePlan__container {
    padding: 0 5.7rem 8.2rem 7.4rem;
  }
  .carePlan__head {
    margin-top: -3rem;
    padding: 0 3rem;
  }
  .carePlan__top {
    margin-top: 3.4rem;
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
  .carePlan__items {
    margin-top: 8rem;
    gap: 6.6rem;
  }
  .carePlan__item {
    grid-template-columns: 1fr 31.3rem;
    gap: initial;
  }
  .carePlan__title {
    gap: 2rem;
    font-size: 2.3rem;
  }
  .carePlan__text {
    margin-top: 3rem;
  }
  .carePlan__price {
    margin-right: 6.4rem;
  }
  .comapny__top {
    padding: 12rem 0;
  }
  .company__head {
    font-size: 4.5rem;
  }
  .company__text {
    margin-top: 4rem;
    font-size: 1.8rem;
    line-height: 3;
    text-align: center;
  }
  .company__content {
    padding-top: 9rem;
  }
  .company__items {
    margin-top: 8rem;
  }
  .company__item {
    grid-template-columns: 1fr 80%;
    padding: 50px 0;
    padding-left: 1em;
    gap: initial;
  }
  .company__label {
    font-size: 1.8rem;
  }
  .company__value {
    font-size: 1.6rem;
  }
  .concept {
    padding: 50px 0 140px;
  }
  .concept__title {
    min-height: 95px;
    margin-top: 4rem;
    font-size: 3.2rem;
  }
  .concept__text {
    margin-top: 4.5rem;
    font-size: 1.8rem;
    line-height: 3;
  }
  .contactForm {
    padding: 15rem 0 22rem;
  }
  .contactForm__text {
    margin-top: 3rem;
  }
  .contactForm__text.--bold {
    line-height: 3;
  }
  .contactForm__inner {
    max-width: 900px;
  }
  .contactForm__items {
    gap: 5rem;
  }
  .contactForm__item {
    gap: 1.4rem;
    font-size: 1.8rem;
  }
  .contactForm__answer.--double {
    gap: 4.2rem;
  }
  .contactForm__answer.--confirm {
    min-height: 6.1rem;
    padding: 0.5em 3.8rem;
  }
  .contactForm__answer.--double .--confirm {
    min-height: 6.1rem;
    padding: 0.5em 3.8rem;
  }
  .contactForm__answer-know .wpcf7-form-control.wpcf7-radio {
    display: grid;
    grid-template-columns: 0.5fr 0.7fr 0.7fr;
    gap: 1rem 2.9rem;
  }
  .contactForm__answer-know .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:nth-child(5) {
    grid-column: 2/4; /* 2番目から4番目（つまり2番目と3番目）のグリッドラインを跨ぐ */
  }
  .contactForm__agree {
    margin-top: 5rem;
  }
  .contactForm__btns {
    grid-template-columns: 1fr 1fr;
    max-width: 80%;
    margin-top: 11rem;
    margin-inline: auto;
  }
  .contactForm__btn input {
    width: 28rem;
    min-height: 7rem;
    margin-top: 4rem;
  }
  .contactForm__btns .contactForm__btn {
    margin-top: initial;
  }
  .contactForm__policy {
    padding: 32px;
    font-size: 1.6rem;
  }
  .contacForm__thanks {
    width: 80%;
    margin-top: 5rem;
    font-size: 1.8rem;
  }
  .contactForm__return {
    margin-top: 6rem;
  }
  .contactForm__return a {
    width: 28rem;
    min-height: 7rem;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    min-height: 6.1rem;
    padding: 0.5rem 3.5rem;
  }
  textarea {
    padding: 3rem 3.5rem;
  }
  textarea {
    height: 28rem;
  }
  .wpcf7-form-control.wpcf7-radio,
  .wpcf7-form-control.wpcf7-checkbox {
    gap: 3rem;
  }
  .wpcf7-list-item-label {
    padding-left: 3rem;
  }
  .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
  .contact__form-thanks {
    margin-top: 7rem;
  }
  .contactForm__agree input[type=checkbox] + .wpcf7-list-item-label::before {
    top: 50%;
    width: 20px;
    height: 20px;
  }
  .car-cta__head {
    font-size: 1.8rem;
  }
  .car-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: 930px;
    margin-inline: auto;
    gap: 6.2rem;
  }
  .car-cta__content {
    min-height: 21rem;
  }
  .cta-sub {
    padding: 13rem 0 21rem;
  }
  .cta-sub__text {
    font-size: 1.6rem;
    line-height: 2.25;
    text-align: center;
  }
  .cta-sub__btn {
    margin-top: 8rem;
  }
  .cta-sub__btn a {
    width: 29.7rem;
  }
  .cta-sub__btn.--long a {
    width: 32.1rem;
  }
  .cta-sub__btn.--most a {
    width: 36.8rem;
  }
  .cta {
    padding: 14rem 0 10.7rem;
  }
  .cta__en {
    font-size: 8rem;
  }
  .cta__jp {
    font-size: 3rem;
  }
  .cta__attention {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
  .cta__container {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8rem;
    padding: 8.5rem 5.6rem;
    gap: 0 10rem;
  }
  .cta__container::after {
    top: 50%;
    width: 1px;
    height: 25.8rem;
  }
  .cta__title {
    font-size: 2.5rem;
  }
  .cta__title.--tel span {
    padding-left: 5rem;
  }
  .cta__title.--tel span::after {
    width: 3rem;
    height: 4rem;
  }
  .cta__tel {
    margin-top: 3rem;
  }
  .cta__tel span {
    font-size: 5.5rem;
  }
  .cta__links {
    gap: 3.5rem;
  }
  .cta__title.--line span {
    padding-right: 0.5em;
    padding-left: initial;
  }
  .cta__title.--mail span {
    padding-left: 0.5em;
  }
  .cta__title.--line span::after {
    left: -5.8rem;
    width: 3.8rem;
    height: 3.8rem;
  }
  .cta__title.--mail span::after {
    left: -4.2rem;
    width: 3.6rem;
    height: 2.8rem;
  }
  .cta__btn {
    font-size: 2rem;
  }
  .cta__btn a {
    width: 29.7rem;
    min-height: 6rem;
    margin-left: 3rem;
  }
  .custom {
    padding: 18rem 0;
  }
  .custom::after {
    top: 69rem;
  }
  .custom__head {
    font-size: 3.4rem;
  }
  .custom__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 9rem;
    gap: 6rem 3rem;
  }
  .custom__title {
    margin-top: 2.5rem;
    font-size: 1.8rem;
  }
  .custom__text {
    font-size: 1.6rem;
    line-height: 2;
  }
  .detail {
    padding-bottom: 16rem;
  }
  .detail__wrapper {
    grid-template-columns: 65.5% 24%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: initial;
  }
  .detail__title {
    font-size: 2.2rem;
  }
  .detail__content .detail__thumbnail {
    margin-top: 2rem;
  }
  .detail__content .wp-block-image {
    margin-top: 7rem;
  }
  .detail__content p {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
  .detail__return {
    margin-top: 3.5rem;
  }
  .dressup {
    padding: 15rem 0 14rem;
  }
  .feature {
    padding: 10.2rem 14.5rem;
  }
  .feature__head {
    font-size: 3.4rem;
  }
  .feature__items {
    margin-top: 11rem;
    gap: 11.9rem;
  }
  .feature__item::after {
    top: -4.4rem;
    left: 3.5rem;
    font-size: 12rem;
  }
  .feature__title {
    min-height: 8rem;
    font-size: 2.2rem;
  }
  .feature__text {
    padding: 6rem;
    font-size: 1.8rem;
  }
  .filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 732px;
    gap: 4.2rem;
  }
  .filter-item select {
    font-size: 1.6rem;
  }
  .flow {
    padding: 12rem 0 16rem;
  }
  .flow__head {
    font-size: 3.4rem;
  }
  .flow__items {
    margin-top: 12rem;
    margin-left: 6.3rem;
    gap: 13.9rem;
  }
  .flow__item {
    grid-template-columns: 42.689434365% 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
  .flow__image::before {
    top: -5rem;
    left: -6.3rem;
    width: 10rem;
    height: 10rem;
    font-size: 4rem;
  }
  .flow__content {
    gap: 2rem;
  }
  .flow__title {
    font-size: 2.2rem;
  }
  .flow__text {
    font-size: 1.6rem;
  }
  .footer {
    padding: 60px 0 30px;
  }
  .footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__logo {
    width: 200px;
  }
  .footer__information {
    font-size: 1.6rem;
  }
  .footer__instagram {
    width: 50px;
    height: 50px;
    margin-top: auto;
  }
  .footer__instagram a::after {
    width: 25px;
    height: 25px;
  }
  .footer__right {
    margin-top: initial;
    margin-left: auto;
    gap: 7.8rem;
  }
  .footer__items {
    gap: 2.5rem;
  }
  .footer__item {
    font-size: 1.8rem;
  }
  .footer__link {
    font-size: 1.4rem;
  }
  .footer__text {
    margin-top: 74px;
    text-align: right;
  }
  .fv {
    height: 100vh;
  }
  .fv__content {
    left: 8.1rem;
  }
  .fv__copies {
    font-size: 5rem;
    line-height: 1.6;
  }
  .fv__copy {
    -webkit-text-decoration: underline 1px;
            text-decoration: underline 1px;
  }
  .fv__text {
    margin-top: 6.5rem;
    font-size: 18px;
  }
  .fvSub {
    height: auto;
  }
  .fvSub__title {
    left: 14rem;
    font-size: 5rem;
  }
  .gallery {
    padding: 12rem 0 17rem;
  }
  .gallery__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
  }
  .greeting {
    padding: 16rem 0 20rem;
  }
  .greeting__container {
    grid-template-columns: 42% 50%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 7rem;
  }
  .greeting__name {
    margin-top: 5rem;
    font-size: 1.8rem;
  }
  .header {
    height: 11.1rem;
  }
  .header__inner {
    padding-right: 20px;
    padding-left: 30px;
  }
  .header__logo {
    width: 200px;
  }
  .header__nav {
    display: block;
  }
  .header__contact {
    display: block;
    margin-left: 3rem;
  }
  .inspection__items {
    margin-top: 9rem;
    gap: 7.8rem;
  }
  .inspection__item {
    grid-template-columns: 15% 1fr;
    min-height: 15.8rem;
    gap: 5rem;
    font-size: 2.6rem;
  }
  .inspection__item span {
    font-size: 12rem;
  }
  .inspection__btn {
    margin-top: 10.9rem;
  }
  .inspection__btn a {
    width: 29.7rem;
  }
  .kinds {
    padding: 62px 0 120px;
  }
  .kinds__labels {
    max-width: 727px;
    margin-inline: auto;
    gap: 3.8rem;
  }
  .kinds__label {
    min-height: 6rem;
    font-size: 2.4rem;
  }
  .kinds__head {
    margin-top: 8rem;
    font-size: 3.4rem;
  }
  .kinds__attention {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
  .kinds__items {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 4.5rem;
    gap: 3.8rem;
  }
  .kinds__item {
    width: auto;
  }
  .kinds__item.--last::after {
    font-size: 1.8rem;
  }
  .kinds__name {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
  .loop__texts {
    -webkit-animation: scroll-left 10s linear infinite;
            animation: scroll-left 10s linear infinite;
  }
  .loop__text {
    font-size: 15rem;
  }
  .maintenance::after {
    top: 30rem;
  }
  .maintenance__head {
    margin-top: 14rem;
  }
  .maintenance__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8rem;
    gap: 6.5rem 3.3rem;
  }
  .maintenance__item {
    gap: 2rem;
  }
  .maintenance__image {
    max-width: 313px;
  }
  .maintenance__title {
    font-size: 2rem;
  }
  .maintenance__text {
    margin-top: 1.5rem;
  }
  .media {
    margin-top: 11rem;
    padding-bottom: 20rem;
  }
  .media__wrapper {
    gap: 1.2em;
    font-size: 2.6rem;
  }
  .media__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5rem;
  }
  .new-car {
    padding-top: 18rem;
    padding-bottom: 21.4rem;
  }
  .not-found {
    padding: 110px 0 119px;
  }
  .not-found__content {
    width: 418px;
    min-height: 489px;
    margin-inline: auto;
    padding: 5.7rem 4.4rem;
  }
  .not-found__text {
    margin-top: 6rem;
    font-size: 1.8rem;
    line-height: 3;
  }
  .not-found__btn {
    margin-top: 7rem;
  }
  .not-found__btn a {
    min-height: 7rem;
    font-size: 1.6rem;
  }
  .other {
    padding: 15rem 0;
  }
  .other__head {
    font-size: 3rem;
  }
  .other__btn {
    font-size: 1.8rem;
  }
  .other__btn a {
    padding-right: 2.5em;
  }
  .other__btn a::after {
    width: 25px;
    height: 25px;
  }
  .navigation {
    margin-top: 7.2rem;
  }
  .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  .page-numbers.prev::after,
  .page-numbers.next::after {
    width: 12px;
    height: 12px;
  }
  .painting {
    padding: 22rem 0;
  }
  .painting::after {
    top: 20%;
  }
  .painting::before {
    z-index: -1;
    bottom: -20rem;
  }
  .painting__head {
    margin-top: 13rem;
  }
  .painting__items {
    margin-top: 9rem;
    gap: 6rem;
  }
  .painting__item {
    grid-template-columns: 46% 50%;
    gap: 4.5rem;
  }
  .painting__content {
    margin-top: 2rem;
  }
  .painting__title {
    font-size: 2.8rem;
  }
  .painting__text {
    margin-top: 3.5rem;
    font-size: 1.6rem;
  }
  .pay {
    padding: 10rem 0 19rem;
  }
  .pay::after {
    display: block;
    top: initial;
    bottom: 120%;
  }
  .pay__top {
    grid-template-columns: 1fr 75.5%;
  }
  .pay__head {
    font-size: 3.4rem;
  }
  .pay__text {
    font-size: 1.6rem;
  }
  .pay__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8rem;
    gap: 3.1rem 4rem;
  }
  .pay__item {
    grid-template-columns: 25% 1fr;
    min-height: 10rem;
  }
  .pay__title {
    font-size: 2.2rem;
  }
  .privacy {
    padding-bottom: 12rem;
  }
  .privacy__inner {
    max-width: 940px;
  }
  .privacy__content {
    font-size: 1.6rem;
    line-height: 180%;
  }
  .purchase-feature__head {
    font-size: 3.4rem;
  }
  .purchase-feature__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 3.7rem;
  }
  .purchase-feature__lists {
    margin-top: 16rem;
    padding: initial;
    gap: initial;
  }
  .purchase-feature__list {
    grid-template-columns: 35.7692307692% 50%;
    -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: 3.9rem;
  }
  .purchase-feature__list:nth-child(even) {
    grid-template-columns: 50% 35.7692307692%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .purchase-feature__list:nth-child(even) .purchase-feature__image.--main {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .purchase-feature__list:nth-child(even) .purchase-feature__content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .purchase-feature__en {
    font-size: 1.4rem;
  }
  .purchase-feature__jp {
    font-size: 2.8rem;
  }
  .purchase-feature__text {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .qa {
    padding-top: 11rem;
  }
  .qa__content {
    padding: 12rem 0 16rem;
  }
  .qa__content:nth-child(odd)::after {
    width: 37.8rem;
    height: 75.5rem;
  }
  .qa__question {
    padding: 1.8rem 6rem 1.8rem 2.6rem;
  }
  .qa__question::before,
  .qa__question::after {
    right: 2.1rem;
    width: 37px;
  }
  .qa__answer {
    padding: 2.8rem 6rem 2.8rem 2.6rem;
  }
  .qa__label,
  .qa__value {
    grid-template-columns: 8% 1fr;
  }
  .qa__question span,
  .qa__answer span {
    font-size: 4rem;
  }
  .repair {
    padding: 15rem 0 25rem;
  }
  .repair__items {
    margin-top: 11rem;
    gap: 16rem;
  }
  .repair__item {
    grid-template-columns: 34% 50%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 15rem;
  }
  .repair__content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 3.5rem;
  }
  .repair__image {
    margin-top: auto;
  }
  .repair__content.--before .repair__label {
    font-size: 7rem;
  }
  .repair__content.--before::after {
    top: 60%;
    left: 120%;
    width: 2.5rem;
    height: 6.3rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
            clip-path: polygon(0 100%, 0 0, 100% 50%);
  }
  .repair__content.--after .repair__label {
    font-size: 10rem;
  }
  .repair__text {
    margin-top: initial;
  }
  .sales {
    padding: 11rem 0 13.4rem;
  }
  .sales.--used {
    padding-top: 15rem;
  }
  .sales.--new .sales__btn {
    margin-top: 7rem;
  }
  .sales__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: initial;
  }
  .sales__jp {
    font-size: 3.4rem;
  }
  .sales__copy {
    font-size: 2.4rem;
  }
  .sales__copy.--right {
    text-align: right;
  }
  .sales__text {
    font-size: 1.6rem;
  }
  .sales__text.--main {
    margin-top: 4rem;
  }
  .sales__features {
    margin-top: 14rem;
  }
  .sales__head {
    font-size: 3.4rem;
  }
  .sales__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .sales__item {
    padding: 7rem 4rem 5rem;
    gap: 4rem;
  }
  .sales__item h5 {
    font-size: 2.4rem;
  }
  .sales__btn {
    margin-top: 13.8rem;
  }
  .service {
    padding-top: 12rem;
  }
  .service__items {
    gap: 10rem;
  }
  .service__container {
    grid-template-columns: 1fr 61.5%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4rem;
    gap: initial;
  }
  .service__btn {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .service__btn a {
    width: 29.7rem;
  }
  .sidebar__container {
    gap: 9rem;
  }
  .sidebar__title {
    font-size: 1.8rem;
  }
  .sidebar__categories {
    margin-top: 2rem;
    gap: 2rem;
  }
  .sidebar__category {
    font-size: 1.6rem;
  }
  .sidebar__year {
    padding: 2rem 0;
  }
  .sidebar__article {
    font-size: 1.6rem;
  }
  .step {
    padding: 20rem 0 17rem;
  }
  .step__items {
    gap: 7rem;
  }
  .step__item {
    grid-template-columns: 7% 1fr;
    min-height: 18rem;
  }
  .step__item:not(:last-child):after {
    top: 110%;
  }
  .step__laebel {
    font-size: 4rem;
  }
  .step__laebel span {
    font-size: 1.4rem;
  }
  .step__content {
    padding: 2rem 3.7rem;
  }
  .step__title {
    font-size: 2.2rem;
  }
  .step__text {
    font-size: 1.6rem;
  }
  .stock {
    padding: 11rem 0 20rem;
  }
  .support__container {
    margin-top: 7.5rem;
  }
  .support__title {
    min-height: 8rem;
    font-size: 2.2rem;
  }
  .support__text {
    padding: 5rem;
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
  .support__tabs.antibacterial__tabs {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 73.2rem;
    margin-inline: auto;
  }
  .tel__container {
    margin-top: 8rem;
    padding: 4rem;
  }
  .tel__title {
    font-size: 2rem;
  }
  .tel__number {
    margin-top: 3rem;
    font-size: 5.5rem;
  }
  .tel__number span {
    padding-left: 5px;
  }
  .tel__number span::before {
    top: 54%;
    left: -50px;
    width: 30px;
    height: 40px;
  }
  .tel__time {
    margin-top: 3rem;
  }
  .topAbout {
    padding: 13rem 0 19rem;
  }
  .topAbout__title {
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .topAbout__text {
    margin-top: 7rem;
    font-size: 1.8rem;
    line-height: 3;
  }
  .topAbout__image.--left {
    bottom: 5rem;
    width: 36rem;
  }
  .topAbout__image.--right {
    width: 38rem;
  }
  .topAccess {
    padding: 120px 0;
  }
  .topAccess::after {
    top: 50px;
    width: 70rem;
    height: 74rem;
  }
  .topAccess__container {
    grid-template-columns: 25.0769230769% 53.8461538462%;
    -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: 100px;
    padding: initial;
    gap: 12.4rem;
  }
  .topAccess__logo {
    width: 200px;
  }
  .topAccess__items {
    margin-top: 5rem;
    gap: 2rem;
  }
  .topAccess__item {
    grid-template-columns: 29% 1fr;
    font-size: 1.6rem;
  }
  .topAccess__item:not(:first-child) {
    padding-top: 2rem;
  }
  .topAccess__value {
    width: 100%;
  }
  .topAccess__links {
    grid-template-columns: repeat(3, 1fr);
  }
  .topAccess__link a {
    minh: 95px;
  }
  .topAccess__en {
    font-size: 3rem;
  }
  .topBlog {
    padding: 120px 0;
  }
  .topBlog__slider {
    margin-top: 70px;
    margin-right: calc(50% - 50vw);
  }
  .topBlog__label {
    gap: 2.4rem;
  }
  .topBlog__btn {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 5rem;
  }
  .topBlog__navigation {
    left: -1.5rem;
  }
  .topBlog__button {
    width: 5rem;
    height: 5rem;
  }
  .topService {
    padding: 19rem 0;
    background: initial;
  }
  .topService__bg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1300/3407;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .topService__inner {
    padding: initial;
  }
  .topService__items {
    margin-top: 15rem;
    gap: 12rem;
  }
  .topService__container {
    grid-template-columns: 30.9230769231% 53.8461538462%;
    -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: 5rem;
  }
  .topService__container .topService__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .topService__container .topService__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .topService__item:nth-child(even) .topService__container {
    grid-template-columns: 53.8461538462% 30.9230769231%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .topService__item:nth-child(even) .topService__content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .topService__item:nth-child(even) .topService__image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .topService__jp {
    font-size: 4rem;
  }
  .topService__description {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
  .topService__btn.--custom a {
    width: 24.8rem;
  }
  .topService__btn.--after a {
    width: 32rem;
  }
  .topService__lists {
    grid-template-columns: repeat(2, 1fr);
  }
  .topService__wrap {
    padding: 0 4rem 3rem;
  }
  .topService__name {
    padding-left: 5.6rem;
    font-size: 2.5rem;
    line-height: 2;
  }
  .topService__name::before {
    width: 4rem;
  }
  .topService__text {
    margin-top: 2rem;
  }
  .topStock {
    padding: 150px 0;
  }
  .topStock__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 9rem;
    gap: 5rem 3rem;
  }
  .topStock__item.--sold .topStock__image::before {
    font-size: 2.4rem;
  }
  .topStock__name {
    font-size: 2rem;
  }
  .topStock__btn {
    margin-top: 10rem;
  }
  .u-mobile {
    display: none;
  }
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .filter-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .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 screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
}

@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .btn a:hover {
    background-position: right center; /* change the direction of the change here */
    opacity: 1;
  }
  .anchor__btn a:hover {
    background-position: right center; /* change the direction of the change here */
    opacity: 1;
  }
  .thumbs-swiper .swiper-slide:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.8;
  }
  .gallery__item:hover {
    cursor: pointer;
  }
  .page-numbers:hover {
    background: -webkit-gradient(linear, left top, right top, from(#fcbe31), to(#f47d34));
    background: linear-gradient(to right, #fcbe31, #f47d34);
    color: #FFF;
    opacity: 1;
  }
  .page-numbers.prev:hover::after,
  .page-numbers.next:hover::after {
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
  }
}
/*# sourceMappingURL=map/styles.css.map */


/* 2025/08/21追記 */
.fv__movie.fv-test01 {
  opacity: 0.6;
}

.fv__movie.fv-test02::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}

@media (any-hover: hover) {
  .baner__item:hover {
    -webkit-animation: poyopoyo 2s ease-out infinite;
            animation: poyopoyo 2s ease-out infinite;
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s;
  }
}

.baner__item a:hover {
  opacity: 1;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
/* 2025/08/21追記ここまで */
