* {
    font-family: Bookman, Tahoma, Verdana;
}
.no_data_err {
    text-align: left;
    font-size: 16px;
    color: #fff;
    background-color: #f00;
    padding: 15px;
    width: 100%;
    margin: 40px 0;
}
input {
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 8px #bbb;
}
textarea {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 8px #bbb;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background-color: #ffffff;
}

.hidden { display: none; }
.message { margin-top: 10px; font-weight: bold; }

img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
a {
    display: block;
    color: #55d;
    transition: 0.2s;
}
p,ul,li,dt,dd,dl {
    color: #000000;
    list-style-type: none;
}
.wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2% 80px;
    display: block;
}
.hwrap {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2%;
    display: block;
}
.mb10{ margin-bottom: 10px; }
.mb15{ margin-bottom: 15px; }
.mb20{ margin-bottom: 20px; }
.mb25{ margin-bottom: 25px; }
.mb30{ margin-bottom: 30px; }
.mb35{ margin-bottom: 35px; }
.mb40{ margin-bottom: 40px; }
.cont {
    margin-bottom: 80px;
}
.war {
    color: #d11;
    font-size: 13px;
    margin: 10px 0;
}
.err_mess {
    background-color: #f00;
    color: #fff;
    padding: 5px;
    margin: 10px 0;
}

#shade {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.2s;
    z-index: 999;
}
#shade .box {
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 40px;
    display: none;
}
#shade .mess {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}
#shade .butt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#shade .butt > * {
    width: 45%;
    max-width: 150px;
    background: #ddd;
    color: #555;
    margin: 2%;
    padding: 10px 5px;
    box-shadow: 2px 2px 6px #555;
    border: 1px solid #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 7px;
}
#shade .butt a {
    background-color: #00a550;
    color: #fff;
}
#shade .butt a:hover {
    background-color: #fff;
    color: #00a550;
    border: 1px solid #00a550;
}
#shade .butt .back:hover {
    background-color: #bbb;
    color: #fff;
}
#shade .close_butt {
    position: absolute;
    right: 0%;
    top: 0%;
    width: 40px;
    height: 40px;
    background: transparent url('./img/close_gr.png') no-repeat center;
    background-size: 20px;
}
#shade .close_butt:hover {
    background-image: url('./img/close_bl.png');
}

body {
}


/* header fix css ---------------*/
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;

}
#header .header_main {
    padding: 15px 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: linear-gradient(179deg, #ffffff 46%, transparent);
}
#header .header_main .logo {
    max-width: 200px;
    display: flex;
}
#header .header_main .logo img {
    max-height: 75px;
    width: auto;
    transition: 0.3s;
}
#header .header_main .right_info {
    display: flex;
    margin: auto 0 auto auto;
    width: 75%;
} 
#header .header_main .right_info .menu_list {
    display: flex;
    color: #fff;
    justify-content: right;
    width: 100%;
}
#header .header_main .right_info .menu_list li {
    margin: 0 0 0 1%;
    transition: 0.5s;
    border-bottom: 1px solid transparent;
}
#header .header_main .right_info .menu_list li a {
    color: #181818;
    padding: 10px;
    font-size: 16px;
}
#header .header_main .right_info .menu_list li:hover {
    border-bottom: 1px solid #181818;
}
#header .header_main .right_info .cart {
    max-width: 70px;
    max-height: 70px;
    background-color: #00a55a;
    border-radius: 5px;
    position: relative;
    margin-left: 10px;
}
#header .header_main .right_info .cart .cart_count {
    background-color: #f00;
    border-radius: 15px;
    color: #fff;
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 12px;
    min-width: 25px;
    text-align: center;
    padding: 5px;
}
#header .header_main .right_info .cart a {
    padding: 5px;
}
#header .header_main .right_info .cart a img {
    max-width: 40px;
    margin: auto;
}
#header .header_main .right_info .cart a span {
    font-size: 11px;
    color: #fff;
    margin-top: auto;
}
#header .user_login {
    background-size: 40px;
    border-radius: 7px;
    margin-left: 10px;
    transition: 0.3s;
    display: flex;
    padding: 5px 10px;
    border: 2px solid #00a550;
}
#header .user_login .user_img {
    max-width: 40px;
    background-color: #00a550;
    border-radius: 50%;
    padding: 5px;
}
#header .user_login.on {
    
}
#header_menu {
    background-color: #00a55a;
}
.header_list {
    display: flex;
}
.header_list > li {
    display: flex;
    font-size: 14px;
    position: relative;
    transition: 0.2s;
}
.header_list li .title {
    font-size: 14px;
    color: #fff;
    margin: auto;
    display: flex;
    cursor: pointer;
    padding: 14px 7px;
}
.header_list li .title.on {
    background-color: #fff;
    color: #00a550;
}
.header_list li .title.on span {
    background-image: url(./img/down-mark-hover.png);
}
.header_list > li:hover {
    background: #fff;
}
.header_list > li:hover .title {
    color: #00a55a;
}
.header_list li .title span {
    display: block;
    width: 16px;
    background: url(./img/down-mark.png) no-repeat center;
    background-size: 10px;
    margin-left: 4px;
}
.header_list > li:hover span {
    background-image: url(./img/down-mark-hover.png);
}
.header_list li .sub_list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 10px;
    display: none;
    z-index: 99;
    transition: 0s;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 5px solid #00a550;
}
.header_list li .sub_list.right {
    left: unset;
    right: 0;
}
.header_list .sub_list a {
    padding: 5px 2px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}
