/**
 * SOUND TRAVEL
 */
.main-sound-travel-list {
  
  .section-sound-travel {

    /* 概要 */
    .about-wrap {
      margin-bottom: 32px;
      padding: 24px 32px;
      background-color: var(--color-light-gold);
      @media screen and (min-width:769px) {
        margin-bottom: 64px;
      }
      .about {
        @media screen and (min-width:769px) {
          display: flex;
          flex-flow: row-reverse;
          flex-wrap: wrap;
          justify-content: space-between;
          flex-wrap: nowrap;
          column-gap: 24px;
        }
        /* 画像 */
        .photos {
          width: 100%;
          @media screen and (min-width:769px) {
            max-width: 320px;
          }
        }
        /* 概要 */
        .presenter {
          margin-top: 48px;
        }
      }
    }
    ol {
      margin: 0;
      padding: 0;
      list-style-type: none;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: var(--column-gap);
      row-gap: var(--row-gap);
      @media screen and (min-width:769px) {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }
  /* 配信埋め込み */
  .standfm-embed-iframe {
    height: 190px;
  }
  @media only screen and (max-device-width: 480px) {
    .standfm-embed-iframe {
      height: 230px;
    }
  }

}