/* ============================================================= *

index

* ============================================================= */
/* keyframes
=============================== */
@keyframes heroSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* p-index-head
=============================== */
.p-index-head {
  position: relative;
  width: calc(100% - var(--outer-padding)* 2);
  margin-top: calc(var(--header-height) + calc(12px + var(--slope-1px) * 2));

  margin-inline: auto;
}

/* p-index-body
=============================== */
.p-index-body {
  width: calc(100% - var(--outer-padding)* 2);
  max-width: var(--contents-width-px);

  margin-inline: auto;
}

/* Mut-holidays
=============================== */
.Mut-holidays[data-hansha-cd] {
  width: 100cqi;
  margin-bottom: calc(12px + var(--slope-1px) * 2);

  margin-inline: calc(50% - 50cqi);
}

.Mut-holidays[data-hansha-cd] .Mut-holidays__body {
  font-size: calc(13px + var(--slope-1px) * 4);
}

/* p-index-hero
=============================== */
.p-index-hero {
  position: relative;
  max-width: var(--outer-frame-width-px);
  margin-bottom: 50px;

  margin-inline: auto;
}

.p-index-hero__head {
  display: grid;
  margin-bottom: calc(22px + var(--slope-1px) * 12);

  margin-inline: calc(50% - 50cqi);
}

.p-index-hero__head .p-index-hero-slider {
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-index-hero__head .p-index-hero-title {
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-index-hero__body {
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: calc(13px + var(--slope-1px) * 4);
  max-width: var(--contents-width-px);
  margin-bottom: calc(18px + var(--slope-1px) * 6);

  --_column: 6;
  margin-inline: auto;
}

@media screen and (max-width: 1116px) {
  .p-index-hero__body {
    --_column: 3;
  }
}

@media screen and (max-width: 768px) {
  .p-index-hero__body {
    padding-inline: .86957%;
  }
}

.p-index-hero__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(10px + var(--slope-1px) * 5);
  max-width: var(--contents-width-px);

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-index-hero__foot {
    grid-template-columns: 100%;

    padding-inline: var(--inner-padding);
  }
}

/* p-index-hero-title
=============================== */
.p-index-hero-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: clamp(10px, -2.84281px + 1.67224vw, 20px);
  width: 100%;
  margin-bottom: calc(46px + var(--slope-1px) * 6);
  transition: all .5s cubic-bezier(.55, .05, .22, .99);
  transition-property: transform, opacity;
}

.p-index-hero-title__copy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-height: calc(33px + var(--slope-1px) * 50);
  background: var(--white);
  font-weight: 700;
  font-size: min(3.5cqi, 48px);
  font-feature-settings: "pwid" 1;

  padding-block: clamp(10px, -4.12709px + 1.83946vw, 21px);
  padding-inline-start: calc(14px + var(--slope-1px) * 16);
}

@media screen and (max-width: 560px) {
  .p-index-hero-title__copy {
    font-size: max(4.8cqi, 18px);
  }
}

.p-index-hero-title__copy > p {
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-index-hero-title__open {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  max-height: calc(33px + var(--slope-1px) * 43);
  background: var(--white);
  font-weight: 400;
  font-style: normal;
  font-size: min(2.34cqi, 32px);
  line-height: 180%;
  line-height: 1;

  padding-block: clamp(10px, -4.12709px + 1.83946vw, 21px);
  padding-inline-start: calc(14px + var(--slope-1px) * 16);
}

@media screen and (max-width: 560px) {
  .p-index-hero-title__open {
    font-size: max(4cqi, 15px);
  }
}

.p-index-hero-title__date {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-top: .03em;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25em;
  line-height: .7;

  margin-block: var(--leading-trim);
}

@media screen and (max-width: 560px) {
  .p-index-hero-title__date {
    font-size: calc(19px + var(--slope-1px) * 21);
  }
}

.p-index-hero-title__date .week {
  font-weight: 900;
  font-size: .75em;
}

@media screen and (max-width: 560px) {
  .p-index-hero-title__date .week {
    font-size: calc(13px + var(--slope-1px) * 11);
  }
}

.p-index-hero-title__today {
  gap: 5px;
  font-weight: 700;
  font-feature-settings: "pwid" 1;

  margin-block: var(--leading-trim);
}

/* p-index-hero-image
=============================== */
.p-index-hero-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  width: -moz-fit-content;
  width: fit-content;
  padding-left: var(--gap);
  will-change: transform;

  --gap: calc(8px + var(--slope-1px) * 4);
}

body.is-loaded .p-index-hero-slider {
  animation: heroSlider 50s linear infinite;
}

.p-index-hero-slider__list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  width: -moz-fit-content;
  width: fit-content;
}

.p-index-hero-slider__list > li {
  flex-shrink: 0;
  overflow: hidden;
  width: calc(100 * var(--vw) / 1366 * 600);
  max-width: 600px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .p-index-hero-slider__list > li {
    width: calc(100 * var(--vw) / 375 * 370);
    max-width: 370px;
  }
}

.p-index-hero-slider__list > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-index-hero-slider__list > li._2x {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  width: calc(100 * var(--vw) / 1366 * 450);
  max-width: 450px;
}

.p-index-hero-slider__list > li._2x > img {
  border-radius: var(--base-border-radius);
}

@media screen and (max-width: 768px) {
  .p-index-hero-slider__list > li._2x {
    width: calc(100 * var(--vw) / 375 * 277);
  }
}

/* p-index-hero-nav
=============================== */
.p-index-hero-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  grid-area: nav;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-index-hero-nav {
    z-index: 1;
    flex-direction: column-reverse;
  }
}

.p-index-hero-nav__body {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 10px;
  width: 100%;
  margin-bottom: 100px;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-index-hero-nav__body {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
    margin-bottom: unset;
  }
}

/* p-index-hero-button
=============================== */
.p-index-hero-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(14px + var(--slope-1px) * 3);
  padding: calc(15px + var(--slope-1px) * 13) 0;
  border-radius: var(--base-border-radius);
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  transition: scale var(--t-duration) var(--animation), background var(--t-duration) var(--animation);
}

.p-index-hero-button svg {
  max-width: calc(36px + var(--slope-1px) * 12);
  max-height: calc(36px + var(--slope-1px) * 12);
}

.p-index-hero-button span {
  position: relative;
  color: var(--base-color);
  font-weight: 700;
  line-height: 1;

  margin-block: var(--leading-trim);
}

@media (any-hover: hover) {
  .p-index-hero-button:where(:hover) {
    scale: .98;
  }
}

/* p-index-information
=============================== */
.p-index-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  max-width: var(--contents-width-px);
  margin-top: calc(18px + var(--slope-1px) * 22);

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-index-information {
    position: relative;
    width: 100%;

    padding-inline: 0;
  }
}

.p-index-information-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(15px, 8.5786px + .83612vw, 20px);
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--base-border-radius);
  background: var(--lightgray);
  text-decoration: none;
  font-size: calc(14px + var(--slope-1px) * 2);
  transition: filter var(--t-duration);

  padding-inline: clamp(15px, -6.83278px + 2.84281vw, 32px);
  padding-block: clamp(15px, 3.44147px + 1.50502vw, 24px);
  --_icon-color:#666;
}

.p-index-information-nav:hover {
  filter: brightness(.9);
}

.p-index-information-nav.is-important {
  color: #cc0000;

  --_icon-color:#cc0000;
}

.p-index-information-nav__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 12px;
  width: 100%;
  font-weight: 500;
}

.p-index-information-nav__date {
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-end;
  height: 1.5lh;
  margin-left: auto;
  padding-top: .03em;
  text-align: right;
  letter-spacing: .6px;
  font-size: calc(12px + var(--slope-1px) * 4);
  font-family: "Barlow", sans-serif;
  line-height: .7;

  margin-block: var(--leading-trim);
}

.p-index-information-nav__title {
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.p-index-information-nav__title::before {
  content: "";
  position: relative;
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  width: calc(15px + var(--slope-1px) * 5);
  height: 1lh;
  background: var(--_icon-color);

  -webkit-mask-image: var(--icon-information);

          mask-image: var(--icon-information);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* p-index-info-slider
=============================== */
.p-index-info-slider {
  position: relative;
  max-width: var(--contents-width-px);
  margin-bottom: calc(50px + var(--slope-1px) * 30);

  margin-inline: auto;
}

@media screen and (max-width: 560px) {
  .p-index-info-slider {
    width: 100cqi;
    max-width: unset;

    margin-inline: calc(50% - 50cqi);
  }
}

/* p-index-section
=============================== */
.p-index-section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: currentColor;
  font-weight: 800;
  font-size: calc(48px + var(--slope-1px) * 34);
}

.p-index-section-title__icon {
  width: calc(40px + var(--slope-1px) * 24);
  height: calc(40px + var(--slope-1px) * 24);
  padding: calc(8px + var(--slope-1px) * 8);
  border-radius: 50%;
  background: var(--key-color);
  color: var(--white);
}

.p-index-section-title__icon svg path {
  fill: var(--white);
}

.p-index-section-title__ja {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: calc(10px + var(--slope-1px) * 20);
  width: 100%;
  margin-top: calc(var(--leading-trim) + 15px);
  margin-bottom: calc(var(--leading-trim) + calc(10px + var(--slope-1px) * 5));
  text-align: center;
  letter-spacing: .72px;
  font-weight: 700;
  font-style: normal;
  font-size: calc(24px + var(--slope-1px) * 12);
}

.p-index-section-title__ja::before, .p-index-section-title__ja::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  background: var(--base-color);
}

.p-index-section-title__en {
  padding-top: .03em;
  color: var(--gray);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  font-size: calc(14px + var(--slope-1px) * 2);
  line-height: .7;
}

.p-index-section-title._center {
  text-align: center;
}

.p-index-section-title._has-wbr {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.p-index-section__lead {
  text-align: center;
  letter-spacing: .9px;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 2);

  margin-block: var(--leading-trim);
}

/* p-index-showroom
=============================== */
.p-index-showroom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: calc(25px + var(--slope-1px) * 15);
  width: 100%;
  margin-bottom: calc(50px + var(--slope-1px) * 30);

  margin-inline: auto;
}

.p-index-showroom__head {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  gap: calc(40px + var(--slope-1px) * 20);
}

.p-index-showroom__body {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
}

.p-index-showroom-close {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: close;
  gap: calc(10px + var(--slope-1px) * 10);
}

@media screen and (max-width: 768px) {
  .p-index-showroom-close {
    display: grid;
    justify-content: flex-start;
    width: 100%;

    padding-inline: var(--inner-padding);
  }
}

.p-index-showroom-close__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px calc(10px + var(--slope-1px) * 5);
}

.p-index-showroom-close__head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(80px + var(--slope-1px) * 60);
  height: calc(30px + var(--slope-1px) * 20);
  padding: calc(10px + var(--slope-1px) * 8) calc(10px + var(--slope-1px) * 22);
  border-radius: 5px;
  background: var(--lightgray);
}

.p-index-showroom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(15px + var(--slope-1px) * 15);
}

@media screen and (max-width: 768px) {
  .p-index-showroom-list {
    grid-template-columns: 100%;
  }
}

.p-index-showroom-card {
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white, #fff);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  text-decoration: none;
}

@media (any-hover: hover) {
  .p-index-showroom-card:hover img {
    filter: brightness(.7);
    transform: scale(1.01);
  }
}

.p-index-showroom-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 525/263;
}

.p-index-showroom-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform .3s ease-out, filter var(--t-duration) ease-out;
}

.p-index-showroom-card__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p-index-showroom-card__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 40px;
  }
}

.p-index-showroom-card__shop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 158px;
  height: 58px;
  margin: auto;
  padding: 20px 30px;
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  color: var(--white);
  letter-spacing: .48px;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 6);

  translate: 0 -50%;
}

.p-index-showroom-card__address {
  letter-spacing: .8px;
  font-weight: 500;
  font-size: 16px;

  margin-block: var(--leading-trim);
}

.p-index-showroom-card__tel {
  padding-top: .03em;
  color: var(--key-color);
  letter-spacing: .48px;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 6);
  font-family: "Barlow", sans-serif;
  line-height: .7;
}

@media screen and (max-width: 768px) {
  .p-index-showroom-card__tel {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .p-index-showroom-card__tel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--icon-arrow) 50%/50% 30% no-repeat;
    box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  }
}

.p-index-showroom-close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(32px + var(--slope-1px) * 18);
  height: calc(32px + var(--slope-1px) * 18);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  color: var(--base-color);
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: color, background;
}

.p-index-showroom-close-button :where(img, svg) {
  width: calc(18px + var(--slope-1px) * 14);
  height: calc(18px + var(--slope-1px) * 14);
}

