/* main */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    display: block;
    background-image: url(../img/cafe-hero.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.hero {
    width: 100%;

    padding: 0 5%;
    margin: 20px auto 100px;
    background-color: rgba(51, 51, 51, 0.837);
}
.slider .item a{
  width: 90%;
    height: fit-content;
   
}
@media screen and(min-width:600px) {
.slider .item a{
    display: block;
    width: 77%;
    height: 80vh;
    margin: 0 auto;
}
}    
.innermain {
    width: 100%;
    margin: 0 auto;
}

.gedan {
    margin: 0 auto 50px;
}
#schedule {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
#schedule img {
    width: 95%;
    max-width: 600px;
}
#schedule .schetxt {
    width: 70%;
    position: absolute;
    top: 30%;
    left: 16%;
    font-size: 100%;
}
#schedule dl {
    width: 95%;
    max-width: 500px;
}
#schedule dd {
    border-bottom: 2px solid;
}
.link {
    padding: 40px;
    margin: 0 auto;
}

.link a {
    display: flex;

    align-items: center;
    justify-content: center;
    background-color: rgb(85, 2, 2);
    border: 7px groove rgb(190, 158, 50);
    border-radius: 8px;
    width: 70%;
    height: 150px;
    margin: 20px auto;
    text-align: center;
    font-size: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
.link a:hover {
    background-color: rgb(116, 3, 3);
    border-color: rgb(255, 222, 113);
}
@media screen and (min-width: 830px) {
    .gedan {
        display: flex;
        gap: 20px;
    }
    #schedule {
        position: relative;
        width: 50%;
    }
    #schedule img {
        width: 100%;
    }
    #schedule .schetxt {
        width: 70%;
        position: absolute;
        top: 30%;
        left: 20%;
        font-size: 130%;
    }
    #schedule dl {
        width: 80%;
        max-width: 500px;
    }

    .link {
        width: 50%;
        padding: 50px 50px 60px 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .link a {
        font-size: 2.3em;
    }
}
/* main end */
