#social-media {
  background-color: #f8f8f8;
  min-height: 90dvh;

  #sec-title {
    .title-text {
      padding: 20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;

      & h1 {
        font-family: "Bayon", sans-serif;
        font-size: 50px;
        color: black;
        text-decoration: underline;
        text-decoration-color: black;
        text-decoration-thickness: 2px;
        text-decoration-style: dotted;
        text-underline-offset: 10px;
      }

      .subtitle-container {
        margin-top: 30px;
        font-size: 18px;
      }
    }
  }

  #sec-sns {
    padding: 48px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    .media-group {
      /* margin: 0 20px; */
      margin-bottom: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 250px;
      border-bottom: 1.5px solid black;
      padding: 0 24px;
      padding-bottom: 32px;

      &:last-child {
        margin-bottom: 0;
        border-bottom: 0;
      }

      .media-group-name {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: "Hiragino Kaku Gothic Pro W6", sans-serif;
      }

      .media-group-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;

        &:last-child {
          margin-bottom: 0;
        }
      }

      .group-media-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 35px;
        row-gap: 20px;

        .media-link-wrap {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          transition: opacity 0.2s;
          border-radius: 50%;

          &.preset {
            padding: 10px;
          }

          &.custom {
            padding: 0px;
          }

          &:hover {
            opacity: 0.8;
          }
        }
      }
    }
  }

  #sec-news {
    padding: 40px 48px 32px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;

    .sec-news-title {
      font-family: "Bayon", sans-serif;
      font-size: 50px;
      color: black;
      text-decoration: underline;
      text-decoration-color: black;
      text-decoration-thickness: 2px;
      text-decoration-style: dotted;
      text-underline-offset: 10px;
      margin-bottom: 32px;
    }

    .news-list {
      list-style: none;
      width: 100%;
      margin: 0;
      padding: 0;

      .news-item {
        margin: 0;
        border-bottom: 1px solid #CCCCCC;

        &:last-child {
          border-bottom: 0;
        }

        a {
          display: flex;
          align-items: baseline;
          gap: 48px;
          padding: 24px 0;
          text-decoration: none;
          color: inherit;
          transition: opacity 0.2s;

          &:hover {
            opacity: 0.8;
          }
        }

        time {
          flex-shrink: 0;
          font-size: 13px;
          color: #666;
        }

        .news-title {
          flex: 1;
          font-size: 15px;
          line-height: 1.4;
        }
      }
    }

    .news-more {
      margin: 20px 0 0;
      font-size: 14px;

      & a {
        color: #fe5000;
        text-decoration: none;

        &:hover {
          text-decoration: underline;
        }
      }
    }

    .news-none {
      color: #666;
      font-size: 15px;
      margin: 0;
    }
  }
}