.p-index-showroom-close-button svg path {
  fill: currentColor;
}

@media (any-hover: hover) {
  .p-index-showroom-close-button:hover {
    background: var(--base-color);
    color: var(--white);
  }
}

/* p-index-maintenance
=============================== */
.p-index-maintenance {
  position: relative;
  z-index: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-rows: auto auto;
  grid-template-columns: 100%;
  gap: 10px;
  margin-bottom: calc(50px + var(--slope-1px) * 30);

  margin-inline: auto;
}

.p-index-maintenance__head {
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 1/2;
  gap: calc(40px + var(--slope-1px) * 20);
}

.p-index-maintenance__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  grid-column: 1/2;
  grid-row: 2/3;
  gap: calc(10px + var(--slope-1px) * 16);
  width: 100%;
  padding-top: calc(15px + var(--slope-1px) * 15);
  text-align: center;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-index-maintenance__body {
    padding-inline: var(--inner-padding);
  }
}

.p-index-maintenance__body > .c-button {
  flex-shrink: 0;
  max-width: 19.875em;

  padding-inline: 0;
}

@media screen and (max-width: 768px) {
  .p-index-maintenance__body > .c-button {
    max-width: 20.71429em;
  }
}

.p-index-maintenance__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(10px + var(--slope-1px) * 16);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-index-maintenance__button .c-button {
    max-width: 100%;
  }
}

.p-index-maintenance-button__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(11px + var(--slope-1px) * 5);
  width: 100%;
}

@media screen and (max-width: 1116px) {
  .p-index-maintenance-button__grid {
    grid-template-columns: repeat(2, 1fr);
    font-size: calc(14px + var(--slope-1px) * 2);
  }
}

@media screen and (max-width: 768px) {
  .p-index-maintenance-button__grid {
    margin-bottom: -25px;
  }
}

@media screen and (max-width: 768px) {
  .p-index-maintenance-button__grid .c-button span {
    font-size: 14px;
  }
}

.p-index-maintenance__bg {
  position: relative;
  inset: 0;
  z-index: -1;
  display: block;
  grid-column: 1/2;
  grid-row: 2/3;
  overflow: hidden;
  width: 100cqi;
  height: auto;
  min-height: 414px;
  max-height: 600px;
  aspect-ratio: 1366 / 414;
  pointer-events: none;

  margin-inline: calc(50% - 50cqi);
}

@media screen and (max-width: 768px) {
  .p-index-maintenance__bg {
    grid-row: 3/4;
    min-height: 170px;
  }
}

.p-index-maintenance__bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.p-index-maintenance__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* p-index-newcar
=============================== */
.p-index-newcar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
  margin-bottom: calc(50px + var(--slope-1px) * 30);
}

.p-index-newcar__head {
  display: flex;
  flex-direction: column;
}

.p-index-newcar__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(21px + var(--slope-1px) * 19);

  padding-inline: var(--inner-padding);
}

.p-index-newcar__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(10px + var(--slope-1px) * 16);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-index-newcar__button .c-button {
    max-width: 100%;
  }
}

.p-index-newcar__slide {
  position: relative;
  width: 100%;
  max-width: var(--contents-width-px);

  margin-inline: auto;
}

@media screen and (max-width: 560px) {
  .p-index-newcar__slide {
    width: 100cqi;
    max-width: unset;

    margin-inline: calc(50% - 50cqi);
  }
}

/* p-index-usedcar
=============================== */
.p-index-usedcar {
  position: relative;
  z-index: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-rows: auto auto;
  grid-template-columns: 100%;
  margin-bottom: calc(50px + var(--slope-1px) * 30);

  margin-inline: auto;
}

.p-index-usedcar__head {
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 1/2;
  gap: calc(40px + var(--slope-1px) * 20);
  margin-bottom: calc(25px + var(--slope-1px) * 15);
}

.p-index-usedcar__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  grid-column: 1/2;
  grid-row: 2/3;
  gap: calc(10px + var(--slope-1px) * 16);
  width: 100%;
  text-align: center;

  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

.p-index-usedcar__body > .c-button {
  flex-shrink: 0;
  max-width: 19.875em;

  padding-inline: 0;
}

@media screen and (max-width: 768px) {
  .p-index-usedcar__body > .c-button {
    max-width: 20.71429em;
  }
}

.p-index-usedcar__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(10px + var(--slope-1px) * 16);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-index-usedcar__button .c-button {
    max-width: 100%;
  }
}

.p-index-usedcar__bg {
  position: relative;
  inset: 0;
  z-index: -1;
  display: block;
  grid-column: 1/2;
  grid-row: 2/3;
  overflow: hidden;
  width: 100cqi;
  height: auto;
  min-height: 414px;
  max-height: 600px;
  aspect-ratio: 1366 / 414;
  pointer-events: none;

  margin-inline: calc(50% - 50cqi);
}

@media screen and (max-width: 768px) {
  .p-index-usedcar__bg {
    grid-row: 3 / 4;
    min-height: 170px;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.p-index-usedcar__bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.p-index-usedcar__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================================= *

Lineup

* ============================================================= */
.CMN-L {
  width: 100%;
}

.CMN-L__titleInner {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 4);
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 5);

  margin-block: var(--leading-trim);
}

.CMN-L__titleInner::before {
  content: "";
  position: relative;
  display: inline-flex;
  width: calc(6px + var(--slope-1px) * 4);
  height: calc(6px + var(--slope-1px) * 4);
  border-radius: 50%;
  background: var(--key-color);
}

.CMN-L__titleInner img {
  opacity: 0;
}

/* anchor button
=============================== */
.CMN-L__anchorBtn {
  position: relative;
  margin-bottom: 5em;
}

.CMN-L__anchorBtn > * {
  position: relative;
  z-index: 1;
}

.CMN-L__anchorBtn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -1%;
}

.CMN-L__anchorBtn-item {
  display: inline-block;
  max-width: 22%;
  margin: 1%;
  word-spacing: normal;
  letter-spacing: normal;
  font-size: 1rem;
}

.CMN-L__anchorBtn-item a {
  display: block;
  transition: all .3s ease-out;
}

.CMN-L__anchorBtn-item a:hover {
  opacity: .7;
  transform: translateY(2px);
}

.CMN-L__anchorBtn-item img {
  border: 0;
}

/* anchor text link
=============================== */
.CMN-L__anchorText {
  display: none;
}

/* car list
=============================== */
.CMN-L__car {
  margin-top: calc(25px + var(--slope-1px) * 15);
  margin-bottom: calc(50px + var(--slope-1px) * 30);
}

.CMN-L__carList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: calc(10px + var(--slope-1px) * 10);
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .CMN-L__carList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.CMN-L__carItem {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray);
  border-radius: 10px;
  background: #fff;
}

.CMN-L__carItem img {
  margin: 0 auto;
}

.CMN-L__carItem-icon {
  overflow: hidden;
  margin-bottom: 10px;
}

.CMN-L__carItem-exhaust {
  display: inline-block;
  float: left;
}

.CMN-L__carItem-mileage {
  display: inline-block;
  float: right;
  min-width: 48%;
  text-align: right;
}

.CMN-L__carItem-mileage img {
  display: inline;
}

.CMN-L__carItem-img {
  margin-bottom: 5px;
  text-align: center;
}

.CMN-L__carItem-img img {
  border: 0;
}

.CMN-L__carItem-head {
  padding: 1em;
}

.CMN-L__carItem-head a .CMN-L__carItem-name {
  color: var(--base-color);
  text-decoration: underline;
}

.CMN-L__carItem-head a:hover .CMN-L__carItem-name {
  text-decoration: none;
}

.CMN-L__carItem-name {
  padding: .5em 0;
  text-align: center;
  letter-spacing: .02em;
  font-weight: bold;
}

.CMN-L__carItem-spec {
  padding: 0 1em;
  font-size: .875em;
}

.CMN-L__carItem-specList {
  display: flex;
  flex-direction: column;
  gap: calc(6px + var(--slope-1px) * 6);
  padding: calc(10px + var(--slope-1px) * 8) calc(12px + var(--slope-1px) * 12);
  border-radius: 10px;
  background: var(--bg-color);
}

.CMN-L__carItem-specItem {
  overflow: hidden;

  margin-block: var(--leading-trim);
}

.CMN-L__carItem-specItem h5 {
  display: inline-block;
  float: left;
  padding-right: 1em;
  line-height: inherit;
}

.CMN-L__carItem-specItem p {
  display: inline-block;
  float: left;
}

.CMN-L__carItem-fuel2 {
  padding: 1em;
  color: #023994;
  text-align: center;
  font-weight: bold;
  font-size: .875em;
}

.CMN-L__carItem-fuel2Inner {
  overflow: hidden;
}

.CMN-L__carItem-fuel2Inner img {
  margin-top: -3px;
}

/* page top
=============================== */
.CMN-L__pageTop {
  display: none;
}

/* caution
=============================== */
.CMN-L__cautionList {
  font-size: 1.3rem;
  line-height: 1.8;
}

.CMN-L__cautionItem {
  margin-bottom: 6px;
  padding-left: 1em;
  text-align: justify;
  text-indent: -1em;
  text-justify: auto;
}

.CMN-L__cautionItem--star {
  color: #023994;
}

.CMN-L__cautionItem--star:before {
  content: "\2605";
}

.CMN-L__cautionItem:before {
  content: "\25cf";
}

.CMN-L__cautionItem--asterisk:before {
  content: "\203B";
}

/* zankure
=============================== */
#zenkoku_zankure a {
  display: inline-block;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  transition: all .3s ease-out;
}

#zenkoku_zankure a:hover {
  opacity: .7;
}

/* ============================================================= *

Newcar

* ============================================================= */
.p-newcar-contents > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-newcar-contents > div#zenkoku_zankure {
  justify-content: center;
}

.p-newcar-contents br {
  display: none;
}

.p-newcar-contents object {
  float: left;
  width: 50%;
  padding: 1rem;
}

.p-newcar-contents div[id^="img600"] {
  float: left;
  width: 50%;
  padding: 1rem;
}

@media screen and (max-width: 560px) {
  .p-newcar-contents div[id^="img600"] {
    width: 100%;
    padding: .75rem 0;
  }
  .p-newcar-contents div[id^="img600"]:first-child {
    padding-top: 0;
  }
}

.p-newcar-contents div[id^="img600"] a {
  display: block;
  transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.p-newcar-contents div[id^="img600"] a:hover {
  opacity: .7;
}

.p-newcar-contents div[id^="img600"] a img {
  width: 100%;
}

.p-newcar-contents table {
  width: 100%;
  padding: 3rem 0;
  border-spacing: 1rem 0;
  border-collapse: separate;
  table-layout: fixed;
}

.p-newcar-contents table a {
  display: block;
  transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.p-newcar-contents table a:hover {
  opacity: .7;
}

.p-newcar-contents table img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-newcar-contents table tr:first-child {
    display: none;
  }
}

/* ============================================================= *

Special Car

* ============================================================= */
.p-specialcar-contents .frame-c {
  clear: both;
  width: 100%;
  padding: 5rem 0 0;
}

.p-specialcar-contents .frame-c::after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0;
}

.p-specialcar-contents .frame-c:first-child {
  padding-top: 0;
}

.p-specialcar-contents .frame-c * {
  text-align: left !important;
}

.p-specialcar-contents .frame-c .mainimg-cw {
  float: left;
  overflow: hidden;
  width: 20rem;
  vertical-align: top;
  font-size: 1.2rem;
}

@media screen and (max-width: 560px) {
  .p-specialcar-contents .frame-c .mainimg-cw {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
  }
}

