@charset "UTF-8";
@import url(hamburger.css);

body {
    margin: 0;
}


p {
    max-width: 640px;
    margin: 16px auto;
}

.pc {
    display: none;
}

.sp {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
}

@media (min-width: 750px) {
    .pc {
        display: block;
        width: 100%;
        object-fit: cover;
        object-position: 50% 40%;
        height: 500px;
    }
    .sp {
        display: none;
    }
}

.rakuten {
    text-align: center;
    border: solid 3px rgb(50,134,95);
    border-radius: 10px;
    width: 40%;
    max-width: 320px;
    margin: 0 auto;
    margin-bottom: -80px;
    background-color: white;
    position: absolute;
    top: 16px;
    left: 16px;
}

.rakuten img{
    width: 60%;
    max-width: 320px;
    margin-top: 32px;
}

.rakuten p{
    margin: 0;
    font-weight: bold;
    font-size: 10px;
}
/*******************************
about
*/

#about img {
    width: 90%;
    margin: 0 -16px 0 auto;
    display: block;
    max-width: 500px;
}

@media screen and (min-width: 900px) {
    #about {
        position: relative;
        z-index: 40;
        margin-top: 180px;
    }

    #about img {
        position: absolute;
        top: -4%;
        right: 0;
        width: 50%;
        z-index: -10;
        margin: 0;
    }

    #about .text-box {
        width: 80%;
        max-width: 800px;
        display: block;
        background: rgba(255,255,255,.5);
        padding: 16px;
        margin-top: 64px;
    }

    #about .button_2 {
        margin: 16px auto 16px 0;
    }
}

@media screen and (min-width: 1300px) {
    #about img {
        top: -2%;
        right: 32px;
    }
}

/*******************************
campaign
*/

#campaign {
    position: relative;
}

#campaign .green_back {
    position: absolute;
    width: 150%;
    top: 0;
    right: 0;
    z-index: -10;
    height: 720px;
}

#campaign .item {
    background: white;
    border-radius: 0 36px 36px 36px;
    padding: 16px;
    margin: 16px auto;
    max-width: 400px;
    box-sizing: border-box;
}

#campaign .item img {
    width: 100%;
}

#campaign .item:hover img{
    opacity: 0.6;
    transition-duration: 0.3s;
}

#campaign .item h3 {
    margin: 4px 0;
}

#campaign .item div {
    color: gray;
    font-weight: bold;
}

@media screen and (min-width: 900px) {
    #campaign .green_back {
        width: 100%;
    }
}

/********************************
accommodation
*/

#accommodation {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 60px;
}

#accommodation h2 {
    margin: 0 16px;
}

#accommodation .item {
    position: relative;
}

#accommodation .gray-box {
    background: rgb(246,246,246);
    padding: 8px 16px 64px;
    margin: 20px 0 0;
}

#accommodation .green-box {
    background: rgb(142,253,198);
    padding: 8px 16px 64px;
    margin: 48px 0 0;
}

#accommodation .item h3 {
    font-size: 1.5em;
    line-height: 1.2em;
    color: black;
}

#accommodation .sub-headding {
    font-size: 1.3em;
    font-weight: bold;
    margin: 48px 0 0 16px;
    z-index: 30;
    position: absolute;
    top: -64px;
    left: 16px;
}

#accommodation .item h3 span {
    font-size: 1rem;
    color: rgb(50,134,95);
}

#accommodation .sub-headding span {
    color: rgb(50,134,95);
}

#accommodation .img-wrapper {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

#accommodation .item .text-box {
    background: white;
    padding: 2px 16px;
}

#accommodation img {
    width: 90%;
    margin: -48px 16px 0;
    border-radius: 0 36px 36px 36px;
    box-shadow: 8px 8px 10px rgba(150,150,150,.2);
    max-width: 400px;
}

@media screen and (min-width: 900px) {
    
    #accommodation .item-wrapper {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    #accommodation .item {
        width: 45%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    #accommodation .sub-headding {
        top: -16px;
    }

    #accommodation .item .text-box {
        height: 60%;
    }

    #accommodation .gray-box,
    #accommodation .green-box {
        flex-grow: 1;
    }
}

.text-box_terao {
    background-color: white;
    padding: 2px 16px;
}

/*****************************
お知らせ
*/

#news {
    position: relative;
}

#news .news_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 64px);
    z-index: -10;
    margin: 0;
}

#news dt {
    color: rgb(50,134,95);
    margin: 16px 0 0;
}

#news dt span {
    color: rgb(152,150,150);
    border: solid 1px rgb(152,150,150);
    width: 100px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    margin: 0 16px;
}

#news dd {
    margin: 0 0;
    padding: 8px 16px 16px;
    font-size: 1.125em;
    border-bottom: dashed white;
    font-weight: semi-bold;
}

@media screen and (min-width: 640px) {

    #news dl > div {
        display: flex;
        border-bottom: dashed white;
    }

    #news dl dt {
        width: 35%;
        text-align: right;
        margin-right: 16px;
    }

    #news dl dt span {
        margin: 0 8px;
    }

    #news dl dd {
        width: 65%;
        border-bottom: none;
    }
}