@charset "UTF-8";


/*===============================================

画面の横幅が900px以上（パソコン用）

===============================================*/

@media screen and (min-width: 480px),print{

html{
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    min-width: 900px;
  max-height: 100%;
  position: relative;
    }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
    line-height: 2;
    color: #000;
    margin: 0px;
    padding: 0px;
  max-height: 100%;
    text-align: center;
    background-color: transparent;
    /*スマホで勝手に文字が大きくなる対策*/
    -webkit-text-size-adjust: 100%;
}

a {
    color: #002b55;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

a:hover {
    color: #A51A91;
    text-decoration: none;
    }


/*コンテナー
---------------------------------------------------------------------------*/
#container {
    text-align: left;
    width: 100%;
    margin-right: 0rem;
    margin-left: 0rem;
    border: none;
    background-color: #000;
}

    header{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100000;
    }
    header .header_bg{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(115,190,30,0.5);
    }
    header h1{
        width: 98%;
        margin: 0;
        padding: 0 1%;
        display: block;
        position: relative;
        background: #73be1e;
        font-size: 0.8rem;
        font-weight: normal;
        color: #fff;
        line-height: 1.4rem;
    }
    header .menu_outer{
        width: 98%;
        margin: 0;
        padding: 0.5rem 1%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    header .logo_outer{
        width: 20%;
        height: 5rem;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    header .logo_outer #logo{
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    header nav.menu_inner{
        width: 80%;
        margin: 0;
        padding: 0;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    }
    header nav.menu_inner a{
        width: 4rem;
        height: 4rem;
        display: block;
        position: relative;
        margin: 0 0 0 0.5rem;
        padding: 0;
    }
    header nav.menu_inner label{
        width: 4rem;
        height: 4rem;
        display: block;
        position: relative;
        margin: 0 0 0 0.5rem;
        padding: 0;
    }
    header nav.menu_inner img{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        border: 1px solid #73be1e;
        border-radius: 0.5rem;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    header nav.menu_inner img:hover{
        opacity: 0.5;
    }
    header .path{
        width: 49%;
        margin: 0 0 0 50%;
        padding: 0.3rem 1% 0.3rem 0;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        color: #333;
    }
    header .path ul{
        margin: 0 1rem 0 0;
        padding: 0;
        font-size: 0;
        display: block;
        list-style: none;
    }
    header .path ul li{
        font-size: 0.8rem;
        line-height: 0.8rem;
        margin: 0;
        padding: 0;
        display: inline-block;
        position: relative;
        text-shadow:1px 1px 0 #666, -1px -1px 0 #666,
              -1px 1px 0 #666, 1px -1px 0 #666,
              0px 1px 0 #666,  0-1px 0 #666,
              -1px 0 0 #666, 1px 0 0 #666;
    }
    header .path ul li::before{
        content: ">";
        margin: 0 0.5rem;
        color: #fff;
    }
    header .path ul li:first-child::before{
        content: "";
        margin: 0;
    }
    header .path ul li a{
        color: #fff;
    }
    header .path ul li a:hover{
    color: #ff0;
    }
    header .path #google_translate_element{
        position: relative;
    }
    .modal_wrap input{
        display: none;
    }
    .modal_overlay{
        display: block;
        overflow: auto;
        position: fixed;
        z-index: 999999;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 0;
        background: rgba(0,0,0,0.7);
        opacity: 0;
        transition: opacity 0.5s, transform 0s 0.5s;
        transform: scale(0);
    }
    .modal_trigger{
        position: absolute;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    .modal_content{
        position: absolute;
        top: 6rem;
        width: 100%;
        height: 5rem;
        margin: 0;
        padding: 0.5rem 0;
        background: #fff;
        line-height: 1.8rem;
        transition: 0.5s;
        text-align: center;
    }
    .close_button{
        position: absolute;
        top: 1rem;
        right: 2.5%;
        font-size: 1rem;
        cursor: pointer;
    }
    .modal_wrap input:checked ~ .modal_overlay{
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.5s;
    }
    .modal_wrap input:checked ~ .modal_overlay .modal_content{
        transform: translateY(20px);
    }
    .open_button{
        position: relative;
        display: inline-block;
        height: 100%;
        margin: 0;
        padding: 0;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .google-cs{
        width: 40rem;
        max-width: 50%;
        margin: 0 auto;
        text-align: left;
    }
    .google-cs input[type="text"]{
        height:25px !important;
        font-size: 1rem!important;
        display: block!important;
    }
    .google-cs .gsc-search-box a{
        font-size: 1.2rem!important;
        line-height: 2rem!important;
        margin: 0!important;
        }
    .google-cs a{
        font-size: 1.2rem!important;
        line-height: 2rem!important;
        margin: 1rem 0!important;
    }
    .google-cs .gs-title{
        font-size: 1.2rem!important;
        line-height: 2rem!important;
        height: auto!important;
    }
    .google-cs .gsc-table-result{}
    .google-cs .gsc-table-result td{
        padding: 0.3rem;
        margin: 0;
        border: 1px solid #999;
    }

    #button{
        display: none;
    }
    #pop_up{
        display: none;
    }






#contents {
    width: 100%;
    margin: 0;
    padding: 10.5rem 0 0 0;
    display: block;
    position: relative;
    background: #73be1e;
}

    #category_menu{
    width: 95%;
    margin: 0;
    padding: 3rem 2.5%;
    display: block;
    position: relative;
    background: #fff;
        color: #333;
        font-size: 0;
        z-index: 100;
    }
    #category_menu h2{
        text-align: center;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 2rem;
        font-weight: normal;
    }
    #category_menu h2 span{
        font-size: 1rem;
    }
    #category_menu h2 span::before{
        white-space: pre;
        content: "\a-";
        margin: 0 0.5rem;
    }
    #category_menu h2 span::after{
        content: "-";
        margin: 0 0.5rem;
    }
    
    #category_menu .new_message{
        width: 90%;
        margin: 5rem 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #f8fbf7;
    }
    #category_menu .new_message p{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: center;
    }
    #category_menu .new_message ul.category_list{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        font-size: 1rem;
        line-height: 2rem;
    }
    #category_menu .new_message ul.category_list::before{
        content: "";
        display: block;
        width: 25%;
        order: 1;
    }
    #category_menu .new_message ul.category_list::after{
        content: "";
        display: block;
        width: 25%;
    }
    #category_menu .new_message ul.category_list li{
        width: calc(25% - 5px);
        margin: 0 0 0.25rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(115,190,30,0.1);
    }
    #category_menu .new_message ul.category_list li.title{
        width: calc(100% - 10px);
        margin: 0;
        padding: 0 5px;
        display: block;
        position: relative;
        background: #f8fbf7;
        font-weight: bold;
    }
    #category_menu .new_message ul.category_list li.title i{
        margin: 0 0.5rem 0 0;
        color: #FF9900;
    }
    #category_menu .new_message ul.category_list li a{
        width: calc(100% - 0.5rem);
        margin: 0;
        padding: 0.25rem;
        display: block;
        position: relative;
    }
    #category_menu .new_message ul.category_list li a i{
        margin: 0 0.5rem 0 0;
        transition: 0.25s all ease 0s;
    }
    #category_menu .new_message ul.category_list li a:hover{
        background: rgba(115,190,30,1);
        color: #fff;
    }
    #category_menu .new_message ul.category_list li a:hover i{
        transform: translateX(0.25rem);
        transition-property:transform;
    }
    
    
    
    
    
    
    #category_menu dl{
        width: 100%;
        margin: 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #category_menu dl dt{
        width: 15%;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
    }
    #category_menu dl dt img{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #category_menu dl dd{
        width: 73%;
        margin: 0;
        padding: 0 0 0 2%;
        display: inline-block;
        vertical-align: middle;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #category_menu dl dd p{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
    }
    #category_menu dl dd p.caution{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0.7rem;
        color: #999;
    }
    #category_menu dl dd p.caution::before{
        content: "\203B";
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav{
        width: calc(100% - 250px);
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
    }
    #category_menu nav ul{
        width: 98%;
        margin: 0;
        padding: 1.8rem 2% 0 0;
        position: relative;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #category_menu nav ul li{
        width: calc(((100% / 3) - 0.5rem) - 2%);
        margin: 0 0.5rem 1rem 0;
        padding: 0.5rem 1%;
        display: block;
        position: relative;
        background: #46a83e;
        font-size: 1.1rem;
        border:none;
        transition:600ms ease all;
        outline:none;
    }
    #category_menu nav ul li a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        color: #fff;
        transition:600ms ease all;
    }
    #category_menu nav ul li a::before{
        content: "\f138";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav ul li a:hover::before{
        content: "\f13a";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav ul li:hover{
        background:#fff;
    }
    #category_menu nav ul li a:hover{
        color:#46a83e;
    }
    #category_menu nav ul li::before,
    #category_menu nav ul li::after{
        content:'';
        position:absolute;
        top:0;
        right:0;
        height:2px;
        width:0;
        background: #46a83e;
        transition:400ms ease all;
    }
    #category_menu nav ul li:after{
        right:inherit;
        top:inherit;
        left:0;
        bottom:0;
    }
    #category_menu nav ul li:hover::before,
    #category_menu nav ul li:hover::after{
        width:100%;
        transition:800ms ease all;
    }
    #category_menu nav .ad_yokonaga{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
    }

    #category_menu .ad_square{
        width: 250px;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }
    #category_menu .ad_square p{
        font-size: 0.8rem;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        line-height: 1.3rem;
    }
    #category_menu .ad_square p::before,
    #category_menu .ad_square p::after{
        content: "-";
        margin: 0 0.5rem;
    }
    #list_outer {
        width: 95%;
        height: 100%;
        margin: 0;
        padding: 0 2.5%;
        position: relative;
        top: 0;
        background-color: #e6f6e5;
        z-index: 0;
        overflow: hidden;
    }
    #list_outer:after {
        content:"";
        display:block;
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:80%;
        height:100%;
        margin-left: 10%;
        background-image: url(../images/newlogo.png);
        background-size: 35% auto;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        -webkit-background-size:35% auto;
        opacity: 0.4;
    }
    #list_outer .list_inner{
        width: 100%;
        margin: 0;
        padding: 5rem 0 0 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner h3{
        border-bottom: solid 3px #fff;
        position: relative;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 2.3rem;
        margin: 0 0 1rem 0;
        text-indent: 1%;
    }
    #list_outer .list_inner h3 span{
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 0 2rem;
        font-style: italic;
    }
    #list_outer .list_inner h3 span::before,
    #list_outer .list_inner h3 span::after{
        content: "-";
        margin: 0 0.5rem;
    }
    #list_outer .list_inner h3:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #73be1e;
        bottom: -3px;
        width: 20%;
    }

    #list_outer .list_inner .shoplink_outer{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner{
        width: calc((100% / 4) - 2%);
        margin: 0 0.5% 2rem 0.5%;
        padding: 0.5rem 0.5%;
        display: block;
        position: relative;
        min-height: 10rem;
        max-height: 20rem;
        overflow: hidden;
        background: rgba(255,255,255,0.8);
        border-radius: 0.5rem;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner h4{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 1.8rem;
        font-weight: normal;
        text-align: center;
        border-bottom: 1px solid #73be1e;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        height: calc(100% - 2.8rem);
    overflow-y: scroll;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul li{
        width: 98%;
        margin: 0 0 0.5rem 0;
        padding: 0.3rem 1%;
        list-style: none;
        border-bottom: 1px dashed #ccc;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul li a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }


    #list_outer .list_inner p.list_info{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    #list_outer .list_inner .shopinfo{
        width: calc(100% - 1rem);
        margin: 5rem 0;
        padding: 0.5rem;
        background: #bec96e;
        display: block;
        position: relative;
        border-radius: 0.5rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner{
        width: 98%;
        margin: 0;
        padding: 1rem 1%;
        background: #fff;
        border-radius: 0.3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation{
        width: 69%;
        margin: 0 0 2rem 0;
        padding: 0 1% 0 0;
        display: block;
        position: relative;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .photo{
        width: 30%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation h4{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 2rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation h4 span{
        font-size: 0.8rem;
        font-weight: normal;
        margin: 0 0 0 1rem;
        color: #999;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation p.comment{
        width: 98%;
        min-height: 6rem;
        margin: 0;
        padding: 0.5rem 1%;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px;
        color: #5d627b;
        background: #fff;
        border-top: solid 5px #bec96e;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li{
        width: 49%;
        margin: 0;
        padding: 0.25rem 1% 0.25rem 0;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #666;
        display: flex;
        align-items: center;
        word-break: break-all;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless{
        width: 99%;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless img{
        width: 3rem;
        margin: 0 1rem 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer{
        width: calc(100% - 4rem);
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p{
        margin: 0 1rem 0 0;
        padding: 0.3rem 1%;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        font-size: 1rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.use{
        background: #f8f196;
        border-radius: 0.3rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.use::before{
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #f00;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.not::before{
        content: "\f410";
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #000;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon{
        width: calc(100% - 10px);
        margin: 2rem 0 0 10px;
        padding: 0;
        display: block;
        position: relative;
        background: #f0f0f0;
        border-radius: 0.5rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon .ribbon {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        padding: 0 2%;
        margin: 0 0 0 -10px;
        width: calc(100% + 10px);
        font-size: 0.8rem;
        color: #fff;
        background: #73be1e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon .ribbon:before {
        position: absolute;
        content: '';
        top: 100%;
        left: 0;
        border: none;
        border-bottom: solid 10px transparent;
        border-right: solid 10px #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon p{
        width: 98%;
        margin: 0;
        padding: 0.5rem 1%;
        font-size: 0.8rem;
        line-height: 1.5rem;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.address::before{
        content: "\f124";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    a[href^="https://www.google.co.jp/maps/place/"]::before,
    a[href^="https://goo.gl/maps/"]::before {
        content:"";
        display:inline-block;
        width:1.2rem;
        height:1.2rem;
        background:url(../images/map_icon.png);
        background-size:contain;
        vertical-align:middle;
        background-repeat: no-repeat;
        margin: 0 0.5rem 0 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.parking::before{
        content: "\f1b9";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.tel::before{
        content: "\f098";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.fax::before{
        content: "\f1ac";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.open::before{
        content: "\f017";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.close::before{
        content: "\f410";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.mail::before{
        content: "\f199";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.web::before{
        content: "\f360";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.credit::before{
        content: "\f09d";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.e-money::before{
        content: "\f3cd";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.7rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.e-money::after{
        content: "\f029";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        position: absolute;
        margin: 0.5rem 0 0 0.3rem;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a {
        position: relative;
        display: inline-block;
        transition: .3s;
        padding: 0 0 0.3rem 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0;
        height: 2px;
        background-color: #46a83e;
        transition: .3s;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a:hover::after {
        width: 100%;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider{
        width: 100%;
        margin: 2.4rem 0 4rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider img {
        width: 100%;
        height: 100vh;
        margin: 0;
        max-height: 23rem;
        object-fit: cover;
        object-position: 50% 50%;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider li{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider li:hover{
        opacity: 0.6;
    }
    .slick-next,
    .slick-prev {
        display: none!important;
    }
    .slick-dots{
        position: relative;
        bottom: -2rem!important;
        margin: 0!important;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo .iinebutton {
        width: 100%;
        display: block;
        position: relative;
        margin: 0;
        border: none;
        color: #333;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo .iinebutton iframe {
        width: 60%;
        height: 2rem;
        border: none;
        background: none;
        overflow: hidden;
        color: #333;
        margin: 0 0 0 40%;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner dl{
        width: 50%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dt{
        width: 18%;
        margin: 0;
        padding: 0.3rem 1%;
        font-size: 0.8rem;
        text-align: center;
        display: inline-block;
        vertical-align: top;
        background: #eee;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd{
        width: 78%;
        margin: 0;
        padding: 0 1%;
        text-align: left;
        display: inline-block;
        vertical-align: top;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div{
        text-align: center;
        min-width: 8rem;
        display: inline-block;
        color: #fff;
        margin: 0 0.2rem;
        padding: 0.1rem 0.4rem;
        border-radius: 0.3rem;
        font-size: 0.8rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a{
        width: 100%;
        height: 100%;
        display: block;
        color: #fff;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a:hover{
        color: #ff0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a::before {
        content: '\f02b';
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.3rem 0 0;
        font-size: 1rem;
        vertical-align: middle;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.ifree{
        background-color: #ff80ff;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.ienavi{
        background-color: #e6994b;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.yakisoba{
        background-color: #864c12;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.job{
        background-color: #00aaaa;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.kokoruku{
        background-color: #f39700;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button{
        width: 30%;
        margin: 0 0 0 20%;
        padding: 0;
        position: relative;
        font-size: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a{
        font-size: 3rem;
        line-height: 3rem;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.line{
        color: #00B900;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.twitter{
        color: #1DA1F2;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.facebook{
        color: #3C5A99;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.mail{
        color: #21759B;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a:hover{
        opacity: 0.6;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button .url_outer{
        width: 100%;
        margin: 1rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button .url_outer input{
        width: calc(98% - 2px);
        margin: 0;
        padding: 0.3rem 1%;
        display: block;
        position: relative;
        border: 1px solid #999;
        border-radius: 0.3rem;
        font-size: 0.8rem;
    }
    #list_outer .list_inner .shopinfo p.bottom_category{
        width: 98%;
        margin: 0.5rem 1% 0 1%;
        padding: 0;
        text-align: right;
        font-size: 0.8rem;
        color: #333;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span{
        margin: 0 0 0 1rem;
        padding: 0 0.5rem;
        color: #fff;
        border-radius: 0.3rem;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.tochigi{
        background: #73be1e;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.ohira{
        background: #d50000;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.iwafune{
        background: #006ad5;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.nishikata{
        background: #d56a00;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.tsuga{
        background: #d5d500;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.fujioka{
        background: #5500aa;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.shigai{
        background: #333;
    }

    nav.category_nav{
        width: 100%;
        margin: 3rem auto;
        padding: 0;
        display: block;
        position: relative;
    }

    nav.category_nav ul{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav.category_nav ul::after{
        content:"";
        display: block;
        width: calc((100% / 4) - 1%);
    }
    nav.category_nav ul li{
        width: calc((100% / 4) - 2%);
        margin: 0 0 1rem 0;
        padding: 0.5rem 0.5%;
        display: block;
        position: relative;
        background: #46a83e;
        font-size: 1.1rem;
        border:none;
        transition:600ms ease all;
        outline:none;
        text-align: left;
    }
    nav.category_nav ul li a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        color: #fff;
        transition:600ms ease all;
    }
    nav.category_nav ul li a::before{
        content: "\f138";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    nav.category_nav ul li a:hover::before{
        content: "\f13a";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    nav.category_nav ul li:hover{
        background:#fff;
    }
    nav.category_nav ul li a:hover{
        color:#46a83e;
    }
    nav.category_nav ul li::before,
    nav.category_nav ul li::after{
        content:'';
        position:absolute;
        top:0;
        right:0;
        height:2px;
        width:0;
        background: #46a83e;
        transition:400ms ease all;
    }
    nav.category_nav ul li:after{
        right:inherit;
        top:inherit;
        left:0;
        bottom:0;
    }
    nav.category_nav ul li:hover::before,
    nav.category_nav ul li:hover::after{
        width:100%;
        transition:800ms ease all;
    }


    #footer_nav{
        width: 98%;
        margin: 0;
        padding: 5rem 1% 2rem 1%;
        display: block;
        position: relative;
        background: #fff;
        text-align: center;
    }
    #footer_nav #ad_footer{
        width: 70%;
        max-width: 900px;
        margin: 0 auto 5rem auto;
        padding: 0;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #footer_nav #ad_footer p{
        width: 100%;
        margin: 0 0 3rem 0;
        font-size: 0.8rem;
        color: #333;
    }
    #footer_nav #ad_footer p::before,
    #footer_nav #ad_footer p::after{
        content: "-";
        margin: 0 0.5rem;
    }
    #footer_nav #ad_footer img{
        width: 250px!important;
    }
    #footer_nav a.return{
        width: auto;
        margin: 3rem auto;
        padding: 0.3rem 0.5rem 0.3rem 0;
        font-size: 1rem;
        background: #eee;
        color: #333;
        box-shadow: 3px 3px 3px #999;
    }
    #footer_nav a.return::before{
        content: "\f03a";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        padding: 0.5rem;
        color: #fff;
        background: #73be1e;
    }
    #footer_nav a.return:hover{
        box-shadow: 5px 5px 5px #ccc;
    }

    footer{
        width: 98%;
        margin: 0;
        padding: 0 1% 7rem 1%;
        display: block;
        position: relative;
        background: #73be1e;
    }
    footer nav{
        width: 80%;
        margin: 2rem 10% 5rem 10%;
        padding: 0;
        display: block;
        position: relative;
    }
    footer nav ul{
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer nav ul li{
        display: inline-block;
        margin: 0.25rem 0;
        padding: 0 1%;
        position: relative;
    }
    footer nav ul li a{
        color: #fff;
    }

    footer nav ul li a::before{
        content: "\f152";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem;
        color: #fff;
    }
    footer img{
        width: 20rem;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
    }
    footer p.pccopyright{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        text-align: right;
        right: 1%;
        bottom: 0.5rem;
        color: #fff;
        font-size: 0.8rem;
    }
    .flexslider{
        display: none;
    }



    #spbanner{
        text-align: center;
        width: 100%;
        height: auto;
        padding-bottom: 0rem;
        position: fixed;
        bottom: 0rem;
        left: 0%;
        right: 0%;
        z-index: 1000;
    }
    #spbanner p{
        text-align: center;
        font-size: 0.7rem;
        font-weight: normal;
        line-height: 2rem;
        text-indent: 0;
        letter-spacing: 0rem;
        background-color: none;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
    #spbanner img{
        width: 22%!important;
        display: inline-block;
        margin: 0 1%;
        position: relative;
        left: 0rem;
    }



/*その他
---------------------------------------------------------------------------*/
    .pcnone{
        display: none!important;
    }

.br:before {
    content: "\a" ;
    white-space: pre ;
}

#counter {
    display: none;
}

/*戻るボタン
---------------------------------------------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 15rem;
    right: 0;
    z-index: 10000;
}
.pagetop a {
    display: block;
    background-color: #004434;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    opacity: 0.5;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
.pagetop a:hover {
    opacity: 0.85 ;
}


}




/*===============================================

画面の横幅が900pxまで（スマホ用）

===============================================*/

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

html{
    font-size: 85%;
    margin: 0px;
    padding: 0px;
    min-height: 100%;
    position: relative;
    }


body {
    font-family:"ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
    line-height: 2;
    color: #000;
    margin: 0px;
    padding: 0px;
    text-align: center;
}


    /*リンクカラー*/
a {
    color: #002b55;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

/*カーソルオーバー時のリンクカラー*/
a:hover {
    color: #A51A91;
    text-decoration: none;
}



/*コンテナー
---------------------------------------------------------------------------*/
#container {
    text-align: left;
    width: 100%;
    margin-right: 0rem;
    margin-left: 0rem;
    border: none;
}


    header{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        top: 0;
        left: 0;
        z-index: 100000;
    }
    header .header_bg{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(115,190,30,0.5);
    }
    header h1{
        width: 98%;
        margin: 0;
        padding: 0.3rem 1%;
        display: block;
        position: relative;
        background: #73be1e;
        font-size: 0.7rem;
        font-weight: normal;
        color: #fff;
        line-height: 1rem;
    }
    header .menu_outer{
        width: 98%;
        margin: 0;
        padding: 0.25rem 1%;
        position: relative;
        display: block;
    }
    header .logo_outer{
        width: 80%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    header .logo_outer #logo{
        width: auto;
        height: 3.5rem;
        display: block;
        position: relative;
    }
    header nav.menu_inner{
        display: none;
    }
    header .path{
        width: 98%;
        margin: 0;
        padding: 0.3rem 1%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
    header .path ul{
        margin: 0;
        padding: 0;
        font-size: 0;
        display: block;
        list-style: none;
    }
    header .path ul li{
        font-size: 0.7rem;
        line-height: 0.8rem;
        margin: 0;
        padding: 0;
        display: inline-block;
        position: relative;
    }
    header .path ul li::before{
        content: ">";
        margin: 0 0.3rem;
        color: #333;
    }
    header .path ul li:first-child::before{
        content: "";
        margin: 0;
    }
    header .path ul li a{
        color: #333;
    }
    header .path ul li a:hover{
    color: #ccc;
    }
    header .path #google_translate_element{
        position: relative;
    }

    header #button {
        width: 3rem;
        height: 3rem;
        color: #fff;
        display: block;
        text-align: center;
        font-weight: normal;
        font-size: 1rem;
        background-color: #73be1e;
        cursor: pointer;
        padding: 0;
        border-bottom: 0;
        position: fixed;
        top: 3rem;
        right: 1%;
        border-radius: 0.5rem;
        cursor: pointer;
    }
    header #button #h-text {
        width: 100%;
        font-size: 0.7rem;
        margin-top: 0.4rem;
        color: #fff;
        text-align:center;
        display:block;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    header #button:hover #h-text{
        color: #ccc;
    }
    header #button #h-icon {
        position: relative;
        display: block;
        width: 2rem;
        height: 1.25rem;
        top: 0.5rem;
        left: 0.5rem;
        background:#fff;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    header #button #h-icon::before,
    header #button #h-icon::after {
        position: absolute;
        left: 0;
        content: "";
        width: 100%;
        border-top: 4px solid #73be1e;
    }
    header #button #h-icon::before {
        top: 3px;
    }
    header #button #h-icon::after {
        bottom: 3px;
    }
    header #button:hover #h-icon{
        background: #ccc;
    }

    #pop_up{
        width: 95%;
        margin: 0;
        padding: 1rem 2.5%;
        background: rgba(0,0,0,0.68);
        position: fixed;
        top: 6.3rem;
        display: none;
    }
    .sp_nav{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    #pop_up .sp_nav a{
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
        padding: 0;
        line-height: 0;
        display: block;
        position: relative;
    }
    #pop_up .sp_nav label{
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
        padding: 0;
        line-height: 0;
        display: block;
        position: relative;
    }
    #pop_up .sp_nav img{
        width: calc(100% - 2px);
        margin: 0;
        padding: 0;
        border: 1px solid #73be1e;
        border-radius: 0.5rem;
    }

    .modal_wrap{
        display: none;
    }
    .sp_modal_wrap input{
        display: none;
    }
    .sp_modal_overlay{
        display: block;
        overflow: auto;
        position: fixed;
        z-index: 9999;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 0;
        background: rgba(0,0,0,0.7);
        opacity: 0;
        transition: opacity 0.5s, transform 0s 0.5s;
        transform: scale(0);
    }
    .modal_sp_trigger{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        left: 0;
    }
    .sp_modal_content{
        position: relative;
        top: 5.5rem;
        width: 100%;
        height: 5rem;
        margin: 0;
        padding: 1rem 0;
        background: #fff;
        line-height: 1.8rem;
        transition: 0.5s;
        text-align: center;
    }
    .sp_close_button{
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
        cursor: pointer;
    }
    .sp_modal_wrap input:checked ~ .sp_modal_overlay{
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.5s;
    }
    .sp_modal_wrap input:checked ~ .sp_modal_overlay .sp_modal_content{
        transform: translateY(20px);
    }
    .sp_google-cs{
        width: 80%;
        margin: 0 0 0 5%;
    }
    .sp_google-cs input[type="text"]{
        width: calc(100% - 70px);
        height:25px !important;
        font-size: 1rem!important;
        display: inline-block!important;
        vertical-align: top;
        font-size: 16px!important;
    }
    .sp_google-cs input[type="submit"]{
        width: 50px;
        height:30px !important;
        font-size: 1rem!important;
        display: inline-block!important;
        vertical-align: top;
    }
    .sp_google-cs form{
        width: 80%;
    }
    #search_btn {
        background-color: #999;
        color: #fff;
    }
    .sp_google-cs img{
        position: relative!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        display: block!important;
        border: none!important;
    }
    #___gcse_0{

    }




#contents {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    background: #73be1e;
}

    #category_menu{
    width: 95%;
    margin: 0;
    padding: 2rem 2.5%;
    display: block;
    position: relative;
    background: #fff;
        color: #333;
        font-size: 0;
        z-index: 100;
    }
    #category_menu h2{
        text-align: center;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: normal;
    }
    #category_menu h2 span{
        font-size: 0.8rem;
    }
    #category_menu h2 span::before{
        white-space: pre;
        content: "\a-";
        margin: 0 0.5rem;
    }
    #category_menu h2 span::after{
        content: "-";
        margin: 0 0.5rem;
    }
    
    
    
    #category_menu .new_message{
        width: 90%;
        margin: 3rem 0;
        padding: 1rem 5%;
        display: block;
        position: relative;
        background: #f8fbf7;
    }
    #category_menu .new_message p{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 2rem;
    }
    #category_menu .new_message ul.category_list{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        font-size: 0.9rem;
        line-height: 2rem;
    }
    #category_menu .new_message ul.category_list li{
        width: calc(100% - 5px);
        margin: 0 0 0.25rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(115,190,30,0.1);
    }
    #category_menu .new_message ul.category_list li.title{
        width: calc(100% - 10px);
        margin: 0;
        padding: 0 5px;
        display: block;
        position: relative;
        background: #f8fbf7;
        font-weight: bold;
    }
    #category_menu .new_message ul.category_list li.title i{
        margin: 0 0.5rem 0 0;
        color: #FF9900;
    }
    #category_menu .new_message ul.category_list li a{
        width: calc(100% - 0.5rem);
        margin: 0;
        padding: 0.25rem;
        display: block;
        position: relative;
    }
    #category_menu .new_message ul.category_list li a i{
        margin: 0 0.5rem 0 0;
        transition: 0.25s all ease 0s;
    }
    #category_menu .new_message ul.category_list li a:hover{
        background: rgba(115,190,30,1);
        color: #fff;
    }
    #category_menu .new_message ul.category_list li a:hover i{
        transform: translateX(0.25rem);
        transition-property:transform;
    }
    
    
    
    
    
    #category_menu dl{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #category_menu dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }
    #category_menu dl dt img{
        width: 25%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
    }
    #category_menu dl dd{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        vertical-align: middle;
        font-size: 0.8rem;
        line-height: 1.3rem;
    }
    #category_menu dl dd p{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
    }
    #category_menu dl dd p.caution{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0.7rem;
        color: #999;
    }
    #category_menu dl dd p.caution::before{
        content: "\203B";
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }
    #category_menu nav ul{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #category_menu nav ul li{
        width: calc(((100% / 2) - 0.5rem) - 2%);
        margin: 0 0 1rem 0;
        padding: 0.5rem 1%;
        display: flex;
        align-items: center;
        position: relative;
        background: #46a83e;
        font-size: 1rem;
        line-height: 1.5rem;
        border:none;
        transition:600ms ease all;
        outline:none;
    }
    #category_menu nav ul li a{
        width: 100%;
        margin: 0;
        padding: 0 0 0 1.5rem;
        display: block;
        position: relative;
        color: #fff;
        transition:600ms ease all;
        text-indent: -1.5rem;

    }
    #category_menu nav ul li a::before{
        content: "\f138";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav ul li:hover a::before{
        content: "\f13a";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    #category_menu nav ul li:hover{
        background:#fff;
    }
    #category_menu nav ul li:hover a{
        color:#46a83e;
    }
    #category_menu nav ul li::before,
    #category_menu nav ul li::after{
        content:'';
        position:absolute;
        top:0;
        right:0;
        height:2px;
        width:0;
        background: #46a83e;
        transition:400ms ease all;
    }
    #category_menu nav ul li:after{
        right:inherit;
        top:inherit;
        left:0;
        bottom:0;
    }
    #category_menu nav ul li:hover::before,
    #category_menu nav ul li:hover::after{
        width:100%;
        transition:800ms ease all;
    }
    #category_menu nav .ad_yokonaga{
        display: none;
    }

    #category_menu .ad_square{
        width: 250px;
        margin: 3rem auto;
        padding: 0;
        display: block;
        text-align: center;
    }
    #category_menu .ad_square p{
        font-size: 0.8rem;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        line-height: 1.3rem;
    }
    #category_menu .ad_square p::before,
    #category_menu .ad_square p::after{
        content: "-";
        margin: 0 0.5rem;
    }


    #list_outer {
        width: 95%;
        height: 100%;
        margin: 0;
        padding: 0 2.5%;
        position: relative;
        top: 0;
        background-color: #e6f6e5;
        z-index: 0;
        overflow: hidden;
    }
    #list_outer:after {
        content:"";
        display:block;
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:80%;
        height:100%;
        margin-left: 10%;
        background-image: url(../images/newlogo.png);
        background-size: 70% auto;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        -webkit-background-size:70% auto;
        opacity: 0.4;
    }
    #list_outer .list_inner{
        width: 100%;
        margin: 0;
        padding: 3rem 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner h3{
        border-bottom: solid 3px #fff;
        position: relative;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 2rem;
        margin: 0 0 1rem 0;
        text-indent: 1%;
    }
    #list_outer .list_inner h3 span{
        font-size: 0.8rem;
        font-weight: normal;
        margin: 0 0 0 2rem;
        font-style: italic;
    }
    #list_outer .list_inner h3 span::before,
    #list_outer .list_inner h3 span::after{
        content: "-";
        margin: 0 0.5rem;
    }
    #list_outer .list_inner h3:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #73be1e;
        bottom: -3px;
        width: 20%;
    }

    #list_outer .list_inner .shoplink_outer{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner{
        width: calc((100% / 2) - 2%);
        margin: 0 0.5% 2rem 0.5%;
        padding: 0.5rem 0.5%;
        display: block;
        position: relative;
        min-height: 10rem;
        max-height: 20rem;
        overflow: hidden;
        background: rgba(255,255,255,0.8);
        border-radius: 0.5rem;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner h4{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: normal;
        text-align: center;
        border-bottom: 1px solid #73be1e;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul{
        width: 100%;
        margin: 0;
        padding: 0 0 0.5rem 0;
        display: block;
        position: relative;
        height: calc(100% - 2.5rem);
    overflow-y: scroll;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul li{
        width: 98%;
        margin: 0 0 0.5rem 0;
        padding: 0.3rem 1%;
        list-style: none;
        border-bottom: 1px dashed #ccc;
    }
    #list_outer .list_inner .shoplink_outer .shoplink_inner ul li a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0.8rem;
        line-height: 1.3rem;
    }

    #list_outer .list_inner p.list_info{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #list_outer .list_inner .shopinfo{
        width: calc(100% - 0.6rem);
        margin: 3rem 0;
        padding: 0.3rem;
        background: #bec96e;
        display: block;
        position: relative;
        border-radius: 0.3rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner{
        width: 96%;
        margin: 0;
        padding: 1rem 2%;
        background: #fff;
        border-radius: 0.3rem;
        display: block;
        position: relative;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .photo{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation h4{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.8rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation h4 span{
        font-size: 0.8rem;
        font-weight: normal;
        margin: 0;
        color: #999;
        line-height: 1.2rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation h4 span::before{
        white-space: pre;
        content: "\a";
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation p.comment{
        width: 98%;
        margin: 0;
        padding: 0.5rem 1%;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px;
        color: #5d627b;
        background: #fff;
        border-top: solid 5px #bec96e;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        list-style: none;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #666;
        display: flex;
        align-items: center;
        word-break: break-all;
        border-bottom: 1px dashed #ddd;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless img{
        width: 3rem;
        margin: 0 0.5rem 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer{
        width: calc(100% - 3.5rem);
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p{
        width: 46%;
        margin: 0.3rem 1%;
        padding: 0.3rem 1%;
        display: inline-block;
        vertical-align: top;
        position: relative;
        font-size: 1rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.use{
        background: #f8f196;
        border-radius: 0.3rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.use::before{
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #f00;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.cashless .cashless_outer p.not::before{
        content: "\f410";
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        color: #000;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon{
        width: calc(100% - 10px);
        margin: 2rem 0 0 10px;
        padding: 0;
        display: block;
        position: relative;
        background: #f0f0f0;
        border-radius: 0.5rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon .ribbon {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        padding: 0 2%;
        margin: 0 0 0 -10px;
        width: calc(100% + 10px);
        font-size: 0.8rem;
        color: #fff;
        background: #73be1e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon .ribbon:before {
        position: absolute;
        content: '';
        top: 100%;
        left: 0;
        border: none;
        border-bottom: solid 10px transparent;
        border-right: solid 10px #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.coupon p{
        width: 98%;
        margin: 0;
        padding: 0.5rem 1%;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.address::before{
        content: "\f124";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    a[href^="https://www.google.co.jp/maps/place/"]::before,
    a[href^="https://goo.gl/maps/"]::before {
        content:"";
        display:inline-block;
        width:1.2rem;
        height:1.2rem;
        background:url(../images/map_icon.png);
        background-size:contain;
        vertical-align:middle;
        background-repeat: no-repeat;
        margin: 0 0.5rem 0 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.parking::before{
        content: "\f1b9";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.tel::before{
        content: "\f098";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.fax::before{
        content: "\f1ac";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.open::before{
        content: "\f017";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.close::before{
        content: "\f410";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.mail::before{
        content: "\f199";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.web::before{
        content: "\f360";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.credit::before{
        content: "\f09d";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.5rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.e-money::before{
        content: "\f3cd";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        font-size: 1.7rem;
        color: #46a83e;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li.e-money::after{
        content: "\f029";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        position: absolute;
        margin: 0.5rem 0 0 0.3rem;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a {
        position: relative;
        display: inline-block;
        transition: .3s;
        padding: 0 0 0.3rem 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0;
        height: 2px;
        background-color: #46a83e;
        transition: .3s;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .infomation ul li a:hover::after {
        width: 100%;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider img {
        width: 100%;
        margin: 0;
        max-height: 20rem;
        object-fit: cover;
        object-position: 0% 50%;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider li{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo ul.slider li:hover{
        opacity: 0.6;
    }
    .slick-next,
    .slick-prev {
        display: none!important;
    }
    .slick-dots{
        position: relative;
        bottom: -2rem!important;
        margin: 0!important;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo .iinebutton {
        width: 100%;
        display: block;
        position: relative;
        margin: 0;
        border: none;
        color: #333;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .photo .iinebutton iframe {
        width: 60%;
        height: 2rem;
        border: none;
        background: none;
        overflow: hidden;
        color: #333;
        margin: 0 0 0 40%;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dt{
        width: 18%;
        margin: 0;
        padding: 0.3rem 1%;
        font-size: 0.8rem;
        text-align: center;
        display: inline-block;
        vertical-align: top;
        background: #eee;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd{
        width: 78%;
        margin: 0;
        padding: 0 1%;
        text-align: left;
        display: inline-block;
        vertical-align: top;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div{
        width: calc(50% - 0.4rem);
        text-align: center;
        display: inline-block;
        color: #fff;
        margin: 0 0.2rem;
        padding: 0.1rem 0.4rem;
        border-radius: 0.3rem;
        font-size: 0.8rem;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a{
        width: 100%;
        height: 100%;
        display: block;
        color: #fff;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a:hover{
        color: #ff0;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div a::before {
        content: '\f02b';
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.3rem 0 0;
        font-size: 1rem;
        vertical-align: middle;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.ifree{
        background-color: #ff80ff;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.ienavi{
        background-color: #e6994b;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.yakisoba{
        background-color: #864c12;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.job{
        background-color: #00aaaa;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner dl dd div.kokoruku{
        background-color: #f39700;
    }

    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        position: relative;
        font-size: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a{
        font-size: 3rem;
        line-height: 3rem;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.line{
        color: #00B900;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.twitter{
        color: #1DA1F2;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.facebook{
        color: #3C5A99;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a.mail{
        color: #21759B;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button a:hover{
        opacity: 0.6;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button .url_outer{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #list_outer .list_inner .shopinfo .shopinfo_inner .sns_button .url_outer input{
        width: calc(98% - 2px);
        margin: 0;
        padding: 0.3rem 1%;
        display: block;
        position: relative;
        border: 1px solid #999;
        border-radius: 0.3rem;
        font-size: 0.8rem;
    }
    #list_outer .list_inner .shopinfo p.bottom_category{
        width: 98%;
        margin: 0.5rem 1% 0 1%;
        padding: 0;
        text-align: right;
        font-size: 0.8rem;
        color: #333;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span{
        margin: 0 0 0 1rem;
        padding: 0 0.5rem;
        color: #fff;
        border-radius: 0.3rem;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.tochigi{
        background: #73be1e;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.ohira{
        background: #d50000;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.iwafune{
        background: #006ad5;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.nishikata{
        background: #d56a00;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.tsuga{
        background: #d5d500;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.fujioka{
        background: #5500aa;
    }
    #list_outer .list_inner .shopinfo p.bottom_category span.shigai{
        background: #333;
    }

    nav.category_nav{
        width: 98%;
        margin: 2rem auto;
        padding: 0;
        display: block;
        position: relative;
    }

    nav.category_nav ul{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    nav.category_nav ul li{
        width: calc((100% / 2) - 4%);
        margin: 0 0 1rem 0;
        padding: 0.5rem 1%;
        display: block;
        position: relative;
        background: #46a83e;
        font-size: 0.8rem;
        border:none;
        transition:600ms ease all;
        outline:none;
    }
    nav.category_nav ul li a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        color: #fff;
        transition:600ms ease all;
    }
    nav.category_nav ul li a::before{
        content: "\f138";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    nav.category_nav ul li a:hover::before{
        content: "\f13a";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin: 0 0.5rem 0 0;
    }
    nav.category_nav ul li:hover{
        background:#fff;
    }
    nav.category_nav ul li a:hover{
        color:#46a83e;
    }
    nav.category_nav ul li::before,
    nav.category_nav ul li::after{
        content:'';
        position:absolute;
        top:0;
        right:0;
        height:2px;
        width:0;
        background: #46a83e;
        transition:400ms ease all;
    }
    nav.category_nav ul li:after{
        right:inherit;
        top:inherit;
        left:0;
        bottom:0;
    }
    nav.category_nav ul li:hover::before,
    nav.category_nav ul li:hover::after{
        width:100%;
        transition:800ms ease all;
    }



    #footer_nav{
        width: 98%;
        margin: 0;
        padding: 5rem 1%;
        display: block;
        position: relative;
        background: #fff;
        text-align: center;
    }
    #footer_nav #ad_footer{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        text-align: center;
    }
    #footer_nav #ad_footer p{
        width: 100%;
        margin: 0 0 3rem 0;
        font-size: 0.8rem;
        color: #333;
    }
    #footer_nav #ad_footer p::before,
    #footer_nav #ad_footer p::after{
        content: "-";
        margin: 0 0.5rem;
    }
    #footer_nav #ad_footer img{
        width: 250px!important;
        margin: 0 0 2rem 0;
    }

    #footer_nav a.return{
        width: auto;
        margin: 3rem auto;
        padding: 0.3rem 0.5rem 0.2rem 0;
        font-size: 1rem;
        background: #eee;
        color: #333;
        box-shadow: 3px 3px 3px #999;
    }
    #footer_nav a.return::before{
        content: "\f03a";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem 0 0;
        padding: 0.5rem;
        color: #fff;
        background: #73be1e;
    }
    #footer_nav a.return:hover{
        box-shadow: 5px 5px 5px #ccc;
    }

    footer{
        width: 98%;
        margin: 0;
        padding: 0 1% 9rem 1%;
        display: block;
        position: relative;
        background: #73be1e;
    }
    footer nav{
        width: 100%;
        margin: 3rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer nav ul{
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer nav ul li{
        width: calc((100% / 3)  - 2%);
        display: inline-block;
        margin: 0.5rem 1%;
        padding: 0;
        position: relative;
        text-align: left;
        border-bottom: 1px dashed #ddd;
    }
    footer nav ul li a{
        color: #fff;
    }

    footer nav ul li a::before{
        content: "\f152";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        margin: 0 0.5rem;
        color: #fff;
    }
    footer img{
        width: 80%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
    }
    footer p.pccopyright{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        text-align: right;
        right: 1%;
        bottom: 0.5rem;
        color: #fff;
        font-size: 0.8rem;
    }


    .flexslider{
        text-align: center;
        width: 80%!important;
        height: 80px!important;
        margin: 0 10%!important;
        position: fixed!important;
        bottom: 1rem!important;
        display: block;
        z-index: 50000;
    }
    .flexslider a{
        width: 100%!important;
        height: auto!important;
        margin: 0!important;
        padding: 0!important;
    }
    .flexslider a img{
        width: 100%!important;
        display: block!important;
        margin: 0!important;
        position: relative!important;
    }


    #spbanner{
        display: none;
    }
    #spbanner h2{
        display: none;
    }
    #spbanner img{
        display: none;
    }

/*その他
---------------------------------------------------------------------------*/
    .spnone{
        display: none!important;
    }

#counter {
    display: none;
}



/*戻るボタン
---------------------------------------------------------------------------*/


.pagetop {
    display: none;
    position: fixed;
    bottom: 8rem;
    right: 0;
    z-index: 10000;
}
.pagetop a {
    display: block;
    background-color: #004434;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    opacity: 0.5;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
.pagetop a:hover {
    opacity: 0.85 ;
}



}

