body{
    background: var(--bgcolor-black);
}
.web-nav{
    position: sticky;
    top: 108px;
    border-radius: 0rem 0rem 50rem 0rem;
    background: var(--sg-bglight);
    z-index: 1000000;

}
body:has(.webhead-active) .web-nav{
    top: 70px;
}
.web-main-body .con,
.web-nav .nav-body{ 
    width: 100%;
    max-width: 1334px;
    margin: 0 auto;
    display: block;
    margin-top: 1rem;
}
.web-nav .nav-body{
    margin-top: 0rem;
}
.web-nav .nav-body ul{
    height: 60px;
}
.web-nav .nav-body ul li{
    margin-right: 0.5rem;
    height: 100%;
}
.web-nav .nav-body ul li a{
    height: 100%;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    padding: 0rem 0.5rem;
}
.web-nav .nav-body ul li:not(li.home-link) a::before{
    position: absolute;
    content: '';
    height: 10px;
    width: 100%;
    bottom: -0.4rem;
    left: 0rem;
    border-radius: 50rem;
    background: var(--sg-color-brand);
    opacity: 0;
}
.web-nav .home-link .btn{
    background: none;
}
.web-nav .nav-body ul li a{
    color: var(--sg-color-text);
}
.web-nav .nav-body ul li.active a{
    border-radius: 0.8rem 0.8rem 0rem 0rem;
    background: var(--bgcolor-black);
    color: var(--sg-color-brand);
}
/* .web-nav .nav-body ul li.active:not(li.home-link) a::before{
    opacity: 0.2;
} */

.web-main-body .con{
    max-width: 900px;
    margin-bottom: 5rem;
}
.web-main .con-head .text{
    color: var(--colorText-01);
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: left;
    text-indent: 0.5rem;
}
.web-main .con-head .ch-box{
    margin: 1rem auto;
    padding: 1.5rem 0rem;
    border: 1px solid var(--colorBorder-00);
    border-radius: 0.8rem;
    background: var(--sg-bglight);
}
.web-main .con-head .ch-box blockquote{
    overflow: hidden;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 0.5rem 1.5rem;
    box-sizing: border-box;
    border-left: 3px solid var(--sg-color-brand);
}
.web-main .con-head .ch-box blockquote:not(:first-child){
    margin-top: 1rem;
}
.web-main .askan-head{
    height: 60px;
    text-indent: 0.5rem;
}
.web-main .askan-con{
    border: 1px solid var(--colorBorder-00);
    border-radius: 0.8rem;
    background: var(--sg-bglight);
}
.web-main .askan-con ul{
    padding: 1rem;
}
.web-main .askan-con li:not(li:last-child){
    border-bottom: 1px solid var(--colorBorder-00);
}
/* .web-main .askan-con li:not(li:first-child){
    margin: 0.5rem 0rem;
} */
.web-main .askan-con li .list-head .box{
    height: 50px;
    margin: 0rem 0.5rem;
}
.web-main .askan-con li .list-head h2{
    font-size: 1rem;
}
.web-main .askan-con li .list-head .icon{
    position: relative;
    cursor: pointer;
    overflow: initial;
    min-width: 2.2rem;
}
.web-main .askan-con .askan-active .list-head .icon{
    rotate: 180deg;
}
.web-main .askan-con li .list-head .icon::before,
.web-main .askan-con li .list-head .icon::after{
    position: absolute;
    content: '';
    inset: 0;
    scale: 1;
    transition: all ease-in-out 0.3s;
    background: var(--sg-color-brand);
    opacity: 0;
    border-radius: 50rem;
}
.web-main .askan-con li .list-head .icon::after{
    transition: all ease-in-out 0.2s;
}
.web-main .askan-con li .list-head:active .icon::after{
    opacity: 0.3;
    scale: 1.5s;
}
.web-main .askan-con li .list-head:active .icon::before{
    opacity: 0.2;
    scale: 1.1;
}
.web-main .askan-con li .text{
    overflow: hidden;
    height: 0rem;
    margin-top: 0rem;
    transition: all ease-in-out 0.3s;
}
.web-main .askan-con .askan-active .text{
    height: max-content;
    padding-bottom: 1rem;
}
.web-main .askan-con li .text blockquote{
    font-size: 1rem;
    line-height: 1.6;
}
@media only screen and (max-width: 760px) {
    .web-nav{
        top: 70px;
        border-radius: 0rem;
    }
    .web-main-body .con{
        margin: 0rem 0.5rem;
    }
}