@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: #333;
    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: #333;
}

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

#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: #333;
        text-decoration: underline;
    }

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

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

    /*header
    ----------------------------------------*/

    header {
        background: #ffebc3;
        padding: 25px 0 20px;
        width: 100%;
        position:relative;
        margin: 0 0 15px;        
    }

    header:after {
        content:"";
        position:absolute;
        bottom: -16px;
        left:0;
        width:100%;
        height:156px;
        background: url(img/pc/header.png) left bottom repeat-x;
        z-index: -1;
    }    

    header .site_ttl h1,
    header .site_ttl a {
        display: block;
        font-size: 29px;
        font-weight: bold;
        letter-spacing: 2.5px;
        line-height: 1.4;
        margin: 0 0 10px;
        color: #816536;
        text-align: center;
    }

    /*nav
    ----------------------------------------*/

    nav {
        margin: 0 auto;
        width: 100%;
    }

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

    nav ul li {
        box-sizing: border-box;
        width: 100%;
        background: url(img/pc/nav.png) right center no-repeat;
    }

    nav ul li:last-child {
        box-sizing: border-box;
        width: 100%;
        background: none;
    }

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

    nav ul li a:hover:before {
        content: "";
        background-color: #ef8933;
        width: 100%;
        height: 7px;
        position: absolute;
        bottom: -1px;
        border-radius: 10px 10px 0 0;
        left: 0;
    }
    
   nav ul li a:hover:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7px 7px 7px;
        border-color: transparent transparent #ef8933 transparent;
        position: absolute;
        bottom: 5px;
        left: 50%;
        margin-left: -7px;
    }    

    nav ul li a:hover {
        color: #ef8933;
    }

    /*mv
    ----------------------------------------*/

    #mv {
        background: url(img/pc/mv2.png) center bottom no-repeat,url(img/pc/mv_bg.png);
        width: 100%;
    }
    
    #mv .inner {
        padding: 65px 0 110px;
    }

    #mv .mv_wrap {
        background: #fff;
        border: 7px solid #ffc184;
        border-radius: 20px;
        padding: 25px 30px 25px 330px;
        position: relative;
        width: 910px;
        margin: 0 auto;
    }
    
    #mv .mv_wrap::before {
        background: url(img/pc/mv.png) center center no-repeat;
        background-size: cover;
        content: "";
        width: 300px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px 0px 0 10px;
    }    

    #mv .mv_wrap h2 {
        color: #ea5300;
        font-size: 30px;
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: 2px;
        padding: 0px 0 15px;
        position: relative;
        text-align: center;
        margin: 0 0 10px;
    }
