@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: underline;
}
a:hover {
    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;
    position: relative;
}

/*----------------------------------------------------
        各ページスタイル
----------------------------------------------------*/

/* 共通
-----------------------------------------------------------------------------------------------*/

#contents:after,
#contents_low:after {
    content: ".";
    display: block;
    visibility: hidden;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
    clear: both;
}

a.trance:hover {
    opacity:0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
}

#index p,
#category p,
#page p{
    margin: 10px 0;
}
img {
    max-width: 100%;
}

@media screen and (min-width: 600px) {
    .sp {
        display: none;
    }
}
@media screen and (max-width: 599px) {
    .pc {
        display: none;
    }
}

/*----------------------------------------------------
        ヘッダーPCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {
    header {
    }
    .wrapper {
        border-top: solid 2px #e9e9e9;
        background: url(img/bg.png);
        padding-top: 30px;
        min-width: 1000px;
    }
    .top-copy {
        font-size: 12px;
        color: #fff;
        display: block;
        background-color: #5e5e5e;
        text-align: center;
        margin-bottom: 30px;
        position: absolute;
        top: 0;
        width: 100%;
        min-width: 1000px;
    }
    .top-copy p {
        width: 1000px;
        text-align: right;
        margin: auto;
    }
    nav {
        display: block;
        margin-bottom: 10px;
    }

    nav ul {
        width: 1000px;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        text-align: center;
    }

    nav ul li {
        text-align: center;
        width: 100%;
        display: inline-block;
        padding: 0 20px 0 0;
    }
    nav ul li:last-child {
        padding: 0 0 0 0;
    }        
    nav ul li a {
        font-weight: bold;
        text-decoration: none;
        padding: 10px;
        border-bottom: solid 4px #cccccc;
        display: table;
        width: 100%;
        height: 100%;
        line-height: 1.4;
    }
    nav ul li a span {
        display: table-cell;
        vertical-align: middle;
    }        
    nav ul li:first-child a{
        border-bottom: solid 4px #000;
    }
    nav ul li a:hover {
        border-bottom: solid 4px #000;
    }

    .mv {
        background-color: #fff;
        width: 1000px;
        margin: auto;
        padding: 10px;
    }
    .mv .mv_inner {
        position: relative;
        background-color: #ffc200;
    }
    .mv .mv-txt-area  {
        position: absolute;
        text-align: right;
        vertical-align: bottom;
        margin: auto;
        top: 0;
        right: 0;
        height: 100%;
        width: 53%;
    }
    .mv .mv-txt-area .mv-txt-inner {
        top: 0;
        text-align: left;
        width: 100%;
        padding: 40px 30px;
    }
    .mv .mv-txt-area .mv-txt-ttl {
        color: #333333;
        line-height: 1.5;
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        z-index: 3;
    }

    .mv .mv-txt-area p {
        font-size: 14px;
    }
}

/*----------------------------------------------------
        ヘッダーSPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {
    header {
        position: relative;
    }
    .wrapper {
        border-top: solid 2px #e9e9e9;
        background: url(img/bg.png);
        padding-top: 10px;
    }
    .top-copy {
        font-size: 10px;
        color: #fff;
        display: block;
        background-color: #5e5e5e;
        text-align: center;
        margin-bottom: 10px;
        position: absolute;
        top: 0;
        width: 100%;
    }
    .nav-bt {
        width: 45px;
        position: absolute;
        right: 12px;
        top: 38px;
    }
    nav {
        display: none;
        background-color: #626262;
        padding-top: 15px;
    }
    nav ul {
        padding: 0 3%;
    }
    nav ul li {
        margin-bottom: 10px;
    }
    nav ul li a {
        padding: 10px 0;
        display: block;
        text-decoration: none;
        text-align: center;
        position: relative;
    }
    nav .sp-nav-category a{
        background-color: #fff;
        color: #333333;
        font-size: 15px;
        text-decoration: none;
        display: block;
        font-weight: bold;
        padding: 10px 25px 10px 10px;
        position: relative;
        text-align: left;
    }
    nav .sp-nav-category a:after{
        content: '';
        display: block;
        background: url(img/cat_arrow1.png) no-repeat;
        background-size: 8px;
        position: absolute;
        width: 10px;
        height: 15px;
        top: 0;
        bottom: 0;
        right: 7px;
        margin: auto;
    }
    nav .sp-nav-page {
        padding: 0 5px;
        border-bottom: 1px solid #d8d8d8;
    }
    nav .sp-nav-page a{
        color: #fff;
        background-color: #626262;
        display: block;
        font-size: 14px;
        text-decoration: none;
        padding: 10px 10px 10px 0;
        position: relative;
        text-align: left;
    }
    nav .sp-nav-page a:after{
        content: '';
        display: block;
        background-image: url(img/cat_arrow2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 7px;
        height: 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0px;
        margin: auto;
    }
    .back {
        color: #fff;
        text-align: center;
        font-weight: bold;
        line-height: 1.3;
        padding: 5px 3% 8px;
        margin: 0 3%;
    }
    .close {
        text-decoration: underline;
    }
    .mv {
        background-color: #f6f6f6;
        width: 100%;
        margin: auto;
        padding: 10px;
    }
    .mv .mv_inner {
        position: relative;
        background-color: #ffc200;
        margin-bottom: 10px;
        border: solid 5px #fff;
    }
    .mv img {
        width: 40%;
    }
    .mv .mv-txt-area  {
        position: absolute;
        text-align: right;
        vertical-align: bottom;
        margin: auto;
        top: 0;
        right: 0;
        height: 100%;
        width: 58%;
    }

    .mv .mv-txt-area .mv-txt-inner {
        top: 0;
        text-align: left;
        width: 100%;
        padding: 5px;
    }
    .mv .mv-txt-area .mv-txt-ttl {
        color: #333333;
        line-height: 1.5;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 20px;
        z-index: 3;
    }

    .mv .mv-txt-area p {
        display: none;
    }

}
/*----------------------------------------------------
        サイドバーPCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {
    #side .side-cat.side-cat-category a, #side .side-cat.side-cat-page a{
        text-decoration: none;
        -moz-transition-duration:0.5s;
        -webkit-transition-duration:0.5s;
        -o-transition-duration:0.5s;
        -ms-transition-duration:0.5s;
        opacity: 1;
    }
    #side .side-cat.side-cat-category a:hover {
        color: #999999;
    }
    #side {
        width: 220px;
    }

    #side .side-content {
        position: relative;
        margin-bottom: 30px;
    }

    #side .side-content-inner {
        background-image: url(img/side_bg.png);
        background-repeat: repeat-y;
        background-size: contain;
        padding: 0 20px;
    }

    #side .side-content .side-content-ttl a{
        color: #333333;
        display: inline-block;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 15px;
        text-decoration: none;
    }
    #side .side-content .side-content-ttl a:hover{
        color: #54b0a3;
        opacity: 1;
    }

    #side .side-content .side-content-img {
        margin-bottom: 15px;
    }

    #side .side-content .side-content-txt {
        margin-bottom: 20px;
    }

    #side .side-content .side-content-bt {
        width: 100%;
        background-color: #39c272;
        border-radius: 4px;
        display: block;
        padding: 10px 25px 10px 10px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        position: relative;
        text-decoration: none;
    }
    #side .side-content .side-content-bt:before {
        content: '';
        display: block;
        background-image: url(./img/cat_arrow2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 12px;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    #side .side-content .side-content-bt:hover {
        background-color: #8c8c8c;
    }
    #side .sitemap {
        text-align: right;
    }
    #side .sitemap a{
        background-image: url(img/sp-arrow-bk.png);
        background-size: 8px;
        background-repeat: no-repeat;
        background-position: 0 center;
        padding: 0 0 0 14px;
    }
    #side .side-cat-area {
        background-color: #fff;
        border-top: solid 4px #7f7c72;
        padding: 0 15px 15px;
        margin-bottom: 30px;
    }
    #side .side-cat-area .side-cat {
        margin-bottom: 10px;
        position: relative;
    }

    #side .side-cat-area .side-cat a {
        display: block;
        padding: 5px 10px;
    }

    #side .side-cat-area .side-cat.side-cat-category {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding: 10px 0;
        border-bottom: dashed 1px #7f7c72
    }


    #side .side-cat-area .side-cat.side-cat-page {
        padding-left: 15px;
    }
    #side .side-cat-area .side-cat.side-cat-page:before {
        content:'';
        display: inline-block;
        background-image: url(./img/cat_arrow1.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 8px;
        height: 14px;
        vertical-align: middle;
        margin-right: 15px;
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    #side .side-cat.side-cat-page:hover {
        text-decoration: underline;
    }

    #side .side-cat.more-bt {
        text-align: right;
        display: block;
        text-decoration: none;
    }

    #side .side-cat.more-bt:hover {
        text-decoration: underline;
    }


    #side .side-cat.more-bt:before {
        content:'';
        display: inline-block;
        background-image: url(./img/cat_arrow1.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 8px;
        height: 14px;
        vertical-align: middle;
        padding-right: 15px;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

}
/*----------------------------------------------------
        サイドバーSPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

}
/*----------------------------------------------------
        フッターPCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {
    footer {
        background-color: #626262;
        padding-top: 30px;
        min-width: 1000px;
    }


    footer .top-bt {
        position: absolute;
        right: 0;
        top: -65px;
        margin: auto;
        text-align: center;
        opacity: 1;
        cursor: pointer;
        font-weight: bold;
    }

    footer .top-bt:hover {
        text-decoration: underline;
    }
    footer .top-bt img {
        margin: 0 5px;
    }
    footer .top-bt p {
        position: relative;
        margin-right: 80px;
    }
    footer .top-bt p:before {
        content: '';
        display: block;
        background-image: url(img/top_bt_arrow.png);
        background-size: contain;
        width: 17px;
        height: 17px;
        position: absolute;
        top: 3px;
        left: -20px;
    }

    footer  .top-bt__icon {
        position: absolute;
        right: 0;
        top: -30px;
    }
    footer .base {
        width: 1000px;
        margin: auto;
        position: relative;
    }

    footer .site-map-ft  {
        width: 100%;
        margin-bottom: 25px;
    }

    footer .site-map-ttl  {
        font-size: 16px;
        font-weight: bold;
        background-color: #fff;
        border-radius: 5px;
        border: solid 3px #e5e5e5;
    }

    footer .site-map-ttl a {
        color: #222;
        align-items: center;
        padding: 13px 25px 12px 40px;
        /* min-height: 50px; */
        text-decoration: none;
        -moz-transition-duration: 0.5s;
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        -ms-transition-duration: 0.5s;
        opacity: 1;
        position: relative;
        background-image: url(img/cat_arrow1.png);
        background-size: 12px 18px;
        background-repeat: no-repeat;
        background-position: 20px center;
        display: block;
    }

    footer .site-map-ttl a:hover {
        background-color: #B1B1B1;
    }


    footer .site-map-list ul {
        padding: 15px 20px 10px 2px;
    }

    footer .site-map-list ul li {
        display: inline-block;
        vertical-align: middle;
        margin-right: 30px;
    }

    footer .site-map-list ul li:before {
        content: '';
        background-image: url(img/cat_arrow2.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 10px;
        height: 10px;
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        margin-right: 5px;
    }

    footer .site-map-list ul li a {
        -moz-transition-duration:0.5s;
        -webkit-transition-duration:0.5s;
        -o-transition-duration:0.5s;
        -ms-transition-duration:0.5s;
        opacity: 1;
        text-decoration: none;
        color: #fff;
    }

    footer .site-map-list ul li a:hover {
        opacity: 0.5;
        text-decoration: underline;
        opacity: 1;
    }

    footer .disclaimer {
        width: 80%;
        background-color: #818181;
        color: #cccccc;
        padding: 20px;
        margin: 0 auto 20px;
    }

    footer .copyright {
        text-align: center;
        color: #333333;
        font-size: 12px;
        background-color: #fff;
    }
    footer .copyright a{
        text-decoration: none;
    }
    footer .copyright a:hover {
        text-decoration: underline;
    }
}
/*----------------------------------------------------
        フッターSPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {
    footer {
        background-color: #626262;
        padding-top: 1%;
    }
    footer .top-bt {
        width: 50px;
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 100;
    }

    footer .sp-disclaimer {
        margin: 15px 3%;
        padding: 2%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #818181;
        color: #ccc;
    }

    footer .sp-disclaimer .disclaimer__txt {
        width: 100%;
        font-size: 12px;
        padding: 2%;
    }

    footer .sp-sitemap-ttl {
        background-color: #ffead0;
        color: #333333;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding: 3% 0;
        margin: 20px 3% 10px;
    }

    footer .sp-sitemap-ft {
        padding: 0 3%;
        margin-bottom: 20px;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-category a{
        background-color: #fff;
        color: #333333;
        border-radius: 2px;
        border: solid 2px #eeeeee;
        font-size: 14px;
        text-decoration: none;
        display: block;
        font-weight: bold;
        padding: 10px 25px 10px 10px;
        position: relative;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-category a:after{
        content: '';
        display: block;
        background: url(img/cat_arrow1.png) no-repeat;
        background-size: 8px;
        position: absolute;
        width: 10px;
        height: 15px;
        top: 0;
        bottom: 0;
        right: 7px;
        margin: auto;
    }

    footer .sp-sitemap-ft .sp-sitemap-ft-page {
        background-color: #626262;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-page a{
        color: #fff;
        display: block;
        font-size: 13px;
        text-decoration: none;
        padding: 10px 10px 10px 0;
        position: relative;
        border-bottom: solid 1px #fff;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-page a:after{
        content: '';
        display: block;
        background-image: url(img/cat_arrow2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 7px;
        height: 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0px;
        margin: auto;
    }


    footer .sp-sitemap-ft .sp-sitemap-ft-sub_cat {
        background-color: #626262;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-sub_cat a{
        color: #fff;
        display: block;
        font-size: 13px;
        text-decoration: none;
        padding: 10px 10px 10px 0;
        position: relative;
        border-bottom: solid 1px #fff;
    }
    footer .sp-sitemap-ft .sp-sitemap-ftsub_cat a:after{
        content: '';
        display: block;
        background-image: url(img/cat_arrow2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 7px;
        height: 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0px;
        margin: auto;
    }


    footer .sp-sitemap-ft .sp-sitemap-ft-sub_cat_page {
        background-color: #626262;
    }
    footer .sp-sitemap-ft .sp-sitemap-ft-sub_cat_page a{
        color: #fff;
        display: block;
        font-size: 13px;
        text-decoration: none;
        padding: 10px 10px 10px 30px;
        position: relative;
        border-bottom: solid 1px #fff;
    }
    footer .sp-sitemap-ft .sp-sitemap-ftsub_cat_page a:after{
        content: '';
        display: block;
        background-image: url(img/cat_arrow2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 7px;
        height: 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0px;
        margin: auto;
    }





    footer .copyright {
        color: #333333;
        background-color: #fff;
        font-size: 10px;
        line-height: 1.4;
        padding: 5px 3%;
        text-align: center;

    }
    footer .sp-foot-logo {
        font-size: 18px;
        font-weight: bold;
        display: block;
        vertical-align: middle;
        text-align: left;
        margin: 0 auto 20px;
        color: #fff;
        position: relative;
        width: 83%;
        padding: 0 0 0 45px;
    }
    footer .sp-foot-logo-link {
        text-decoration: none;
    }    
    footer .sp-foot-logo:before {
        content: '';
        vertical-align: middle;
        background-image: url(img/logo.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 40px;
        height: 55px;
        position: absolute;
        left: 5px;
        top: 50%;
        margin: -20px 0 0;
    }
}


/*----------------------------------------------------
        PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {

    #contents {
        margin: 40px auto 0;
        padding-bottom: 60px;
        width: 1000px;
    }

    #index,
    #category,
    #page {
        float: left;
        max-width: 740px;
        width: 74%;
        margin-bottom: 40px;
    }

    #side {
        float: right;
        max-width: 220px;
        width: 23%;
    }

    .inner {
        margin: 0 auto;
        max-width: 1000px;
        width: 100%;
    }

    #index h2, #page h1, #category h1 {
        color: #333333;
        padding: 0px 0px 10px;
        display: block;
        border-bottom: solid 6px #535353;
        font-size: 30px;
        position: relative;
        margin-bottom: 40px;
        line-height: 1.3;
        font-weight: bold;
    }


    #index h3, #page h2, #category h2 {
        color: #333333;
        background-color: #ffd85b;
        font-size: 26px;
        font-weight: bold;
        padding: 20px 20px;
        border-radius: 10px;
        position: relative;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    #index h4, #page h3, #category h3 {
        font-size: 24px;
        font-weight: bold;
        color: #333333;
        padding: 0 20px 5px;
        border-radius: 4px;
        position: relative;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    #index h4:after, #page h3:after, #category h3:after  {
        content: '';
        display: block;
        border-left: solid 6px #18b559;
        border-radius: 4px;
        height: 90%;
        font-weight: bold;
        position: absolute;
        left: 0px;
        top: -8px;
        bottom: 0;
        margin: auto;
    }

    #index h5, #page h4, #category h4 {
        font-size: 20px;
        font-weight: bold;
        color: #333333;
        padding: 0 0 10px;
        border-bottom: dashed 3px #a0a0a0;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    #contents ul {
        margin-bottom: 15px;
    }
    #contents ul li {
        padding-left: 1.5em;
        position: relative;
    }
    #contents ul li:before {
        font-size: 15px;
        content: '●';
        color: #d72a27;
        position: absolute;
        left: 0;
    }
    #contents ol {
        counter-reset: my-counter;
        list-style-type: none;
        margin-bottom: 15px;
    }
    #contents ol li {
        padding-left: 1.5em;
        position: relative;
    }
    #contents  ol li:before {
        content: counter(my-counter);
        counter-increment: my-counter;
        background-color: #00669e;
        color: #fff;
        font-size: 12px;
        border-radius: 50%;
        display: block;
        text-align: center;
        width: 17px;
        height: 17px;
        line-height: 18px;
        position: absolute;
        top: 4px;
        left: 0;
        margin: auto;
        font-weight: bold;
    }

    .rank {
        font-size: 28px;
        color: #333;
        background: #fff;
        padding: 15px 10px 15px 80px;
        border: solid 4px #d2d2d2;
        border-radius: 14px;
        margin-top: 30px;
        margin-bottom: 45px;
        position: relative;
        font-weight: bold;
        line-height: 1.4;
    }
    .rank:after {
        content: '';
        display: block;
        background-size: contain;
        width: 90px;
        height: 90px;
        position: absolute;
        left: -20px;
        top: 0;
        bottom: 0;
        margin: auto;
        background-repeat: no-repeat;
    }
    .rank.rank1:after {
        background-image: url(img/ico_rank01.png);
    }
    .rank.rank2:after {
        background-image: url(img/ico_rank02.png);
    }
    .rank.rank3:after {
        background-image: url(img/ico_rank03.png);
    }
    .rank.rank4:after {
        background-image: url(img/ico_rank04.png);
    }
    .rank.rank5:after {
        background-image: url(img/ico_rank05.png);
    }
    .rank.recommend:after {
        height: 105px;
        background-image: url(img/ico_recommend.png);
    }
    p span {
        color: #e32323;
        font-size: 18px;
        font-weight: bold;
    }
    table {
        width: 100%;
        margin-bottom: 25px;
    }
    th {
        background-color: #ffecb0;
        font-weight: bold;
    }
    th,td {
        padding: 30px 10px;
        border: solid 1px #B5B5B5;
        text-align: center;
    }

    .float-wrap {
        margin-bottom: 40px;
    }
    .float-wrap p {
        text-align: justify
    }
    .float-img .flame {
        width: 250px;
        padding: 7px 0 0px;
    }
    .float-img .flame img {
        border: 1px solid #D2D2D2;
    }
    .fl {
        float:left;
    }

    .fl .flame {
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .fr {
        float: right;
    }

    .fr .flame {
        margin-left: 25px;
        margin-bottom: 15px;
    }
    .center-wrap {
        margin-bottom: 40px;
    }
    .center-wrap .img-center .flame {
        width: 250px;
        margin: 0 auto 15px;
    }

    .caption {
        font-size: 10px;
        color: #999999;
        text-align: center;
        line-height: 1.7;
    }


    .btn-internal a {
        width: 45%;
        display: block;
        margin: 20px auto;
        text-align: center;
        border-radius: 4px;
        background-color: #39c272;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        padding: 16px 40px;
        position: relative;
    }
    .btn-internal a:after {
        content: '';
        display: block;
        background-image: url(img/arrow.png);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .btn-internal a:hover {
        background-color: #8c8c8c;
    }
    .btn-web a{
        width: 45%;
        display: block;
        margin: 20px auto;
        text-align: center;
        border: solid 4px #e77f7d;
        border-radius: 30px;
        color: #fff;
        background-color: #d72a27;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        padding: 16px 40px;
        position: relative;
    }
    .btn-web a:after {
        content: '';
        display: block;
        background-image: url(img/arrow.png);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .btn-web a:hover {
        background-color: #37a8cd;
        border: solid 4px #87cbe1;
    }

    .btn-link {
        text-align: right;
    }
    .btn-link a {
        color: #333333;
        font-weight: bold;
        text-decoration: underline;
        font-size: 16px;
    }
    .btn-link a:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        background-image: url(img/txt_arrow.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 18px;
        height: 18px;
        margin-right: 1%;
    }

    .btn-link a:hover {
        text-decoration: none;
    }

    .box-wrap {
        margin-bottom: 20px;
        display: flex;
    }

    .box-wrap .box {
        padding: 10px 2%;
        width: 49%;
        position: relative;
        -webkit-background-size: 12px 12px;
        -moz-background-size: 12px 12px;
        background-size: 12px 12px;
        background-color: #ffd960;
        background-image: -webkit-gradient(linear, 0 0, 100% 100%,
            color-stop(.25, #ffcc2b), color-stop(.25, transparent),
            color-stop(.5, transparent), color-stop(.5, #ffcc2b),
            color-stop(.75, #ffcc2b), color-stop(.75, transparent),
            to(transparent));
        background-image: -webkit-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -moz-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -ms-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -o-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
    }

    .box-wrap .box a.pc.permalink {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }


    .box-wrap .box.left_box {
        float: left;
        margin-right: 2%;
    }
    .box-wrap .box.right_box {
        float: left;
    }

    .box-wrap .box .box-head {
        padding: 5px 0;
    }

    .box-wrap .box .box-head a{
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        padding-right: 35px;
        padding-bottom: 1%;
        margin-bottom: 1%;
        display: block;
        position: relative;

    }

    .box-wrap .box .box-head a:after{
        content: '';
        display: block;
        background-image: url(img/sp-arrow-bk.png);
        width: 20px;
        height: 22px;
        position: absolute;
        right: 0px;
        top: 0px;
        bottom: 0;
        margin: auto;
        background-size: 10px;
        background-repeat: no-repeat;
    }

    .box-wrap .box .box-body  {
        background-color: #fff;
        padding: 5px 15px;
        flex: 1 0 auto;
    }


    .box-wrap .box {
        display: flex;
    }


    .box-wrap .box .box-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex-grow: 1;
    }



    .frame-wrap {
        margin-bottom: 20px;
        display: flex;
    }
    .frame-wrap .frame {
        border: solid 4px #666666;
        width: 33.333%;
        margin-right: 1.3%;
        background-color: #fff;
    }
    .frame-wrap .frame:last-child {
        margin-right: 0;
    }

    .frame-wrap .frame-head {
        font-size: 20px;
        font-weight: bold;
        border-bottom: solid 4px #666666;
        padding: 10px 20px;
    }
    .frame-wrap .frame-body {
        padding: 0 15px;
    }


}


/*----------------------------------------------------
        SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

    #contents {
        margin: 0 auto 30px;
        width: 100%;
        padding: 0 3%;
    }

    .inner {
        padding: 0 3%;
    }

    #index h2, #page h1, #category h1  {
        color: #333333;
        padding: 0px 0px 5px;
        display: block;
        border-bottom: solid 6px #535353;
        font-size: 20px;
        position: relative;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.4;
        font-weight: bold;
    }


    #index h3, #page h2, #category h2 {
        color: #333333;
        background-color: #ffd85b;
        font-size: 18px;
        font-weight: bold;
        padding: 10px 10px;
        border-radius: 10px;
        position: relative;
        line-height: 1.4;
        margin: 30px 0 10px;
    }

    #index h4, #page h3, #category h3 {
        font-size: 17px;
        font-weight: bold;
        color: #333333;
        padding: 0 15px 5px;
        border-radius: 4px;
        position: relative;
        margin: 30px 0 10px;
        line-height: 1.5;
    }
    #index h4:after, #page h3:after, #category h3:after  {
        content: '';
        display: block;
        border-left: solid 5px #18b559;
        border-radius: 10px;
        height: 90%;
        font-weight: bold;
        position: absolute;
        left: 0px;
        top: -7px;
        bottom: 0;
        margin: auto;
    }

    #index h5, #page h4, #category h4 {
        font-size: 16px;
        font-weight: bold;
        color: #333333;
        padding: 0 0 5px;
        border-bottom: dashed 3px #a0a0a0;
        line-height: 1.3;
        margin: 30px 0 10px;
    }

    #contents ul {
        margin-bottom: 15px;
    }
    #contents ul li {
        padding-left: 18px;

        position: relative;
    }
    #contents ul li:before {
        font-size: 15px;
        content: '●';
        color: #d72a27;
        position: absolute;
        left: 0;
    }
    #contents ol {
        counter-reset: my-counter;
        list-style-type: none;
        margin-bottom: 15px;
    }
    #contents ol li {
        padding-left: 18px;
        position: relative;
    }
    #contents  ol li:before {
        content: counter(my-counter);
        counter-increment: my-counter;
        background-color: #00669e;
        color: #fff;
        font-size: 12px;
        border-radius: 50%;
        display: block;
        text-align: center;
        width: 15px;
        height: 15px;
        line-height: 16px;
        position: absolute;
        top: 5px;
        left: 0;
        margin: auto;
    }
    .rank {
        font-size: 18px;
        color: #333;
        background: #fff;
        padding: 7px 10px 6px 47px;
        border: solid 2px #d2d2d2;
        border-radius: 4px;
        margin-top: 30px;
        margin-bottom: 30px;
        position: relative;
        font-weight: bold;
        line-height: 1.4;
    }
    .rank:after {
        content: '';
        display: block;
        background-size: contain;
        width: 50px;
        height: 50px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        margin: auto;
        background-repeat: no-repeat;
    }
    .rank.rank1:after {
        background-image: url(img/ico_rank01.png);
    }
    .rank.rank2:after {
        background-image: url(img/ico_rank02.png);
    }
    .rank.rank3:after {
        background-image: url(img/ico_rank03.png);
    }
    .rank.rank4:after {
        background-image: url(img/ico_rank04.png);
    }
    .rank.rank5:after {
        background-image: url(img/ico_rank05.png);
    }
    .rank.recommend:after {
        height: 60px;
        background-image: url(img/ico_recommend.png);
    }
    p span {
        color: #e32323;
        font-size: 15px;
        font-weight: bold;
    }
    .table-layout {
        overflow-x:scroll;
        margin: 30px 0;
    }
    table {
        width: 100%;
        margin-bottom: 20px;
    }
    th {
        background-color: #FFECB0;
        font-weight: bold;
    }
    td {
        background-color: #fff;
    }

    th,td {
        padding: 20px 10px;
        border: solid 1px #C3BFB4;
        text-align: center;
    }

    .flame img {
        max-width: 100%;
    }

    .float-img .flame img {
        border: 1px solid #D2D2D2;
    }
    .caption {
        font-size: 10px;
        color: #999999;
        line-height: 1.7;
        text-align: center;
    }


    .btn-internal a {
        width: 100%;
        display: block;
        text-align: center;
        border-radius: 7px;
        color: #fff;
        background-color: #39c272;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        padding: 10px 25px;
        margin: 20px 0;
        position: relative;
    }
    .btn-internal a:after {
        content: '';
        display: block;
        background: url(img/arrow.png) no-repeat;
        background-size: 8px;
        width: 10px;
        height: 15px;
        position: absolute;
        right: 10px;
        top: 1px;
        bottom: 0;
        margin: auto;
    }
    .btn-web a {
        width: 100%;
        display: block;
        text-align: center;
        border-radius: 30px;
        color: #fff;
        background-color: #d72a27;
        border: solid 4px #e77f7d;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        padding: 7px 25px;
        margin: 20px 0;
        position: relative;
    }
    .btn-web a:after {
        content: '';
        display: block;
        background: url(img/arrow.png) no-repeat;
        background-size: 8px;
        width: 10px;
        height: 15px;
        position: absolute;
        right: 6px;
        top: 1px;
        bottom: 0;
        margin: auto;
    }


    .btn-link a {
        width: 100%;
        display: block;
        text-align: center;
        padding: 8px 25px;
        color: #333333;
        background-color: #fff;
        border: solid 3px #ffac18;
        border-radius: 7px;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        margin: 20px 0;
        position: relative;
    }
    .btn-link a:after {
        content: '';
        display: block;
        background: url(img/cat_arrow1.png) no-repeat;
        background-size: 8px;
        width: 10px;
        height: 15px;
        position: absolute;
        right: 10px;
        top: 1px;
        bottom: 0;
        margin: auto;
    }

    .btn-tel a {
        width: 100%;
        display: block;
        background-color:#914cd2;
        border: solid 4px #bd94e4;
        border-radius: 35px;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        padding: 7px 40px;
        margin: 20px 0;
        position: relative;
    }
    .btn-tel a:before {
        content: '';
        display: block;
        background: url(img/tel_logo.png) no-repeat;
        background-size: 18px;
        width: 23px;
        height: 28px;
        position: absolute;
        left: 18px;
        top: 6px;
        bottom: 0;
        margin: auto;

    }
    .btn-tel a:after {
        content: '';
        display: block;
        background: url(img/arrow.png) no-repeat;
        background-size: 8px;        
        width: 10px;
        height: 15px;
        position: absolute;
        right: 6px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .box-wrap {

    }

    .box-wrap .box {
        padding: 4%;
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        -webkit-background-size: 8px 8px;
        -moz-background-size: 8px 8px;
        background-size: 8px 8px;
        background-color: #ffd960;
        background-image: -webkit-gradient(linear, 0 0, 100% 100%,
            color-stop(.25, #ffcc2b), color-stop(.25, transparent),
            color-stop(.5, transparent), color-stop(.5, #ffcc2b),
            color-stop(.75, #ffcc2b), color-stop(.75, transparent),
            to(transparent));
        background-image: -webkit-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -moz-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -ms-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: -o-linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
        background-image: linear-gradient(-45deg, #ffcc2b 25%, transparent 25%,
            transparent 50%, #ffcc2b 50%, #ffcc2b 75%,
            transparent 75%, transparent);
    }
    .box-wrap .box .box-body  {
        background-color: #fff;
        padding: 5px 15px;
        font-size: 13px;
    }

    .box-wrap .box .box-head a{
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
        padding-right: 35px;
        padding-bottom: 1%;
        margin-bottom: 1%;
        display: block;
        position: relative;

    }

    .box-wrap .box .box-head a:after{
        content: '';
        display: block;
        background: url(img/sp-arrow-bk.png) no-repeat;
        background-size: 8px;
        width: 10px;
        height: 15px;
        position: absolute;
        right: 0px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .frame-wrap {
        margin-bottom: 20px;
    }
    .frame-wrap .frame {
        border: solid 4px #666666;
        width: 100%;
        margin-right: 1.3%;
        background-color: #fff;
        margin-bottom: 30px;
    }

    .frame-wrap .frame-head {
        font-size: 16px;
        font-weight: bold;
        border-bottom: solid 4px #666666;
        padding: 5px 20px;
        text-align: center;
    }
    .frame-wrap .frame-body {
        padding: 0 15px;
        font-size: 13px;
    }

}
