#wrap {
    z-index: 5;
}

/* section */
section {
    padding: 3vw 0 2vw;
}

section>* {
    z-index: 3;
}

section .title_box {}

section .title_box .page_title,
#about_area .aboutArea .Txt h2 {
    text-transform: uppercase;
    line-height: 130%;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: max(3*(1vw + 1vh) / 2, 27px);
    color: var(--primary);
}

#about_area .aboutArea .Txt h2 {
    font-size: 26px;
}

section .title_box .page_title2 {
    color: #000;
    font-size: max(3*(1vw + 1vh) / 2, 33px);
    letter-spacing: 4px;
}

section .title_box .page_title2:first-letter {
    color: var(--primary);
}

section .clip {
    margin: auto;
    width: 100%;
}

section .clip img {
    height: 100%;
}

section .clip iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

section .clip video {
    width: auto;
    height: 100%;
    top: 50%;
    left: 50%;
}

#plan_area .workframe {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#plan_area #tabs_box {
    width: 75%;
}

/* product_sub_list */
#product_sub_list>div {
    margin: auto;
    width: 100%;
}

#product_sub_list li {
    width: 210px;
    display: block;
}

#product_sub_list li .clip {
    height: 210px;
    -webkit-clip-path: url(#clip_sub_product);
    clip-path: url(#clip_sub_product);
}

#product_sub_list li h3 {
    font-weight: 300;
}

/* product_list */
#product_area {
    margin: 0;
    padding: 5vw 0 7vw;
    background: no-repeat;
    background-position: bottom;
}

#product_area .workframe {
    display: flex;
    flex-direction: column;
    align-items: center
}

#product_area .title_box {
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
}

#product_area .title_box b,
section .title_box .sub_title {
    font-family: 'Kanit';
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0;
    color: #4c4636
}

#product_area .more_btn {
    position: relative;
    margin-top: 30px;
}

#product_list {
    width: 100%
}

#product_list * {
    transition: all 0s ease-in-out;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;

}

#product_list .inddlink a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#product_list li {
    margin: 25px;
    border-radius: 35px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

#product_list li:hover {}

#product_list li:hover h3,
#product_list li:hover article {
    color: #fff
}

#product_list .img_show img {
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: bottom;
}

#product_list .info_box {
    margin-top: 10px;
    z-index: 5;
    background: none
}

#product_list .info_box h3 {
    margin-bottom: 20px;
    font-size: 18px;
    -webkit-line-clamp: 2;
    line-height: 150%;
    font-weight: 500;
    text-align: center;
    color: #4c4636
}

#product_list .info_box article {
    font-size: 16px;
    line-height: 130%;
    height: 65px;
    color: #9e9e9e;
    text-align: justify;
    -webkit-line-clamp: unset
}

#product_list .info_box .price_box p {
    margin-right: 10px;
    vertical-align: bottom
}

#product_list .info_box .price_box p * {
    line-height: 100%;
    font-size: 18px;
    vertical-align: text-bottom
}

#product_list .info_box .price_box p span {
    margin-right: 2px;
    font-size: 12px
}

#product_list .info_box .price_box p.price * {
    font-weight: 600
}

#product_list .info_box .price_box p.old font {
    font-size: 15px;
    text-decoration: line-through
}

/* about_area */
#wrap {
    position: relative
}

#about_area {
    overflow: hidden;
    padding: 7vw 0 7vw 0;
    position: relative;
    border-bottom: #cccccc 1px solid;
    background-image: url(/images/44/webb.png);
}

#about_area .nowrap_box {
    margin-right: auto;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

#about_area:after {
    content: "";
    width: 20px;
    height: 6px;
    display: block;
    background: #b71e1e;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 0;
    animation: moveRight 7s linear infinite;
}

.inddlink {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.inddlink a {
    display: flex;
    justify-content: space-around;
    width: min(210px, 100%);
    border-radius: 120px;
    border: #6c6c6c 1px solid;
    padding: 14px 0;
    background: #ffffff;
}

.inddlink a:hover {
    background: #b71e1e;
    border: #b71e1e 1px solid;
}

.inddlink a:hover {
    color: #ffffff;

}

.inddlink a:hover svg {
    fill: #ffffff;
}

.inddlink a svg {
    width: 20px;
    aspect-ratio: 1/1;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100vw);
    }
}

