@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: 2.0;
    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: #2b68b1;
        padding: 45px 0 0;
        width: 100%;
    }

    header .site_ttl {
        display: inline-block;
        min-height: 75px;
        position: relative;
        width: 77%;
    }

    header .site_ttl::before {
        background: url(img/icon.png) bottom center no-repeat;
        content: "";
        width: 97px;
        height: 104px;
        position: absolute;
        bottom: 0;
        left: 10px;
    }

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

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

    header nav {
        border-top: 1px solid #fff;
        margin: 0 auto;
        width: 100%;
    }

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

    header nav ul li {
        box-sizing: border-box;
        width: 100%;
    }

    header nav ul li a {
        color: #fff;
        align-items: center;
        box-sizing: border-box;
        display: flex;
        padding: 20px;
        justify-content: center;
        line-height: 1.7;
        width: 100%;
        height: 100%;
        text-align: justify;
    }

    header nav ul li a:hover {
        background: #fcf051;
        color: #2b68b1;
    }

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

    #mv {
        background-color: #7cc8f3;
    }

    #mv .inner {
        background: url(img/mv2.png) top -80px left no-repeat, url(img/mv1.png) bottom -20px right no-repeat,url(img/mv.png) top center no-repeat;
        margin: 0 auto;
        width: 100%;
        max-width: 1600px;
        padding: 65px 0;
    }

    #mv .mv_wrap {
        background: rgba(255, 255, 255, .8);
        border: 2px solid rgba(20, 184, 229, .8);
        border-radius: 170px;
        box-shadow: 0 0 8px #999;
        margin: 0 auto;
        padding: 20px 95px 30px;
        width: 640px;
    }

    #mv .mv_wrap h2 {
        background: url(img/home.png) top center no-repeat;
        color: #2b68b1;
        font-size: 25px;
        font-weight: bold;
        line-height: 1.3;
        letter-spacing: 2px;
        padding: 50px 0 15px;
        position: relative;
        text-align: center;
    }

    #mv .mv_wrap h2::after {
        background: #2b68b1;
        content: "";
        width: 10%;
        height: 2px;
        margin-left: -30px;
        position: absolute;
        bottom: 0;
        left: 50%;
    }

    #mv .mv_wrap .mv_txt {
        margin-top: 15px;
    }

    /*contents
    ----------------------------------------*/

    #contents,
    #contents_low {
        background: url(img/bg.png) repeat;
        background-size: 55px auto;
    }

    #contents {
        padding: 60px 0 150px;
    }

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

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

    #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-weight: bold;
        line-height: 1.4;
        margin: 30px 0 15px;
    }

    #index h2,
    #page h1 {
        background: #fff;
        border: 3px solid #2b68b1;
        border-bottom: 5px solid #2b68b1;
        color: #2b68b1;
        font-size: 30px;
        margin: 0 0 30px;
        padding: 25px 30px;
        position: relative;
        text-align: center;
    }

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

    #index h3,
    #page h2 {
        background: url(img/h3_2.png) left 20px center no-repeat, url(img/h3.png) repeat, #2b68b1;
        background-size: 38px 28px, 15px auto;
        color: #fff;
        border: 3px solid #1e54a1;
        font-size: 27px;
        padding: 20px 20px 20px 75px;
    }

    #page h2 a {
        color: #fff;
    }

    #index h4,
    #page h3 {
        border-bottom: 4px solid #dcdcdc;
        font-size: 25px;
        padding: 0 0 5px;
        position: relative;
    }

    #index h4::after,
    #page h3::after {
        border-bottom: 4px solid #72cce5;
        content: "";
        display: block;
        line-height: 0;
        overflow: hidden;
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 25%;
    }

    #index h5,
    #page h4 {
        background: url(img/h5.png) bottom center repeat-x;
        font-size: 21px;
        padding: 0 0 15px;
    }

    #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 10px 4px;
        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 {
        background: #2b68b1;
        border-radius: 50%;
        color: #fcf051;
        content: counter(number);
        display: block;
        font-size: 14px;
        height: 20px;
        left: 6px;
        letter-spacing: -.5px;
        line-height: 22px;
        margin-top: -16px;
        position: absolute;
        text-align: center;
        top: 18px;
        width: 20px;
    }

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

    #index .rank,
    #page .rank,
    #index .check,
    #page .check {
        background: url(img/topic.png) repeat;
        background-size: 10px auto;
        border: 1px solid #dcdcdc;
        font-size: 28px;
        font-weight: bold;
        line-height: 1.4;
        margin: 30px 0 15px;
        padding: 15px 30px 15px 110px;
        position: relative;
        z-index: 1;
    }


    #index .rank::before,
    #page .rank::before,
    #index .check::before,
    #page .check::before {
        content: '';
        display: block;
        height: 85px;
        left: 0;
        margin: -43px 0 0;
        position: absolute;
        top: 50%;
        width: 94px;
    }

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

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

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

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

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

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

    }

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

    #index .table-layout table,
    #page .table-layout table {
        border: 1px solid #333;
        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: #cbdfe5;
        font-weight: bold;
        text-align: center;
    }

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

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

    #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 {
        background: #d8d8d8;
        border: 2px solid #d8d8d8;
    }

    #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: 2px solid #2b68b1;
        box-shadow: 0 0 0 3px #fff inset;
        border-radius: 40px;
        display: block;
        font-size: 18px;
        font-weight: bold;
        margin: 30px auto;
        text-align: center;
        text-decoration: none;
        width: 70%;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: #4095f8 url(img/aw.png) right 20px center no-repeat;
        color: #fff;
        padding: 20px 50px;
    }

    #index .btn-internal a:hover,
    #page .btn-internal a:hover {
        background: #cfeb6e url(img/aw.png) right 20px center no-repeat;
        color: #1c3c7f;
    }

    #index .btn-web a,
    #page .btn-web a {
        background: #fadb4a url(img/aw.png) right 20px center no-repeat;
        color: #1c3c7f;
        padding: 20px 50px;
    }

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

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

    #index .btn-link a,
    #page .btn-link a {
        background: url(img/aw2.png) right center no-repeat;
        color: #4095f8;
        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 {
        background: #fff;
        border: 1px dashed #2b68b1;
        width: 48%;
        padding: 20px;
        position: relative;
        display: flex;
        flex-flow: column;
    }

    #index .box-wrap .box .box-head,
    #page .box-wrap .box .box-head {
        background: #2b68b1;
        padding: 15px;
    }

    #index .box-wrap .box .box-head a,
    #page .box-wrap .box .box-head a {
        background: url(img/aw3.png) right center no-repeat;
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        padding-right: 20px;
        text-decoration: none;
        line-height: 1.6;
    }

    #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 .permalink,
    #page .permalink {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #index .box-wrap .box:hover,
    #page .box-wrap .box:hover,
    #index .frame-wrap .frame:hover,
    #page .frame-wrap .frame: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: 40px 0;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #fff;
        border: 3px solid #fcf051;
        border-radius: 6px;
        position: relative;
        width: 31%;
    }

    #index .frame-wrap .frame .frame-head,
    #page .frame-wrap .frame .frame-head {
        background: #2b68b1;
        border-radius: 3px 3px 0 0;
        padding: 15px 20px;
    }

    #index .frame-wrap .frame .frame-head a,
    #page .frame-wrap .frame .frame-head a {
        background: url(img/aw3.png) right center no-repeat;
        color: #fcf051;
        display: block;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        text-decoration: none;
        padding-right: 25px;
    }

    #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/pickup.png) top 20px center no-repeat, url(img/free.png) repeat;
        background-size: 110px 26px, 10px auto;
        padding: 15px 20px;
        margin-bottom: 30px;
        width: 100%;
    }

    #sub .free_space .ttl {
        margin: 50px 0 15px;
    }

    #sub .free_space .ttl a {
        color: #2b68b1;
        display: block;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 10px;
        text-align: center;
    }

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

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

    #sub .free_space a.more {
        background: #4095f8 url(img/aw4.png) right 15px center no-repeat;
        color: #fff;
        border: 2px solid #2b68b1;
        box-shadow: 0 0 0 3px #fff inset;
        border-radius: 40px;
        display: block;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.4;
        padding: 10px 35px 10px 20px;
        text-decoration: none;
        width: 100%;
    }

    #sub .free_space a.more:hover {
        background: #cfeb6e url(img/aw4.png) right 15px center no-repeat;
        color: #1c3c7f;
    }

    #sub .cate_menu .cate_menu_box {
        background: #fff;
        border: 1px dashed #2b68b1;
        margin: 20px 0;
        padding: 10px;
        text-align: justify;
        width: 100%;
    }

    #sub .cate_menu .cate_top a {
        background: url(img/cate_bg.png) repeat, #d4e5ea;
        background-size: 15px auto;
        border: 5px solid #d4e5ea;
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.3;
    }

    #sub .cate_menu .cate_top a:hover {
        background: url(img/cate_bg2.png) repeat, #fdf365;
        background-size: 15px auto;
        border: 5px solid #fdf151;
    }

    #sub .cate_menu ul li a {
        background: #fff url(img/aw5.png) right 15px center no-repeat;
        border-bottom: 1px solid #dcdcdc;
        display: block;
        padding: 15px 40px 15px 20px;
        line-height: 1.3;
        position: relative;
    }

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

    #sub .cate_menu ul li.child a:before {
        content: "└";
        position: absolute;
        top: 16px;
        left: 20px;
    }

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

    #sub .cate_menu ul li:last-child a {
        border-bottom: none;
    }

    #sub .cate_menu ul.subList li:first-child a {
        border-bottom: 1px solid #dcdcdc;
    }

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

    footer {
        background: #fff;
        padding: 40px 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/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: #cbdfe5;
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: bold;
    }

    footer .frame-head a:hover {
        background: #eee;
    }

    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: 31%;
    }

    footer .frame-body ul li a {
        background: url(img/ft_aw.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: none;
        padding-left: 45px;
        position: relative;
    }

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

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

    footer .frame-body ul li.sub_cat a:hover {
        background: none;
    }

    footer .notes {
        background: url(img/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: #2b68b1;
        color: #fff;
        font-size: 11px;
        padding: 4px 0;
    }

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

    footer .copyright .stmp {
        background: url(img/aw.png) right center no-repeat;
        color: #fff;
        display: block;
        font-size: 13px;
        padding: 5px 30px 0 0;
    }
/* 3選BOX（大） */

.third_term_election {
  padding: 20px 0 0;
  background: #f6f6f6;
  margin: 50px 0;
}

.third_term_election .ttl_bar {
  background: url(img/select-ttl-bg.png);
  color: #fff;
  padding: 25px 15px;
  text-align: center;
  position: relative;
}

.third_term_election .ttl_bar:before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  top: 5px;
}

.third_term_election .ttl_bar:after {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 5px;
}

.third_term_election .ttl_bar span.small {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
  display: block;
}

.third_term_election .ttl_bar span.ttl {
  display: block;
  font-size: 25px;
  font-weight: bold;
}

.third_term_election .area {
  padding: 20px 20px 30px;
  display: flex;
}

.third_term_election .area .list {
  background: #fff;
  float: left;
  width: 220px;
  margin: 0 0 0 10px;
  padding: 10px 0 15px;
  border: 1px solid #f66b04;
}

.third_term_election .area .list:first-child {
  margin: 0;
}

.third_term_election .area .list .ttl {
  color: #f66b04;
  font-weight: bold;
  line-height: 1.4;
  border-left: 4px solid #f66b04;
  padding: 5px 8px 5px 13px;
  margin: 0 0 10px;
  font-size: 16px;
}

.third_term_election .area .list .name {
  text-align: center;
  padding: 0 15px;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 8px;
}

.third_term_election .area .list .img_area {
  padding: 0 15px;
  text-align: center;
  margin: 0 0 8px;
}

.third_term_election .area .list .img_area img {
  max-width: 100%;
}

.third_term_election .area .list .inyo {
  padding: 0 15px;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
  color: #999;
  word-break: break-all;
  margin: 0 0 15px;
}

.third_term_election .area .list .table .tr {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: -1px 0 0;
}

.third_term_election .area .list .table span.red {
  color: #ff4747;
}

.third_term_election .area .list .table th {
  border: 1px solid #ccc;
  width: 37%;
  padding: 7px 10px;
  font-weight: bold;
  background: #eee;
}

.third_term_election .area .list .table td {
  border: 1px solid #ccc;
  padding: 7px 10px;
  text-align: left;
}

.third_term_election .area .list .table {
  padding: 0 15px;
  margin: 0 0 10px;
}

.third_term_election .area .list .table table {
  margin: 0;
  width: 100%;
}

.third_term_election .area .list .tag_area {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}
#index .third_term_election .area .list .tag:nth-child(odd), #page .third_term_election .area .list .tag:nth-child(odd) {
    margin-left: 0;
}
.third_term_election .area .list .tag {
  background: #fafafa;
  color: #aaa;
  font-weight: bold;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  text-align: center;
  padding: 6px;
  font-size: 13px;
  line-height: 1.4;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 6px 4%;
}



