@charset "utf-8";

/* ファーストビュー */
.first-view {
    min-height: 500px;
    height: 60vh;
    background-image: url(../images/bg_main.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #2f2f2f;
}

.first-view-text {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
    color: #000000;
    font-weight: bold;
    text-shadow:
        0 0 10px #ffffff,
        0 0 20px #ffffff,
        0 0 30px #ffffff,
        0 0 40px #ffffff;
}

.first-view-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    line-height: 1.3;
}

.first-view-text p {
    font-size: 20px;
    margin-top: 20px;
}

/* リード文 */
.lead {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.lead p {
    line-height: 2;
    text-align: center;
}

/* リンクボタン */
.link-button-area {
    text-align: center;
    margin-top: 40px;
}

.link-button {
    background-color: #f4dd64;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: background-color .3s ease;
}

.link-button:hover,
.link-button:focus-visible {
    background-color: #d8b500;
}

/* 今週のパスタ */
.weekly-pasta {
    background-color: #f8f8f8;
    padding-top: 45px;
    padding-bottom: 55px;
}

.weekly-pasta h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.weekly-pasta h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin: 20px auto 0;
}

/* パスタ一覧 */
.item-list {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 20px 10px;
    max-width: 960px;
    margin: 0 auto;
}

.item-list li {
    flex: 1;
    max-width: 320px;
    margin: 0;
}

.item-list li img {
    width: 100%;
    height: auto;
    display: block;
}

.item-list dl {
    margin-top: 15px;
}

.item-list dt {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.item-list dd {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 10px;
    color: #444444;
}

.price {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
}

.price-note {
    max-width: 1200px;
    margin: 15px auto 30px;
    padding: 0 20px;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* レスポンシブ */
@media (max-width: 800px) {

    .first-view {
        height: calc(100vh - 50px);
        height: calc(100svh - 50px);
        min-height: 400px;
        align-items: flex-start;
    }

    .first-view-text {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        text-shadow:
            0 0 8px #ffffff,
            0 0 15px #ffffff,
            0 0 22px #ffffff;
    }

    .first-view-text h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .first-view-text p {
        font-size: 14px;
        margin-top: 15px;
    }

    .lead p {
        text-align: left;
    }

    .item-list {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 30px 20px;
    }

    .item-list li {
        width: 100%;
        max-width: 340px;
    }
}