* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif;
    line-height: 1;
    background-color: grey;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background-color: white;
}

.section {
    width: 100%;
    margin-top: -1px;
    position: relative;
}

.section__image {
    width: 100%;
}

.clickable-area {
    position: absolute;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s;
    /* デバッグ用 */
    /* background-color: rgba(255, 0, 0, 0.2); */
    /* border: 1px dashed red; */
}

.clickable-area:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.clickable-area--mv-product {
    top: 87.5%;
    left: 25%;
    width: 53.5%;
    height: 9%;
}

.clickable-area--closing {
    top: 86%;
    left: 23.5%;
    width: 53%;
    height: 11%;
}