@charset "utf-8";
/* shoplist.css */

.eye-catch {
    width: 100%;
    max-width: 1920px; /* 動画の最大幅 */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

    .eye-catch h1{
        width: 100%;
        height: 100%;
        aspect-ratio: 12 / 5;
        overflow: hidden;
    }

    .eye-catch img{
      position: relative;
      width: 100%;
      height: 100%;
      top: 0;
      object-fit: cover;
    }

  .newslist-container {
    margin:50px auto;
    max-width: 1200px;
  }
  
  h2 {
    font-size:1.5em;
    margin:20px 0;
    padding:0 0 0 10px;
    border-left: 10px solid #e20000;
  }
  
  .news-table {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin:0;
    padding:10px 20px 10px 0px;
    border-bottom:1px dotted #000000;
    color:#000000;
  }

  .news-table::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 1em;   /* arrow size */
    height: 1em;  /* arrow size */
    border-top: 3px solid #000000;  /* thickness, color */
    border-right: 3px solid #000000;
    transform: rotate(45deg);
  }

  a:link {
    color: #000000;
    text-decoration: none;
  }
  a:visited {
    color: #000000;
    text-decoration: none;
  }
  a:active {
    color: #e20000;
    text-decoration: none;
  }


  .news-table .date{
    font-size:0.8em;
  }
  .news-table .title{
    font-size:1em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shop-item.red-bg{
    margin:0;
    padding: 5px 0 5px 5px;
    background:#e20000;
    color:#ffffff;
    font-size:0.8em;
    text-align: left;
  }

  .button-block {
    margin: 20px auto;
    max-width: 1200px;
    text-align: left;
  }

  .more-button {
    margin: 20px auto 0px;
    float:none;
  }
  
  .more-button button {
    background: none;
    border: 2px solid #262626;
    padding: 8px;
    margin-right:10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .more-button button:hover {
    background: black;
    color: white;
  }


  @media (max-width: 480px) {

    .header-bottom .red-line {
        height: 10px;
        background-color: #e20000;
        display: block;
        }
    h2 {
      font-size:1em;
      border-left: 5px solid #e20000;
    }
            
    .newslist-container {
        padding:0px 5%;
      }
    
      .button-block {
        margin: 20px auto;
        padding:0 5%;
        width: auto;
      }
    
    
  }