.p-specialcar-contents .frame-c .mainimg-cw a {
  display: block;
  margin: 0 auto 1em;
  transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.p-specialcar-contents .frame-c .mainimg-cw a:hover {
  opacity: .7;
}

.p-specialcar-contents .frame-c .mainimg-cw a img {
  float: none;
  margin-right: 0;
}

.p-specialcar-contents .frame-c .mainimg-cw img {
  float: left;
  margin-right: .5em;
}

.p-specialcar-contents .frame-c .mainimg-cw .gas {
  overflow: hidden;
}

.p-specialcar-contents .frame-c .maintxt-cw {
  overflow: hidden;
  padding-left: 2rem;
  background-image: none;
  vertical-align: top;
}

@media screen and (max-width: 560px) {
  .p-specialcar-contents .frame-c .maintxt-cw {
    padding-left: 0;
  }
}

.p-specialcar-contents .frame-c ul.n-cw {
  padding: 0 0 1em 1.5em;
  list-style-type: disc;
  font-size: 1.4rem;
}

.p-specialcar-contents .frame-c ul.n-cw li {
  list-style-position: outside;
  list-style-type: disc;
}

.p-specialcar-contents .frame-c .cartype-w {
  padding: 0 0 5px 0;
  font-size: 1.4rem;
}

.p-specialcar-contents .frame-c .carname-cw {
  margin: 0 0 1.5rem;
  padding-left: 0;
  border-bottom: 1px solid var(--key-color);
  font-size: 2rem;
}

.p-specialcar-contents .frame-c .carname-cw a {
  color: var(--key-color);
  text-decoration: none;
}

.p-specialcar-contents .frame-c .carname-cw a:hover {
  text-decoration: underline;
}

.p-specialcar-contents .frame-c .spacialeq-cw {
  margin: 0 0 5px;
  font-size: 1.6rem;
}

.p-specialcar-contents .frame-c .clear-toku {
  height: 0;
}

.p-specialcar-contents .corner-cw {
  display: none;
}

/* ============================================================= *

Demo Car

* ============================================================= */
/* .c-democar-container
=============================== */
.c-democar-container #ATC-main-primary-contents {
  width: 100%;
}

.c-democar-container .ATC-title-text {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(25px + var(--slope-1px) * 15);
  margin-top: var(--leading-trim);
  margin-bottom: calc(25px + var(--slope-1px) * 15);
  padding-bottom: calc(calc(10px + var(--slope-1px) * 10) + var(--leading-trim));
  padding-left: 0;
  border-bottom: 0;
  border-left: 0;
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 6);
}

.c-democar-container .ATC-title-text::before {
  content: "";
  position: relative;
  display: block;
  order: 2;
  flex-grow: 1;
  flex-shrink: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: 1px;
  background: currentColor;
}

.c-democar-container .ATC-car-contents .ATC-car-contents-inner {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
  margin-top: calc(calc(25px + var(--slope-1px) * 15) + var(--leading-trim));
}

#ATC-car-contents-inner + .ATC-title-text {
  margin-top: calc(25px + var(--slope-1px) * 15);
}

.c-democar-container .car-contents-demo-caution {
  color: var(--base-color);
}

/* .c-democar-container #ATC-car-contents-inner
=============================== */
.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul {
  display: grid;
  grid-template-columns: repeat(2, 350px);
  gap: calc(10px + var(--slope-1px) * 5);
  justify-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;

  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul {
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-bottom: 0;
  }
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul > li {
  justify-self: stretch;
  margin-left: 0;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul > li:before {
  content: none;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul > li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.55556em;
  max-width: 100%;
  padding: .625em 1em;
  border: 0;
  border-radius: var(--ovall-radius);
  background: transparent;
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  color: var(--base-color);
  text-decoration: none;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 1.5;
  cursor: pointer;
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: transform, color, background;
  -moz-appearance: none;
       appearance: none;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul > li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  background: currentColor;

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header:nth-child(1) > ul > li:nth-child(1) a::before {
  rotate: 90deg;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header:nth-child(1) > ul > li:nth-child(2) a::before {
  rotate: 90deg;
}

.c-democar-container #ATC-car-contents-inner:has(+ .ATC-shop-contents) .ATC-car-contents-header > ul > li:nth-child(1) a::before {
  rotate: -90deg;
}

.c-democar-container #ATC-car-contents-inner:has(+ .ATC-shop-contents) .ATC-car-contents-header > ul > li:nth-child(2) a::before {
  rotate: 90deg;
}

.c-democar-container #ATC-car-contents-inner .ATC-car-contents-header > ul > li a:hover {
  background: var(--base-color);
  color: #fff;
  opacity: 1;
}

.c-democar-container .ATC-car-contents-lineup-end {
  display: none;
}

.c-democar-container .ATC-car-contents-lineup-new {
  display: none;
}

.c-democar-container .ATC-car-contents .ATC-car-contents-inner .ATC-car-contents-header > ul {
  display: none;
}

.c-democar-container .ATC-car-contents .ATC-car-contents-inner .ATC-car-contents-header .ATC-title-text-basic {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 4);
  padding: 0;
  border: 0;
  background: none;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 5);

  margin-block: var(--leading-trim);
}

.c-democar-container .ATC-car-contents .ATC-car-contents-inner .ATC-car-contents-header .ATC-title-text-basic::before {
  content: "";
  position: relative;
  display: inline-flex;
  width: calc(6px + var(--slope-1px) * 4);
  height: calc(6px + var(--slope-1px) * 4);
  border-radius: 50%;
  background: var(--key-color);
}

.c-democar-container .ATC-car-contents-lineup {
  gap: 0;
  width: calc(100% + var(--gap));
  margin-bottom: calc(var(--gap) * -1);

  --gap: 10px;
}

.c-democar-container .ATC-car-contents-lineup-inner {
  width: 16.66667%;
  min-width: 0;
  padding-right: var(--gap);
  padding-bottom: var(--gap);
}

.c-democar-container .ATC-car-contents-lineup-inner > * {
  height: 100%;
  padding: calc(14px + var(--slope-1px) * 6) calc(10px + var(--slope-1px) * 10) calc(18px + var(--slope-1px) * 6);
  border: 0;
  border: 1px solid var(--gray, #999);
  border-radius: 10px;
  background: var(--white);
}

@media screen and (max-width: 767px) {
  .c-democar-container .ATC-car-contents-lineup-inner {
    width: 33.33333%;
  }
}

@media screen and (max-width: 560px) {
  .c-democar-container .ATC-car-contents-lineup-inner {
    width: 50%;
  }
}

.c-democar-container .ATC-car-contents-lineup-detail {
  margin-top: .25rem;
}

.c-democar-container .ATC-car-contents-lineup-detail a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15em;
  height: 2.85714em;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.07143em .71429em;
  border: unset;
  border-radius: 10px;
  background: transparent;
  background: var(--white, #fff);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  color: var(--base-color);
  text-decoration: none;
  font-weight: 400;
  font-size: calc(12px + var(--slope-1px) * 2);
  line-height: 1.5;
  cursor: pointer;
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;
}

.c-democar-container .ATC-car-contents-lineup-detail a:after {
  content: "\5C55\793A\8ECA\30FB\8A66\4E57\8ECA";
}

.c-democar-container .ATC-car-contents-lineup-detail a img {
  display: none;
}

.c-democar-container .ATC-car-contents-lineup-detail a:hover {
  background: var(--base-color);
  color: #fff;
}

.c-democar-container .ATC-car-contents-lineup-detail a:hover:before {
  background: transparent !important;
}

.c-democar-container .ATC-car-contents:not(:last-child) {
  margin-bottom: 10rem;
}

.c-democar-container .ATC-car-contents + br {
  display: none;
}

/* list
=============================== */
.c-democar-container .ATC-title-text + .car-contents-demo-caution {
  margin-top: -1.5rem;
  padding: 0;
}

.c-democar-container .ATC-car-contents-demo-list-title th {
  background: #f4f4f4;
}

.c-democar-container .ATC-car-contents-demo-list-detail {
  background: #fff;
}

.c-democar-container .ATC-photo-thumb-frame {
  border: 0;
}

.c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child br {
  display: none;
}

.c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.71429em;
  height: 2.71429em;
  border-radius: 1.57143em;
  background: var(--key-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: all .3s ease-out;
}

@media screen and (max-width: 767px) {
  .c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child a {
    margin: .5em 1em;
  }
}

.c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child a:hover {
  opacity: .8;
}

.c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child a:before {
  content: "\8A66\4E57\7533\3057\8FBC\307F";
}

.c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child a img {
  display: none;
}

@media screen and (min-width: 768px) {
  .c-democar-container .ATC-car-contents-demo-list-table-option th div {
    background: var(--base-color);
  }
  .c-democar-container td.ATC-car-contents-demo-list-category {
    width: 290px;
    padding: 1.8rem;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category > ul {
    position: relative;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-status {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    margin-bottom: 1px;
    color: #fff;
    font-size: 1.4rem;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-status img {
    opacity: 0;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-status[data-status="democar"] {
    background: var(--key-color);
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-status[data-status="exhibit"] {
    background: var(--bg-color);
    color: var(--base-color);
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-status[data-status="new"] {
    position: absolute;
    top: 3rem;
    right: 0;
    width: auto;
    padding: .2em .5em;
    background: #cb412a;
    color: #fff;
    font-size: 1rem;
    font-family: "Barlow Condensed";
    line-height: .75;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-photo-thumb-frame {
    bottom: 0;
    width: 100%;
    padding: 0;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-photo-thumb-frame img {
    width: 100%;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-btn {
    width: 100%;
    margin-top: .7rem;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13.33333em;
    height: 2.91667em;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid;
    border-radius: 1.53846em;
    background: transparent;
    color: var(--base-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all .3s ease-out;
    -moz-appearance: none;
         appearance: none;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-btn a:after {
    content: "\8A73\7D30\306F\3053\3061\3089";
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-btn a img {
    display: none;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category li.ATC-car-contents-demo-list-btn a:hover {
    background: var(--base-color);
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .c-democar-container .ATC-car-contents-demo-list-contents td:nth-child(3) {
    min-height: 5em;
  }
  .c-democar-container .ATC-car-contents-demo-list-contents[data-type="democar"] td:nth-child(3) {
    background: var(--key-color);
  }
  .c-democar-container .ATC-car-contents-demo-list-contents[data-type="exhibit"] td:nth-child(3) {
    background: var(--bg-color);
    color: var(--base-color);
  }
  .c-democar-container .ATC-car-contents-demo-list-contents td:last-child {
    background: var(--bg-color);
  }
  .c-democar-container .ATC-car-contents-demo-list-contents td i {
    padding: .4em;
    background: var(--bg-color);
    color: var(--base-color);
    font-weight: normal;
    font-weight: bold;
    font-style: normal;
    font-size: 1.2rem;
  }
  .c-democar-container .ATC-car-contents-demo-list-table-option th div {
    padding: .4em;
    background: var(--bg-color);
    color: var(--base-color);
    font-weight: bold;
    font-size: 1.2rem;
  }
  .c-democar-container .ATC-car-contents-demo-list-detail {
    margin-bottom: calc(20px + var(--slope-1px) * 20);
  }
  .c-democar-container .ATC-car-contents-demo-list-detail > td {
    padding: 1.5em .5em;
  }
  .c-democar-container td.ATC-car-contents-demo-list-category ~ td:last-child {
    font-weight: bold;
  }
  .c-democar-container .ATC-car-contents-demo-list-btn-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13.46154em;
    height: 3.07692em;
    max-width: 100%;
    margin: 1em auto;
    border: 1px solid;
    border-radius: 1.53846em;
    background: transparent;
    color: var(--base-color) !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all .3s ease-out;
    -moz-appearance: none;
         appearance: none;
  }
  .c-democar-container .ATC-car-contents-demo-list-btn-sp:before {
    content: none;
  }
  .c-democar-container .ATC-car-contents-demo-list-btn-sp:hover {
    background: var(--base-color);
    color: #fff !important;
  }
}

/* .c-democar-container .ATC-shop-contents
=============================== */
.c-democar-container .ATC-shop-contents {
  margin-top: calc(50px + var(--slope-1px) * 30);
}

/* detail
=============================== */
.c-democar-container #ATC-inquiry-contents-top {
  display: none;
}

.c-democar-container .ATC-common-wrap-bg-contents {
  position: relative;
  padding-top: 3.5rem;
}

.c-democar-container .ATC-common-wrap-bg-contents-inner {
  position: static;
  padding: 2.1rem;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
}

.c-democar-container #ATC-car-contents-other-detail-title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.2rem;
  margin-bottom: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-democar-container #ATC-car-contents-other-detail-title img {
  display: none;
}

.c-democar-container #ATC-car-contents-other-detail-title[data-status="democar"] {
  background: var(--key-color);
}

.c-democar-container #ATC-car-contents-other-detail-title[data-status="exhibit"] {
  background: var(--point-color);
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .c-democar-container #ATC-car-contents-other-detail-main {
    flex-wrap: nowrap;
  }
  .c-democar-container #ATC-car-contents-other-detail-main-primary {
    flex-shrink: 0;
    width: 25.98566%;
    margin-right: .89606%;
  }
  .c-democar-container #ATC-car-contents-other-detail-main-secondary {
    flex-grow: 1;
    width: auto;
    max-width: none;
  }
  .c-democar-container #ATC-car-contents-other-detail-main-secondary .ATC-coda-slider {
    width: 73.52941%;
  }
  .c-democar-container #ATC-car-contents-other-detail-main-secondary .ATC-coda-nav {
    width: 24.87745%;
  }
}

.c-democar-container #ATC-car-contents-other-detail-shop .ATC-title-text-basic {
  border-color: var(--border-color);
  border-left-width: 1px;
}

.c-democar-container #ATC-car-contents-other-detail-shop .ATC-car-contents-other-detail-shop {
  border-color: var(--border-color);
  font-size: 1.8rem;
}

.c-democar-container #ATC-car-contents-other-detail-link {
  padding: 1em;
  border-color: var(--border-color);
}

.c-democar-container #ATC-car-contents-other-detail-link li {
  padding: 0;
}

.c-democar-container #ATC-car-contents-other-detail-link li:before {
  top: 6px;
  border-color: var(--key-color);
}