.header_list .sub_list a:hover {
    color: #00a55a;
    border-bottom: 1px solid #00a55a;
}

#header .menu_butt {
    position: relative;
    z-index: 99999;
    cursor: pointer;
    display: none;
}
#header .menu_butt .butt {
    width: 70px;
    height: 70px;
    margin: auto 0 auto 10px;
    background: #ffffff url('./img/menu_op.png') no-repeat center;
    background-size: 40px;
    border-radius: 7px;
    z-index: 99999;
    border: 3px solid #ff0000;
    transition: 0.3s;
}
#header .menu_butt .butt:hover {
    background-color: #fff;
    background-image: url('./img/menu_op.png');
}
#header .menu_butt .butt.on {
    background-image: url('./img/menu_close.png');
}
#header .menu_butt .butt.on:hover {
    background-image: url('./img/menu_close.png');
}
#header .menu_butt .header_list.mobi {
    position: absolute;
    top: 80px;
    right: -20px;
    background: #fff;
    width: 80vw;
    max-width: 600px;
    height: calc(100vh - 80px);
    padding: 15px 20px 20vh 15px;
    overflow: auto;
    z-index: 99999;
    display: none;
}
#header .menu_butt .header_list.mobi .search {
    margin: 20px 0;
}
#header .menu_butt .header_list.mobi .search .search_box {
    display: flex;
    justify-content: space-between;
}
#header .menu_butt .header_list.mobi .search .search_box input {
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 3px;
    width: calc(100% - 40px);
}
#header .menu_butt .header_list.mobi .search_bt {
    width: 35px;
    height: 35px;
    background: #fff url('./img/search-hover.png') no-repeat center;
    background-size: 20px;
    border: 2px solid #00a550;
}
#header .menu_butt .header_list.mobi .search_bt:hover {
    background-image: url('./img/search.png');
    background-color: #00a550;
}
#header .menu_butt .header_list.mobi ul {
    width: 100%;
    position: unset;
}
#header .menu_butt .header_list.mobi ul li {
    margin-left: auto;
    text-align: right;
}
#header .menu_butt .header_list.mobi ul > li {
    border-bottom: 1px solid #aaa;
}
#header .menu_butt .header_list.mobi ul li a {
    color: #000;
    padding: 14px 7px;
}
#header .menu_butt .header_list.mobi ul li .title {
    color: #000;
    justify-content: right;
}
#header .menu_butt .header_list.mobi ul li .title.on {
    color: #00a550;
}
#header .menu_butt .header_list.mobi ul li .title span {
    margin-left: auto;
    background-image: url('./img/list-close.png');
}
#header .menu_butt .header_list.mobi ul li .title.on span {
    color: #00a550;
    background-image: url('./img/list-open.png');
}
#header .menu_butt .header_list.mobi ul li .sub_list {
    border-right: 1px solid #00a550;
    margin: 0 15px 15px 0;
    width: calc(100% - 15px);
}
#header .menu_butt .header_list.mobi ul li .sub_list li {
    border: none;
}
#header .menu_butt .header_list.mobi .box select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    margin-top: 5px;
}

/* ---- header End ---- */

#figure {
    padding: 0;
    margin-bottom: 0;
}

#figure .baner_slide_img {
	width: 100%;
	height: 100vh;
    position: relative;
}
#figure .baner_slide_img::after {
    display: block;
    content: "";
    background: url(./img/after-figure.png) no-repeat;
    position: absolute;
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
}

