.header {
    position: fixed; left: 0; top: 0; width: 100%; z-index: 100000; transition-duration: 0.3s; box-sizing: border-box; border-bottom: 1px solid rgba(255,255,255,0);
}
.header__container {
    display: flex; justify-content: space-between; align-items: center;
}
.header__logo {
    padding: 0 45px;
}
.header__logo img {
    max-width: 126px;
}
.header__logo img.black{ display: none; }
.header__nav {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    font-size: 18px; font-family: 'Pretendard'; font-weight: 500; letter-spacing: -0.05em;
    color: #fff; transition: color 0.3s; height: 100%; display: flex;
}
.header.black .header__nav {
    color: #000;
}
.header.black .header__logo img{ display: none; }
.header.black .header__logo img.black{ display: block; }
.header__nav-list {
    display: flex; align-items: center;
    /* gap: calc(80/18*1em); */
}
.header__nav-item {
    position: relative;
    transition: color 0.4s;
    height: 100%;
    display: flex;
    align-items: center;
}
.header__nav-item a {
    display: flex; align-items: center;
    height: 100%;
    padding: 0 40px;
}
.header__util {
    display: flex; align-items: center;
}
.header__hamburger {
    display: flex; flex-direction: column; gap: calc(10/18*1em);
    justify-content: center; align-items: center;
    width: 90px; height: 90px;
    background: #ff911d;
    cursor: pointer;
    margin-bottom: -1px;
}
.header__hamburger-line {
    display: block; width: 27px; height: 2px; background-color: #fff; transition-duration: 0.4s; transform-origin: center;
}

.header.ham .header__hamburger-line:nth-of-type(1){ transform: rotate(45deg) translate(8px, 8px); }
.header.ham .header__hamburger-line:nth-of-type(2){ transform: translateX(-100%); opacity: 0; }
.header.ham .header__hamburger-line:nth-of-type(3){ transform: rotate(-45deg) translate(8px, -8px); }


.header.on{ transform: translateY(-100%); }