.c-democar-container #ATC-car-contents-other-detail-link li:after {
  top: 3px;
  background: var(--key-color);
}

.c-democar-container #ATC-car-contents-other-detail-link li a {
  padding-left: 1.3em;
  color: var(--key-color);
}

.c-democar-container #ATC-coda-nav-1 li a.current img {
  border: 2px solid;
  border-color: var(--key-color);
}

.c-democar-container .ATC-car-contents-detail .ATC-title-text-basic {
  border-left-width: 1px;
}

.c-democar-container .ATC-car-contents-detail-table th div {
  background: var(--white);
}

.c-democar-container #ATC-inquiry-contents-bottom {
  margin-top: 5rem;
}

.c-democar-container #ATC-inquiry-contents-bottom .ATC-common-wrap-bg-contents {
  padding-top: 0;
}

.c-democar-container #ATC-inquiry-contents-bottom .ATC-common-wrap-bg-contents-inner {
  padding: 0;
  border: 0;
  background: transparent;
}

.c-democar-container #ATC-inquiry-contents-bottom ul {
  padding: 0;
}

.c-democar-container #ATC-inquiry-contents-bottom a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15em;
  height: 3.5em;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 2.15385em;
  background: var(--key-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;
}

.c-democar-container #ATC-inquiry-contents-bottom a:before {
  content: "\8A66\4E57\7533\3057\8FBC\307F";
}

.c-democar-container #ATC-inquiry-contents-bottom a img {
  display: none;
}

.c-democar-container #ATC-inquiry-contents-bottom a:hover {
  background: var(--key-color);
  opacity: 1;
}

.COMMON-UCAR-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(10px + var(--slope-1px) * 10);
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .COMMON-UCAR-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* COMMON-UCAR-list-card
=============================== */
.COMMON-UCAR-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: calc(20px + var(--slope-1px) * 10);
  border: none;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(68, 64, 63, .25);
}

/* COMMON-UCAR-list-card
=============================== */
.p-usedcar-contents .COMMON-UCAR-search {
  padding: calc(30px + var(--slope-1px) * 20);
  border: none;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(68, 64, 63, .25);
}

.p-usedcar-contents .COMMON-UCAR-search input,
.p-usedcar-contents .COMMON-UCAR-search select {
  background-color: #fff;
}

.p-usedcar-contents .COMMON-UCAR-search select {
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(68, 64, 63, .25);
}

.p-usedcar-contents .COMMON-UCAR-search__body {
  width: var(--contents-width-px);
}

.p-usedcar-contents .COMMON-UCAR-search-block-more {
  background: var(--white);
}

.p-usedcar-contents .COMMON-UCAR-search-block-more::after {
  background: var(--white);
}

.p-usedcar-contents .COMMON-UCAR-search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 2px solid;
  border-color: currentColor;
  border-radius: var(--ovall-radius);
  background: var(--white);
  color: var(--key-color);
  font-weight: 500;
  font-style: normal;
  font-size: calc(14px + var(--slope-1px) * 2);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-usedcar-contents .COMMON-UCAR-search-button {
    line-height: 1.75;
  }
}

.p-usedcar-contents .COMMON-UCAR-search-button::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: var(--key-color);

  -webkit-mask-image: var(--icon-search);

          mask-image: var(--icon-search);
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-usedcar-contents .COMMON-UCAR-search-button._bg-gray {
  color: var(--base-color);
}

.p-usedcar-contents .COMMON-UCAR-search-button._bg-gray::before {
  content: none;
}

.p-usedcar-contents .COMMON-UCAR-search-button > i {
  display: none;
  visibility: hidden;
}

.p-usedcar-contents .COMMON-UCAR-list-card__button {
  width: 100%;
  max-width: 280px;
}

.p-usedcar-contents .COMMON-UCAR-list-card__link {
  height: calc(40px + var(--slope-1px) * 10);
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  font-size: calc(14px + var(--slope-1px) * 2);
}

.p-usedcar-contents .COMMON-UCAR-list-card__compare span {
  height: calc(35px + var(--slope-1px) * 5);
  border-radius: var(--ovall-radius);
  font-size: calc(11px + var(--slope-1px) * 3);
}

.p-usedcar-contents .COMMON-UCAR-list-paging__nav a:hover {
  background: var(--key-color);
}

.p-usedcar-contents .COMMON-UCAR-list-paging__index a:hover {
  background: var(--key-color);
}

.p-usedcar-contents .COMMON-UCAR-list-paging__index a.is-current {
  color: var(--key-color);
}

.p-usedcar-contents .COMMON-UCAR-list-card__image a {
  border-radius: 20px;
}

.COMMON-UCAR-list-compare a {
  border: 2px solid var(--base-color);
  border-radius: var(--ovall-radius);
  color: var(--base-color);
}

.COMMON-UCAR-list-compare a:hover {
  background: var(--base-color);
}

.COMMON-UCAR-detail-gallery__arrow > button:before {
  border-color: transparent transparent transparent var(--key-color);
}

.COMMON-UCAR-detail-gallery__arrow > button:first-child:before {
  border-color: transparent var(--key-color) transparent transparent;
}

.COMMON-UCAR-detail-gallery__item a.is-current:before {
  border: 3px solid var(--key-color);
}

/* ============================================================= *

usedcar-detail

* ============================================================= */
.COMMON-UCAR-detail-data__item {
  background: var(--white);
}

@media screen and (min-width: 769px) {
  .COMMON-UCAR-detail-cartrim td {
    background: var(--white);
  }
}

.COMMON-UCAR-detail-cartrim td > ul > li {
  background: var(--white);
}

/* ============================================================= *

Showroom

* ============================================================= */
.p-showroom {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
}

/* ============================================================= *

Sr

* ============================================================= */
/* p-sr-header
============================== */
.p-sr-header {
  display: grid;
  grid-template-columns: 59.25926% 37.03704%;
  margin-bottom: calc(26px + var(--slope-1px) * 34);
  -moz-column-gap: 3.7037%;
       column-gap: 3.7037%;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-sr-header {
    grid-template-columns: 100%;
    gap: 15px;
  }
}

/* p-sr-info
============================== */
.p-sr-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 320px;
}

@media screen and (max-width: 768px) {
  .p-sr-info {
    height: auto;
  }
}

.p-sr-info__today {
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-sr-info__today .c-open-information__text {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: baseline;
  font-weight: 500;
  font-size: calc(21px + var(--slope-1px) * 5);
}

.p-sr-info__today .c-open-information__text > * {
  flex-shrink: 0;
}

.p-sr-info__today .c-open-information__text em {
  color: var(--key-color);
  font-weight: 700;
  font-style: normal;
  font-size: calc(21px + var(--slope-1px) * 9);
}

@media screen and (max-width: 768px) {
  .p-sr-info__today .c-open-information__text small {
    font-size: calc(16px + var(--slope-1px) * 10);
  }
}

.p-sr-info__body {
  display: flex;
  flex-direction: column;
  gap: calc(16px + var(--slope-1px) * 14);
}

.p-sr-info__close {
  font-weight: 500;
  font-size: calc(14px + var(--slope-1px) * 4);
  line-height: 1.5;

  margin-block: var(--leading-trim);
}

.p-sr-info__tel {
  margin-block: var(--leading-trim);
}

.p-sr-info__tel > p {
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-sr-info__tel > p small {
  font-weight: calc(12px + var(--slope-1px) * 10);
  font-weight: 700;
}

.p-sr-info__tel > p em {
  color: var(--key-color);
  font-weight: 700;
  font-style: normal;
  font-size: calc(24px + var(--slope-1px) * 6);
}

.p-sr-info__tel > p em a.js-tel._inactive {
  color: var(--key-color);
}

.p-sr-info__tel > p em a.js-tel._active {
  color: var(--key-color);
}

.p-sr-info-close__item {
  line-height: 1.5;
}

.p-sr-info-close__item > * {
  display: inline;
}

.p-sr-info-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(6px, -16.65734px + 2.0979vw, 12px);
}

@media screen and (max-width: 768px) {
  .p-sr-info-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-sr-info-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: calc(50px + var(--slope-1px) * 14);
  border-radius: 10px;
  background: var(--key-color);
  color: var(--white);
  text-decoration: none;
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: transform, color, background;

  padding-inline: 10px;
}

@media screen and (max-width: 768px) {
  .p-sr-info-button {
    flex-direction: column;

    padding-inline: 0;
  }
}

.p-sr-info-button span {
  text-align: center;
  word-break: auto-phrase;
  font-weight: 500;
  font-size: calc(11px + var(--slope-1px) * 7);
  line-height: 1;
}

.p-sr-info-button i {
  flex-shrink: 0;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 768px) {
  .p-sr-info-button i {
    width: 20px;
    height: 20px;
  }
}

.p-sr-info-button i svg {
  width: 100%;
}

.p-sr-info-button svg path {
  fill: currentColor;
}

@media (any-hover: hover) {
  :is(a.p-sr-info-button:hover) {
    background: var(--base-color);
  }
}

/* p-sr-slider
============================== */
.p-sr-slider {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-sr-slider {
    width: 100cqi;

    margin-inline: calc(50% - 50cqi);
  }
}

.p-sr-slider__list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.p-sr-slider__item {
  overflow: hidden;
  height: 100%;
  aspect-ratio: 640 / 320;
}

.p-sr-slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sr-slider__control {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: calc(15px + var(--slope-1px) * 5);
}

@media screen and (max-width: 768px) {
  .p-sr-slider__control {
    max-width: 84.61538%;

    margin-inline: auto;
  }
}

.p-sr-slider__control .slick-dots {
  margin-top: 0;
}

/* p-sr-nav
============================== */
.p-sr-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(5px + var(--slope-1px) * 5);
}

@media screen and (max-width: 768px) {
  .p-sr-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    margin-bottom: 40px;
  }
}

/* p-sr-grid
=============================== */
.p-sr-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 66.66667% 29.62963%;
  gap: 40px;
}

@media screen and (max-width: 1116px) {
  .p-sr-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .p-sr-grid {
    grid-template-columns: 100%;
  }
}

@media screen and (min-width: 769px) {
  .p-sr-facility {
    grid-column: span 2;
  }
}

.p-sr-button-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(11px + var(--slope-1px) * 9);
}

@media screen and (min-width: 769px) {
  .p-sr-button-grid {
    grid-column: span 2;
  }
}

@media screen and (max-width: 1116px) {
  .p-sr-button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* profile
=============================== */
.p-sr-profile {
  display: grid;
  grid-template-columns: clamp(80px, -71.04895px + 13.98601vw, 120px) auto;
  width: 100%;
  margin-bottom: auto;
  border-top: 1px dashed var(--gray);
  -moz-column-gap: clamp(20px, -206.57343px + 20.97902vw, 80px);
       column-gap: clamp(20px, -206.57343px + 20.97902vw, 80px);
}

.p-sr-profile__item {
  display: grid;
  align-items: center;
  grid-template-columns: subgrid;
  grid-column: span 2;
  border-bottom: 1px dashed var(--gray);
  font-size: calc(14px + var(--slope-1px) * 4);

  padding-block: 1.38889em;
}

.p-sr-profile__head {
  /* 27.2px */
  width: 100%;
  text-align: left;
  font-weight: 700;
  line-height: 1.5;

  padding-inline-start: clamp(0px, -151.04895px + 13.98601vw, 40px);
}

.p-sr-profile__head p {
  margin-block: var(--leading-trim);
}

.p-sr-profile__body {
  flex-grow: 1;
}

.p-sr-profile__body p {
  display: block;

  margin-block: var(--leading-trim);
}

.p-sr-profile__body a {
  text-decoration: underline;

  margin-block: var(--leading-trim);
}

/* p-sr-calendar
=============================== */
.p-sr-calendar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(20px + var(--slope-1px) * 20);
  width: 100%;
  margin-bottom: auto;
  border-radius: 0 0 calc(40px + var(--slope-1px) * 60) calc(40px + var(--slope-1px) * 60);
}

@media screen and (max-width: 768px) {
  .p-sr-calendar {
    order: 2;
  }
}

