@charset "utf-8";

.first-view{
    height: calc(100vh - 110px);
    background-image: url(images/index/main.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.first-view-text{
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-top: 60px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1{
    font-family: 'Montserrat',sans-serif;
    font-size: 35px;
    line-height: 72px;
}

.first-view-text p{
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
}

.lead{
    max-width: 1200px;
    margin: 60px auto;
}

.lead p{
    line-height: 2;
    text-align: center;
    color: #333;
}

 /* 新着情報ここから*/
.news-list{
    list-style: none outside;
    margin: 0;
    padding: 0;
  }
  .news-list .item a{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    padding: 20px 20px;
  }

  .news-list .item .date{
    margin: 0;
    min-width: 140px;
    font-size: 16px;
    color: #999;
    padding: 0 20px 0 0;
  }
  .news-list .item .category{
    margin: 0;
    min-width: 140px;
    padding: 0 20px 0 0;
  }
  .news-list .item .category span{
    background: #999;
    color: #FFF;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
  }
  .news-list .item .title{
    margin: 0;
    width: 100%;
    text-align: left;
  }
  .news-list .item a:hover .title{
    color: #d8b500;
  }
  
  @media screen and (max-width: 767px){
  .news-list .item a{
    flex-wrap: wrap;
  }
  .news-list .item .date{
    min-width: 100px;
  }
  .news-list .item .title{
    margin-top: 10px;
  }
  }
  
  /* 装飾 */
   
  *{
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }
  body{
    margin: 20px;
  }
 /* 新着情報ここまで*/

.under {
    border-bottom: dotted 2px #fad287;
}

.link-button-area{
    text-align: center;
    margin-top: 40px;
    padding-bottom: 55px;
}

.link-button{
    background-color: #f4dd64;
    display: inline-block;
    min-width: 120px;
    line-height: 48px;
    border-radius: 24px;
    font-family: 'Montserrat' sans-serif;
    font-size: 15px;
}

.link-button:hover{
    background-color: #d8b500;
}

.product-line-up{
    background-color: #f5f7d7;
    padding-top: 45px;
    padding-bottom: 55px;
}

.product-line-up h2{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.product-line-up h2::after{
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.item-list{
    display: flex;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    overflow: scroll;
}

.item-list li{
    flex-shrink: 0;
    width: 260px;
    margin-left: 75px;
}

.item-list li:first-child{
    margin-left: 0;
}

.item-list dl{
    margin-top: 20px;
}

.item-list dt{
    font-weight: bold;
}

.item-list dd{
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.item-list

.shop h2{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.shop h2::after{
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}    

@media(max-width: 800px){
    .first-view {
        height: calc(100vh-50px);
        background-image: url(images/index/main.jpg);
        align-items: flex-start;
    }
    
    .first-view-text{
        padding-top: 60px;
        padding-left: 20px;
    }
    
    .first-view-text h1{
        font-size: 26px;
        line-height: 48px;
    }
    
    .first-view-text p{
        font-size: 14px;
        margin-top: 50px;
        line-height: 20px;
    }
    
    .lead{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .lead p{
        text-align: left;
    }
    
    .item-list{
        padding-left: 20px;
        padding-right: 20px;    
    }
    
    .item-list li{
        width: 220px;
        margin-left: 30px;
    }
}