.fixedDl {
    position: fixed;
    z-index: 1001;
    bottom: 0;
    left: 0;
    width: 540px;
}

.fixedDl_btn {
    position: relative;
    z-index: 1;
    display: block;
    width: 42px;
    height: 38px;
    border: none;
    background: #4e8064;
    cursor: pointer;
    outline: none;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.fixedDl_btn::before {
    position: absolute;
    z-index: 1;
    display: block;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-bottom: none;
    border-left: none;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    content: '';
    inset: 0;
    transform: translateY(3px) rotate(315deg);
    transition-duration: 0.3s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
}

.fixedDl_btn.isOpen::before {
    transform: translateY(-1px) rotate(135deg);
}

.fixedDl_btn::after {
    content: '';
}

.fixedDl_box {
    box-sizing: content-box;
    padding: 2.5%;
    background-color: #fff;
}

.fixedDl_boxWrap {
    overflow: hidden;
    max-height: 0;
    border-top: 6px solid #4e8064;
    box-shadow: 0 6px 6px rgb(0 0 0 / 19%);
    transition-duration: 0.5s;
    transition-property: max-height;
}

.isOpen + .fixedDl_boxWrap {
    max-height: 226px;
}

.fixedDl_cols {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.fixedDl_title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    color: #2f3e36;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    font-size: 15px;
    font-weight: bold;
}

.fixedDl_title .Dl_title_st {
    color: #4e8064;
    font-size: 21px;
}

.fixedDl_title.fixedDl_title_strong {
    font-weight: 700;
}

.fixedDl_text {
    font-size: 14px;
    font-weight: bold;
}

.fixedDl_col-no1 {
    flex: 2;
}

.fixedDl_col-no2 {
    width: 80px;
    flex: 1;
    margin-left: auto;
}

.fixedDl_image > img {
    display: block;
    max-width: 180px;
}

.fixedDl_link {
    max-width: 240px;
    margin-top: 4%;
    margin-right: auto;
    margin-bottom: 0;
}

.fixedDl_link > a {
    display: flex;
    height: 41px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #d4ecdf;
    background-image: url('../img/ico_arrow_r_green.svg');
    background-position: center right 15px;
    background-repeat: no-repeat;
    background-size: 7px auto;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    color: #4e8064;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition-duration: 0.3s;
    transition-property: border-color, color;
}

.fixedDl_link > a::before {
    content: '';
}

.fixedDl_link > a::after {
    content: '';
}

@media screen and (width <= 999px) {
    .fixedDl_title {
        font-size: 12px;
    }

    .fixedDl_title .Dl_title_st {
        font-size: 18px;
    }

    .fixedDl_link > a:hover {
        border-color: rgb(0 0 0 / 20%);
    }

    .fixedDl {
        width: 100%;
        max-width: 100vw;
    }

    .fixedDl_box {
        padding: 0 2.5% 2.5%;
    }

    .isOpen + .fixedDl_boxWrap {
        max-height: 200px;
    }

    .fixedDl_text {
        margin-top: 1%;
        margin-bottom: 0;
        font-size: 11px;
        letter-spacing: -0.05em;
    }

    .fixedDl_col-no2 {
        width: 76px;
        padding-left: 5px;
        margin: auto;
    }

    .fixedDl_image > img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (width <= 470px) {
    .fixedDl_title.fixedDl_title_strong {
        display: flex;
        flex-flow: column;
        align-items: flex-start;
    }
}

@media screen and (width <= 360px) {
    .fixedDl_title {
        font-size: 11px;
        font-size: 3.25vw;
    }

    .fixedDl_title .Dl_title_st {
        font-size: 16px;
        font-size: 5vw;
    }
}
