@charset "utf-8";
/* common */
.mainSection{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
.mainSectionHead{
    display: flex;
    align-items: flex-end;
    gap: 0 16px;
    margin-bottom: 30px;
}
.mainSectionTitW{
    flex-basis: 0;
    flex-grow: 1;
}
.mainSectionHead:has(.mainSectionBtn) .mainSectionTitW{
    flex: 0 0 auto;
}
.mainSectionTxt{
    line-height: 1;
    color: var(--primary-darken1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.mainSectionTit{
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}
.mainSectionTit>strong{
    font-weight: 700;
}
.mainSectionHeadRight{
    display: flex;
    align-items: center;
    gap: 0 42px;
}
.mainSectionBtn{
    margin-right: auto;
    height: 36px;
    border-radius: 999px;
    background-color: var(--primary-base);
    color: #fff;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

@media screen and (min-width: 1201px){
    .mainSectionBtn:hover{
        background-color: var(--primary-darken1);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
    .mainSectionHead{
        display: block;
    }
    .mainSectionHeadRight{
        justify-content: space-between;
        margin-top: 20px;
    }
    .mainSectionHeadRight .tabTxt{
        position: relative;
        left: -8px;
    }
    .mainSectionHead:has(.mainSectionBtn){
        display: flex;
        flex-wrap: wrap;
    }
    .mainSectionHead:has(.mainSectionBtn) .mainSectionHeadRight{
        flex: 1 1 100%;
        justify-content: flex-end;
    }
}
@media screen and (max-width: 767px){
    .mainSectionHead{
        margin-bottom: 12px;
    }
    .mainSectionTxt{
        font-size: 16px;
        margin-bottom: 8px;
    }
    .mainSectionTit{
        font-size: 24px;
    }
    .mainSectionBtn{
        height: 32px;
        padding: 0 12px;
        font-size: 16px;
    }
}
@media screen and (max-width: 500px){
}
@media screen and (max-width: 374px){
    .mainSectionHead:has(.mainSectionBtn){
        display: block;
    }
    .mainSectionBtn{
        width: 100%;
        margin-top: 20px;
    }
}

/* visual */
.visualSlide{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.visual{
    display: block;
    width: 100%;
    height: var(--view-height);
    max-height: 970px;
    position: relative;
    overflow: hidden;
}
.visualBg{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 1920px auto;
    background-repeat: no-repeat;
}
.visualSlide .swiper-pagination{
    --bullet-size: 38px;
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-inactive-color: transparent;
    --swiper-pagination-color: rgba(255, 255, 255, .2);
    --swiper-pagination-bullet-inactive-opacity: 1;

    position: absolute;
    left: 60px;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    z-index: 5;
    width: var(--bullet-size);
}
.visualSlide .swiper-pagination-bullet{
    width: var(--bullet-size);
    height: var(--bullet-size);
    display: block;
    position: relative;
    transition: var(--transition);
}
.visualSlide .swiper-pagination-bullet::after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.visualSlide .swiper-pagination-bullet + .swiper-pagination-bullet{
    margin-top: 12px;
}
@media screen and (min-width: 1201px){
    .visualSlide .swiper-pagination-bullet:hover{
        background-color: var(--swiper-pagination-color);
    }
}
@media screen and (max-width: 1739px){    
    .visual{
        height: 0;
        max-height: unset;
        padding-top: calc((970 / 1920) * 100%);
    }
    .visualBg{
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
    }
    .visualSlide .swiper-pagination{
        --bullet-size: 32px;
        left: var(--container-gutter);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){ 
    .visualSlide .swiper-pagination{
        --bullet-size: 24px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        bottom: 16px;
        display: flex;
        justify-content: center;
        gap: 0 4px;
    }
    .visualSlide .swiper-pagination-bullet + .swiper-pagination-bullet{
        margin-top: 0;
    }
    .visualSlide .swiper-pagination-bullet::after{
        width: 6px;
        height: 6px;
    }    
    .visual{
        padding-top: calc((795 / 640) * 100%);
    }
}
@media screen and (max-width: 500px){ 
    .visualSlide .swiper-pagination{
        --bullet-size: 20px;
        bottom: 10px;
    }
    .visualSlide .swiper-pagination-bullet::after{
        width: 4px;
        height: 4px;
    }
}

.mainQuickArea{
    margin: 70px 0;
}
.mainQuickW{
    display: flex;
    gap: 0 80px;
}
.mainQuick{
    flex: 1 1 0;
    background-color: var(--grey-lighten5);
    padding: 20px 50px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 44px;
}
.mainQuick::after{
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 33px;
    background-image: url(../image/icon-bookmark-primary.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    right: 30px;
}
.mainQuickW>.mainQuick:nth-child(1){
    --primary-darken1: var(--secondary-darken1);
    --primary-darken2: var(--secondary-darken2);
}
.mainQuickW>.mainQuick:nth-child(1)::after{
    background-image: url(../image/icon-bookmark-secondary.svg);
}
.mainQuick>img{
    flex: 0 0 auto;
    width: 36%;
    max-width: 204px;
    display: block;
}
.mainQuickContents{
    flex-basis: 0;
    flex-grow: 1;
}
.mainQuickContents>p{
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-base);
    margin-bottom: 10px;
}
.mainQuickContents>h2{
    font-size: 22px;
    line-height: 1;
    font-weight: 700;   
}
.mainQuickContents>h2>span{
    color: var(--primary-darken1);
}
.mainQuickBtn{
    height: 44px;
    width: fit-content;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    background-color: var(--primary-darken1);
    margin-top: 30px;
    transition: var(--transition);
}
@media screen and (min-width: 1201px){
    .mainQuickBtn:hover{
        background-color: var(--primary-darken2);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
    .mainQuickW{
        gap: 0 30px;
    }
    .mainQuick{
        padding: 20px 30px;
        gap: 20px;
        flex-direction: column;
    }
    .mainQuickContents{
        width: 100%;
        text-align: center;
    }
    .mainQuickBtn{
        margin: 20px auto 0;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .mainQuickArea{
        margin: 50px 0;
    }
    .mainQuickW{
        display: block;
    }
    .mainQuick{
        padding: 20px 16px;
        gap: 0 16px;
        flex-direction: row;
    }
    .mainQuick::after{
        width: 18px;
        height: 24px;
        right: 16px;
    }
    .mainQuick + .mainQuick{
        margin-top: 20px;
    }
    .mainQuickContents{
        text-align: left;
    }
    .mainQuickContents>p{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .mainQuickContents>h2{
        font-size: 18px;
    }
    .mainQuickBtn{
        height: 38px;
        padding: 0 16px;
        gap: 0 5px;
        font-size: 14px;
        margin: 16px 0 0;
    }
    .mainQuickBtn .icon{
        width: 24px;
        height: 24px;
    }
}
@media screen and (max-width: 500px){
    .mainQuick::after{
        width: 14px;
        height: 19px;
        right: 10px;
    }
}

.subBannerArea{
    margin: 70px 0;
}
.subBannerSlide .swiper-container{
    overflow: hidden;
}
.subBanner{
    position: relative;
    height: 0;
    width: 100%;
    padding-top: calc((248 / 680) * 100%);
    overflow: hidden;
}
.subBannerSlide--3 .subBanner{
    padding-top: calc((420 / 680) * 100%);
}
.subBannerSlide--4 .subBanner{
    padding-top: 100%;
}
.subBanner::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-base);
    opacity: 0;
    visibility: visible;
    top: 0;
    left: 0;
    transition: var(--transition);
}
.subBannerBg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (min-width: 1024px){
    .subBannerSlide .slideControl{
        display: none;
    }
    .subBannerSlide .swiper-wrapper{
        display: flex;
        gap: 0 20px;
        width: 100%;
    }
    .subBannerSlide .swiper-slide{
        flex-basis: 0;
        flex-grow: 1;
    }
}
@media screen and (min-width: 1201px){
    .subBanner:hover::after{
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
    .subBannerSlide{
        position: relative;
        padding: 0 17px;
    }
    .subBannerSlide .slideBtnPrimary{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 34px;
        height: 34px;
        background-color: var(--primary-lighten5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    .subBannerSlide .slideBtnPrimary.swiper-button-disabled{
        opacity: 0;
        visibility: hidden;
    }
    .subBannerSlide .slideBtnPrev{
        left: 0;
    }
    .subBannerSlide .slideBtnNext{
        right: 0;
    }
}
@media screen and (max-width: 767px){
    .subBannerArea{
        margin: 50px 0;
    }
}
@media screen and (max-width: 500px){
}

.mainSection1{
    padding: 70px 0;
    background-image: url(../image/main/section1-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.familysiteArea{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 0 41px;
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(0, 76, 174, .08);
}
.familysiteW{
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
    position: relative;
}
.familysiteArea .familysiteW:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 42px;
    background-color: var(--border-color-dark);
    top: 50%;
    right: -21px;
    transform: translateY(-50%);
}
.familysiteW img{
    display: block;
}
.familysiteW>img{
    height: 28px;
    margin-top: 5px;
}
.familysite{
    display: flex;
    gap: 0 20px;
}
.familysite>img{
    height: 38px;
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1479px){
    .familysiteArea{
        display: block;
    }
    .familysiteArea .familysiteW +  .familysiteW{
        margin-top: 20px;
    }
    .familysiteArea .familysiteW:not(:last-child)::after{
        display: none;
    }
    .familysiteW{
        gap: 0 41px;
        justify-content: space-between;
    }
    .familysite{
        width: 100%;
        max-width: calc(100% - 137px);
        flex-wrap: wrap;
        gap: 10px 20px;
        position: relative;
    }
    .familysite::after{
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 30px;
        background-color: var(--border-color-dark);
        top: 4px;
        left: -21px;
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .mainSection1{
        padding: 50px 0;
    }
    .familysiteArea{
        margin-top: 30px;
        padding: 20px 16px;
    }
    .familysiteW{
        gap: 31px;
    }
    .familysiteW>img{
        height: 22px;
        margin-top: 4px;
    }
    .familysite{
        max-width: calc(100% - 107px);
        gap: 8px 16px;
    }
    .familysite::after{
        height: 12px;
        margin-top: 9px;
        left: -16px;
    }
    .familysite>img{
        height: 30px;
    }
}
@media screen and (max-width: 500px){
    .familysiteW{
        display: block;
    }
    .familysiteArea .familysiteW + .familysiteW{
        padding-top: 16px;
        margin-top: 16px;
        border-top: 1px solid var(--border-color);
    }
    .familysite{
        max-width: 100%;
        margin-top: 12px;
    }
    .familysite::after{
        display: none;
    }
}

.mainSection1 .swiper-container{
    margin: -20px -12px;
    padding: 20px 12px;
    overflow: hidden;
}
.mainSection1 .swiper-wrapper{
    row-gap: 40px;
    align-items: stretch;
}
.mainSection1 .swiper-slide{
    height: auto;
    margin-top: 0 !important;
}
.eduList{
    display: flex;
    flex-wrap: wrap;
    margin: -20px -10px;
}
.eduList>li{
    display: block;
    flex: 1 1 25%;
    max-width: 25%;
    width: 25%;
    padding: 20px 10px;
}
.mainEdu{
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 76, 174, .08);
}
.mainEduContents{
    width: 100%;
    padding: 24px 24px 16px;
}
.mainEduContents .labelW{
    margin-bottom: 24px;
}
.mainEduContents>strong{
    display: block;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.mainEduInfo{
    display: flex;
    gap: 0 16px;
    margin-top: 24px;
}
.mainEduInfo>li{
    display: flex;
    gap: 0 6px;
}
.mainEduInfo>li>.icon{
    flex: 0 0 auto;
}
.mainEduInfo>li>p{
    font-size: 16px;
    font-weight: 500;
    flex-basis: 0;
    flex-grow: 1;
}
.mainEduInfo>li>p>span{
    color: var(--primary-base);
}
.mainEdu .thumb{
    margin-top: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mainEdu.book .thumb::after{
    content: "";
    display: block;
    position: absolute;
    width: 110%;
    height: 110%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .8);
}
.mainEdu.book .thumbInner{
    background-size: auto calc(100% - 40px);
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
    .eduList>li{
        flex: 1 1 33.3333%;
        max-width: 33.3333%;
        width: 33.3333%;
    }
}
@media screen and (max-width: 1200px){
    .eduList>li{
        flex: 1 1 50%;
        max-width: 50%;
        width: 50%;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .mainSection1 .swiper-wrapper{
        row-gap: 20px;
    }
    .eduList{
        margin: -10px;
    }
    .eduList>li{
        padding: 10px;
    }
    .mainEduContents{
        padding: 20px 16px 16px;
    }
    .mainEduContents .labelW{
        margin-bottom: 12px;
    }
    .mainEduContents>strong{
        font-size: 16px;
        overflow: hidden;
        white-space: normal;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: keep-all;
        height: 45px;
    }
    .mainEduInfo{
        display: flex;
        gap: 0 12px;
        margin-top: 12px;
    }
    .mainEduInfo>li{
        gap: 0 4px;
    }
    .mainEduInfo>li>.icon{
        width: 20px;
        height: 20px;
    }
    .mainEduInfo>li>p{
        font-size: 14px;
    }
    .mainEdu.book .thumbInner{
        background-size: auto calc(100% - 20px);
    }
}
@media screen and (max-width: 500px){
    .eduList>li{
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
}

.mySection{
    padding: 25px 0;
}
.mySection:first-child{
    padding-top: 50px;
}
.mySection:last-child{
    padding-bottom: 70px;
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .mySection:last-child{
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 500px){
}

.myTopInner{
    display: flex;
    gap: 0 30px;
}
.myTopLeft{
    flex: 0 0 auto;
    width: 338px;
    min-width: 338px;
}
.userInfo{
    width: 100%;
    min-height: 262px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color-dark);
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}
.userInfoHead{
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.userInfoHeadContents{
    flex-basis: 0;
    flex-grow: 1;
}
.userInfoHeadContents>h2{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}
.userInfoHeadContents>h2>strong{
    font-size: 22px;
    font-weight: 700;
}
.userInfoHeadContents>p{
    display: flex;
    gap: 0 6px;
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-base);
    margin-top: 4px;
}
.userInfoHeadContents>p>span{
    color: var(--border-color-dark);
}
.templateBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 32px;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success-base);
    border-radius: 999px;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition);
}
.userInfoKeyowrdArea{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color-dark);
}
.userInfoKeyowrdArea>strong{
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 7px;
}
.userInfoKeyowrdW{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    height: 69px;
    overflow: hidden;
}
.userInfoKeyowrd{
    padding: 0 12px;
    height: 32px;
    font-size: 15px;
    color: var(--primary-base);
    text-decoration: underline;
    display: flex;
    align-items: center;
    border-radius: 999px;
    background-color: var(--primary-lighten5);
    transition: var(--transition);
}
.userInfo>button{
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-base);
    background-color: var(--grey-lighten5);
    margin-top: 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.tabVertW{
    position: relative;
}
.tabVert{
    position: absolute;
    width: 100%;
    top: 0;
    left: calc(-100% + 20px);
    transform: rotate(-90deg) translateY(-100%);
    transform-origin: right top;
    display: flex;
    gap: 0 5px;
    justify-content: flex-end;
}
.tabVert .tabBtn{
    height: 70px;
    padding: 0 12px;
    padding-bottom: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    transition: var(--transition);
}
.eduLogo{
    height: 24px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    transition: var(--transition);
}
.eduLogo.g{
    width: 92px;
    background-image: url(../image/g-ci.svg);
}
.eduLogo.i{
    width: 56px;
    background-image: url(../image/i-ci.svg);
}
.tabVert .tabBtn .eduLogo.g{
    background-image: url(../image/g-ci-dark.svg);
}
.tabVert .tabBtn .eduLogo.i{
    width: 56px;
    background-image: url(../image/i-ci-dark.svg);
}
.tabVert li.active .tabBtn:has(.eduLogo.g){
    background-color: var(--success-base);
}
.tabVert li.active .tabBtn:has(.eduLogo.i){
    background-color: var(--secondary-darken1);
}
.tabVert li.active .tabBtn .eduLogo.g{
    background-image: url(../image/g-ci-light.svg);
}
.tabVert li.active .tabBtn .eduLogo.i{
    width: 56px;
    background-image: url(../image/i-ci-light.svg);
}

.userStateW{
    margin-top: 20px;
}
.userStateW .tabContent{
    background-color: #fff;
    border-radius: 20px;
    height: 240px;
}
.userStateBtnW{
    position: absolute;
    background-image: url(../image/user-state-object.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 62px;
    height: 62px;
    bottom: -1px;
    right: -1px;
    padding: 1px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.userStateBtn{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--grey-darken4);
    transition: var(--transition);
}
.userState{
    border-radius: 20px;
    height: 240px;
    padding: 14px 14px 20px;
    position: relative;
}
.userState.g{
    --primary-base: var(--success-base);
    --primary-lighten5: var(--green-lighten5);
}
.userState.i{
    --primary-base: var(--secondary-darken1);
    --primary-lighten5: var(--secondary-lighten5);
}
.userState.g{
    background-image: linear-gradient(135deg, #C7FBC2, #A1FDD5);
}
.userState.i{
    background-image: linear-gradient(135deg, #C2E9FB, #A1C4FD);
}
.userStateHead{
    display: flex;
    align-items: center;
    gap: 0 8px;
    height: 80px;
}
.userStateHeadContents{
    flex-basis: 0;
    flex-grow: 1;
}
.userStateHeadContents .eduLogo{
    height: 26px; 
    margin-bottom: 8px;
}
.userStateHeadContents .eduLogo.g{
    width: 100px;
}
.userStateHeadContents .eduLogo.i{
    width: 62px;
}
.userStateHeadContents>strong{
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.userStateInfoW{
    display: flex;
    gap: 0 8px;
    padding-right: 54px;
    margin-top: 14px;
}
.userStateInfoW>li{
    display: block;
    flex: 1 1 0;
}
.userStateInfo{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    position: relative;
    transition: var(--transition);
}
.userStateInfo::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid transparent;
    top: 0;
    left: 0;
    transition: var(--transition);
}
.userStateInfo>strong{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 34px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary-base);
}
.userStateInfo>p{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 78px;
    font-size: 32px;
    font-weight: 900;
    color: var(--grey-lighten2);
}
@media screen and (min-width: 1201px){
    .templateBtn:hover{
        background-color: var(--grey-lighten5);
    }
    .userInfoKeyowrd:hover{
        background-color: var(--primary-lighten4);
    }
    .userInfo>button:hover{
        background-color: var(--grey-lighten4);
    }
    .tabVert .tabBtn:has(.eduLogo.g):hover{
        background-color: var(--success-base);
    }
    .tabVert .tabBtn:has(.eduLogo.i):hover{
        background-color: var(--secondary-darken1);
    }
    .tabVert .tabBtn:hover .eduLogo.g{
        background-image: url(../image/g-ci-light.svg);
    }
    .tabVert .tabBtn:hover .eduLogo.i{
        width: 56px;
        background-image: url(../image/i-ci-light.svg);
    }
    .userStateBtn:hover{
        background-color: var(--primary-base);
    }
    .userStateInfo:hover::after{
        border-color: var(--primary-base);
    }
}
@media screen and (max-width: 1599px){
    .myTopInner{
        display: block;
    }
    .myTopLeft{
        width: 100%;
        min-width: 0;
        display: flex;
        gap: 0 30px;
    }
    .userInfo{
        flex: 1 1 0;
        min-height: 0;
        padding: 24px 20px;
    }
    .userInfoKeyowrdArea{
        padding-top: 20px;
        margin-top: 20px;
    }
    .tabVertW{
        flex: 1 1 0;
        margin-top: 0;
    }
    .tabVert{
        position: static;
        transform: rotate(0) translateY(0);
        margin-bottom: -20px;
    }
}
@media screen and (max-width: 1479px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
    .myTopLeft{
        gap: 0 20px;
    }
}
@media screen and (max-width: 767px){
    .myTopInner{
        display: block;
    }
    .myTopLeft{
        display: block;
    }
    .userInfo{
        padding: 20px 16px;
    }
    .userInfoHead{
        display: block;
    }
    .userInfoHeadContents>h2{
        font-size: 16px;
    }
    .userInfoHeadContents>h2>strong{
        font-size: 18px;
    }
    .userInfoHeadContents>p{
        font-size: 14px;
    }
    .templateBtn{
        width: 100%;
        margin-top: 12px;
    }
    .userInfoKeyowrdArea{
        padding-top: 16px;
        margin-top: 16px;
    }
    .tabVert .tabBtn{
        height: 62px;
    }
    .eduLogo{
        height: 20px;
    }
    .eduLogo.g{
        width: 78px;
    }
    .eduLogo.i{
        width: 48px;
    }

    .userStateW{
        margin-top: 20px;
    }
    .userStateW .tabContent{
        height: 206px;
    }
    .userStateBtnW{
        width: 54px;
        height: 54px;
    }
    .userStateBtn{
        width: 38px;
        height: 38px;
    }
    .userState{
        height: 206px;
        padding: 20px 16px;
    }
    .userStateHead{
        height: 68px;
    }
    .userStateHeadContents .eduLogo{
        height: 24px; 
    }
    .userStateHeadContents .eduLogo.g{
        width: 92px;
    }
    .userStateHeadContents .eduLogo.i{
        width: 56px;
    }
    .userStateHeadContents>strong{
        font-size: 18px;
    }

    .userStateInfoW{
        padding-right: 48px;
    }
    .userStateInfo>p{
        height: 50px;
        font-size: 28px;
    }
}
@media screen and (max-width: 500px){
}

.myTopRight{
    max-width: calc(100% - 368px);
    flex-basis: 0;
    flex-grow: 1;
}
.myTopRight strong{
    display: block;
    font-size: 18px;
    font-weight: 700;
}
.eduStateArea{
    display: flex;
    gap: 0 30px;
    margin-bottom: 20px;
}
.eduStateW{
    flex-basis: 0;
    flex-grow: 1;
    padding: 18px 30px;
    max-width: calc(100% - 244px);
    background-color: var(--primary-lighten5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0 56px;
}
.eduStateW>strong{
    color: var(--primary-darken4);
    flex: 0 0 auto;
}
.eduState{
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    gap: 0 20px;
}
.eduState>li{
    flex: 1 1 0;
}
.eduStateLink{
    display: block;
    height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    position: relative;
}
.eduStateLink::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid transparent;
    top: 0;
    left: 0;
    transition: var(--transition);
}
.eduStateLink>p{
    width: 100%;
    font-size: 16px;
    font-weight: 700;
}
.eduStateLink>strong{
    width: 100%;
    font-size: 32px;
    font-weight: 900;
    text-align: right;
    color: var(--grey-lighten2);
}
.eduStateLink>strong.primaryTxt{
    color: var(--success-base) !important;
}
.eduStateTotal{
    flex: 0 0 auto;
    width: 214px;
    min-width: 214px;
    display: flex;
    gap: 0 20px;
    padding: 24px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}
.eduProgressArea{
    padding: 20px 0;
    display: flex;
    border-radius: 20px;
    border: 1px solid var(--border-color-dark);
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}
.eduProgressW{
    position: relative;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0 16px;
    padding: 0 28px;
}
.eduProgressArea>.eduProgressW:not(:last-child){
    border-right: 1px solid var(--border-color-dark);
}
.eduProgressW>strong{
    min-width: 94px;
}
.eduProgress{
    flex-basis: 0;
    flex-grow: 1;
}
.eduProgress .progress{
    max-width: 100%;
    height: 8px;
    background-color: var(--grey-lighten3);
}
.eduProgressW:has(.circleLabel.primary) .progress{
    --primary-base: var(--info-base);
}
.eduProgressW:has(.circleLabel.danger) .progress{
    --primary-base: var(--success-base);
}
.eduProgressInfo{
    display: flex;
    align-items: center;
    gap: 0 6px;
    font-size: 13px;
    line-height: 1;
    color: var(--grey-base);
    margin-top: 8px;
}
.eduProgressInfo>span{
    color: var(--border-color-dark);
}
.circleLabel{
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}
.circleLabel.primary{
    color: var(--primary-base);
    background-color: var(--primary-lighten5);
}
.circleLabel.danger{
    color: var(--danger-base);
    background-color: var(--danger-lighten5);
}

.eduBannerSlide{
    margin-top: 20px;
    position: relative;
}
.eduBannerSlide .swiper-container{
    overflow: hidden;
}
.eduBannerSlide .thumb{
    padding-top: 0;
    height: 240px;
}
.eduBannerSlide .thumbInner{
    background-size: 1072px auto;
}
.eduBannerSlide .slideControl{
    position: absolute;
    height: 32px;
    z-index: 5;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 0 1px;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 999px;
}
.eduBannerSlide .slideControl.left{
    left: 30px;
    width: 74px;
    text-align: center;
}
.eduBannerSlide .slideControl .swiper-pagination{
    position: static;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.eduBannerSlide .slideControl.right{
    right: 30px;
    padding: 0 10px;
}
.slideBtnWhite{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slideBtnPause{
    display: none;
}
.slideBtnPlay{
    display: none;
}
.slideBtnPause.active{
    display: flex;
}
.slideBtnPlay.active{
    display: flex;
}
@media screen and (min-width: 1201px){
    .slideBtnWhite:hover{
        background-color: rgba(255, 255, 255, .2);
    }
    .eduStateLink:hover::after{
        border-color: var(--primary-base);
    }
}
@media screen and (max-width: 1599px){
    .myTopRight{
        max-width: 100%;
        margin-top: 30px;
    }
    .eduBannerSlide .thumb{
        padding-top: calc((240 / 1072) * 100%);
        height: 0;
    }
    .eduBannerSlide .thumbInner{
        background-size: cover;
    }
}
@media screen and (max-width: 1479px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){    
    .eduStateArea{
        gap: 0 20px;
    }
    .eduStateW{
        padding: 20px 16px;
        max-width: calc(100% - 196px);
        gap: 0 16px;
    }
    .eduStateW>strong{
        color: var(--primary-darken4);
        flex: 0 0 auto;
    }
    .eduState{
        gap: 0 10px;
    }
    .eduStateLink{
        height: 80px;
        padding: 14px;
    }
    .eduStateLink>strong{
        font-size: 28px;
    }
    .eduStateTotal{
        width: 176px;
        min-width: 176px;
        padding: 20px 16px;
    }
    .eduProgressArea{
        display: block;
        padding: 20px 16px;
    }
    .eduProgressW{
        padding: 0;
    }
    .eduProgressArea>.eduProgressW:not(:last-child){
        border-right: 0;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--border-color-dark);
    }
    .eduBannerSlide .slideControl{
        bottom: 20px;
    }
    .eduBannerSlide .slideControl.left{
        left: 16px;
    }
    .eduBannerSlide .slideControl.right{
        right: 16px;
    }
}
@media screen and (max-width: 767px){
    .myTopRight{
        margin-top: 20px;
    }
    .myTopRight strong{
        font-size: 16px;
    }
    .eduStateArea{
        display: block;
    }
    .eduStateW{
        max-width: 100%;
        display: block;
    }
    .eduStateW>strong{
        margin-bottom: 8px;
    }
    .eduState{
        flex-wrap: wrap;
        gap: 8px;
    }
    .eduState>li{
        flex: 1 1 calc(50% - 4px);
        width: calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
    .eduStateLink{
        height: 84px;
        padding: 12px;
    }
    .eduStateLink>strong{
        font-size: 28px;
    }
    .eduStateTotal{
        margin-top: 20px;
        width: 100%;
        min-width: 0;
        align-items: center;
        gap: 0 8px;
        padding: 20px 16px;
    }
    .eduStateTotal>strong{
        margin-right: auto;
    }
    .eduProgressW{
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .eduProgressW>strong{
        min-width: 0;
        flex: 1 1 100%;
    }
    .eduProgressInfo{
        flex-direction: column;
        align-items: flex-start;
        gap: 2px 0;
    }
    .eduProgressInfo>span{
        display: none;
    }
    .circleLabel{
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 14px;
    }
    .eduBannerSlide{
        padding: 0 17px;
    }
    .eduBannerSlide .thumb{
        padding-top: calc((240 / 580) * 100%);
    }
    .eduBannerSlide .slideControl{
        bottom: 0;
        background-color: var(--primary-darken4);
    }
    .eduBannerSlide .slideControl.left,
    .eduBannerSlide .slideBtnPause,
    .eduBannerSlide .slideBtnPlay{
        display: none;
    }
    .eduBannerSlide .slideControl.right{
        height: 0;
        position: static;
        background-color: transparent;
    }
    .eduBannerSlide .slideBtnPrev,
    .eduBannerSlide .slideBtnNext{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 34px;
        height: 34px;
        background-color: var(--primary-lighten5);
    }
    .eduBannerSlide .slideBtnPrev{
        left: 0;
    }
    .eduBannerSlide .slideBtnPrev .iconChevronBoldLeftWhite{
        background-image: url(../image/icon-chevron-left-primary.svg);
    }
    .eduBannerSlide .slideBtnNext{
        right: 0;
    }
    .eduBannerSlide .slideBtnNext .iconChevronBoldRightWhite{
        background-image: url(../image/icon-chevron-right-primary.svg);
    }
}
@media screen and (max-width: 500px){
}

.myMainQuickArea{
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    margin-bottom: 50px;
}
.myMainQuickTit{
    text-align: center;
    margin-bottom: 36px;
}
.myMainQuickTit>h2{
    font-weight: 700;
    font-size: 24px;
}
.myMainQuickTit>p{
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
}
.myMainQuickW{
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 0 30px;
}
.myMainQuick{
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-basis: 0;
    flex-grow: 1;
    min-height: 374px;
    background-position: right bottom;
    background-size: 60% auto;
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 20px;
    padding: 60px 44px;
    position: relative;
}
.myMainQuick::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.myMainQuickW>.myMainQuick:nth-child(1){
    background-color: var(--primary-base);
    background-image: url(../image/main/my-quick-bg1.svg);
}
.myMainQuickW>.myMainQuick:nth-child(2){
    background-color: var(--lightGreen-base);
    background-image: url(../image/main/my-quick-bg2.svg);
}
.myMainQuick>h3{
    font-size: 24px;
    font-weight: 700;
}
.myMainQuick>p{
    font-size: 19px;
    font-weight: 500;
    margin-top: 10px;
}
@media screen and (min-width: 1201px){
    .myMainQuickW>.myMainQuick:hover::after{
        border-color: var(--purple-base);
    }
}
@media screen and (max-width: 1479px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){ 
    .myMainQuickW{
        gap: 0 20px;
    }
    .myMainQuick{
        min-height: 300px;
        padding: 30px 20px;
    } 
}
@media screen and (max-width: 767px){
    .myMainQuickArea{
        padding: 20px 16px;
    }
    .myMainQuickTit{
        margin-bottom: 24px;
    }
    .myMainQuickTit>h2{
        font-size: 20px;
    }
    .myMainQuickTit>p{
        font-size: 16px;
        margin-top: 6px;
    }
    .myMainQuickW{
        display: block;
    }
    .myMainQuick{
        min-height: 300px;
        width: 100%;
        padding: 20px 16px;
        background-size: 40% auto;
    }
    .myMainQuick + .myMainQuick{
        margin-top: 20px;
    }
    .myMainQuick>h3{
        font-size: 20px;
    }
    .myMainQuick>p{
        font-size: 16px;
        margin-top: 8px;
    }
}
@media screen and (max-width: 500px){
    .myMainQuick{
        min-height: 240px;
        background-size: 50% auto;
    }
}

.tabVert .tabBtn:has(>span){
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 22px;
    font-weight: 700;
    height: 90px;
    padding: 0 0 20px 0;
    color: var(--grey-base);
}
.tabVert .tabBtn>span{
    display: inline-block;
    transform: rotate(90deg);

}
.eduScheduleArea .tabVert .tabBtn{
    width: 114px;
}
.eduScheduleArea .tabVert>li:nth-child(1).active .tabBtn{
    background-color: var(--lightGreen-base);
    color: #fff;
}
.eduScheduleArea .tabVert>li:nth-child(2).active .tabBtn{
    background-color: var(--primary-base);
    color: #fff;
}
.eduScheduleArea .tabContent{
    border-radius: 20px;
    background-color: #fff;
}

.eduScheduleW{
    padding: 48px 70px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    background-color: #fff;
}

.eduScheduleHead{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 36px;
}
.eduScheduleHeadContents>h2{
    font-size: 24px;
    font-weight: 700;
}
.eduScheduleHeadContents>p{
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
}
.eduScheduleControl{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0 8px;
    width: 226px;
}
.scheduleBtn{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-lighten5);
    transition: var(--transition);
}
.eduScheduleControl>strong{
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    font-size: 33px;
    font-weight: 700;
    text-align: center;
}
.scheduleTxtBtn{
    height: 40px;
    width: 109px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 4px;
    font-size: var(--grey-base);
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition);
}
.yearPlus.scheduleTxtBtn{
    color: var(--primary-base);
}
.scheduleYear{
    display: block;
}
.scheduleYear>li{
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color-dark);
}
.scheduleYear>li:has(>p){
    align-items: center;
}
.scheduleYear>li + li{
    margin-top: 20px;
}
.scheduleYearMonth{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--grey-lighten4);
}
.yearListW{
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    max-width: calc(100% - 201px);
    margin-top: 14px;
    height: 67px;
    overflow: hidden;
    transition: var(--transition);
}
.yearListW>li{
    display: block;
}
.yearListW>li + li{
    margin-top: 16px;
}
.yearList{
    display: flex;
    align-items: center;
    gap: 0 6px;
    transition: var(--transition);
}
.yearList>p{
    font-size: 18px;
    font-weight: 600;
    max-width: calc(100% - 282px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.yearListMore{
    flex: 1 1 100%;
    height: 32px;
    color: var(--grey-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: var(--transition);
}
.yearListMore.active>.icon{
    transform: rotate(180deg);
}
.yearListDate{
    display: block;
    text-align: right;
    min-width: 186px;
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-lighten1);
}
.scheduleYear>li>p{
    flex-basis: 0;
    flex-grow: 1;
    max-width: calc(100% - 201px);
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-lighten1);
}

@media screen and (min-width: 1201px){
    .eduScheduleArea .tabVert>li:nth-child(1) .tabBtn:hover{
        background-color: var(--lightGreen-base);
        color: #fff;
    }
    .eduScheduleArea .tabVert>li:nth-child(2) .tabBtn:hover{
        background-color: var(--primary-base);
        color: #fff;
    }
    .scheduleBtn:hover{
        background-color: var(--green-lighten4)
    }
    .scheduleTxtBtn:hover{
        background-color: var(--grey-lighten4);
    }
    .yearListMore:hover{
        background-color: var(--grey-lighten5);
    }
    .yearList:hover{
        color: var(--primary-base);
    }
}
@media screen and (max-width: 1599px){
    .tabVert .tabBtn:has(>span){
        flex-direction: row;
        gap: 0;
        font-size: 20px;
        height: 70px;
        padding: 0 20px 20px;
    }
    .tabVert .tabBtn>span {
        display: inline;
        transform: rotate(0);
    }
    .eduScheduleArea .tabVert .tabBtn{
        width: auto;
    }
}
@media screen and (max-width: 1479px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){ 
    .eduScheduleW {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 767px){
    .eduScheduleW{
        padding: 20px 16px;
    }
    .eduScheduleHead{
        margin-bottom: 24px;
        padding-bottom: 58px;
    }
    .eduScheduleHeadContents>h2{
        font-size: 20px;
    }
    .eduScheduleHeadContents>p{
        font-size: 16px;
        margin-top: 6px;
    }
    .eduScheduleHead>.scheduleTxtBtn{
        position: absolute;
        top: -3px;
        right: 0;
    }
    .eduScheduleControl{
        top: unset;
        bottom: 0;
        height: 34px;
        width: 180px;
    }
    .eduScheduleControl>strong{
        font-size: 24px;
    }
    .scheduleTxtBtn{
        height: 34px;
        width: 88px;
    }
    .scheduleTxtBtn>.icon{
        width: 20px;
        height: 20px;
    }
    .scheduleYear>li{
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 8px;
        padding: 16px;
    }
    .scheduleYear>li + li{
        margin-top: 16px;
    }
    .scheduleYearMonth{
        order: 1;
        font-size: 18px;
        width: 48px;
        height: 48px;
    }
    .yearPlus.scheduleTxtBtn{
        order: 2;
        margin-left: auto;
    }
    .yearListW{
        flex: 1 1 100%;
        order: 3;
        max-width: 100%;
        margin-top: 6px;
    }
    .yearListW>li{
        display: block;
    }
    .yearListW>li + li{
        margin-top: 16px;
    }
    .yearList{
        display: block;
    }
    .yearList>p{
        font-size: 16px;
        margin: 8px 0;
        max-width: 100%;
    }
    .yearListMore{
        order: 4;
        margin-top: 0;
        font-size: 14px;
    }
    .yearListDate{
        text-align: left;
        min-width: 0;
        font-size: 14px;
    }
    .scheduleYear>li>p{
        flex: 1 1 100%;
        order: 3;
        max-width: 100%;
        margin-top: 6px;
        font-size: 14px;
    }
}
@media screen and (max-width: 500px){
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{
    min-height: 0;
    position: relative;
    z-index: 5;
}
.fc-daygrid-day-bottom{
    position: absolute;
    top: 0;
    right: 12px;
    height: 52px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    z-index: 999;
}
.fc-daygrid-more-link{
    width: 100%;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid var(--border-color-dark);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-base);
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    transition: var(--transition);
}

.fc-event {
  height: 23px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 0 4px;
  line-height: 23px !important;
  border: none !important;
}
.event-primary {
  background-color: var(--primary-lighten5) !important;
}
.event-green {
  background-color: var(--green-lighten5) !important;
}
.event-purple {
  background-color: var(--purple-lighten5) !important;
}
.event-grey{
  background-color: var(--grey-lighten4) !important;
}
.fc-h-event.event-primary .fc-event-main {
    color: var(--primary-base) !important;
}
.fc-h-event.event-green .fc-event-main {
    color: var(--green-base) !important;
}
.fc-h-event.event-purple .fc-event-main {
    color: var(--purple-base) !important;
}
.fc-h-event.event-grey .fc-event-main {
    color: var(--grey-base) !important;
}
.fc-event:hover .fc-event-title{
    text-decoration: underline !important;
}
.fc-h-event .fc-event-title{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.fc-daygrid-day{
    position: relative;
}
.fc-daygrid-day::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    z-index: -1;
    border: 2px solid var(--primary-base);
    opacity: 0;
    visibility: visible;
    transition: var(--transition);
}
.fc-daygrid-day:not(:has(.fc-event:hover), :has(.fc-daygrid-more-link:hover)):hover::after{
    z-index: 1;
    opacity: 1;
    visibility: visible;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-start, .fc-direction-rtl .fc-daygrid-event.fc-event-end {
    margin-left: 12px;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start{
    margin-right: 12px;
}
.fc-direction-ltr .fc-popover-body .fc-daygrid-event.fc-event-start,
.fc-direction-rtl .fc-popover-body .fc-daygrid-event.fc-event-end{
    margin-left: 0;
}
.fc-direction-ltr .fc-popover-body .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-popover-body .fc-daygrid-event.fc-event-start{
    margin-right: 0;
}
.fc .fc-daygrid-day-top{
    height: 52px;
    flex-direction: row;
    align-items: center;
}
.fc .fc-daygrid-day-number{
    padding: 4px 12px;
    font-size: 21px;
    font-weight: 500;
    color: var(--grey-darken4);
}
.fc-scrollgrid td{
    cursor: pointer;
}
.fc-scrollgrid td,
.fc-daygrid-day-frame {
  height: 130px !important;
  max-height: 130px !important;
  min-height: 0 !important;
}

.fc-scrollgrid,
.fc-scrollgrid td,
.fc-scrollgrid th {
  border-color: #E8E8E8 !important;
}

.fc-scroller-harness,
.fc-scroller,
.fc-daygrid-body,
.fc-view-harness {
  overflow: hidden !important;
}

.fc .fc-view-harness{
    height: 922px !important;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}
.fc .fc-view-harness>*{
    margin: -1px;
}
.fc .fc-scrollgrid-section-body table{
    width: 100% !important;
    height: 880px !important;
}
.fc .fc-scrollgrid-section table,
.fc .fc-daygrid-body{
    width: 100% !important;
}

.fc-scrollgrid th .fc-scrollgrid-sync-inner{
    height: 42px;
    display: flex;
    align-items: center;
}
.fc .fc-col-header-cell-cushion{
    padding: 0 12px;
    color: var(--grey-lighten2);
    font-weight: 500;
    font-size: 16px;
}
.fc-day-sun .fc-col-header-cell-cushion{
    color:  #D02222;
}
.fc-day-sat .fc-col-header-cell-cushion{
    color:  #4C6DF3;
}
.fc .fc-day-other{
    background-color: var(--grey-lighten5);
}
.fc .fc-day-other .fc-daygrid-day-top{
    opacity: 1;
}
.fc .fc-day-other .fc-daygrid-day-number{
    color: var(--grey-lighten1);
}

.eduScheduleW.month .scheduleBtn{
    background-color: var(--secondary-lighten5);
}
.scheduleLable{
    margin-bottom: 14px;
}
.scheduleLable .radioW{
    justify-content: flex-end;
    gap: 0 10px;
}
.scheduleLable .radioBtn input + label{
    border: 0;
    height: 23px;
    padding: 0 4px;
    border-radius: 4px;
}
.scheduleLable .radioBtn input + label p{
    font-size: 14px;
    font-weight: 500;
}
@media screen and (min-width: 1201px){
    .eduScheduleW.month .scheduleBtn:hover{
        background-color: var(--primary-lighten4);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
    .eduScheduleArea .tabList{
        display: none;
    }
    .eduScheduleArea .tabContent>li:nth-child(1){
        display: block;
        opacity: 1;
        visibility: visible;
        z-index: 1;
        height: auto;
        position: relative;
    }
    .eduScheduleArea .tabContent>li:nth-child(2){
        display: none !important;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 500px){
}

.myEduSlide .swiper-container{
    margin: -20px -12px;
    padding: 20px 12px;
    overflow: hidden;
}
.myEduSlide .swiper-wrapper{
    row-gap: 40px;
    align-items: stretch;
}
.myEduSlide .swiper-slide{
    height: auto;
    margin-top: 0 !important;
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 500px){
}

.likeSettingW{
    display: flex;
    align-items: flex-start;
    gap: 0 30px;
}
.likeSettingLeft{
    flex-basis: 0;
    flex-grow: 1;
}
.likeSettingSelect{
    display: flex;
    gap: 0 20px;
}
.likeSettingSelect .selectBg{
    flex: 1 1 0;
}
.likeSettingCheck{
    margin-top: 20px;
    padding: 28px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid var(--border-color-dark);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.likeSettingCheck .checkPrimary{
    flex: 1 1 calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
}
.likeSettingRight{
    flex: 0 0 auto;
    width: 36%;
    max-width: 308px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.keyword{
    padding: 6px 16px 6px 20px;
    min-height: 36px;
    background-color: var(--primary-lighten5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    gap: 0 8px;
}
.likeSettingRight .keyword{
    min-width: calc(50% - 8px);
}
.keyword>p{
    font-size: 16px;
    color: var(--primary-base);
    text-decoration: underline;
}
.deleteBtn{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: url(../image/icon-close-danger.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    transition: var(--transition);
}
@media screen and (min-width: 1201px){
    .deleteBtn:hover{
        background-color: var(--danger-lighten5);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .likeSettingW{
        display: block;
    }
    .likeSettingSelect{
        display: block;
    }
    .likeSettingSelect .selectBg + .selectBg{
        margin-top: 10px;
    }
    .likeSettingCheck{
        padding: 20px 16px;
        display: block;
    }
    .likeSettingCheck .checkPrimary{
        width: 100%;
        max-width: 100%;
    }
    .likeSettingCheck .checkPrimary + .checkPrimary{
        margin-top: 8px;
    }
    .likeSettingRight{
        width: 100%;
        max-width: 100%;
        gap: 8px;
        margin-top: 20px;
    }
    .keyword{
        padding: 4px 8px 4px 12px;
        min-height: 32px;
        gap: 0 4px;
    }
    .likeSettingRight .keyword{
        min-width: 0;
    }
    .keyword>p{
        font-size: 14px;
    }
}
@media screen and (max-width: 500px){
}


.myModalContents{
    display: flex;
    align-items: flex-start;
    gap: 0 30px;
}
.myModalLeft{
    width: 60%;
}
.myModalRight{
    width: calc(40% - 30px);
}
.myModalRight:has(.tablePrimary){
    border-radius: 8px;
    padding: 35px;
    border: 1px solid var(--border-color-dark);
}
.moPanelBtn{
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 20px;
    cursor: default;
}
.selectEdu{
    padding: 24px;
    border: 1px solid var(--border-color-dark);
    border-radius: 8px;
    position: relative;
}
.selectEdu + .selectEdu{
    margin-top: 20px;
}
.selectEdu .label{
    font-weight: 500;
    margin-bottom: 16px;
}
.selectEdu>p{
    font-size: 18px;
    font-weight: 600;
}
.selectEdu .deleteBtn{
    position: absolute;
    top: 13px;
    right: 13px;
}
.eduAddW .inputPrimary{
    height: 48px;
}
.moLabelCircle{
    font-weight: 700;
}
.moLabelCircle.primary{
    color: var(--primary-base);
}
.moLabelCircle.danger{
    color: var(--danger-base);
}
.moLabelCircle.orange{
    color: var(--orange-base);
}
.moLabelCircle.grey{
    color: var(--grey-base);
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){    
    .myModalContents{
        display: block;
    }
    .myModalLeft{
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(var(--view-height) - 320px);
        padding-right: 10px;
    }    
    .myModalLeft::-webkit-scrollbar {
        width: 5px;
    }
    .myModalLeft::-webkit-scrollbar-track {
        background-color:var(--primary-lighten5);
        border-radius: 999px;
    }
    .myModalLeft::-webkit-scrollbar-thumb { 
        background-color: var(--primary-base);
        border-radius: 999px;
    }
    .myModalLeft::-webkit-scrollbar-button {
        display: none;
    }
    .modalBody:has(.moPanelW){
        padding-bottom: 0;
    }
    .myModalRight{
        width: 100%;
        margin-top: 20px;
        position: relative;
        height: 54px;
        padding-bottom: 10px;
    }
    .myModalRight:has(.tablePrimary){
        border-radius: 0;
        padding: 0 0 10px 0;
        border: 0;
    }
    .moPanelBody{
        height: 0;
        overflow: hidden;
        background-color: #fff;
        padding-right: 6px;
        transition: var(--transition);
    }
    .moPanelW.active .moPanelBody{
        padding-bottom: 16px;
    }
    .moPanelInner{
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(var(--view-height) - 340px);
        padding: 0 10px 0 16px;
    }
    .moPanelW{
        position: absolute;
        bottom: 10px;
        left: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .08);
        border-radius: 8px;
        width: 100%;
        overflow: hidden;
    }
    .moPanelBtn{
        cursor: pointer;
        height: 44px;
        position: relative;
        font-size: 16px;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding: 0 42px 0 16px;
        width: 100%;
    }
    .moPanelBtn>span{
        display: inline-block;
        margin-left: 4px;
    }
    .moPanelBtn::after {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        background-image: url(../image/icon-chevron-left.svg);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center;
        top: 50%;
        right: 16px;
        transform: translateY(-50%) rotate(-90deg);
        transition: var(--transition);
    }
    .moPanelW.active .moPanelBtn::after{
        transform: translateY(-50%) rotate(90deg);
    }
}
@media screen and (max-width: 767px){
    .modalBody:has(.moPanelW){
        margin-bottom: 10px;
    }

    .myEduTable colgroup,
    .myEduTable thead{
        display: none;
    }
    .myEduTable, 
    .myEduTable tbody,
    .myEduTable td{
        display: block;
    }
    .myEduTable{
        border-top: 0;
    }
    .myEduTable tr{
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        gap: 6px 12px;
    }
    .myEduTable td{
        text-align: left;
    }
    .myEduTable td .tableInner{
        min-height: 0;
        padding: 0;
        display: block;
        text-align: left;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        text-align: inherit;
    }
    .myEduTable .tableBtn{
        text-align: left;
    }

    .myEduTable1 tbody>tr:first-child{
        padding-top: 0;
    }
    .myEduTable1 tr{
        align-items: center;
    }
    .myEduTable1 tr>td:nth-child(1){
        flex: 0 0 auto;
    }
    .myEduTable1 tr>td:nth-child(2){
        flex: 0 0 auto;
        font-size: 16px;
        font-weight: 500;
    }
    .myEduTable1 tr>td:nth-child(3){
        flex: 1 1 100%;
        padding-left: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-top: 4px;
    }
    .myEduTable1 tr>td:nth-child(4){
        flex: 1 1 100%;
        padding-left: 30px;
        font-size: 14px;
        font-weight: 600;
        color: var(--grey-lighten1);
    }
    .selectEdu{
        padding: 20px 16px;
    }
    .selectEdu + .selectEdu{
        margin-top: 16px;
    }
    .selectEdu .label{
        margin-bottom: 8px;
    }
    .selectEdu>p{
        font-size: 16px;
    }
    .selectEdu .deleteBtn{
        top: 10px;
        right: 10px;
    }
    .eduAddW .inputPrimary{
        height: 44px;
    }
    .myEduTable2,
    .myEduTable3{
        border-top: 1px solid var(--border-color-dark);
    } 
    .myEduTable2 tr,
    .myEduTable3 tr{
        position: relative;
    }
    .myEduTable2 .moLabelCircle{
        top: 27px;
    }
    .myEduTable3 .moLabelCircle{
        top: 50%;
        transform: translateY(-50%);
    }    
    .myEduTable2 tr>td:nth-child(1),
    .myEduTable3 tr>td:nth-child(1){
        flex: 1 1 100%;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 4px;
        padding-right: 48px;
    }
    .myEduTable2 tr>td:nth-child(2),
    .myEduTable3 tr>td:nth-child(2){
        flex: 1 1 100%;
        padding-right: 48px;
    }
    .myEduTable2 tr>td:nth-child(3),
    .myEduTable2 tr>td:nth-child(4){
        flex: 1 1 100%;
        font-size: 14px;
        font-weight: 600;
        color: var(--grey-lighten1);
        text-align: right;
        padding-left: 110px;
        position: relative;
    }
    .myEduTable2 tr>td:nth-child(3)::before,
    .myEduTable2 tr>td:nth-child(4)::before{
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 108px;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
        color: var(--grey-lighten1);
    }
    .myEduTable2 tr>td:nth-child(3)::before{
        content: "지정과정수";
    }
    .myEduTable2 tr>td:nth-child(4)::before{
        content: "이수시간 / 의무시간";
    }
    .myEduTable2 tr>td:nth-child(1){
        margin-bottom: 4px;
    }
    .myEduTable3 tr{
        gap: 0;
    }
    .myEduTable3 tr>td:nth-child(1){
        margin-bottom:10px;
    }

    .moLabelCircle{
        position: absolute;
        right: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
        font-size: 14px;
        border-radius: 50%;
    }
    .moLabelCircle.primary{
        background-color: var(--primary-lighten5);
    }
    .moLabelCircle.danger{
        background-color: var(--danger-lighten5);
    }
    .moLabelCircle.orange{
        background-color: var(--orange-lighten5);
    }
    .moLabelCircle.grey{
        background-color: var(--grey-lighten5);
    }
}
@media screen and (max-width: 500px){
}

.template{
    display: block;
}
.template>li{
    display: flex;
    align-items: flex-start;
    gap: 0 40px;
}
.template>li + li{
    margin-top: 16px;
}
.dragArea{
    display: flex;
    align-items: center;
    gap: 0 8px;
    cursor: grab;
    min-width: 154px;
}
.templateTit{
    font-size: 18px;
    display: block;
}
.templateTit:not(.moveAble .templateTit){
    min-width: 154px;
    padding-left: 32px;
}
.templateImg{
    flex-basis: 0;
    flex-grow: 1;
    max-width: 44%;
    margin-left: auto;
    position: relative;
}
.templateImg>img{
    width: 100%;
    display: block;
}
.templateImg::after{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-width: 2px;
    border-style: solid;
    border-color: var(--border-color-dark);
    transition: var(--transition);
}
.template>li>.toggleSwitchW>p{
    min-width: 41px;
}
.moveAble .templateImg::after{
    border-style: dashed;
}
.template>li:has(input:checked) .templateImg::after,
.template>li:not(:has(.switchSlider)) .templateImg::after{
    border-color: var(--orange-base);
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .template>li{
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
    }
    .template>li + li{
        margin-top: 20px;
    }
    .dragArea{
        gap: 0 6px;
        min-width: 0;
    }
    .template>li>.toggleSwitchW{
        margin-left: auto;
    }
    .template>li>.toggleSwitchW>p{
        display: none;
    }
    .templateTit{
        font-size: 16px;
    }
    .templateTit:not(.moveAble .templateTit){
        min-width: 0;
        padding-left: 0;
    }
    .templateImg{
        flex: 1 1 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 500px){
}

.gridSlideW{
    margin: -20px -10px;
    overflow: hidden;
    position: relative;
}
.gridSlide{
    width: 200%;
    display: flex;
    flex-wrap: wrap;
    transform: translateX(0);
    transition: transform var(--transition);
    will-change: transform;
}
.gridSlide .mainEduW{
    padding: 20px 10px;
    width: calc(100% / 8);
}
@media screen and (min-width: 1201px){
}
@media screen and (max-width: 1439px){
    .gridSlide .mainEduW{
        width: calc(100% / 6);
    }
}
@media screen and (max-width: 1200px){
    .gridSlide{
        width: 600%;
    }
    .gridSlide .mainEduW{
        width: calc(100% / 12);
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .gridSlideW{
        margin: -10px;
    }
    .gridSlide .mainEduW{
        padding: 10px;
    }
}
@media screen and (max-width: 500px){
    .gridSlideW{
    }
    .gridSlide{
        width: 2400%
    }
    .gridSlide .mainEduW{
        width: calc(100% / 24);
    }
}