



html {
	scroll-behavior: smooth;
}
html body{
    height: auto !important;
    font-weight: 600;
}
.header_top{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 20px;
    align-items: center;
}
.header_top_logo{
    width: 30%;
}
.header_top_links{
    display: flex;
    align-items: center;
}
.header_top_link_1{
    aspect-ratio: 6/2;
    width: 120px;
    margin: 0px 5px;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_top_link_1:hover{
    color: #fff;
    text-decoration: none;
}
.header_top_link_2{
    width: 40px;
    margin: 0px 5px;
}
header{
    position: sticky;
    top: 0;
    z-index: 99;
}
header nav{
    background-color: #5D8063;
}
header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0px;
    margin: 0px;
    border-left: 0.5px solid #285131;
    border-right: 0.5px solid #285131;
}
header nav ul a.active{
    background-color: #285131;
}
header nav ul li{
    list-style-type: none;
    border-left: 0.5px solid #285131;
    border-right: 0.5px solid #285131;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.5%;
    text-align: center;
} 
header nav ul li a{
    color: #fff !important;
    font-size: 14px;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
header nav ul li a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #285131;
}
.main_title{
    text-align: center;
}
.main_title_jp{
    color: #285131;
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.main_title_en{
    color: #285131;
    font-size: 22px;
    letter-spacing: 2px;
}
.sub_title{
    font-size: 30px;
    color: #000;
    margin-bottom: 50px;
    text-align: center;
}
.section_desc{
    margin-top: 20px;
    font-size: 12px;
}










.section_2_text{
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 35px;
    margin-top: 40px;
    color: black;
    text-align: center;
}
.section_2_text_2{
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 40px;
    margin-top: 40px;
    color: #285131;
    text-align: center;
}
.section_2_text_3{
    font-size: 16px;
    color: #000;
    line-height: 35px;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 30px;
}
.section_3_img{
    margin-top: 50px;
    position: relative;
}
.section_3_text{
    position: absolute;
    z-index: 5;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}
.section_3_text_1{
    color: #fff;
    font-size: 50px;
}
.section_3_text_2{
    color: #fff;
    font-size: 26px;
    line-height: 45px;
    letter-spacing: 1px;
}

.section_4_img{
    margin-top: 50px;
}
.section_5_card{
    position: relative;
    width: 100%;
}
.section_5_card_body{
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    backdrop-filter: blur(10px); 
    background: rgba(255, 255, 255, 0.3); 
    align-content: center;
}
.section_5_card_body_text{
    margin: 0px auto;
    border: 2px solid #000;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    padding: 20px 40px;
    letter-spacing: 1px;
}
.section_5_card_body_text p{
    margin-bottom: 0px;
}
.section_5_card_body_text h3{
    margin-bottom: 0px;
}
.section_5_card_body_text span{
    color: #A82033;
}
.section_5_card_body_title h3{
    align-items: baseline;
    color: #A82033;
    text-align: center;
    margin-top: 20px;
}
.section_5_card_body_title h3::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #A82033;
    vertical-align: middle;
    transform: rotate(-245deg);
    margin: 0 6px;
}
.section_5_card_body_title h3::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #A82033;
    vertical-align: middle;
    transform: rotate(245deg);
    margin: 0 6px;
}
.section_5_card_body_title h3 img{
    max-width: 29px;
    display: inline-block;
    margin: 0 0 0px 5px;
}
.section_5_card_body_button{
    text-align: center;
    margin: 10px 0px;
}
.section_5_card_body_button_1{
    display: inline-block;
    padding: 8px 40px 8px 30px;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    position: relative;
    transition: background 0.3s, transform 0.2s;
    width: 60%;
    text-align: center;
    color: #A82033;
    background: #fff;
    border: 2px solid #A82033;
    font-size: 16px;
}
.section_5_card_body_button_1::after, .section_5_card_body_button_2::after{
    content: "▶";
    font-size: 0.9em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}
.section_5_card_body_button_1:hover{
    transform: translate(-3px, -3px);
    color: #A82033;
    text-decoration: none;
}
.section_5_card_body_button_2:hover{
    transform: translate(-3px, -3px);
    color: #fff;
    text-decoration: none;
}

