@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
object, embed {
    vertical-align: middle;
}
legend {
    display: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}
img, abbr, acronym, fieldset {
    border: 0 none;
}
img {
    vertical-align: middle;
}
ul li {
    list-style-type: none;
}


/*----------------------------------------------------
        共通
----------------------------------------------------*/
/* スクロールバーの有無によるズレ対策 */
html {
    overflow-y: scroll;
}

input,
textarea {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

/* for IE6 */
* html body {
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

* html input,
* html textarea {
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* リンク
----------------------------------------------------*/
a {
    color: #4a4847;
    text-decoration: none;
}

/* 汎用
----------------------------------------------------*/
/* clear clerfix */
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.content:after,
.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

.content,
.clearfix {
    zoom: 1;
    /* for IE5.5 - IE7 */
}

/*box-sizing */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'sans-serif';
    font-size: 14px;
    background: #fff;
    line-height: 25.2px;
    color: #4a4847;
}

/*----------------------------------------------------
        各ページスタイル
----------------------------------------------------*/
/* 共通
-----------------------------------------------------------------------------------------------*/

#contents:after,
#contents_low:after {
    content: ".";
    display: block;
    visibility: hidden;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
    clear: both;
}

a {
    text-decoration: none;
}

/*----------------------------------------------------
        PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {

    html, body {
        height: 100%;
    }

    html {
        overflow-y: hidden;
    }

    body {
        overflow-x: hidden;
        min-width: 1000px;
    }

    .sp {
        display: none;
    }

    .inner {
        margin: 0 auto;
        max-width: 1000px;
        width: 100%;
    }

    .flex {
        display: flex;
        display: -webkit-flex; 
    }

    .left, .Left {
        float: left;
    }

    .right, .Right {
        float: right;
    }

    a.trance:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
    }

    #index a, #page a {
        color: #4a4847;
        text-decoration: underline;
    }

    #index a:hover, #page a:hover {
        text-decoration: none;
    }

    #index p, #page p, #sub p {
        margin: 10px 0;
    }

    /*header
    ----------------------------------------*/
    header {
        background: #fff;
        width: 100%;
    }

    header .flex.topbar {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    header .site_ttl {
        background: #e7e5dd;
        color: #fff;
        width: 100%;
    }

    header .site_ttl h1, header .site_ttl a {
        color: #333;
        float: left;
        width: 880px;
        padding: 5px 0 2px 0;
        font-weight: bold;
    }

    header .site_ttl a:hover {
        opacity: 0.7;
    }

    header .sitemap {
        float: right;
    }

    header .sitemap a{
        color: #fff;
        background: #50a53a;
        padding: 4px 8px 3px 8px;
        display: block;
        font-size: 12px;
        float: none;
        font-weight: normal;
        width: 112px;
    }

    header .sitemap a:hover{
        opacity: 0.7;
    }

    header.lower {

    }

    /*mv
    ----------------------------------------*/
    header #mv {
        background: url(./img/mv_bg.png) repeat;
        background-size: 12px;
    }

    header #mv .mv_wrap {
        display: flex;
        justify-content: center;
    }

    header #mv .mv_wrap .mv_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    header #mv .mv_wrap .mv_img {
        width: 605px;
        position: relative;
    }

    header #mv .mv_wrap .mv_img:before {
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        background: url(/wp/wp-content/uploads/mv.png) center /100% no-repeat;
        background-size: cover;
    }

    header #mv .mv_wrap .mv_catch {
        background: url(./img/logo.png) center 18px no-repeat;
        padding: 15px 0;
        display: flex;
        flex-flow: column;
        margin-right: 0px;
        position: relative;
        width: 400px;
    }


    header #mv .mv_wrap .mv_catch .catch_inner {
        padding: 35px 0 35px 30px;
        height: 100%;
    }

    header #mv .mv_wrap .mv_catch .catch_inner h2 {
        background: url(./img/mv2.png) bottom no-repeat;
        color: #fff;
        font-size: 30px;
        line-height: 1.3;
        letter-spacing: 1.5px;
        font-weight: bold;
        padding: 35px 39px 15px;
        text-align: center;
        font-family: serif;
    }

    header #mv .mv_wrap .mv_catch .catch_inner .mv_txt {
        margin: 25px 0 0;
        font-size: 16px;
        letter-spacing: 1px;
    }

    header #mv .mv_wrap .mv_catch .catch_inner .mv_txt {
        color: #fff;
    }


    header #mv .mv_wrap .mv_catch .catch_inner .mv_txt p {
        font-size: 13px;
    }

    /*nav
    ----------------------------------------*/
    header nav {
        margin: 0 auto 0;
        width: 100%;
    }

    header nav ul {
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        width: 1000px;
    }

    header nav ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 20px 0;
    }

    header nav ul li:hover {
        background: #f6d36c;
    }


    header nav ul li a {      
        align-items: center;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        line-height: 1.5;
        width: 100%;
        height: 100%;
        padding: 0px 20px;
        text-align: center;
        font-weight: bold;
        position: relative;
    }

    header nav ul li a:hover {
        background: #f6d36c;
    }

    header nav ul li a:after {
        background: #5d3d2a;
        content: "";
        width: 1px;
        height: 75%;
        position: absolute;
        right: 0;
        top: 15%;
    }

    header nav ul li:first-child a:before {
        background: #5d3d2a;
        content: "";
        width: 1px;
        height: 75%;
        position: absolute;
        left: 0;
        top: 15%;
    }
    /*contents
    ----------------------------------------*/
    #contents {
        margin: 0px auto 170px;
    }

    #contents_low {
        margin: 0px auto 100px;
    }

    #index,
    #page {
        float: left;
        width: 720px;
    }

    #pankuzu {
        font-size: 13px;
        margin: 10px 0 10px;
        width: 100%;
        word-break: break-all;
    }

    #pankuzu a {
        text-decoration: underline;    
    }
    #pankuzu a:hover {
        text-decoration: none;
    }

    #index h1,
    #index h2,
    #index h3,
    #index h4,
    #index h5,
    #page h1,
    #page h2,
    #page h3,
    #page h4,
    #page h5 {
        line-height: 1.4;
        margin: 30px 0 15px;
    }

    #index h2,
    #page h1 {
        background: #f4e6ae;
        font-size: 30px;
        margin-top: 80px;
        padding: 25px 30px 20px 30px;
        position: relative;
        text-align: center;
        font-weight: bold;
        color: #606060;
    }

    #index h2:before,
    #page h1:before {
        background: url(./img/h1.png) center center no-repeat;
        content: '';
        width: 155px;
        height: 99px;
        position: absolute;
        left: 0;
        right: 0;
        top: -66px;
        margin: 0 auto;
    }

    #index h3,
    #page h2 {
        background: url(./img/h2_line.png) center top no-repeat, url(./img/h2.png) repeat;
        font-size: 28px;
        text-align: center;
        padding: 25px 40px 15px 40px;
        font-weight: bold;
        color: #606060;
    }

    #index h4,
    #page h3 {
        font-size: 24px;
        padding: 15px 20px 10px;
        border-top:2px solid #50a53a;
        border-bottom:2px solid #50a53a;
        font-weight: bold;
        color: #606060;
        text-align: center;
    }

    #index h5,
    #page h4 {
        font-size: 20px;
        padding: 10px 20px 5px;
        background: #e7e5dd;
        text-align: center;
        color: #333;
        font-weight: bold;
    }

    #index ul:not(.subList), #page ul:not(.subList),
    #index ol, #page ol {
        margin: 30px 0;
    }

    #index ul li, #page ul li {
        background: url(./img/li.png) no-repeat 8px 2px;
        padding-left: 40px;
        margin: 0 0 5px;
    }

    #index ol li, #page ol li {
        counter-increment: number;
        display: block;
        list-style: none;
        margin: 0 0 5px;
        padding: 0 0 0 40px;
        position: relative;
    }

    #index ol li:before,
    #page ol li:before {
        background: #50a53a;
        border-radius: 50%;
        color: #fff;
        content: counter(number);
        display: block;
        font-size: 15px;
        height: 20px;
        left: 8px;
        letter-spacing: -3.5px;
        line-height: 22px;
        margin-top: -15px;
        position: absolute;
        padding: 0 4px 0 0px;
        text-align: center;
        top: 17px;
        width: 19px;
        font-weight: bold;
    }

    #index p span,
    #page p span {
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        color: #d22d52;
    }

    .rank:before {
        content: '';
        display: block;
        height: 96px;
        left: -25px;
        margin: -45px 0 0;
        position: absolute;
        top: 50%;
        width: 74px;
    }

    .rank, .recommend {
        font-size: 28px;
        line-height: 1.4;
        margin: 35px 0px 35px 20px;
        padding: 15px 30px 15px 80px;
        position: relative;
        z-index: 1;
        background: #f4e6ae;
        border-radius: 10px;
        font-weight: bold;
        color: #333;
    }

    .recommend:before {
        background: url(./img/topic.png) top center no-repeat;
        content: '';
        display: block;
        height: 105px;
        left: -25px;
        margin: -49px 0 0 0;
        position: absolute;
        top: 50%;
        width: 90px;
    }

    .rank1:before {
        background: url(./img/rank1.png) center center no-repeat;
    }

    .rank2:before {
        background: url(./img/rank2.png) center center no-repeat;
    }

    .rank3:before {
        background: url(./img/rank3.png) center center no-repeat;
    }

    .rank4:before {
        background: url(./img/rank4.png) center center no-repeat;
    }

    .table-layout {
        width: 100%;
        margin: 50px auto;
    }

    .table-layout table {
        width: 100%;
    }

    .table-layout table thead th,
    .table-layout table tbody th,
    .table-layout table tbody td {
        padding: 15px;
        vertical-align: middle;
        word-break: break-all;
    }

    .table-layout table th {
        background: #e7e5dd;
        font-weight: bold;
        border: 1px solid #333333;
        text-align: center;
        width: 25%;
        color: #333;
    }

    .table-layout table td {
        background: #fff;
        border: 1px solid #333333;
        color: #333;
        text-align: center;
    }



    .table-layout02 {
        width: 100%;
        margin: 50px auto;
    }

    .table-layout02 table {
        width: 100%;
    }

    .table-layout02 table thead th,
    .table-layout02 table tbody th,
    .table-layout02 table tbody td {
        padding: 15px;
        vertical-align: middle;
        word-break: break-all;
    }

    .table-layout02 table th {
        background: #e7e5dd;
        font-weight: bold;
        border: 1px solid #333333;
        text-align: center;
        width: 25%;
        color: #333;
    }

    .table-layout02 table td {
        background: #fff;
        border: 1px solid #333333;
        color: #333;
        text-align: center;
    }



    .float-wrap {
        margin: 20px auto 30px;
        position: relative;
    }

    .float-img {
        width: 240px;
    }

    .float-img .flame {
        padding: 10px;
        border: 2px solid #50a53a;
    }

    .fl {
        float: left;
        margin-right: 20px;
    }

    .fr {
        float: right;
        margin-left: 20px;
    }

    .float-img img {
        height: auto;
        max-width: 100%;
    }

    .float-wrap > p {
        margin: 0 auto 10px !important;
        position: relative;
        top: -5px;
    }

    .float-img .caption {
        margin: 10px auto 10px;
    }

    .caption {
        text-align: center;
        font-size: 10px;
        color: #999;
        line-height: 1.8;
        word-wrap: break-word;
    }

    #index .btn-internal a,
    #index .btn-web a,
    #page .btn-internal a,
    #page .btn-web a {
        display: block;
        font-size: 18px;
        font-weight: bold;
        margin: 30px auto;
        text-align: center;
        text-decoration: none;
        position: relative;
        width: 50%;
        z-index: 5;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: url(./img/aw3.png) right 20px center no-repeat #f5ce5c;
        color: #000;
        padding: 20px 50px 15px 30px;
        border-radius: 5px;
        box-shadow: 0 3px #d4ab1d;
    }

    #index .btn-internal a:hover,
    #page .btn-internal a:hover {
        background: url(./img/aw3.png) right 20px center no-repeat #e7e5dd;
        box-shadow: 0 3px #bfbfbf;
    }


    #index .btn-web a,
    #page .btn-web a {
        background: url(./img/aw1.png) right 20px center no-repeat #e5004f;
        color: #fff;
        padding: 20px 50px 15px 30px;
        border-radius: 5px;
        box-shadow: 0 3px #a40035;
    }

    #index .btn-web a:hover,
    #page .btn-web a:hover {
        background: url(./img/aw1.png) right 20px center no-repeat #009944;
        box-shadow: 0 3px #00561f;
    }

    #index .btn-link,
    #page .btn-link {
        text-align: right;
    }

    #index .btn-link a,
    #page .btn-link a {
        background: url(./img/aw2.png) left center no-repeat;
        color: #50a53a;
        font-size: 15px;
        font-weight: bold;
        padding-left: 15px;
        text-align: right;
    }

    #index .btn-link a:hover,
    #page .btn-link a:hover {
        text-decoration: none;
    }

    .box-wrap {
        margin: 40px auto;
        display: -webkit-flex;
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .left_box {
        margin-right: 25px;
    }

    .box {
        border-bottom: 1px solid #50a53a;
        border-right: 1px solid #50a53a;
        border-left: 1px solid #50a53a;
        width: 48%;
        position: relative;
        display: flex;
        flex-flow: column;
    }

    .box .box-head {
        margin: -35px 0 0 0;
        background: url(./img/border.png) center 31px /22px repeat-x;
        padding: 15px;
    }

    .box .box-head:hover {
        opacity: 0.7;
    }

    #index .box .box-head a,
    #page .box .box-head a {
        background: url(./img/aw2.png) 96% center no-repeat #f4e6ae;
        display: block;
        color: #50a53a;
        font-size: 18px;
        padding-right: 30px;
        text-decoration: none;
        line-height: 1.4;
        font-weight: bold;
        padding: 8px 30px 8px 12px;
        border-radius: 10px;
        text-align: center;
    }

    .box .box-body p {
        margin: 0!important;
    }

    .box .box-body {
        padding: 0px 25px 15px 25px;
        line-height: 2;
        height: 100%;
    }

    #index .frame-wrap,
    #page .frame-wrap {
        display: -webkit-flex;
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 40px 0;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        padding: 20px;
        position: relative;
        width: 32%;
        background: #f7efce;
    }

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        padding: 0px 0 10px;
        text-align: center;

        background: url(./img/box.png) bottom center no-repeat;
    }

    #index .frame-wrap .frame .frame-head p,
    #page .frame-wrap .frame .frame-head p {
        color: #50a53a;
        font-size: 18px;
        line-height: 1.4;
        font-weight: bold;
        margin: 0;
    }

    #index .frame-wrap .frame .frame-body,
    #page .frame-wrap .frame .frame-body {
        padding: 10px 0 0 0;
    }

    #index .frame-wrap .frame .frame-body p,
    #page .frame-wrap .frame .frame-body p {
        margin: 0 0 10px;
    }

    /*sidebar
    ----------------------------------------*/
    #sub {
        float: right;
        width: 240px;
        margin: 50px 0 0 0;
    }

    #sub .free_space {
        padding: 20px 25px 20px;
        position: relative;
        width: 100%;
        border: 5px solid #b94840;
        border-radius: 10px;
    }

    #sub .free_space .ttl {
        display: block;
        font-size: 18px;
        font-weight: bold;
        padding-bottom: 10px;
        text-align: center;
    }

    #sub .free_space .fs_img {
        max-width: 100%;
        margin: 0 0 0px;
    }

    #sub .free_space p {
        margin: 5px 0 0 0;
        line-height: 1.5;
        color: #040404;
    }

    #sub .free_space a.more {
        background: url(./img/aw1.png) right 15px center no-repeat #b94840;
        color: #fff;
        display: block;
        font-size: 16px;
        line-height: 1.4;
        padding: 10px 40px 10px 30px;
        text-align: center;
        width: 100%;
        margin: 20px auto 10px;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0 3px #8f371b;
        text-align: center;
    }

    #sub .free_space a.more:hover {
        background: url(./img/aw7.png) right 15px center no-repeat #e7e5dd;
        color: #b94840;
    }


    #sub .cate_menu .cate_menu_box {
        margin: 40px 0;
        padding: 0px;
        width: 100%;
    }

    #sub .cate_menu .cate_menu_box .brdr {
        background: #fff;
        position: relative;
    }

    #sub .cate_menu .cate_menu_box ul {

    }

    #sub .cate_menu .cate_top {
    }

    #sub .cate_menu .cate_top a {
        background: url(./img/cate2.png) repeat;
        display: block;
        padding: 15px 10px 10px 10px;
        font-size: 16px;
        color: #333;
        font-weight: bold;
    }

    #sub .cate_menu .cate_top a:hover {
        background: url(./img/cate.png) repeat;
        opacity: 10;
    }

    #sub .cate_menu ul li.child {
        margin: 0;
    }

    #sub .cate_menu ul li.child .trance {
        background: url(./img/aw8.png) right 25px center no-repeat, url(./img/aw4.png) 26px center no-repeat;
        padding: 15px 40px 15px 42px;
    }

    #sub .cate_menu ul li.child .trance:hover {
        background: url(./img/aw9.png) right 25px center no-repeat, url(./img/aw4.png) 26px center no-repeat;
    }

    #sub .cate_menu ul li:not(.child):first-child {
        border-top: none;
    }

    #sub .cate_menu ul li a {
        background: url(./img/aw8.png) right 25px center no-repeat;
        display: block;
        padding: 12px 40px 12px 25px;
        color: #030303;
        border-left: 1px solid #d2d2d2;
        border-bottom: 1px solid #d2d2d2;
        border-right: 1px solid #d2d2d2;
    }

    #sub .cate_menu ul li a:hover{
        background: url(./img/aw9.png) right 25px center no-repeat;
        opacity: 10;
    }

    /*footer
    ----------------------------------------*/
    footer {
        background: #e7e5dd;
        width: 100%;
        min-width: 1000px;
		padding-top: 1px;
    }

    footer #pagetop {
        position: absolute;
        top: -130px;
        right: 0;
        z-index: 5;
    }

    footer #pagetop a {
        display: inline-block;
        position: relative;
    }

    footer #pagetop a:hover img {
        visibility: hidden;
    }

    footer #pagetop a:hover {
        opacity: 10!important;
    }

    footer #pagetop a:hover {
        background: url(./img/pt_h.png) center no-repeat;

    }

    footer #pagetop a {
        display: inline-block;
    }

    footer #pagetop a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
    }

    footer .inner {
        position: relative;
    }

    footer .all.flex {
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    footer .inner .frame-wrap {
        width: 100%;
        margin: 10px auto 0;
    }

    footer .frame-wrap .frame {
        margin: 10px 0 0;
        padding: 0;
        width: 100%;
    }

    footer .frame-head {
        border-bottom: 4px double #50a53a;
    }

    footer .frame-head a {
        background: url(./img/aw2.png) left center no-repeat;
        display: inline-block;
        padding: 10px 30px 10px 15px;
        font-size: 17px;
        color: #50a53a;
        font-weight: bold;
        display: block;
    }

    footer .frame-head a:hover {
        background: url(./img/aw5.png) left center no-repeat;
        color: #707070;
    }

    footer .frame-head:hover {
        border-bottom: 4px double #707070;
    }

    footer .frame-body {
        display: block;
        line-height: 100%;
        margin: 10px 0 0 0;
    }

    footer .frame-body ul:not(.sub_list) {
        display: -webkit-flex;
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -weblit-justify-content: flex-start;
        justify-content: flex-start;
    }

    footer .frame-body ul li:not(.sub_cat) {
        vertical-align: top;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 25%;
    }

    footer .frame-body ul li a {
        background: url(./img/aw3.png) left top 5px no-repeat;
        display: block;
        text-decoration: none;
        padding: 5px 10px 5px 15px;
        position: relative;
        width: 100%;
        line-height: 135%;
        margin: 0 0 10px;
    }

    footer .frame-body ul li  a:hover {
        background: url(./img/aw8.png) left top 5px no-repeat;
        color: #707070;
        opacity: 10;
    }

    footer .frame-body ul li.sub_cat a {
        background: none;
        padding-left: 28px;
        position: relative;
    }

    footer .frame-body ul li.sub_cat a:before {
        background: url(./img/aw4.png) left center no-repeat;
        position: absolute;
        top: 6px;
        left: 16px;
        content: '';
        width: 8px;
        height: 9px;
    }

    footer .notes {
        background: #d0dbc5;
        color: #333;
        font-size: 12px;
        margin: 50px auto 35px auto;
        line-height: 1.8;
        padding: 15px 20px;
        width: 100%;
    }

    footer .copyright {
        font-size: 11px;
        padding: 0px 0;
        text-align: center;
        color: #fff;
        background: #50a53a;
    }

    footer .copyright a {
        line-height: 1.4;
        color: #fff;
    }

    /****pc*******/
}

