ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    /*リンクの下線を消す*/
}

.main {
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0;
    padding-bottom: calc((var(--vh, 1vh)));
}

.footer_area {
    position: fixed;
    z-index: 10000;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    /*fixedの処理をgpu側に渡す処理*/
}

.footer_area .footer_nav_parent {
    height: 50px;
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    margin: 0;
    padding: 5px 0 5px 0;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    padding-bottom: calc( 5px + env(safe-area-inset-bottom));
    /*iPhoneX対応*/
}

.footer_nav_item {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer_size img {
    height: 33px;
    width: 40px;
}

.footer_nav_Characters {
    margin: 0px;
    padding-top: 2px;
    font-size: 10px;
    color: #999999;
    text-align: center;
}

.hamburger_outer {
    position: fixed;
    z-index: 1000;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    background-color: #659913;
    display: none;
}

.hamburger_inner {
    position: relative;
    z-index: 1200;
    height: calc(100vh - 60px);
    /* Fallback */
    /*
  height: calc((var(--vh, 1vh) * 100) - 60px);
  */
    height: calc((var(--vh, 1vh)));
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    /*perfect-scrollbarが使えなくなったらこれで代替*/
}

.modal_open {
    display: block;
}

.menu-trigger,
.menu-trigger span {
    display: block;
    transition: all .3s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 48px;
    height: 33px;
    display: flex;
    justify-content: center;
}

.menu-trigger span {
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: #999999;
    border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
    top: 3px;
}

.menu-trigger span:nth-of-type(2) {
    top: 15px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 3px;
}


/* style */

.wrapper {
    width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.sumaho-box {
    padding: 50px 12px 50px 12px;
    margin: 0;
}

.hamburger_list_head {
    display: flex;
    justify-content: center;
    color: #f8f8f8;
    font-size: 2.4rem;
    line-height: 1;
}

.hamburger_list_head_ruby {
    display: flex;
    justify-content: center;
    color: #f8f8f8;
    font-size: 1rem;
    line-height: 1;
    margin-top: .4em;
    margin-bottom: 0;
    font-weight: 700;
}

.sumaho-box li {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin: 0;
    background-color: #659913;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sumaho-box2 span {
    font-size: 25px;
    color: #f8f8f8;
}

.sumaho-box2 img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
}

#height_search {
    height: 140%;
}