/*========================
　smartphone　bottom menu
　========================*/


.mini-text{font-size:20pt;}/*文字大きさ*/

ul.bottom-menu {
    position: fixed;
    left:0;
    bottom:0;
    width: 100%;
    height:170px;/*高さ*/
    margin:0;
    padding:0;
    background-color:#fff;/*背景色*/
    border-top:2px solid #808080;/*バーの上の線*/
    border-bottom:2px solid #808080;/*バーの下の線*/
    z-index:30;}

ul.bottom-menu li {
    float:left;
    width:25%;
    background-color:#fff;/*背景色*/
    list-style-type:none;
    text-align:center;
    font-size:25px;/*アイコンのサイズ*/}

img.bottom-menu {
    width: 38%;
    height: 38%;
}

.bottom-menu li a {
    display: block;
    color:#333;/*アイコン＆文字の色*/
    padding-top:20px;
    padding-bottom:5px;
    line-height:10px;
    text-decoration:none;}

.bottom-menu li a:hover {
    color:#333;/*マウスオーバー時の色*/}

/* === 展開メニュー === */

ul.menu-second-level {
    visibility: hidden;
    opacity: 0;
    z-index:1;}

ul.menu-second-level li a{
    border-top:1px dashed #a9a9a9;/*展開の枠点線*/
        font-size:36pt;/*展開メニューの文字サイズ*/
        line-height:100px;/*文字の縦幅*/}

.menu-second-level li a:hover {
    height:100%;
    background:#B0E0E6;/*マウスオーバーの色*/}

li.menu-width-max ul.menu-second-level {
    position: absolute;
    bottom: 172px;/*高さ*/
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding:0;}

li.menu-width-max:hover ul.menu-second-level {
    bottom: 172px;/*高さ*/
    visibility: visible;
    opacity: 1;}

li.menu-width-max ul.menu-second-level li {
    float: left;
    width: 100%;
    border: none;}

/*スマホ横画面の際はボトムメニューは表示しない*/
@media(orientation:landscape){
.bottom-menu{display:none; }
}

/*PC表示の際はボトムメニューは表示しない*/
@media(min-width: 999px){
    .bottom-menu{display:none; }
}