:root {
    --backgroundColor: rgba(254, 238, 255, 0.897);
    --symbolColor: #f58341;
    --symbolFontColor: #fafafa;
    --headerGradation: linear-gradient(to bottom right,
            var(--symbolColor),
            #ffd448);
    --titleColor: #f7ff8e;
    --backgroundImage: url(../image/naiyou.gif);

    --fontName: "Sawarabi Gothic";
    --titleFontName: "Delius Unicase";
    --fontColor: rgb(5, 1, 22);
}

body {
    color: var(--fontColor);
    font-family: var(--fontName);

    background-color: var(--backgroundColor);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1em;
    background: var(--backgroundImage);
}

p{
    margin: 0;
    padding:0;
}

image {
    border: 0;
}



/* #wrapper {
    background: var(--backgroundImage);
} */

#header {
    margin: 0 0 1rem 0;
    vertical-align: middle;
    background: var(--headerGradation);
    padding-left: 1rem;
}

#header a {
    color: var(--titleColor);
    font-size: 2.8rem;
    font-weight: bold;
    font-family: var(--titleFontName);
    text-decoration: none;

    text-shadow: rgb(39, 37, 29) 1px 0 10px;
}

#header a :visited {
    color: var(--titleColor);
}

.sideCaption {
    background-color: rgba(228, 133, 69, 0.5);
    margin-bottom: 8px;
    text-align: center;
}



#spacer {
    clear: both;
    height: 100px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222120;
    color: rgb(216, 209, 209);
    text-align: center;
    padding: 10px 0;
}

.outBox {
    display: flex;
    gap: 8px;
}

#mainArea {
    flex: 3;
}

#sideArea {
    flex: 1;
}

#mainArea img {
    width: 200px;
}



.productBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-evenly;
}

.product {
    width: 240px;

    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    background-color: rgb(255, 234, 187);
    padding: 8px;

    display: flex;
    justify-content: center;
    justify-items: stretch;
    flex-direction: column;
    text-align: center;
    font-size: small;
}

.product a {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

#coconala {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

#coconala iframe {
    scale: 0.8;
    margin-left: -12px;
}

.coconalaBox {
    padding: 8px;
    width: 240px;
    background-color: rgb(255, 234, 187);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
}