@charset "utf-8";

/*================
common
================*/
.pc {
    display: block;
}

.sp {
    display: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    background: #ECF4D9;
    color: #644A21;
}

.container {
    padding: 0 5%;
}

.container-l {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

a {
    transition: all ease .3s;
}

a:hover {
    opacity: .8;
}

.link {
    border-bottom: 1px solid #644A21;
}

@media(max-width:960px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .container-l {
        max-width: 600px;
    }
}

/*================
SECTION LOTTERY
================*/
section.lottery {
    background-color: #CCE198;
    padding: 40px 3%;
}

section.lottery dl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

section.lottery dl dt {
    padding: 4px 8px;
    margin-right: 10px;
    background-color: #399861;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

section.lottery dl dd {
    font-weight: 500;
    font-size: 18px;
}

@media screen and (max-width: 960px) {
    section.lottery {
        padding: 20px 3%;
    }

    section.lottery dl {
        display: block;
    }

    section.lottery dl dt {
        margin-right: 0;
        width: fit-content;
        margin: auto;
        font-size: 14px;
    }

    section.lottery dl dd {
        text-align: center;
        padding-top: 10px;
        font-size: 14px;
    }
}

/*================
SECTION MAP
================*/
section.map {
    padding: 40px 0;
}

section.map ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

section.map ul li {
    margin-bottom: 10px;
    list-style-type: none;
    line-height: 1.6em;
    width: calc((100% - 40px)/5);
    font-size: 14px;
    border-bottom: 1px solid #644A21;
    padding-bottom: 5px;
}

.map ul li.maru:before {
    content: "●";
}

.map ul li.star:before {
    content: "★";
}


@media screen and (max-width: 1200px) {
    section.map ul li {
        width: calc((100% - 30px)/4);
    }
}

@media screen and (max-width: 960px) {
    section.map {
        padding: 20px 0;
    }

    section.map ul li {
        width: calc((100% - 20px)/2);
    }
}

@media screen and (max-width: 400px) {
    section.map ul li {
        width: 100%;
    }
}

/*================
FOOTER
================*/
footer {
    padding: 40px 0;
    background-color: #cce198;
}

footer dl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: auto;
}

footer dl dt {
    padding: 4px 8px;
    margin-right: 10px;
    background-color: #399861;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

footer dl dd {
    font-weight: 500;
    font-size: 18px;
}

@media screen and (max-width: 960px) {
    footer {
        padding: 20px 0;
    }

    footer dl {
        display: block;
    }

    footer dl dt {
        margin-right: 0;
        width: fit-content;
        margin: auto;
        font-size: 14px;
    }

    footer dl dd {
        text-align: center;
        padding-top: 10px;
        font-size: 14px;
    }
}