@charset "utf-8";

.pwa_cv_area{
    --btn-color: var(--blue);
    display: block;
    position: fixed;
    left: 0;
    bottom: 30%;
    z-index: 10;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}
.pwa_cv_area.start {
    opacity: 1;
    visibility: visible;
}
.pwa_cv_area.end {
    --btn-color: var(--red);
}
.pwa_cv{
    background: var(--light);
    padding: 16px 1px 1px;
    border: 3px solid;
    border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%) 1;
}
.pwa_cv_txt{
    text-align: center;
    font-size: 1.2rem;
    padding: 0 5px 8px;
}
.next_txt{
    display: block;
    padding: 0 12px 0;
    font-size: .9rem;
    font-weight: 300;
}
.pwa_cv_btn a{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    text-align: center;
    padding: 16px 8px;
    width: 248px;
    margin: auto;
    transition: .3s;
    font-size:1.6rem;
    line-height: 1;
    color: var(--light);
    background: var(--dark);
}
.pwa_cv_btn a.disabled {
    opacity: 0.5;
}
.pwa_cv_btn a::after{
    content: '';
    width: 16px;
    height: 4px;
    border-bottom: solid 1px var(--light);
    border-right: solid 1px var(--light);
    transform: skew(45deg);
    position: absolute;
    top: 46%;
    right: 16px;
    transition: .3s;
}
.pwa_cv_btn a:hover{opacity: .7;}
.pwa_cv_btn a:hover::after{
  right: 12px;
}
.pwa_cv_btn a span.lato{
    font-weight: 300;
    font-size: 1.2rem;
    padding-right: 8px;
}
.pwa_cv_btn a span.ja{
    font-size: 1.5rem;
        padding-right: 24px;
}
.pwa_cv_indicator{
    --counter-current: 0;
    --counter-max: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% * var(--counter-current) / var(--counter-max));
    height: 20px;
    margin-top: 16px;
    padding: 4px;
    background: var(--lblue);
    color: var(--light);
    font-family: "Lato", sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    transition: width 0.5s;
}

/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 1250px) {
.pwa_cv_area{
    display: block;
    bottom: 80px;
    left: 10px;
    margin: 24px auto 0;
    width: calc(100% - 90px);
}
.pwa_cv{
    box-shadow: 0px 0px 5px -2px #cccccc;
    padding: 5px 1px 1px;
}
.pwa_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pwa_cv_txt{
    flex-basis: 50%;
    text-align: left;
    font-size: 1.0rem;
    line-height: 1.4;
}
.pwa_cv_btn{
    flex-basis: 50%;
    position: relative;
    margin-right: 4px;
}
.pwa_cv_btn a{
    width: 100%;
    display: block;
    padding: 16px 4px;
}
.pwa_cv_btn a span{
    display: block;
    text-align: center;
}
.pwa_cv_btn a span.lato{
    padding: 0;
}
.pwa_cv_btn a span.ja {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.3;
}
.pwa_cv_btn a::after{
    display: none;
}
.next_txt{
    position: absolute;
    left: 1px; top: 1px;
    color: var(--blue);
    background: var(--light);
    z-index: 1;
    padding: 0 5px 0;
    font-size: .8rem;
}
.pwa_cv_indicator{
    margin-top: 5px;
    height: 16px;
}
.pwa_cv_indicator::before{
        height: 16px;
        line-height: 1.4;
}
}

