.furusato-wrapper {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  background-color: #f9f9f9;
}

.furusato-card {
  background-color: #ffffff;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.furusato-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  display: inline-block;
  padding-bottom: 10px;
}

.furusato-message {
  font-size: 1.7rem;
  font-weight: bold;
  color: #00bf63;
  line-height: 1.6;
  margin-bottom: 20px;
  background-color: #e6f9f0;
  padding: 15px;
  border-radius: 8px;
}

.furusato-guide {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.furusato-action {
  display: flex;
  justify-content: center;
}

.informationAllViewButton {
  width: 100%;
  max-width: 320px;
}

.informationAllViewButton .button-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}


/* PC */
@media screen and (min-width: 769px) {
.informationAllViewButton .button-primary {
  font-size: 18px !important;
  line-height: 1.4 !important;
  border-radius: 50px !important;
  padding: 15px 30px;
  width: 100%;
}
}

/* モバイル */
@media (max-width: 768px) {
.furusato-wrapper {
    padding: 20px 10px;
}

.furusato-card {
    padding: 25px 15px;
}

.furusato-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.furusato-message {
    font-size: 18px;
}

.furusato-guide {
    font-size: 16px;
}

.informationAllViewButton .button-primary {
  font-size: 16px !important;
  line-height: 1.4 !important;
  border-radius: 50px !important;
  min-height: 50px;
  width: 100%;
}
}