/* Fixed CTA Nav */
.fix-nav-box {
    position: fixed;
    right: 110px;
    bottom: 16px;
    z-index: 1;
    width: 387px;
    max-width: calc(100vw - 32px);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.fix-nav-list {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fix-nav-list>li {
    position: relative;
    flex: 1 1 50%;
}

.fix-nav-list>li+li::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 1px;
    background-color: #b5bbb5;
}

.fix-nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 62px;
    padding: 0 16px;
    color: #73b1bc;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.fix-nav-list a:hover {
    opacity: 1;
    background-color: #f5f5f5;
}

.fix-nav-list a i {
    display: inline-block;
    line-height: 1;
    color: inherit;
    margin-top: 4px;
}

.fix-nav-list-arrow::before,
.fix-nav-list-blank::before {
    display: block;
    font-family: "Material Icons";
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.fix-nav-list-arrow::before {
    content: "\e5cc";
}

.fix-nav-list-blank::before {
    content: "\e89e";
}

@media screen and (max-width: 768px) {
    .fix-nav-box {
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: auto;
        max-width: none;
    }

    .fix-nav-list a {
        min-height: 60px;
        padding: 0 10px;
        font-size: 1.3rem;
    }

    .fix-nav-list-arrow::before,
    .fix-nav-list-blank::before {
        font-size: 1.8rem;
    }

    .fix-nav-list a i {
        margin-top: 3px;
    }

    .main-share-link {
        display: none;
    }

    .page-top.active {
        z-index: 1;
        bottom: 80px;
    }
}

