@charset "UTF-8";
@media all {
/* ========================================================================
 Component: AD
 ========================================================================== */
 #npl-content-footer {
    letter-spacing: 0;
    border: 1px solid rgba(0,0,0,.1);
    margin: 0 0 16px;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 5px;
  }

  #npl-content-footer .toplink {
    display: flex;
    justify-content: space-between;
    height: 28px;
    padding: 0 12px;
    background-color: rgba(0,0,0,.03);
  }

  #npl-content-footer .toplink-group {
    display: flex;
    align-items: center;
  }

  #npl-content-footer .toplink-group a {
    color: #666;
    font-size: 12px;
  }

  #npl-content-footer .powerlink_title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
  }

  #npl-content-footer .tag_comps {
    margin-left: 8px;
    padding: 0 2px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 2px;
    font-size: 9px;
    color: #666;
  }

  #npl-content-footer .powerlink_list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 126px;
  }

  #npl-content-footer .list_item {
    flex: 1;
  }

  #npl-content-footer .list_item:last-child {
  }

  #npl-content-footer .list_cont {
    display: flex;
    align-items: center;
    padding: 6px 10px;
  }

  #npl-content-footer .thumbnail_wrap {
    margin-right: 8px;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  #npl-content-footer .content_wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  #npl-content-footer .tit_wrap {
    overflow: hidden;
  }

  #npl-content-footer .tit {
    display: block;
    color: #333;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  #npl-content-footer .url_area {
    overflow: hidden;
  }

  #npl-content-footer .url {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
    font-size: 12px;
  }

  #npl-content-footer .desc.down {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
    font-size: 11px;
  }

  .list_item.template {
    display: none;
  }

  @media screen and (min-width: 1024px) {
    #npl-content-footer .powerlink_list {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
    }

    #npl-content-footer .url {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      white-space: normal;
      word-break: break-all;
    }

    #npl-content-footer .desc.down {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      white-space: normal;
    }

    #npl-content-footer .list_item {
      flex: 1 1 0;
      width: 0;
    }

    #npl-content-footer .list_item:last-child {
    }

    #npl-content-footer .list_cont {
      align-items: flex-start;
    }
  }

  @media screen and (max-width: 1023px) {
  }

  @media screen and (max-width: 728px) {
    #npl-content-footer .list_cont {
      flex-direction: row-reverse;
      gap: 10px;
    }

    #npl-content-footer .thumbnail_wrap {
      margin-right: 0;
    }
  }

  #npl-content-footer .ad-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
  }

  #npl-content-footer .menu_list {
    list-style: none;
    padding: 0;
  }

  #npl-content-footer .menu_item {
    position: relative;
    float: left;
    margin: 0;
    list-style: none;
  }

  #npl-content-footer .menu_item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 2px;
    margin-top: -1px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.3);
  }

  #npl-content-footer .menu_item:first-child:before {
    display: none;
  }

  #npl-content-footer .menu_item_link {
    display: inline-block;
    padding: 0 4px 0 6px;
    color: #0068c3;
    font-size: 11px;
    line-height: 1.25;
  }

  #npl-content-footer .menu_item:first-child .menu_item_link {
    padding-left: 0;
  }

  #npl-content-footer .skeleton-box,
  #npl-content-footer .skeleton-text {
    background: linear-gradient(
      110deg,
      #f5f5f5 8%,
      #eeeeee 18%,
      #f5f5f5 33%
    );
    background-size: 200% 100%;
    animation: shine 1.5s linear infinite;
  }

  #npl-content-footer .skeleton-box {
    width: 64px;
    height: 64px;
    border-radius: 5px;
  }

  #npl-content-footer .skeleton-text {
    height: 1em;
    border-radius: 3px;
  }

  @keyframes shine {
    0% {
      background-position-x: 200%;
    }
    100% {
      background-position-x: -200%;
    }
  }

  #npl-content-footer.loaded .skeleton-box,
  #npl-content-footer.loaded .skeleton-text {
    display: none;
  }
