.dealer {
  width: 1024px;
  margin-top: 48px;
  margin-bottom: 80px;
}
.dealer .more-btn {
  width: 311px;
  margin: 0 auto;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 16px 0;
  font-weight: bold;
  position: relative;
  border: solid 1px #000;
  cursor: pointer;
  overflow: hidden;
}
.dealer .more-btn p,
.dealer .more-btn svg {
  position: relative;
  z-index: 2;
}
.dealer .more-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.3s;
  transform: translateX(-100%);
  z-index: 0;
  top: 0;
  left: 0;
}
.dealer .more-btn:hover {
  color: #fff;
}
.dealer .more-btn:hover::after {
  transform: translateX(0);
}
.dealer .more-btn--type1:hover > svg path {
  fill: #fff;
}
.dealer .more-btn--type1 > svg {
  position: absolute;
  right: 14px;
}
.dealer .more-btn__right {
  text-align: right;
}
.dealer__top {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
}
.dealer__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 32px;
}
.dealer__text {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 32px;
}
.dealer__shopname {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.dealer__list__item:not(:last-of-type) {
  margin-bottom: 24px;
}
.dealer__list__item p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}