.section_5_card_body_button_2{
    display: inline-block;
    padding: 8px 40px 8px 30px;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    position: relative;
    transition: background 0.3s, transform 0.2s;
    width: 60%;
    text-align: center;
    color: #fff;
    background: #A82033;
    border: 2px solid #A82033;
    font-size: 16px;
}
.section_6_cats{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
.section_6_cats_cat{
    border: 1.5px solid #285131;
    padding: 5px;
    margin: 5px;
}

.section_7_card{
    display: flex;
    margin-bottom: 150px;
    align-items: flex-end;
}
.section_7_card_body_title{
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 5px;
    color: #285131;
    margin-bottom: 30px;
}
.section_7_card_body_text{
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 50px;
}
.section_7_card_body_text span{
    font-size: 17px;
    color: #4D4D4D;
}
.section_7_card_body_img{
    width: 25%;
}
.section_7_card_body_img p{
    text-align: center;
    color: #000;
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 16px;
}
.section_7_card_img_text{
    font-size: 18px;
    margin-top: 20px;
    color: #285131;
    letter-spacing: 1px;
}
.section_8{
    padding: 100px;
    padding-bottom: 50px;
    background-color: #DFECE2;
}
.section_8_card{
    background-color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    margin-bottom: 50px;
}
.section_8_card_body{
    position: relative;
}
.section_8_card_body_logo{
    position: absolute;
    z-index: 5;
    top: 0px;
    right: 0px;
    width: 100px;
}
.section_8_card_body_title{
    margin-bottom: 50px;
    color: #285131;
}
.section_8_card_body_title_jp{
    font-size: 30px;
    letter-spacing: 4px;
}
.section_8_card_body_title_en{
    font-size: 16px;
    letter-spacing: 2px;
}
.section_8_card_body_text{
    font-size: 16px;
    line-height: 35px;
    color: #000;
}
.section_8_card_body_text span{
    font-size: 22px;
}

.section_9_card{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.section_9_card_img{
    width: 50%;
}
.section_9_card_body{
    width: 50%;
    position: relative;
}
.section_9_card_body_title{
    color: #285131;
    width: 100%;
    border-bottom: 1px solid #285131;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.section_9_card_body_title_jp{
    font-size: 30px;
    letter-spacing: 4px;
}
.section_9_card_body_title_en{
    font-size: 16px;
    letter-spacing: 2px;
}
.section_9_card_body_title_logo{
    width: 130px;
    position: absolute;
    z-index: 5;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.section_9_card_body_text{
    font-size: 16px;
    line-height: 30px;
    color: #000;
}
.section_9_card_body_position{
    position: absolute;
    z-index: 5;
    width: 100%;
    display: flex;
    bottom: 0px;
    font-size: 14px;
}
.section_9_card_last{
    display: flex;
}
.section_9_card_last{
    display: flex;
    align-items: flex-end;
    margin-top: -100px;
    justify-content: space-between;
}
.section_9_card_last img{
    width: 55%;
    padding-right: 0px;
}
.section_9_card_last p{
    width: 43%;
    font-size: 14px;
}
.section_10{
    padding: 100px 0px;
    background-color: #DFECE2;
}
.section_10_card{
    background-color: #fff;
    margin-bottom: 50px;
}
.section_10_card_body{
    padding: 20px;
    position: relative;
    aspect-ratio: 5/4;
}
.section_10_card_body_title{
    font-size: 26px;
    color: #285131;
    margin-bottom: 10px;
}
.section_10_card_body_title span{
    font-size: 14px;
    border: 1px solid #285131;
    color: #000;
    padding: 3px 5px;
}
.section_10_card_body_text{
    color: #000;
    font-size: 13px;
}
.section_10_card_body_position{
    position: absolute;
    display: flex;
    left: 0px;
    padding: 0px 20px;
    padding-bottom: 20px;
    bottom: 0px;
    width: 100%;
    font-size: 12px;
}
.section_10_card_body_position p{
    margin-bottom: 0px;
    line-height: 15px;
}

.section_11_title{
    margin-top: 50px;
    text-align: center;
    width: 100%;
    padding: 30px;
    color: #285131;
    border-bottom: 1px solid #285131;
    border-top: 1px solid #285131;
    margin-bottom: 100px;
}
.section_11_title h2{
    font-size: 32px;
}
.section_11_title p{
    font-size: 20px;
}
.section_11_card_title{
    font-size: 24px;
    text-align: center;
    color: #285131;
    padding: 30px 0px;
    letter-spacing: 2px;
}
.section_11_card_text{
    color: #000;
    font-size: 14px;
    margin-bottom: 100px;
}
.section_11_table{
    margin-bottom: 50px;
}
.section_11_table_title{
    color: #285131;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #285131;
    margin-bottom: 20px;
}
.section_11_table_title h2{
    margin-bottom: 0px;
    font-size: 24px;
    letter-spacing: 2px;
}
.section_11_table_title p{
    margin-bottom: 0px;
    font-size: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.section_11_table_title p img{
    width: 20px;
    margin-right: 10px;
}
.section_11_table_column{
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: space-between;
    border-bottom: 1px solid #285131;
    margin-bottom: 20px;
}
.section_12_title{
    color: #285131;
    width: 100%;
    font-size: 30px;
    border-bottom: 1px solid #285131;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.section_12_title span{
    font-size: 16px;
    margin-left: 10px;
}
.section_12_text{
    font-size: 16px;
    color: #000;
}
.section_12_too{
    text-align: center;
}
.section_12_too h2{
    color: #E0004F;
    font-size: 30px;
    letter-spacing: 4px;
    margin-bottom: 0px;
}
.section_12_too h2 span{
    font-size: 50px;
}
.section_12_too p{
    font-size: 16px;
    color: #000;
    margin-bottom: 0px;
}
.section_13_title{
    text-align: center;
    margin: 30px 0px;
    color: #285131;
    font-size: 24px;
    margin-bottom: 20px;
}
.section_13_title span{
    font-size: 34px;
}
.section_13_btn{
    background-color: #285131;
    color: #fff !important;
    font-size: 26px;
    padding: 10px 40px;
}
.section_13_btn:hover{
    color: #fff;
    text-decoration: none;
}
.section_14_table p{
    margin-bottom: 0px;
    padding: 0px 20px;
    font-size: 14px;
}
.section_14_table hr{
    margin: 20px 0px;
    border: 1px solid #5D8063;
}
.section_15_contact_btn{
    width: 20%;
    aspect-ratio: 6/2;
    margin: 0px 20px;
    color: #fff !important;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_15_contact_btn:hover{
    text-decoration: none;
    color: #fff;
}




/* custom */

.background_color_1{
    background-color: #753445;
}
.background_color_2{
    background-color: #333951;
}
.w-50{
    width: 50%;
}
.w-30{
    width: 30%;
}
.w-70{
    width: 70%;
}
.display-flex{
    display: flex;
}
.top_space{
    padding-top: 150px;
}
.mt-50{
    margin-top: 50px;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.h-100{
     height: 100%;
}
/* custom */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
}

/* Active буюу X тэмдэгтийн хөдөлгөөн */
.menu-icon[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}
.menu-icon[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}
.menu-icon[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media only screen and (max-width: 1000px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .sp-w-100{
        width: 100% !important;
    }
    .sp-p-0{
        padding: 0px !important;
    }
    header{
        background-color: #5D8063;
        height: 60px;
    }
    header nav{
         height: auto;
    }
    header nav ul{
        display: block;
        height: auto;
        border-bottom: 1px solid #285131;
        border-top: 1px solid #285131;
        border-right: none;
        border-left: none;
    }
    header nav ul li{
        width: 100%;
        border-bottom: 1px solid #285131;
        border-top: 1px solid #285131;
        border-right: none;
        padding: 10px 0px;
        border-left: none;
    }
    header nav ul li a.active{
        background-color: #5D8063;
    }
    .header_menu_btn{
        color: #fff;
        font-size: 24px;
    }
    .header_top_link_1{
        width: 70px;
        font-size: 12px;
    }
    .header_top_link_2{
        width: 23px;
        margin: 0px 2px;
    }
    .section_desc{
        font-size: 10px;
    }
    .top_space{
        padding-top: 100px;
    }
    .main_title_jp{
        font-size: 24px;
    }
    .main_title_en{
        font-size: 16px;
    }
    .section_2_text{
        line-height: 30px;
        font-size: 16px;
        letter-spacing: 0px;
    }
    .section_2_text_2{
        font-size: 16px;
        line-height: 30px;
    }
    .section_2_text_3{
        font-size: 14px;
        color: #000;
        line-height: 25px;
        letter-spacing: 1px;
        text-align: center;
    }
    .section_3_text{
        top: 10px;
    }
    .section_3_text_1{
        font-size: 14px;
    }
    .section_3_text_2{
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0px;
    }
    .section_6_cats_cat{
        font-size: 14px;
    }
    .sub_title{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .section_7_card{
        flex-wrap: wrap;
        margin-bottom: 100px;
    }
    .section_7_card_body_title{
        line-height: 30px;
        font-size: 20px;
    }
    .section_7_card_body_text{
        line-height: 25px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    .section_7_card_body_img p{
        margin-bottom: 20px;
        font-size: 12px;
    }
    .section_8{
        padding: 20px;
    }
    .section_8_card{
        padding: 10px;
        flex-wrap: wrap;
    }
    .section_8_card_body_title_jp{
        font-size: 24px;
        letter-spacing: 2px;
    }
    .section_8_card_body_title_en{
        letter-spacing: 1px;
        font-size: 12px;
    }
    .section_8_card_body_title{
        margin-bottom: 30px;
    }
    .section_8_card_body_text{
        font-size: 14px;
        line-height: 25px;
    }
    .section_8_card_body_text span{
        font-size: 16px;
    }
    .section_9_card_img{
        width: 100%;
        order: 2;
    }
    .section_9_card_body{
        width: 100%;
        order: 1;
    }
    .section_9_card_body_title_logo{
        width: 80px;
    }
    .section_9_card_last{
        order: 3;
        flex-wrap: wrap;
    }
    .section_9_card_body_position{
        position: static;
        margin: 20px 0px;
    }
    .section_9_card_last img{
        width: 100%;
    }
    .section_9_card_last p{
        width: 100%;
        margin-top: 20px;
    }
    .section_10{
        padding: 50px 0px;
    }
    .section_10_card_body_title{
        font-size: 20px;
    }
    .section_11_title h2{
        font-size: 24px;
    }
    .section_11_title p{
        font-size: 14px;
    }
    .section_11_card_title{
        font-size: 20px;
        padding: 20px 0px;
    }
    .section_11_card_text{
        margin-bottom: 50px;
    }
    .section_11_table_title p{
        font-size: 14px;
    }
    .section_11_table_title h2{
        font-size: 20px;
    }
    .section_11_table_column{
        font-size: 14px;
    }
    .section_12_title{
        font-size: 20px;
    }
    .section_12_text{
        font-size: 14px;
    }
    .section_12_too{
        font-size: 24px;
    }
    .section_12_t00 span{
        font-size: 35px;
    }
    .section_12_too p{
        font-size: 13px;
    }
    .section_13_title{
        font-size: 16px;
    }
    .section_13_title span{
        font-size: 20px;
    }
    .section_13_btn{
        font-size: 18px;
    }
    .section_14_table p{
        padding: 0px;
    }
    .section_14_table hr{
        margin: 10px 0px;
    }
    .section_15_contact_btn{
        width: 30%;
        font-size: 20px;
    }
}








.rool:hover{
        background-color: #ffffff;
        opacity:0.3;
        visibility: visible;
    }
    .busho{
        width: 960px;
        padding: 50px 130px;
    }
    .busho::after{
        content: "";
        clear: both;
        display: block;
    }
    .busho p:nth-of-type(1){
        width: 160px;
        display: block;
        float: left;
    }
    .busho p:nth-of-type(1) img{
        width: 138px;
        height: auto;
    }
    .busho p:nth-of-type(2){
        width: 540px;
        font-size: 20px;
        display: block;
        float: right;
    }
    .busho p:nth-of-type(3){
        width: 540px;
        font-size: 58px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
    .busho p:nth-of-type(3) img{
        width: 60px;
        height: auto;
        margin: 0px;
        padding-right: 10px;
        vertical-align:middle;
    }
    .busho p:nth-of-type(4){
        width: 540px;
        font-size: 16px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
    .busho p:nth-of-type(5){
        width: 540px;
        font-size: 16px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
@media only screen and (max-width: 768px) {
    .busho{
        width: 100%;
        padding: 50px 0px;
    }
    .busho::after{
        content: "";
        clear: both;
        display: block;
    }
    .busho p:nth-of-type(1){
        width: 10%;
        display: block;
        float: left;
    }
    .busho p:nth-of-type(1) img{
        width: 90%;
        height: auto;
    }
    .busho p:nth-of-type(2){
        width: 89%;
        font-size: 14px;
        display: block;
        float: right;
    }
    .busho p:nth-of-type(3){
        width: 89%;
        font-size: 38px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
    .busho p:nth-of-type(3) img{
        width: 40px;
        height: auto;
        margin: 0px;
        padding-right: 10px;
        vertical-align:middle;
    }
    .busho p:nth-of-type(4){
        width: 89%;
        font-size: 12px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
    .busho p:nth-of-type(5){
        width: 89%;
        font-size: 12px;
        line-height: normal;
        display: block;
        float: right;
        clear: right;
    }
}
