@charset "utf-8";

body {
    /* font-family: 'Montserrat', 'Noto Sans JP', sans-serif; */

    background-color: #eeeeee;
}

img {
    /* margin: 0 auto; */
    display: block;
    margin: 0 auto;
}


#mainImg {
    position: relative;
}

.pdf_set {
    position: absolute;
    /* 親要素を基準に絶対指定  */
    display: flex;
    justify-content: space-evenly;
    top: 600px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgb(255, 112, 112); */
    /* border-radius: 10%; */
    /* padding: 5px; */
}

li {
    padding: 5px;
}

a {
    /* display: block; */
    /* text-align: center; */
    text-decoration: underline;
    padding: 5px;
    border-radius: 5px;
    background-color: rgb(191, 212, 0);
    color: white;
    font-weight: bold;
    width: 300px;
    /* border: solid 1px black;} */
}

a:hover {
    color: blue;
}

@media (max-width:786px) {
    img {
        width: 100%;
    }

    .pdf_set {
        /* display: block; */
        top: 40%;
        font-size: 12px;
        width: 100%;
    }

}