
/* ボトムメニュー */

.bottomMenu {
    position: fixed;
    left: 0;
    bottom: 0;

    display: none;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;

    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 9999;
    overflow: hidden;
    background-color: darkgray;
}

.bottomMenu--item {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 50%;
}

.bottomMenu--textBox {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
}

.bottomMenu--line {
    background-color: var(--green-of-line);
}

.bottomMenu--tel {
    background-color: var(--secondary-bland-color);
}

.bottomMenu--line .bottomMenu--text {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: bold;
    position: relative;
    line-height: 1;
    /* right: 100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; */
}

.bottomMenu--line .bottomMenu--text::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    background-image: url(/img/LINE_Brand_icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bottomMenu--tel .bottomMenu--text {
    color: var(--black);
    font-size: 4.1rem;
    font-weight: bold;
    position: relative;
    line-height: 1;
}

.bottomMenu--tel .bottomMenu--text::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 48px;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    background-image: url(/img/icon-smartphone-black.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .bottomMenu {
        display: block;
    }

    .bottomMenu--textBox {
        padding: 8px 0;
        text-align: center;
    }
    
    .bottomMenu--line .bottomMenu--text {
        font-size: 2.8rem;
        margin-left: 32px;
    }

    .bottomMenu--line .bottomMenu--text::before {
        width: 28px;
        height: 28px;
    }

    .bottomMenu--tel .bottomMenu--text {
        font-size: 2.8rem;
        margin-left: 32px;
        /* left: 38px; */
    }

    .bottomMenu--tel .bottomMenu--text::before {
        width: 24px;
        height: 32px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .bottomMenu {
        display: block;
    }

    .bottomMenu--textBox {
        padding: 8px 0;
        text-align: center;
    }

    .bottomMenu--line .bottomMenu--text {
        font-size: 2rem;
        margin-left: 24px;
    }

    .bottomMenu--line .bottomMenu--text::before {
        width: 24px;
        height: 24px;
        left: -28px;
    }
    
    .bottomMenu--tel .bottomMenu--text {
        font-size: 2rem;
        margin-left: 24px;
    }

    .bottomMenu--tel .bottomMenu--text::before {
        width: 20px;
        height: 32px;
        left: -24px;
    }
}