#about_area::before {
    content: "";
    width: 38%;
    height: 100%;
    display: block;
    background: linear-gradient(to right, #FF9800 30%, #FF5722 70%, #b71e1e 100%);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    animation-name: mymove;
    animation-duration: 3s;
}

#about_area.tooolong .aboutArea .ImgCenter:before {
    width: 560px;
}

#about_area. .img_item img {
    width: 100%
}

#about_area .aboutArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: flex-end;
    position: relative;
    width: 100%;
}

#about_area .aboutArea .areaTxt {
    padding-top: 0px;
    width: 38%;
    margin: 0;
}

#about_area .aboutArea .areaTitle .title {
    font-size: 18px;
    margin-left: 0px;
    letter-spacing: 0.3px;
    padding-top: 0;
    line-height: 180%
}

#about_area .aboutArea .areaTitle article .Txt {
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms
}

#about_area .aboutArea .text {
    font-size: 15px;
    color: #5a5a5a
}

#about_area .aboutArea .areaTitle article .Txt::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    background-color: var(--primary);
    top: 30px;
    left: 0
}

#about_area .aboutArea .ImgCenter {}

#about_area .aboutArea .ImgCenter .Img {
    width: 100%;
    margin-left: 50px;
    position: relative;
}

#about_area .aboutArea .ImgCenter .Img video {
    width: 130%;
    height: 510px;
}

#about_area .aboutArea .ImgCenter .ImgTop {
    position: absolute;
    top: 17%;
    left: 106%;
    width: 70%;
    z-index: 0
}

#about_area .aboutArea .ImgCenter .ImgBottom {
    position: absolute;
    top: 69%;
    left: -40%;
    width: 56%;
    z-index: 2
}

#about_area .aboutArea .bottom {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
    justify-content: flex-end
}

#about_area .aboutArea .areaTitle {
    display: flex;
    flex-direction: column;
}

#about_area .aboutArea .Txt {
    letter-spacing: 0.6px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

#about_area .aboutArea .Txt .area_text {
    font-size: 24px;
    letter-spacing: 4px;
    margin-left: 9px;
}

#about_area .aboutArea .Txt .text {
    color: #3f3f3f;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 1.5px;
    text-align: justify;
    width: 90%;
}

#about_area .aboutArea .btn {
    display: flex;
    padding: 0;
}

#about_area .aboutArea .more_btn {
    position: relative;
    border-radius: 60px;
}

#about_area .aboutArea .line_btn {
    margin-right: 20px;
}

#about_area .aboutArea .line_btn .more_btn a {
    border: 1px #252525 solid;
}

#about_area .aboutArea .line_btn .more_btn a:hover {
    background: #00b900;
}

#about_area .aboutArea .line_btn .more_btn a:hover font {
    color: #ffffff;
}

#about_area .aboutArea .line_btn .more_btn a:hover svg {
    fill: #ffffff;
}

#about_area .aboutArea .line_btn .more_btn font {
    color: #252525;
}

#about_area .deck02 {
    position: absolute;
    right: 60px;
    z-index: -1;
    top: 70px
}

#about_area .deck02 .Img {
    font-size: 180px;
    font-weight: bold;
    opacity: 0.1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 10.5px
}

.lounbox {
    position: absolute;
    right: 9%;
    margin-top: 0%;
    z-index: 0;
    animation-name: fish;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    display: none;
}

.lounbox img {
    width: 290px;
}

@keyframes fish {
    0% {
        transform-origin: right bottom;
        transform: translateY(0px);
    }

    100% {
        transform-origin: right bottom;
        transform: translateY(20px);
    }
}

@keyframes mymove {
    from {
        right: 100px;
    }

    to {
        right: 0px;
    }
}

#plan_area {
    position: relative;
    padding: 150px 0 100px;
    border-bottom: #cccccc 1px solid;
}

#plan_area .title_box {
    display: flex;
    flex-direction: column;
    width: 20%;
}

#plan_area .title_box h2 {
    margin-bottom: 30px;
}

#plan_area .title_box .tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#plan_area .tabs li a {
    margin-bottom: 15px;
    font-size: max(1.4*(1vw + 1vh) / 2, 16px);
    font-weight: 500;
    padding: 5px 50px 5px 25px;
}

