html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: rgb(0 0 0 / 20%);
}

.tutorial {
    display: flex;
}

.t-cansel {
    position: absolute;
    top: 2%;
    right: 1.5%;
}

.t-cansel i {
    font-size: 24px;
}

.t-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.t-icon span {
    font-family: "NotoSansKR-Light";
    margin-top: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}
.la-box a span {
    font-size: 8px;
}
.la-box {
    display: flex;
    align-items:flex-end;
    position: relative;
    z-index: 10;
}

.top-label {
    background-image: url("../img/t-labal.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 354px;
    height: 74px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    padding-left: 60px;
    transition: all ease-in-out 0.5s;
    z-index: 1;
}
.top-label.active {
    opacity: 0;
}

.nav {
    width: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 2;
    transform: translateX(-100%);
    transition: all ease-in-out 0.5s;
}

.nav.active {
    transform: translateX(0);
}

.nav-top {
    display: flex;
    padding: 0 36px;
    padding-top: 35px;
    padding-bottom: 72px;
    align-items: flex-end;
    background-image: url("../img/depth_back.png");
    background-position: top;
    background-size: cover;
}
.nav-top p {
    font-size: 13px;
    font-family: "NotoSansKR-Regular";
    letter-spacing: -0.33px;
    line-height: 20px;
    color: #fff;
}

.nav-top p strong {
    font-family: "NotoSansKR-Bold";
    color: #32b0ff;
}

.nav-top a {
    padding: 1px 8px;
    border-radius: 16px;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.08);
    border: solid 1px rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.15);
    font-family: "NotoSansKR-Medium";
    font-size: 8px;
    line-height: 1.5;
    text-decoration: none;
    color: #fff;
    margin-left: 5px;
}

.top-label img {
    position: absolute;
    width: 100%;
    z-index: -1;
    bottom: 0;
    right: 5px;
}

.top-label p {
    font-size: 13px;
    font-family: "NotoSansKR-Regular";
    letter-spacing: -0.33px;
    line-height: 20px;
}

.top-label a {
    padding: 1px 8px;
    border-radius: 16px;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.08);
    border: solid 1px rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.15);
    font-family: "NotoSansKR-Medium";
    font-size: 8px;
    line-height: 1.5;
    text-decoration: none;
    color: #fff;
    margin-left: 5px;
}

.top-label p strong {
    font-family: "NotoSansKR-Bold";
    color: #32b0ff;
}

.closeNav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.closeNav i {
    margin: 0;
    font-size: 28px;
}

.nav_depth {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.d-title-box {
    margin: 0 36px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    display: flex;
    padding-bottom: 15px;
    color: #fff;
    font-family: "NotoSansKR-Medium";
    font-size: 18px;
    letter-spacing: -0.45px;
    font-weight: 100;
    align-items: flex-end;
}

.d-title-box:not(:first-child) {
    margin-top: 24px;
}

.d-title-box h2 {
    font-family: "NotoSansKR-Medium";
    font-weight: 100;
    margin-right: auto;
    opacity: 0.95;
    font-size: 18px;
}

.d-title-box span {
}

.depth_2 {
    margin: 24px 36px;
    margin-bottom: 14px;
    overflow: hidden;
    /* height: 0; */
    /* transition: all 0.5s; */
    display: none;
}

input[name="depth_title"]:checked ~ .depth_2 {
    /* transition: all 0.5s; */
    /* height: auto; */
}

.depth_2 li {
    margin: 10px 0;
}

.depth_2 a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: "NotoSansKR-Regular";
    letter-spacing: -0.35px;
    opacity: 0.8;
}

