@charset "UTF-8";

/* ----------
CONTENT
----------- */
.main_feature-topic:nth-of-type(odd) {
  padding: 4rem 0;
  background-color: #f6f4f3;
}
.feature-topic_set {
  margin-top: 2rem;
}
.feature-topic_set .feature-img img {
  max-width: 100%;
  height: auto;
}
.feature-topic_set .feature-txt p {
  margin: 1rem 0;
}
.feature-topic_set .feature-txt > *:first-child {
  margin-top: 0;
}
.feature-topic_set .feature-txt > *:last-child {
  margin-bottom: 0;
}
.feature-topic_set .feature-txt .list-mark_default li {
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .main_feature-topic .inner {
    padding: 0 1rem;
  }
  .feature-topic_set .feature-txt {
    margin-top: 1rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .feature-topic_set {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .feature-topic_set .feature-img {
    order: 1;
    width: 280px;
  }
  .feature-topic_set .feature-txt {
    order: 2;
    width: 640px;
    line-height: 1.8;
  }
  .main_feature-topic:nth-of-type(even) .feature-topic_set .feature-img {
    order: 2;
  }
  .main_feature-topic:nth-of-type(even) .feature-topic_set .feature-txt {
    order: 1;
  }
}