@charset "utf-8";

/************************************************* 共通 CSS *************************************************/


html {font-size: 62.5%;}


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    html {font-size: 62.5%;}

}

/********* body *********/

body {
    background-color: #ffffff;
    background-repeat:repeat-x;
    margin:0px;
    padding:0px;
    font-size:16px;
    line-height:24px;
    color:#000000;
    font-family:"ＭＳ ゴシック", "Osaka－等幅";
    text-align:left;
    background-image:url(../img/bg.jpg);
    background-position:center;
    background-repeat:repeat-y;
}


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    body {
        background-color: #ffffff;
        background-repeat:repeat-x;
        margin:0px;
        font-size:1.6rem;
        line-height:24px;
        color:#000000;
        font-family:"ＭＳ ゴシック", "Osaka－等幅";
        text-align:left;
        background-image:none;
        -webkit-text-size-adjust: 100%;/**スマホの縦と横で文字の大きさが変わらない**/
    }

}


/* 画面サイズが480px以下の場合に適用 */
@media (max-width: 480px) {

    body {
        drop-initial-size:14px;
        font-size:1.4rem;
        line-height:20px;
        -webkit-text-size-adjust: 100%;/**スマホの縦と横で文字の大きさが変わらない**/
    }

}


/************************************************* H tag *************************************************/

h1{display:none;}

h2{display:none;}

h3{display:none;}

h4{display:none;}

h5{display:none;}



/************************************************* etc *************************************************/


strong{font-weight:100;}

img{
    border:0px;
}

dl, dt, dd, ol,ul,li{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style-type:none;
}

p{
    margin:0px;
    padding:0px;
}

.clear{
    clear:both;
    height:0px;
    visibility: hidden;
    text-align:center;
    background-color:#eeeeee;
}

.seo{display:none;}/*SEO用隠しテキスト*/



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

/*************************************************　リンク設定　*************************************************/


A {text-decoration: none; }
A:link { color: #000000; } 
A:visited { color: #000000; } 
A:hover { color: #FF6600; } 
A:active { color: #ff0000; } 



/*************************************************　ページ枠　*************************************************/


.page_waku{
    width:1000px;
    margin:0px auto 0px auto;
    padding:0px;
}



/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    .page_waku{
        width:100%;
        margin:0px;
        padding:0px;
    }	

}


/*************************************************　ヘッダ枠　*************************************************/


#hed_waku{
    width:100%;
    padding:0px;
    margin:0px;
    border-top:5px solid #15256d;
}


#hed_waku img{
    width:100%;
    height:auto;
}


.hed_l{
    width:35%;
    height:auto;
    float:left;
    display:inline;
}

.hed_r{
    width:22%;
    height:auto;
    float:right;
    display:inline;
}


@media (max-width: 768px) {

    #hed_waku{
        width:100%;
        padding:0px;
        margin:0px;
    }


    .hed_l{
        width:50%;
        height:auto;
        margin:0px auto;
        float:none;
        display:block;
    }



    .hed_r{
        display:none;  /***タブレッド・スマホサイズになると電話番号は非表示になります。**/
    }



}
/* 画面サイズが480px以下の場合に適用 */
@media (max-width: 480px) {

    .hed_l{
        width:80%;
        height:auto;
        margin:0px auto;
        float:none;
        display:block;
    }

}



/*************************************************　メニュー枠　*************************************************/


#menu {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#menu li{
    display: block;
    float: left;
    width: 14.28%;
    margin: 0;
    padding: 0;
}

/****　ボタンの数に対する　#menu li　の　width設定

■メニューボタン４つ　　…　width: 25%;
■メニューボタン５つ　　…　width: 20%;
■メニューボタン６つ　　…　width: 16.6%;
■メニューボタン７つ　　…　width: 14.28%;
■メニューボタン８つ　　…　width: 12.5%;
■メニューボタン９つ　　…　width: 11.1%;
■メニューボタン10つ　　…　width: 10%;

***/



#menu li a {
    display: block;
    padding: 20px 0 20px;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    border-right:1px solid #000000;
    /**メニューの色**/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#282896+0,324daf+54,00266b+99 */
    background: #282896; /* Old browsers */
    background: -moz-linear-gradient(top,  #282896 0%, #324daf 54%, #00266b 99%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282896), color-stop(54%,#324daf), color-stop(99%,#00266b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* IE10+ */
    background: linear-gradient(to bottom,  #282896 0%,#324daf 54%,#00266b 99%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282896', endColorstr='#00266b',GradientType=0 ); /* IE6-9 */


}


#menu li:last-child a{
    border: none;
}