.p-sr-calendar .c-calendar-grid {
  position: relative;
  display: flex;
  gap: clamp(15px, -41.64336px + 5.24476vw, 30px);
  max-width: 670px;
}

.p-sr-calendar .c-calendar-grid .c-calendar-item {
  display: none;
}

.p-sr-calendar .c-calendar-grid[data-calendar-current="0"] .c-calendar-item[data-calendar-index="0"],
.p-sr-calendar .c-calendar-grid[data-calendar-current="1"] .c-calendar-item[data-calendar-index="1"] {
  display: block;
}

/* p-sr-payment
=============================== */
.p-sr-payment__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: calc(15px + var(--slope-1px) * 5);
}

@media screen and (max-width: 768px) {
  .p-sr-payment__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-sr-payment__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  border-radius: 10px;
  background: var(--bg-color);

  padding-block: calc(15px + var(--slope-1px) * 15);
}

.p-sr-payment__item span {
  font-weight: 500;
  font-size: calc(12px + var(--slope-1px) * 6);

  margin-block: var(--leading-trim);
}

@media screen and (max-width: 768px) {
  .p-sr-payment__item img, .p-sr-payment__item svg {
    flex-shrink: 0;
    max-width: 30px;
    max-height: 30px;
    aspect-ratio: 1/1;
  }
}

/* p-sr-map
=============================== */
.p-sr-map {
  align-self: stretch;
  overflow: hidden;
  width: 100%;
  height: calc(260px + var(--slope-1px) * 67);
  background: var(--bg-color);
}

@media screen and (max-width: 768px) {
  .p-sr-map {
    aspect-ratio: 69/52;
  }
}

/* p-sr-blog-slider
=============================== */
.p-sr-blog-slider {
  --_slide-gap: 15px;
}

@media screen and (max-width: 560px) {
  .p-sr-blog-slider {
    width: 100cqi;

    --_slide-gap: 12.5px;
    margin-inline: calc(50% - 50cqi);
  }
}

.p-sr-blog-slider__list {
  display: flex;
  width: calc(100% + var(--_slide-gap)*2);

  margin-inline: calc(-1 * var(--_slide-gap));
}

.p-sr-blog-slider__list .slick-list {
  overflow: visible;
}

.p-sr-blog-slider__item {
  flex: 1 1;

  padding-inline: var(--_slide-gap);
}

.p-sr-blog-slider__item .c-blog-card {
  max-width: 100%;
}

.p-sr-blog-slider__control {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: calc(15px + var(--slope-1px) * 5);
}

@media screen and (max-width: 768px) {
  .p-sr-blog-slider__control {
    max-width: 73.33333%;

    margin-inline: auto;
  }
}

.p-sr-blog-slider__control .slick-dots {
  margin-top: 0;
}

/* p-sr-contact
=============================== */
.p-sr-contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 100%;
  gap: calc(25px + var(--slope-1px) * 15);
  color: var(--white);

  margin-block: calc(50px + var(--slope-1px) * 30);
  padding-block: calc(50px + var(--slope-1px) * 30);
}

@media screen and (max-width: 768px) {
  .p-sr-contact {
    width: 100%;
  }
}

.p-sr-contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100cqi;
  height: 100%;
  background: var(--key-color);

  margin-inline: calc(50% - 50cqi);
}

.p-sr-contact__head {
  width: 100%;
}

.p-sr-contact__body {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr;
  gap: calc(25px + var(--slope-1px) * -5) calc(var(--_gap) * 2);
  width: 100%;

  --_gap:20px;
}

@media screen and (max-width: 768px) {
  .p-sr-contact__body {
    --_gap:12.5px;
  }
}

@media screen and (max-width: 560px) {
  .p-sr-contact__body {
    grid-template-rows: auto;
    grid-template-columns: 100%;
  }
}

/* p-sr-contact-grid
=============================== */
.p-sr-contact-grid {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: 100%;
  grid-row: span 2;
  gap: calc(15px + var(--slope-1px) * 5);
}

@media screen and (max-width: 560px) {
  .p-sr-contact-grid {
    grid-template-rows: auto auto;
  }
}

.p-sr-contact-grid:nth-child(2)::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--_gap));
  width: 1px;
  height: 100%;
  background: currentColor;
}

@media screen and (max-width: 560px) {
  .p-sr-contact-grid:nth-child(2)::before {
    content: none;
  }
}

.p-sr-contact-grid-title {
  text-align: center;
  font-size: calc(14px + var(--slope-1px) * 4);
}

/* p-sr-contact-list
=============================== */
.p-sr-contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: calc(9px + var(--slope-1px));
}

@media screen and (max-width: 768px) {
  .p-sr-contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-sr-contact-list .c-button {
  max-width: 100%;
}

/* p-sr-info-slider
=============================== */
.p-sr-info-slider {
  position: relative;
  max-width: var(--contents-width-px);
  margin-bottom: calc(50px + var(--slope-1px) * 30);

  margin-inline: auto;
}

@media screen and (max-width: 560px) {
  .p-sr-info-slider {
    width: 100cqi;
    max-width: unset;

    margin-inline: calc(50% - 50cqi);
  }
}

/* ============================================================= *

Staff

* ============================================================= */
.p-staff-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px calc(25px + var(--slope-1px) * 15);
  padding: 30px calc(30px + var(--slope-1px) * 10);
  border-radius: 10px;
  background: var(--lightgray);
}

@media screen and (max-width: 768px) {
  .p-staff-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-staff-info__close {
  font-weight: 500;
  font-size: calc(14px + var(--slope-1px) * 4);
  line-height: 1.5;

  margin-block: var(--leading-trim);
}

.p-staff-info__tel {
  margin-block: var(--leading-trim);
}

.p-staff-info__tel > p {
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-staff-info__tel > p small {
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 9);
}

.p-staff-info__tel > p em {
  color: var(--key-color);
  font-weight: 700;
  font-style: normal;
  font-size: calc(32px + var(--slope-1px) * 10);
}

.p-staff-info__tel > p em a.js-tel._inactive {
  color: var(--key-color);
}

.p-staff-info__contact {
  flex-basis: 350px;
}

@media screen and (max-width: 768px) {
  .p-staff-info__contact {
    flex-basis: auto;
    width: 100%;
  }
}

.p-staff-info__contact .c-button {
  width: 100%;
  max-width: 350px;
}

@media screen and (max-width: 768px) {
  .p-staff-info__contact .c-button {
    max-width: 100%;
  }
}

.p-staff-info-close__item {
  line-height: 1.5;
}

.p-staff-info-close__item > * {
  display: inline;
}

.p-staff-contents .ATC-shop-contents-staff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(25px + var(--slope-1px) * -5) calc(15px + var(--slope-1px) * 5);
}

@media screen and (max-width: 1116px) {
  .p-staff-contents .ATC-shop-contents-staff {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .p-staff-contents .ATC-shop-contents-staff {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .p-staff-contents .ATC-shop-contents-staff {
    grid-template-columns: 100%;
  }
}

.p-staff-contents .ATC-shop-contents-staff-list {
  overflow: hidden;
  border: 1px solid var(--gray, #999);
  border-radius: 10px;
  background: #fff;
}

.p-staff-contents .ATC-shop-contents-staff-list > ul {
  padding-inline: 24px;
  padding-block: 24px calc(30px + var(--slope-1px) * 10);
}

.p-staff-contents .ATC-shop-contents-staff-list.is-notready {
  width: 100%;
  border: 0;
}

.p-staff-contents .ATC-photo-thumb-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 255 / 232;
  line-height: 0;

  margin-inline: auto;
}

.p-staff-contents .ATC-photo-thumb-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff-contents .ATC-shop-contents-staff-list-name {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  overflow: hidden;
  padding-bottom: calc(25px + var(--slope-1px) * -5);
  border-bottom: 1px dashed var(--gray);
  font-weight: bold;
  font-size: calc(24px + var(--slope-1px) * -6);
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-staff-contents .ATC-shop-contents-staff-list-name:has(*:first-child) {
  margin-top: 0;
}

.p-staff-contents .ATC-shop-contents-staff-list-name > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: .5em 1em;
  border-radius: var(--ovall-radius);
  background: var(--type-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.p-staff-contents .ATC-shop-contents-staff-list-qualification {
  margin-top: calc(25px + var(--slope-1px) * -5);
  font-size: 12px;
}

.p-staff-contents .ATC-shop-contents-staff-list-qualification.is-empty {
  padding: 0;
  background: transparent;
}

.p-staff-contents .ATC-shop-contents-staff-list-comment {
  margin-top: 15px;
  font-size: 12px;
}

.p-staff-contents .ATC-shop-contents-staff-list-comment a {
  color: var(--key-color);
}

.p-staff-contents .ATC-shop-contents-staff-list-comment.is-empty {
  padding: 0;
  background: transparent;
}

.p-staff-contents .ATC-staff-type-bg01, .p-staff-contents .ATC-staff-type-bg02 {
  --type-color:#ddeaff;
}

.p-staff-contents .ATC-staff-type-bg03, .p-staff-contents .ATC-staff-type-bg04, .p-staff-contents .ATC-staff-type-bg05, .p-staff-contents .ATC-staff-type-bg06, .p-staff-contents .ATC-staff-type-bg07 {
  --type-color: #e0f6d7;
}

/* ============================================================= *

Blog

* ============================================================= */
/* p-blog-control
============================== */
.p-blog-control {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
  max-width: 800px;
  font-size: calc(14px + var(--slope-1px) * 2);

  margin-inline: auto;
  margin-block: calc(40px + var(--slope-1px) * 20);
}

@media screen and (max-width: 768px) {
  .p-blog-control {
    flex-direction: column;
    align-items: stretch;
  }
}

.p-blog-control__head {
  flex-shrink: 0;
}

.p-blog-control__body {
  flex-grow: 1;
}

.p-blog-control__body select {
  width: 100%;
  padding: 1.33333em 2.88889em 1.33333em 1.77778em;
  border: 0;
  border: 1px solid var(--gray);
  border-radius: calc(5px + var(--slope-1px) * 5);
  background: var(--icon-angle) right 15px top 50%/.88889em .88889em no-repeat #fff;
  color: var(--base-color);
  font-size: calc(14px + var(--slope-1px) * 4);
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
}

/* c-blog-paging
============================== */
.c-blog-paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: var(--contents-max-width);
  font-size: calc(14px + var(--slope-1px) * 2);

  margin-block: 20px;
  margin-inline: auto;
}

.c-blog-paging:not(:last-child) {
  margin-bottom: 1em;
}

.c-blog-paging:not(:first-child) {
  margin-top: 1em;
}

.c-blog-paging__current {
  margin-right: 1em;
}

.c-blog-paging__nav {
  display: flex;
  align-items: center;
  gap: .5em;
}

.c-blog-paging__nav > li {
  display: flex;
  align-items: center;
  gap: .5em;
}

.c-blog-paging__nav > li + li:before {
  content: "\ff5c";
}

.c-blog-paging__nav > li a {
  color: var(--key-color);
}

/* p-blog-pager
============================== */
.p-blog-pager {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.p-blog-pager:has(.p-blog-pager__nav) {
  margin-top: calc(30px + var(--slope-1px) * 10);
  padding-top: calc(30px + var(--slope-1px) * 10);
  border-top: 1px solid var(--gray);
}

.p-blog-pager__nav {
  display: flex;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  text-decoration: none;
  transition: opacity .2s;
}

.p-blog-pager__nav:hover {
  opacity: .6;
}

.p-blog-pager__nav:after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: .88889em;
  height: .88889em;
  background: var(--icon-angle) 50% 50%/contain no-repeat;

  rotate: 90deg;
}

.p-blog-pager__nav._prev {
  margin-right: auto;
}

.p-blog-pager__nav._prev:after {
  order: -1;
}

.p-blog-pager__nav._next {
  margin-left: auto;
}

.p-blog-pager__nav._next:after {
  rotate: -90deg;
}

/* ============================================================= *

Maintenance

* ============================================================= */
/* schedule
=============================== */
.p-maintenance-schedule {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;

  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: 0;
  }
}

.p-maintenance-schedule__head {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: 64px auto;
  grid-auto-flow: column;
  row-gap: 40px;
  width: calc(100cqi + .375em);
  margin-top: 6px;
  padding-right: 0%;
  padding-left: .55556%;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

@media screen and (max-width: 1116px) {
  .p-maintenance-schedule__head {
    row-gap: 25px;
    width: calc(100cqi - .375em);
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__head {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 80.59701% auto;
    grid-auto-flow: row;
    gap: 8px 0;
    margin-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.p-maintenance-schedule__head:before {
  content: "";
  position: absolute;
  top: calc(3.75em/2 - .625em);
  right: .375em;
  left: .375em;
  display: block;
  width: calc(100% - pxToEm($scheWrapPaddingL)*2);
  height: 0;
  padding-top: .92593%;
  background: #edeff2;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__head:before {
    top: 1rem;
    right: initial;
    left: 2.55882rem;
    grid-row: 1/14;
    width: .88235rem;
    height: calc(100% - 12px - 1rem);
    padding-top: 0;
    transform: none;
  }
}

.p-maintenance-schedule__body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin-top: 1.875em;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__body {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 6.25em;
    height: 100%;
    margin-top: 0;
  }
}

/* timeline */
.p-maintenance-schedule-timeline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 60px;
  font-size: 1.8rem;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  .p-maintenance-schedule-timeline + .p-maintenance-schedule-timeline {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 560px) {
  .p-maintenance-schedule-timeline {
    font-size: 1.4rem;
  }
}

.p-maintenance-schedule-timeline._free {
  grid-row: 1/2;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline._free {
    grid-row: unset;
  }
}

.p-maintenance-schedule-timeline._delivery {
  flex-shrink: 0;
  width: 100%;
  margin-left: 0;
}

.p-maintenance-schedule-timeline__head {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  margin-bottom: 36.76471%;
  padding-top: 100%;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__head {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin: 0;
    padding: 0;
  }
}

.p-maintenance-schedule-timeline__head span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: min(100%, 57px);
  height: min(100%, 57px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gray);
  color: var(--white);
  font-weight: 700;
  font-size: calc(10px + var(--slope-1px) * 2);
  line-height: 1;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__head span {
    position: static;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    box-sizing: border-box;
    width: min(100%, 50px);
    height: min(100%, 50px);
    margin: initial;
  }
}

.p-maintenance-schedule-timeline__head span small {
  display: inline-flex;
  align-items: flex-end;
  height: calc(100cqi * (18/1080));
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__head span small {
    align-items: baseline;
    height: .8em;
  }
}

.p-maintenance-schedule-timeline__head span > em {
  padding-top: .03em;
  letter-spacing: -.03em;
  font-family: var(--ja-font-family);
  line-height: .7;
}

@media screen and (min-width: 769px) {
  .p-maintenance-schedule-timeline__head span > em {
    font-size: calc(100cqi * (18/1080));
  }
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__head span > em {
    font-size: 1.4rem;
  }
}

._delivery .p-maintenance-schedule-timeline__head span {
  background: var(--key-color);
}

._delivery .p-maintenance-schedule-timeline__head span > em {
  padding-top: 0;
  line-height: 1;

  scale: .83824;
}

@media screen and (min-width: 769px) {
  ._delivery .p-maintenance-schedule-timeline__head span {
    scale: 1.19298;
  }
}

@media screen and (max-width: 768px) {
  ._delivery .p-maintenance-schedule-timeline__head span {
    scale: 1;
  }
}

._primary .p-maintenance-schedule-timeline__head span {
  background: var(--key-color);
}

@media screen and (min-width: 769px) {
  ._primary .p-maintenance-schedule-timeline__head span {
    scale: 1.19298;
  }
}

@media screen and (max-width: 768px) {
  ._primary .p-maintenance-schedule-timeline__head span {
    scale: 1;
  }
}

._emphasise .p-maintenance-schedule-timeline__head span {
  background: var(--key-color);

  scale: 1.19298;
}

@media screen and (max-width: 768px) {
  ._emphasise .p-maintenance-schedule-timeline__head span {
    scale: 1;
  }
}

@media screen and (max-width: 768px) {
  ._emphasise .p-maintenance-schedule-timeline__head span {
    scale: 1;
  }
}

.p-maintenance-schedule-timeline__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 14.44444em;
  border-width: 0em;
  border-style: solid;
  border-color: #edeff2;
  border-radius: var(--ovall-radius);
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  color: var(--base-color);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--ja-font-family);
  line-height: 1;
  transition: background var(--t-duration) var(--animation), color var(--t-duration) var(--animation);
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__body {
    flex-direction: row;
    width: 100%;
    height: 5rem;
    margin-left: 1.5rem;
    padding: .8em 0;
  }
}

.p-maintenance-schedule-timeline__body:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% + 0em);
  left: 0;
  display: block;
  box-sizing: content-box;
  width: .05556em;
  height: 0;
  margin: 0 auto;
  padding-top: 45.3125%;
  background: var(--gray);
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-timeline__body:before {
    top: 0;
    right: calc(100% + 0em);
    bottom: 0;
    left: auto;
    width: calc(5rem - .33333em);
    height: .05556em;
    margin: auto 0;
    padding-top: 0;
    border-width: 0em 0;
  }
}