.third_term_election .area .list .tag.on {
  background: #39b5b7;
  color: #fff;
  border: none;
}

.third_term_election .area .list .txt_area {
  padding: 5px 15px 8px;
}

#page .third_term_election .btn-internal a, #page .third_term_election .btn-web a,
#page .third_term_election_short .btn-internal a, #page .third_term_election_short .btn-web a{
    border-radius: 20px;
    width: 90%;
}
#page .third_term_election_short .btn-web a{
    border-radius: 20px;
    width: 100%;
}
#page .third_term_election .btn-web a,
#page .third_term_election_short .btn-web a {
    padding: 10px;
}
.third_term_election .link {
  padding: 0px 170px 30px;
}

.third_term_election .link a {
  background: url(img/btn-ar.png) right 15px center no-repeat;
  background-color: #113d7a;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.4;
  padding: 13px 35px;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.third_term_election .link a:hover {
  opacity: 0.6;
}

/* 3選BOX（小） */

.third_term_election_short {
  padding: 20px 0 0;
  background: #f6f6f6;
  margin: 50px 0;
}

.third_term_election_short .ttl_bar {
  background: url(img/price-ttl-bg.png);
  color: #fff;
  padding: 25px 15px;
  text-align: center;
  position: relative;
}

.third_term_election_short .ttl_bar:before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  top: 5px;
}

