/*********************************************************
レイアウトとフォントCSS
**********************************************************/

/**********************************************************
PC画面 ヘッダー
**********************************************************/
.site-header-area .component-inner
{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
/**********************************************************
タブレット画面 ヘッダー
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .site-header-area .component-inner
    {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .site-header-area
    {
        border-top: 1rem solid #d2d2d2;
    }
}
/**********************************************************
スマホ画面 ヘッダー
**********************************************************/
@media screen and ( max-width: 543px )
{
    .site-header-area .component-inner
    {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .site-header-area
    {
        border-top: 1rem solid #d2d2d2;
    }
}





/**********************************************************
PC画面 コンテンツ
**********************************************************/
.main-content-area .component-inner
{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}
/**********************************************************
タブレット画面 コンテンツ
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .main-content-area .component-inner
    {
        padding-top: 2rem;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
/**********************************************************
スマホ画面 コンテンツ
**********************************************************/
@media screen and ( max-width: 543px )
{
    .main-content-area .component-inner
    {
        padding-top: 2rem;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
}





/**********************************************************
PC画面 サイドバー
**********************************************************/
.main-content-area .sidebar-left ,
.main-content-area .sidebar-right
{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}
/**********************************************************
タブレット画面 サイドバー
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .main-content-area .sidebar-left ,
    .main-content-area .sidebar-right
    {
        padding-top: 2rem;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
/**********************************************************
スマホ画面 サイドバー
**********************************************************/
@media screen and ( max-width: 543px )
{
    .main-content-area .sidebar-left ,
    .main-content-area .sidebar-right
    {
        padding-top: 2rem;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
}




/**********************************************************
PC画面 フッター
**********************************************************/
.footer-widget-area
{
    margin-top: 2rem;

    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 6rem;
    padding-right: 6rem;
}

.footer-copy-area
{
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
}
/**********************************************************
タブレット画面 フッター
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .footer-widget-area
    {
        margin-top: 2rem;

        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .footer-copy-area
    {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 0;
        padding-right: 0;
    }
}
/**********************************************************
スマホ画面 フッター
**********************************************************/
@media screen and ( max-width: 543px )
{
    .footer-widget-area
    {
        margin-top: 1rem;

        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .footer-copy-area
    {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}






/**********************************************************
共通レイアウト
**********************************************************/

.component-inner,
.site-header-area .component-inner
{
    margin: 0 auto;     /* センタリング */
    max-width: 1680px;
}

/* 3カラム 左サイドバー+右サイドバー*/

/* メインコンテンツの外幅 */
body.column-3 .main-content-wrap
{
    float: left;
    width: 82%;
}

/* 右サイドバーの幅 */
body.column-3 .sidebar-right
{
    float: right;
    width: 18%;
}

/* 左サイドバーの幅 */
body.column-3 .sidebar-left
{
    float: left;
    width: 22.5%;
}

/* メインコンテンツの幅 */
body.column-3 .main-content-site
{
    float: right;
    width: 77.5%;
    padding-left: 4rem;
    padding-right: 4rem;
}



/* 2カラム 左サイドバー */

/* メインコンテンツの幅 */
body.column-2l .main-content-wrap
{
    width: 100%;
}

/* メインコンテンツの外幅 */
body.column-2l .main-content-site
{
    float: right;
    width: 82%;
    padding-left: 4rem;
}

/* 左サイドバーの幅 */
body.column-2l .sidebar-left
{
    float: left;
    width: 18%;
}



/* 2カラム 右サイドバー */

/* メインコンテンツの外幅 */
body.column-2r .main-content-wrap
{
    float: left;
    width: 82%;
}

/* メインコンテンツの幅 */
body.column-2r .main-content-site
{
    width: 100%;
    padding-right: 4rem;
}

/* 右サイドバーの幅 */
body.column-2r .sidebar-right
{
    float: right;
    width: 18%;
}



/* 1カラム */

body.full-width .main-content-wrap,
body.full-width .main-content-site
{
    width: 100%;
}

/**********************************************************
タブレット画面
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .component-inner,
    .site-header-area .component-inner
    {
        margin: 0 auto;     /* センタリング */
        max-width: 100%;
    }
}
/**********************************************************
スマホ画面
**********************************************************/
@media screen and ( max-width: 543px )
{
    .component-inner,
    .site-header-area .component-inner
    {
        margin: 0 auto;     /* センタリング */
        max-width: 100%;
    }
}








/*********************************************************
フォント
**********************************************************/
body
{
    font-size: 16px;
    font-family: Arial,Helvetica,'游ゴシック',YuGothic,'Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
    font-weight: normal;
    color: #373a3c;
    word-wrap: break-word;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
#primary
{
    transform: rotate( 0.028deg ); /*アンチエイリアシング処理*/
    -webkit-backface-visibility:hidden; /*ちらつき防止*/
    backface-visibility:hidden; /*ちらつき防止*/
}
h1
{
    font-size: 1.5rem;
}
h2
{
    font-size: 1.25rem;
}
h3
{
    font-size: 1.2rem;
}

/**********************************************************
PC画面
**********************************************************/
.entry-content a:link
{
    color: #0275d8;
    font-weight: normal;
    text-decoration: none;
}
.entry-content a:visited
{
    color: #014c8c;
    font-weight: normal;
    text-decoration: none;
}
.entry-content a:hover
{
    color: #014c8c;
    font-weight: normal;
    text-decoration: none;
}


/**********************************************************
フォーム
**********************************************************/

.entry-content textarea ,
.entry-content input ,
.entry-content select
{
    max-width: 100%;
}

/**********************************************************
タブレット画面
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{

    /*********************************************************
    フォント
    **********************************************************/
    body
    {
        font-size: 16px;
        font-family: Arial,Helvetica,'游ゴシック',YuGothic,'Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
        font-weight: normal;
        color: #373a3c;
        line-height: 1.5;
    }
    h1
    {
        font-size: 1.2rem;
    }
    h2
    {
        font-size: 1.1rem;
    }
    h3
    {
        font-size: 1rem;
    }

    /**********************************************************
    リンク
    **********************************************************/
    .entry-content a:link
    {
        color: #0275d8;
        font-weight: normal;
        text-decoration: none;
    }
    .entry-content a:visited
    {
        color: #014c8c;
        font-weight: normal;
        text-decoration: none;
    }
    .entry-content a:hover
    {
        color: #014c8c;
        font-weight: normal;
        text-decoration: none;
    }

}

/**********************************************************
スマホ画面
**********************************************************/
@media screen and ( max-width: 543px )
{

    /*********************************************************
    フォント
    **********************************************************/
    body
    {
        font-size: 16px;
        font-family: Arial,Helvetica,'游ゴシック',YuGothic,'Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
        font-weight: normal;
        color: #373a3c;
        line-height: 1.5;
    }
    h1
    {
        font-size: 1.2rem;
    }
    h2
    {
        font-size: 1.1rem;
    }
    h3
    {
        font-size: 1rem;
    }

    /**********************************************************
    リンク
    **********************************************************/
    .entry-content a:link
    {
        color: #0275d8;
        font-weight: normal;
        text-decoration: none;
    }
    .entry-content a:visited
    {
        color: #014c8c;
        font-weight: normal;
        text-decoration: none;
    }
    .entry-content a:hover
    {
        color: #014c8c;
        font-weight: normal;
        text-decoration: none;
    }

}

/*********************************************************
グローバルナビゲーション
**********************************************************/

#header-navi .header-frame
{
    max-width: 1680px;
    margin: 0 auto;
}
#header-navi
{
    background-color: #E6E6E6;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: none;
    border-right: none;

    /* ボックスシャドウ */
    box-shadow: 0px 4px 4px 1px rgba(186,186,186,0.3);
    -moz-box-shadow: 0px 4px 4px 1px rgba(186,186,186,0.3);
    -webkit-box-shadow: 0px 4px 4px 1px rgba(186,186,186,0.3);

}
#header-navi .navbar-nav
{
    padding: 0;
}
#header-navi .navbar-nav > li
{
    border-left: 1px dotted #818a91;
    height: auto;
    text-align: center;
}
#header-navi .navbar-nav li:last-child
{
    border-right: 1px dotted #818a91;
}
#header-navi .navbar-nav .nav-item + .nav-item
{
    margin-left: 0;
}

#header-navi li
{
    color: inherit !important;
    text-decoration: none !important;
    float: left;
}

#header-navi li a
{
    font-size: 1.5rem !important;
    color: #0275d8 !important;
    font-family: inherit !important;
    font-weight: normal !important;
    text-decoration: none !important;
}

#header-navi li a:link
{
    color: #0275d8 !important;
}

#header-navi li a:visited
{
    color: #014c8c !important;
}

#header-navi li a:hover
{
    color: #014c8c !important;
}
/**********************************************************
PC画面 グローバルナビゲーション
**********************************************************/
#header-navi
{
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
}
#header-navi .navbar-nav > li
{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
#header-navi .header-frame .navbar
{
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}
/**********************************************************
タブレット画面 グローバルナビゲーション
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    #header-navi
    {
        margin-top: 0;
        margin-bottom: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    #header-navi .navbar-nav > li
    {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    #header-navi .header-frame .navbar
    {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
}
/**********************************************************
スマホ画面 グローバルナビゲーション
**********************************************************/
@media screen and ( max-width: 543px )
{
    #header-navi
    {
        margin-top: 0;
        margin-bottom: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    #header-navi .navbar-nav > li
    {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    #header-navi .header-frame .navbar
    {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
}











/*********************************************************
画像関係
**********************************************************/

/* 画像のリサイズ */
.post-content-single img ,
.post-content img ,
.wp-caption
{
   max-width: 100%;
   height: auto;
   width: auto;
}

/* 画像の中央揃え */
.post-content-single .aligncenter ,
.post-content .aligncenter
{
   display: block;
   margin: 0 auto;
   margin-left: auto;
   margin-right: auto;
}
/*********************************************************
サムネイル
**********************************************************/

.thumbnail-post > img
{
    max-width: 100%;
    height: auto;
}

#outer_template .card-post-single .thumbnail-post > img
{
    max-width: 100%;
    height: auto;
}

/* インデックスページ系サムネイル */
#outer_template .thumbnail-post > img
{
    max-width: 100%;
    height: ;
    overflow: hidden;
}

#outer_template .card-post-thumbnail
{
    width: 100%;
    height: ;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 投稿記事サムネイル */
#outer_template .card-post-single-thumbnail
{
    width: 100%;
    height: ;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 関連記事サムネイル */
#outer_template .card-post-rel-thumbnail
{
    width: 100%;
    height: ;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*********************************************************
サムネイルスライダー
**********************************************************/

/* インデックスページサムネイルスライダー */
.thumbnail-slider
{
    height: ;
}

/* シングルページサムネイルスライダー */
.thumbnail-slider-single
{
    height: ;
}

#outer_template .card .thumbnail-wrapper
{
    text-align: center;
}

.thumbnail-wrapper .bx-wrapper
{
    box-shadow: none;
}

.thumbnail-slider li img
{
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: ;
    overflow: hidden;
    object-fit: cover;
}

.thumbnail-slider-single li img
{
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: ;
    overflow: hidden;
    object-fit: cover;
}

img
{
    max-width: 100%;
}

/**********************************************************
タブレット画面
**********************************************************/

@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    img
    {
        max-width: 100%;
    }
}

/**********************************************************
スマホ画面
**********************************************************/

@media screen and ( max-width: 543px )
{
    img
    {
        max-width: 100%;
    }

    #outer_template .thumbnail-post > img
    {
        height: ;
    }

    /* インデックスページ系サムネイル */
    #outer_template .card-post-thumbnail
    {
        height: ;
    }

    /* 投稿記事サムネイル */
    #outer_template .card-post-single-thumbnail
    {
        height: ;
    }

    /* 関連記事サムネイル */
    #outer_template .card-post-rel-thumbnail
    {
        height: ;
    }

    /*********************************************************
    サムネイルスライダー
    **********************************************************/

    .thumbnail-slider
    {
        height: ;
    }

    .thumbnail-slider li img
    {
        height: ;
    }

    .thumbnail-slider-single
    {
        height: ;
    }

    .thumbnail-slider-single li img
    {
        height: ;
    }

}

/*********************************************************
ドロップメニュー
**********************************************************/

.dropmenu
{
    *zoom: 1;
}

.dropmenu:before, .dropmenu:after
{
    content: '';
    display: table;
}

.dropmenu:after
{
    clear: both;
}

.dropmenu li
{
    position: relative;
}

.dropmenu li a
{
    display: block;
/*    margin: 0;*/
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;

/*  background: #8a9b0f;*/
/*  color: #fff;*/
/*  font-size: 14px;*/
    line-height: 1;
/*  text-decoration: none;*/
    text-align: center;
}

.dropmenu li ul
{
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
}
.dropmenu li ul li
{
    width: 200px;
    background-color: #efefef;
    border-left: 1px solid #818a91 !important;
    border-right: 1px solid #818a91 !important;
    border-bottom: 1px solid #818a91 !important;
}

.dropmenu li ul li a
{
/*  padding: 6px 8px;*/
/*  border-top: 1px solid #7c8c0e;*/
/*  background: #6e7c0c;*/
    text-align: left;
}
.dropmenu li:hover > a
{
/*  background: #6e7c0c;*/
}
.dropmenu li a:hover
{
/*  background: #616d0b;*/
}

/* 三階層目 */
.dropmenu ul ul
{
    position: absolute;
    top: 0;
    left: 100%;
}

/* 矢印アイコン */
.dropmenu ul li a
{
    position: relative;
    display: block;
}
.dropmenu ul li a:after
{
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    content: '';
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* アクティブ時 */
.dropmenu .active
{
/*  background-color: inherit;*/
/*  font-color: inherit;*/
}

/* 開閉 */
.dropmenu ul
{
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-in-out;
}
.dropmenu li:hover > ul
{
    visibility: visible;
    opacity: 1;
}

/*********************************************************
投稿関連
**********************************************************/

/**********************************************************
PC画面 タイトル
**********************************************************/
.main-content-header .main-content-title
{
    position: relative;
    background: none;
    color: #333;
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.2;

    margin-top: 0;
    margin-bottom: 3rem;
    margin-left: 2rem;
    margin-right: 0;

    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;

    border-top-width: 0;
    border-bottom-width: 1px;
    border-left-width: 2px;
    border-right-width: 0;

    border-top-color: #ccc;
    border-bottom-color: #ccc;
    border-left-color: #ccc;
    border-right-color: #ccc;

    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;

}
/**********************************************************
タブレット画面 タイトル
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    .main-content-header .main-content-title
    {
        position: relative;
        background: none;
        color: #333;
        font-size: 2.2rem;
        font-weight: normal;
        line-height: 1.2;

        margin-top: 0;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;

        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;

        border-top-width: 0;
        border-bottom-width: 1px;
        border-left-width: 2px;
        border-right-width: 0;

        border-top-color: #ccc;
        border-bottom-color: #ccc;
        border-left-color: #ccc;
        border-right-color: #ccc;

        border-top-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-right-style: none;
    }
}
/*********************************************************
スマホ画面 タイトル
**********************************************************/
@media screen and ( max-width: 543px )
{
    .main-content-header .main-content-title
    {
        position: relative;
        background: none;
        color: #333;
        font-size: 2.2rem;
        font-weight: normal;
        line-height: 1.2;

        margin-top: 0;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;

        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;

        border-top-width: 0;
        border-bottom-width: 1px;
        border-left-width: 2px;
        border-right-width: 0;

        border-top-color: #ccc;
        border-bottom-color: #ccc;
        border-left-color: #ccc;
        border-right-color: #ccc;

        border-top-style: none;
        border-bottom-style: ;
        border-left-style: none;
        border-right-style: none;
    }
}

/*********************************************************
サイドバー
**********************************************************/

#sidebar ,
#mobile-sidebar
{
    background-color: #FFFFFF;
    font-size: 0.8rem;
    color: inherit;
    font-family: inherit;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.2;
}

#mobile-sidebar
{
    display: none;
}

#sidebar .widget-header ,
#mobile-sidebar .widget-header
{
    background-color: #eee;
}

#sidebar .widget-title ,
#mobile-sidebar .widget-title
{
    font-size: 1rem;
    color: inherit;
    font-weight: bold;
}

#sidebar a:link ,
#mobile-sidebar a:link
{
    color: #0275d8;
}

#sidebar a:visited ,
#mobile-sidebar a:visited
{
    color: #014c8c;
}

#sidebar a:hover ,
#mobile-sidebar a:hover
{
    color: #014c8c;
}

#sidebar .widget-header ,
#mobile-sidebar .widget-header
{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;

    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.125);
}

#sidebar .widget-title ,
#mobile-sidebar .widget-title
{
    margin-bottom: 0;
}

#sidebar .widget-container ul ,
#mobile-sidebar .widget-container ul
{
    margin-top: 0;
    margin-bottom: 0;
}

#sidebar .card .list-group ,
#mobile-sidebar .card .list-group
{
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: -1px;
}

#sidebar .card .list-group-item ,
#mobile-sidebar .card .list-group-item
{
    text-indent: -1rem;
    padding-left: 2rem;
}

#sidebar .card .gap-ranking-tab .list-group-item ,
#mobile-sidebar .card .gap-ranking-tab .list-group-item
{
    padding-bottom: 0;
}

#sidebar .card .list-group-item a ,
#mobile-sidebar .card .list-group-item a
{
    color: #0275d8;
    text-decoration: none;
    display:block;
}

#sidebar .widget-list-icon ,
#mobile-sidebar .widget-list-icon
{
    color: #F00;
    font-size: 0.8rem;
}

#sidebar .searchform ,
#mobile-sidebar .searchform
{
    padding: 1rem;
}

#sidebar .searchform .screen-reader-text ,
#mobile-sidebar .searchform .screen-reader-text
{
    display: none;
}

#sidebar .card .tagcloud ,
#mobile-sidebar .card .tagcloud
{
    margin: 1rem;
}

#sidebar .post-date ,
#mobile-sidebar .post-date
{
    font-size: 0.7rem;
}

#sidebar li.list-group-item ,
#mobile-sidebar li.list-group-item
{
    font-size: 0.8rem;
}

/*********************************************************
タブレット画面
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{
    #sidebar
    {
        display: none;
    }

    #mobile-sidebar
    {
        display: block;
    }
}

/*********************************************************
スマホ画面
**********************************************************/
@media screen and ( max-width: 543px )
{
    #sidebar
    {
        display: none;
    }

    #mobile-sidebar
    {
        display: block;
    }
}

/*********************************************************
フッター領域
**********************************************************/

/*********************************************************
PC画面 フッター
**********************************************************/

.footer-widget-area
{
    background-color: #f5f5f5;
}

.footer-copy-area
{
    line-height: 1;

    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;

    background-color: #E6E6E6;
}

.footer-copy-area .footer-copy
{
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
    font-size: inherit;
    font-weight: normal;
    color: #014c8c;
}

.footer-copy-area .footer-copy a
{
    font-size: inherit;
    color: #014c8c;
}

/**********************************************************
タブレット画面 フッター
**********************************************************/
@media screen and ( min-width: 542px ) and ( max-width: 991px )
{

    .footer-widget-area
    {
        background-color: #f5f5f5;
    }

    .footer-copy-area
    {
        line-height: 1;

        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 0;
        padding-right: 0;

        background-color: #E6E6E6;
    }

    .footer-copy-area .footer-copy
    {
        word-break: break-all;
        text-align: center;
        line-height: 1.5;
        font-size: inherit;
        font-weight: normal;
        color: #014c8c;
    }

    .footer-copy-area .footer-copy a
    {
        font-size: inherit;
        color: #014c8c;
    }
}
/**********************************************************
スマホ画面 フッター
**********************************************************/
@media screen and ( max-width: 543px )
{
    .footer-widget-area
    {
        background-color: #f5f5f5;
    }

    .footer-copy-area
    {
        line-height: 1;

        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;

        background-color: #E6E6E6;
    }

    .footer-copy-area .footer-copy
    {
        word-break: break-all;
        text-align: center;
        line-height: 1.5;
        font-size: inherit;
        font-weight: normal;
        color: #014c8c;
    }

    .footer-copy-area .footer-copy a
    {
        font-size: inherit;
        color: #014c8c;
    }
}









/*********************************************************
ブログカードのスタイル
**********************************************************/

.blog-card
{
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    word-wrap:break-word;
    max-width:100%;
    width:100%;
    border-radius:5px;
    line-height: 1;
}

.blog-card-thumbnail-container
{
    float:left;
}

.blog-card-thumbnail
{
    width: 100px;
    height: 100px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #eee;
}

.blog-card-content
{
    margin-left:110px;
    line-height:120%;
}

.blog-card-title
{
    margin-bottom:5px;
    border-bottom: solid 2px #ccc;
}

.blog-card .rel-label
{
    color: #222
}

.blog-card-title a
{
    font-weight:bold;
    text-decoration:none;
    color:#111;
}

.blog-card-excerpt
{
    color:#333;
    font-size:0.9rem;
}

.blog-card-footer
{
    font-size:0.7rem;
    color:#777;
    margin-top:5px;
    text-align: right;
}

.blog-card .clear
{
    clear:both;
}



/**********************************************************
デコレーション
**********************************************************/

/* 補足説明（黄色枠 */
.deco-yellow
{
    background: #ffffe0;
    background: rgba(255,255,0,.2);
    font-size: .9em;
    padding: 3% 4%;
    margin: 1.5em 0 2em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #999;
    border-color: rgba(165,165,165,0.2)
}

/* 注意説明（ピンク枠 */
.deco-pink
{
    background: #ffc0cb;
    background: rgba(255,0,45,0.1);
    color: #333;
    font-size: .9em;
    padding: 3% 4%;
    margin: 1.5em 0 2em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #999;
    border-color: rgba(165,165,165,0.2)
}

/* 赤文字 */
.deco-red
{
    color: #ff0000;
    font-weight: bold;
}

/* 赤✕黄色文字 */
.deco-redy
{
    color: #ff0000;
    background-color: #ffff00;
    font-weight: bold;
}

/* 青文字 */
.deco-blue
{
    color: #4269E0;
    font-weight: bold;
}

/* デカ文字 */
.deco-big
{
    font-size: 28px;
    font-weight: bold;
}

/* 赤文字大 */
.deco-redbig
{
    color: #ff0000;
    font-size: 28px;
    font-weight: bold;
}

/* 出典 */
.deco-link a
{
    text-align: right;
    color: #999999;
    font-size: 8px;
}

.deco-link
{
    text-align: right;
    color: #999999;
    font-size: 8px;
}







#header-navi .english-menu
{
    margin-top: 2rem;
    font-size: 80%;
}
.footer-widget-area .english-menu
{
    display: none;
}