a.p-maintenance-schedule-timeline__body[target=_blank]:after {
  content: "";
  position: absolute;
  bottom: .35em;
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;

  -webkit-mask: var(--icon-external) 50% 50%/contain no-repeat;

          mask: var(--icon-external) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 768px) {
  a.p-maintenance-schedule-timeline__body[target=_blank]:after {
    top: 0;
    right: .53846em;
    bottom: 0;

    margin-block: auto;
  }
}

a.p-maintenance-schedule-timeline__body:not([target="_blank"]):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1.11111em;
  left: 0;
  width: 1.11111em;
  height: 1.11111em;
  margin: 0 auto;
  background: currentColor;

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 768px) {
  a.p-maintenance-schedule-timeline__body:not([target="_blank"]):after {
    top: 0;
    right: 1.35714em;
    bottom: 0;
    left: auto;
    width: .85714em;
    height: .85714em;
    margin: auto 0;
    transform: rotate(0deg);
  }
}

a.p-maintenance-schedule-timeline__body:hover {
  background: var(--base-color);
  color: var(--white);
}

.p-maintenance-schedule__sub._delivery {
  flex-shrink: 0;
  width: 100%;
  margin-left: calc(-1 * .375em);
}

@media screen and (min-width: 769px) {
  .p-maintenance-schedule__sub._delivery {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__sub._delivery {
    grid-row: unset;
    margin-right: 0;
    margin-left: 0;
  }
}

.p-maintenance-schedule__sub._delivery .p-maintenance-schedule__service {
  position: relative;
  z-index: 1;
}

.p-maintenance-schedule__service {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  width: 92px;
  height: 70px;
  border-radius: 5px;
  background: var(--lightgray);
  color: var(--base-color);
  text-align: center;
  font-weight: 500;
  font-size: calc(12px + var(--slope-1px) * 1);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__service {
    flex-shrink: 0;
    gap: 10px;
    width: 100%;
    height: 50px;
    padding: 10px 6px;
    line-height: 1.2;
  }
}

.p-maintenance-schedule__options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 100%;
  max-width: 60px;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__options {
    flex-direction: row;
    max-width: 80%;
    margin: 0 auto;
  }
}

.p-maintenance-schedule__options > div {
  position: relative;
}

.p-maintenance-schedule__options > div._ciao {
  --color: var(--ciao-color);
}

.p-maintenance-schedule__options > div._mamoru {
  --color: var(--mamoru-color);
}

.p-maintenance-schedule__options > div:before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__options > div:before {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-maintenance-schedule__options > div._ciao:before {
  background: var(--color);
}

.p-maintenance-schedule__options > div._mamoru:before {
  background: var(--color);
}

.p-maintenance-schedule__options > div._on:before {
  opacity: 1;
}

.p-maintenance-schedule__options > div:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 200%;
  height: 1px;
  margin: auto 0;
  background: var(--color);
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__options > div:after {
    top: -50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 1px;
    height: 300%;
    margin: 0 auto;
  }
}

.p-maintenance-schedule__sub:nth-child(4) .p-maintenance-schedule__options > div:after {
  left: 50%;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__sub:nth-child(4) .p-maintenance-schedule__options > div:after {
    top: 50%;
    left: 0;
  }
}

.p-maintenance-schedule__sub:nth-last-child(2) .p-maintenance-schedule__options > div:after {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule__sub:nth-last-child(2) .p-maintenance-schedule__options > div:after {
    width: 2px;
    height: calc(100% - 23px);
  }
}

/* note */
.p-maintenance-schedule-notes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: calc(25px + var(--slope-1px) * 15);
}

.p-maintenance-schedule-notes .c-notes {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-notes {
    flex-direction: column-reverse;
    width: 100%;
    line-height: 2;
  }
}

.p-maintenance-schedule-notes__sub {
  display: flex;
  gap: .5em;

  margin-block: var(--leading-trim);
}

.p-maintenance-schedule-notes__sub li:before {
  content: "\25cf";
}

.p-maintenance-schedule-notes__sub li:first-of-type:before {
  color: #8dc21f;
}

.p-maintenance-schedule-notes__sub li:nth-of-type(2):before {
  color: #0068b7;
}

.p-maintenance-schedule-notes__main {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .p-maintenance-schedule-notes__main {
    margin-bottom: 1em;
    text-align: left;
  }
}

/* merit
=============================== */
.p-maintenance-merit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: calc(15px + var(--slope-1px) * 15);
}

@media screen and (max-width: 768px) {
  .p-maintenance-merit-grid {
    gap: 15px;
  }
}

.p-maintenance-merit-button {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding: calc(15px + var(--slope-1px) * 10) clamp(20px, 8.87622px + .81433vw, 25px);
  border: none;
  border: 1px solid var(--white);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  text-decoration: none;
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: filter;
  -moz-appearance: none;
       appearance: none;
}

.p-maintenance-merit-button__title {
  width: 100%;
  text-align: left;
  line-height: 1.5;
}

.p-maintenance-merit-button::before {
  content: "";
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: flex-end;
  width: calc(32px + var(--slope-1px) * 18);
  height: calc(32px + var(--slope-1px) * 18);
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--base-color);
  line-height: 1;
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;

  -webkit-mask: var(--icon-plus) 50% 50%/50% 50% no-repeat;

          mask: var(--icon-plus) 50% 50%/50% 50% no-repeat;
}

@media screen and (max-width: 768px) {
  .p-maintenance-merit-button::before {
    width: 32px;
    height: 32px;
  }
}

.p-maintenance-merit-button::after {
  content: "";
  position: relative;
  z-index: 4;
  z-index: 0;
  display: flex;
  flex-direction: column;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: flex-end;
  width: calc(32px + var(--slope-1px) * 18);
  height: calc(32px + var(--slope-1px) * 18);
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(102, 102, 102, .4));
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (max-width: 768px) {
  .p-maintenance-merit-button::after {
    width: 32px;
    height: 32px;
  }
}

@media (any-hover: hover) {
  .p-maintenance-merit-button:where(:hover) {
    filter: brightness(.96);
  }
  .p-maintenance-merit-button:hover::before {
    background: var(--white);
  }
  .p-maintenance-merit-button:hover::after {
    background: var(--base-color);
  }
}

/* menu
=============================== */
.c-maintenance-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: calc(15px + var(--slope-1px) * 15);
}

@media screen and (max-width: 768px) {
  .c-maintenance-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-maintenance-menu-card {
  display: grid;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white, #fff);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  text-decoration: none;
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: filter;
}

.c-maintenance-menu-card:hover .c-maintenance-menu-card__image img {
  transform: scale(1.03);
}

.c-maintenance-menu-card__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 340/210;
}

.c-maintenance-menu-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .3s ease-out;
}

.c-maintenance-menu-card__image._ciao {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  background: #d4effd;
}

.c-maintenance-menu-card__image._ciao img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-maintenance-menu-card__image._mamoru {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 40px 50px;
  background: #ecf4d9;
}

.c-maintenance-menu-card__image._mamoru img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-maintenance-menu-card__body {
  position: relative;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr calc(32px + var(--slope-1px) * 18);
  gap: .5em;
  width: 100%;
  padding: calc(15px + var(--slope-1px) * 10);
  font-size: slop(12, 18);
}

@media screen and (max-width: 768px) {
  .c-maintenance-menu-card__body {
    grid-template-columns: 1fr 32px;
  }
}

.c-maintenance-menu-card__body::before {
  content: "";
  position: relative;
  z-index: 4;
  z-index: 1;
  display: flex;
  flex-direction: column;
  grid-column: 2/3;
  grid-row: 1/2;
  width: calc(32px + var(--slope-1px) * 18);
  height: calc(32px + var(--slope-1px) * 18);
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--base-color);
  line-height: 1;
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;

  -webkit-mask: var(--icon-arrow) 50% 50%/50% 50% no-repeat;

          mask: var(--icon-arrow) 50% 50%/50% 50% no-repeat;
}

@media screen and (max-width: 768px) {
  .c-maintenance-menu-card__body::before {
    width: 32px;
    height: 32px;
  }
}