#figure .figure_slide {
	display: block;
	width: 100%;
	height: 100%;
	background: url('./img/main_figure.jpg') no-repeat 55%;
	background-size: cover;
	position: relative;
}

#figure .info {
	position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    display: flex;
    height: auto;
    max-height: 70%;
    padding: 0 5%;
}
#figure .info .img {
    width: 40%;
}
#figure .info .text {
	display: flex;
    flex-direction: column;
    color: #fff;
    width: 60%;
    justify-content: center;
    font-family: serif;
}
#figure .info .text .figure_title {
    font-size: 30px;
    background: -webkit-linear-gradient(59deg, #8f5c1c, #fee7be,  #8f5c1c, #fee7be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#figure .info .text .figure_sub_title {
    font-size: 9vh;
    font-weight: bold;
    background: -webkit-linear-gradient(59deg, #8f5c1c, #fee7be,  #8f5c1c, #fee7be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: serif;
}
#figure .info .text .figure_text {
    color: #fff;
    font-size: 24px
}


/* main edit ------------ */

#main {
    background: url('./img/background-bot.png') bottom -100px center no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    margin-bottom: -100px;
    padding-bottom: 100px;
    margin-top: -150px;
}
#main .content {
    position: relative;
    z-index: 2;

}
#main .content .ct_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#main .content .ct_list .ct_img {
    width: 20%;
    max-width: 300px;
    margin: 0 2%;
    background: #fff;
    box-shadow: 2px 2px 13px #9d9d9d;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

#main .content .ct_list .ct_img img {
    width: 50%;
}
#main .content .ct_list .title {
    font-size: 12px;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
}

/* thong bao dau tien */

#main .information {
}
#main .information .title {
    font-size: 36px;
    font-weight: bold;
    color: #111111;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
}
#main .information .title .red {
    color: #ED1C24;
}

#main .left_right_info_list {
    margin: 40px 0;
}
#main .left_right_info_list .info {
    position: relative;
}

#main .left_right_info_list .title {
    position: relative;
    width: auto;
    max-width: unset;
    text-align: left;
    margin: 0 0 20px;
    color: #333;
}
#main .left_right_info_list .info .info_text {
    position: absolute;
    bottom: 50px;
    left: 0px;
    max-width: 800px;
    font-size: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
}



/* Danh sach san pham ------- */
#main .item .title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    color: #fdce44;
}

#main .item .main_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

#main .item .main_list li {
    width: 24%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}
#main .item .main_list li .box {
    padding: 10px;
    border-radius: 10px;
    background: #000000;
    box-shadow: 0px 0px 15px #777;
    transition: 0.5s;
}
#main .item .main_list li .title {
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding: 5px;
    transition: 0.5s;
}

#main .item .main_list li:hover {
    padding:15px;
}
#main .item .main_list li:hover .box {
    background: #fff;
}
#main .item .main_list li:hover .title {
    color: #000;
}

#main .item .item_view {
    max-width: 250px;
    font-size: 16px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    border-radius: 35px;
    background: linear-gradient(59deg, #fdce44, #fee7be,  #fdce44, #fee7be);
    transition: 0.5s;
}
#main .item .item_view a {
    padding: 15px;
    font-size: 16px;
    color: #000;
    border-radius: 35px;
    font-weight: bold;
}
#main .item .item_view a:hover {
    background-color: #fff;
}


/* information css ------------------ */
#main .news_info {

}
#main .news_info .news_title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    color: #fdce44;
}
#main .news_info .news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}
#main .news_info .news_list li {
    width: 49%;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 0 9px #777;
}
#main .news_info .news_list li .img {
    width: 30%;
    display: flex;
}
#main .news_info .news_list li a {
    display: flex;
}
#main .news_info .news_list li .info {
    padding: 20px;
    width: 70%;
}
#main .news_info .news_list li .info_title {
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    margin: 15px 0;
}
#main .news_info .news_list li:first-child {
    width: 100%;
}
#main .news_info .news_list li:nth-child(even) {
    margin-right: 2%;
}


