/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*==================================================
contact
==================================================*/
.contact {
  padding-bottom: 10rem;
}
.contact-flow {
  margin: 6rem auto 0;
  max-width: 44rem;
}
@media all and (max-width: 768px) {
  .contact-flow {
    margin-top: 4rem;
  }
}
.contact-flow__lists {
  counter-reset: decimal;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  z-index: 0;
}
.contact-flow__lists::after {
  background-color: var(--border-color);
  bottom: 0;
  content: "";
  height: 0.1rem;
  left: 7.5rem;
  position: absolute;
  width: calc(100% - 15rem);
}
@media all and (max-width: 768px) {
  .contact-flow__lists::after {
    left: 6.5rem;
    width: calc(100% - 13rem);
  }
}
.contact-flow__list {
  color: var(--border-color);
  counter-increment: decimal;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 1;
  padding-bottom: 2.3rem;
}
.contact-flow__list::before {
  content: counter(decimal, decimal-leading-zero);
  display: block;
  font-size: 4rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.contact-flow__list::after {
  background-color: currentColor;
  bottom: -0.2rem;
  content: "";
  height: 0.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2.4rem;
  z-index: 2;
}
.contact-flow__list.-current {
  color: var(--main-color);
}
.contact-form {
  margin-top: 6rem;
}
@media all and (max-width: 768px) {
  .contact-form {
    margin-top: 4rem;
  }
}
.contact-form__submit {
  margin-top: 6rem;
  text-align: center;
}
.contact-form__submit .m-btn {
  letter-spacing: 0.1em;
}
.contact-card {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.6rem rgba(142, 126, 102, 0.3);
  display: grid;
  grid-template-columns: 1fr 56rem;
  margin-top: 6rem;
  overflow: hidden;
}
@media all and (max-width: 1280px) {
  .contact-card {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 768px) {
  .contact-card {
    margin-top: 4rem;
  }
}
.contact-card + .contact-card {
  margin-top: 3.2rem;
}
@media all and (max-width: 768px) {
  .contact-card + .contact-card {
    margin-top: 2.4rem;
  }
}
.contact-card__img {
  object-fit: cover;
  width: 100%;
}
@media all and (min-width: 1281px) {
  .contact-card__img {
    aspect-ratio: 420/240;
    height: 100%;
  }
}
@media all and (max-width: 1280px) {
  .contact-card__img {
    height: 32rem;
  }
}
@media all and (max-width: 768px) {
  .contact-card__img {
    height: 18rem;
  }
}
.contact-card__body {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}
@media all and (max-width: 1280px) {
  .contact-card__body {
    display: block;
    padding: 2rem;
  }
}
.contact-card__ttl-wrap {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 6rem 1fr;
  margin-bottom: 1rem;
}
.contact-card__ttl {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.45;
}
@media all and (max-width: 768px) {
  .contact-card__ttl {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.contact-card__lists {
  display: grid;
  font-size: 1.5rem;
  gap: 0.8rem;
  line-height: 1.2;
  margin-top: 1.6rem;
}
.contact-card__list {
  align-items: center;
  border-bottom: 0.1rem solid var(--border-color);
  display: grid;
  gap: 1rem;
  grid-template-columns: 10rem 1fr;
  padding: 0 0.8rem 1rem 0.8rem;
}
@media all and (max-width: 768px) {
  .contact-card__list {
    grid-template-columns: 8rem 1fr;
  }
}
.contact-card__list-ttl {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
}
.contact-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.contact-card__tag {
  border-radius: 0.8rem;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  line-height: 1.4;
  min-width: 6rem;
  padding: 0.4rem 1rem;
}
.contact-card__tag.-new {
  background-color: var(--gray-lt);
}
.contact-card__tag.-used {
  background-color: var(--body-color);
  color: #fff;
}
.contact-card__tag.-main {
  background-color: var(--main-color);
  color: #fff;
}
.contact-card__tag.-red {
  background-color: var(--red);
  color: #fff;
}
.contact-card__tag.-second {
  min-width: 8.6rem;
  padding-inline: 0;
}
@media all and (max-width: 768px) {
  .contact-card__tag.-second {
    min-width: 7.6rem;
  }
}
.contact-card__tag.-last {
  min-width: 7.2rem;
  padding-inline: 0;
}
@media all and (max-width: 768px) {
  .contact-card__tag.-last {
    min-width: 6.4rem;
  }
}
.contact-card__type {
  display: grid;
  gap: 0.4rem;
}
.contact-card__type-ico {
  width: 100%;
}
.contact-card__type-name {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  text-align: center;
}
.contact-card__shop {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media all and (max-width: 768px) {
  .contact-card__shop {
    display: flex;
    gap: 0.8rem;
  }
}
.contact-card__price {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.3;
}
.contact-card__price-ttl {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
}
.contact-card__price-num {
  color: var(--red);
  font-weight: var(--font-weight-bold);
  margin-left: auto;
}
.contact-card__price-yen {
  font-size: 2.2rem;
}
@media all and (max-width: 768px) {
  .contact-card__price-yen {
    font-size: 2rem;
  }
}
.contact-card__price-tax {
  font-size: 1.4rem;
}
.contact-card__detail {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  margin-top: auto;
}
@media all and (max-width: 768px) {
  .contact-card__detail {
    display: block;
  }
}

@media all and (max-width: 768px) {
  .l-footer__copy {
    padding-bottom: 1rem;
  }
}
.l-footer-nav {
  display: none;
}