@charset "utf-8";
.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-left: auto;
    margin-right: auto;
    padding: 0 0 80px 40px;
    color:#fff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
    /* 　text-shadow: 左右　上下　ボケ具合　色 */

}
.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 {
    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 ;
    overflow: scroll;
    /* 左右の数値が同じ場合は省略できる */
    /* overflow-x　横のスクロール */
    /* overflow-y　縦のスクロール */
}
.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;
}