.third_term_election_short .ttl_bar:after {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 5px;
}

.third_term_election_short .ttl_bar span.small {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
  display: block;
}

.third_term_election_short .ttl_bar span.ttl {
  display: block;
  font-size: 25px;
  font-weight: bold;
}

.third_term_election_short .area {
  padding: 20px 20px 30px;
  display: flex;
}

.third_term_election_short .area .list {
  background: #fff;
  float: left;
  width: 220px;
  margin: 0 0 0 10px;
  padding: 2px;
}

.third_term_election_short .area .list:first-child {
  margin: 0;
}

.third_term_election_short .area .list .in {
  border: 1px solid #39b5b7;
  padding: 15px;
  text-align: center;
  height: 100%;
}

.third_term_election_short .area .list .in .name {
  border-bottom: 1px solid #39b5b7;
  display: inline-block;
  padding: 0 8px 4px;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
}

.third_term_election_short .area .list .in .price {
  background: #f6f6f6;
  padding: 17px 5px 14px 20px;
  display: flex;
  margin: 0 0 20px;
}

.third_term_election_short .area .list .in .price .left {
  padding: 0 5px 0 0;
  display: inline-block;
}

.third_term_election_short .area .list .in .price .right {
  color: #ff4749;
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
}

.third_term_election_short .area .list .link_btn {
  background: url(img/btn-ar.png) right 15px center no-repeat;
  background-color: #ff4749;
  color: #fff;
  display: block;
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.third_term_election_short .area .list .link_btn:hover {
  background: url(img/btn-ar.png) right 15px center no-repeat #f8d636;
}

.third_term_election_short .area .list .link_btn:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 2px;
  border: 1px solid #fff;
  top: 2px;
  right: 2px;
}

