@charset "utf-8";

.selectiontips {
  padding: 40px 0;
}

.selectiontips__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #1c1c1c;
  margin-bottom: 32px;
  width: 100%;
}
.selectiontips__title {
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid #c4c4c4;
  width: 30%;
  
}
.selectiontips_content_title {
  font-weight: bold;
}
.selectiontips_content_comment {
  font-size: 1.3rem;
  line-height: 1.8;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .selectiontips {
      padding-top:40px;
      padding-bottom: 40px;
  }

  .selectiontips:before {
      /* width: 35%; */
      height: 500px;
  }

  .selectiontips_content {
      width: 100%;
  }

  .selectiontips__list {
      border-bottom: 1px solid #c4c4c4;
  }

  .selectiontips__title {
      /* min-width: 90px; */
      padding-top: 14px;
      padding-bottom: 14px;
      width: 100%;
  }
}