#menu li a:hover{
    /**メニューのホバーの色**/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2d59bf+0,5b7def+54,0b4cbc+99 */
    background: #2d59bf; /* Old browsers */
    background: -moz-linear-gradient(top,  #2d59bf 0%, #5b7def 54%, #0b4cbc 99%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2d59bf), color-stop(54%,#5b7def), color-stop(99%,#0b4cbc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* IE10+ */
    background: linear-gradient(to bottom,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d59bf', endColorstr='#0b4cbc',GradientType=0 ); /* IE6-9 */
}


#toggle {
    display: none;
}



/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {

    #menu-box{
        background-color:#3b5cbd;
    }

    #menu li {
        width: 25%;
        border-bottom: 1px solid #000000;
    }
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {


    #menu {
        display: none;
    }

    #menu li {
        width: 100%;
    }

    #toggle {
        display: block;
        position: relative;
        width: 100%;
        background: #000000;
    }

    #toggle a{
        display: block;
        position: relative;
        padding: 20px 0 20px;
        border-bottom: 1px solid #000000;
        color:#FFF;
        text-align: center;
        text-decoration: none;
        background-color:#5982c7;

    }


    #toggle:before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 30px;
        height: 30px;
        margin-top: -15px;
        background: #FFF;
    }

    #toggle a:before, #toggle a:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 30px;
        height: 6px;
        background: #ffffff;
    }

    #toggle a:before {
        margin-top:-9px;
    }

    #toggle a:after {
        margin-top: 3px;
    }


}



/*************************************************　イメージ画像及びページタイトル枠　*************************************************/


#top_image_waku{
    width:1000px;
    margin:0px auto 15px auto;
}

#top_image_waku img{
    width:100%;
    height:auto;
}


#title_waku{
    width:978px;
    margin:15px auto 13px auto;
    font-size:24px;
    text-align:left;
    padding:30px 10px;
    border:1px solid #000000;
    background-image:url(../img/contents_title_bg.jpg);
    background-repeat:no-repeat;
    background-position:right;
    background-size:contain;
    line-height:18px;
}

.sub_text{
    font-size:14px;
    font-weight:bold;
    padding-left:10px;
    color:#7F7F7F;
}


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    #top_image_waku{
        width:100%;
        margin:0px auto 15px auto;
    }

    #top_image_waku img{
        width:100%;
        height:auto;
    }



    #title_waku{
        width:96%;
        margin:15px auto 13px auto;
        font-size:24px;
        text-align:left;
        padding:30px 10px;
        border:1px solid #000000;
        background-image:url(../img/contents_title_bg.jpg);
        background-repeat:no-repeat;
        background-position:right;
        background-size:contain;
    }


}


/* 画面サイズが480px以下の場合に適用 */
@media (max-width: 480px) {
    #title_waku{
        width:90%;
        margin:15px auto 13px auto;
        font-size:24px;
        text-align:left;
        padding:30px 10px;
        border:1px solid #000000;
        background-image:url(../img/contents_title_bg.jpg);
        background-repeat:no-repeat;
        background-position:right;
        background-size:contain;
    }
}



/*************************************************　コンテンツ枠　*************************************************/

#contents_waku{
    width:100%;
}


.con_left_waku{
    width:25%;
    float:left;
    display:inline;
}


.con_right_waku{
    width:73%;
    float:right;
    display:inline;
}


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    #contents_waku{
        width:96%;
        margin:0px auto;
    }


    .con_left_waku{
        display:none;
    }


    .con_right_waku{
        width:100%;
        margin:0px auto;

    }

}





/*************************************************　Mタイトル　*************************************************/

.m_title{
    width:100%;
    padding:10px;
    margin-bottom:30px;
    color:#000000;
    font-size:16px;
    font-weight:bold;
    border:1px solid #666666;

    /**Ｍタイトルの色**/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,d6d6d6+99 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #d6d6d6 99%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(99%,#d6d6d6)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#d6d6d6 99%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#d6d6d6 99%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#d6d6d6 99%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#d6d6d6 99%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d6d6d6',GradientType=0 ); /* IE6-9 */

    /**角丸**/
    border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */ 

    /*paddingやborderを気にしない*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.mark_waku{
    width:0.8%;
    height:22px;
    margin-right:2%;
    float:left;
    display:inline;
    background-color:#162c8d;
}


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    .m_title{
        width:100%;
    }

    .mark_waku{
        width:0.8%;
        height:22px;
        margin-right:2%;
        float:left;
        display:inline;
        background-color:#162c8d;
    }

}



/*************************************************　Sタイトル　*************************************************/


.s_title{
    width:660px;
    margin:0px auto 30px auto;
}



/*************************************************　SSタイトル　*************************************************/

.ss_title{
    width:640px;
    margin:0px auto 20px auto;

}


/*************************************************　パンくずリスト　*************************************************/

#pan{
    margin-bottom:15px;
    padding-top:5px;
    padding-left:35px;
    background-image:url(../img/pan_mark.gif);
    background-repeat:no-repeat;
    color:#666666;
}

