@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;
    }

    /*sidebar
    ----------------------------------------*/
    #sub {
        background: #ebf6f8;
        width: 240px;
        z-index: 1000;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        overflow-x: hidden;
        overflow-y: scroll;
        -ms-overflow-style:none;
    }

    #sub::-webkit-scrollbar{
        display:none;
    }

    #sub .back_color {
        background: #61a6ac;
        padding: 0 10px 80px;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    #sub .back_color:after {
        background: url(img/side.png) bottom center no-repeat;
        content: "";
        width: 240px;
        height: 90px;
        position: absolute;
        bottom: -90px;
        left: 0;
    }

    #sub .free_space {
        background: #fff;
        padding: 20px 20px 15px;
        margin: 0 0 20px;
        text-align: center;
    }

    #sub .free_space .ttl a {
        color: #61a6ac;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 18px;
        padding-bottom: 10px;
        text-align: center;
    }

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

    #sub .free_space .left_txt {
        text-align: left;
    }

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

    #sub .free_space a.more {
        background: #fff url(img/aw1.png) right 10px center no-repeat;
        border: 3px solid #d77650;
        border-radius: 30px;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 16px;
        margin: 10px auto;
        padding: 6px 25px;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

    #sub .free_space a.more:hover {
        background: #ebf6f8 url(img/aw1.png) right 10px center no-repeat;
    }

    #sub .cate_menu .cate_menu_box {
        margin: 0 0 20px;
        text-align: justify;
    }

    #sub .cate_menu .cate_top a {
        background: #f5f3ef;
        display: block;
        padding: 30px 15px;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 16px;
        text-align: center;
    }

    #sub .cate_menu .cate_top a:hover {
        background: #f9f8f5;
    }

    #sub .cate_menu ul li span {
        display: block;
    }

    #sub .cate_menu ul li {
        border-top: 1px solid #f5f3ef;
    }

    #sub .cate_menu ul li a {
        background: #fff url(img/aw2.png) right 15px center no-repeat;
        display: block;
        padding: 13px 40px 13px 15px;
    }

    #sub .cate_menu ul li a:hover {
        background: #f9f8f5 url(img/aw2.png) right 15px center no-repeat;
    }

    #sub .cate_menu ul li.child a {
        background: #fff url(img/aw3.png) right 15px center no-repeat;
        padding: 13px 40px 13px 35px;
        position: relative;
    }

    #sub .cate_menu ul li.child a:hover {
        background: #f9f8f5 url(img/aw3.png) right 15px center no-repeat;
    }

    #sub .cate_menu ul li.child a:before {
        content: "└";
        color: #333;
        position: absolute;
        top: 15px;
        left: 10px;
    }

    #sub .sitemap {
        text-align: right;
        position: relative;
    }

    #sub .sitemap a {
        background: url(img/aw4.png) right center no-repeat;
        color: #fff;
        display: inline-block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 13px;
        padding-right: 20px;
        text-align: right;
        text-decoration: underline;
    }

    #sub .sitemap a:hover {
        text-decoration: none;
    }

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

    header .site_ttl {
        margin: 30px auto;
    }

    header .site_ttl h1,
    header .site_ttl a {
        color: #fff;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 28px;
        line-height: 1.4;
        letter-spacing: 2px;
        padding: 0 10px;   
    }

    header .lead {
        color: #fff;
        font-size: 13px;
        padding: 0 10px;  
        margin: 0 0 25px;
    }

    /*mv
    ----------------------------------------*/
    #mv {
        margin: 0 -100vh;
    }

    #mv .bg {
        background:#F2F2F2;
        background-size: cover;
        width: 100%;
        min-width: 1000px;
        max-width: 2000px;
        padding: 160px 0 100px;
        margin: 0 auto;
    }

    #mv .mv_wrap {
        margin: 0 0 0 auto;
        width: 720px;
    }

    #mv .mv_wrap .mv_catch {
        width: 50%;
    }

    #mv .mv_wrap .mv_catch h2 {
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: 1.5px;
        margin: 0 0 30px;
        position: relative;
        z-index: 3;
    }

    #mv .mv_wrap .mv_catch h2:before {
        background: url(img/mv1.png) left top no-repeat;
        content: "";
        width: 127px;
        height: 138px;
        position: absolute;
        top: -82px;
        left: -20px;
        z-index: -1;
    }

    #mv .mv_wrap .mv_txt {
        line-height: 1.8;
        text-align: justify;
    }

    /*contents
    ----------------------------------------*/
    #contents,
    #contents_low {
        margin: 0 auto;
        min-width: 1000px;
        width: 1000px;
        position: relative;
        min-height: 100%;
    }

    #index,
    #page {
        float: right;
        width: 720px;
        margin: 50px 0 0;
        padding: 0 0 100px;
    }

    #page {
        margin: 30px 0 0;
        min-height: 2000px;
    }

    #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 h1,
    #index h2,
    #index h3,
    #index h4,
    #index h5,
    #page h1,
    #page h2,
    #page h3,
    #page h4,
    #page h5 {
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        line-height: 1.4;
        margin: 30px 0;
    }

    #index h2,
    #page h1 {
        background: #508a8f url(img/h2_bg.png) center top 265px repeat;
        color: #fff;
        font-size: 30px;
        margin-top: 0;
        padding: 20px 15px;
        text-align: center;
    }

    #index h3,
    #page h2 {
        background: #ebf6f8;
        border-left: 3px solid #7db6bb;
        font-size: 28px;
        padding: 20px 20px;
    }

    #index h4,
    #page h3 {
        border-bottom: 5px solid #f2a880;
        font-size: 24px;
        padding: 0 25px 10px;
    }

    #index h5,
    #page h4 {
        border-bottom: 2px solid #e6f4f6;
        font-size: 20px;
        padding: 0 25px 10px;
    }

    #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 7px 3px;
        margin: 5px 0;
        padding-left: 35px;
    }    

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

    #index ol li:before,
    #page ol li:before {
        background: #62a6ac;
        border-radius: 50%;
        color: #fff;
        content: counter(number);
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 14px;
        height: 18px;
        left: 8px;
        letter-spacing: -.5px;
        line-height: 19px;
        margin-top: -15px;
        position: absolute;
        text-align: center;
        top: 18px;
        width: 19px;
    }

    #index p span,
    #page p span {
        color: #f3af8a;
        font-size: 18px;
        font-weight: bold;
    }

    .rank {
        background: url(img/topic_1.png) top right no-repeat, url(img/topic_2.png) bottom right no-repeat, #f5f3ef;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 28px;
        line-height: 1.4;
        margin: 50px 0 30px;
        padding: 25px 50px 25px 95px;
        position: relative;
        z-index: 1;
    }

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

    .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;
    }

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

    .recommend,
    .pickup {
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 22px;
        line-height: 1.4;
        margin: 50px 0 30px;
        padding: 20px 20px 15px 20px;
        position: relative;
        text-align: center;
    }

    .recommend:before {
        background: #fff url(img/rd.png) top center no-repeat;
        content: '';
        display: block;
        height: 13px;
        left: 50%;
        margin: -6px 0 0 -65px;
        position: absolute;
        top: 0;
        width: 130px;
    }

    .pickup:before {
        background: #fff url(img/pu.png) top center no-repeat;
        content: '';
        display: block;
        height: 13px;
        left: 50%;
        margin: -6px 0 0 -40px;
        position: absolute;
        top: 0;
        width: 80px;
    }

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

    .table-layout table {
        border-collapse: separate;
        border-spacing: 0;
        overflow: hidden;
        width: 100%;
    }

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

    .table-layout table th {
        background: #ebf6f8;
        border: 3px solid #fff;
        font-weight: bold;
        text-align: center;
        width: 30%;
    }

    .table-layout table td {
        background: #f5f3ef;
        border: 3px solid #fff;
        text-align: center;
    }

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

    .float-img {
        width: 240px;
    }

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

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

    .float-img img {
        background: #ffa478;
        border: 2px solid #ffa478;
        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 {
        color: #fff;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 18px;
        margin: 30px auto;
        text-align: center;
        text-decoration: none;
        width: 50%;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: #61a6ac url(img/aw4.png) right 20px center no-repeat;
        border-radius: 30px;
        padding: 20px 55px;
    }

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

    #index .btn-web a,
    #page .btn-web a {
        background: #d77650 url(img/aw4.png) right 20px center no-repeat;
        border-radius: 30px;
        padding: 20px 55px;
    }

    #index .btn-web a:hover,
    #page .btn-web a:hover {
        background: #ca361e url(img/aw4.png) right 20px center no-repeat;
    }

    #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;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 14px;
        padding-left: 20px;
        text-align: right;
        text-decoration: underline;
    }

    #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 {
        background: #f5f3ef url(img/div.png) top 20px center no-repeat;
        width: 48%;
        padding: 80px 20px 20px;
        position: relative;
        display: flex;
        flex-flow: column;
    }

    .box .box-head {
        padding: 5px 5px 10px 5px;
    }

    #index .box .box-head a,
    #page .box .box-head a {
        background: url(img/aw2.png) right center no-repeat;
        display: block;
        color: #61a6ac;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 20px;
        padding-right: 25px;
        text-decoration: none;
    }

    .box .box-body {
        padding: 10px 0;
        height: 100%;
    }

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

    .permalink {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

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

    #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: 60px 0 40px;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #fff;
        border: 1px solid #61a6ac;
        padding: 30px 20px 20px;
        width: 32%;
        position: relative;
    }

    #index .frame-wrap .frame:before,
    #page .frame-wrap .frame:before {
        background: url(img/box.png) top center no-repeat;
        content: "";
        width: 33px;
        height: 47px;
        position: absolute;
        top: -30px;
        left: 50%;
        margin-left: -15px;
    }

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 18px;
        line-height: 1.4;
    }

    /*footer
    ----------------------------------------*/
    footer {
        background: #f5f3ef;
        padding: 40px 0 0;
        width: 100%;
        min-width: 1000px;
    }

    footer #pagetop {
        position: absolute;
        top: -100px;
        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/pt_h.png) center center no-repeat;
    }

    footer .inner {
        padding: 0;
        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: 20px 0 40px;
        padding: 0;
        width: 100%;
    }

    footer .frame-head {
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 16px;
        margin: 0 0;
    }

    footer .frame-head a {
        border-bottom: 1px solid #61a6ac;
        color: #61a6ac;
        display: block;
        padding: 0 0 10px;
    }

    footer .frame-head a:hover {
        border-bottom: 1px solid #909090;
        color: #909090;
    }

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

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

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

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

    footer .frame-body ul li.sub_cat a:hover {
        color: #909090;
    }

    footer .frame-body ul li.sub_cat a {
        background: none;
        display: block;
        text-decoration: none;
        padding: 5px 10px 5px 40px;
        width: 100%;
        line-height: 135%;
        margin: 0 0 5px;
        position: relative;
    }

    footer .frame-body ul li.sub_cat a:after {
        content: "└";
        color: #333;
        position: absolute;
        top: 6px;
        left: 20px;
    }

    footer .notes {
        background: #e3ebe8;
        font-size: 12px;
        margin: 0 0 40px;
        padding: 15px 20px;
    }

    footer .copyright {
        background: #61a6ac;
        color: #fff;
        font-size: 12px;
        padding: 3px 0;
        text-align: center;
    }

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

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

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

    .pc {
        display: none;
    }

    .left, .Left {
        float: left;
    }

    .right, .Right {
        float: right;
    }

    body {
        font-size: 100%;
    }

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

    #index p, #page p, #sub p {
        margin: 3% 0;
    }

    /*header
    ----------------------------------------*/
    header {
        background: #61a6ac;
        color: #fff;
        padding: 5% 0 3%;
        width: 100%;
        position: relative;
        z-index: 110;
    }

    header p {
        margin: 0!important;
    }

    header .site_ttl {
        padding: 0 3% 2%;
    }

    header h1,
    header .site_ttl a {
        color: #fff;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 110%;
        line-height: 1.4;
        margin: 0 20% 0 0;
        position: relative;
    }

    header .lead {
        font-size: 80%;
        padding: 0 8%;
    }

    header .menu_btn {
        background: url(img/sp/hum2.png) no-repeat;
        background-size: 100% 100%;
        position: fixed;
        top: 2%;
        right: 5%;
        width: 14%;
        z-index: 120;
    }

    header .menu_btn img {
        width: 100%;
    }

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

    /*nav
    ----------------------------------------*/
    nav {
        display: none;
        background: #fff;
        color: #333;
        position: fixed;
        width: 100%;
        z-index: 110;
        top: 0;
    }

    nav .nav_wrap::-webkit-scrollbar {
        width: 5px;
    }

    nav .nav_wrap::-webkit-scrollbar-track {
        border-radius: 10px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
        background-color: #eaeaea;
    }

    nav .nav_wrap::-webkit-scrollbar-thumb {
        background-color: #bcbcbc;
        border-radius: 10px;
        box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }

    nav .nav_wrap {
        padding: 3%;
        overflow-y: scroll;
        height: 60vh;
    }

    nav a{
        text-decoration: none;
    }

    nav ul li a {
        background: #f5f3ef url(img/sp/aw1_sp.png) right 15px center no-repeat;
        background-size: 15px 15px;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 100%;
        padding: 3% 12% 3% 3%;
    }

    nav ul li + li {
        margin-top: 3%;
    }

    nav .close_btn {
        display: block;
        width: 100%;
        text-align: center;
        font-weight: bold;
        padding: 3% 0;
    }

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

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

    #mv .mv_wrap .mv_catch h2 {
        padding: 10% 37% 10% 3%;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 115%;
        line-height: 1.4;
        position: relative;
    }

    #mv .mv_wrap .mv_catch h2:before {
        background: url(img/sp/mv2_sp.png) left center no-repeat;
        background-size: 63px 69px;
        content: "";
        width: 63px;
        height: 69px;
        position: absolute;
        top: 50%;
        left: 3%;
        z-index: -1;
        margin-top: -40px;
    }

    #mv .mv_wrap .mv_catch h2:after {
        background:#F2F2F2;
        background-size: cover;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }

    #mv .mv_txt {
        background: #f5f3ef;
        padding: 4% 8%;
        text-align: justify;
    }

    /*contents
    ----------------------------------------*/
    div#contents_low {
        display: flex;
        flex-flow: column-reverse nowrap;
    }

    #index, #page {
        padding: 0 3% 15%;
    }

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

    #pankuzu a {
        text-decoration: underline;
    }

    #pankuzu::-webkit-scrollbar{
        height: 5px;
    }
    #pankuzu::-webkit-scrollbar-track{
        background: #d2d2d2;
    }
    #pankuzu::-webkit-scrollbar-thumb {
        background: #a6a6a6;
    }

    #index h1,
    #index h2,
    #index h3,
    #index h4,
    #index h5,
    #page h1,
    #page h2,
    #page h3,
    #page h4,
    #page h5{
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        line-height: 1.4;
        margin: 9% 0 4%;
    }

    #index h2,
    #page h1 {
        background: #50898e url(img/sp/h2_bg_sp.png) center top repeat;
        background-size: 360px 270px;
        color: #fff;
        font-size: 138%;
        padding: 5% 7%;
    }

    #page h1 {
        margin-top: 0;
    }

    #index h3,
    #page h2 {
        background: #eff8f9;
        border-left: 3px solid #7db6bb;
        font-size: 125%;
        padding: 3% 5%;
    }

    #index h4,
    #page h3 {
        border-bottom: 4px solid #f2a880;
        font-size: 112%;
        padding: 0 0 3%;
    }

    #index h5,
    #page h4 {
        border-bottom: 2px solid #e6f4f6;
        font-size: 110%;
        padding: 0 0 2%;
    }

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

    #index ul li, #page ul li {
        background: url(img/sp/li_sp.png) no-repeat 3px 4px;
        background-size: 17px 17px;
        margin: 2% 0;
        padding-left: 30px;
    }

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

    #index ol li:before,
    #page ol li:before {
        background: #61a6ac;
        border-radius: 50%;
        color: #fff;
        content: counter(number);
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 90%;
        margin-top: -14px;
        left: 3px;
        letter-spacing: -.5px;
        line-height: 19px;
        width: 19px;
        height: 18px;
        position: absolute;
        text-align: center;
        top: 17px;
    }

    #index p span,
    #page p span {
        color: #f2a880;
        font-size: 120%;
        font-weight: bold;
    }

    .rank {
        background: url(img/sp/topic_1_sp.png) top right no-repeat, url(img/sp/topic_2_sp.png) bottom right no-repeat, #f5f3ef;
        background-size: 100%, 100%;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 125%;
        line-height: 1.4;
        margin: 10% 0 5%;
        padding: 8% 3% 7% 80px;
        position: relative;
        z-index: 3;
    }

    .recommend, .pickup {
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        line-height: 1.4;
        margin: 10% 0 5%;
        padding: 6% 3% 5%;
        position: relative;
        text-align: center;
    }

    .rank:before {
        content: '';
        display: block;
        position: absolute;
        left: 0px;
        top: 50%;
        margin: -42px 0 0;
        width: 78px;
        height: 85px;
    }

    .rank1:before {
        background: url(img/sp/rank1_sp.png) left center no-repeat;
        background-size: 78px 85px;
    }

    .rank2:before {
        background: url(img/sp/rank2_sp.png) top center no-repeat;
        background-size: 78px 85px;
    }

    .rank3:before {
        background: url(img/sp/rank3_sp.png) top center no-repeat;
        background-size: 78px 85px;
    }

    .rank4:before {
        background: url(img/sp/rank4_sp.png) top center no-repeat;
        background-size: 78px 85px;
    }

    .rank5:before {
        background: url(img/sp/rank5_sp.png) top center no-repeat;
        background-size: 78px 85px;
    }

    .recommend:before {
        background: #fff url(img/sp/rd_sp.png) top center no-repeat;
        background-size: 114px 13px;
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        margin: -7px 0 0 -62px;
        width: 125px;
        height: 13px;
    }

    .pickup:before {
        background: #fff url(img/sp/pu_sp.png) top center no-repeat;
        background-size: 62px 13px;
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        margin: -7px 0 0 -37px;
        width: 75px;
        height: 13px;
    }

    .table-layout {
        width: 100%;
        margin: 10% 0;
        overflow: auto;
        white-space: nowrap;
    }

    .table-layout table {
        border-collapse: separate;
        border-spacing: 0;
        margin: 6% 0;
        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: 5%;
        vertical-align: middle;
        word-break: break-all;
        width: 100%;
        margin: 2% 0;
    }

    .table-layout table th {
        background: #ebf6f8;
        font-weight: bold;
        text-align: center;
    }

    .table-layout table td {
        background: #f5f3ef;
        text-align: center;
    }

    .float-wrap {
        margin: 10% auto;
        position: relative;
    }

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

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

    .float-img img {
        border: 2px solid #f2a880;
        width: 100%;
    }

    .caption {
        text-align: center;
        font-size: 60%;
        color: #999;
        margin: 3% 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-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        margin: 5% auto;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: #61a6ac url(img/sp/aw2_sp.png)  right 25px center no-repeat;
        background-size: 15px 15px;
        border-radius: 30px;
        color: #fff;
        padding: 5% 14% 5% 7%;
    }

    #index .btn-web a,
    #page .btn-web a {
        background: #d77650 url(img/sp/aw2_sp.png)  right 25px center no-repeat;
        background-size: 15px 15px;
        border-radius: 30px;
        color: #fff;
        padding: 5% 14% 5% 7%;
    }

    #index .btn-link a,
    #page .btn-link a {
        background: #fff url(img/sp/aw1_sp.png)  right 25px center no-repeat;
        background-size: 15px 15px;
        border: 2px solid #333;
        border-radius: 30px;
        padding: 4% 14% 4% 7%;
    }

    #index .btn-tel a,
    #page .btn-tel a {
        background: url(img/sp/tel.png) left 20px center no-repeat, url(img/sp/aw2_sp.png)  right 25px center no-repeat, #b28850;
        background-size: 26px 37px, 15px 15px;
        border-radius: 30px;
        color: #fff;
        padding: 5% 14% 5% 16%;
    }

    .box {
        background: #f5f3ef url(img/sp/div_sp.png) top 15px center no-repeat;
        background-size: 39px 41px;
        width: 100%;
        margin: 10% auto;
        padding: 70px 7% 5%;
    }

    .box .box-head {
        padding: 0 0 15px;
    }

    #index .box .box-head a,
    #page .box .box-head a {
        background: url(img/sp/aw1_sp.png) right center no-repeat;
        background-size: 15px 15px;
        color: #61a6ac;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        text-decoration: none;
        padding: 0 15px 0 0;
    }

    .box .box-body a {
        background: #fff url(img/sp/aw3_sp.png) right 15px center no-repeat;
        background-size: 15px 15px;
        border: 2px solid #f2a880;
        border-radius: 40px;
        padding: 4% 40px;
        color: #61a6ac !important;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        margin: 6% auto;
        text-align: center;
        text-decoration: none !important;
        width: 90%;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #fff;
        border: 1px solid #61a6ac;
        padding: 10% 6% 6%;
        margin: 15% 0;
        position: relative;
    }

    #index .frame-wrap .frame:before,
    #page .frame-wrap .frame:before {
        background: url(img/sp/box_sp.png) top center no-repeat;
        background-size: 31px 44px;
        content: "";
        width: 31px;
        height: 44px;
        position: absolute;
        top: -28px;
        left: 50%;
        margin-left: -22px;
    }

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

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        padding: 0 0 5%;
    }

    #index .free_space,
    #page .free_space {
        background: #fff;
        border: 6px solid #61a6ac;
        padding: 5%;
        margin: 10% 0;
    }

    #index .free_space .ttl,
    #page .free_space .ttl {
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 113%;
        line-height: 1.4;
    }

    #index .free_space .ttl a,
    #page .free_space .ttl a {
        color: #61a6ac;
        display: block;
        padding: 3% 0;
        text-decoration: none;
    }

    #index .free_space .fs_img,
    #page .free_space .fs_img {
        max-width: 100%;
    }

    #index .free_space a.more,
    #page .free_space a.more {
        background: #fff url(img/sp/aw4_sp.png) right 15px center no-repeat;
        background-size: 15px 15px;
        border: 3px solid #d77650;
        border-radius: 40px;
        padding: 4% 35px;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 106%;
        margin: 6% auto;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

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

    footer .inner{
        position: relative;
    }

    footer #pagetop_sp {
        position: fixed;
        bottom: -100px;
        right: 3%;
        height: 82px;
        z-index: 5;
        transition: .3s;
    }

    footer #pagetop_sp img {
        width: 82px;
        height: 82px;
    }

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

    footer .frame-wrap .frame-head a {
        background: #fff url(img/sp/aw3_sp.png) right 10px center no-repeat;
        background-size: 15px 15px;
        border-top: 2px solid #61a6ac;
        color: #61a6ac;
        display: block;
        font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-size: 106%;
        padding: 3% 30px 3% 20px;
    }

    footer .frame-wrap .frame-body {
        border-top: 2px solid #61a6ac;
    }

    footer .frame-wrap {
        border-bottom: 2px solid #61a6ac;
    }

    footer .frame-wrap .frame-body a {
        background: #f5f3ef url(img/sp/aw5_sp.png) right 10px center no-repeat;
        background-size: 15px 15px;
        display: block;
        padding: 3% 30px 3% 20px;
    }

    footer .frame-wrap .frame-body li.sub_cat a {
        padding-left: 40px;
        position: relative;
    }

    footer .frame-wrap .frame-body li.sub_cat a:before {
        content: "└";
        position: absolute;
        left: 15px;
        top: 10px;
    }

    footer .frame-wrap .frame-body ul li + li {
        border-top: 1px solid #81807e;
    }

    footer .frame-wrap .frame-body .sub_list {
        border-top: 1px solid #81807e;
    }

    footer .notes {
        background: #e3ebe8;
        margin: 6% 3%;
        padding: 3% 5%;
    }

    footer .notes p {
        font-size: 85%;
        line-height: 1.4;
    }

    footer .notes span {
        display: block;
        font-size: 90%;
        text-align: center;
    }

    footer .copyright {
        background: #61a6ac;
        color: #fff;
        font-size: 75%;
        line-height: 1.4;
        padding: 3%;
        text-align: center;   
    }

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

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