.c-maintenance-menu-card__body::after {
  content: "";
  position: relative;
  z-index: 4;
  z-index: 0;
  display: flex;
  flex-direction: column;
  grid-column: 2/3;
  grid-row: 1/2;
  width: calc(32px + var(--slope-1px) * 18);
  height: calc(32px + var(--slope-1px) * 18);
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(102, 102, 102, .4));
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (max-width: 768px) {
  .c-maintenance-menu-card__body::after {
    width: 32px;
    height: 32px;
  }
}

@media (any-hover: hover) {
  .c-maintenance-menu-card:where(:hover) {
    filter: brightness(.96);
  }
  .c-maintenance-menu-card:hover .c-maintenance-menu-card__body::before {
    background: var(--white);
  }
  .c-maintenance-menu-card:hover .c-maintenance-menu-card__body::after {
    background: var(--base-color);
  }
}

/* menu
=============================== */
.p-maintenance-enquete {
  display: grid;
  grid-template-columns: 31.48148% 63.88889%;
  gap: clamp(25px, -69.40559px + 8.74126vw, 50px);
  margin-top: calc(25px + var(--slope-1px) * 15);
}

@media screen and (max-width: 1116px) {
  .p-maintenance-enquete {
    grid-template-columns: 100%;
  }
}

.p-maintenance-enquete > * {
  overflow: hidden;
  border: 1px solid var(--gray);
  border-radius: 10px;
}

.p-maintenance-enquete__capture {
  display: grid;
  grid-template-columns: 100%;
}

.p-maintenance-enquete__head {
  padding: calc(15px + var(--slope-1px) * 10);
  background: var(--lightgray);
}

.p-maintenance-enquete__head p {
  text-align: center;

  margin-block: var(--leading-trim);
}

.p-maintenance-enquete__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 17px;

  padding-inline: 10px;
}

.p-maintenance-enquete__body {
  text-align: center;

  padding-inline: 30px;
  padding-block: 25px 30px;
}

.p-maintenance-enquete__body p {
  margin-block: var(--leading-trim);
}

.p-maintenance-enquete__carrier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(15px + var(--slope-1px) * 15);
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-maintenance-enquete__carrier {
    grid-template-columns: 100%;
  }
}

.p-maintenance-enquete-carrier__item {
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
  border: 1px solid var(--gray);
  border-radius: 10px;
}

.p-maintenance-enquete-carrier__head {
  background: var(--key-color);
  color: var(--white);

  padding-block: calc(15px + var(--slope-1px) * 10);
  padding-inline: 19px;
}

.p-maintenance-enquete-carrier__head p {
  font-weight: 500;
  font-size: calc(14px + var(--slope-1px) * 2);

  margin-block: var(--leading-trim);
}

.p-maintenance-enquete-carrier__body {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;

  padding-block: calc(15px + var(--slope-1px) * 5) 25px;
}

.p-maintenance-enquete-carrier__body p {
  margin-block: var(--leading-trim);
}

/* ============================================================= *

price

* ============================================================= */
/* ============================================================= *

Ciao

* ============================================================= */
.p-ciao-heading {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
  padding: calc(15px + var(--slope-1px) * 25);
  border-radius: 10px;
  background: var(--lightgray);
}

.p-ciao-heading__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(25px + var(--slope-1px) * 15);
}

.p-ciao-heading__logo {
  flex-basis: 414px;
}

.p-ciao-heading__text {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
  text-align: center;

  margin-block: var(--leading-trim);
}

.p-ciao-heading__text p {
  margin-block: var(--leading-trim);
}

.p-ciao-heading__text small {
  display: block;
  margin-top: calc(var(--leading-trim) + 20px);
  margin-bottom: var(--leading-trim);
  text-align: center;
  font-size: calc(12px + var(--slope-1px) * 2);
}

.p-ciao-heading__title {
  color: var(--ciao-color);
  text-align: center;
  font-weight: 500;
  font-style: normal;
  font-size: calc(26px + var(--slope-1px) * 10);
  line-height: 1;

  margin-block: var(--leading-trim);
}

.p-ciao-service {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
}

.p-ciao-service__body {
  text-align: center;
}

.p-ciao-service__body p {
  margin-block: var(--leading-trim);
}

/* c-ciao-service-option
=============================== */
.p-ciao-service-option {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 48px 1fr;
  gap: 5px;
  max-width: 758px;

  place-content: center;
  margin-inline: auto;
}

@media screen and (max-width: 1116px) {
  .p-ciao-service-option {
    grid-template-columns: 1fr 48px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .p-ciao-service-option {
    grid-template-rows: 1fr auto 1fr;
    grid-template-columns: 100%;
  }
}

.p-ciao-service-option::before {
  content: "";
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2/3;
  grid-row: 1/2;
  width: 48px;
  height: 48px;
  background: var(--base-color);

  -webkit-mask: var(--icon-plus) 50% 50%/contain no-repeat;

          mask: var(--icon-plus) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 768px) {
  .p-ciao-service-option::before {
    align-items: center;
    grid-column: 1/2;
    grid-row: 2/3;

    margin-inline: auto;
  }
}

.p-ciao-service-option__item {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-rows: subgrid;
  grid-template-columns: auto auto;
  grid-row: span 1;
  gap: 1.5rem;
  height: calc(60px + var(--slope-1px) * 20);
  padding: 1em;
  border-radius: var(--ovall-radius);
  background: var(--ciao-color);
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .p-ciao-service-option__item {
    width: 100%;
    max-width: 414px;

    margin-inline: auto;
  }
}

.p-ciao-service-option__item svg {
  max-width: 48px;
  max-height: 36px;
}

.p-ciao-service-option__item svg path {
  fill: currentColor;
}

.p-ciao-service-option__item p {
  margin-block: var(--line-space);
}

@media screen and (max-width: 768px) {
  .p-ciao-service-option__item p {
    text-align: center;
  }
}

/* c-ciao-service-merit
=============================== */
.p-ciao-service-merit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
  gap: calc(15px + var(--slope-1px) * 5);
  width: 100%;

  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-ciao-service-merit {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-ciao-service-merit__item {
  display: flex;
  flex: 1 1;
  align-items: center;
  gap: calc(15px + var(--slope-1px) * 5);
  padding: calc(15px + var(--slope-1px) * 5);
  border: 1px solid var(--gray, #999);
  border-radius: 10px;
  background: var(--white, #fff);
}

.p-ciao-service-merit__head {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: calc(50px + var(--slope-1px) * 10);
  height: calc(50px + var(--slope-1px) * 10);
  border-radius: 50%;
  background: var(--ciao-color);
  color: var(--white);
}

.p-ciao-service-merit__body {
  flex-grow: 1;
  flex-shrink: 1;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--base-color);
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 500;
}

/* ============================================================= *

Campaign

* ============================================================= */
.p-campaign-section {
  display: block;
  margin-bottom: calc(50px + var(--slope-1px) * 30);
}

.p-campaign-wrapper {
  position: relative;
}

.p-campaign-wrapper .CMN-CMP-car-select__head {
  margin-top: 0;
  padding-top: 0;
}

.p-campaign-wrapper .CMN-CMP-car-select__item {
  max-width: 32%;
  transition: all .3s ease-out;
}

.p-campaign-wrapper .CMN-CMP-car-select__item:hover {
  opacity: .7;
}

.p-campaign-wrapper .CMN-CMP-car-article__head {
  margin-bottom: 0;
}

.p-campaign-wrapper .CMN-CMP-car-article__title {
  border-radius: 10px;
  background: var(--lightgray);
  color: var(--base-color);
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 4);
}

.p-campaign-wrapper .CMN-CMP-car-article__carIcon img {
  max-width: 50%;
}

.p-campaign-wrapper .CMN-CMP-body__item a {
  transition: all .3s ease-out;
}

.p-campaign-wrapper .CMN-CMP-body__item a:hover {
  opacity: .7;
}

/* leaflet
=============================== */
.p-campaign-leaflet-list {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;
  gap: 30px;
}

@media screen and (max-width: 560px) {
  .p-campaign-leaflet-list {
    grid-template-columns: 100%;
    width: -moz-fit-content;
    width: fit-content;

    margin-inline: auto;
  }
}

.p-campaign-leaflet-list__item p {
  border: 1px solid var(--gray);
}

.p-campaign-leaflet-list__item p img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-campaign-leaflet-list__item .c-button {
  margin-top: 1em;

  margin-inline: auto;
}

/* ============================================================= *

company

* ============================================================= */
/* ============================================================= *

Environment

* ============================================================= */
.p-environment-fig {
  position: relative;
  margin: 0 auto;
  padding: calc(60px + var(--slope-1px) * 40) var(--inner-padding);
  border: none;
  line-height: 2;
}

.p-environment-fig sub {
  display: inline-block;
  font-size: 65%;
}

.p-environment-fig:before, .p-environment-fig:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  background-size: contain;
  background-repeat: repeat-x;
}

.p-environment-fig:before {
  top: 1.5em;
  background-image: url(/environment/direction/common/img/bgHeaderTop.gif);
  background-position: center top;
}

.p-environment-fig:after {
  bottom: 1.5em;
  background-image: url(/environment/direction/common/img/bgHeaderBottom.gif);
  background-position: center bottom;
}

.p-environment-fig__head {
  margin-bottom: var(--leading-trim);
  padding-bottom: calc(25px + var(--slope-1px) * 15);
  color: #6eb92b;
  text-align: center;
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 6);
  line-height: 1.7;
}

.p-environment-fig__frame {
  position: relative;
  padding: 1.4em;
  background: #eff7e4;
  font-size: 1.125em;
}

.p-environment-fig__frame em {
  display: block;
  font-size: 1.16667em;
}

.p-environment-fig__body {
  max-width: 55em;
  margin: 0 auto;
  padding: 0;
  background: url(/environment/direction/common/img/character_img01.jpg) left bottom no-repeat;
  color: #b28146;
  font-size: calc(14px + var(--slope-1px) * 2);
}

.p-environment-fig__body dl {
  display: table;
  width: 100%;
  margin-bottom: calc(var(--leading-trim) + calc(25px + var(--slope-1px) * 15));
}

@media screen and (max-width: 560px) {
  .p-environment-fig__body dl {
    display: block;
  }
}

.p-environment-fig__body dt {
  display: table-cell;
  width: 6em;
  padding-bottom: 5px;
}

.p-environment-fig__body dt:before {
  content: "\25a0";
}

@media screen and (max-width: 560px) {
  .p-environment-fig__body dt {
    display: block;
  }
}

.p-environment-fig__body dd {
  display: table-cell;
  text-align: justify;
  text-justify: auto;
}

@media screen and (max-width: 560px) {
  .p-environment-fig__body dd {
    display: block;
  }
}

.p-environment-fig__body dd p {
  margin-bottom: 8px;
}

.p-environment-fig__body dd ol {
  padding-left: 1.5em;
}

.p-environment-fig__body dd li {
  margin-bottom: 5px;
  list-style: decimal;
  list-style-position: outside;
}

.p-environment-fig__title {
  margin-bottom: calc(25px + var(--slope-1px) * 15);
  background: url(/environment/direction/common/img/bg_policyTitle.gif) center center repeat-x;
  /* 40.8px */
  color: #b28146;
  text-align: center;
  font-weight: 500;
  font-style: normal;
  font-size: calc(16px + var(--slope-1px) * 8);
  line-height: 170%;
}

@media screen and (max-width: 768) {
  .p-environment-fig__title {
    background-size: auto 3px;
  }
}

.p-environment-fig__title span {
  display: inline-block;
  padding: 0 15px;
  background: #fff;

  margin-block: var(--leading-trim);
}

.p-environment-fig__sign {
  padding-bottom: 15px;
  text-align: right;
}

/* ============================================================= *

Welcome

* ============================================================= */
/* heading
=============================== */
.p-welcome-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: calc(50px + var(--slope-1px) * 30);
  font-size: calc(18px + var(--slope-1px) * 8);
}

@media screen and (min-width: 769px) {
  .p-welcome-heading {
    aspect-ratio: 2 / 1;
  }
}

.p-welcome-heading__head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-welcome-heading__body {
  color: var(--base-color);
  text-align: center;
  font-weight: 500;
}

