/* 右上縦専メニュー */

.menu_outer {
    width: fit-content;
    height: fit-content;
    overflow: hidden;
position: absolute;
right: 0;
margin: 0;
}

.menu_index {
    width: 250px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    background-color: white;
    border: solid 1px;
    cursor: pointer;
}

.toggle_btn {
    position: relative;
    width: 1rem;
    height: 1rem;
}

.toggle_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: black;
    transition: .2s;
}

.toggle_btn.active::before {
    transform: translateX(-10px);
    opacity: 0;
}

.toggle_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: black;
    transform: rotate(90deg);
    transition: .2s;
}

.toggle_btn.active::after {
    transform: rotate(0deg);
}

.menu_container {
    width: 250px;
    border: solid 1px;
    border-top: none;
    background-color: lightcyan;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: .4s;
}

.menu_container li {
    padding: 10px;
    cursor: pointer;
}

.menu_container li:hover {
    background-color: darkcyan;
    color: white;
}
/* 右上縦専メニュー ここまで */

/* フッターメニュー */
 ul.bottom-menu {
    position: fixed;
    left:0;
    bottom:0;
    width: 100%;
    height:50px;/*高さ*/
    margin:0;
    padding:0px 0px 0px 0px;
    background: rgba(44,150,255, 0.9);
    border-top:2px solid #f5f5f5;/*バーの上の線*/
    border-bottom:2px solid #f5f5f5;/*バーの下の線*/
    z-index:10;
}
ul.bottom-menu li {
    float:left;
    width:20%;
    background: rgba(44,150,255, 0.9);
    list-style-type:none;
    text-align:center;
    font-size:20px;/*アイコンのサイズ*/
}

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

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

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

.mini-text{
font-size:12px;
}

.text-color{
color: #f5f5f5;
}
/* ここまで */


/* 縦専フッター　親*/
.footer {
height:;
margin: 0;
padding:;
text-align: center;
width: 100%;
clear: both;
background-color: ;
}

/* 縦専フッター　親 ここまで*/

/* 横専フッターflex */

.footer-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex__item {
display: block;
width: 45%;
margin-bottom: 5px;
font-size: 1.4rem;
line-height: 100%;
color: #686868;
margin: 0px;
text-align: center;
}

/* 横専フッターflex ここまで */

/* 古物商許可 */

.cyudai {
font-size: 16px;
line-height: 42px;
color: #686868;
margin: 0px 0px 0px 0px;
padding: 10px 0px 10px 0px;
text-align: ;
text-decoration: none;
letter-spacing: px;
}

/* ぱるはる文字 */

.dai {
font-size: 22px;
line-height:100%;
color: #686868;
margin: 0px 0px 0px 0px;
padding: 10px 0px 10px 0px;
text-align: ;
text-decoration: none;
}