.third_term_election_short .link {
  padding: 0px 170px 25px;
}

.third_term_election_short .link a {
  background: url(img/btn-ar.png) right 15px center no-repeat;
  background-color: #113d7a;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.4;
  padding: 13px 35px;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.third_term_election_short .link a:hover {
  opacity: 0.6;
}

/* 監修BOX */

.banner_area {
  border: 2px solid #f66b04;
  position: relative;
  padding: 0 0 0 310px;
  background: #f66b04;
  margin: 50px 0;
}

.banner_area:before {
  content: "";
  width: 310px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(img/img.png) center center no-repeat;
  background-size: cover;
}

.banner_area .txt_area {
  background: #fff;
  padding: 25px;
}

.banner_area .txt_area .catch {
  border-top: 1px solid #f66b04;
  border-bottom: 1px solid #f66b04;
  padding: 15px 0;
  font-size: 19px;
  font-weight: bold;
  color: #f66b04;
  margin: 0 0 15px;
}

.banner_area .txt_area .link {
  padding: 15px 10px 0;
}

.banner_area .txt_area .link a {
  background: url(img/btn-ar.png) right 15px center no-repeat;
  background-color: #113d7a;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.4;
  padding: 13px 35px;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.banner_area .txt_area .link a:hover {
  opacity: 0.6;
}
    /****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.0rem;
        line-height: 2.0;
    }

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

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

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

    header {
        background: #2b68b1 url(img/sp/icon_sp.png) left 1.5rem bottom 0.7rem no-repeat;
        background-size: 8rem auto;
        width: 100%;
        padding: 2rem 0 0.6rem;
        position: relative;
        z-index: 110;
    }

    header p {
        margin: 0;
    }

    header .site_ttl {
        border-bottom: 0.1rem solid rgba(255,255,255,0.4);
        min-height: 8.5rem;
    }

    header h1,
    header .site_ttl a {
        color: #fff;
        display: block;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.4;
        letter-spacing: 0.1rem;
        margin: 0 6rem 1.5rem 1rem;
    }

    header .menu_btn {
        background: url(img/sp/close_sp.png) no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: 2.2rem;
        right: 1rem;
        width: 15%;
        z-index: 120;
    }

    header .menu_btn img {
        width: 100%;
    }

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

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

    nav {
        display: none;
        position: absolute;
        width: 100%;
        z-index: 110;
        top: 0;
        left: 0;
    }

    nav .nav_wrap {
        background: #efefef;
        padding: 1rem;
        overflow-y: scroll;
        height: auto;
    }

    nav a{
        text-decoration: none;
    }

    nav ul li a {
        background: url(img/sp/aw5_sp.png) right 1.5rem center no-repeat, url(img/sp/cate_bg_sp.png) repeat, #cfe1e7;
        background-size: 0.9rem auto, 1.5rem auto;
        border: 0.4rem solid #cbdfe5;
        display: block;
        font-size: 100%;
        font-weight: bold;
        padding: 1.2rem 3.5rem 1.2rem 1rem;
        text-align: justify;
        line-height: 1.2;
    }

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

    nav .close_btn {
        display: block;
        text-align: center;
        font-weight: bold;
        margin-top: 1rem;
        padding: 1rem 0.9rem;
        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/mv1_sp.png) left -2rem top -2rem no-repeat, url(img/sp/mv2_sp.png) right -2rem bottom -3rem no-repeat, url(img/sp/mv.png) top center no-repeat;
        background-size: 15rem auto, 15rem auto, cover;
        width: 100%;
    }

    #mv .inner {
        padding: 2rem;
    }

    #mv .mv_wrap {
        background: rgba(255, 255, 255, .8);
        border: 0.1rem solid rgba(20, 184, 229, .8);
        border-radius: 1rem;
        box-shadow: 0 0 0.8rem #999;
        padding: 1.5rem;
    }

    #mv .mv_wrap h2 {
        background: url(img/sp/home_sp.png) left center no-repeat;
        background-size: 4.5rem auto;
        color: #2b68b1;
        font-size: 1.9rem;
        font-weight: bold;
        line-height: 1.4;
        padding-left: 5rem;
    }

    #mv .mv_txt {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    /*contents
    ----------------------------------------*/

    #contents,
    #contents_low {
        background: url(img/sp/bg_sp.png) repeat;
        background-size: 5rem auto;
    }

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

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

    #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,
    #page h1,
    #page h2,
    #page h3,
    #page h4,
    #page h5{
        font-weight: bold;
        line-height: 1.4;
        margin: 2.7rem 0 1.2rem;
    }

    #index h2,
    #page h1 {
        background: #fff;
        border: 0.2rem solid #2b68b1;
        border-bottom: 0.4rem solid #2b68b1;
        color: #2b68b1;
        font-size: 2.1rem;
        margin: 0 0 2rem;
        padding: 1rem 2.5rem;
        position: relative;
        text-align: center;
    }

    #index h2:after,
    #page h1:after {
        background: url(img/sp/h2_sp.png) bottom left repeat-x;
        background-size: 2.5rem auto;
        content: "";
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        bottom: -2rem;
        left: 50%;
        margin-left: -1rem;
    }

    #index h3,
    #page h2 {
        background: url(img/sp/h3_sp.png) left 1rem center no-repeat, url(img/sp/h3.png) repeat;
        background-size: 3rem auto, 1rem auto;
        border: 0.2rem solid #1e54a1;
        color: #fff;
        font-size: 1.9rem;
        padding: 0.8rem 1rem 0.8rem 5rem;
    }

    #page h2 a {
        color: #fff;
    }

    #index h4,
    #page h3 {
        border-bottom: 0.4rem solid #dcdcdc;
        color: #183149;
        font-size: 1.7rem;
        padding: 0 0 1rem;
        position: relative;
    }

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

    #index h5,
    #page h4 {
        background: url(img/sp/h4_sp.png) left bottom repeat-x;
        background-size: 32rem auto;
        font-size: 1.6rem;
        padding: 0 0 1.2rem;
    }

    #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_sp.png) no-repeat left 0.4rem top 0.5rem;
        background-size: 1.2rem auto;
        margin: 0 0 5px;
        padding-left: 2.5rem;
    }

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

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

    #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: 1rem, auto;
        border: 0.1rem solid #dcdcdc;
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.4;
        margin: 2.7rem 0 2.7rem;
        padding: 1rem 1.5rem 1rem 8.5rem;
        position: relative;
        z-index: 3;
    }

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

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

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

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

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

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

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

    #index .table-layout,
    #page .table-layout {
        width: 100%;
        margin: 2.9rem auto;
        overflow: auto;
        white-space: nowrap;
    }

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

    #index .table-layout::-webkit-scrollbar,
    #page .table-layout::-webkit-scrollbar {
        height: 0.8rem;
    }

    #index .table-layout::-webkit-scrollbar-track,
    #page .table-layout::-webkit-scrollbar-track {
        background: #d2d2d2;
        border-radius: 10px;
    }

    #index .table-layout::-webkit-scrollbar-thumb,
    #page .table-layout::-webkit-scrollbar-thumb {
        background: #a0a0a0;
        border-radius: 10px;
    }

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

    #index .table-layout table th,
    #page .table-layout table th {
        background: #cbdfe5;
        border-left: 0.1rem solid #333;
        border-top:  0.1rem solid #333;
        font-weight: bold;
        text-align: center;
        width: 20%;
    }

    #index .table-layout table td,
    #page .table-layout table td {
        background: #fff;
        border-left: 0.1rem solid #333;
        border-top: 0.1rem solid #333;
        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 #d8d8d8;
    }

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

    #index .caption,
    #page .caption {
        text-align: center;
        font-size: 0.6rem;
        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: 0.2rem solid #2b68b1;
        box-shadow: 0 0 0 0.3rem #fff inset;
        border-radius: 4rem;
        display: block;
        font-size: 1.6rem;
        font-weight: bold;
        margin: 1.5rem auto;
        text-align: center;
        text-decoration: none;
        width: 90%;
    }

    #index .btn-internal a,
    #page .btn-internal a {
        background: #4095f8  url(img/sp/aw_sp.png)  right 2rem center no-repeat;
        background-size: 1.7rem auto;
        color: #fff;
        padding: 1.8rem 4rem 1.5rem 2rem;
    }

    #index .btn-web a,
    #page .btn-web a {
        background: #fadb4a url(img/sp/aw_sp.png)  right 2rem center no-repeat;
        background-size: 1.7rem auto;
        color: #1c3c7f;
        padding: 1.8rem 4rem 1.5rem 2rem;
    }

    #index .btn-link a,
    #page .btn-link a {
        background: #fff url(img/sp/aw_sp.png)  right 2rem center no-repeat;
        background-size: 1.7rem auto;
        color: #28447e;
        padding: 1.5rem 4rem 1.5rem 2rem;
    }

    #index .btn-tel a,
    #page .btn-tel a {
        background: url(img/sp/tel_sp.png) left 2rem center no-repeat, url(img/sp/aw_sp.png)  right 2rem center no-repeat, #c2ee80;
        background-size: 2.6rem auto, 1.7rem auto;
        color: #28447e;
        padding: 1.5rem 5rem 1.5rem 5rem;
    }

    #index .box-wrap .box,
    #page .box-wrap .box {
        background: #fff;
        border: 0.1rem dashed #2b68b1;
        width: 100%;
        margin: 3rem auto;
        padding: 1.5rem 1.5rem 0;
    }

    #index .box-wrap .box .box-head,
    #page .box-wrap .box .box-head {
        background: #2b68b1;
    }

    #index .box-wrap .box .box-head a,
    #page .box-wrap .box .box-head a {
        background: url(img/sp/aw2_sp.png) right 2rem center no-repeat;
        background-size: 1.7rem auto;
        color: #fff;
        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 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,
    #sub .more {
        background: #4095f8 url(img/sp/aw_sp.png) right 2rem center no-repeat;
        background-size: 1.7rem auto;
        border: 0.2rem solid #2b68b1;
        box-shadow: 0 0 0 0.3rem #fff inset;
        border-radius: 4rem;
        color: #fff;
        display: block;
        font-size: 1.44rem;
        font-weight: bold;
        line-height: 1.4;
        margin: 1.5rem auto;
        padding: 1.8rem 4rem 1.5rem 2rem;
        text-align: center;
        text-decoration: none;
        width: 90%;
    }

    #index .frame-wrap .frame,
    #page .frame-wrap .frame {
        background: #fff;
        border: 0.3rem solid #fcf051;
        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: #2b68b1;
        border-radius: 0.3rem 0.3rem 0 0;
        font-size: 1.8rem;
        font-weight: bold;
    }

    #index .frame-wrap .frame .frame-head a,
    #page .frame-wrap .frame .frame-head a {
        background: url(img/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: 0 2rem;
        margin: 2rem 0 0;
    }

    #sub .free_space {
        background: url(img/sp/pickup_sp.png) top 2rem center no-repeat, url(img/sp/free_sp.png) repeat;
        background-size: 13rem auto, 1.6rem auto;
        padding: 6.5rem 2rem 2rem;
        margin: 3rem 0;
    }

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

    #sub .free_space .ttl a {
        color: #2b68b1;
        display: block;
        text-decoration: none;
    }

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

    #sub .free_space a.more {
        margin: 1rem auto 0;
        padding: 1.4rem 4rem 1.4rem 2rem;
        text-align: left;
    }

    /*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: 30%;
        height: auto;
        z-index: 5;
        transition: .3s;
    }

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

    footer .con_ttl {
        font-weight: bold;
        margin: 0 0 2rem;
        text-align: center;
    }

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

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

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

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

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

    footer .frame-wrap .frame-body li.sub_cat a:before {
        content: "└";
        position: absolute;
        left: 2.5rem;
        top: 1.4rem;
    }

    footer .sitemap a {
        background: url(img/sp/ft_sp.png) left 1rem center no-repeat, url(img/sp/aw4_sp.png) right 1rem center no-repeat, #cbdfe5;
        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: #2b68b1;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 1rem;
        text-align: center;
    }

    footer .copyright a {
        color: #fff;
        text-decoration: underline;
    }
/* 3選BOX（大） */

  .third_term_election .ttl_bar {
    background: url(img/select-ttl-bg.png);
    color: #fff;
    font-weight: bold;
    margin: 0 -10px 20px -10px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
  }
  .third_term_election .ttl_bar::before {
    background: #fff;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    top: 5px;
  }
  .third_term_election .ttl_bar::after {
    background: #fff;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 5px;
  }
  .third_term_election .ttl_bar .small {
    display: block;
  }
  .third_term_election .ttl_bar .ttl {
    display: block;
    font-size: 20px;
  }
  .third_term_election .area .list {
    background: #fff;
    border: 1px solid #f66b04;
    margin-bottom: 20px;
    padding: 10px;
  }
  .third_term_election .area .list .ttl {
    color: #f66b04;
    font-weight: bold;
    line-height: 1.4;
    border-left: 4px solid #f66b04;
    padding: 5px 8px 5px 13px;
    margin: 0 0 10px -10px;
    font-size: 18px;
  }
  .third_term_election .area .list .name {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
  }
  .third_term_election .area .list .img_area {
    margin: 0 30px 10px 30px;
  }
  .third_term_election .area .list .img_area img {
    max-width: 100%;
  }
  .third_term_election .area .list .inyo {
    color: #999;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
    word-break: break-all;
  }
  .third_term_election .area .list .table table {
    margin-bottom: 15px;
    width: 100%;
    border-top: 0;
  }
  .third_term_election .area .list .table th {
    border-top: 1px solid #bce6eb;
    display: inline-block;
    padding: 10px 15px;
    width: 30%;
    border-left: 1px solid #bce6eb;
    font-weight: bold;
    background: #eee;
  }
  .third_term_election .area .list .table td {
    background: #fff;
    border-right: 1px solid #bce6eb;
    padding: 10px 15px;
    border-top: 1px solid #bce6eb;
    width: 70%;
    display: inline-block;
    text-align: left;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #bce6eb;
  }
  .third_term_election .area .list .table tr:last-child th,
  .third_term_election .area .list .table tr:last-child td {
    border-bottom: 1px solid #bce6eb;
  }
  .third_term_election .area .list .table td .red {
    color: #ff4747;
  }
  .third_term_election .area .tag_area {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 15px;
  }
  .third_term_election .area .tag_area .tag {
    background: #fafafa;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    color: #aaa;
    font-size: 13px;
    font-weight: bold;
    padding: 6px;
    text-align: center;
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2% 6px 0;
    line-height: 1.4;
  }

  .third_term_election .area .list .tag:nth-child(even) {
    margin: 0 0 6px;
  }

  .third_term_election .area .tag_area .tag.on {
    background: #39b5b7;
    color: #fff;
  }
  .third_term_election .area .txt_area {
    margin-bottom: 15px;
  }
  #index .third_term_election .area .btn-tel a,
  #category .third_term_election .area .btn-tel a,
  #page .third_term_election .area .btn-tel a {
    width: 90%;
    margin: 1.5rem auto;
  }
  .third_term_election .link {
    display: none;
  }


  /* 3選BOX（小） */

  .third_term_election_short {
    margin-bottom: 20px;
  }
  .third_term_election_short .ttl_bar {
    background: url(img/price-ttl-bg.png);
    color: #fff;
    font-weight: bold;
    margin: 0 -10px 20px -10px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
  }
  .third_term_election_short .ttl_bar::before {
    background: #fff;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    top: 5px;
  }
  .third_term_election_short .ttl_bar::after {
    background: #fff;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 5px;
  }
  .third_term_election_short .ttl_bar .small {
    display: block;
  }
  .third_term_election_short .ttl_bar .ttl {
    display: block;
    font-size: 20px;
  }
  .third_term_election_short .area .list {
    border: 2px solid #fff;
    margin-bottom: 15px;
  }
  .third_term_election_short .area .list .in {
    border: 1px solid #39b5b7;
    padding: 15px;
    text-align: center;
    align-items: stretch;
    display: flex;
    justify-content: space-between;
  }
  .third_term_election_short .area .list .in .txt-wrap {
    float: left;
    width: 55%;
    margin: 0 5% 0 0;
  }
  .third_term_election_short .area .list .in .name {
    border-bottom: 1px solid #39b5b7;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0 8px 4px;
  }
  .third_term_election_short .area .list .in .price {
    background: #f6f6f6;
    padding: 10px;
    text-align: center;
  }
  .third_term_election_short .area .list .in .price .left {
    display: inline-block;
    font-size: 12px;
    padding: 0 5px 0 0;
    vertical-align: bottom;
  }
  .third_term_election_short .area .list .in .price .right {
    color: #ff4749;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    vertical-align: bottom;
  }
  .third_term_election_short .area .list .in .btn-wrap {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
  }