.in-contact .main_contact {
    background: url('./img/contact_background.jpg');
    background-size: cover;
    margin: 80px 0 0;
}
.in-contact .main_contact .flex {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: auto;
    width: 100%;
    background: linear-gradient(118deg, #ffffff, transparent);
    padding: 40px;
}
.in-contact .main_contact .flex .form {
    width: 50%;
}
.in-contact .main_contact .flex .form .user_tbl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.in-contact .main_contact .flex .form dl {
    width: 100%;
    margin: 10px 0;
}
.in-contact .main_contact .flex .form dt {
    color: #000000;
}
.in-contact .main_contact .flex .form dl.half {
    width: 48%;
}
.in-contact .main_contact .flex .cnt_title {
    font-size: 30px;
    font-weight: bold;
    color: red;
}
.in-contact .contact_butt {
    width: 100%;
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}
.in-contact .contact_butt button {
    width: 100%;
    max-width: 250px;
    padding: 15px;
    font-size: 16px;
    color: #000;
    border-radius: 35px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(59deg, #fdce44, #fee7be, #fdce44, #fee7be);
    transition: 0.5s;
}


/* main END ----------- */

/* 特定商取引法に基づく表記 */

#main .comp_info {
    width: 100%;
}
#main .comp_info dl {
    display: flex;
    margin: -1px 0;
    border: 1px solid #333;
}
#main .comp_info dl dt {
    min-width: 150px;
    border-right: 1px solid #333;
    padding: 5px;
    font-size: 12px;
}
#main .comp_info dl dd {
    padding: 5px;
}

.doitac {}
.doitac .title {
    font-size: 30px;
    color: #222;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}
.doitac ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1600px;
    margin: auto;
    padding: 2%;
}
.doitac ul li {
    width: 22%;
    margin: 0 1%;
}


/* gioi thieu edit ----------------- */

.gioithieu {
    background: url('./img/main_gioithieu.png') no-repeat top center;
    background-size: cover;
}
.gioithieu .info {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    max-width: 1600px;
    padding: 0px 3%;
    margin: auto;
}

h1.main_title {
    text-align: center;
    color:red;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.gt_main {
    margin-bottom: 40px;
    max-width: 700px;
}
.gt_main .sub_title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.gt_main .gtcl_list {
    display: flex;
}
.gt_main .gtcl_list li {
    border-radius: 50%;
    border: 1px solid #f00;
    padding: 3px;
    margin: 0 15px;
    width: 100px;
    height: 100px;
}
.gt_main .gtcl_list li p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(255, 0, 0, 0.8);
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.vt_main {
    margin-bottom: 80px;
}
.vt_main .sub_title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}
.vt_main .vt_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.vt_main .vt_box li {
    width: 29%;
    margin: 20px 2%;
    border-radius: 15px;
    background: url('./img/vt_1.jpg') no-repeat;
    background-size: cover;
}
.vt_main .vt_box li.vt2 {
    background-image: url('./img/vt_2.jpg');
}
.vt_main .vt_box li.vt3 {
    background-image: url('./img/vt_3.jpg');
}

.vt_main .vt_box li .text_box {
    background: linear-gradient(1deg, #000000c7, #1cb7939e);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}
.vt_main .vt_box li .text_box .vt_title {
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 34px;
}
.vt_main .vt_box li .text_box .vt_text {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    text-align: center;
}

.vt_main .vt_box li.vt2 .text_box {
    background: linear-gradient(1deg, #000000c7, #0017e69e);
}
.vt_main .vt_box li.vt3 .text_box {
    background: linear-gradient(1deg, #000000c7, #ec00009e);
}


/* gioi thieu edit end ----------------- */


/* footer edit ----------------- */
#footer {
    margin-top: auto;
    background: #444;
}

.footer_main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	width: 100%;
	height: 100%;
	position: relative;
    padding: 90px 2% 60px;
    background: #444;
   
}
.footer_main .company_info {
    width: 40%;
    display: flex;
    flex-direction: column;
}
.footer_main .company_info .footer_logo {
    max-width: 100px;
    margin-bottom: 30px;
}
.footer_main .company_info address p {
    display: flex;
    margin: 10px 0;
    color: #fff;
    font-size: 16px;
}
.footer_main .company_info address .sns_mark {
    display: flex;
}
.footer_main .company_info address .sns_mark a {
    max-width: 40px;
    margin: 5px;
}
.footer_main .company_info address p span.mark {
    width: 20px;
    margin-right: 5px;
}

.footer_main .footer_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 58%;
}
.footer_main .footer_list > * {
    margin-bottom: 30px;
}
.footer_main .footer_list .title {
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 10px;
}
.footer_main .footer_list .list {
    width: 100%;
}
.footer_main .footer_list .list ul {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-column-gap: 4%;
}
.footer_main .footer_list a {
    color: #ddd;
    padding: 7px 0;
    font-size: 16px;
}
.footer_main .footer_list .list3 {
    width: 100%;
}

.footer_main .footer_list a:hover {
    color: #fff;
}

.copyrg {
    padding: 5px;
    text-align: center;
}
.copyrg p {
    font-size: 12px;
    color: #fff;
}



/*slick edit  _----------- */
.slick-arrow {
    content: '';
    font-size: 0px;
    display: block;
    background: url(./img/prev.png) no-repeat center;
    background-size: 30px;
    opacity: 0.8;
    position: absolute;
    top: 0%;
    width: 40px;
    height: 100%;
    z-index: 1;
}
.slick-prev {
    background-image: url(./img/prev.png);
    left: 0%;
}
.item_list.rc .slick-prev {
    left: -5%;
}
.slick-next {
    background-image: url(./img/next.png);
    right: 0%;
}
.item_list.rc .slick-next {
    right: -5%;
}
.slick-dots {
    position: absolute;
    bottom: 2%;
    display: flex;
    justify-content: center;
    width: 100%;
}
.slick-dots li {
    font-size: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 5px;
}
.slick-dots li.slick-active {
    background-color: #fff;
}








@media screen and (max-width: 1000px) {
    body {
        padding-top: 115px;
    }
    #header .header_main .right_info .menu_list {
        display: none;
    }
    #header .header_main .right_info .contact_bana {
        display: none;
    }
    #header .menu_butt {
        display: block;
        margin-left: auto;
    }
    #header_menu {
        display: none;
    }
    .item_list.idx {
        grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
    }
    .item_list li .add_cart {
        font-size: 12px;
    }
    .footer_main .footer_list .list,
    .footer_main .footer_list .list2,
    .footer_main .footer_list .list3 {
        width: 100%;
    }
}


