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

.newsdetail-container {
  margin:50px auto;
  max-width: 1200px;
}

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

    .eye-catch h1{
        width: 100%;
        height: 100%;
    }

    .eye-catch img{
      position: relative;
      width: 100%;
      height: 100%;
      top: 0;
      object-fit: cover;
    }
  
  h2 {
    font-size:1.5em;
    margin:20px 0;
    padding:0 0 0 10px;
    border-left: 10px solid #e20000;
  }

  .article {
    width:100%;
    margin: 20px 0 0 0px;
    padding: 0px 0 20px 0;
    font-size: 1em;
    line-height: 1.8em;
    border-bottom:2px dotted #000000;
  }

  .article a:link {
    color: #e20000;
    text-decoration: none;
  }
  .article a:hover {
    color: #000000;
    text-decoration: none;
  }
  .article a:visited {
    color: #e20000;
    text-decoration: none;
  }
  .article a:active {
    color: #000000;
    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-top: 20px;
    text-align:left;
    float: left;
  }
  
  .more-button a {
    display: block;
    background: none;
    border: 2px solid #262626;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .more-button a:hover {
    background: black;
    color: white;
  }

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

  @media (max-width: 480px) {

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

    .article{
      width: auto;
      font-size: 0.8em;
      padding:0px 5% 20px;
    }

    .more-button button {
      font-size: 0.8em;
    }
    
  }