/*
    #mv .mv_wrap h2::after {
        background: #ea5300;
        content: "";
        width: 34px;
        height: 2px;
        margin-left: -17px;
        position: absolute;
        bottom: 0;
        left: 50%;
    }
*/    
    #mv .mv_txt {
        font-size: 16px;
        line-height: 1.8;
    }
    
    /*contents
    ----------------------------------------*/

    #contents,
    #contents_low {
        background: url(img/pc/con_bg.png);
    }

    #contents {
        padding: 50px 0 50px;
        position: relative;
    }

    #contents:before {
        background: url(img/pc/con_bg02.png) top left no-repeat;
        content:"";
        top: -10px;
        left:0;
        width:100%;
        height:26px;
        position:absolute;
    }

    #contents_low {
        padding: 30px 0 50px;
    }

    #index,
    #page {
        float: left;
        width: 720px;
        background-color: #fff;
        padding: 0 35px;
        border-radius: 20px 20px 0 0;    
    }

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

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

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

    #index h2,
    #page h1 {
        background: url(img/pc/h1_b.png) top 15px center no-repeat,url(img/pc/h1_bg.png);
        color: #fff;
        font-size: 30px;
        margin: 0 -35px 30px;
        padding: 65px 35px 10px;
        position: relative;
        border-radius: 20px 20px 0 0;
        text-align: center;
    }

    #index h3,
    #page h2 {
        border: 2px solid #dcc087;
        border-bottom: 4px solid #dcc087;
        font-size: 28px;
        margin: 50px 0 30px;
        padding: 15px 40px;
        position: relative;
        text-align: center;
    }

    #index h3:after,
    #page h2:after {
        background: url(img/pc/h2_a.png) bottom right no-repeat,url(img/pc/h2_b.png) top right no-repeat,url(img/pc/h1_c.png) top right repeat-y;
        content:"";
        position:absolute;
        top: -2px;
        left: 0;
        right: -2px;
        bottom: -4px;
    }    

    #index h3:before,
    #page h2:before {
        background: url(img/pc/h2.png) bottom center no-repeat;
        content: "";
        width: 29px;
        height: 20px;
        position: absolute;
        bottom: -20px;
        left: 50%;
        margin-left: -10px;
    }

    #page h2 a {
        display: block;
        position: relative;
        z-index: 3;
    }

    #index h4,
    #page h3 {
        font-size: 23px;
        padding: 15px 20px;
        position: relative;
        background-color: #e8c071;
        color: #fff;
        border-radius: 10px;
        margin: 40px 0 20px;
    }

    #index h5,
    #page h4 {
        border-bottom: 3px solid #9bccce;
        font-size: 22px;
        padding: 0 0px 5px;
        position: relative;
        margin: 40px 0 20px;
    }

    #index h5::after,
    #page h4::after {
        border-bottom: 3px solid #f09042;
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 25%;
    }
    
    #index h6,
    #page h5 {
        font-size: 20px;
        padding: 0 0px 10px;
        position: relative;
        background: url(img/pc/h5.png) left bottom repeat-x;
    }    

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

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

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

    #index ol li:before,
    #page ol li:before {
        color: #f09042;
        border: 1px solid #f09042;
        content: counter(number);
        display: block;
        font-size: 14px;
        height: 20px;
        left: 6px;
        letter-spacing: -.5px;
        line-height: 22px;
        position: absolute;
        text-align: center;
        top: 1px;
        width: 20px;
        font-weight: bold;
    }

    #index p span,
    #page p span {
        background: linear-gradient(transparent 60%, #fcf051 60%);
        color: #e47517;
        font-size: 18px;
        font-weight: bold;
    }

    #index .rank, 
    #page .rank,
    #index .check,
    #page .check {
        background: url(img/pc/topic_bg.png) repeat;
        border: 1px dashed #f19039;
        font-size: 28px;
        font-weight: bold;
        line-height: 1.4;
        margin: 30px 0 15px;
        padding: 26px 30px 15px 85px;
        position: relative;
        z-index: 1;
        border-radius: 10px;
        counter-increment: number;
    }

    #index .rank::before,
    #page .rank::before {
        content: '';
        display: block;
        height: 70px;
        left: 4px;
        margin: -35px 0 0;
        position: absolute;
        top: 50%;
        width: 70px;
        content: counter(number);
        font-size:  44px;
        color:  #fff;
        text-align: center;
        padding: 7px 0 0;
    }
    
    #index .check::before,
    #page .check::before {
        content: '';
        display: block;
        height: 70px;
        left: 9px;
        margin: -35px 0 0;
        position: absolute;
        top: 50%;
        width: 70px;
    }    

    #index .rank::before,
    #page .rank::before {
        background: url(img/pc/rank.png) no-repeat;
        background-size: 100%;
    }

    #index .check::before,
    #page .check::before {
        background: url(img/pc/check.png) top center no-repeat;
        background-size: 100%;
    }

    #index .table-layout,
    #page .table-layout {
        width: 100%;
        margin: 50px auto;
    }

    #index .table-layout table,
    #page .table-layout table {
        border: 1px solid #f09042;
        border-spacing: 0;
        width: 100%;
    }

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

    #index .table-layout table th,
    #page .table-layout table th {
        background: #ffebc3;
        font-weight: bold;
        text-align: center;
    }

    #index .table-layout table td,
    #page .table-layout table td {
        background: #fff;
        border-left: 1px solid #f09042;
        border-top: 1px solid #f09042;
        text-align: center;
    }

    #index .table-layout table tr th:first-child,
    #page .table-layout table tr th:first-child {
        border-bottom: 1px solid #f09042;
    }

    #index .table-layout table tr th+th,
    #page .table-layout table tr th+th {
        border-left: 1px solid #333;
    }

    #index .table-layout table tr th:first-child td,
    #page .table-layout table tr th:first-child td {
        border-top: none;
    }

    #index .table-layout table tr:first-child td,
    #page .table-layout table tr:first-child td {
        border-top: none;
    }

    #index .table-layout table td:first-child,
    #page .table-layout table td:first-child {
        border-top: none;
    }

    #index .table-layout table tr:last-child th,
    #page .table-layout table tr:last-child th {
        border-bottom: none;
    }

    #index .float-wrap,
    #page .float-wrap {
        margin: 20px auto 30px;
        position: relative;
    }

    #index .float-img,
    #page .float-img {
        width: 240px;
    }

    #index .float-img .flame,
    #page .float-img .flame {
        border: 3px solid #ffebc3;
    }

    #index .fl,
    #page .fl {
        float: left;
        margin-right: 20px;
    }

    #index .fr,
    #page .fr {
        float: right;
        margin-left: 20px;
    }

    #index .float-img img,
    #page .float-img img {
        height: auto;
        max-width: 100%;
    }

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

    #index .float-img .caption,
    #page .float-img .caption {
        margin: 10px auto 10px;
    }

    #index .caption,
    #page .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 {
        border-radius: 6px;
        display: block;
        font-size: 18px;
        font-weight: bold;
        margin: 30px auto;
        text-align: center;
        text-decoration: none;
        width: 55%;
        position: relative;        
    }

    #index .btn-internal a,
    #page .btn-internal a {
        color: #fff;
        padding: 20px 50px;
        background: url(img/pc/aw12.png) right 20px center no-repeat,linear-gradient(#95d051, #95d051);        
    }

    #index .btn-internal a:before,
    #index .btn-web a:before,    
    #page .btn-internal a:before,
    #page .btn-web a:before {
        border: 1px solid #fff;
        position:absolute;
        content:"";
        top:5px;
        left:5px;
        right:5px;
        bottom:5px;
        display:block;
        border-radius: 5px;
    }    

    #index .btn-internal a:hover,
    #page .btn-internal a:hover {
        background: url(img/pc/aw4.png) right 20px center no-repeat,linear-gradient(#cfa871, #c19050);
    }

    #index .btn-web a,
    #page .btn-web a {
        color: #fff;
        padding: 20px 50px;
        background: url(img/pc/aw11.png) right 20px center no-repeat,linear-gradient(#ee809f, #e95c84);
    }

    #index .btn-web a:hover,
    #page .btn-web a:hover {
        background: url(img/pc/aw13.png) right 20px center no-repeat,linear-gradient(#4389ca, #3067ba);        
    }

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

    #index .btn-link a,
    #page .btn-link a {
        background: url(img/pc/aw5.png) right center no-repeat;
        color: #f09042;
        font-size: 14px;
        font-weight: bold;
        padding-right: 25px;
        text-align: right;
        text-decoration: underline;
    }

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

    #index .box-wrap,
    #page .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;
    }

    #index .box-wrap .left_box,
    #page .box-wrap .left_box {
        margin-right: 25px;
    }

    #index .box-wrap .box,
    #page .box-wrap .box {
        border: 1px dashed #f39f53;
        width: 48%;
        padding: 20px 20px 10px;
        position: relative;
        display: flex;
        flex-flow: column;
        border-radius: 6px;
    }

    #index .box-wrap .box .box-head a,
    #page .box-wrap .box .box-head a {
        background: url(img/pc/aw5.png) right 15px center no-repeat;
        display: block;
        font-size: 18px;
        font-weight: bold;
        padding-right: 20px;
        text-decoration: none;
        line-height: 1.6;
        background-color: #ffebc3;
        padding: 10px 40px 10px 15px;
        border-radius: 5px;
    }

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

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

    #index .box-wrap .box .box-head a:hover,
    #page .box-wrap .box .box-head a:hover {
        background: url(img/pc/aw6.png) right 15px center no-repeat;
        background-color: #d2e1ac;                 
    }   

   #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 {
        background: #fff;
        border: 2px solid #f19039;
        border-radius: 6px;
        position: relative;
        width: 31%;
        border-top: 12px solid #f19039;
    }

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        background: #f3e5c9;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.4;
    }

    #index .frame-wrap .frame .frame-body,
    #page .frame-wrap .frame .frame-body {
        margin: 15px 20px;
    }

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

    /*sidebar
    ----------------------------------------*/

    #sub {
        float: right;
        width: 240px;
    }

    #sub .free_space {
        background: url(img/pc/free_bg.png) repeat;
        padding: 15px 20px 20px;
        margin-bottom: 2rem;
        width: 100%;
        border-radius: 10px;
    }
   
    #sub .free_space .ttl {
      margin: 0 0 15px;
    }
    
    #sub .free_space .ttl a {
        color: #fff;
        display: block;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        position: relative;
        background-color: #ef8933;
        padding: 3px 0;
        margin: 0 -25px;
    }

    #sub .free_space .ttl a::before {
        content: '';
        background: url(img/pc/ribon.png) no-repeat;
        position: absolute;
        display: block;
        width: 26px;
        height: 64px;
        bottom: -17px;
        left: -17px;
    }

    #sub .free_space .ttl a::after {
        content: '';
        background: url(img/pc/ribon2.png) no-repeat;
        position: absolute;
        display: block;
        width: 26px;
        height: 64px;
        bottom: -17px;
        right: -17px;
    } 

    #sub .free_space .ttl a span {
        border-top: 3px solid #fccf5e;
        border-bottom: 3px solid #fccf5e;
        display: block;
        padding: 8px 20px;
    } 

    #sub .free_space .ttl a:hover {
        color: #707070;
    }

    #sub .free_space .fs_img {
        max-width: 100%;
        margin: 0 0 15px;
    }
    
    #sub .free_space .txt {
        background-color: #fff;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    #sub .free_space a.more {
        position: relative;
        color: #fff;
        border-radius: 5px;
        display: block;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.4;
        padding: 20px 40px;
        text-align: center;
        text-decoration: none;
        width: 90%;
        margin: 0 auto;
        background: url(img/pc/aw15.png) right 15px center no-repeat,linear-gradient(#95d051, #95d051);
    }

    #sub .free_space a.more:before {
        border: 1px solid #fff;
        position: absolute;
        content: "";
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        display: block;
        border-radius: 5px;
    }    

    #sub .free_space p {
        background-color: #fff;
        margin: 0 0 15px;
        padding: 5px 10px;
    }    

    #sub .free_space a.more:hover {
        background: url(img/pc/aw9.png) right 20px center no-repeat,linear-gradient(#ef8732, #ea6825);
    }

    #sub .cate_menu .cate_menu_box {
        background: #fff;
        margin: 0 0 20px;
        padding: 0 25px 0px;
        width: 100%;
        border-radius: 20px;
    }

    #sub .cate_menu .cate_top a {
        position:relative;
        display: block;
        padding: 20px 0 10px;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.4;
    }
    
    #sub .cate_menu .cate_top a:before {
       content: "";
       background-color: #ef8933;
       width: 100%;
       height: 5px;
       position: absolute;
       top: 0;
       border-radius: 15px;
       left: 50%;
       margin-left: -50%;
   }    

     #sub .cate_menu .cate_top a:hover:before {
        content: "";
        background-color: #8abe3d;
        width: 100%;
        height: 5px;
        position: absolute;
        top: 0;
        border-radius: 15px;
        left: 50%;
        margin-left: -50%;
    }

    #sub .cate_menu ul li {
        border-top: 1px dashed #ef8933;        
    }

    #sub .cate_menu ul li:last-child {        
    }
    
    #sub .cate_menu ul li:hover {
        border-top: 1px dashed #8abe3d;        
    }
    
    #sub .cate_menu ul li:hover + li {
        border-top: 1px dashed #8abe3d;        
    }

    #sub .cate_menu ul li a {
        background: #fff url(img/pc/aw5.png) right center no-repeat;
        display: block;
        padding: 15px 25px 15px 0px;
        position: relative;
        color: #707070;
    }

    #sub .cate_menu ul li:last-child a {
        padding: 15px 25px 20px 0px;
    }    

    #sub .cate_menu ul li.child a {
        padding: 15px 25px 15px 25px;
    }     

    #sub .cate_menu ul li.child a:before {
        content: "└";
        position: absolute;
        top: 16px;
        left: 0px;
    } 
    
    #sub .cate_menu ul li a:hover {
        background: #fff url(img/pc/aw6.png) right center no-repeat;
    }
    
    /*footer
    ----------------------------------------*/

    footer {
        background: url(img/pc/con_bg03.png) top -10px left repeat-x;
        background-color: #fff;
        padding: 60px 0 0;
        width: 100%;
        min-width: 1000px;
        position: relative;
    }

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

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

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

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

    footer .inner {
        position: relative;
    }

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

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

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

    footer .frame-head a {
        background: #ffebc3;
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: bold;
    }

    footer .frame-head a:hover {
        background: #d2d2d2;
        color:#fff;
    }

    footer .frame-body {
        display: block;
        line-height: 100%;
        margin: 10px 60px 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;
        margin: 0 15px 15px 0;
        width: 30%;
    }

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

    footer .frame-body ul li.sub_cat a {
        background: url(img/pc/aw10.png) left 20px top 6px no-repeat;
        padding-left: 40px;
        position: relative;
    }

    footer .frame-body ul li:not(.sub_cat) a:hover {
        background: url(img/pc/ft_aw2.png) left top 8px no-repeat;
        color: #707070;
    }

    footer .frame-body ul li.sub_cat a:hover {
        background: url(img/pc/aw10.png) left 20px top 6px no-repeat;
    }
    
    footer .notes {
        background: url(img/pc/ft_line.png) top repeat-x;
        font-size: 12px;
        margin: 20px 0 0;
        line-height: 1.8;
        padding: 30px 20px;
        text-align: center;
    }

    footer .notes p span {
        display: block;
    }

    footer .copyright {
        background: #f19039;
        color: #fff;
        font-size: 11px;
        padding: 4px 0;
    }

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

    footer .copyright .stmp {
        background: url(img/pc/aw9.png) right center no-repeat;
        color: #fff;
        display: block;
        font-size: 13px;
        padding: 5px 30px 0 0;
    }

    /****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: #333;
        text-decoration: underline;
    }

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

    /*header
    ----------------------------------------*/

    header {
        background: #ffebc3;
        background-size: 8rem auto;
        width: 100%;
        padding: 2rem 0 0.6rem;
        position: relative;
        z-index: 110;
        min-height: 7.5rem;        
    }

    header p {
        margin: 0;
    }

    header .site_ttl {
        padding: 0 6rem 0 1rem;
    }

    header h1,
    header .site_ttl a {
        color: #816536;
        display: block;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.4;
        letter-spacing: 0.1rem;
    }

    header .menu_btn {
        position: absolute;
        top: 2.2rem;
        right: 1rem;
        width: 15%;
        z-index: 120;
    }
    
    header .menu_btn.fixed {
        position: fixed;
    }       

    header .menu_btn img {
        width: 100%;
    }

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

    /*nav
    ----------------------------------------*/

    nav {
        display: none;
        position: fixed;
        width: 69%;
        z-index: 110;
        top: 0;
        right: 0;
        background: #fff;
        height: 80vh;
    }

    nav .nav_wrap {
        padding: 2rem 1rem 1rem;
        overflow: auto;
        height: 80vh;
    }

    nav .nav_wrap::-webkit-scrollbar {
        width: 0.8rem;
    }

    nav .nav_wrap::-webkit-scrollbar-track {
        background: #d2d2d2;
        border-radius: 10px;
    }

    nav .nav_wrap::-webkit-scrollbar-thumb {
        background: #a0a0a0;
        border-radius: 10px;
    }    

    nav a{
        text-decoration: none;
    }

    nav ul .li a {
        background: url(img/sp/aw1_sp.png) right 1.5rem center no-repeat #ffebc3;
        background-size: 0.9rem auto;
        display: block;
        font-size: 100%;
        font-weight: bold;
        padding: 1.6rem 3.5rem 1.6rem 1.5rem;
        line-height: 1.2;
    }

    nav ul .li02 a {
        background: url(img/sp/aw1_sp.png) right 1.5rem center no-repeat;
        background-size: 0.9rem auto;
        display: block;
        font-size: 100%;
        font-weight: bold;
        padding: 1.6rem 3.5rem 1.6rem 1.5rem;
        line-height: 1.2;
        border: 0.1rem solid #f7c398;
    }    
    
    nav ul .li02.sub a {
        background: url(img/sp/aw2_sp.png) left 1.5rem top 1.7rem no-repeat,url(img/sp/aw1_sp.png) right 1.5rem center no-repeat;
        background-size: 0.9rem auto;
        padding: 1.6rem 3.5rem 1.6rem 3rem;
    }    

    nav ul li + li {
        margin-top: 1rem;
    }

    nav .close_btn {
        position: absolute;
        top: 2rem;
        left: -4.5rem;
        width: 4.5rem;
    }

    nav .close_btn img {
        width: 100%;
    }    

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

    #mv {
        background: url(img/sp/mv2_sp.png) center bottom 1rem no-repeat, url(img/pc/header.png) top -60px left repeat-x,url(img/sp/mv_bg_sp.png) repeat;
        background-size: 95%,700px, 70px;
        width: 100%;
        position: relative;
    }
    
    #mv::before {
        content: "";
        position: absolute;
        background: url(img/sp/mv2_sp.png) no-repeat;
        background-size: cover;
        display: block;
        width: 100%;
        height: 45.5px;
        bottom: 10px;
        left: 0px;
    }
    
    #mv::after {
        content: "";
        position: absolute;
        background: url(img/sp/mv4_sp.png) no-repeat;
        background-size: cover;
        display: block;
        width: 100%;
        height: 13px;
        bottom: 0px;
        left: 0px;
    }

    #mv .inner {
        padding: 3rem 2rem 6.5rem 2rem;
    }

    #mv .mv_wrap {
        background: url(img/sp/mv6_sp.png) no-repeat;
        background-size: cover;
        padding: 1rem;
        border: 0.3rem solid #ffc184;
        border-radius: 1rem;
    }

    #mv .mv_wrap h2 {
        color: #ea5300;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.4;
        padding: 0 2rem .5rem;
        margin: 0 0 .5rem;
        text-align: center;
        position: relative;
    }