@media screen and (max-width: 640px) {
    body {
        padding-top: 80px;
    }
    #header .header_main {
        padding: 10px 2%;
    }
    #header .header_main .logo img {
        max-height: 50px;
    }
    #header .header_main .right_info .cart a {
        padding: 5px;
    }
    #header .header_main .right_info .cart a span {
        display: none;
    }
    #header .header_main .right_info .cart {
        width: 40px;
        height: 40px;
        margin: auto 0 auto 10px;
    }
    #header .header_main .right_info .cart a img {
        max-width: 35px;
    }
    #header .menu_butt .butt {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }
    #header .menu_butt .header_list.mobi {
        top: 65px;
        height: calc(100vh - 65px);
    }
    #header .user_login a {
        background-size: 20px;
        margin: 1px;
    }
    #header .user_login {
        padding: 2px 10px;
    }
    #header .user_login .lgtk {
        font-size: 14px;
    }
    #header .user_login .dkytk {
        font-size: 12px;
    }
    #header .user_login .hello {
        font-size: 8px;
        margin-bottom: -3px;
    }
    .rc_list {
        padding: 10px 2%;
    }
    #header .user_login .user_img {
        max-width: 30px;
    }
    .recom .recom_title {
        font-size: 24px;
    }
    .sub_title {
        font-size: 20px;
    }
    .cate_list {
        grid-template-columns: 32% 32% 32%;
    }
    .cate_list .cate_name {
        font-size: 12px;
    }
    .item_list.idx {
        grid-template-columns: 32% 32% 32%;
    }
    .item_list li .img .out {
        font-size: 12px;
        padding: 5px 0;
    }
    .news_list .news_name {
        font-size: 14px;
    }
    .news_list .text {
        font-size: 12px;
    }
    .vt_main .vt_box li {
        width: 98%;
    }
    .in-contact .main_contact .flex .form {
        width: 100%;
    }
    #main .left_right_info_list .info .info_text {
        position: unset;
    }
    #figure .info .img {
        width: 85%
    }
    #main .content .ct_list .ct_img {
        width: 45%;
        margin: 10px 2%;
    }
    .footer_main .company_info,
    .footer_main .footer_list {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer_main .company_info .footer_logo {
        margin: 0 auto 10px;
        max-width: 150px;
    }
    .footer_main .company_info address p {
        justify-content: center;
    }
    .footer_main .company_info address .sns_mark {
        justify-content: center;
    }
    
}

@media screen and (max-width: 440px) {
    .news_list {
        grid-template-columns: 49% 49%;
        grid-column-gap: 2%;
    }
    .item_list.rc li {
        padding: 2px;
    }
    .deli_tbl th p {
        font-size: 10px;
    }
    .deli_tbl th,
    .deli_tbl td {
        font-size: 11px;
    }
    #header .user_login .user_name {
        font-size: 10px;
    }
    #header .header_main {
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 400px) {
    .item_list.idx {
        grid-template-columns: 49% 49%;
        grid-column-gap: 2%;
    }
}