@charset "UTF-8";
/*--------------------------
 BOTTOM NAV
----------------------------*/

/*-- ボトムのFIXボタン --*/
.bottom-nav * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.bottom-nav {
    color: white;
    z-index: 99999;
    position: fixed;
    /* ボトムナビ背景色 */
    background: #FFFFFF;/*ボトムナビの背景*/
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;/*ボトムナビ全体の高さ*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.bottom-nav a {
    color: white;
}



/*-- オーバーのボタン一覧 --*/
.menu-overlay {
    color: #EB0B0F; /*メニュー側のタイトル色*/
    z-index: 9999;
    width: 100%; /*メニューベースの幅*/
	
	/*以下、表示メニューの一を調整できる*/
    bottom: 0;
    top: 0px;
    left: 0;
    right: 0;
	
    position: fixed;
    /* メニュー背景色 */
    background-color: #e9f0ec;
    /* 表示メニュー背景のグラデーション版 */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#725050), to(#362626));*/
    /*background: linear-gradient(to bottom, #725050, #362626);*/
    
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    
    /*padding-top: 20px;*/
    /*padding-bottom: 20px;*/
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
    
    overflow-y: auto;
    height: auto;
}


.menu-overlay {
   /*visibility:hidden*/
}


.menu-show {
    overflow: hidden;
}
.menu-show .hamburger-menu::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #000000; /*ペケの半分*/
}
.menu-show .hamburger-menu::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #000000;　/*ペケの半分*/
}
.menu-show .menu-overlay {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
}

.menu-title {
    text-align: center;/*メニュー内のタイトルの調整ができる*/
    margin-top: 30px;
    margin-bottom: 30px;
    
}
.menu-title img {
    width: 180px;
    height: auto;
}
.menu-title a {
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    display: block;
}
.menu-title a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}
/*
.search-overlay .hatena-module-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 100px;
    font-size: 2rem;
}
*/

/*標準ナビリスト*/
.menu-body {
    font-size: 1.2rem;

    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding: 0;
    list-style-type: none;
    margin-left: 20px;
    margin-right: 20px;
    border-top: 1px solid #2c2626;
}
.menu-body a {
    color: #000000;/*メニュー内の文字色*/
    border-bottom: 1px solid #2c2626; /*メニュー内の下線*/
    padding: 15px 18px;　/*メニュー内の各文字の感覚*/
    margin-bottom: 25px;
    display: block;

    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    display: block;
}
.menu-body a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}
.menu-body_middle_push {
	margin-bottom: 40px;
}
/*--------------------------
 USER CUSTOMIZE
----------------------------*/
.nav_hamsp a {
    color: #FFFFFF!important;
    display: block;
    background-repeat: no-repeat;
    background-size: 14px auto;
    padding-top: 20px!important;
    padding-bottom: 20px!important;

    background-image: url("../images/arrow_white.svg");
    background-position: right 20px center;

    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    display: block;
}
.nav_hamsp a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}
.nav_hamcol01 {
    background-color: #569fba;
    margin-bottom: 15px!important;
}
.nav_hamcol02 {
    background-color: #a19a80;
	margin-bottom: 10px!important;
}
/*
.nav_hamcol03 {
    background-color: #5f5322;
}
*/


/*多分関係ない*/
.search-overlay {
	/*
    color: white;
    z-index: 9999;
    width: 100%;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
	*/
    /* 検索背景色 */
	/*
    background: -webkit-gradient(linear, left top, left bottom, from(#725050), to(#362626));
    background: linear-gradient(to bottom, #725050, #362626);
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    padding: 30px 30px 100px;
    overflow: scroll;
    height: auto;
	*/
}


/*--------------------------
.blogicon-search::before {
    content: "\f01a";
}
.search-show {
    overflow: hidden;
}
.search-show .blogicon-search:before {
    content: "\f025";
}
.search-show .search-overlay {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
}
----------------------------*/

