@charset "utf-8";

#vdbanner{
width:0;
height:0;
}

/* =========================
 first-view
========================= */
.first-view{
    height: calc(100vh - 110px);
    background-image: url(../images/index/bg-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: 0 auto;
    padding-left: 40px;
    padding-bottom: 80px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}
.first-view-text h1{
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    line-height: 72px;
}
.first-view-text p{
    font-size: 18px;
    margin-top: 20px;
}
.lead{
    max-width: 1200px;
    margin: 60px auto;
}
.lead p{
    line-height: 2;
    text-align: center;
}
.link-button-area{
    text-align: center;
    margin-top: 40px;
}
.link-button{
    background-color: #f4dd64;
    display: inline-block;
    min-width: 180px;
    line-height: 48px;
    border-radius: 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}
.link-button:hover{
    background-color: #d8b500;
}
/* ここからrecommended */
.recommended{
    background-color: #f8f8f8;
    padding: 45px 0 55px;
}
.recommended h2{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
.recommended h2::after{
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin: 20px auto 0;
}
.item-list{
    display: flex;
    padding: 40px 60px 10px 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 .price{
    font-weight: bold;
    margin-top: 15px;
}

/* =========================
 レスポンシブ
========================= */
@media (max-width: 520px) {
    .first-view{
    height: calc(60vh -80px);
}
.first-view-text{
    font-size: 1rem;
    margin: 0 auto;
    padding: 0 0 80px 40px;
}
.first-view-text h1{
    font-size: 2.5rem;
    line-height: 1.3;
}
.first-view-text p{
    font-size: 0.8rem;
    margin-top: 20px;
}
.lead{
    max-width: 100%;
}
.lead p{
    font-size: 0.7rem;
    line-height: 2.3;
}
.link-button{
    font-size: 0.8rem;
    font-weight: bold;
}
.recommended h2{
    font-size: 1.3rem;
}
.item-list{
    display: flex;
    padding: 40px 20px 10px 40px;
    overflow: scroll;
}
.item-list li{
    width: 180px;
}
.item-list dd{
    font-size: 0.7rem;
    line-height: 2;
}
.item-list .price{
    font-weight: bold;
    margin: 15px 0 40px 0;
}

}