#index .third_term_election_short .btn-web a, #category .third_term_election_short .btn-web a, #page .third_term_election_short .btn-web a {
    font-size: 14px;
    margin: 0;
    width: 100%;
    border-radius: 20px;
    background: #fadb4a url(img/sp/aw_sp.png) right 1rem center no-repeat;
    background-size: 1.2rem auto;
    padding: 1rem 2rem 1rem 1rem;
    /* padding: 14px 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
  #index .third_term_election_short .area .list .in .btn-tel,
  #category .third_term_election_short .area .list .in .btn-tel,
  #page .third_term_election_short .area .list .in .btn-tel,
   #index .third_term_election_short .btn-web,
  #category .third_term_election_short .btn-web,
  #page .third_term_election_short  .btn-web  {
    width: 100%;
    margin: 7px 0 0;
    flex: auto;
  }

  #index .third_term_election_short .area .list .in .btn-tel a,
  #category .third_term_election_short .area .list .in .btn-tel a,
  #page .third_term_election_short .area .list .in .btn-tel a {
    background: url(img/sp/tel_sp.png) no-repeat left 14px center;
    background-size: 14px;
    background-color: #52bd19;
    font-size: 14px;
    margin: 0;
    padding: 14px 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:20px;
  }
  .third_term_election_short .link {
    display: none;
  }

  /* 監修BOX */

  .banner_area {
    background: url(img/fs-bg-dummy.png) center center no-repeat;
    background-size: cover;
    border: 2px solid #f66b04;
    margin-bottom: 15px;
    padding: 20px;
  }
  .banner_area .sp-wrap {
    margin-bottom: 15px;
    padding: 15px;
  }
  .banner_area .txt_area .catch {
    border-top: 1px solid #f66b04;
    border-bottom: 1px solid #f66b04;
    padding: 15px 0;
    font-size: 19px;
    font-weight: bold;
    color: #f66b04;
    margin: 0 0 15px;
  }
  .banner_area .link a {
    background: url(img/btn-ar.png) right 15px center no-repeat;
    background-color: #113d7a;
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 10px;
    padding: 13px 35px;
    position: relative;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
  }
}  /****sp*******/