/*----------------------------------------------------
        SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

    .pc {
        display: none;
    }

    .left, .Left {
        float: left;
    }

    .right, .Right {
        float: right;
    }

    html {
        font-size: 3.2vw;
    }

    body {
        font-size: 1.6rem;
        line-height: 1.55;
    }

    #index a, #page a {
        color: #4a4847;
        text-decoration: underline;
    }

    #index p, #page p, #sub p {
        margin: 0.625rem 0;
    }

    /*header
    ----------------------------------------*/
    header {
        position: relative;
        width: 100%;
    }

    .overflow {
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(51,51,51,0.7);
        top: 0;
        z-index: 100;
    }

    header p {
        margin: 0;
    }

    header .inner {

    }

    header .flex.topbar {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    header .lead {
        background: #1b80a5;
        color: #fff;
        font-size: 1.1rem;
        padding: 0.2rem 0;
    }

    header .sitemap {
        position: absolute;
        top: 0;
        background: #e7e5dd;
        width: 100%;
        text-align: right;
    }

    header .sitemap a {
        background: #50a53a!important;
        color: #fff;
        font-size: 1rem!important;
        padding: 5px 1rem 5px 1rem!important;
        display: block!important;
        line-height: 1.4!important;
        margin: 0 0 0 0!important;
        min-height: 0!important;
        width: 32%;
        float: right;
        font-weight: normal!important;
    }

    header .site_ttl {
        background: #fff;;
    }

    header h1,
    header .site_ttl a {
        display: inline-block;
        font-size: 1.7rem;
        line-height: 1.4;
        margin: 0;
        padding: 1rem 1rem 1rem 5.5rem;
        font-weight: bold;
        background: url(./img/sp/logo_sp.png) left 1rem center no-repeat;
        background-size: 4rem auto;
        min-height: 7rem;
    }
    header .menu_btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 15%;
        z-index: 120;
        z-index: 999999;
    }

    header .menu_btn {
        background-size: 4.5rem auto;
    }

    header .menu_btn img {
        width: 100%;
    }

    header .menu_btn.open img {
        opacity: 0;
    }

    /*nav
    ----------------------------------------*/
    nav {
        position: relative;
        position: absolute;
        display: none;
        top: 0!important;
        width: 100%;
        height: auto;
        z-index: 10000;
    }

    nav .site_ttl {
        display: inline-block;
        font-size: 1.6rem;
        line-height: 1.4;
        margin: 0;
        padding: 1rem 6rem 1rem 5.5rem;
        font-weight: bold;
        background: url(./img/sp/logo_sp.png) left 1rem center no-repeat;
        background-size: 4rem auto;
        min-height: 7rem;
    }

    nav .menu_btn img {
        opacity: 10!important;
    }


    nav .inner {
        background: #fff;
    }

    nav .nav_sp {
        border-right: 0.1rem solid #d2d2d2;
        border-left: 0.1rem solid #d2d2d2;
    }

    nav .nav_sp .sp_menu {
        background: #fff;
    }

    nav .nav-parent {
        overflow-y: scroll;
    }

    nav .ttl {
        border-bottom: 0.1rem solid #d2d2d2;
    }

    nav .ttl:last-of-type {
        margin-bottom: 0;
    }

    nav .ttl .cate {
        background: url(./img/sp/menu_bg_sp.png) repeat;
        background-size: 1.2rem auto;
        font-size: 1.6rem;
        text-align: justify;
        line-height: 1.4;
        text-align: center;
        font-weight: bold;
    }

    nav .ttl .cate a {
        display: block;
        padding: 1.2rem 4rem 1.2rem 4rem;
        color: #333;
    }

    nav .ttl .cate.open {
        background-size: 0.8rem auto;
    }

    nav .ttl .sp_child {

    }

    nav .sp_child li:first-child {
        border-top: 0.1rem solid #d2d2d2;
    }

    nav .sp_child li a {
        background: #fff url(./img/sp/aw5_sp.png) right 2rem center no-repeat;
        background-size: 1rem auto;
        border-bottom: 0.1rem solid #cad5d9;
        display: block;
        font-size: 1.6rem;
        padding: 1.3rem 1rem 1.3rem 3rem;
        text-align: justify;
        line-height: 1.4;
        color: #333;
    }

    nav #close {
        background: url(./img/sp/menu_bg_sp.png) repeat;
        background-size: 1.2rem auto;
        font-size: 1.6rem;
        text-align: justify;
        line-height: 1.4;
        text-align: center;
        font-weight: bold;
        padding: 1.5rem 0;
        text-decoration: underline;
        color: #333;
        position: relative;
    }

    nav #close:before {
        position: absolute;
        content: '×';
        width: 10px;
        height: 10px;
        left: 11rem;
    }

    nav .sp_child .sub_cat a {
        background:  url(./img/sp/aw6_sp.png) left 3rem center no-repeat,url(./img/sp/aw5_sp.png) right 2rem center no-repeat #fff;
        background-size: 1rem auto;
        border-bottom: 0.1rem solid #cad5d9;
        display: block;
        font-size: 1.6rem;
        padding: 1.2rem 1rem 1.2rem 4.5rem;
        text-align: justify;
        line-height: 1.4;
    }

    nav .sp_child li:last-child a {
        border-bottom: none;
    }

    nav a{
        text-decoration: none;
    }

    /*mv
    ----------------------------------------*/
    header #mv {
        width: 100%;
    }

    header #mv .mv_wrap .mv_img img {
        max-width: 100%;
    }

    header #mv .inner {
        padding: 0;
    }

    header #mv .mv_wrap .mv_catch {
        background: url(./img/sp/mv_bg_sp.png) repeat;
        background-size: 1rem auto;
        padding: 1rem;
		margin-top: 1rem;
    }

    header #mv .mv_wrap .mv_catch .catch_inner {
        padding: 0.5rem 0rem;
    }

    header #mv .mv_wrap .mv_catch .catch_inner h2 {
        color: #fff;
        font-size: 2rem;
        line-height: 1.5;
        padding: 0 0 1.5rem;
        font-weight: bold;
        background: url(./img/sp/mv2_sp.png) bottom center no-repeat;
        background-size: 29rem auto;
		text-align:center;
    }

    header #mv .mv_wrap .mv_catch .catch_inner .mv_txt {
        padding: 1.5rem 0 0;
        line-height: 1.8;
        color: #fff;
    }

    /*contents
    ----------------------------------------*/
    #contents {
        padding: 0 1rem 1rem;
    }

    #contents_low {
        padding: 0 1rem 8rem;
    }

    #pankuzu {
        font-size: 1.3rem;
        width: 100%;
        margin: 1.4rem 0;
        padding: 0 0 0.4rem;
        overflow: auto;
        white-space: nowrap;
    }

    #pankuzu a {
        text-decoration: underline;
    }

    #pankuzu::-webkit-scrollbar{
        height: 0.5rem;
    }
    #pankuzu::-webkit-scrollbar-track{
        border-radius: 1rem;
        background: #d2d2d2;
    }
    #pankuzu::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #a6a6a6;
    }

    #index h1,
    #index h2,
    #index h3,
    #index h4,
    #index h5,
    #page h1,
    #page h2,
    #page h3,
    #page h4,
    #page h5{
        line-height: 1.4;
        margin: 2.7rem 0 1.2rem;
    }

    #index h2,
    #page h1 {
        background: #f4e6ae;
        font-size: 2rem;
        padding: 1.8rem 2.5rem 1.4rem 2.5rem;
        font-weight: bold;
        color: #606060;
        position: relative;
        margin: 5.7rem 0 1.2rem 0;
    }

    #index h2:before,
    #page h1:before {
        content: '';
        background: url(./img/sp/h1_sp.png) top center no-repeat;
        background-size: 7rem auto;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: -35px;
        margin: 0 auto;
        text-align: center;
    }

    #index h3,
    #page h2 {
        background: url(./img/sp/h2.png) top center no-repeat, url(./img/sp/h2_bg_sp.png) repeat;
        background-size: 26rem auto,0.8rem auto;
        font-size: 1.9rem;
        padding: 1.4rem 2.5rem 1.0rem 2.5rem;
        font-weight: bold;
        color: #606060;
    }

    #index h4,
    #page h3 {
        font-size: 1.7rem;
        padding: 1rem 0;
        border-top: 2px solid #50a53a;
        border-bottom: 2px solid #50a53a;
        font-weight: bold;

    }

    #index h5,
    #page h4 {
        font-size: 1.6rem;
        padding: 1rem 1.5rem;
        background: #e7e5dd;
        font-weight: bold;
        color: #333;
    }

    #index ul, #page ul,
    #index ol, #page ol {
        margin: 2.1rem 0;
    }

    #index ul li, #page ul li {
        background: url(./img/sp/li_sp.png) no-repeat left 0.5rem top 0.3rem;
        background-size: 1.9rem auto;
        margin: 0 0 5px;
        padding-left: 3rem;
    }

    #index ol li, #page ol li {
        counter-increment: number;
        display: block;
        margin: 0 0 5px;
        list-style: none;
        padding-left: 3rem;
        position: relative;
    }

    #index ol li:before,
    #page ol li:before {
        background: #50a53a;
        border-radius: 50%;
        color: #fff;
        content: counter(number);
        display: block;
        font-size: 1.2rem;
        margin-top: -1.3rem;
        left: 0.5rem;
        letter-spacing: 0.5px;
        line-height: 2rem;
        width: 1.8rem;
        height: 1.5em;
        position: absolute;
        text-align: center;
        top: 1.5rem;
        font-weight: bold;
    }

    #index p span,
    #page p span {
        color: #d22d52;
        font-size: 1.8rem;
        font-weight: bold;
    }

    .rank,
    .recommend {
        background: #f4e6ae;
        font-size: 2rem;
        line-height: 1.4;
        margin: 6rem 0 6rem 1rem;
        padding: 1.2rem 1rem 1rem 8rem;
        position: relative;
        z-index: 3;
        border-radius: 10px;
        font-weight: bold;
        color: #333;
    }

    .rank:before {
        content: '';
        display: block;
        position: absolute;
        left: -1rem;
        top: 50%;
        margin: -4rem 0 0;
        width: 8rem;
        height: 11rem;
        z-index: 5;
    }

    .rank1:before {
        background: url(./img/sp/rank1_sp.png) top center no-repeat;
        background-size: 8rem auto;
    }

    .rank2:before {
        background: url(./img/sp/rank2_sp.png) top center no-repeat;
        background-size: 8rem auto;
    }

    .rank3:before {
        background: url(./img/sp/rank3_sp.png) top center no-repeat;
        background-size: 8rem auto;
    }

    .rank4:before {
        background: url(./img/sp/rank4_sp.png) top center no-repeat;
        background-size: 8rem auto;
    }

    .recommend:before {
        background: url(./img/sp/topic.png) top center no-repeat;
        background-size: 7rem auto;
        content: '';
        display: block;
        position: absolute;
        left: -1rem;
        top: 50%;
        margin: -4rem 0 0 0;
        width: 8.1rem;
        height: 8.1rem;
    }


    .table-layout,
    .table-layout02 {
        width: 95%;
        margin: 2.9rem auto;
        overflow: auto;
    }

    .table-layout table {
        margin: 1.7rem 0 1rem;
        overflow: hidden;
        width: 100%;
    }

    .table-layout table, .table-layout tbody, .table-layout tr, .table-layout th, .table-layout td {
        display: block;
    }

    .table-layout table thead th,
    .table-layout table tbody th,
    .table-layout table tbody td {
        padding: 1.8rem;
        vertical-align: middle;
        word-break: break-all;
        width: 100%;
    }

   .table-layout table tr:first-child th{
        border-top: 1px solid #333;
    }
    
    .table-layout table th {
        background: #e7e5dd;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
        font-weight: bold;
        text-align: center;
        width: 20%;
        color: #3a3838;
    }

    .table-layout table td {
        background: #fff;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
        text-align: center;
    }

    .table-layout02 table {
        margin: 1.7rem 0 1rem;
        overflow: hidden;
        width: 100%;
    }

    .table-layout02::-webkit-scrollbar {
        height: 0.6rem;
    }

    .table-layout02::-webkit-scrollbar-track {
        background: #d2d2d2;
    }

    .table-layout02::-webkit-scrollbar-thumb {
        background: #a0a0a0;
    }

    .table-layout02 table thead th,
    .table-layout02 table tbody th,
    .table-layout02 table tbody td {
        padding: 1.8rem;
        vertical-align: middle;
        word-break: break-all;
    }

    .table-layout02 table th {
        background: #e7e5dd;
        border: 1px solid #333;
        font-weight: bold;
        text-align: center;
        width: 20%;
        color: #3a3838;
    }

    .table-layout02 table td {
        background: #fff;
        border: 1px solid #333;
        text-align: center;
    }

    .float-wrap {
        margin: 3rem auto;
        position: relative;
    }

    .float-wrap > p {
        margin: 0 auto 1rem !important;
        position: relative;
        top: -0.5rem;
    }

    .float-img {
        width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .float-wrap .flame {
        padding: 1rem;
        border: 2px solid #50a53a;
    }

    .float-img img {
        max-width: 100%;
    }

    .fl {
        float: left;
        margin-right: 1.5rem;
        width: 40%;
    }

    .caption {
        text-align: center;
        font-size: 1.4rem;
        color: #999;
        margin: 1rem 0;
        line-height: 1.4;
        word-wrap: break-word;
    }

    #index .btn-internal a,
    #index .btn-web a,
    #page .btn-internal a,
    #page .btn-web a,
    #index .btn-link a,
    #page .btn-link a,
    #index .btn-tel a ,
    #page .btn-tel a {
        display: block;
        font-size: 1.8rem;
        margin: 1.5rem auto;
        text-align: center;
        text-decoration: none;
        width: 100%;
        position: relative;
        border-radius: 5px;
        font-weight: bold;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: url(./img/sp/aw4_sp.png) right 2.5rem center no-repeat #f5ce5c;
        background-size: 1rem auto;
        color: #000;
        padding: 1.5rem 4.5rem 1.5rem 2.5rem;
        box-shadow: 0 3px #d4ab1d;
    }

    #index .btn-web a,
    #page .btn-web a {
        background: url(./img/sp/aw3_sp.png) right 2.5rem center no-repeat #e5004f;
        background-size: 1rem auto;
        color: #fff;
        padding: 1.5rem 4.5rem 1.5rem 2.5rem;
        box-shadow: 0 3px #a40035;
    }

    #index .btn-link a,
    #page .btn-link a {
        border: 0.1rem solid #1f7697;
        background: url(./img/sp/aw1_sp.png) right 2.5rem center no-repeat;
        background-size: 1rem auto;
        color: #50a53a;
        padding: 1.5rem 4rem 1.3rem 2.5rem;
        border: 2px solid #50a53a;
    }

    #index .btn-tel a,
    #page .btn-tel a {
        background: url(./img/sp/tel_sp.png) left 2rem center no-repeat, url(./img/sp/aw3_sp.png) right 2.5rem center no-repeat, #448aca;
        background-size: 2rem auto, 1rem auto;
        color: #fff;
        padding: 1.5rem 4rem 1.5rem 4rem;
        box-shadow: 0 3px #0068b7;
    }

    .box {
        width: 100%;
        margin: 3rem auto;
        position: relative;
    }

    .box .box-head {
        padding: 0 2rem;
        position: relative;
        background: url(./img/sp/border_sp.png) center repeat-x;
    }

    .box .box-head:before {
        position: absolute;
        background: url(./img/sp/border_2_sp.png) left repeat-y;
        content: '';
        width: 2px;
        height: 100%;
        left: 0;
        top: 50%;
    }

    .box .box-head:after {
        position: absolute;
        background: url(./img/sp/border_2_sp.png) right repeat-y;
        content: '';
        width: 2px;
        height: 100%;
        right: 0;
        top: 50%;
    }

    #index .box .box-head a,
    #page .box .box-head a {
        background: url(./img/sp/aw1_sp.png) right 2rem center no-repeat #f4e6ae;
        background-size: 1rem auto;
        color: #50a53a;
        display: block;
        font-size: 1.7rem;
        text-decoration: none;
        padding: 1rem 3.5rem 1rem 1.3rem;
        font-weight: bold;
        border-radius: 10px;
    }

    .box .box-body {
        padding: 3rem 2rem 2rem 2rem;
        border-bottom: 0.2rem solid #50a53a;
        border-left: 0.2rem solid #50a53a;
        border-right: 0.2rem solid #50a53a;
        margin: -2.2rem 0 0 0;
    }

    .box .box-body a {
        background: #50a53a url(./img/sp/aw3_sp.png) right 1.8rem center no-repeat;
        background-size: 1rem auto;
        padding: 1rem 4rem 1rem 2rem;
        color: #fff !important;
        display: block;
        font-size: 1.7rem;
        margin: 2rem 0 0rem auto;
        text-align: center;
        text-decoration: none !important;
        position: relative;
        width: 70%;
        z-index: 3;
        border-radius: 5px;
        box-shadow: 0 3px #097c25;
        font-weight: bold;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #f7efce;
        padding: 2rem 2rem 2rem;
        margin: 2rem 0;
        position: relative;
    }

    #index .frame-wrap p,
    #page .frame-wrap p {
        margin: 0;
    }

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        color: #2e7259;
        font-size: 1.7rem;
        padding: 0px 0 1rem;
        background: url(./img/sp/box_sp.png) bottom center no-repeat;
        background-size: 4rem auto;
    }

    #index .frame-wrap .frame .frame-head p,
    #page .frame-wrap .frame .frame-head p {
        color: #50a53a;
        font-weight: bold;
        text-align: center;

    }

    #index .frame-wrap .frame .frame-body,
    #page .frame-wrap .frame .frame-body {
        margin: 1.5rem 0 1rem;
    }

    #sub .free_space {
        padding: 2rem 2rem 2rem;
        margin: 3rem 0;
        position: relative;
        border: 8px solid #b94840;
        border-radius: 10px;
    }

    #sub .free_space .ttl {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.5;
        background-size: 9rem auto;
    }

    #sub .free_space .fs_img {
        max-width: 100%;
        margin: 0.5rem 0 1rem;
    }

    #sub .free_space .more {
        background: url(./img/sp/aw3_sp.png) right 3rem center no-repeat #b94840;
        background-size: 1rem auto;
        color: #fff;
        display: block;
        font-size: 1.8rem;
        padding: 1.1rem 1rem;
        text-align: center;
        width: 100%;
        margin: 20px auto 10px;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0 3px #8f371b;
        text-align: center;
    }

    #sub .btn-internal a,
    #sub .btn-web a {
        display: block;
        font-size: 1.7rem;
        margin: 2rem auto;
        text-align: center;
        text-decoration: none;
        width: 95%;
        position: relative;
    }

    #sub .btn-internal a {
        border: 0.1rem solid #9db243;
        background: #fff url(./img/old/sp/link_ar.png)  right 1.5rem center no-repeat;
        background-size: 2rem auto;
        color: #9db243;
        padding: 1.2rem 4rem 1.2rem 2rem;
    }

    #sub .btn-internal a:after {
        border-right: 0.1rem solid #9db243;
        border-bottom: 0.1rem solid #9db243;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: -0.4rem;
        bottom: -0.4rem;
        z-index: -1;
    }

    #sub .btn-web a {
        background: #ff8338 url(./img/old/sp/link_ar2.png)  right 1.5rem center no-repeat;
        background-size: 2rem auto;
        color: #fff;
        padding: 1.2rem 4rem 1.2rem 2rem;
    }

    #sub .btn-web a:after {
        border-right: 0.1rem solid #ff8338;
        border-bottom: 0.1rem solid #ff8338;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: -0.4rem;
        bottom: -0.4rem;
        z-index: -1;
    }

    /*footer
    ----------------------------------------*/
    footer {
        width: 100%;
        background: #e7e5dd;
    }

    footer .inner{
        position: relative;
    }

    footer #pagetop_sp {
        position: fixed;
        right: 1rem;
        width: 21%;
        height: auto;
        z-index: 5;
        transition: .3s;
        bottom: 30px;
    }

    footer #pagetop_sp img {
        width: 100%;
        height: auto;
    }

    footer  .top_page {
        background: url(./img/sp/logo_sp.png) left 1rem center no-repeat, url(./img/sp/mv_bg_sp.png) repeat;
        background-size: 4rem auto,1.5rem auto;
        display: block;
        padding: 1.5rem 2rem 1.5rem 6.5rem;
        color: #fff;
        font-weight: bold;
        font-size: 1.8rem;
    }

    footer .footer_top {
        border-right: 0.1rem solid #d2d2d2;
        border-top: 0.1rem solid #d2d2d2;
        border-left: 0.1rem solid #d2d2d2;
        color: #1f7697;
        font-size: 1.7rem;
        font-weight: bold;
        position: relative;
    }

    footer .frame-wrap {
        border-right: 0.1rem solid #d2d2d2;
        border-left: 0.1rem solid #d2d2d2;
        margin: 0 0 1.5rem;
        width: 100%;
    }

    footer .frame-wrap .frame {
        border-bottom: 0.1rem solid #d2d2d2;
    }

    footer .frame-wrap .frame + .frame {
        margin-top: 1rem;
    }

    footer .frame-wrap .frame-head {
        background: #50a53a url(./img/sp/aw3_sp.png) right 1rem center no-repeat;
        background-size: 1rem auto;
        font-size: 1.6rem;
        border-top: 2px solid #f5ce5c;
        border-bottom: 2px solid #f5ce5c;
    }

    footer .frame-wrap .frame-head a{
        padding: 1rem 3rem 1rem 2rem;
        color: #fff;
        display: block;
        font-weight: bold;
    }

    footer .frame-head-top.naviopen {
        background: #e4f2f5 url(./img/old/sp/footer_category_ar3.png) right 1rem center no-repeat;
        background-size: 0.8rem auto;
    }

    footer .frame-body {

    }

    footer .frame-wrap .frame-body a {
        background: url(./img/sp/aw4_sp.png) right 1rem center no-repeat;
        background-size: 1rem auto;
        border-top: 0.1rem solid #d2d2d2;
        display: block;
        padding: 1.2rem 1rem 1rem 2rem;
        font-size: 1.4rem;
    }

    footer .frame-wrap .frame-body li.sub_cat a {
        background: none;
        padding-left: 3.8rem;
        position: relative;
        color: #707070;
        background: url(./img/sp/aw6_sp.png) 2.1rem center no-repeat, url(./img/sp/aw5_sp.png) right 1rem center no-repeat;
        background-size: 0.8rem auto,1rem auto;
    }

    footer .sitemap a {
        background: #50a53a;
        background-size: 2rem auto;
        border: 0.1rem solid #d2d2d2;
        display: block;
        font-size: 1.6rem;
        padding: 1.3rem 3rem 1rem 2rem;
        color: #fff;
        font-weight: bold;
    }

    footer .notes {
        background: #d0dbc5;
        color: #333;
        border: 0.1rem solid #d2d2d2;
        font-size: 1.2rem;
        margin: 1.5rem 1rem 1.5rem;
        padding: 1.5rem;
    }

    footer .notes span {
        display: block;
    }

    footer .copyright {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 1rem;
        text-align: center;   
        background: #50a53a;
        text-align: center;
        color: #fff;
    }

    footer .copyright a {
        text-decoration: underline;
        color: #fff;
    }

}  /****sp*******/