/*------------------------------------------

周辺観光アーカイブ

------------------------------------------*/
.s_around_btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  margin: 40px auto;
}

.s_around_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.s_around_btn img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}

.s_around_btn p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  margin: 1rem auto;
}

.s_around_btn p span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8em;
  font-weight: bold;
}

.activity p {
  color: #277FD6;
  letter-spacing: -0.1em;
}
.activity p span {
  background-color: #277FD6;
}

.gourmet p {
  color: #FE7F2C;
}
.gourmet p span {
  background-color: #FE7F2C;
}

.s_around p {
  color: #81B62E;
}
.s_around p span {
  background-color: #81B62E;
}

.sttl {
  font-weight: bold;
  color: #fff;
  background-color: #f6f6f6;
  box-shadow: 0px 0px 0px 8px #f6f6f6;
  border: dashed 1px #fff;
  margin: 0 auto 20px;
  padding: 5px 10px 5px 10px;
  font-size: 26px;
  opacity: 0.9;
}

#activity .sttl {
  background-color: #277FD6;
  box-shadow: 0px 0px 0px 8px #277FD6;
}
#gourmet .sttl {
  background-color: #FE7F2C;
  box-shadow: 0px 0px 0px 8px #FE7F2C;
}
#s_around .sttl {
  background-color: #81B62E;
  box-shadow: 0px 0px 0px 8px #81B62E;
}


@media (max-width: 768px) {
  .s_around_btn_container {
    justify-content: space-around;
    gap: 2%;
  }
  .s_around_btn img {
    width: clamp(110px, 12.941px + 26.961vw, 220px);;
    height: clamp(110px, 12.941px + 26.961vw, 220px);;
  }

  .s_around_btn p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    font-size: clamp(18px, 12.706px + 1.471vw, 24px);
  }

  .sttl {
    width: 84%;
    font-size: 18px;
  }

}