.m-plus {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.m-plus span {
    width: 11px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s;
}

.m-plus span:nth-child(2) {
    transform: translate(-50%,-50%) rotate(90deg);
}

.d-title-box .m-plus span:nth-child(2).active {
    transform: translate(-50%,-50%);
}
input[name="depth_title"] {
    display: none;
}

.menuBtn {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    top: 37px;
    left: 30px;
    /* box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    transition: all ease-in-out 0.5s;
}
.menuBtn.active {
    opacity: 0;
    transition: all ease-in-out 0.5s;
}
.fa-bars {
    color: #fff;
    font-size: 24px;
}

.quickWrapper {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    align-items: center;
}

.subquick {
    position: absolute;
    color: #fff;
    top: -30%;
    font-family: 'NotoSansKR-Light';
    font-size: 12px;
    text-align: center;
    width: max-content;
}

.quickMenu {
    width: 70px;
    height: 242px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    margin-right: 20px;
}

.quickContents {
    width: 0;
    height: 719px;
    transition: all 0.35s;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    transform: translateX(200%);
}

.quickContents.opened {
    width: 400px;
    transform: translateX(0);
}

.guideIcon, .consulting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-family: "NotoSansKR-Light";
    margin-top: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.guideIcon span, .consulting a {
    font-family: "NotoSansKR-Light";
    margin-top: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}


.quickLine {
    width: 70%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 10px 0;
}


.gtxt {
    position: absolute;
    z-index: 9;
    right: 5px;
    top: 41%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: -1.5px;
    font-family: "NotoSansKR-Light";
}

/* tutorial */
.tutoralWrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tutorialMenu {
    position: absolute;
    top: 9px;
    left: 7px;
    display: flex;
}
.tutorialMenu img {
    height: 80px;
}

.tutorialMenuText, .tutorialQuickText {
    margin-top: 28px;
    margin-left: 10px;
    color: #fff;
    font-family: "NotoSansKR-Medium";
}
.tutorialMenuText h3,.tutorialQuickText h3 {
    font-size: 18px;
}
.tutorialMenuText p,  .tutorialQuickText p{
    font-family: "NotoSansKR-Light";
    margin-top: 8px;
    line-height: 1.4;
}

.tutorialMain {
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 39.3vw; */
    color: #fff;
    padding: 2vw 8.4vw;
    position: relative;
}
.tutorialMain h2 {
    font-family: "NotoSansKR-Medium";
    font-size: 24px;
    text-shadow: 5px 6px 6px rgb(0 0 0 / 20%);
    margin-bottom: 13px;
}

.tutorialMain p {
    font-family: "NotoSansKR-Light";
    font-size: 20px;
}


.circleWrapper {
    margin-top: 36px;
    display: flex;
}

.circleBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.circleBox:not(:last-of-type) {
    margin-right: 86px;
}

.tutorialMain .circle {
    border-radius: 50%;
    width: 113px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(to top, #00aaff, #8168ff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    margin-bottom: 10px;
}

.circleBox span {
    opacity: 0.8;
    font-family: 'NotoSansKR-Regular';
}

/* tutorialCansel */

.tutorialCansel {
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 50px;
    right: 43px;
    color: #fff;
}

.tutorialCansel label {
    display: flex;
    align-items: center;
    font-family: "NotoSansKR-Light";
}

.tutorialCansel label:first-of-type {
    margin-right: 15px;
}

#canselToday,#canselAll {
    margin-right: 7px;
    margin-top: 3px;
}

.tutorialCansel .material-symbols-outlined {
    font-size: 22px;
    margin-left: 20px;
    display: inline;
    cursor: pointer;
}
/* tutorial Quick */
.tutorialQuick {
    display: flex;
    align-items: flex-start;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
}
.tutorialQuickText {
    margin-left: 0;
    margin-right: 10px;
    text-align: right;
    margin-top: 20px;
}
.guideIcon img {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.tutorialQuickImg {
    width: 111px;
    height: 157px;
    background-image: url(../src/tutorial/web.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* ipad pro 가로모드 */
@media (orientation: Landscape) and (max-width:1366px) {
    .tutorialMain {
        padding: 2vw 7vw;
    }
    .quickContents {
        height: 60vh;
    }
    .gtxt {
        top: 40%;
    }
}

/* ipad pro 세로모드 */
@media (orientation: Portrait) and (max-width:1024px) {
    .tutorialMain {
        padding: 2vw 7vw;
    }
    .tutorialQuick {
        flex-direction: column-reverse;
        align-items: flex-end;
        right: 19px;
        top: 52.1%;
    }
    .tutorialQuickImg {
        width: 70px;
        height: 215px;
        background-image: url(../src/tutorial/tab.png);
    }
    .quickMenu {
        width: 66px;
        height: 230px;
    }
    .tutorialQuickText {
        position: absolute;
        width: 200px;
        top: 92%;
    }
    .subquick {
        top: -30%;
    }
    .gtxt {
        top: 43%;
    }
}
/* ipad 가로모드 */
@media (orientation: Landscape) and (max-width:1024px) {
    .tutorialQuick {
        flex-direction: column-reverse;
        align-items: flex-end;
        right: 19px;
        top: 53.5%;
    }
    .tutorialQuickImg {
        width: 70px;
        height: 215px;
        background-image: url(../src/tutorial/tab.png);
    }
    .quickMenu {
        width: 66px;
        height: 234px;
    }
    .tutorialQuickText {
        position: absolute;
        width: 200px;
        top: 92%;
    }
    .quickContents {
        height: 580px;
    }
    .quickContents.opened {
        width: 350px;
    }
    .gtxt {
        top: 47%;
    }
}

/* ipad 세로모드 */
@media (orientation: Portrait) and (max-width:768px) {
    .tutorialMain h2 {
        font-size: 20px;
    }

    .tutorialMain p {
        font-size: 16px;
    }
    .circleBox span {
        font-size: 14px;
    }
    .circleBox:not(:last-of-type) {
        margin-right: 35px;
    }
    .tutorialQuick {
        top: 52.8%;
    }
    .tutorialQuickImg {
        width: 70px;
        height: 215px;
        background-image: url(../src/tutorial/tab.png);
    }
    .quickMenu {
        width: 66px;
        height: 234px;
    }
    .tutorialQuickText {
        position: absolute;
        width: 200px;
        top: 92%;
    }
    .gtxt {
        top: 40%;
    }
}


/* 갤럭시 폴드 */
@media (orientation: Landscape) and (max-width:720px) {
    .tutorialMenuText, .tutorialQuickText {
        font-size: 14px;
    }
    .tutorialMain h2 {
        font-size: 18px;
    }
    .tutorialMain p {
        font-size: 16px;
    }
    .tutorialMain .circle {
        width: 75px;
        height: 75px;
    }
    .circleBox:first-of-type .circle img {
        width: 20px;
    }
    .circle img {
        width: 35px;
    }
    .tutorialQuick {
        top: 55.5%;
    }
    .tutorialCansel {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
    .tutorialCansel label:first-of-type {
        margin-right: 0;
    }
    .gtxt {
        top: 31%;
    }
}

@media (max-width:450px) {
    .t-icon span {
        font-size: 12px;
    }
    .guideIcon, .consulting {
        font-size: 12px;
    }
    .menuBtn {
        display: none;
    }
    .tutorialMenuText h3, .tutorialQuickText h3 {
        font-size: 16px;
    }
    .gtxt {
        top: 38%;
    }
    .tutorialMenuText p, .tutorialQuickText p {
        font-size: 14px;
    }
    .tutoralWrapper {
        flex-direction: column;
    }
    .tutorialMain {
        margin-top: auto;
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 5vw 0;
    }
    .tutorialCansel {
        width: 100%;
        position: unset;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.55);
        padding-bottom: 8px;
    }
    .tutorialCansel .material-symbols-outlined {
        margin-left: 0;
    }

    .circleBox span {
        font-size: 11px;
    }
    .quickContents {
        width: 90vw;
        position: absolute;
        right: 0;
        transform: translateX(100%);
    }
    .quickContents.opened {
        width: 90vw;
        transform: translateX(0%);
    }
    .quickWrapper {
        right: 0;
    }
    .quickMenu {
        width: 65px;
        height: 234px;
        margin-right: 15px;
    }
    .quickLine {
        margin: 7px 0;
    }
    .quickContents {
        height: 568px;
    }
    .t-icon a {
        font-size: 12px;
    }


    .tutorialQuick {
        flex-direction: row;
        top: 50%;
        transform: translateY(-50%);
        right: 14px;
        align-items: flex-start;
    }

    .tutorialQuickImg {
        width: 100px;
        height: 157px;
        background-image: url(../src/tutorial/web.png);
    }
    .tutorialQuickText {
        position: unset;
        width: unset;
        top: unset;
    }
    .guideIcon span, .consulting a  {
        font-size: 12px;
        margin-top: 0;
    }

    .tutorialMain p {
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
        width: 80%;
    }
    .circleWrapper {
        width: 80%;
        margin-top: 10px;
        display: flex;
        justify-content: space-evenly;
    }
    .tutorialMain .circle {
        width: 52px;
        height: 52px;
    }
    .circleBox:first-of-type .circle img {
        width: 30%;
    }

    .circleBox:not(:first-of-type) .circle img {
        width: 65%;
    }

    .tutorialCansel label {
        font-size: 14px;
        align-items: baseline;
    }

    .circleBox:not(:last-of-type) {
        margin-right: 0;
    }
    .tutorialMain h2 {
        margin-bottom: 5px;
    }
    .tutorialMain .circle {
        margin-bottom: 5px;
    }
    .subquick {
        width: max-content;
    }
    .top-label {
        display: none;
    }
    .nav-top {
        background-image: url("../img/bg.png");
        background-size: contain;
        background-position: top right;
        background-repeat: no-repeat;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-top: 25px;
    }
    .nav {
        width: 100%;
        background-color: #2a2b2c;
    }
    .depth_2 {
        background-color: #000;
        width: 100%;
        margin: 0;
    }
    .depth_2 li {
        margin-left: 36px;
    }
    .depth_2 li:first-child {
        margin-top: 24px;
    }
    .depth_2 li:last-child {
        margin-bottom: 24px;
    }
    .d-title-box h2 {
        font-size: 16px;
    }
    .nav_depth {
        padding-top: 8px;
    }
    .d-title-box {
        margin-right: 0;
        border-bottom: 1px solid #000;
    }
    .m-plus {
        margin-right: 24px;
    }
    .menuBtn {
        width: 48px;
        height: 48px;
        top: 18px;
        left: 18px;
    }
}

@media (max-width:320px) {
    .quickContents.opened {
        width: 100vw;
    }
    .gtxt {
        top: 36%;
    }
}