@charset "utf-8";
.login-box input{
    height: var(--input-height);
    padding: 0 var(--input-padding);
    line-height: var(--input-height);
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    color: var(--grey-darken4);
    background-color: var(--input-bg-color);
    font-size: var(--input-font-size);
    font-weight: 400;
}

.list-caption{
    display: flex;
    align-items: center;
    gap: 0 16px;
    margin-bottom: 20px;
}
.list-caption.sm{
    margin-bottom: 16px;
}
.list-total{
    font-size: var(--txt-font-size-lg);
    font-weight: 600;
    flex-basis: 0;
    flex-grow: 1;
}
.list-total>span{
    color: var(--secondary-base);
}
.list-caption .list-caption-ttl-w{
    flex-basis: 0;
    flex-grow: 1;
}
.list-caption .list-caption-ttl-w>strong{
    display: block;
    font-size: var(--txt-font-size-lg);
    font-weight: 700;
    line-height: 1.2;
}
.list-caption .list-caption-ttl-w>p{
    font-size: var(--txt-font-size);
    color: var(--grey-base);
    line-height: 1.2;
    margin-top: 8px;
}
.list-caption .list-caption-ttl{
    flex-basis: 0;
    flex-grow: 1;
    font-size: var(--tit-font-size);
    display: block;
    font-weight: 500;
    line-height: 1.2;
}
.list-caption .list-caption-ttl.sm{
    font-size: var(--tit-font-size-sm);
}
.list-caption .list-caption-right{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.list-caption.sm .list-caption-right{
    gap: 0 8px;
}
.list-caption.sm .list-caption-right select.input-primary{
    width: 220px;
}
.list-caption.sm .list-caption-right select.input-primary:last-child:not(:first-child){
    width: 160px;
}
.board-style-btn-w{
    display: flex;
    margin: -4px 0;
}
.board-style-btn-w .board-style-btn{
    width: calc(var(--icon-size) + 8px);
    height: calc(var(--icon-size) + 8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: var(--transition);
}
.board-style-btn-w .board-style-btn.active>.icon{
    background-color: var(--primary-base);
}

.page-section.tab-only{
    margin-bottom: -29px;
}
form + .page-section,
.page-section + .page-section{
    margin-top: 56px;
}
form + .page-section.sm,
.page-section + .page-section.sm{
    margin-top: 40px;
}
form + .page-section.xs,
.page-section + .page-section.xs{
    margin-top: 32px;
}
@media screen and (min-width: 1241px){
    .board-style-btn-w .board-style-btn:hover{
        background-color: var(--primary-lighten4);
    }
}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .list-caption{
        margin-bottom: 16px;
    }
    .list-caption.mo{
        display: flex !important;
    }
    .board-style-btn-w{
        display: none;
    }
    form + .page-section,
    .page-section + .page-section{
        margin-top: 40px;
    }
    form + .page-section.sm,
    .page-section + .page-section.sm{
        margin-top: 30px;
    }
    form + .page-section.xs,
    .page-section + .page-section.xs{
        margin-top: 30px;
    }
}
@media screen and (max-width:480px){
    .list-caption.responsive{
        display: block;
    }
    .list-caption.responsive .list-caption-right{
        margin-top: 8px;
    }
    .list-caption.sm.responsive .list-caption-right select.input-primary{
        margin-left: auto;
        width: 100%;
    }
    .list-caption.sm .list-caption-right select.input-primary:last-child:not(:first-child){
        width: 100%;
    }
}
@media screen and (max-width:420px){}

/* 교육신청 */
.edu-select-area{
    display: flex;
    gap: 0 20px;
}
.edu-select-area .edu-select-w{
    flex: 0 0 auto;
    width: 71%;
    max-width: 700px;
}
.edu-selected-area{
    width: 100%;
    max-width: calc(29% - 20px);
}
.edu-select-head{
    margin-bottom: 16px;
}
.edu-select-head .list-caption-right .search-primary{
    flex-basis: 0;
    flex-grow: 1;
    max-width: 400px;
}
.edu-select-head .list-caption .list-caption-ttl{
    flex: 0 0 auto;
}
.edu-select-head .list-caption-right{
    flex-basis: 0;
    flex-grow: 1;
    justify-content: flex-end;
}
.edu-select{
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
.edu-select>li{
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    padding: 8px;
}
.edu-select-item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 16px;
    transition: var(--transition);
}
.edu-select-item::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    border: solid var(--border-color);
    border-width: 1px;
    border-radius: inherit;
    transition: all .25s var(--timing-function), border-width 0s;
}
.edu-select-item:has(input[type="checkbox"]:checked){
    background-color: var(--primary-lighten5);
}
.edu-select-item:has(input[type="checkbox"]:checked)::before{
    border-color: var(--primary-base);
    border-width: 2px;
}
.edu-select-item .edu-select-item-head{
    margin-bottom: 8px;
}
.edu-select-item .edu-select-item-head .control-primary.type2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="checkbox"] + label,
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="radio"] + label{
    width: 100%;
    height: 100%;
}
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="checkbox"] + label::before,
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="radio"] + label::before{
    display: none;
}
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="checkbox"] + label::after,
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="radio"] + label::after{
    top: 21px;
    left: unset;
    right: 20px;
    transform: translate(0, 0);
    background-color: transparent;
}
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="checkbox"]:checked + label::after,
.edu-select-item .edu-select-item-head .control-primary.type2 input[type="radio"]:checked + label::after{
    background-color: var(--primary-base);
}
.edu-select-item .edu-select-item-ttl{
    width: 100%;
    display: block;
    font-size: var(--txt-font-size-lg);
    font-weight: 600;
    color: var(--grey-darken2);
    line-height: 1.2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.edu-select-item .edu-select-item-text{
    font-size: var(--txt-font-size);
    color: var(--grey-base);
    margin-top: 4px;
    line-height: 1.2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    height: calc(var(--txt-font-size) * 2.4);
}
.edu-select-item .edu-select-item-foot{
    margin-top: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 16px;
    height: calc(var(--btn-height-sm));
}
.edu-select-item .edu-select-item-foot .edu-select-item-time{
    font-size: var(--txt-font-size-sm);
    color: var(--grey-base);
}
.edu-select-item .edu-select-item-foot .action{
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
    transition: all 0s, background-color .25s var(--timing-function);
}
.edu-selected-area>*{
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}
.edu-selected-area>* + *{
    margin-top: 20px;
}
.edu-selected-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.edu-selected-head>strong{
    font-size: var(--tit-font-size-sm);
    font-weight: 700;
    color: var(--primary-base);
    line-height: 1.5;
}
.edu-selected{
    display: block;
    height: 186px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 8px;
    margin-right: -8px;
}
.edu-selected::-webkit-scrollbar{
    width: 4px;
}
.edu-selected::-webkit-scrollbar-track{
    background-color: var(--grey-lighten4);
    border-radius: 999px;
}
.edu-selected::-webkit-scrollbar-thumb{
    background-color: var(--primary-base);
    border-radius: 999px;
}
.edu-selected::-webkit-scrollbar-button{
    display: none;
}
.edu-selected>li{
    display: flex;
    align-items: center;
    gap: 0 6px;
    padding: 8px 6px 8px 8px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--primary-lighten5);
}
.edu-selected>li + li{
    margin-top: 8px;
}
.edu-selected>li>span{
    width: 100%;
    display: block;
    font-size: var(--txt-font-size-sm);
    font-weight: 500;
    color: var(--grey-darken2);
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.edu-selected-w.secondary .edu-selected>li>span{
    max-width: calc(100% - 6px - var(--icon-size));
}
.edu-selected-w.secondary .edu-selected>li .delete-btn{
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    background-color: transparent;
    background-image: url(../image/icon/icon-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--icon-size-sm) auto;
    transition: var(--transition);
}
.edu-selected-count-area{
    overflow: hidden;
    padding: 0;
    line-height: 1.5;
}
.edu-selected-count-w{
    background-color: var(--grey-lighten5);
    padding: 20px;
}
.edu-selected-count{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 8px;
    font-weight: 700;
    font-size: var(--txt-font-size);
}
.edu-selected-count:not(.total) strong,
.edu-selected-count:not(.total) span{
    color: var(--primary-base);
}
.edu-selected-count.total{
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: var(--txt-font-size-lg);
}
.edu-selected-count + .edu-selected-count{
    margin-top: 20px;
}
.edu-selected-count-action{
    padding: 20px;
    border-top: 1px solid var(--border-color);
}
.edu-selected-count-action .action + .action{
    margin-top: 8px;
}
@media screen and (min-width: 1241px){
    .edu-select-item:has(.control-primary.type2:hover)::before{
        border-color: var(--primary-base);
        border-width: 2px;
    }
    .edu-selected-w.secondary .edu-selected>li .delete-btn:hover{
        background-color: var(--danger-lighten5);
    }
}
@media screen and (min-width: 768px){
    .edu-select.list>li{
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .edu-select.list .edu-select-item-contents{
        padding-right: 130px;
    }
    .edu-select.list .edu-select-item .edu-select-item-text{
        -webkit-line-clamp: 1;
        height: calc(var(--txt-font-size) * 1.2);
    }
    .edu-select.list .edu-select-item .edu-select-item-foot{
        margin-top: 4px;
        height: auto;
        position: static;
        padding-right: 130px;
    }
    .edu-select.list .edu-select-item .edu-select-item-foot .action{
        top: calc(50% + 17px);
        transform: translateY(-50%);
        right: 16px;
    }
}
@media screen and (max-width:1000px){
    .edu-select-head .list-caption{
        display: block;
    }
    .edu-select-head .list-caption-right{
        margin-top: 12px;
    }
    .edu-select-head .list-caption-right .search-primary{
        max-width: 100%;
    }
}
@media screen and (max-width:767px){
    html:has(.mo-edu-selected) .footer{
        padding-bottom: 240px;
    }
    .edu-select-area{
        width: 100%;
    }
    .edu-select-area .edu-select-w{
        width: 100%;
    }
    .edu-select-head{
        border-radius: 20px;
        padding: 20px 16px;
        border: 1px solid var(--border-color);
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .edu-select-head .list-caption{
        margin-bottom: 0;
        width: 100%;
        order: 1;
    }
    .edu-select-head .list-caption .list-caption-ttl{
        display: none;
    }
    .edu-select-head .list-caption-right{
        margin-top: 0;
    }
    .edu-select-head .tab-primary{
        flex-wrap: wrap;
        gap: 8px;
    }
    .edu-select-head .tab-primary::before{
        display: none;
    }
    .edu-select-head .tab-primary>li .tab-btn{
        border-radius: 999px;
        height: var(--btn-height-sm);
        padding: 0 12px;
        border: 1px solid var(--border-color);
        font-size: var(--txt-font-size);
        font-weight: 400;
        color: var(--grey-base);
    }
    .edu-select-head .tab-primary>li .tab-btn.active{
        background-color: var(--secondary-base);
        border-color: var(--secondary-base);
        color: #fff;
        font-weight: 700;
    }
    .edu-select-head .tab-primary>li .tab-btn.active>span{
        color: #fff;
    }
    .edu-select-head .tab-primary>li .tab-btn::after{
        display: none;
    }
    .edu-selected-area{
        display: none;
    }
    .edu-select{
        margin: -5px;
    }
    .edu-select>li{
        padding: 5px;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .edu-select-item .edu-select-item-head .control-primary.type2 input[type="checkbox"] + label::after,
    .edu-select-item .edu-select-item-head .control-primary.type2 input[type="radio"] + label::after {
        top: 17px;
    }
    .edu-select-item .edu-select-item-foot{
        margin-top: 12px;
    }
    .edu-selected-head{
        margin-bottom: 12px;
    }
    .edu-selected-head>strong{
        font-size: var(--txt-font-size-lg);
    }
    .edu-selected-w + .edu-selected-w{
        margin-top: 20px;
    }
    .edu-selected{
        padding-right: 0;
        margin-right: 0;
        height: auto;
    }
    .mo-edu-selected-count{
        display: flex;
        flex-wrap: wrap;
        gap: 8px 17px;
        padding-right: 40px;
    }
    .mo-edu-selected-count>li{
        flex: 0 0 auto;
        display: block;
        position: relative;
        font-weight: 700;
    }
    .mo-edu-selected-count>li:not(:last-child)::after{
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 24px;
        background-color: var(--border-color);
        top: 50%;
        right: -9px;
        transform: translateY(-50%);
    }
    .mo-edu-selected-count>li>span{
        color: var(--primary-base);
    }
}
@media screen and (max-width:480px){
    .mo-edu-selected-count{
        gap: 8px 11px;
    }
    .mo-edu-selected-count>li:not(:last-child)::after{
        height: 12px;
        right: -6px;
    }
}
@media screen and (max-width:420px){}

.filter-foot{
    background-color: var(--grey-lighten4);
}
.filter-result{
    display: flex;
}
.filter-result>strong{
    font-size: var(--txt-font-size);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0 4px;
    min-width: 112px;
    height: var(--btn-height-sm);
    color: var(--grey-darken4);
}
.filter-result>strong>span{
    color: var(--primary-base);
}
.filter-foot-action{
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 0 8px;
    border-top: 1px solid var(--border-color);
}

.filter-head{
    display: none;
    align-items: center;
    gap: 0 8px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}
.filter-head>strong{
    display: block;
    font-size: var(--tit-font-size-sm);
    font-weight: 700;
}
.filter-head .filter-close{
    width: var(--btn-height);
    height: var(--btn-height);
    border-radius: 50%;
    background-color: transparent;
    background-image: url(../image/icon/icon-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--icon-size);
    margin: -11px;
    margin-left: auto;
}

.filter-w .list-caption>.list-caption-right{
    display: none;
}
.mo-filter-foot{
    display: none;
    margin-top: 20px;
}

/* 연간일정 안내 */
@media screen and (min-width:768px){
    .filter-select-w{
        display: flex;
    }
    .filter-select>strong{
        font-size: var(--txt-font-size);
        font-weight: 700;
        color: var(--grey-darken4);
        height: var(--btn-height-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--primary-lighten4);
    }
    .filter-select-w .filter-select{
        width: 50%;
    }
    .filter-select-w .filter-select + .filter-select>strong{
        border-left: 1px solid var(--primary-accent);
    }
    .filter-select-w .filter-select + .filter-select>.control-btn-w{
        border-left: 1px solid var(--border-color);
    }
    .filter-select .control-btn-w{
        gap: 0;
        height: 260px;
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .filter-select .control-btn{
        width: 100%;
    }
    .filter-select .control-btn + .control-btn>p{
        border-top: 1px solid var(--border-color);
    }
    .filter-select .control-btn>p{
        width: 100%;
        padding: 12px 16px;
        min-height: 52px;
        justify-content: flex-start;
        text-align: left;
        border-radius: 0;
        border: 0;
    }
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    html:has(.filter.active){
        overflow: hidden;
    }
    .page-section.filter-w + .page-section{
        margin-top: 20px;
    }
    .filter-head{
        display: flex;
        border-bottom: 1px solid var(--border-color);
    }
    .mo-filter-foot{
        display: block;
    }
    .filter-w .list-caption>.list-caption-right{
        display: flex;
    }
    .filter{
        position: fixed;
        bottom: 0;
        left: 5%;
        width: 90%;
        border-radius: 20px 20px 0 0;
        background-color: #fff;
        padding: 20px 16px;
        z-index: 2000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, .16);
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .filter.active{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .filter .basic-table-2019.type-C.renewal:not(.location){
        padding: 0;
        border-radius: 0;
        border: 0;
        padding-right: 8px;
        margin-right: -8px;
        max-height: calc(100vh - 240px);
        overflow-x: hidden;
        overflow-y: auto;
    }
    .filter>table::-webkit-scrollbar{
        width: 4px;
    }
    .filter>table::-webkit-scrollbar-track{
        background-color: var(--grey-lighten4);
        border-radius: 999px;
    }
    .filter>table::-webkit-scrollbar-thumb{
        background-color: var(--primary-base);
        border-radius: 999px;
    }
    .filter>table::-webkit-scrollbar-button{
        display: none;
    }
    .filter-select + .filter-select{
        margin-top: 16px;
    }
    .filter-select.default{
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }
    .filter-select:not(.default)>strong{
        display: block;
        font-size: var(--txt-font-size);
        font-weight: 700;
        margin-bottom: 8px;
    }
    .filter-select.default>strong{
        font-size: var(--txt-font-size);
        font-weight: 700;
        color: var(--grey-darken4);
        height: var(--btn-height-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--primary-lighten4);
    }
    .filter-select.default .control-btn-w{
        gap: 0;
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .filter-select.default .control-btn{
        width: 100%;
    }
    .filter-select.default .control-btn + .control-btn>p{
        border-top: 1px solid var(--border-color);
    }
    .filter-select.default .control-btn>p{
        width: 100%;
        padding: 12px 16px;
        min-height: 48px;
        justify-content: flex-start;
        text-align: left;
        border-radius: 0;
        border: 0;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.blank-area,
.loading-area{
    padding: 80px 0;
    text-align: center;
    line-height: 1.5;
}
.blank-area .icon,
.loading-area .icon{
    margin: 0 auto 20px;
}
.blank-area p{
    margin-top: 8px;
}
.loading-area .icon-loading-inner{
    animation: rotate 2.4s infinite linear;
}
.done-area{
    text-align: center;
    margin-top: 32px;
}
.done-area>.icon{
    margin: 0 auto 20px;
}
.done-area>strong{
    display: block;
    line-height: 1.2;
    font-size: var(--tit-font-size);
    font-weight: 600;
}
.done-area>p{
    font-size: var(--txt-font-size);
    color: var(--grey-base);
    line-height: 1.5;
    margin-top: 8px;
}
.done-area>p.lg{
    font-size: var(--tit-font-size-sm);
    color: var(--grey-darken4);
    font-weight: 600;
}
.done-area.lg{
    padding: 80px 0;
    margin-bottom: 0;
}
.done-area.lg>strong{
    font-weight: 600;
}
@keyframes rotate{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .blank-area,
    .loading-area{
        padding: 40px 0;
    }
    .blank-area .icon
    .loading-area .icon{
        margin: 0 auto 16px;
    }
    .done-area>.icon{
        margin: 0 auto 16px;
    }
    .done-area.lg{
        padding: 40px 0;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.basic-table-2019 [class^='btn'].direction-action{
    padding: 0 20px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 4px;
    line-height: 1.2;
    width: fit-content;
    margin: 0 0 8px 0;
    font-size: 13px;
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .type_accordion .accor_btn{
        padding: 10px 120px 10px 15px;
        font-size: 14px;
        line-height: 1.2;
    }
    .basic-table-2019.type-C.location tr th:first-child{
        width: 80px;
    }
    .type_accordion .accor_howtocome{
        top: 5px;
    }
    .type_accordion .accor_cont{
        padding: 10px;
    }
}
@media screen and (max-width:480px){
    .basic-table-2019.type-C.location,
    .basic-table-2019.type-C.location tbody,
    .basic-table-2019.type-C.location tr,
    .basic-table-2019.type-C.location th,
    .basic-table-2019.type-C.location td{
        display: block;
        width: 100%;
        height: auto;
    }
    .basic-table-2019.type-C.location tr th:first-child{
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width:420px){}

/* 회원 */
@media screen and (max-width:767px){
    html:has(.mo-wish-selected) .footer{
        padding-bottom: 170px;
    }
    html:has(.mo-wish-selected.sm) .footer{
        padding-bottom: 90px;
    }
    .mo-wish-selected .bottom-sheet-head{
        display: flex;
        align-items: center;
        gap: 0 8px;
    }
    .mo-wish-selected .bottom-sheet-head strong{
        font-weight: 700;
        flex-basis: 0;
        flex-grow: 1;
        display: block;
    }
    .mo-wish-selected .bottom-sheet-foot-action>.action-icon{
        flex: 0 0 auto;
    }
}

.wish-stepper{
    background-color: var(--primary-lighten5);
    display: flex;
    padding: 0 20px;
    border-radius: 30px;
    margin-bottom: 40px;
}
.wish-stepper>li{
    flex: 1 1 25%;
    width: 25%;
    max-width: 25%;
    display: block;
    padding: 20px;
    text-align: center;
    word-break: keep-all;
    line-height: 1.5;
    position: relative;
}
.wish-stepper>li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 47px;
    left: 50%;
    background-color: var(--border-color);
}
.wish-stepper>li>strong{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--tit-font-size-sm);
    font-weight: 700;
    color: var(--grey-base);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}
.wish-stepper>li>p{
    font-size: var(--txt-font-size);
    font-weight: 600;
    color: var(--grey-base);
}
.wish-stepper>li.done>strong{
    background-color: var(--grey-base);
    border-color: var(--grey-base);
    font-size: 0;
    background-image: url(../image/icon/icon-check-white.svg);
    background-size: 32px auto;
    background-position: center;
    background-repeat: no-repeat;
}
.wish-stepper>li.done:not(:last-child)::after{
    background-color: var(--grey-base);
}
.wish-stepper>li.active>strong{
    background-color: var(--primary-base);
    border-color: var(--primary-base);
    color: #fff;
}
.wish-stepper>li.active>p{
    color: var(--primary-base);
}
.wish-stepper>li.active:not(:last-child)::after{
    background-color: var(--primary-base);
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .wish-stepper{
        margin-bottom: 30px;
    }
    .wish-stepper{
        padding: 0;
    }
    .wish-stepper>li{
        padding: 20px 4px;
    }
    .wish-stepper>li:not(:last-child)::after{
        top: 39px;
    }
    .wish-stepper>li>strong{
        width: 40px;
        height: 40px;
    }
    .wish-stepper>li.done>strong{
        background-size: 24px auto;
    }
    .wish-stepper>li>p{
        font-size: 12px;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.grey-card{
    padding: 20px;
    border-radius: 10px;
    background-color: var(--grey-lighten5);
    border: 1px solid var(--border-color);
}
.hint-card{
    margin-bottom: 32px;
    line-height: 1.2;
}
.hint-card.has-action{
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.hint-card.has-action .card-contents{
    flex-basis: 0;
    flex-grow: 1;
}
.hint-card.has-action .action{
    flex: 0 0 auto;
}
.hint-card .hint-card-head{
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.hint-card .hint-card-head + *{
    margin-top: 8px;
}
.hint-card .hint-card-head .icon.lg{
    min-width: var(--icon-size-lg);
}
.hint-card .hint-card-head .hint-card-ttl{
    font-size: var(--txt-font-size-lg);
    font-weight: 700;
    color: var(--primary-base);
    display: block;
    flex-basis: 0;
    flex-grow: 1;
}
.hint-card .hint-card-contents{
    display: flex;
    align-items: flex-end;
    gap: 0 16px;
}
.hint-card .hint-card-contents>.action{
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
}
.hint-card .dot-list>li{
    line-height: 1.2;
}

.wish-selected-count{
    display: flex;
    align-items: center;
    gap: 0 17px;
}
.wish-selected-count>li{
    display: block;
    position: relative;
    font-size: var(--txt-font-size-lg);
    color: var(--grey-darken2);
    font-weight: 600;
}
.wish-selected-count>li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}
.wish-selected-count>li>span{
    color: var(--secondary-base);
}
@media screen and (min-width: 768px){
    .bottom-sheet-area.wish-selected{
        display: block;
        padding: 20px;
        background-color: var(--secondary-lighten5);
        border-radius: 8px;
        border: 1px solid var(--border-color);
        margin-top: 20px;
    }
    .bottom-sheet-area.wish-selected .bottom-sheet{
        display: flex;
        align-items: center;
        gap: 0 16px;
    }
    .bottom-sheet-area.wish-selected .bottom-sheet .bottom-sheet-head{
        flex-basis: 0;
        flex-grow: 1;
    }
    .bottom-sheet-area.wish-selected .bottom-sheet .bottom-sheet-foot{
        flex: 0 0 auto;
    }
}

@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .grey-card{
        padding: 20px 16px;
    }
    .hint-card{
        margin-bottom: 30px;
    }
    .hint-card.has-action{
        display: block;
    }
    .hint-card.has-action .action{
        width: 100%;
        margin-top: 8px;
    }
    .hint-card .hint-card-contents{
        display: block;
    }
    .hint-card .hint-card-contents>.action{
        width: 100%;
        margin-top: 8px;
    }
    html:has(.wish-selected) .footer{
        padding-bottom: 160px;
    }
    .wish-selected-count{
        flex-wrap: wrap;
        gap: 4px 8px;
    }
    .wish-selected-count>li{
        line-height: 1.2;
        font-size: var(--tit-font-size-sm);
        color: var(--grey-darken4);
    }
    .wish-selected-count>li:not(:last-child)::after{
        display: none;
    }
    .wish-selected-count>li:last-child{
        margin-left: auto;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.wish-add-count-w{
    display: flex;
    align-items: center;
    gap: 0 16px;
    margin-bottom: 16px;
}
.wish-add-count{
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}
.wish-add-count>li{
    display: flex;
    align-items: center;
    gap: 0 8px;
    line-height: 1.5;
}
.wish-add-count>li>span{
    font-size: var(--txt-font-size);
    color: var(--grey-darken2);
}
.wish-add-count>li>strong{
    font-size: var(--tit-font-size-sm);
    font-weight: 700;
    color: var(--primary-base);
}
.wish-add-count-w .panel-total-action{
    display: flex;
    gap: 0 8px;
}
.wish-add-head{
    display: flex;
    text-align: left;
    gap: 0 8px;
    padding: 20px 52px 20px 20px;
    width: 100%;
    background-color: #fff;
}
.wish-add-head .wish-add-index{
    flex: 0 0 auto;
    white-space: nowrap;
    display: block;
    font-size: var(--txt-font-size-lg);
    font-weight: 700;
    color: var(--primary-base);
}
.wish-add-head .wish-add-state{
    height: auto;
    display: flex;
    align-items: center;
    gap: 0 4px;
    font-size: var(--txt-font-size-lg);
    font-weight: 500;
}
.wish-add-head .wish-add-head-contents{
    flex-basis: 0;
    flex-grow: 1;
}
.wish-add-head .wish-add-tit{
    display: flex;
    gap: 0 8px;
}
.wish-add-head .wish-add-tit>strong{
    font-size: var(--txt-font-size-lg);
    font-weight: 500;
    color: var(--grey-darken2);
    transition: var(--transition);
}
.wish-add-head .wish-add-tit>.label{
    flex: 0 0 auto;
    white-space: nowrap;
    position: relative;
    top: 2px;
}
.wish-add-head .wish-add-head-contents>p{
    font-size: var(--txt-font-size-sm);
    color: var(--grey-base);
}
.wish-add-head .wish-add-paging{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    font-size: var(--txt-font-size-lg);
    font-weight: 500;
    color: var(--grey-darken2);
    white-space: nowrap;
}
.wish-add-head .wish-add-paging>span{
    color: var(--primary-base);
}
.wish-add .panel-body-inner{
    background-color: var(--grey-lighten5);
}

.tab-wish-add{
    display: flex;
    margin-bottom: 20px;
}
.tab-wish-add>li{
    flex-basis: 0;
    flex-grow: 1;
    position: relative;
}
.tab-wish-add>li + li{
    margin-left: -1px;
}
.tab-wish-add>li:has(.tab-btn.active){
    z-index: 1;
}
.tab-wish-add>li .tab-btn{
    width: 100%;
    height: var(--btn-height);
    display: flex;
    align-items: center;
    gap: 0 4px;
    padding: 0 16px 0 calc(22px + var(--icon-size));
    position: relative;
    background-color: #fff;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: var(--txt-font-size-sm);
    color: var(--grey-base);
    transition: var(--transition);
}
.tab-wish-add>li .tab-btn>strong{
    font-size: var(--txt-font-size);
    color: var(--grey-base);
    font-weight: 700;
    transition: var(--transition);
}
.tab-wish-add>li:first-child .tab-btn{
    border-radius: 8px 0 0 8px;
}
.tab-wish-add>li:last-child .tab-btn{
    border-radius: 0 8px 8px 0;
}
.tab-wish-add>li .tab-btn::before{
    content: "";
    display: block;
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    background-color: var(--grey-lighten3);
    -webkit-mask: var(--icon-check-circle) no-repeat center / contain;
    mask: var(--icon-check-circle) no-repeat center / contain;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    transition: var(--transition);
}
.tab-wish-add>li .tab-btn.active{
    z-index: 1;
    border-color: var(--secondary-base);
}
.tab-wish-add>li .tab-btn.done{
    background-color: var(--secondary-lighten5);
    color: var(--grey-darken2);
    font-weight: 500;
}
.tab-wish-add>li .tab-btn.done>span,
.tab-wish-add>li .tab-btn.done>strong{
    color: var(--secondary-base);
}
.tab-wish-add>li .tab-btn.done::before{
    background-color: var(--secondary-base);
}
.tab-wish-add>li .tab-btn.danger{
    background-color: var(--secondary-lighten5);
    color: var(--danger-base);
    font-weight: 500;
}
.tab-wish-add>li .tab-btn.danger>strong{
    color: var(--danger-base);
}
.tab-wish-add>li .tab-btn.danger::before{
    background-image: url(../image/icon/icon-close-circle-danger.svg);
    background-color: transparent;
    -webkit-mask: none;
    mask: none;
}
@media screen and (min-width: 1241px){
    .tab-wish-add>li .tab-btn:hover{
        z-index: 1;
        border-color: var(--secondary-base);
    }
}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .wish-add-count{
        justify-content: center;
    }
    .wish-add-head{
        padding: 20px 44px 20px 16px;
    }
    .wish-add-head .wish-add-tit>.label{
        display: none;
    }
    .mo-wish-add-selected{
        display: flex !important;
        align-items: center;
        padding: 0 16px;
        height: var(--btn-height);
        border-radius: 8px;
        background-color: var(--secondary-lighten5);
        border: 1px solid var(--secondary-base);
        font-size: var(--txt-font-size);
        font-weight: 700;
        color: var(--secondary-base);
        margin-bottom: 20px;
    }
    .mo-wish-selected-control{
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }
    .mo-wish-selected-control .action{
        min-width: 80px;
    }
    .mo-wish-selected-control>p{
        font-size: var(--txt-font-size);
        font-weight: 700;
        color: var(--grey-base);
    }
    .mo-wish-selected-control>p>span{
        color: var(--primary-base);
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.payment-foot-w .payment-foot-head{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px;
    padding: 20px 12px;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.5;
    text-align: right;
}
.payment-foot-w .payment-foot-head>span{
    display: block;
    font-size: var(--txt-font-size);
    color: var(--grey-darken2);
}
.payment-foot-w .payment-foot-head>p{
    font-size: var(--txt-font-size-lg);
    font-weight: 700;
}
.payment-foot-w .payment-foot-head>p>strong{
    color: var(--secondary-base);
}
.payment-foot-w .payment-foot-head.responsive>p + span{
    margin-left: 10px;
}
.payment-foot{
    margin-top: 20px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 0 16px;
    background-color: var(--secondary-lighten5);
    border: 1px solid var(--border-color);
}
.payment-foot>strong{
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    font-size: var(--txt-font-size-lg);
    font-weight: 600;
    color: var(--grey-darken2);
    line-height: 1.2;
}
.payment-foot .control-w{
    gap: 0 8px;
}
.payment-foot .control-w .control-primary input[type="checkbox"] + label>span,
.payment-foot .control-w .control-primary input[type="radio"] + label>span{
    padding: 0 16px 0 calc(var(--control-icon-size) + var(--control-gap) + 16px);
    height: var(--btn-height-xl);
    display: flex;
    align-items: center;
    gap: 0 4px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 700;
    color: var(--grey-base);
    font-size: var(--txt-font-size-lg);
    transition: var(--transition);
}
.payment-foot .control-w .control-primary input[type="checkbox"] + label::before,
.payment-foot .control-w .control-primary input[type="radio"] + label::before{
    display: none;
}
.payment-foot .control-w .control-primary input[type="checkbox"] + label::after,
.payment-foot .control-w .control-primary input[type="radio"] + label::after{
    left: 16px;
}
.payment-foot .control-w .control-primary input[type="checkbox"]:checked + label>span,
.payment-foot .control-w .control-primary input[type="radio"]:checked + label>span{
    border-color: var(--secondary-base);
    color: var(--secondary-base);
}
.payment-foot .control-w .control-primary input[type="checkbox"]:checked + label>span .icon-card-grey,
.payment-foot .control-w .control-primary input[type="radio"]:checked + label>span .icon-card-grey{
    background-image: url(../image/icon/icon-card-secondary.svg);
}
.payment-foot .control-w .control-primary input[type="checkbox"]:checked + label>span .icon-bank-grey,
.payment-foot .control-w .control-primary input[type="radio"]:checked + label>span .icon-bank-grey{
    background-image: url(../image/icon/icon-bank-secondary.svg);
}
@media screen and (min-width: 1241px){
    .payment-foot .control-w .control-primary:hover input[type="checkbox"] + label>span,
    .payment-foot .control-w .control-primary:hover input[type="radio"] + label>span{
        border-color: var(--secondary-base);
        color: var(--secondary-base);
    }
    .payment-foot .control-w .control-primary:hover input[type="checkbox"] + label>span .icon-card-grey,
    .payment-foot .control-w .control-primary:hover input[type="radio"] + label>span .icon-card-grey{
        background-image: url(../image/icon/icon-card-secondary.svg);
    }
    .payment-foot .control-w .control-primary:hover input[type="checkbox"] + label>span .icon-bank-grey,
    .payment-foot .control-w .control-primary:hover input[type="radio"] + label>span .icon-bank-grey{
        background-image: url(../image/icon/icon-bank-secondary.svg);
    }
}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .payment-foot-w .payment-foot-head{
        margin-top: 16px;
        border-radius: 20px;
        border: 1px solid var(--secondary-base);
        justify-content: space-between;
        padding: 20px 16px;
    }
    .payment-foot-w .payment-foot-head.responsive{
        display: block;
        text-align: left;
    }
    .payment-foot-w .payment-foot-head.responsive>span{
        margin-bottom: 4px;
    }
    .payment-foot-w .payment-foot-head.responsive>p + span{
        margin-left: 0;
        margin-top: 12px;
    }
    .payment-foot{
        display: block;
        padding: 20px 16px;
    }
    .payment-foot>strong{
        margin-bottom: 16px;
    }
    .payment-foot .control-w .control-primary{
        flex-basis: 0;
        flex-grow: 1;
    }
    .payment-foot .control-w .control-primary input[type="checkbox"] + label,
    .payment-foot .control-w .control-primary input[type="radio"] + label{
        width: 100%;
    }
    .payment-foot .control-w .control-primary input[type="checkbox"] + label>span,
    .payment-foot .control-w .control-primary input[type="radio"] + label>span {
        padding: 0 10px 0 calc(var(--control-icon-size) + 6px + 10px);
        font-size: var(--txt-font-size);
    }
    .payment-foot .control-w .control-primary input[type="checkbox"] + label::after,
    .payment-foot .control-w .control-primary input[type="radio"] + label::after {
        left: 10px;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.site_tab:after {
    content: '';
    display: block;
    clear: both;
}
.site_tab li {
    float: left;
    display: flex;
    width: 18.4%;
    margin-bottom: 14px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
}
.site_tab li {
    align-items: center;
}
@media (max-width: 767px) {
    .site_tab li {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .site_tab li:not(:nth-child(5n)) {
        margin-right: 2%;
    }

}
.site_tab {
    margin-bottom: 15px;
}
.site_tab.on {
    display: block;
}
@media (min-width: 768px) {
    .site_tab li {
        height: 64px;
    }
}
@media (max-width: 767px) {
    .site_tab li {
        padding: 16px 0;
    }
}
.site_tab li a {
    display: block;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    color: var(--grey-base);
    letter-spacing: -.05em;
    text-align: center;
    line-height: 1.3;
    cursor: pointer;
}
.site_tab li.active,
.site_tab li:hover {
    background: var(--primary-base);
    border-color: var(--primary-base);
}
.site_tab li.active a,
.site_tab li:hover a {
    font-weight: 700;
    color: #fff;
}

.agreement-w .control-primary input[type="checkbox"] + label>span,
.agreement-w .control-primary input[type="radio"] + label>span{
    font-size: var(--txt-font-size-lg);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
}
.agreement-total{
    padding: 20px;
    background-color: var(--primary-lighten4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 20px;
}
.agreement-w .panel-list>li + li{
    margin-top: 20px;
}
.agreement-head{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 8px;
    padding: 20px;
    background-color: #fff;
}
.agreement-head>.label{
    flex: 0 0 auto;
    white-space: nowrap;
}
.agreement-head .agreement-ttl{
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    font-size: var(--txt-font-size-lg);
    font-weight: 500;
    color: var(--grey-darken2);
    text-align: left;
}
.agreement-list .panel-body-inner{
    background-color: var(--grey-lighten5);
}
.agreement-foot{
    padding: 20px;
    border-top: 1px solid var(--border-color);
}
.agreement-contents .page-section + .page-section{
    margin-top: 20px;
}
.agreement-contents .page-section>strong{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.agreement-contents .page-section>* + *{
    margin-top: 8px;
}
.agreement-contents .basic-table-2019 td{
    font-size: var(--txt-font-size);
}
@media screen and (min-width: 1241px){
    .agreement-head:hover{
        background-color: var(--grey-lighten5);
    }
}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .agreement-total{
        padding: 16px;
        margin-bottom: 16px;
    }
    .agreement-w .panel-list>li + li{
        margin-top: 16px;
    }
    .agreement-head,
    .agreement-foot{
        padding: 16px;
    }
    .agreement-w .control-primary input[type="checkbox"] + label>span,
    .agreement-w .control-primary input[type="radio"] + label>span{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.report-state{
    display: flex;
    gap: 16px 20px;
    font-size: var(--txt-font-size);
    color: var(--grey-base);
    line-height: 1.5;
}
.report-state>.card{
    flex: 1 1 0;
}
.report-state>.card .report-state-ttl{
    display: block;
    font-weight: 700;
}
.report-state>.card .report-state-count{
    font-weight: 700;
    margin-top: 16px;
}
.report-state>.card .report-state-count>span{
    line-height: .8;
    font-size: 40px;
    color: var(--primary-base);
}
.report-state>.card .report-state-text{
    margin-top: 16px;
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .report-state{
        flex-wrap: wrap;
    }
    .report-state>.card{
        flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 8px;
    }
    .report-state>.card .report-state-ttl{
        flex: 1 1 100%;
    }
    .report-state>.card .report-state-count{
        margin-top: 0;
    }
    .report-state>.card .report-state-count>span{
        font-size: var(--tit-font-size-lg);
    }
    .report-state>.card .report-state-text{
        margin-top: 0;
        margin-left: auto;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.list-filter-w{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 20px;
    margin-bottom: 32px;
}
.list-filter{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.list-filter.full{
    flex: 1 1 100%;
}
.list-filter + .list-filter{
    margin-right: auto;
}
.list-filter>strong{
    display: block;
    font-size: var(--txt-font-size);
    white-space: nowrap;
}
.list-filter>.list-filter-contents .input-primary{
    width: 160px;
}
.list-filter>.list-filter-contents .control-btn>p{
    min-width: 84px;
}
.list-filter-w .search-secondary{
    flex-basis: 0;
    flex-grow: 1;
    max-width: 616px;
}
.list-filter-w .search-secondary.full{
    flex: 1 1 100%;
    max-width: 100%;
}
.list-filter-w .search-secondary>.action{
    min-width: 120px;
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .list-filter-w{
        margin-bottom: 20px;
    }
    .list-filter{
        flex: 1 1 100%;
    }
    .list-filter>.list-filter-contents .control-btn>p{
        min-width: 74px;
    }
    .list-filter-w .search-secondary{
        max-width: 100%;
        flex-wrap: nowrap;
    }
    .list-filter-w .search-secondary>.action{
        flex: 0 0 auto;
        min-width: 0;
        font-size: 0;
        width: var(--btn-height);
        padding: 0;
    }
    .list-filter-w .search-secondary>.action .icon{
        width: var(--icon-size);
        height: var(--icon-size);
        margin-right: -4px;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.company-code{
    padding: 20px;
    border-radius: 20px;
    background-color: var(--primary-lighten4);
    display: flex;
    align-items: center;
    gap: 12px 20px;
    line-height: 1.5;
    margin-bottom: 32px;
}
.company-code>.icon,
.company-code>.action{
    flex: 0 0 auto;
}
.company-code .company-code-contents{
    flex-basis: 0;
    flex-grow: 1;
}
.company-code .company-code-contents>p{
    font-size: var(--txt-font-size-sm);
    color: var(--grey-base);
}
.company-code .company-code-contents>strong{
    font-size: var(--tit-font-size-sm);
    font-weight: 500;
    color: var(--grey-darken2);
}
.company-code>.action{
    min-width: 120px;
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .company-code{
        padding: 20px 16px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .company-code>.action{
        min-width: 0;
        flex: 1 1 100%
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.selected-info{
    display: flex;
    align-items: flex-end;
    gap: 0 16px;
    line-height: 1.2;
    margin-bottom: 32px;
}
.selected-info .selected-info-left{
    flex-basis: 0;
    flex-grow: 1;
    font-size: var(--txt-font-size);
    color: var(--grey-darken2);
}
.selected-info .selected-info-left>strong{
    display: block;
    font-size: var(--tit-font-size-sm);
    font-weight: 600;
}
.selected-info .selected-info-left>p{
    margin-top: 8px;
}
.selected-info .selected-info-right{
    text-align: right;
}
.selected-info .selected-info-right>p{
    white-space: nowrap;
    font-size: var(--txt-font-size-lg);
    font-weight: 600;
    color: var(--grey-darken2);
}
.selected-info .selected-info-right>p + p{
    margin-top: 8px;
}
@media screen and (min-width: 1241px){}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .selected-info{
        margin-bottom: 20px;
        display: block;
    }
    .selected-info .selected-info-right{
        margin-top: 12px;
        text-align: left;
    }

    .basic-table-2019.table-responsive:not(.loop-tbody) tr.price-total{
        background-color: var(--grey-lighten4);
    }
    .basic-table-2019.table-responsive:not(.loop-tbody) tr.price-total>td{
        font-size: var(--txt-font-size);
    }
    .basic-table-2019.table-responsive:not(.loop-tbody) tr.price-total>td:first-child{
        font-size: var(--txt-font-size-lg);
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    .basic-table-2019.table-responsive:not(.loop-tbody) tr.price-total>td[data-cell-header]{
        margin-top: 16px;
        display: flex;
        justify-content: space-between;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:420px){}

.edu-quick-w{
    display: flex;
    gap: 8px;
}
.edu-quick-w>li{
    display: block;
    flex: 1 1 0;
}
@media screen and (min-width: 1241px){
    .edu-quick-w>li .action.border:not(:disabled):hover{
        background-color: var(--grey-darken4);
        color: #fff;
    }
}
@media screen and (max-width:1000px){}
@media screen and (max-width:767px){
    .edu-quick-w>li .action{
        height: auto;
        padding: 8px 0 !important;
    }
}
@media screen and (max-width:480px){}
@media screen and (max-width:374px){
    .edu-quick-w{
        flex-wrap: wrap;
    }
    .edu-quick-w>li{
        flex: 1 1 100%;
    }
    .edu-quick-w>li .action{
        height: var(--btn-height);
        padding: 0 !important;
    }
    .edu-quick-w>li .action>br.mo{
        display: none !important;
    }
}