.lazyload {
    opacity: 0;
    transform: scale(0.8);
}

.lazyloaded {
    opacity: 1;
    transform: scale(1);
    transition: all 700ms;
}

.snsArea {
    display: inline-block;
    right: 30px;
    top: 14px;
    position: absolute;
}

.snsfacebook1 {
    display: inline-block;
}

.snsfacebook2 {
    display: none !important;
}

.list-item::after {
    content: "";
    display: block;
    clear: both;
}

ul.ddmenu {
    margin: 0;
    padding: 0 0 0 15px;
}

ul.ddmenu li {
    display: inline-block;
    list-style-type: none;
    position: relative;
}

ul.ddmenu a {
    line-height: 32px;
    text-align: center;
    text-decoration: none;
    display: block;
}

ul.ddmenu a:hover {
    color: #dd0000;
}

ul.ddmenu ul {
    padding: 0;
    display: none;
    position: absolute;
    z-index: 999;
    background-color: #000099 !important;
    width: 101% !important;
}

ul.ddmenu ul li {
    text-align: center !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    padding: 1px !important;
    width: 99% !important;
}

ul.ddmenu ul li a {
    white-space: nowrap;
    line-height: 24px;
    text-align: left;
    padding-left: 5px;
    font-weight: normal;
}

ul.ddmenu ul li a:hover {
    background-color: #ffff80;
    color: #005500;
}

ul.ddmenu ul ul {
    margin: 0px;
    padding: 0px;
    display: none;
    position: absolute;
    top: -1px;
    left: 100%;
    border-left: 1px solid pink;
}

/* ハイライト部分の装飾 */
span.mark1 {
    color: white;
    background-color: red;
}

/* 黄色ハイライト用 */

/*******************************/
/****GeoJsonラベル（背景色赤）**/
/*******************************/
.backred {
    color: #ffffff;
    background: #FF0000;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
}

/*******************************/
/****GeoJsonラベル（背景色無し）**/
/*******************************/
.backnone {
    text-shadow: 2px 2px 1px #000,
    -2px 2px 1px #000,
    2px -2px 1px #000,
    -2px -2px 1px #000;
    color: #ffffff;
    /*background: #FF0000;*/
    font-size: 20px;
    text-align: center;
    padding: 2px 10px;
    border-radius: 4px;
}

.cp_box input[type=checkbox] {
    display: none;
}

.info-list {
    text-align: left;
    padding: 2em;
}


.info-list h2 {
    background-color: #999;
    color: #fff;
    font-weight: bold;
    padding: 10px 10px 10px 45px;
    background-repeat: no-repeat;
    background-position: 10px 50%;
}

.info-list h2.miru {
    background-image: url(http://area-map.com/img/miru.png);
}


.info-list h2.taberu {
    background-image: url(http://area-map.com/img/taberu.png);
}

.info-list h2.tomaru {
    background-image: url(http://area-map.com/img/tomaru.png);
}

.info-list h2.kau {
    background-image: url(http://area-map.com/img/kau.png);
}

.info-list h2.asobu {
    background-image: url(http://area-map.com/img/asobu.png);
}

.info-list h2.onsen {
    background-image: url(http://area-map.com/img/onsen.png);
}

.info-list h2.iryou {
    background-image: url(http://area-map.com/img/iryou.png);
}

.info-list h2.taiken {
    background-image: url(http://area-map.com/img/taiken.png);
}

@media only screen and (max-width: 870px) {
    .snsArea {
        padding: 12px 0 0 0;
        display: block;
        position: initial;
    }
}

@media only screen and (max-width: 580px) {

    #menu_table li {
        width: 32.5%;
        margin: 0 0 0.5% 0.5%;
    }

    #menu_table li a {
        line-height: 32px;
    }

    .snsfacebook1 {
        display: none !important;
    }

    .snsfacebook2 {
        display: inline-block !important;
    }

}

@media only screen and (max-width: 480px) {

    input[type=checkbox] {
        display: inline;
    }

    .cp_box *, .cp_box *:before, .cp_box *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .cp_box {
        position: relative;
    }

    .cp_box label {
        position: absolute;
        z-index: 1;
        bottom: -1rem;
        width: 100%;
        height: 150px; /* グラデーションの高さ */
        cursor: pointer;
        text-align: center;
        background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
    }

    .cp_box input:checked + label {
        background: inherit;
    }

    .cp_box label:after {
        line-height: 1.3rem;
        position: absolute;
        z-index: 2;
        bottom: 30px;
        left: 50%;
        width: 5rem; /*ボタンの大きさを変更できます*/
        font-size: 11px; /*ボタンの文字の大きさを変更できます。*/
        content: '続きをよむ';
        transform: translate(-50%, 0);
        letter-spacing: 0.05em;
        color: #ffffff;
        border-radius: 20px;
        background-color: #000099;
    }

    .cp_box input {
        display: none;
    }

    .cp_box .cp_container {
        overflow: hidden;
        height: 150px; /* 開く前に見えている部分の高さ */
        transition: all 0.5s;
    }

    .cp_box input:checked + label:after {

        content: '閉じる';
    }

    .cp_box input:checked ~ .cp_container {
        height: auto;
        padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
        transition: all 0.5s;
    }
}