#pan A {text-decoration: none; }
#pan A:link { color: #000000; } 
#pan A:visited { color: #000000; } 
#pan A:hover {color: #FF6600;} 
#pan A:active { color: #ff0000; } 


/* 画面サイズが480px以下の場合に適用 */
@media (max-width: 480px) {
    #pan{
        font-size:12px;
        font-size:1.2rem;	
        width:90%;
        margin:0px auto 15px auto;
        padding-top:5px;
        padding-left:35px;
        background-image:url(../img/pan_mark.gif);
        background-repeat:no-repeat;
        color:#666666;
    }
}


/************************************************* サイドバナー *************************************************/


.side_banner_waku{
    width:100%;
    height:auto;
    margin-bottom:10px;
    background-color:#FFFFFF;
}

.side_banner_waku img{
    width:100%;
    height:auto;
}


/*************************************************　下層ページ用　サイドメニュー　*************************************************/


.side_menu_waku{
    width:100%;
    margin-bottom:20px;
    background-color:#FFFFFF;
}


.side_menu_title{
    width:250px;
    height:44px;
    margin-bottom:0px;
    background-color:#FFFFFF;
}

.side_menu_title img{
    width:100%;
    height:auto;
}


.side_menu_con_waku{
    padding:10px 10px 20px 10px;
    border-bottom:1px solid #000000;
    border-left:1px solid #000000;
    border-right:1px solid #000000;
    background-color:#FFFFFF;
}


.side_menu_con_waku li{
    width:210px;
    padding:10px 0px 10px 10px;
    border-bottom:1px dotted #666666;
    background-color:#FFFFFF;
    background-image:url(../img/side_menu_bg.jpg);
    background-repeat:no-repeat;
    display:block;
}



