body {
    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.5;
    color: #222222;
    background-color: #eeeeee;
    position: relative;
    font-size: 16px;
}

.top{
    background-color: #dddddd;
    height: 1.3rem;
    width: 100%;
    position: fixed;
    z-index: 1000;
}

.header {
    background-color: #addded;
    padding: 0.8rem;
    position: fixed;
    top: 1.3rem;
    width: 100%;
    z-index: 1000;
    display: inline-flex;
}


.headertitlewrapper {
    /*headertitleの位置をabsoluteでいじるために必要*/
    position: relative;
    width: 100%;
    height: 2rem;
    margin-bottom: 0.5rem;
    top: 0;
}

.headertitle {
    font-size: 2.2rem;
    font-weight: bold;
    color: #222222;
    position: absolute;
    left: 3.5rem;
    top: 0rem;
}

.headmenubutcontainer {
    background-color: transparent;
    border: 2px solid black;
    border-radius: 10px;
    padding: 0;
    height: 3rem;
    width: 3rem;
}

.headermenubutton {
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 3rem;
}

.headermenu{
    position: absolute;
    height: 50vh;
    width: 50vw;
    top: 10vh;
    left: 25vw;
    display: none;
    z-index: 1001;
    background-color: #eeeeee;
    border: 2px solid black;
    text-align: center;
}



.footercontainer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #addded;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
}

.footertitle {
    font-size: 1.5rem;
    font-weight: bold;
}

/*以下ログイン、ログアウト関連*/
.login-container {
    position: relative;
}
.reception-numberbox{
    border: 1px solid black;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.login-button {
    background-color: #addded;
    border: 2px solid black;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}




@media(min-width: 1081px) {   /*画面幅が1081px以上のときに適用されるCSS*/
    .guestinfocard-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        scroll-padding-left: 20px;
        padding: 20px;
        height: 60vh;
        position: absolute;
        top: 5rem;

    }

    .guestinfocard {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        width: 40vw;
        padding: 1rem;
        flex-shrink: 0;

    }    /*class=guestinfocard-wrapperの子要素にclass=guestinfocardを適用するとこのCSSが適用できます
            例) <div class="guestinfocard-wrapper">
                    <div class="guestinfocard">...</div>
                </div>*/
}

@media(max-width: 1080px) {
    .guestinfocard-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        scroll-padding-left: 20px;
        padding: 20px;
        height: 45vh;
        position: absolute;
        top: 15vh;

    }

    .guestinfocard {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        width: 80vw;
        padding: 1.3rem;
        flex-shrink: 0;
        font-size: 2rem;
    }
}