#plan_area .tabs li.active a {
    background: var(--primary);
    padding: 5px 50px 5px 25px;
    color: var(--white);
}

#plan_area .tabs li.active a:after {
    content: '';
    width: 50px;
    height: 1px;
    position: absolute;
    right: -25px;
    top: 50%;
    background: #cccccc;
}

#plan_area::before {
    content: '';
    width: 349px;
    background-image: url(/images/44/img-cctv.png);
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -29%;
    left: -5%;
    z-index: 0;
    animation-name: fish;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
}

#plan_area:after {
    content: "introduction";
    position: absolute;
    font-size: max(6*(1vw + 1vh) / 2, 25px);
    text-transform: uppercase;
    right: 5%;
    top: 33px;
    color: #e9e9e9;
}

/* productTabs */
#productTabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#productTabs .tabs {
    width: 20%;
    text-align: left;
}

#productTabs .tabs li {
    margin: 5px 0;
    display: block;
}

#productTabs .tabs li a {
    font-size: 22px;
    display: inline-block;
    border-radius: 50px;
    line-height: 150%;
}

#productTabs #tabs_container {
    width: 100%;
}

/* tabs_container */
#tabs_container .box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#tabs_container .box .infoo {
    margin: 10px 20px;
    border-radius: 23px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

#tabs_container .box .infoo img {
    object-fit: contain;
}

#tabs_container .box .infoo p,
#product_list li p {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    line-height: 100%;
    font-weight: 500;
}

#tabs_container .box .infoo p.price span {
    color: var(--primary);
    margin-right: 5px;
}

#tabs_container .box .infoo p.notice {
    font-size: 15px;
    margin-top: 10px;
    color: #888;
    text-decoration: line-through;
}

#tabs_container .box .infoo p.price {
    color: var(--primary);
    display: flex;
    align-items: baseline;
    font-size: 30px;
    font-family: 'Montserrat';
    font-weight: 700;
    letter-spacing: 2px;
}

#productTabs #tabs_container .tab_content article {
    font-size: max(1.4*(1vw + 1vh) / 2, 15px);
    margin-bottom: 8px;
    padding-left: 23px;
    font-weight: 300;
}

#productTabs #tabs_container .tab_content {
    /* height:500px; */
}

#tabs_container .tab_content>p {
    font-size: 20px;
    margin-top: 0;
    line-height: 180%;
}


/* custom_area */
#custom_area {
    background: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 400px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

#custom_area:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(183 30 30 / 81%);
    top: 0;
    z-index: 0;
}

#custom_area:after {
    content: "";
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #FF9800 0%, #FF5722 40%, #b71e1e00 100%);
}

#custom_area .workframe {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#custom_area .title_box h2 {
    color: #fff;
    font-weight: 400;
}

#custom_area ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#custom_area ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 77px;
    position: relative;
    border-radius: 500px;
    border: rgb(255 255 255 / 68%) 1px solid;
    margin: 0 11px;
}

#custom_area ul li:hover {
    background: var(--primary);
}

#custom_area ul li a {}



#custom_area .img_show img {
    width: 60px;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: bottom;
}

#custom_area ul li p {
    margin-top: 20px;
    font-size: max(1.2*(1vw + 1vh) / 2, 17px);
    color: #fff;
    letter-spacing: 2px;
}

@media screen and (max-width: 1470px) {

    #about_area .about_sub_1,
    #about_area .about_sub_2,
    #about_area .about_sub_3 {
        width: 20vw;
    }

    #product_list {
        /* width: 500px; */
        /* margin-left: 30px; */
    }

    #product_list li .clip {
        height: 590px;
    }

    #about_area .about_sub_2 {
        top: -20vw;
        right: 6vw;
    }

    #plan_area::before {
        width: 270px;
        bottom: -24%;
        left: -3%;
    }
}