.side_menu_con_waku li A {text-decoration: none; }
.side_menu_con_waku li A:link { color: #000000; } 
.side_menu_con_waku li A:visited { color: #000000; } 
.side_menu_con_waku li A:hover {
    display:block;
    color: #666666;
    background-color:#DDDDDD;
} 
.side_menu_con_waku li A:active { color: #ff0000; } 



/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    .side_menu_waku{
        display:none;
    }

}


/*************************************************　ページの先頭へ　*************************************************/

.pagetop_sp {
    display: none;
    position: fixed;
    bottom:0px;
    right: 0px;
    margin-bottom:0px;
}

.pagetop_sp a {
    display: block;
    padding:10px 30px;
    background: #da5c00;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size:14px;
    font-weight:bold;
    text-decoration: none;
    opacity: 0.7;
}


.pagetop_sp a:hover {
    background: #ffe400;
    color: #e49a08;
}




/*************************************************　テキストナビ　*************************************************/

.text_navi_waku{
    width:100%;
    padding:15px 0px;
    text-align:center;
    color:#000000;
}


.text_navi_waku a{
    text-decoration:none;
    color:#ff8500;
}

.text_navi_waku A:link { color:#000000; } 
.text_navi_waku A:visited { color:#000000; } 
.text_navi_waku A:hover { color: #ff6600; } 
.text_navi_waku A:active { color: #ff0000; } 


/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    .text_navi_waku{
        display:none;
    }

}



/*************************************************　スマホ用メニュー枠　*************************************************/

.sp_menu_waku {
    display:none;
}

/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {

    .sp_menu_waku {
        display:none;
    }

}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {

    .sp_menu_waku{
        width: 100%;
        margin: 30px auto 0px auto;
        padding: 0;
        display:block;
    }

    .sp_menu1{
        display: block;
        float: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .sp_menu1 a{
        display: block;
        padding: 20px 0 20px;
        color: #FFF;
        text-align: center;
        text-decoration: none;
        border-right:1px solid #000000;
        /**メニューの色**/
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#282896+0,324daf+54,00266b+99 */
        background: #282896; /* Old browsers */
        background: -moz-linear-gradient(top,  #282896 0%, #324daf 54%, #00266b 99%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282896), color-stop(54%,#324daf), color-stop(99%,#00266b)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* IE10+ */
        background: linear-gradient(to bottom,  #282896 0%,#324daf 54%,#00266b 99%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282896', endColorstr='#00266b',GradientType=0 ); /* IE6-9 */
    }


    .sp_menu1 li:last-child a{
        border: none;
    }


    .sp_menu1 a:hover{
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2d59bf+0,5b7def+54,0b4cbc+99 */
        background: #2d59bf; /* Old browsers */
        background: -moz-linear-gradient(top,  #2d59bf 0%, #5b7def 54%, #0b4cbc 99%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2d59bf), color-stop(54%,#5b7def), color-stop(99%,#0b4cbc)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* IE10+ */
        background: linear-gradient(to bottom,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d59bf', endColorstr='#0b4cbc',GradientType=0 ); /* IE6-9 */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d6d6d', endColorstr='#6b6b6b',GradientType=0 ); /* IE6-9 */
    }



    .sp_menu2{
        display: block;
        float: left;
        width: 50%;
        margin: 0;
        padding: 0;
    }

    .sp_menu2 a{
        display: block;
        padding: 20px 0 20px;
        color: #FFF;
        text-align: center;
        text-decoration: none;
        border-right:1px solid #000000;
        /**メニューの色**/
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#282896+0,324daf+54,00266b+99 */
        background: #282896; /* Old browsers */
        background: -moz-linear-gradient(top,  #282896 0%, #324daf 54%, #00266b 99%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282896), color-stop(54%,#324daf), color-stop(99%,#00266b)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #282896 0%,#324daf 54%,#00266b 99%); /* IE10+ */
        background: linear-gradient(to bottom,  #282896 0%,#324daf 54%,#00266b 99%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282896', endColorstr='#00266b',GradientType=0 ); /* IE6-9 */
    }


    .sp_menu2 :last-child a{
        border: none;
    }


    .sp_menu2 a:hover{
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2d59bf+0,5b7def+54,0b4cbc+99 */
        background: #2d59bf; /* Old browsers */
        background: -moz-linear-gradient(top,  #2d59bf 0%, #5b7def 54%, #0b4cbc 99%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2d59bf), color-stop(54%,#5b7def), color-stop(99%,#0b4cbc)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* IE10+ */
        background: linear-gradient(to bottom,  #2d59bf 0%,#5b7def 54%,#0b4cbc 99%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d59bf', endColorstr='#0b4cbc',GradientType=0 ); /* IE6-9 */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d6d6d', endColorstr='#6b6b6b',GradientType=0 ); /* IE6-9 */
    }


}


/*************************************************　フッター　*************************************************/


.footer_waku{
    width:100%;
    margin:0px auto 0px auto;
    padding:20px 0px;
    text-align:center;
    color:#ffffff;
    /**フッターの色**/
    background-color:#15256d;
}


.footer_waku a{
    text-decoration:none;
    color:#ffffff;
}

.footer_waku A:link { color:#ffffff; } 
.footer_waku A:visited { color:#ffffff; } 
.footer_waku A:hover { color: #ffd200; } 
.footer_waku A:active { color: #FF0000; } 


.footer_l{
    width:40%;
    font-size:14px;
    float:left;
    display:inline;
    color:#ffffff;
    text-align:left;
    padding-left:10px;
    margin-bottom:0px;
}

.footer_r{
    width:40%;
    font-size:14px;
    float:right;
    display:inline;
    text-align:right;
    font-family:Arial, Helvetica, sans-serif;
    font-weight:bold;
    color:#ffffff;
    padding-right:10px;
    margin-bottom:0px;
}



/* 画面サイズが768px以下の場合に適用 */
@media (max-width: 768px) {

    .footer_waku{
        width:100%;
        margin:30px auto 0px auto;
        padding:20px 0px 20px;
        text-align:center;
        color:#ffffff;
        background-color:#15256d;
    }

}


/* 画面サイズが480px以下の場合に適用 */
@media (max-width: 480px) {

    .footer_waku{
        width:100%;
        margin:0px auto 0px auto;
        padding:20px 0px 20px 0px;
        text-align:center;
        color:#ffffff;
        background-color:#15256d;
        border-top:1px solid #ffffff;
    }



    .footer_l{
        display:none;
    }

    .footer_r{
        width:100%;
        font-size:1.6rem;
        float:none;
        display:block;
        text-align:center;
        font-family:Arial, Helvetica, sans-serif;
        font-weight:bold;
        color:#ffffff;
        padding-right:0px;
        margin-bottom:0px;
    }


}



/*************************************************ページの先頭へ*************************************************/


.pagetop_sp {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 0px;
    margin-bottom:0px;
}

.pagetop_sp a {
    display: block;
    padding:10px 30px;
    background: #0b59ba;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration: none;
    opacity: 0.7;
}


.pagetop_sp a:hover {
    background: #3683e2;
    color: #fff000;
}



@media screen and (max-width:480px){

    .pagetop_sp {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 0px;
        margin-bottom:0px;
    }

    .pagetop_sp a {
        display: block;
        padding:20px 10px;
        background: #0b59ba;
        border-radius: 5px;
        text-align: center;
        color: #fff;
        font-size:90%;
        font-weight:bold;
        text-decoration: none;
        opacity: 0.7;
    }


    .pagetop_sp a:hover {
        background: #3683e2;
        color: #fff000;
    }

}
