@charset "utf-8";


/*-------------------------------------------------------------------------------------------*/
/* 1. 準備 */
/*-------------------------------------------------------------------------------------------*/

/* 

1.2 初期設定 

*/

body {
    background-color: #f8f8f8;
}

/* リンク */

a, 
a:visited {
    color: #0066cc;
}

a:hover, 
a:focus {
    color: #0066cc;
}

a:active {
}

a:link {
    -webkit-tap-highlight-color: rgba(000, 000, 000, 0);
}

/* 

1.3 レイアウト 

*/

.wrapper {
    width: 100%;
}

.wrapper-inner {
}

/* ３カラム */

.column3 #contents {
    width: 795px;
}

.column3 #main {
    width: 570px;
    margin-right: 10px;
}

.column3 #sub {
    width: 185px;
}

.column3 #ex {
    width: 185px;
}

/* ２カラム（右サイドバー） */

.right_sidebar #contents {
}

.right_sidebar #main {
    width: 685px;
    margin: 0 -285px 0 0;
}

.right_sidebar #sub {
    width: 270px;
    margin-bottom: 10px;
}

.right_sidebar #ex {
    width: 270px;
}

/* １カラム（サイドバー無し） */

.column1 #contents {
}

.column1 #main {
}


/*-------------------------------------------------------------------------------------------*/
/* 2. タイトルとナビゲーション */
/*-------------------------------------------------------------------------------------------*/

/* 

2.1 ヘッダーエリア  

*/

/* ヘッダーバー */

