@charset "utf-8";

.first-view {
    height: calc(100vh - 100px);
    background-image: url(../images/index/bg-main.png);
    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: 20px;
    margin-right: 20px;
    padding-left: 40px;
    padding-right: 80px;
    padding-bottom: 500px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
    font-size: 30px;
    padding-bottom: 10px;
}

.first-view-text p {
    font-size: 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: #B5CAA0;
    color: #fff;
    display: inline-block;
    min-width: 180px;
    line-height: 50px;
    border-radius: 30px;
}

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

.days {
    background-color: #f8f8f8;
    padding-top: 45px;
    padding-bottom: 45px;
}

.days h2 {
    text-align: center;
}

.days h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}

.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 img {
    border-radius: 2%;
}

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

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

.item-list dd {
    line-height: 20px;
    margin-top: 10px;
    text-align: center;

}

@media (max-width: 800px) {
    .first-view {
        height: calc(100vh - 50px);
    }

    .lead {
        padding-left: 20px;
        padding-right: 20px;
    }

    .days h2 {
        font-size: 20px;
    }

    .item-list {
        padding-left: 20px;
        padding-right: 20px;
    }

    .item-list li {
        width: 220px;
        margin-left: 20px;
    }

}