/*
    #mv .mv_wrap h2::after {
        background: #ea5300;
        content: "";
        width: 3.5rem;
        height: 0.2rem;
        margin-left: -1.75rem;
        position: absolute;
        bottom: 0;
        left: 50%;
    }    
*/
    #mv .mv_txt {
        font-size: 1.5rem;
    }
    
    /*contents
    ----------------------------------------*/

    #contents,
    #contents_low {
    }

    #contents {
        padding: 2.5rem 1rem 8rem;
    }

    #contents_low {
        padding: 2rem 1rem 8rem;
        background: url(img/pc/header.png) top -60px left repeat-x;
        background-size: 700px;      
    }

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

    #pankuzu a {
        text-decoration: underline;
    }

    #pankuzu::-webkit-scrollbar{
        height: 0.6rem;
    }
    #pankuzu::-webkit-scrollbar-track{
        background: #d2d2d2;
        border-radius: 10px;
    }
    #pankuzu::-webkit-scrollbar-thumb {
        background: #a0a0a0;
        border-radius: 10px;
    }

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

    #index h2,
    #page h1 {
        background: url(img/sp/h1_sp.png) no-repeat center left 1rem, 
                    url(img/sp/h1_bg_sp.png) repeat;
        background-size: 4.5rem,0.5rem;
        color: #fff;
        font-size: 2rem;
        margin: 0 0 2rem;
        padding: 1.3rem 2.5rem 1.1rem 6.5rem;
        position: relative;
        border-radius: 20px 20px 0 0;
    }

    #index h3,
    #page h2 {
        border: 0.1rem solid #dcc087;
        border-bottom: 0.4rem solid #dcc087;
        font-size: 1.9rem;
        padding: 0.8rem 0.4rem 0.8rem;
        position: relative;
        text-align: center;
    }
    
    #index h3:before, 
    #page h2:before {
        border-top: 0.1rem solid #ef8933;
        border-right: 0.1rem solid #ef8933;
        border-bottom: 0.4rem solid #ef8933;
        content: "";
        position: absolute;
        top: -0.1rem;
        right: -0.1rem;
        bottom: -0.4rem;
        width: 41%;
    }    

    #index h3:after,
    #page h2:after {
        background: url(img/sp/h2_sp.png) no-repeat;
        background-size: 100%;
        content: "";
        width: 3rem;
        height: 2rem;
        position: absolute;
        bottom: -2.2rem;
        left: 50%;
        margin-left: -1.5rem;
    }    

    #page h2 a {
        display: block;
        position: relative;
    }

    #index h4,
    #page h3 {
        background-color: #e8c071;
        border-radius: 10px;        
        color: #fff;
        font-size: 1.9rem;
        padding: 0.6rem 1.5rem;

    }

    #index h5,
    #page h4 {
        border-bottom: 0.4rem solid #9bccce;
        font-size: 1.8rem;
        padding: 0 0 0.5rem;
        position: relative;
    }

    #index h5::after,
    #page h4::after {
        border-bottom: 0.4rem solid #f09042;
        content: "";
        display: block;
        line-height: 0;
        overflow: hidden;
        position: absolute;
        left: 0;
        bottom: -0.4rem;
        width: 25%;
    }

    #index h6,
    #page h5 {
        border-bottom: 0.4rem dotted #f09042;
        font-size: 1.7rem;
        padding: 0 0 0.5rem;
        position: relative;
    }

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

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

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

    #index ol li:before,
    #page ol li:before {
        border: 1px solid #f1984f;
        background-size: 2rem;
        color: #f1984f;
        content: counter(number);
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        margin-top: -1.3rem;
        left: -0.1rem;
        letter-spacing: -1px;
        line-height: 2.2rem;
        width: 2rem;
        height: 2rem;
        position: absolute;
        text-align: center;
        top: 1.35rem;
    }

    #index p span,
    #page p span {
        background: linear-gradient(transparent 60%, #fcf051 60%);
        color: #d8614a;
        font-size: 1.8rem;
        font-weight: bold;
    }

    #index .rank,
    #page .rank,
    #index .check,
    #page .check {
        background: url(img/sp/topic_sp.png) repeat;
        background-size: 0.6rem, auto;
        border: 0.1rem dashed #f19039;
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.4;
        margin: 2.7rem 0 2.7rem;
        padding: 2.5rem 1.5rem 1rem 7rem;
        position: relative;
        z-index: 3;
        border-radius: 0.5rem;
        counter-increment: number;
    }

    #index .rank:before,
    #page .rank:before,
    #index .check:before,
    #page .check:before {
        content: '';
        display: block;
        position: absolute;
        left: 0.5rem;
        top: 50%;
        margin: -2.75rem 0 0;
        width: 5.5rem;
        height: 5.5rem;
        z-index: 5;
    }

    #index .rank:before,
    #page .rank:before {
        background: url(img/sp/rank.png) left center no-repeat;
        background-size: 100%;
        content: counter(number);
        color: #fff;
        font-size: 2.7rem;
        text-align: center;
        padding-top: 1rem;        
    }

    #index .check:before,
    #page .check:before {
        background: url(img/sp/check.png) left center no-repeat;
        background-size: 100%;
    }

    #index .table-layout,
    #page .table-layout {
        margin: 2.9rem auto;
    }

    #index .table-layout table,
    #page .table-layout table {
        border-left: 0.1rem solid #f09042;
        border-spacing: 0;
        margin: 1.7rem 0 1rem;
        overflow: hidden;
        width: 100%;
        border-right: 0.1rem solid #f09042;
        border-bottom: 0.1rem solid #f09042;
    }

    #index .table-layout table tr,
    #page .table-layout table tr {
        display: block;
    }

    #index .table-layout table thead th,
    #index .table-layout table tbody th,
    #index .table-layout table tbody td,
    #page .table-layout table thead th,
    #page .table-layout table tbody th,
    #page .table-layout table tbody td {
        padding: 1.7rem 1rem;
        vertical-align: middle;
        word-break: break-all;
        width:100%;
        display: block;
    }

    #index .table-layout table th,
    #page .table-layout table th {
        background: #ffebc3;
        border-top: 0.1rem solid #f09042;
        font-weight: bold;
        text-align: center;
    }

    #index .table-layout table td,
    #page .table-layout table td {
        background: #fff;
        border-top: 0.1rem solid #f09042;
        text-align: center;
    }

    #index .table-layout table tr td:first-child,
    #index .table-layout table tr th:first-child,
    #page .table-layout table tr td:first-child,
    #page .table-layout table tr th:first-child {
        border-left: none;
    }

    #index .table-layout table tr:first-child td,
    #index .table-layout table tr:first-child th,
    #page .table-layout table tr:first-child td,
    #page .table-layout table tr:first-child th {
        /* border-top: none; */
    }

    #index .float-wrap,
    #page .float-wrap {
        margin: 3rem auto;
        position: relative;
    }

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

    #index .float-img,
    #page .float-img {
        width: 100%;
        margin: 0 auto;
    }

    #index .float-img .flame,
    #page .float-img .flame {
        background: #d8d8d8;
        border: 0.2rem solid #ffebc3;
    }

    #index .float-img img,
    #page .float-img img {
        max-width: 100%;
    }

    #index .caption,
    #page .caption {
        text-align: center;
        font-size: 1.2rem;
        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 {
        border-radius: 0.6rem;
        display: block;
        font-size: 1.3rem;
        font-weight: bold;
        margin: 1.5rem auto;
        text-align: center;
        text-decoration: none;
        width: 80%;
        line-height: 1.4;
        position: relative;
    }

    #index .btn-internal a:before, 
    #index .btn-web a:before,
    #index .btn-tel a:before, 
    #page .btn-internal a:before, 
    #page .btn-web a:before,
    #page .btn-wtel a:before {
        border: 0.1rem solid #fff;
        position: absolute;
        content: "";
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        display: block;
        border-radius: 0.5rem;
    }    

    #index .btn-internal a,
    #page .btn-internal a {
        background: url(img/sp/aw4_sp.png)  right 1.5rem center no-repeat,linear-gradient(#95d051, #95d051);
        background-size: 1.5rem auto;
        color: #fff;
        padding: 1.8rem 4rem 1.5rem;
    }

    #index .btn-web a,
    #page .btn-web a {
        background: url(img/sp/aw3_sp.png) right 1.5rem center no-repeat,linear-gradient(#ee809f, #e95c84);
        background-size: 1.5rem auto,100%;
        color: #fff;
        padding: 1.8rem 4rem 1.5rem;
    }

    #index .btn-link a,
    #page .btn-link a {
        background: #fff url(img/sp/aw6_sp.png)  right 1.5rem center no-repeat;
        background-size: 1.5rem auto;
        color: #f09042;
        padding: 1.5rem 4rem 1.5rem 2rem;
        border: 0.2rem solid #f09042;
    }

    #index .btn-tel a,
    #page .btn-tel a {
        background: url(img/sp/tell_sp.png) left 1.5rem center no-repeat, url(img/sp/aw5_sp.png)  right 1.5rem center no-repeat, linear-gradient(#9bccce, #7dbdbf);
        background-size: 2.6rem auto, 1.5rem auto,100%;
        color: #fff;
        padding: 1.8rem 4.5rem;
    }

    #index .box-wrap .box,
    #page .box-wrap .box {
        background: #fff;
        border: 0.2rem dashed #f1913a;
        width: 100%;
        margin: 3rem auto;
        padding: 1.5rem 1.5rem 0;
        border-radius: 0.5rem;        
    }

    #index .box-wrap .box .box-head,
    #page .box-wrap .box .box-head {
        background: #ffebc3;
        border-radius: 0.5rem;        
    }

    #index .box-wrap .box .box-head a,
    #page .box-wrap .box .box-head a {
        background: url(img/sp/aw6_sp.png) right 2rem center no-repeat;
        background-size: 1.4rem auto;
        color: #000;
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        text-decoration: none;
        padding: 1.5rem 4rem 1.5rem 2rem;
    }

    #index .box-wrap .box .box-body,
    #page .box-wrap .box .box-body {
        margin: 2rem 0.8rem 0;
    }
    
    #index .box-wrap .box .box-body p,
    #page .box-wrap .box .box-body p {
        margin: 0;
    }
    
    #index .box-wrap .box .box-body a,
    #page .box-wrap .box .box-body a,
    #index .frame-wrap .frame .frame-body a,
    #page .frame-wrap .frame .frame-body a
    {
        background:url(img/sp/aw6_sp.png) right 2rem center no-repeat;
        background-size: 1.4rem auto;
        border: 0.2rem solid #f09042;
        box-shadow: 0 0 0 0.3rem #fff inset;
        border-radius: 0.5rem;
        color: #f09042;
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 1.5rem 0;
        padding: 1.8rem 4rem 1.5rem 2rem;
        text-align: center;
        text-decoration: none;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #fff;
        border: 0.3rem solid #f1913a;
        border-top: solid 1rem #f1913a;
        border-radius: 0.6rem;
        margin: 2rem 0;
    }

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

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        background: #f3e5c9;
        padding: 1rem 2rem 1rem 2rem;
        font-size: 1.8rem;
        font-weight: bold;
    }

    #index .frame-wrap .frame .frame-head a,
    #page .frame-wrap .frame .frame-head a {
        background: url(img/old/sp/aw2_sp.png) right 2.5rem center no-repeat;
        background-size: 1.7rem auto;
        color: #fcf051;
        display: block;
        padding: 1.5rem 4.5rem 1.5rem 2rem;
        text-decoration: none;
    }

    #index .frame-wrap .frame .frame-body,
    #page .frame-wrap .frame .frame-body {
        padding: 2rem 2rem;
    }

    #sub .free_space {
        background: url(img/pc/free_bg.png) repeat;
        background-size: 0.5rem;
        padding: 2rem 2rem 2rem;
        margin: 3rem 0;
        border-radius: 1.5rem;
    }

    #sub .free_space .ttl {
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.4;
        margin: 0 -1rem 1.5rem;
    }

    #sub .free_space .ttl a {
        color: #fff;
        display: block;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        background-color: #ef8933;
        padding: 0.4rem 0;
        z-index: 4;
    }

    #sub .free_space .ttl a::before {
        content: '';
        background: url(img/sp/ribon_sp.png) bottom right no-repeat;
        background-size: 2.7rem;
        position: absolute;
        display: block;
        width: 3rem;
        height: 7rem;
        bottom: -1.7rem;
        left: -2rem;
    }

    #sub .free_space .ttl a::after {
        content: '';
        background: url(img/sp/ribon2_sp.png) bottom left no-repeat;
        background-size: 2.7rem;
        position: absolute;
        display: block;
        width: 3rem;
        height: 7rem;
        bottom: -1.7rem;
        right: -2rem;
    } 

    #sub .free_space .ttl a span {
        border-top: 0.3rem solid #fccf5e;
        border-bottom: 0.3rem solid #fccf5e;
        display: block;
        padding: 0.8rem 2rem;
    }     

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

    #sub .caption {
        line-height: 1.4;
        text-align: center;
        word-break: break-all;
        color: #fff;
        font-size: 1.4rem;
        background: url(img/pc/free_bg.png) repeat;
        margin: 0.5rem 0 1.4rem;
    }
    
    #sub .free_space .txt {
        background-color: #fff !important;
        margin: 0 0 1.4rem;
        padding: 1rem 1.5rem;
    }

    #sub .free_space a.more {
        position: relative;
        color: #fff;
        border-radius: 5px;
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.4;
        padding: 20px 45px;
        text-align: center;
        text-decoration: none;
        width: 90%;
        margin: 0 auto;
        background: url(img/pc/aw3.png) right 20px center no-repeat,linear-gradient(#95d051, #95d051);
    }

    #sub .free_space a.more:before {
        border: 1px solid #fff;
        position: absolute;
        content: "";
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        display: block;
        border-radius: 5px;
    }


    /*footer
    ----------------------------------------*/

    footer {
        background: #fff;
        padding: 2rem 0 0;
        width: 100%;
    }

    footer .inner{
        padding: 0 1rem;
        position: relative;
    }

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

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

    footer .con_ttl {
        background: url(img/sp/footer01.png) repeat-x;
        font-weight: bold;
        margin: 0 -1rem 2rem;
        text-align: center;
        background-size: 100%;
        background-color: #f19039;
        padding: 3rem 1rem 2rem;
        color: #fff;
    }

    footer .frame-wrap {
        width: 100%;
    }

    footer .frame-wrap .frame-head a {
        background: #ffebc3;
        display: block;
        font-weight: bold;
        font-size: 1.65rem;
        padding: 1.2rem 1rem;
    }

    footer .frame-wrap .frame {
        margin-bottom: 2rem;
    }

    footer .frame-wrap .frame-body a {
        background: url(img/sp/fra_sp.png) left 1rem center no-repeat, url(img/sp/aw10_sp.png) right 1rem center no-repeat;
        background-size: 1.5rem auto, 0.9rem auto;
        border-bottom: 0.2rem dotted #f19039;
        display: block;
        padding: 1.2rem 3rem 1.2rem 3.5rem;
    }

    footer .frame-wrap .frame-body li.sub_cat a {
        background: url(img/sp/aw10_sp.png) right 1rem center no-repeat;
        background-size: 0.9rem auto;
        padding-left: 3.5rem;
        position: relative;
    }

    footer .frame-wrap .frame-body li.sub_cat a:before {
        content: "";
        background: url(img/sp/aw9_sp.png) left 1rem top 1.6rem no-repeat;
        background-size: 1rem;
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        left: 0.5rem;
        top: 0rem;
    }

    footer .sitemap a {
        background: url(img/sp/fra_sp.png) left 1rem center no-repeat, url(img/sp/aw10_sp.png) right 1rem center no-repeat, #ffebc3;
        background-size: 1.5rem auto, 0.9rem auto;
        display: block;
        font-weight: bold;
        font-size: 1.6rem;
        padding: 1.2rem 3rem 1.2rem 3.5rem;
    }

    footer .notes {
        font-size: 1.3rem;
        line-height: 1.6;
        margin: 1.5rem 0;
        padding: 0 1rem;
        text-align: center;
    }

    footer .notes span {
        display: block;
    }

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

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

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