@charset "UTF-8";
html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

main *{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    width: 100%;
    max-width: 750px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-start;
}

section#cart{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

section#cart a,
section#cart a:link,
section#cart a:visited,
section#cart a:hover{
    position: absolute;
    top: auto;
    right:0;
    bottom: 29%;
    left: 0;
    margin: 0 auto;
    animation: fuwafuwa both 1.5s infinite linear;
}


@keyframes fuwafuwa{
    0%{
        width: 75%;
    }

    50%{
        width: 96%;
    }

    100%{
        width:75%;
    }
}

dl#spec{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 3% auto;
}

dl#spec *{
    border: 1px solid #343434;
    padding: 1%;
    margin: 0;
    font-size: clamp(14px,1vw,18px);
    line-height: clamp(20px,1.5vw,26px);
}

dl#spec *:not(:last-child){
    border-bottom: none;
}

dl#spec dt{
    width: 24%;
    background: #808080;
    color: #FFF;
    border-right: none;
}

dl#spec dd{
    width: calc(100% - 24%);
    color: #343434;
}

.float{
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.8);
    display: none;
}

.float img{
    width: 96%;
    margin: 0 auto;
    height: auto;
}