.header.white{ border-color: #e7e7e7; }
.header.white .header__logo img.black{ display: none; }
.header.white .header__nav {
    color: #000;
}
.header.white .header__logo img{ display: none; }
.header.white .header__logo img.black{ display: block; }



@media screen and (max-width: 1440px) {
    .header__logo {
        padding: 0 40px;
    }
    .header__logo img {
        max-width: 120px;
    }
    .header__nav {
        font-size: 17px;
    }
    .header__hamburger {
        width: 90px; height: 90px;
        gap: 7px;
    }
    .header__hamburger-line {
        width: 25px;
    }

    .header.ham .header__hamburger-line:nth-of-type(1){ transform: rotate(45deg) translate(7px, 7px); }
    .header.ham .header__hamburger-line:nth-of-type(2){ transform: translateX(-100%); opacity: 0; }
    .header.ham .header__hamburger-line:nth-of-type(3){ transform: rotate(-45deg) translate(6px, -6px); }
}

@media screen and (max-width: 1280px) {
    .header__logo {
        padding: 0 35px;
    }
    .header__logo img {
        max-width: 110px;
    }
    .header__nav {
        font-size: 16px;
    }
    .header__nav-item a{
        padding: 0 30px;
    }
    .header__hamburger {
        width: 85px; height: 85px;
        gap: 7px;
    }
    .header__hamburger-line {
        width: 23px;
    }
}

@media screen and (max-width: 1024px) {
    .header__logo {
        padding: 0 30px;
    }
    .header__logo img {
        max-width: 100px;
    }
    .header__nav {
        font-size: 15px;
    }
    .header__hamburger {
        width: 70px; height: 70px;
        gap: 5px;
    }
    .header__hamburger-line {
        width: 21px;
    }
    .header.ham .header__hamburger-line:nth-of-type(1){ transform: rotate(45deg) translate(5px, 5px); }
    .header.ham .header__hamburger-line:nth-of-type(2){ transform: translateX(-100%); opacity: 0; }
    .header.ham .header__hamburger-line:nth-of-type(3){ transform: rotate(-45deg) translate(5px, -5px); }
}

@media screen and (max-width: 820px) {
    .header__nav {
        display: none;
    }
    .header__logo {
        padding: 0 25px;
    }
    .header__logo img {
        max-width: 150px;
    }
    .header__hamburger {
        width: 70px; height: 70px;
    }
    .header__hamburger-line {
        width: 20px;
    }
}

@media screen and (max-width: 500px) {
    .header__logo {
        padding: 0 20px;
    }
    .header__logo img {
        max-width: 100px;
    }
    .header__hamburger {
        width: 60px; height: 60px;
    }
    .header__hamburger-line {
        width: 18px;
    }
}

@media screen and (max-width: 360px) {
    .header__logo {
        padding: 0 15px;
    }
    .header__hamburger {
        width: 50px; height: 50px;
        gap: 4px;
    }
    .header__hamburger-line {
        width: 16px;
    }
    .header.ham .header__hamburger-line:nth-of-type(1){ transform: rotate(45deg) translate(4px, 4px); }
    .header.ham .header__hamburger-line:nth-of-type(2){ transform: translateX(-100%); opacity: 0; }
    .header.ham .header__hamburger-line:nth-of-type(3){ transform: rotate(-45deg) translate(5px, -5px); }
}

@media screen and (min-width: 821px) {
    .header__nav-item:hover {
        color: #6350f2;
    }
}


.aside {
    position: fixed; right: 0; top: 50%; z-index: 996;
    transform-origin: center bottom; transform: translateX(50%) translateY(-50%) rotate(-90deg); 
}
.aside__container {
    display: flex;
}
.aside__container a {
    display: flex; align-items: center; justify-content: center; gap: calc(10/17*1em);
    font-size: 17px; font-family: 'Pretendard'; font-weight: 500; letter-spacing: -0.05em; color: #fff;
    width: 130px; height: 45px;
}
.aside__container a.contact {
    background: #6350f2;
}
.aside__container a.experience {
    background: #e3442f;
}
.aside .aside__toggle {
    display: none;
}

@media screen and (max-width: 1440px) {
    .aside__container a {
        font-size: 16px;
        width: 120px; height: 42px;
    }
}

@media screen and (max-width: 1280px) {
    .aside__container a {
        font-size: 15px;
        width: 110px; height: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .aside__container a {
        font-size: 14px;
        width: 100px; height: 38px;
    }
}

@media screen and (max-width: 820px) {
    /*
    .aside {
        transform: translateX(68%) translateY(-50%) rotate(-90deg) scale(0.9);
        transition: all 0.3s;
    }
    .aside.open {
        transform: translateX(50%) translateY(-50%) rotate(-90deg) scale(0.9);
    }
    .aside .aside__toggle {
        display: flex; align-items: center; justify-content: center;
        font-family: "xeicon";
        position: absolute; right: 50%; top: 0%;
        display: block;
        width: calc(40/14*1em); height: calc(40/14*1em);
        font-size: 14px;
        color: #fff;
        background: #ff911d;
        text-align: center;
        line-height: calc(40/14*1em);
        transform: rotate(90deg) translate(-100%, -50%);
        transition: all 0.3s;
        cursor: pointer;
    }
    */

    .aside{ transform: translateX(50%) translateY(0) rotate(-90deg); top: auto; bottom: 25vh; }
}


.footer {
    background: #fff; padding: 55px calc(135/1920*100vw) 40px;
}
.footer .top {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 57px; padding-bottom: calc(60/57*1em)
}
.footer .top p {
    font-size: inherit; font-family: 'Poppins'; font-weight: 500; letter-spacing: -0.05em;
    color: #c2c2c2; line-height: calc(57/57*1em);;
}
.footer .top p b {
    color: #f36e3b;
    font-weight: 700;
}
.footer .top .topBtn {
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    width: calc(61/18*1em); height: calc(61/18*1em);
    font-size: 18px;
    background: #242424;
    border-radius: 50%;
    color: #fff;
}
.footer .top .topBtn::before {
    content: 'TOP'; 
    position: absolute; left: 50%; top: 100%;
    transform: translate(-50%, 0%);
    font-size: calc(17/18*1em); font-family: 'Poppins'; font-weight: 600; letter-spacing: -0.045em;
    color: #000; padding-top: calc(10/17*1em);
}
.footer .bottom {
    display: flex; 
}
.footer .bottom .box {
    display: flex; flex-direction: column; justify-content: space-between;
    padding-right: calc(350/1920*100vw);
}
.footer .bottom .box .logo {
    width: 126px;
}
.footer .bottom .box p {
    font-size: 14px; font-family: 'Poppins';
    letter-spacing: -0.045em; color: #000;
    line-height: calc(17/14*1em);
    padding-top: calc(60/14*1em);
    white-space: nowrap;
}
.footer .bottom .info {
    display: flex; align-items: flex-start;
    font-size: 17px; font-weight: 600; letter-spacing: -0.045em;
    color: #000; line-height: calc(17/17*1em);
}
.footer .bottom .info .head {
    padding-right: calc(45/17*1em);
    white-space: nowrap;
}
.footer .bottom .info .body {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: calc(20/17*1em) clamp(20px, 60/1650*100%, 60px);
}
.footer .bottom .info .body dl {
    display: flex; flex-direction: column;
    gap: calc(9/17*1em);
}
.footer .bottom .info .body dl dt {
    display: flex; align-items: center;
    gap: calc(15/17*1em); font-size: inherit;
    letter-spacing: -0.045em; font-family: "Poppins";
    color: #000;
}
.footer .bottom .info .body dl dd {
    font-size: inherit; font-family: "Pretendard";
    letter-spacing: -0.05em;
    color: #626262; line-height: 1.6;
    font-weight: 400; word-break: keep-all;
}

@media screen and (max-width: 1440px) {
    .footer {
        padding: 50px calc(120/1440*100vw) 35px;
    }
    .footer .top {
        font-size: 52px;
    }
    .footer .bottom .box {
        padding-right: calc(300/1440*100vw);
    }
    .footer .bottom .box .logo {
        width: 120px;
    }
    .footer .bottom .info {
        font-size: 16px;
    }
}

@media screen and (max-width: 1280px) {
    .footer {
        padding: 45px calc(100/1280*100vw) 30px;
    }
    .footer .top .topBtn {
        font-size: 16px;
    }
    .footer .bottom .box {
        padding-right: calc(250/1280*100vw);
    }
    .footer .bottom .box .logo {
        width: 110px;
    }
    .footer .bottom .info {
        font-size: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .footer {
        padding: 40px calc(80/1024*100vw) 25px;
    }
    .footer .bottom .box {
        padding-right: calc(200/1024*100vw);
    }
    .footer .bottom .box .logo {
        width: 100px;
    }
    .footer .bottom .info {
        font-size: 14px;
    }
}

@media screen and (max-width: 820px) {
    .footer {
        padding: 45px 20px 20px;
    }
    .footer .top {
        gap:calc(40/45*1em);
        font-size: 45px; padding-bottom: calc(60/45*1em);
    }
    .footer .top .topBtn {
        font-size: 14px;
    }
    .footer .bottom {
        width: 100%;
        flex-direction: column; gap: 40px;
        align-items: flex-start;
    }
    .footer .bottom .box {
        width: 100%;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    .footer .bottom .box .logo {
        width: 100px;
    }
    .footer .bottom .box p {
        padding-top: calc(20/14*1em);
    }
    .footer .bottom .info {
        width: 100%;
        justify-content: space-between; gap: 20px; font-size: 16px;
    }
    .footer .bottom .info .head {
        padding-right: 0; text-align: center;
    }
    .footer .bottom .info .body {
        width: 100%;
        grid-template-columns: 1fr; gap: 15px;
    }
}

@media screen and (max-width: 500px) {
    .footer .top {
        font-size: clamp(32px, 45/500*100vw, 45px); gap: 20px;
    }
    .footer .bottom .box .logo {
        width: 100px;
    }
    .footer .top .topBtn {
        font-size: 12px;
    }
    .footer .bottom {
        gap: 20px;
    }
    .footer .bottom .info {
        flex-direction: column;
        font-size: clamp(14px, 16/500*100vw, 16px);
    }
}

@media screen and (max-width: 360px) {
    .footer .top {
        font-size: clamp(22px, 32/500*100vw, 32px); gap: 15px;
    }
    .footer .top .topBtn {
        font-size: 10px;
    }
    .footer .bottom .box .logo {
        width: 80px;
    }
    .footer .bottom .box p {
        padding-top: calc(10/14*1em);
    }
    .footer .bottom .info {
        font-size: clamp(12px, 14/360*100vw, 14px);
    }
}





/* max-width */
@media screen and (max-width:1600px) {
	.max-1600{display: block;}
	.min-1601{display: none;}
	.max-1600-none{display: none;}
}
@media screen and (max-width:1440px) {
	.max-1440{display: block;}
	.min-1441{display: none;}
	.max-1440-none{display: none;}
}
@media screen and (max-width:1280px) {
	.max-1280{display: block;}
	.min-1281{display: none;}
	.max-1280-none{display: none;}
}
@media screen and (max-width:1024px) {
	.max-1024{display: block;}
	.min-1025{display: none;}
	.max-1024-none{display: none;}
}
@media screen and (max-width:820px) {
	.max-820{display: block;}
	.min-821{display: none;}
	.max-820-none{display: none;}
}
@media screen and (max-width:500px) {
	.max-500{display: block;}
	.min-501{display: none;}
	.max-500-none{display: none;}
}
@media screen and (max-width:320px) {
	.max-320{display: block;}
	.min-321{display: none;}
	.max-320-none{display: none;}
}


/* min-width */
@media screen and (min-width:1601px) {
	.min-1601{display: block;}
	.max-1600{display: none;}
	.min-1601-none{display: none;}
}
@media screen and (min-width:1441px) {
	.min-1441{display: block;}
	.max-1440{display: none;}
	.min-1441-none{display: none;}
}
@media screen and (min-width:1281px) {
	.min-1281{display: block;}
	.max-1280{display: none;}
	.min-1281-none{display: none;}
}
@media screen and (min-width:1025px) {
	.min-1025{display: block;}
	.max-1024{display: none;}
	.min-1025-none{display: none;}
}
@media screen and (min-width:821px) {
	.min-821{display: block;}
	.max-820{display: none;}
	.min-821-none{display: none;}
}
@media screen and (min-width:501px) {
	.min-501{display: block;}
	.max-500{display: none;}
	.min-501-none{display: none;}
}
@media screen and (min-width:321px) {
	.min-321{display: block;}
	.max-320{display: none;}
	.min-321-none{display: none;}
}


/* 마우스오버 메뉴 */
.overmenu{ position: fixed; top: 0; left: 0; width: 100%; background-color: #fff; z-index: 9999; font-family: 'Pretendard'; height: 0; transition-duration: 0.4s; overflow: hidden; word-break: keep-all; border-bottom: 1px solid rgba(0,0,0,0.05); }
.overmenu.on{ height: 99px; }

.overmenu > div{ position: absolute; top: 0; left: 0; width: 100%; z-index: 9999; opacity: 0; pointer-events: none; transition-duration: 0.4s; }
.overmenu > div.on{ opacity: 1; pointer-events: unset; }

.overmenu > ._1{ padding-top: 160px; padding-bottom: 100px; box-sizing: border-box; }
.overmenu .prodlist{ width: 100%; display: flex; justify-content: center; gap: calc(26 / 1480 * 100%); }
.overmenu .prodlist li{ width: calc(223 / 1480 * 100%); }
.overmenu .prodlist li > a{ display: block; }
.overmenu .prodlist li .thumb{ width: 100%; border-radius: 11px; overflow: hidden; position: relative; border: 1px solid #e4e4e4; box-sizing: border-box; }
.overmenu .prodlist li .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.overmenu .prodlist li .thumb .over{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(68,114,228, 0.86); transition-duration: 0.5s; font-size: 18px; font-family: 'Poppins', 'Pretendard'; font-weight: 500; letter-spacing: -0.05em; display: flex; align-items: center; justify-content: center; color: #fff;  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); text-align: center; }
.overmenu .prodlist li dl{ line-height: 1.3; margin-top: 18px; }
.overmenu .prodlist li dl dt{ font-size: 18px; letter-spacing: -0.05em; font-weight: 500; transition-duration: 0.2s; }
.overmenu .prodlist li dl dd{ font-size: 16px; letter-spacing: -0.05em; font-weight: 300;color: #454545; margin-top: 6px; }

.overmenu .ind__ .prodlist li .thumb{ border-width: 2px; }

@media screen and (min-width: 821px){
    .overmenu .prodlist li:hover .thumb .over{ clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%); }
    .overmenu .prodlist li:hover dl dt{ color: #f36e3b; }
}

.overmenu > ._2{ display: flex; padding-top: 90px; }
.overmenu > ._2 .lbx{ width: 50%; padding: 0 calc(60 / 1920 * 100%); padding-top: 55px; padding-bottom: 80px; padding-right: calc(175 / 1920 * 100%); box-sizing: border-box; display: flex; justify-content: flex-end; }
.overmenu > ._2 .lbx .solutions{ width: 100%; max-width: 250px; }
.overmenu > ._2 .lbx .solutions li{ padding: 20px 0; font-size: 18px; letter-spacing: -0.05em; font-weight: 500; transition-duration: 0.2s; cursor: pointer; }
.overmenu > ._2 .lbx .solutions li.on{ color: #f36e3b; }

.overmenu > ._2 .rbx{ width: 50%; background-color: #fafafa; box-sizing: border-box; position: relative; }
.overmenu > ._2 .rbx .depths{ position: absolute; top: 0; left: 0; padding: 0 calc(60 / 960 * 100%); padding-top: 55px; padding-bottom: 80px; opacity: 0; transition-duration: 0.5s; pointer-events: none; }
.overmenu > ._2 .rbx .depths.on{ opacity: 1; pointer-events: unset; }
.overmenu > ._2 .rbx .depths li{ margin-bottom: 10px; }
.overmenu > ._2 .rbx .depths li:last-of-type{ margin-bottom: 0; }
.overmenu > ._2 .rbx .depths li > a{ display: flex; align-items: center; padding: 20px 0; }
.overmenu > ._2 .rbx .depths li > a .icons{ width: 50px; height: 50px; border-radius: 7px; background-color: #ffe9e2; color: #f36e3b; transition-duration: 0.2s; flex-shrink: 0; margin-right: 20px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.overmenu > ._2 .rbx .depths li > a dl{ line-height: 1.3; }
.overmenu > ._2 .rbx .depths li > a dl dt{ font-size: 17px; font-weight: 500; letter-spacing: -0.05em; transition-duration: 0.2s; margin-top: 5px; }
.overmenu > ._2 .rbx .depths li > a dl dd{ font-size: 15px; font-weight: 300; letter-spacing: -0.05em; color: #676767;  }


@media screen and (min-width: 821px){
    .overmenu > ._2 .lbx .solutions li:hover{ color: #f36e3b; }
    .overmenu > ._2 .rbx .depths li:hover > a .icons{ background-color: #f36e3b; color: #fff; }
    .overmenu > ._2 .rbx .depths li:hover > a dl dt{ color: #f36e3b; }
}

.overmenu > ._3{ padding-top: 145px; padding-bottom: 100px; }
.overmenu .flxtop{ display: flex; align-items: center; margin-bottom: 25px; }
.overmenu .flxtop .icon{ width: 40px; height: 40px; border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 20px; }
.overmenu .flxtop strong{ display: block; font-size: 18px; font-weight: 600; letter-spacing: -0.05em; line-height: 1.3; }

.overmenu .ind__{ margin-top: 70px; }

.overmenu .prod__ .flxtop .icon{ background-color: #f0e8ff; color: #854fce; }
.overmenu .ind__ .flxtop .icon{ background-color: #ddffe4; color: #139751; }

.overmenu > ._4{ padding-top: 160px; padding-bottom: 105px; box-sizing: border-box; }

.overmenu._1{ height: 465px; }
.overmenu._2{ height: 630px; }
.overmenu._3{ height: 815px; }
.overmenu._4{ height: 465px; }




@media screen and (max-width: 1280px){
    .overmenu > ._1{ padding-top: 130px; }
    .overmenu .prodlist li .thumb .over{ font-size: 15px; }
    .overmenu .prodlist li dl{ margin-top: 13px; }
    .overmenu .prodlist li dl dt{ font-size: 16px; }
    .overmenu .prodlist li dl dd{ font-size: 14px; margin-top: 3px; }

    .overmenu > ._2{ padding-top: 85px; }
    .overmenu > ._2 .lbx{ padding-top: 40px; }
    .overmenu > ._2 .lbx .solutions li{ font-size: 16px; padding: 15px 0; }

    .overmenu > ._2 .rbx .depths{ padding-top: 40px; }
    .overmenu > ._2 .rbx .depths li{ margin-bottom: 0; }
    .overmenu > ._2 .rbx .depths li > a{ padding: 15px 0; }
    .overmenu > ._2 .rbx .depths li > a .icons{ width: 45px; height: 45px; margin-right: 15px; }
    .overmenu > ._2 .rbx .depths li > a dl dd{ font-size: 14px; }

    .overmenu > ._3{ padding-top: 130px; }
    .overmenu .flxtop{ margin-bottom: 15px; }
    .overmenu .flxtop strong{ font-size: 16px; }
    .overmenu .ind__{ margin-top: 40px; }

    .overmenu > ._4{ padding-top: 130px; }

    .overmenu._1{ height: 380px; }
    .overmenu._2{ height: 500px; }
    .overmenu._3{ height: 650px; }
    .overmenu._4{ height: 380px; }

    
}

@media screen and (max-width: 1024px){
    .overmenu > ._1{ padding-top: 120px; }
    .overmenu > ._2{ padding-top: 70px; }
    .overmenu > ._4{ padding-top: 120px; }

    .overmenu._1{ height: 330px; }
    .overmenu._4{ height: 330px; }
}

@media screen and (max-width: 820px){
    .overmenu{ display: none; }
}




/* 전체메뉴 */
.header.ham ~ .hammenu{ opacity: 1; pointer-events: unset; transform: translateX(0); }
.hammenu{ width: 100%; height: 100%; position: fixed; right: 0; top: 0; z-index: 9997; max-width: 567px; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; font-family: 'Pretendard'; word-break: keep-all; transform: translateX(100%); opacity: 0; pointer-events: none; transition-duration: 0.4s; }
.hammenu .wrap{ width: auto; margin: 0 auto; }


.hammenu .hamnav > li{ margin-bottom: 65px; }
.hammenu .hamnav > li:last-of-type{ margin-bottom: 0; }
.hammenu .hamnav > li > span{ font-size: 22px; letter-spacing: -0.05em; font-weight: 600; display: block; position: relative; }
.hammenu .hamnav > li > span::after{ content: ''; display: block; width: 20px; height: 2px; background-color: #f36e3b; position: absolute; top: calc(100% + 15px); left: 0; }
.hammenu .hamnav > li > ol{ display: flex; margin-top: 35px; }
/* .hammenu .hamnav > li > ol li{ margin-right: 35px; }
.hammenu .hamnav > li > ol li:last-of-type{ margin-right: 0; } */
.hammenu .hamnav > li > ol li > a{ display: block; padding: 10px 17.5px; box-sizing: border-box; font-size: 17px; letter-spacing: -0.05em; transition-duration: 0.2s; }
.hammenu .hamnav > li > ol li:first-of-type > a{ padding-left: 0; }
.hammenu .hamnav > li > ol li:last-of-type > a{ padding-right: 0; }

.hammenu .wrap.mob{ display: none; width: 100%; padding: 0 25px; box-sizing: border-box; height: 100%; padding-top: 70px; padding-bottom: 20px; }
.hammenu .wrap.mob .mainmenu{
    width: 100%;
    height: 100%;
    overflow: auto;
}

.hammenu .wrap.mob .mainmenu > li > span{
    font-size: 22px;
    letter-spacing: -0.05em;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.hammenu .wrap.mob .mainmenu > li > span::after{
    content: '';
    font-family: 'xeicon';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
.hammenu .wrap.mob .mainmenu > li .depth2{
    padding: 20px 0;
    display: none;
}
.hammenu .wrap.mob .mainmenu > li .depth2 > li > a,
.hammenu .wrap.mob .mainmenu > li .depth2 > li > em{
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.05em;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
}
.hammenu .wrap.mob .mainmenu > li .depth2 > li > a em{
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #626262;
}
.hammenu .wrap.mob .mainmenu > li .depth2 > li > em i{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.hammenu .wrap.mob .mainmenu > li .depth2 > li .depth3{
    display: none;
    padding: 10px;
}
.hammenu .wrap.mob .mainmenu > li .depth2 > li .depth3 li a{
    display: block;
    padding: 5px 0;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.6);
}
.hammenu .wrap.mob .mainmenu > li .depth2 > li .depth3 li a strong{
    color: #000;
}


.hammenu .wrap.mob .mainmenu > li .depth2 > li .depth3 li a span{ color: #000; display: block; margin-top: 5px; }
.hammenu .wrap.mob .mainmenu > li .depth2 > li .depth3 li a em{  font-size: 14px; display: block; line-height: 1.2; }

@media screen and (min-width: 821px){
    .hammenu .hamnav > li > ol li > a:hover{ color: #f36e3b; }
}

@media screen and (max-width: 1280px){
    .hammenu{ max-width: 520px; }
    .hammenu .hamnav > li > span{ font-size: 20px; }
    .hammenu .hamnav > li > ol li > a{ font-size: 16px; }
}

@media screen and (max-width: 1024px){
    .hammenu .hamnav > li{ margin-bottom: 40px; }
    .hammenu .hamnav > li > span{ font-size: 18px; }
    .hammenu .hamnav > li > ol{ margin-top: 20px; }
    .hammenu .hamnav > li > ol li > a{ font-size: 14px; }
}

@media screen and (max-width: 820px){
    .hammenu{ background-color: rgba(255,255,255,0.8); color: #000; max-width: unset; }
    .hammenu .wrap{ display: none; }
    .hammenu .wrap.mob{ display: block; }
}

@media screen and (max-width: 500px){
    .hammenu .wrap.mob{ padding: 0 15px; padding-top: 60px; padding-bottom: 30px; }
    .hammenu .wrap.mob .mainmenu > li > span{ font-size: 18px; padding: 15px 0; }
    .hammenu .wrap.mob .mainmenu > li .depth2{ padding: 15px 0; }
    .hammenu .wrap.mob .mainmenu > li .depth2 > li > a, .hammenu .wrap.mob .mainmenu > li .depth2 > li > em{ font-size: 16px; }
}