.p-welcome-heading__img {
  display: grid;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .p-welcome-heading__img {
    grid-template-columns: 29.81481% 29.81481% 38.14815%;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .p-welcome-heading__img {
    grid-template-rows: repeat(2, calc(50% - 4.5px));
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
}

.p-welcome-heading__img ._01 {
  grid-column: 1/2;
  grid-row: 1/2;
}

@media screen and (min-width: 769px) {
  .p-welcome-heading__img ._02 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

@media screen and (max-width: 768px) {
  .p-welcome-heading__img ._02 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .p-welcome-heading__img ._03 {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}

@media screen and (max-width: 768px) {
  .p-welcome-heading__img ._03 {
    grid-column: 2/3;
    grid-row: 1/3;
    aspect-ratio: 1;
  }
}

@media screen and (min-width: 769px) {
  .p-welcome-heading__img ._04 {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

@media screen and (max-width: 768px) {
  .p-welcome-heading__img ._04 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.p-welcome-heading__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--base-border-radius);
}

.p-welcome-heading__lead {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 12px;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 24);

  margin-block: auto;
}

@media screen and (max-width: 1116px) {
  .p-welcome-heading__lead {
    gap: 9px;
    font-size: calc(18px + var(--slope-1px) * 14);
  }
}

.p-welcome-heading__lead p {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--white);

  padding-block: .2381em;
  padding-inline: calc(15px + var(--slope-1px) * 15) calc(7px + var(--slope-1px) * 8);
}

.p-welcome-heading__title {
  position: absolute;
  inset: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  background: var(--white);
  color: var(--key-color);
  text-align: center;
  font-weight: bold;
  font-size: calc(24px + var(--slope-1px) * 16);

  padding-inline: .5em;
}

@media screen and (max-width: 768px) {
  .p-welcome-heading__title {
    padding: 5px;
    line-height: 125%;
  }
}

.p-welcome-heading__text {
  text-align: center;
  /* 40px */
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 2);
  line-height: 200%;
}

/* content
=============================== */
.p-welcome-content {
  width: 100%;

  margin-block: calc(50px + var(--slope-1px) * 30);
}

.p-welcome-content__list {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1116px) {
  .p-welcome-content__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .p-welcome-content__list {
    grid-template-columns: 100%;
  }
}

.p-welcome-content__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--gray);
  border-radius: var(--base-border-radius);
}

@media screen and (max-width: 768px) {
  .p-welcome-content__item {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-template-areas: "img text" "img btn";
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .p-welcome-content__item {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "img" "text" "btn";
  }
}

.p-welcome-content__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0%;
}

@media screen and (max-width: 768px) {
  .p-welcome-content__img {
    grid-area: img;
  }
}

@media screen and (max-width: 560px) {
  .p-welcome-content__img {
    width: 100%;

    margin-inline: auto;
  }
}

.p-welcome-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-welcome-content__head {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding-inline: calc(27px + var(--slope-1px) * -2);
  padding-block: calc(25px + var(--slope-1px) * 5);
}

@media screen and (max-width: 768px) {
  .p-welcome-content__head {
    grid-area: text;
    margin-top: 0;
  }
}

@media screen and (max-width: 560px) {
  .p-welcome-content__head {
    width: 100%;

    padding-inline: calc(27px + var(--slope-1px) * -2);
  }
}

.p-welcome-content__text {
  font-weight: 500;
  font-size: calc(14px + var(--slope-1px) * 4);
  line-height: 150%;
}

.p-welcome-content__title {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  margin-bottom: calc(var(--leading-trim) + 1.19048em);
  padding-bottom: calc(var(--leading-trim) + 1.19048em);
  border-bottom: 1px dashed var(--gray);
  text-align: left;
  letter-spacing: normal;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 5);
}

.p-welcome-content__title::before {
  content: "";
  position: relative;
  display: block;
  width: .47619em;
  height: .47619em;
  border-radius: 50%;
  background: var(--key-color);
}

.p-welcome-content__button {
  margin-bottom: 30px;

  padding-inline: calc(27px + var(--slope-1px) * -2);
}

@media screen and (max-width: 768px) {
  .p-welcome-content__button {
    grid-area: btn;
  }
}

.p-welcome-content__button > .c-button {
  max-width: 100%;
  margin: 0 auto;
}

.p-welcome-content__button > .c-button + .c-button {
  margin-top: 15px;
}

/* ============================================================= *

Terms of use

* ============================================================= */
/* block
=============================== */
.p-terms-block {
  font-weight: 500;
  font-size: .9375em;
}

.p-terms-block + .p-terms-block {
  margin-top: calc(var(--leading-trim) + calc(50px + var(--slope-1px) * 30));
}

.p-terms-block__head {
  margin-bottom: calc(var(--leading-trim) + calc(25px + var(--slope-1px) * 15));
}

.p-terms-block__head .c-section-title {
  font-weight: 500;
}

/* text
=============================== */
.p-terms-text {
  line-height: 1.7;

  margin-block: var(--leading-trim);
}

/* plugin
=============================== */
.p-terms-plugin {
  margin-top: calc(15px + var(--slope-1px) * 15);
  border-radius: calc(5px + var(--slope-1px) * 5);
  background: var(--lightgray);
}

.p-terms-plugin__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(30px + var(--slope-1px) * 20);
  color: var(--base-color);
  text-decoration: none;
  transition: all .3s ease-out;
}

.p-terms-plugin__link:hover {
  opacity: .7;
}

@media screen and (max-width: 560px) {
  .p-terms-plugin__link {
    flex-direction: column;
  }
}

.p-terms-plugin__logo {
  margin: 0 1em 0 0;
}

@media screen and (max-width: 560px) {
  .p-terms-plugin__logo {
    margin: 0 0 1em 0;
  }
}

/* ssl
=============================== */
.p-terms-ssl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(25px + var(--slope-1px) * 15);
  margin-top: 20px;
  padding: calc(25px + var(--slope-1px) * 15);
  border-radius: calc(5px + var(--slope-1px) * 5);
  background: var(--lightgray);
  font-weight: 500;
}

.p-terms-ssl__head {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  text-align: left;
  letter-spacing: normal;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 5);

  margin-block: var(--leading-trim);
}

.p-terms-ssl__head::before {
  content: "";
  position: relative;
  display: block;
  width: .47619em;
  height: .47619em;
  border-radius: 50%;
  background: var(--key-color);
}

.p-terms-ssl__block:not(:first-child) {
  margin-top: 1.78571em;
}

.p-terms-ssl__list {
  display: flex;
  flex-direction: column;
  gap: calc(25px + var(--slope-1px) * 15);
  font-weight: 500;
}

.p-terms-ssl__item {
  margin-block: var(--leading-trim);
}

.p-terms-ssl__item > p {
  position: relative;
  margin-bottom: .5em;
}

.p-terms-ssl__item > ul {
  margin-block: var(--leading-trim);
}

.p-terms-ssl__item > ul > li {
  display: list-item;
  list-style: disc;
  font-size: calc(12px + var(--slope-1px) * 4);
  line-height: 1.75;

  margin-inline-start: 1em;
}

.p-terms-ssl__item > ul > li a {
  position: relative;
  display: inline-block;
  color: var(--base-color);
}

.p-terms-ssl__foot {
  margin-top: 2.28571em;
}

/* ============================================================= *

Privacy Policy

* ============================================================= */
/* lead
=============================== */
.p-privacy-lead {
  margin-bottom: calc(var(--leading-trim) + calc(50px + var(--slope-1px) * 30));
  font-weight: 500;
  line-height: 1.7;
}

.p-privacy-lead a {
  color: var(--key-color);
}

/* main
=============================== */
ol.p-privacy-main {
  counter-reset: privacy-main;
  font-weight: 500;
}

ol.p-privacy-main a {
  color: var(--key-color);
}

ol.p-privacy-main > .p-privacy-main__item {
  counter-increment: privacy-main;
  padding-left: 1.78571em;
}

ol.p-privacy-main > .p-privacy-main__item .p-privacy-main__title::before {
  content: counter(privacy-main) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--ja-font-family);
}

.p-privacy-main {
  word-break: break-all;
  line-height: 1.7;
}

.p-privacy-main__item {
  position: relative;
  margin-bottom: var(--leading-trim);
}

.p-privacy-main__item + .p-privacy-main__item {
  margin-top: calc(var(--leading-trim) + calc(50px + var(--slope-1px) * 30));
}

/* sub
=============================== */
.p-privacy-sub {
  counter-reset: privacy-sub;

  margin-block: calc(var(--leading-trim) + calc(25px + var(--slope-1px) * 15));
}

.p-privacy-sub__item {
  counter-increment: privacy-sub;
  position: relative;
  margin-left: 2.5em;
}

.p-privacy-sub__item + .p-privacy-sub__item {
  margin-top: calc(var(--leading-trim) + calc(20px + var(--slope-1px) * 10));
}

.p-privacy-sub__item:first-child:last-child {
  margin-left: 0;
}

.p-privacy-sub__item:first-child:last-child:before {
  content: none;
}

.p-privacy-sub__item:before {
  content: counter(privacy-sub, lower-roman) ".";
  position: absolute;
  top: 0;
  left: -1.875em;
  width: 1.25em;
  text-align: right;
}

/* frame
=============================== */
.p-privacy-frame {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(20px + var(--slope-1px) * 5);
  padding: calc(20px + var(--slope-1px) * 10);
  border-radius: calc(5px + var(--slope-1px) * 5);
  background: var(--lightgray);
  font-size: .875em;

  margin-block: calc(var(--leading-trim) + calc(10px + var(--slope-1px) * 10)) calc(var(--leading-trim) + calc(10px + var(--slope-1px) * 20));
}

.p-privacy-frame a {
  color: var(--key-color);
}

.p-privacy-frame__head {
  margin-block: var(--leading-trim);
}

.p-privacy-frame__head:before {
  content: "\25cf";
}

.p-privacy-frame__body {
  margin-block: var(--leading-trim);
}

/* detail
=============================== */
.p-privacy-detail {
  margin-block: calc(var(--leading-trim) + calc(15px + var(--slope-1px) * 10)) calc(var(--leading-trim) + calc(10px + var(--slope-1px) * 20));
}

.p-privacy-detail__head:before {
  content: "\25cf";
}

.p-privacy-detail p {
  display: list-item;
  list-style: disc;

  margin-inline-start: 1em;
  margin-block: var(--leading-trim);
}

.p-privacy-summary {
  margin-block: var(--leading-trim);
}

/* sign
=============================== */
.p-privacy-sign {
  margin-top: calc(50px + var(--slope-1px) * 30);
  text-align: right;
  font-weight: 500;
}

.p-privacy-sign a {
  color: var(--key-color);
}

/* banner
=============================== */
.p-privacy-banner {
  display: flex;
  justify-content: center;
  margin-top: calc(50px + var(--slope-1px) * 30);
}

.p-privacy-banner a {
  transition: all .3s ease-out;
}

.p-privacy-banner a:hover {
  opacity: .7;
}

/* ============================================================= *

recruit

* ============================================================= */
.p-recruit-text {
  margin-top: .55556em;
  font-size: calc(12px + var(--slope-1px) * 4);
}

.p-recruit-text + p {
  margin-top: 1.38889em;
}

.p-recruit-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  overflow: hidden;
  width: 100%;
  height: 3.55556em;
  max-width: 19.44444em;
  /* style */
  border: none;
  border-radius: var(--ovall-radius);
  background: var(--_bg-color);
  box-shadow: 0 0 6px 0 rgba(102, 102, 102, .4);
  color: var(--_color);
  text-decoration: none;
  font-weight: 500;
  /* Layout */
  font-size: calc(16px + var(--slope-1px) * 2);
  transition-timing-function: var(--animation);
  transition-duration: var(--t-duration);
  transition-property: opacity;
  -moz-appearance: none;
       appearance: none;

  --_color:var(--base-color);
  --_hover-color: var(--white);
  --_bg-color: var(--white);
  --_hover-bg-color:var(--white);
  padding-inline: 1.22222em;
  padding-block: 1.25em;
}

@media screen and (max-width: 768px) {
  .p-recruit-button {
    height: 3.125em;
    max-width: 15.9375em;

    padding-inline: 1.1875em;
    padding-block: 1em;
  }
}

.p-recruit-button > span {
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1.11111em 1fr 1.11111em;
  width: 100%;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  line-height: 1.3;

  margin-block: var(--leading-trim);
}

.p-recruit-button > span img {
  margin-inline: auto;
}

.p-recruit-button > span::before {
  content: "";
  grid-column: 1/2;
}

.p-recruit-button > span::after {
  content: "";
  position: relative;
  display: block;
  grid-column: 3/4;
  width: calc(12px + var(--slope-1px) * 8);
  height: calc(12px + var(--slope-1px) * 8);
  background: currentColor;

  -webkit-mask-image: var(--icon-arrow);

          mask-image: var(--icon-arrow);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (any-hover: hover) {
  :is(a:hover .p-recruit-button, a.p-recruit-button:hover, button:hover .p-recruit-button, button.p-recruit-button:hover) {
    opacity: .6;
  }
}