.header-bar {
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #ededed));
    background: -webkit-linear-gradient(top, #fff 0%, #ededed 100%);
    background:    -moz-linear-gradient(top, #fff 0%, #ededed 100%);
    background:      -o-linear-gradient(top, #fff 0%, #ededed 100%);
    background:     -ms-linear-gradient(top, #fff 0%, #ededed 100%);
    background:   linear-gradient(to bottom, #fff 0%, #ededed 100%);
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed));
    /* IE8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed))";
    zoom: 1;
}

.header-bar-inner {
    width: 1000px;
}

/* ヘッダーバーメニュー */

.header-bar .menu, 
.header-bar .sb-menu {
}

.header-bar .menu li, 
.header-bar .sb-menu li {
    color: #555;
}

.header-bar .menu li a, 
.header-bar .sb-menu li a {
    color: #555;
    text-shadow: 0 1px 0 #fff;
}

.header-bar .menu li a:hover, 
.header-bar .sb-menu li a:hover {
    color: #000;
    text-shadow: 0 1px 0 #fff;
}

/* 

2.2 サイトタイトル、サイトの説明

*/

.banner {
    width: 100%;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #f8f8f8));
    background: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
    background:    -moz-linear-gradient(top, #fff 0%, #f8f8f8 100%);
    background:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
    background:     -ms-linear-gradient(top, #fff 0%, #f8f8f8 100%);
    background:   linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    border-top: 1px solid #fa7241;
}

.banner-inner {
}

.site-title {
    text-shadow: 0 1px 0 #fff;
}

.site-title a,
.site-title a:visited {
    color: #444;
}

.site-title a:hover {
    color: #fa7241;
}

.site-description {
    color: #666;
    text-shadow: 0 1px 0 #fff;
}

/* 

2.3 グローバルメニュー

*/

.glovalnavi {
    margin-bottom: 20px;
    min-height: 28px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #aaa;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #fff), color-stop(1.00, #ededed));
    background: -webkit-linear-gradient(top, #fff 0%, #ededed 100%);
    background:    -moz-linear-gradient(top, #fff 0%, #ededed 100%);
    background:      -o-linear-gradient(top, #fff 0%, #ededed 100%);
    background:     -ms-linear-gradient(top, #fff 0%, #ededed 100%);
    background:   linear-gradient(to bottom, #fff 0%, #ededed 100%);
    -webkit-box-shadow: 0 1px 2px rgba(000, 000, 000, .1);
       -moz-box-shadow: 0 1px 2px rgba(000, 000, 000, .1);
            box-shadow: 0 1px 2px rgba(000, 000, 000, .1);
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed));
    /* IE8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed))";
    zoom: 1;
    /*IE6 IE7 IE8 */
    position: relative;
    behavior: url("http://futaeninaru.org/wp-content/themes/refinesnow2/PIE.htc");
}

.glovalnavi-inner {
    padding: 10px 0;
}

.glovalnavi ul {
    overflow: hidden;
    border-left : 1px solid rgba(000, 000, 000, .15);
}

.glovalnavi li {
    margin: 0;
    padding: 5px 16px;
    border-right: 1px solid rgba(000, 000, 000, .15);
    border-left : 1px solid rgba(255, 255, 255, .45);
    color: #222;
    font-weight: normal;
}

.glovalnavi li:last-child {
    border-right:none;
}

.glovalnavi li a, 
.glovalnavi li a:visited {
    color: #222;
    text-shadow: none;
}

.glovalnavi li a:hover {
    color: #0066cc;
}

.glovalnavi li a:before {
    display: block;
    float: left;
    padding: 7px 5px 0 0;
    color: #fa7241;
    content: "\25B6";
    font-size: 10px;
    line-height: 1px;
}


/*-------------------------------------------------------------------------------------------*/
/* 3. コンテンツ */
/*-------------------------------------------------------------------------------------------*/

/* 

3.1 メインコンテンツ

*/

.main-inner > .entry, 
.main-inner > .widget {
    padding: 20px;
    border: 1px solid    rgba(000, 000, 000, .25);
    border-top-color:    rgba(000, 000, 000, .15);
    border-bottom-color: rgba(000, 000, 000, .35);
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    background-color: #fff;
    background-image: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAYEBAQFBAYFBQYJBgUGCQsIBgYICwwKCgsKCgwQDAwMDAwMEAwODxAPDgwTExQUExMcGxsbHCAgICAgICAgICD/2wBDAQcHBw0MDRgQEBgaFREVGiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICD/wAARCAA8AAUDAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgj/xAAVEAEBAAAAAAAAAAAAAAAAAAAAEf/EABQBAQAAAAAAAAAAAAAAAAAAAAD/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwCqKA0BoDQGgNAKAg//2Q==);
    background-position: center bottom;
    background-repeat: repeat-x;
    -webkit-box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
       -moz-box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
            box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
            box-shadow: rgba(0, 0, 0, .15) 0 1px 6px \0/IE9;
    /*IE6 IE7 IE8 */
    position: relative;
    behavior: url("http://futaeninaru.org/wp-content/themes/refinesnow2/PIE.htc");
}

.column3 .main-inner > .entry, 
.column3 .main-inner > .widget {
    margin: 0 0 10px;
}

.right_sidebar .main-inner > .entry, 
.right_sidebar .main-inner > .widget {
    margin: 0 0 20px;
}

/* タイトル */

.main-inner > .entry .entry-title,
.main-inner > .widget .widget-title {
    margin: -20px -20px 20px;
    padding: 17px 20px;
    border-bottom: 2px solid #fa7241;
    -webkit-border-radius: 6px 6px 0 0;
       -moz-border-radius: 6px 6px 0 0;
            border-radius: 6px 6px 0 0;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #ededed));
    background: -webkit-linear-gradient(top, #fff 0%, #ededed 100%);
    background:    -moz-linear-gradient(top, #fff 0%, #ededed 100%);
    background:      -o-linear-gradient(top, #fff 0%, #ededed 100%);
    background:     -ms-linear-gradient(top, #fff 0%, #ededed 100%);
    background:   linear-gradient(to bottom, #fff 0%, #ededed 100%);
    color: #333;
    text-align: left;
    text-shadow: 0 1px 0 #fff;
    font-size: 18px;
    font-size: 1.39rem;
    line-height: 1.3;
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed));
    /* IE8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed))";
    zoom: 1;
}

.main-inner > .entry .entry-title .deco,
.main-inner > .widget .widget-title .deco {
    background: url(img/bullet-h1.gif) no-repeat left top;
    padding: 1px 0 1px 22px;
    margin: 0 0 0 -4px;
}

.main-inner > .entry .entry-title a, 
.main-inner > .entry .entry-title a:visited {
    color: #333;
    text-decoration: none;
}

.main-inner > .entry .entry-title a:hover {
    color: #fa7241;
    text-decoration: none;
}

/* ポスト（メイン） */

.h2, 
.entry-content h2,
.textwidget h2 {
    border-top-color: #fa7241;
}

.h3, 
.entry-content h3,
.textwidget h3 {
    border-left-color: #fa7241;
}

.h5, 
.entry-content h5,
.textwidget h5 {
    border-left-color: #fa7241;
}

/* 

3.3 サブコンテンツ

*/

.sub {
    -webkit-box-shadow: 0 1px 3px rgba(000, 000, 000, .1) inset;
       -moz-box-shadow: 0 1px 3px rgba(000, 000, 000, .1) inset;
            box-shadow: 0 1px 3px rgba(000, 000, 000, .1) inset;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    background-image: url(data:image/gif;base64,R0lGODlhCgAKAIAAAMzMzPLy8iH5BAAHAP8ALAAAAAAKAAoAAAIRDIx3we2akJsRLtpsxLlKXgAAOw==);
}

.column3 .sub {
    padding: 10px 10px 1px;
}

.right_sidebar .sub {
    padding: 15px 15px 5px;
}

/* リスト */

.sub ul {
    margin: -10px 0 0;
}

.sub ul li {
    padding: 6px 5px 5px 17px;
    border-bottom: 1px solid #ddd;
    list-style: none !important;
}

.sub ul li a:before {
    display: block;
    float: left;
    margin: 3px 5px 0 -17px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background-color: #fa7241;
    background-image: url(img/bullet-a.png);
    background-position: center center;
    background-repeat: no-repeat;
    content: "";
}

.sub ul li ul {
    margin: 2px 0;
}

.sub ul li ul li {
    margin: 0 0 0 13px;
    padding: 0 0 2px;
    border-bottom: none;
    background: none;
    list-style: none;
    font-size: 12px;
    font-size: 0.93rem;
}

.sub ul li ul li a:before {
    display: block;
    float: left;
    margin: 0;
    margin-left: -14px;
    padding: 10px 0 0 0;
    background: none;
    color: #999;
    content: "\25B6";
    font-size: 9px;
    line-height: 1px;
}

.sub li.entry-item a:before {
    content: none;
}

/* ウィジェット */

.sub .widget {
    border: 1px solid #bbb;
    border-bottom-color: #999;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
    margin: 0 0 10px;
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
       -moz-box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
            box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
            box-shadow: rgba(0, 0, 0, .15) 0 1px 6px \0/IE9;
    /*IE6 IE7 IE8 */
    position: relative;
    behavior: url("http://futaeninaru.org/wp-content/themes/refinesnow2/PIE.htc");
}

.sub .widget .widget-title {
    -webkit-border-radius: 2px 2px 0 0;
       -moz-border-radius: 2px 2px 0 0;
            border-radius: 2px 2px 0 0;
    margin: -10px -10px 10px;
    padding: 10px;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #ededed));
    background: -webkit-linear-gradient(top, #fff 0%, #ededed 100%);
    background:    -moz-linear-gradient(top, #fff 0%, #ededed 100%);
    background:      -o-linear-gradient(top, #fff 0%, #ededed 100%);
    background:     -ms-linear-gradient(top, #fff 0%, #ededed 100%);
    background:   linear-gradient(to bottom, #fff 0%, #ededed 100%);
    border-bottom: 2px solid #fa7241;
    color: #222;
    text-shadow: 0 1px 0 #fff;
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed));
    /* IE8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#ededed))";
    zoom: 1;
}

.sub .widget .widget-title .deco {
    border-left: 3px solid #ccc;
    padding: 2px 7px;
}

/* 

3.4 フッター

*/

/* フッターメニュー */

.container {
    background: url(img/bg-contents_btm.png) repeat-x left bottom;
}

#footer-menu {
    padding: 20px 0 10px;
    border-top: 1px solid rgba(000, 000, 000, .3);
    background: rgba(000, 000, 000, .1);
    -webkit-box-shadow: 0 1px 3px rgba(000, 000, 000, .3) inset;
       -moz-box-shadow: 0 1px 3px rgba(000, 000, 000, .3) inset;
            box-shadow: 0 1px 3px rgba(000, 000, 000, .3) inset;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    /*IE6 IE7 IE8 */
    position: relative;
    behavior: url("http://futaeninaru.org/wp-content/themes/refinesnow2/PIE.htc");
}

.footer-menu .widget {
    width: 220px;
}

.footer-menu .footer-menu1, 
.footer-menu .footer-menu2, 
.footer-menu .footer-menu3, 
.footer-menu .footer-menu4 {
    width: 235px;
}


/*-------------------------------------------------------------------------------------------*/
/* 5. その他 */
/*-------------------------------------------------------------------------------------------*/

/*

ウィジェット共通フォーマット rewg= refines widgets

*/

/* タイトル */

.main .rewg .entry-title {
    margin-left: 20px;
}

.sub .rewg .entry-title {
    margin-left: 17px;
}

.main .rewg .entry-title a:before, 
.sub .rewg .entry-title a:before {
    display: block;
    float: left;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background-color: #fa7241;
    background-image: url(img/bullet-a.png);
    background-position: center center;
    background-repeat: no-repeat;
    content: "";
}

.main .rewg .entry-title a:before {
    margin: 5px 5px 0 -20px;
    padding: 1px;
}

.sub .rewg .entry-title a:before {
    margin: 4px 5px 0 -17px;
    width: 12px;
    height: 12px;
}


/*-------------------------------------------------------------------------------------------*/
/* 7. レスポンシブ設定 */
/*-------------------------------------------------------------------------------------------*/

@media(max-width: 640px) {

    .wrapper,
    .custom-background .wrapper,
    .banner,
    .breadcrumb {
        width: 100% !important;
    }

    .banner-inner,
    .breadcrumb-inner,
    .container-inner,
    .footer-menu-inner,
    .footer-inner {
        margin-right: 10px !important;
        margin-left: 10px !important;
        width: auto !important;
    }

    .sub {
        padding: 0 !important;
        background: none !important;
    }

}
