.btn {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 1rem;
  transition: all 0.3s ease;
}
.btn.--arrow--bottom:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  margin-inline-end: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn.--arrow--bottom:hover:after {
  transform: translateY(0.25rem) rotate(135deg);
}
.btn.--arrow--right:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  margin-inline-end: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn.--arrow--right:hover:after {
  transform: translateX(0.25rem) rotate(45deg);
}

.spot {
  font-family: zen-kaku-gothic-antique, sans-serif;
  padding-block-start: 5rem;
  padding-inline: 1rem;
  color: #333333;
}
@media screen and (max-width: 960px) {
  .spot {
    padding-inline: 2vw;
    padding-block-start: 2rem;
  }
}
.spot .main__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  color: #A57C43;
  font-size: clamp(1.25rem, 1.04rem + 0.81vw, 1.75rem);
  position: relative;
  letter-spacing: 0.25rem;
}
.spot__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: clamp(0.625rem, 0.363rem + 1.01vw, 1.25rem);
  margin-block-start: 4rem;
}
.spot__nav a {
  border: 1px solid #A57C43;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: #A57C43;
  font-size: clamp(0.875rem, 0.718rem + 0.61vw, 1.25rem);
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
.spot__nav a.btn:after {
  border-color: #A57C43;
}
.spot__nav a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 960px) {
  .spot__nav a {
    letter-spacing: 0;
  }
  .spot__nav a.btn:after {
    margin-inline-end: 0.5rem;
  }
}
.spot__title {
  font-size: clamp(1.875rem, 1.7042rem + 0.6601vw, 2.125rem);
  border-bottom: 3px solid #BFBFBF;
  position: relative;
  padding-block-end: 32px;
  margin-block-end: 32px;
  letter-spacing: 0.2rem;
}
.spot__title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 22%;
  height: 3px;
  background: #A57C43;
}
.spot__wrap:not(:first-child) {
  margin-block-start: clamp(4rem, 3.16rem + 3.25vw, 6rem);
}
.spot__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 960px) {
  .spot__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 782px) {
  .spot__list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1.5rem;
  }
}
.spot__item {
  display: flex;
  flex-flow: column;
  height: 100%;
  gap: 1.5rem;
}
.spot__item img {
  aspect-ratio: 3/2;
}
.spot__item h4 {
  font-size: clamp(1rem, 0.843rem + 0.61vw, 1.375rem);
}
.spot__item p {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.823rem + 0.2vw, 1rem);
}
.spot__item a {
  background-color: #A57C43;
  color: #fff;
  margin-block-start: auto;
  letter-spacing: 0.15rem;
  border-radius: 6px;
}
.spot__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 782px) {
  .spot__item {
    display: grid;
    grid-template-columns: 40vw 1fr;
    grid-template-rows: 30vw 1fr;
    gap: 1rem;
    padding-block-end: 1.5rem;
    border-bottom: solid 1px #BFBFBF;
  }
  .spot__item img {
    grid-area: 1/1/2/2;
  }
  .spot__item .spot__text__wrapper {
    grid-area: 1/2/3/3;
  }
  .spot__item a {
    grid-area: 2/1/3/2;
    margin-block-start: 0;
    margin-block-end: auto;
  }
}
.spot__text__wrapper {
  display: flex;
  flex-flow: column;
  height: 100%;
  gap: 1.25rem;
}
@media screen and (max-width: 782px) {
  .spot__text__wrapper {
    gap: 1rem;
  }
}