.furusato-guide__step {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 1rem;
}

.furusato-guide__step-title-box {
  position: relative;
  padding: 15px 0;
}

.furusato-guide__step-step {
  position: relative;
  display: inline-block;
  padding: 0 25px;
  color: var(--color-furusato-blue);
  font-weight: 600;
}

.furusato-guide__step-step::before,
.furusato-guide__step-step::after {
  content: '';
  position: absolute;
  top: 7px;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-furusato-blue);
}
.furusato-guide__step-step::before {
  left: 0;
}
.furusato-guide__step-step::after {
  right: 0;
}

.furusato-guide__step-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.furusato-guide__step-description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

.furusato-guide__step-description--mb {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .furusato-guide__step-description {
    font-size: 16px;
    text-align: center;
  }
  .furusato-guide__step-description span {
    display: block;
  }
}

.furusato-guide__step1-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 15px;
  margin: 0 auto;
  border-radius: 24px;
  background-color: var(--color-furusato-blue);
  color: var(--color-white);
  text-decoration: none;
}

.furusato-guide__step1-button-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.furusato-guide__step1-button-subtitle {
  font-size: 12px;
}
.furusato-guide__step1-button-title {
  font-size: 16px;
}

@media (min-width: 768px) {
  .furusato-guide__step1-button {
    max-width: 500px;
  }
}

/* step2  */
/* 「うれしいポイント」部分 */
.furusato-guide__step2-happypoints-wrapper {
  margin: 0 -16px;
}

.furusato-guide__step2-happypoints {
  padding: 1rem;
  background-color: #fff8ef;
  margin: 0 auto;
}

.furusato-guide__step2-happypoints-title-wrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.furusato-guide__step2-happypoints-title {
  font-size: 14px;
  font-weight: 600;
}

.furusato-guide__step2-happypoints-title span {
  font-size: 24px;
  line-height: 1.2;
  display: block;
}

.furusato-guide__step2-happypoints-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.furusato-guide__step2-happypoints-image {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .furusato-guide__step2-happypoints-title {
    max-width: 800px;
  }
  .furusato-guide__step2-happypoints {
    padding: 1rem 40px;
    max-width: 800px;
  }
}

.furusato-guide__happypoints-content__subtitle {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.furusato-guide__happypoints-content__subtitle span {
  font-size: 22px;
}

.furusato-guide__happypoints-content__subtitle::before {
  content: '・';
  display: inline-block;
}

.furusato-guide__happypoints-content__wrapper {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
}

.furusato-guide__happypoints-content__image-wrapper {
  display: block;
  width: 115px;
  height: 115px;
  margin-right: 16px;
  flex-shrink: 0;
}

.furusato-guide__happypoints-content__text-wrapper {
  display: block;
}

.furusato-guide__happypoints-content__description {
  margin: 0 auto;
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 768px) {
  .furusato-guide__happypoints-content__image-wrapper {
    margin-right: 26px;
  }

  .furusato-guide__happypoints-content__description {
    max-width: 600px;
  }

  .furusato-guide__happypoints-content__description span {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .furusato-guide__happypoints-content__wrapper {
    margin-bottom: 15px;
  }
}

/* step3 */
.furusato-guide__step3-notice {
  display: block;
}

.furusato-guide__step3-onestop-table {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  position: relative;
}

.furusato-guide__step3-onestop-table-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (min-width: 768px) {
  .furusato-guide__step3-onestop-table-icon {
    right: 80px;
  }
}

.furusato-guide__description-table {
  border: 1px solid var(--color-furusato-blue);
}

.furusato-guide__description-table th {
  padding: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-furusato-blue);
}

.furusato-guide__description-table td {
  padding: 1rem;
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
}

.furusato-guide__description-table--gray {
  border: 1px solid #e3e3e3;
}

.furusato-guide__description-table--gray th {
  color: #4a4a4a;
  background-color: #e3e3e3;
}

@media (min-width: 768px) {
  .furusato-guide__description-table td {
    font-size: 1rem;
  }
}

.furusato-guide__onestop-text-wrapper {
  margin: 24px 0;
  text-align: left;
}

.furusato-guide__onestop-heading {
  font-weight: 600;
  margin-bottom: 8px;
}

.furusato-guide__onestop-text-bold {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.furusato-guide__onestop-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.furusato-guide__onestop-button-wrapper {
  margin: 1rem 0;
  max-width: 800px;
}

@media (min-width: 768px) {
  .furusato-guide__onestop-button-wrapper {
    margin: 1rem auto;
  }
}