@media screen and (max-width: 1280px) {
    #plan_area::before {
        bottom: -15%;
        width: 279px;
    }

    #custom_area .workframe {
        display: flex;
        flex-direction: column;
    }

    #custom_area .title_box h2 {
        margin-bottom: 50px;
    }

    #tabs_container .box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    #plan_area .workframe {
        display: flex;
        flex-direction: column;
    }

    #plan_area .title_box {
        width: 100%;
    }

    #plan_area #tabs_box {
        width: 100%;
    }

    #about_area .aboutArea {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about_area .aboutArea .areaTxt {
        width: 90%;
    }

    #about_area .aboutArea .bottom {
        width: 100%;
        align-items: center;
    }

    #about_area .aboutArea .ImgCenter .Img {
        margin: 70px 0;
    }

    #about_area .aboutArea .ImgCenter .ImgTop,
    #about_area::before {
        display: none;
    }

    #product_list {
        margin: auto;
    }

    #news_area li h3 {
        height: 30px;
        -webkit-line-clamp: 1;
    }
}

@media screen and (max-width: 980px) {
    section {
        padding-top: 10vw;
    }

    #product_list {
        /* width: 500px; */
    }

    #product_list li .clip {
        height: 590px;
    }

    #about_area #about_info {
        margin-bottom: 8vw;
    }

    #about_area .about_sub_2 {
        top: auto;
        bottom: 35vw;
        width: 35vw;
    }

    #about_area .about_sub_3 {
        width: 29vw;
        left: 10vw;
    }

    #about_area .aboutArea:after {
        display: none;
    }

    #about_area .aboutArea .Txt {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #tabs_container .box .infoo {
        margin: 10px;
        padding: 20px 20px;
    }

    #plan_area::before {
        display: none;
    }

    #plan_area #tabs_box {
        width: 100%;
    }

    #plan_area .workframe {
        flex-direction: column;
    }

    #plan_area .title_box {
        width: 100%;
    }

    #plan_area .title_box .tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #plan_area .title_box .tabs li {
        width: 100%;
    }

    section {
        padding: 8vw 0 2vw;
    }

    #product_sub_list>div {
        margin: 10px auto 50px;
    }

    #product_sub_list li {
        width: 150px;
    }

    #product_sub_list li .clip {
        height: 150px;
    }

    #product_list {
        width: 70vw;
    }

    #product_list li .clip {
        height: 80vw;
    }

    #product_list li .info_box {
        width: 45vw;
        height: 30vw;
    }

    #custom_area {
        height: 500px;
        background-position: 20% 50%;
        background-size: cover;
        padding: 0 0;
    }

    #custom_area ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #custom_area ul li p {
        margin-top: 11px;
    }

    #custom_area ul li:not(:last-child) {}

    #custom_area ul li {
        margin: 10px;
        padding: 15px 27px;
    }
}

@media screen and (max-width: 550px) {
    #about_area .aboutArea .btn {
        display: flex;
    }

    #about_area .more_btn a {
        width: 100%;
    }

    #about_area .aboutArea .line_btn,
    #about_area .aboutArea .right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #about_area .aboutArea .Txt .text {
        width: 100%;
    }

    #product_sub_list li {
        margin: 10px;
        width: 35vw;
    }

    #product_sub_list li .clip {
        height: 35vw;
    }

    #product_list {
        width: 90vw;
    }

    #product_list li .clip {
        height: 100vw;
    }

    #product_list li .info_box {
        width: 55vw;
        height: 40vw;
    }

    #about_area #about_img {
        width: 80vw;
    }

    #about_area .about_sub_2 {
        bottom: 60vw;
    }

    #news_area li .row {
        margin: auto;
        width: 280px;
    }

    #about_area .aboutArea .areaTitle article .Txt {
        padding-bottom: 40px;
    }

    #about_area .aboutArea .bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    #about_area {
        padding: 52px 0;
    }

    #plan_area {
        padding: 52px 0;
    }

    #plan_area:after {
        display: none;
    }

    section .title_box .page_title2,
    section .title_box .page_title {
        text-align: center;
    }

    #about_area .aboutArea .areaTitle article .Txt::after {
        left: 44%;
        width: 10%;
    }

    #book_area li .row {
        margin: auto;
        width: 250px;
    }

    #plan_area .tabs li a {
        padding: 5px 8px 5px 12px;
    }

    #plan_area .tabs li.active a:after {
        display: none;
    }

    #plan_area .tabs li.active a {
        padding: 5px 8px 5px 12px;
    }

    #tabs_container .box .infoo p.price {
        font-size: 22px;
    }

    #about_area .aboutArea .line_btn {
        margin-right: 0;
        margin-bottom: 20px;
    }
}