.bottomnav-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;/*ボトムナビ全体の幅*/
}
.bottomnav-list li {
    /*各ナビの大きさ（画像アイコンにも適用）*/
    width: 16vw;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;    /*text-align: center;*/
}
/*オリジナル アイコンの大きさを一定にするため追加*/
.bottomnav-list li img {
    width: 80px;
    height: auto;
    margin-top: 8px;
}

.hamburger-menu {
    display: inline-block;
    position: relative;
	/*ハンバーガー3本の領域の広さ*/
    width: 30px;
    height: 100%;
}
.hamburger-menu::before, .hamburger-menu::after {
    content: "";
    background: #999999; /*ハンバーガーマークの中央の棒*/
    position: absolute;
	
	/*ハンバーガー3本の表示位置（デフォは領域の上下中央になってる）*/
    right: 0;
    left: 15px;/*ハンバーガー3本がどうしても左に寄るので、ここで右に微調整した。他に影響あるかも。*/
    top: 0;
    bottom: 0;
    margin: auto;
	
    width: 100%;/*ハンバーガー3本の横幅*/
    height: 3px;/*ハンバーガー3本の各太さ*/
    -webkit-transition: all 300ms;
    transition: all 300ms;
}
/*ハンバーガーマークの一番上の棒*/
.hamburger-menu::before {
    -webkit-box-shadow: 0px -10px 0px #999999;
            box-shadow: 0px -10px 0px #999999;
}
/*ハンバーガーマークの一番下の棒*/
.hamburger-menu::after {
    -webkit-box-shadow: 0px 10px 0px #999999;
            box-shadow: 0px 10px 0px #999999;
}

/* 画像のアイコン使っているので関係ない
.blogicon-home,
.blogicon-chevron-up,
.blogicon-chevron-down,
.blogicon-search {
    font-size: 30px;
}
*/

/*--------------------------
 ここからは768以上　関係と思う
----------------------------*/
/*
@media (min-width: 768px) {
    .bottom-nav {
        left: inherit;
        right: 0;
        width: auto;
        background: none;
        height: 8vw;
    }
    #search-up,
    #hamburger-menu {
        display: none;
    }
    .menu-overlay {
        position: absolute;
        top: 50px;
        right: 50px;
        bottom: inherit;
        left: inherit;
        width: auto;
        padding: 0;
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        height: auto;
        overflow: inherit;
        background: none;
    }
    .menu-overlay:hover .menu-body {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        opacity: 1;
    }
    .menu-title {
        background: #bc9f9f;
        color: white;
        cursor: pointer;
        padding: 2px 10px;
        border-radius: 5px;
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .menu-body {
        position: absolute;
        right: 0;
        background: #bc9f9f;
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: top;
                transform-origin: top;
        opacity: 0;
        -webkit-transition: opacity .3s, -webkit-transform .5s;
        transition: opacity .3s, -webkit-transform .5s;
        transition: transform .5s, opacity .3s;
        transition: transform .5s, opacity .3s, -webkit-transform .5s;
        width: 300px;
        padding: 20px;
        border-radius: 5px;
    }
    .menu-body a {
        color: white;
        display: block;
        -webkit-transition: all .5s;
        transition: all .5s;
        padding: 10px;
        margin-bottom: 0;
        border-bottom: none;
    }
    .menu-body a:hover {
        text-decoration: none;
        background: #725050;
    }
    .bottomnav-list li {
        width: 8vw;
        margin: 0 .5vw;
        text-align: center;
        border-radius: 50%;
        background: -webkit-gradient(linear, left top, left bottom, from(#bc9f9f), to(#362626));
        background: linear-gradient(to bottom, #bc9f9f, #362626);
        opacity: .7;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }
    .bottomnav-list li:hover {
        cursor: pointer;
        opacity: 1;
    }
    .blogicon-home,
    .blogicon-chevron-up,
    .blogicon-chevron-down {
        font-size: 5vw;
    }
}
    */

