@media only screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

@media only screen and (min-width: 1281px) {
  .only-tab {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .only-tab {
    display: none;
  }
}

.tensou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
  margin: 0 auto;
  padding-bottom: calc(20 * 100vw / 375);
}
@media only screen and (min-width: 769px) {
  .tensou {
    max-width: 1149px;
    padding-bottom: 20px;
  }
}
.tensou__image {
  display: block;
}
.tensou__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 20px);
  max-width: 1000px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #ac1d24;
  margin: 0 auto;
}
.tensou__description p:nth-of-type(1) {
  font-size: 16px;
}
.tensou__description p:nth-of-type(2) {
  font-size: 18px;
  font-weight: bold;
  color: #ac1d24;
}
.tensou__button {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .tensou__button {
    max-width: 700px;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .tensou__button {
    max-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .tensou__button {
    width: 90%;
  }
}