/*
  Version: 2024.03.15
*/

/* 템플릿 리셋 설정 */
.page-template-page-templates .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
html {
    font-size: 14px;
}
body.page-template {
    font-family: 'Noto Sans KR', Arial, Helvetica, sans-serif !important;
    font-weight: 400;
}
.sena_color {
    color: #BB2727;
}
.sena_strong { font-weight: 700; }
.scrol_hidden {
    height: 100%;
    min-height: 100%;
    overflow: hidden !important;
    touch-action: none;
}

/* header */
.mmnpb_header {
    width: 100%;
    height: 55px;
}
.mmnpb_nav_logo_area {
    position: relative;
}
.mmnpb_menu_icon {
    position: absolute;
    top: 50%;
    background: none;
    transform: translateY(-50%);
}
.mmnpb_menu_icon svg { width: 30px; height: 30px;}
.mmnpb_header_wrap.headerFix .mmnpb_menu_icon svg {
    stroke: #333;
}
.mmnpb_nav_logo_area h1 {
    padding-left: 40px;
    font-size: 1.8rem;
    font-weight: normal;
}
.mmnpb_main_logo {
    width: 180px;
    display: block;
}
/* .mmnpb_main_menu a:hover {
    color: #ef3899 !important;
} */
.mmnpb_header_wrap {
    font-size: 1rem;
    width: 100%;
    background-color: #ffffff;
    /* box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075); */
    position: fixed;
    z-index: 50;
    top:0;
    left:0;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: transform, background-color;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mmnpb_header_wrap:hover {
    background-color: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}
.mmnpb_header_wrap.headerFix {
    position: fixed;
    transform: translateY(-85px) translateZ(0);
    -webkit-transform: translateY(-85px) translateZ(0);
}
.mmnpb_header_wrap.headerFix.active{
    background-color: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}
.mmnpb_header_wrap .mmn_navbar {
    height: 55px;
}
.mmnpb_main_menu {
    position: relative;
    z-index: 1;
    padding: 0 1rem 0 2rem;
    height: 80px;
    display: none !important;
}

.mmnpb_main_menu li {
    position: relative;
    /* min-width: 150px; */
}
.mmnpb_main_menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}
.mmnpb_main_menu > li > a {
    padding: 0 2rem 0 1rem;
    display: block;
    height: 100%;
    font-size: 1rem;
    line-height: 80px;
    font-weight: 700;
    color: #333;
    z-index: 2;
    position: relative;
}
.mmn_wpmem_already_logined {
    display: block;
    color: #333;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
}
.mmnpb_main_menu > li > a span {
    display: inline-block;
    position: relative;
}
.mmnpb_main_menu > li > a span:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 10px;
    background: #1790A4;
    transform: scaleX(0);
    -webkit-transition: transform .3s ease 0.1s;
    -moz-transition: transform .3s ease 0.1s;
    -o-transition: transform .3s ease 0.1s;
    -ms-transition: transform .3s ease 0.1s;
    transition: transform .3s ease 0.1s;
}
.mmnpb_main_menu > li:hover a span:after {
    transform: scaleX(1);
}
.mmnpb_main_menu .sub-menu {
    position: absolute;
    width: 100%;
    padding-top: 10px;
    opacity: 0;
    will-change: opacity;
    transform: scaleY(0) translateZ(0);
    -webkit-transform: scaleY(0) translateZ(0); /* trnaslateZ(0) and backface prevent 1px movement */
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    z-index: 1;
}
.mmnpb_main_menu.mmn_sub_on .sub-menu {
    opacity: 1;
    transform: scaleY(1) translateZ(0);
    -webkit-transform: scaleY(1) translateZ(0);
    -webkit-backface-visibility: hidden;
}
.mmnpb_main_menu .sub-menu a {
    font-size: 0.9rem;
    color: #999;
}
.mmnpb_main_menu .sub-menu a:hover {
    text-decoration: underline;
}
.mmnpb_main_menu:after {
    content: '';
    will-change: opacity, transform;
    height: 200px;
    position: absolute;
    top: 80px;
    background: #ffffff;
    width: calc(100% + 100px);
    left: -50px;
    z-index: -1;
    border-radius: 0 0 0.3rem 0.3rem;
    box-shadow: 2px 5px 9px rgba(0,0,0,.2);
    transform-origin: top;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transition: opacity, transform .2s ease-in-out;
    -moz-transition: opacity, transform .2s ease-in-out;
    -o-transition: opacity, transform .2s ease-in-out;
    -ms-transition: opacity, transform .2s ease-in-out;
    transition: opacity, transform .2s ease-in-out;
}
.mmnpb_main_menu.mmn_sub_on:after {
    /* display: block; */
    transform: scaleY(1);
    /* transform: translateY(0); */
    opacity: 1;

}
.mmnpb_main_menu .menu-item-has-children:hover .sub-menu a {
    color: #222;
}
.mmnpb_main_menu .menu-item-has-children:hover .sub-menu a:hover {
    color: #1790A4;
}

.mmnpb_left_menu {
    height: 100%;
    width: calc(100% - 50px);
    max-width: 400px;
    position: fixed;
    z-index: 60;
    top: 0;
    left: -452px;
    background-color: #fff;
    /* left: -450px; */
    -webkit-transition: transform .3s ease .15s;
    -moz-transition: transform .3s ease .15s;
    -o-transition: transform .3s ease .15s;
    -ms-transition: transform .3s ease .15s;
    transition: transform .3s ease .15s;
}
.mmnpb_left_menu.mmnpb_active {
    transform: translateX(450px);
}
.mmnpb_sidebar_inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.mmnpb_side_logo {
    padding: 30px 0;
    text-align: center;
    font-size: 30px;
    letter-spacing: -1px;
}
.mmnpb_side_logo img {
    display: inline-block;
    width: 170px;
}
.mmnpb_side_menu_con {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: auto;
}
#mmnpb_side_close {
    position: absolute;
    right: -45px;
    top: 5px;
}
.mmnpb_side_nav {
    padding: 0 25px;
}
.mmnpb_side_nav li {
    border-bottom: 1px solid #f5f5f5;
}
.mmnpb_side_nav li a {
    display: block;
    padding: 10px 0 10px 10px;
    font-size: 1.2rem;
}
.mmnpb_side_submenu {
    font-size: 15px;
}
.mmnpb_side_submenu li {
    border-top: 1px solid #f5f5f5;
    border-bottom: 0;
    padding-left: 10px;
}
.mmnpb_side_submenu li a {
    color: #999;
    font-size: 16px;
}
.mmnpb_side_nav .sub-menu a {
    padding: 10px 0 10px 25px;
    color: #777;
    font-size: 1.1rem;
}
.mmnpb_side_menu_con .menu-item-has-children {
    position: relative;
}
.mmnpb_side_menu_con .menu-item-has-children:after {
    content: '+';
    position: absolute;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    right: 20px;
    top: 7px;
}

.mmnpb_side_menu_con .menu-item-has-children.active:after {
    content: '-';
    font-size: 24px;
    top: 4px;
}
.mmnpb_side_nav .menu-item.active > a {
    color: #1790A4;
}
.mmnpb_side_nav .sub-menu {
    display: none;
}
.mmnpb_side_nav .sub-menu.active {
    display: block;
}
.mmnpb_side_customer {
    padding: 120px 0 10px 20px;
}
.mmn_cs_bnt svg {
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
}
.mmnpb_side_call a {
    display: block;
    font-size: 16px;
    color: #777777;
    letter-spacing: -1px;
    white-space: nowrap;
    height: 28px;
}
.mmnpb_side_call li {
    margin-bottom: 10px;
}
.mmn_cs_bnt {
    display: inline-block;
    background: #08b24c;
    width: 25px;
    height: 25px;
    margin-left: 12px;
    border-radius: 12px;
    position: relative;
}
.mmn_cs_bnt.side_talkbnt {
    background: #f9de00;
}
.mmnpb_modal {
    display: none;
    position: fixed;
    z-index: 55;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}
.mmn_logstate_bnt {
    background: #fff;
    border: 1px solid #999;
    padding: 0.2rem 0.5rem;
    border-radius: 0.2rem;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 400;
}
@media screen and (min-width: 576px) {
    html { font-size:16px; }
    html.mmnpb_rem{font-size: 16px;}
    .mmnpb_main_logo { width: 230px; }
    .mmnpb_header { height: 80px; }
    .mmnpb_header_wrap .mmn_navbar {
        height: 80px;
    }
}
@media screen and (min-width: 992px) {
    .mmnpb_main_menu {
        display: flex !important;  display: -ms-flexbox;
    }
    .mmnpb_left_menu {
        display: none;
    }
    .mmnpb_nav_logo_area h1 {
        padding-left:0;
    }
}

/* 홈 */
.mmnpb_wrap {
    max-width: 1920px; margin: auto; overflow: hidden;
    background: transparent;
  }
.mmn_section_container {
    max-width: 1180px; margin: auto; box-sizing: unset;
    padding-right: 20px; padding-left: 20px; position: relative;
}
/* 메인 */
.mmnpb_main_section {
    position: relative;
}
.mmn_main_container {
    position: absolute; z-index: 1;
}
.mmn_main_container .mmn_section_container {
    height: 100%;
}
.mmn_main_visual {
    position: relative;
}
.mmn_main_visual:before {
    content: ''; display: block; padding-top: 75%;
}
.mmn_main_visual_con {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden;
}
.mmn_main_img {
    display: none;
}
.mmn_main_img_m {
    display: block;
}
.mmn_main_texts_inner {
    position: relative; width: 90%;
}
.mmn_main_title {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    padding: 0 10px 0 10px;
    word-break: keep-all;
    animation: y_fade .8s ease-in-out .5s both;
}
.mmn_main_title span {
    display: inline-block;
}
.mmn_main_texts p {
    font-size: 16px;
    color: #fff;
    padding: 0 10px 0 10px;
    line-height: 1.5;
    word-break: keep-all;
    letter-spacing: -1px;
    font-weight: 300;
    max-width: 500px;
    animation: y_fade .8s ease-in-out 1s both;
}
.mmn_main_texts p br {
    display: none;
}
.mmn_main_title br {
    display: none;
}
.mmn_main_pattern {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
    width: 70px;
}

/* 유튜브 */
.mmn_section_youtube {
    margin: 3rem 0;
    position: relative;
}
.mmn_section_youtube:before {
    content:'';
    display: block;
    padding-top: 56%;
}
.mmn_section_youtube_inner {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    overflow: hidden;
}

.mmn_section_youtube_inner iframe {
    width: 100%;
    height:100%;
    border: 0;
}
/* 섹션 모두의 연결 */
.mmn_section_container_inner {
    /* height: 550px; */
}
.mmn_s_subt {
    font-size: 20px;
    color: #BB2727;
    display: block;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}
.mmn_section_sena_t {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    word-break: keep-all;
    text-align: center;
}
.mmn_section_p {
    font-size: 16px;
    text-align: center;
    color: #222;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    word-break: keep-all;
}
.mmn_section_p br {
    display: none;
}
.mmn_section_senatech .mmn_section_container {
    padding-right: 0;
    padding-left:0;
}


/* 엘리먼트 flow */
.mmn_section_right_area {
    height: auto;
    overflow: hidden;
    position: relative;
}

ul.mmn_element_flow_area {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.mmn_section_right_area:hover ul.mmn_element_flow_area {
    animation-play-state: paused;
}
.mmn_element_flow_area li {
    display: inline-block;
    width: 44%;
    height: 140px;
    margin: 3%;
    flex-shrink: 0;
    border-radius: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mmn_flow1 {
    animation: element_flow1_m 40s linear infinite;
}
.mmn_flow2 {
    animation: element_flow2_m 40s linear infinite;
}
.mmn_md_none {
    display: none;
}
@keyframes element_flow1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3025px);
    }
}
@keyframes element_flow2 {
    0% {
        transform: translateY(-130px);
    }
    100% {
        transform: translateY(-3155px);
    }
}
@keyframes element_flow1_m {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-550%);
    }
}
@keyframes element_flow2_m {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-575%);
    }
}

/* 메인 이벤트 배너  */
.mmn_section_senaplay {
    padding: 55px 0 20px;
    /* display: none; */
}
.mmn_main_p_img {
  font-size: 0;
  display: inline-block;
  margin: 0 15px;
  width: 85%;
  box-sizing: border-box;
}
.mmn_main_p_img img {
  /* width: 100%; */
  height: auto;
  max-width: 100%;
}
.mmn_section_plevt_t {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    word-break: keep-all;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    justify-content: center;
-ms-flex-pack: center;
}
.mmn_main_evt_em { color: #BB2727; font-weight: 500; display: inline-block;}
.mmn_main_ev_bnts { margin-top: 20px; }
a.ev_rbnt {
  font-size: 13px;
  color: #fff;
  letter-spacing: -1px;
  background: #BB2727 url('../img/inplay_w.svg') no-repeat 10px center/16px;
  padding: 9px 15px 9px 33px;
  border-radius: 15px;
  display: inline-block;
  line-height: 1;
  margin: 0 5px;
  border: 1px solid #BB2727;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
a.ev_wbnt {
  font-size: 13px;
  letter-spacing: -1px;
  color: #BB2727;
  background: #fff url('../img/ingood_r.svg') no-repeat 10px center/16px;
  padding: 9px 15px 9px 33px;
  border-radius: 15px;
  display: inline-block;
  line-height: 1;
  margin: 0 5px;
  border: 1px solid #BB2727;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
a.ev_rbnt:hover { text-decoration: none; color: #fff; opacity: 0.5; }
 a.ev_wbnt:hover { text-decoration: none; color: #BB2727; opacity: 0.5;}
 a.ev_wbnt:active, a.ev_wbnt:focus { text-decoration: none; color: #BB2727; }
/* 메인 sns */
.mmn_section_sns {
    padding: 80px 0 100px;
}
.mmn_main_sns_box {
    list-style: none;
    text-align: center;
    padding: 10px 0 0 0;
}
.mmn_main_sns_box li {
    display: inline-block;
    margin: 5px 1rem;
}
.mmn_section_normal_title {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
}
.mmn_main_sns_box li a, .mmn_main_sns_box li a img {
    display: block;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.mmn_main_sns_box li a img {
    display: block;
    width: 50px;
}
.mmn_main_sns_box li a:hover {
    opacity: 0.5;
}


@media screen and (min-width: 576px) {
    .mmn_section_container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .mmn_main_visual:before {
        padding-top: 40%;
    }
    .mmn_main_texts_inner {
        width: 75%;
    }
    .mmn_main_img {
        display: block;
        height: 100%;
        max-width: inherit;
    }
    .mmn_main_img_m {
        display: none;
    }
    .mmn_main_title {
        font-size: 30px;
    }
    .mmn_main_title br {
        display: block;
    }
    .mmn_main_pattern {
        left: 30px;
        top: 20px;
        width: 110px;
    }
    /* .mmn_main_pattern3 {
        right: 10%;
        top: -50px;
        width: 210px;
    }
    .mmn_main_pattern2 {
        right: 15%;
        top: 15%;
        width: 160px;
    } */
    /* 유튜브 */
    .mmn_section_youtube:before {
        padding-top: 40%;
    }
    /* 모두의 연결 */
    .mmn_section_sena_t {
        font-size: 45px;
        text-align: left;
    }
    .mmn_s_subt {
        text-align: left;
        font-size: 28px;
    }
    .mmn_section_p {
        font-size: 20px;
        text-align: left;
    }
    /* 메인 이벤트 배너  */
    .mmn_section_plevt_t {
        font-size: 48px;
        text-align: left;
    }
    .mmn_main_p_img {
      width: 408px;
      margin: 0 20px;
    }
    .mmn_main_ev_bnts { margin-top: 40px; }
    a.ev_rbnt {
      font-size: 15px;
      background: #BB2727 url('../img/inplay_w.svg') no-repeat 10px center;
      padding: 10px 20px 10px 45px;
      border-radius: 18px;
      margin: 0 7px;
    }
    a.ev_wbnt {
      font-size: 15px;
      background: #fff url('../img/ingood_r.svg') no-repeat 10px center;
      padding: 10px 20px 10px 45px;
      border-radius: 18px;
      margin: 0 7px;
    }
    /* sns */
    .mmn_section_normal_title {
        font-size: 32px;
    }
    .mmn_main_sns_box li a img {
        width: 75px;
    }
    .mmn_main_sns_box li {
        margin: 5px 1.4rem;
    }

}
@media screen and (min-width: 768px) {
	.mmn_main_texts p br {
        display: block;
    }
    /* 모두의 세나 */
    ul.mmn_element_flow_area {
        list-style: none;
        padding: 0;
        width: 100%;
        height: 100%;
        /* display: -ms-flexbox; */
        display: flex;
        /* -ms-flex-direction: column !important; */
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .mmn_section_right_area {
        height: 550px;
    }
    .mmn_element_flow_area li {
        display: block;
        width: 86%;
        height: 245px; /* 총550/2 - margin값 */
        margin: 15px 7%;
        flex-shrink: 0;
        border-radius: 22px;
        overflow: hidden;
    }
    .mmn_flow1 {
        animation: element_flow1 42s linear infinite;
    }
    .mmn_flow2 {
        animation: element_flow2 42s linear infinite;
    }
    .mmn_md_none {
        display: block;
    }
    .mmn_section_senatech .mmn_section_container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .mmn_section_p br {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .mmn_section_container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .mmn_main_visual:before {
        padding-top: 33.3%;
    }
    .mmn_main_img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    .mmn_main_title {
        font-size: 45px;
        margin-bottom: 1rem;
        padding: 0 20px 0 80px;
    }
    .mmn_main_texts p {
        font-size: 20px;
        color: #fff;
        padding: 0 20px 0 80px;
        line-height: 1.5;
        letter-spacing: 0;
        max-width: 700px;
    }
}

/* 브랜드 소개  */
.mmn_page_topimg_area {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
}
.mmn_page_topimg_title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}
.mmn_subt_p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.3;
    word-break: keep-all;
    color: #bbb;
}
.mmn_section_br_logo {
    padding: 2.5rem 0 3rem;
}
.mmn_section_half_subt {
    font-size: 1.2rem;
    display: block;
    line-height: 1.3;
    margin-bottom: 7px;
}
.mmn_section_half_t {
    font-size: 2rem;
    margin: 0.5rem 0 2rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
    color: #222;
}
.mmn_section_half_p {
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
    font-weight: 400;
    word-break: keep-all;
    margin-bottom: 0.7rem;
}
.mmn_logo_bnts {
    text-align: center;
    padding: 1.5rem 0 0;
    display: none;
}
a.mmn_download_bnt {
    background: #fff;
    padding: 0.5rem 2.2rem 0.5rem 0.8rem;
    color: #555;
    border: 1px solid #555;
    font-size: 0.85rem;
    border-radius: 1.3rem;
    text-decoration: none;
    display: inline-block;
    margin: 0 3px;
    position: relative;
    line-height:1.5;
    font-weight:400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a.mmn_download_bnt.mmn_gray_bnt {
    background: #555;
    color: #fff;
}
a.mmn_download_bnt:hover {
    text-decoration: none;
    color: #fff;
    background: #BB2727;
    border:1px solid #BB2727;
}
.mmn_download_bnt svg {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 1rem;
    height: 1rem;
    line-height: 1;
}
.mmn_logo_images img:first-child {
    padding: 40px 0 20px;
}
/* 브랜드-연혁 */
.mmn_section_br_history {
    padding: 2.5rem 0;
    background: #F2F3F5;
}
.mmn_br_history_area .mmn_section_container {
    margin-left: -20px;
    margin-right: -20px;
}
.mmn_section_br_history .mmn_section_sena_t {
    text-align: center;
    margin-bottom: 0;
}
.mmn_section_center_p {
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
    word-break: keep-all;
    text-align: center;
    margin-bottom: 0.5rem;
}
.mmn_br_mid_visual_area {
    margin: 20px 0 1rem;
}
.mmn_br_history_each_year {
    width: 50%;
    background: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: background-color .3s ease-in-out;
    -moz-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    -ms-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}
.mmn_history_each_img {
    display: block;
    width:100%;
    height:auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mmn_br_history_each_year:hover .mmn_history_each_img {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.08);
}
.mmn_each_year_img {
    overflow: hidden;
}

.mmn_each_year_info h4 {
    display: block;
    margin: 0;
    padding: 2rem 0;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: -1px;
    font-weight: 700;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -ms-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}
.mmn_each_year_info {
    padding: 0 1.1rem 1.5rem;
}
.mmn_each_year_info p {
    text-align: center;
    line-height: 1.3;
    color: #555;
    font-size: 0.95rem;
    word-break: keep-all;
    margin-bottom: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -ms-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    height: 2.3rem;
}
.mmn_each_year_info span {
    display: inline-block;
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
    border: 1px solid;
    width: 4.5rem;
    margin: auto;
    line-height: 1;
    padding: 0.45rem 0 0.5rem;
    border-radius: 1rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mmn_br_history_each_year:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 5px solid #BB2727;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}
.mmn_br_history_each_year:hover:after {
    opacity: 1;
}
/* .mmn_br_history_each_year:hover {
    background:#555;
} */
.mmn_br_history_each_year:hover .mmn_each_year_info h4 {
    color: #BB2727;
}
.mmn_br_history_each_year:hover .mmn_each_year_info span {
    background:#BB2727;
    border: 1px solid #BB2727;
    color: #fff;
    transform: translateY(-10px);
}
.mmn_br_history_area {
    margin-top: 2rem;
}
.mmn_history_modal {
    display: none;
    position: fixed;
    z-index: 1002;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}
.mmn_history_modal.de_active {
    display: block;
}
.mmn_history_detail_box {
    position: relative;
    margin: 3rem auto;
    max-width: 800px;
    width: calc(100% - 50px);
    background: #fff;
}
.mmn_hst_de_year {
    display: inline-block;
    text-align: center;
    color: #BB2727;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 5px;
    margin: 0 0 2rem;
    position: relative;
    z-index: 1004;
}
.mmn_hst_de_year:before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #BB2727;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.mmn_hst_de_title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
    padding: 0;
    display: block;
    text-align: center;
    word-break: keep-all;
}
.mmn_hst_de_con {
    padding: 1.5rem 0 0;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
    font-weight: 300;
    word-break: keep-all;
    text-align: left;
}
.mmn_hst_de_close {
    position: absolute;
    display: block;
    width: 3rem;
    height: 3rem;
    right: 0;
    top: 0;
    cursor: pointer;
}
.mmn_hst_de_close:hover svg {
    stroke: #BB2727;
}
.mmn_hst_de_close svg {
    width: 100%;
    height: 100%;
    display: block;
}
.mmn_section_center_p br {
    display: none;
}
.mmn_hst_de_infos {
    position: relative;
    padding: 2rem 2rem 2rem;
    text-align: center;
}
/* 비전 */
.mmn_section_br_history.sena_vision {
    background: #fff;
}
.mmn_s_vision_each ul {
    list-style: none;
    padding: 0;
    max-width: 420px;
    margin: auto;
}
.mmn_s_vision_each ul li {
    display: block;
    /* max-width: 420px; */
}
.mmn_s_vision_each_img img {
    width: 100%;
    height: auto;
}
.mmn_s_vision_each ul li svg {
    display: block;
    width: 100%;
    height: auto;
}
.mmn_s_vision_each h4 {
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0;
}
.mmn_s_vision_each p {
    font-size: 1rem;
    color: #222;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
/* 중간이미지 */
.mmn_section_md_img {
    min-height: 230px;
    background: transparent;
}
#main, .main-content, .main-content-wrap, .container-fluid {
    background: transparent !important;
}

/* 브랜드 슬라이더 */
.mmn_section_br_slider {
    background: #f1f1f1;
    padding: 2rem 0;
}
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide.mmn_br_slide {
  font-size: 1rem;
}
.mmn_br_sl_left {
    text-align: center;
    height: 400px;
    min-height: 230px !important;
}
.mmn_br_sl_right {
    height: 400px;
    position: relative;
}
.mmn_gl_mobile_infos ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0.4rem;
}
.mmn_br_slide_inner {
    height: inherit;
}
.mmn_br_slide_inner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0;
    letter-spacing: -1px;
    word-break: keep-all;
}
.mmn_br_slide_inner h3 br {
    display: none;
}
.mmn_br_sl_p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #222;
    line-height: 1.5;
    word-break: keep-all;
    margin-bottom: 0.5rem;
    padding: 0;
}
.mmn_br_sl_p br {
    display: none;
}
.mmn_br_sl_say {
    font-size: 0.83rem; color: #777; font-weight: 300;
    margin-bottom: 0; padding: 0; word-break: keep-all; letter-spacing: -1px;
}
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -5px !important; width: 150px !important; left: 50% !important; transform: translate3d(-50%,0,0);
}
.mmn_br_map_img_frame {
    position: relative; text-align: center;
}
.mmn_br_marker_inactive {
    display: block; width:24px; height: 31px;
}
.mmn_br_marker_active {
    display: block; width:24px; height: 31px;
}
.mmn_brglobal_marker_big {
    width: 2rem;
    height: 2rem;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.mmn_active .mmn_brglobal_marker_big, .mmn_brglobal_marker_big:hover {
    fill: #BB2727;
}
.mmn_gl_marker_frame {
    cursor: pointer;
    transform: translate(-15px, -30px);
}
.mmn_br_global_infos {
    position: absolute;
    width: 235px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-70%);
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ddd;
    display: none;
}
.mmn_br_global_infos.mmn_active {
    display: block;
}
.mmn_br_global_infos ul {
    list-style: none; padding: 0;
}
.mmn_br_global_infos ul li {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    padding: 0.35rem 1.5rem;
    color: #222;
    text-align: left; line-height: 1.4;
}
.global_info_bnts {
    border-top: 1px solid #eee;  padding: 0.7rem 1.3rem 0 1.5rem!important;  margin-top: 0.5rem;
}
.global_info_bnts span {
    display: inline-block;
    min-width: 55px;
    letter-spacing: -1px;
}
.mmn_br_gl_europe .global_info_bnts {
    text-align: left;
}
.global_info_bnts a {
    display: inline-block;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    font-size: 12px;
    padding: 5px 7px;
    margin: 3px 2px 3px 0;
    line-height: 1;
    margin: 3px 2px 1px 0;
    letter-spacing: -1px;
    color: #222;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.global_info_bnts a:hover {
    background: #222; color: #fff; border-color: #222; text-decoration: none; }
.global_info_top span {
    font-size: 1rem; color: #222; font-weight: 400; padding: 0 0 2px 0.3rem;
}
.mmn_br_global_infos .global_info_top {
    text-align: center; padding: 0.7rem 0 0.7rem 20px; display: block;
    border-bottom: 1px solid #eee; line-height: 1;
}
.mmn_br_global_infos .global_info_top svg {
    width: 1.2rem; height: 1.2rem; display: inline-block;
}
li.global_info_intro {
    padding-top: 1rem !important;
}
.global_info_widh_icon {
    padding-left: 3rem !important; position: relative;
}
.global_info_widh_icon img {
    position: absolute;
    left: 1.5rem;
    width: 1.1rem;
    height: auto;
    top: 0.36rem;
}
.mmn_br_gl_korea {
    position: absolute; top: 42.3%; left: 81.5%;
}
.mmn_br_gl_china {
    position: absolute; left: 78%; top: 50%;
}
.mmn_br_gl_europe {
    position: absolute; left: 49.3%; top: 33%;
}
.mmn_br_gl_usa {
    position: absolute; top: 44%; left: 15%;
}
/* 일본 (2026-05-08 신규 추가) */
.mmn_br_gl_japan {
    position: absolute; top: 43.3%; left: 84.7%;
}
.mmn_section_br_slider .swiper-button-next {
    right: 0.1rem;
    width: 3rem;
    height: 3rem;
    color: #555;
    margin-top: -1.5rem;
}
.mmn_section_br_slider .swiper-button-prev {
    left: 0.1rem;
    width: 3rem;
    height: 3rem;
    color: #555;
    margin-top: -1.5rem;
}
.mmn_section_br_slider .swiper-button-next:after, .mmn_section_br_slider .swiper-button-prev:after {
    color: #555;
    font-size: 0;
}
.mmn_section_br_slider .swiper-button-next svg, .mmn_section_br_slider .swiper-button-prev svg {
    width: 3rem; height: 3rem;
}
.gl_close {
    position: absolute;
    right: 1rem;
    top: 0.7rem;
    display: block;
    cursor: pointer;
}
.mmn_br_sl_container .swiper-pagination-bullet-active {
    background-color: #BB2727;
}
.mmn_br_nomal_img {
    max-height: 220px;
    width: auto;
    max-width: 75%;
    display: inline-block;
}
.mmn_br_nomal_img.sena_patners {
    max-width: 100%;
}
.mmn_br_sl_p.sl_2nd_con {
    margin-bottom: 0;
}
.mmn_br_c_l_img {
    width: 100%;
    max-width: 120px;
}
.mmn_br_c_r_img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-top: 1.5rem;
}
.swiper-slide.mmn_br_slide span.mmn_br_sl_sub_span {
    font-size: 0.85rem;
    line-height: 1;
    letter-spacing: -1px;
}
strong.mmn_br_sl_sub_span {
    font-size: 1.2rem;
    line-height: 1;
    padding-top: 5px;
}
strong.mmn_br_sl_sub_span i {
    font-style: normal;
}
/* .mmn_br_sl_center_t {
    text-align: center;
} */
/* .mmn_br_sl_center_t br {
    display: block;
} */
.mmn_br_sl_cen_con_right {
    text-align: center;
}
.mmn_br_sl_cen_con_right h3 br {
    display: none;
}
.mmn_br_sl_cen_con_left strong {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    margin-top: 0.2rem;
}
.mmn_br_sl_cen_con_left span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
}
.mmn_br_sl_cen_con_left strong i {
    font-style: normal;
    font-weight: 700;
}
/* .mmn_br_sl_cen_con_right p {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin: 0.5rem 0 0;
} */
/* 글로벌 파트너스 */
.mmn_section_br_partners { padding: 50px 0 0px; }
.mmn_page_section_title {
  font-size: 32px; font-weight: 700; color: #222;
  margin-bottom: 25px; line-height: 1.2; text-align: center;
}
.mmn_page_section_p {
  font-size: 14px; line-height: 1.7; margin:0 auto; word-break: keep-all; text-align: center; max-width: 900px;
}
.br_partners_box {
  margin-top: 25px; margin-bottom: 0; list-style: none; padding: 0;
  display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;  justify-content: center;
-ms-flex-pack: center; margin-left: -5px; margin-right: -5px;
}
.br_partners_box li { box-sizing: border-box; padding: 0 5px; font-size: 0; line-height: 1; margin-bottom: 20px; width: 33.3%;}
.partner_each_inner { position: relative; overflow: hidden; border-radius: 5px; border: 1px solid #E8E8E8; }
.partner_txt { font-size: 12px; text-align: center; position: absolute; width: 100%; height: 100%;   justify-content: center; -ms-flex-pack: center; align-items: center;
-ms-flex-align: center; background-color: rgba(0,0,0,.9); color: #fff; letter-spacing: -0.5px; display: -ms-flexbox; display: flex; opacity: 0; -webkit-transition: all 0.5s ease;
transition: all 0.5s ease; }
/* .partner_each_inner:hover .partner_txt { opacity: 1; } */
.partner_img { font-size: 0; line-height: 1;}
.partner_img img { width: 100%; height: auto; }
.partner_br_li { display: none; }
/* .br_partners_box li:nth-child(20n+8):after {
  display: block;
} */

/* 글로벌 sns */
.mmn_section_br_sns {
    padding: 3rem 0;
}
.br_sns_title {
    position: relative;
    padding-bottom: 3.5rem;
    margin-bottom: 4rem;
}
.br_sns_title:after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    border-bottom: 1px solid #999;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.mmn_br_sns_t2 {
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 0.8rem;
}
.mmn_br_sns_t2 span {
    /* font-weight: 700; */
}
.mmn_main_gl_home_box {
    list-style: none;
    margin: 1.5rem 0 4rem;
    padding: 0;
}
.mmn_main_gl_home_box li {
    display: block;
    min-width: 118px;
    margin: 0 0.6rem 0.8rem;
}
.mmn_main_gl_home_box li a {
    display: block;
    background: #f1f1f1;
    padding: 0.5rem 0.7rem;
    border-radius: 3px;
    color: #333;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.mmn_main_gl_home_box li a:hover {
    /* color: #BB2727; */
    text-decoration: underline;
    background: #e0e0e0;
}
.mmn_main_gl_home_box li a span {
    font-size: 1.1rem;
    letter-spacing: -1px;
    line-height: 1;
    padding: 0 0 1px 7px;
    font-weight:400;
}
.mmn_section_br_sns .mmn_main_sns_box li a img {
    max-width: 60px;
}
/* 구글맵 */
#sena_gl_map {
    width: 100%;
    height: 200px;
}
.mmn_section_global_company .gm-style .gm-style-iw-d {
    white-space: nowrap;
    overflow: hidden;
}
.mmn_section_global_company .gm-style-iw button:focus {
    outline: 0;
}
/* 해외법인 정보 */
.mmn_gl_company_infos {
    padding: 0;
    margin: 2rem -1rem 2rem -1rem;
}
.mmn_gl_company_info_area {
    list-style: none;
    padding: 0.8rem 0.3rem 0;
}
.mmn_gl_company_each_info {
    width: 100%;
}
.mmn_gl_company_each_inner {
    padding: 1rem;
    position: relative;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    box-sizing: border-box;
}
.mmn_gl_company_each_inner:hover {
    background: #e4e7eb;
    /* border:1px solid #eee; */
}
/* .mmn_gl_company_each_inner:hover .mmn_gl_company_info_area li {
    color: #fff;
} */
.mmn_gl_company_info_area li {
    font-size: 0.83rem;
    display: block;
    line-height: 1.3;
    padding: 0.3rem 0;
    color: #333;
    font-weight: 300;
    word-break: keep-all;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.mmn_gl_company_img img {
    display: inline-block;
    width: 100%;
    /* max-width: 270px; */
    height: auto;
}
.sena_korea .mmn_gl_company_img img {
    display: inline-block;
    /* max-width: 340px; */
    width: 100%;
}
.sena_korea .mmn_gl_company_img img:nth-child(2n) {
    display: none;
}
.mmn_gl_company_infos_abroad {
    padding: 0;
}
.mmn_gl_com_spot {
    font-size: 1rem;
}
.mmn_gl_company_info_area .mmn_gl_company_hasitem {
    position: relative;
    padding: 0.3rem 0 0.5rem 4.2rem;
    color: #777;
    line-height: 1.5;
}
.mmn_gl_company_hasitem span {
    position: absolute;
    left: 0;
    display: inline-block;
    /* line-height: 1.3; */
    /* padding: 2px 3px; */
    border-radius: 3px;
    /* background: #555; */
    color: #333;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: -1px;
}
.mmn_gl_company_info_area h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
}
.mmn_gl_company_info_area .mmn_gl_company_sub {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.9rem !important;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.mmn_br_sl_center_content {
    min-width: 80%;
}
.mmn_section_global_company .mmn_section_container {
    padding-left: 0;
    padding-right: 0;
}

/* 채용정보 */
.mmn_section_recruit {
    padding: 4rem 0 10rem;
    background: #f5f5f5;
}
.mmn_recrut_left img {
    max-width: 12rem;
    width: 100%;
    height: auto;
    margin: 0 0 2.5rem;
}
.mmn_recrut_left p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 2rem;
    word-break: keep-all;
}
.mmn_recrut_left p br {
    display: none;
}
.mmn_recruit_bnts span {
    display: block;
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    color: #333;
    text-align: center;
    line-height: 1.5;
}
.mmn_recruit_bnts span i {
    font-style: normal;
    color: #BB2727;
}
.mmn_recruit_right img {
    max-width: 412px;
    width: 100%;
    height: auto;
    display: block;
}
.mmn_recruit_right h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 1.3rem 0 1rem;
    word-break: keep-all;
    text-align: center;
}
.mmn_recruit_right h3 br {
    display: block;
}
/* mmn default template */
.mmn_contents_wrap {
    /* background: #f1f1f1; */
    min-height: 200px;
    padding: 3rem 0 5rem;
}
iframe.sena_ir_iframe {
    width: 100%;
    border: 0;
}
.sena_iframe_box {
    height: 100%;
}
#sena_ir_stock {
    height: 1700px;
}
#sena_ir_disclosure {
    height: 700px;
}
#sena_ir_finance {
    height: 2000px;
}
#sena_ir_audit {
    height: 650px;
}
#sena_ir_notice {
    height: 800px;
}
#sena_ir_notice_sub {
    height: 500px;
    display: none;
}
#sena_ir_news {
    height: 1200px;
}
#sena_ir_news_sub {
    height: 1200px;
    display: none;
}
#main.wide.column1 .main-content {
    /* padding: 0; */
}

/* 경영원칙 */
.mmn_section_principle {
  background: #f7f7f7;
  padding: 50px 0;
}
.mmn_principles_con .mmn_section_sena_t {
  text-align: center;
  margin-bottom: 30px;
}
.mmn_principles_con strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.mmn_principles_con p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom:0;
  word-break: keep-all;
}
.mmn_principles_con p br {
  display: none;
}
.mmn_principles_con {
  text-align: center;
  color: #222;
}
.download_bnts { margin-top: 45px; }
a.down_link_bnt {
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
-ms-flex-align: center;
justify-content: center;
-ms-flex-pack: center;
font-size: 12px;
color: #222;
line-height: 1.3;
padding: 7px 15px;
border-radius: 23px;
border: 1px solid #333;
background-color: #fff;
margin: 0 5px 10px;
box-sizing: border-box;
min-width: 165px;
}
a.down_link_bnt img {
  width: 13px;
  height: 13px;
  margin-left:5px;
}
a.down_link_bnt:hover {
  text-decoration: none;
  color: #222;
  background-color: #f5f5f5;
}
.reporting_center {
  font-size: 15px;
  line-height: 1.3;
  background: #333;
  font-weight: 400;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  border-radius: 33px;
  margin-top: 20px;
  border: 0;
  box-sizing: border-box;
  min-width: 165px;
  outline: 0 !important
}
.reporting_center:hover {
  background: #111;
}
.priciple_popup {
  background-color: rgba(0,0,0,.8);
  justify-content: center;
-ms-flex-pack: center;
align-items: center;
-ms-flex-align: center;
position: fixed;
left:0;
top:0;
z-index: 9999;
width: 100%;
height: 100%;
display: none;
}
.priciple_popup.mmn_active {
  display: -ms-flexbox;
  display: flex;
}
.priciple_popup_box {
  width: 100%;
  max-width: 450px;
  box-sizing: border-box;
  padding: 50px 25px;
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0,0,0,.5);
  text-align: center;
  color: #333;
  margin: 10px;
}
.priciple_popup_box h3 {
  font-size: 24px;
  color: #222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
}
.priciple_popup_box p {
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}
.priciple_popup_box p br {
  display: none;
}
.report_close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  background-color: #fff;
  border:0;
}
.report_close img {
  width: 32px;
  height: 32px;
}

/* 추가 */
.mmn_pc_only { display: none; }
.mmn_mobile_only { display: block; }
@media screen and (min-width: 576px) {
    a.mmn_download_bnt {
        padding: 0.6rem 2.3rem 0.6rem 1rem; font-size: 1rem; margin: 0 5px;
    }
    .mmn_section_half_p {
        margin-bottom: 1.5rem;
    }
    .mmn_br_history_each_year {
        width: 33.3%;
    }
    .mmn_each_year_info h4 {
        font-size: 1.5rem;
    }
    .mmn_section_center_p br {
        display: block;
    }
    .mmn_hst_de_year {
        font-size: 2.2rem; padding-bottom: 5px; margin: 0 0 3rem;
    }
    .mmn_hst_de_title {
        font-size: 1.4rem;
    }
    .mmn_hst_de_infos {
        padding: 3rem 4rem 4rem;
    }
    .mmn_br_slide_inner h3 {
        font-size: 2.2rem; padding: 0 0 1.2rem 1rem;
    }
    .mmn_br_global_infos {
        transform: translate(-50%,-50%);
    }
    .mmn_br_sl_p {
        font-size: 1rem;
        padding: 0 0 0 1rem;
    }
    .mmn_br_sl_say {
        font-size: 0.9rem; padding: 0 0 0 1rem;
    }
    .mmn_gl_marker_frame {
        cursor: pointer; transform: translate(-16px, -32px);
    }
    #sena_gl_map {
        width: 100%; height: 400px;
    }
    .mmn_gl_company_each_info {
        width: 50%;
    }
    .mmn_section_br_slider .swiper-button-next {
        right: 0.5rem;
    }
    .mmn_section_br_slider .swiper-button-prev {
        left: 0.5rem;
    }
    .mmn_br_sl_cen_con_left strong {
        font-size: 1.5rem;
    }
    .mmn_br_c_r_img {
        max-width: 220px; margin-top: 1.5rem;
    }
    .mmn_br_nomal_img {
        max-height: 400px;
        max-width: 80%;
    }
    .mmn_br_nomal_img.sena_patners {
        max-width: 90%;
    }
    .mmn_br_c_l_img {
        max-width: 220px;
    }
    .mmn_section_global_company .mmn_section_container {
        padding-left: 20px; padding-right: 20px;
    }
    .mmn_recrut_left p br {
        display: block;
    }
    .mmn_recrut_left p {
        font-size: 1.25rem;
    }
    .mmn_recrut_left img {
        max-width: 17rem; margin: 0 0 3.5rem;
    }
    .mmn_recruit_right h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    .mmn_recruit_right h3 br {
        display: none;
    }
    #sena_ir_stock {
        height: 1500px;
    }
    #sena_ir_disclosure {
        height: 850px;
    }
    #sena_ir_finance {
        height: 1500px;
    }
    #sena_ir_audit {
        height: 700px;
    }
    #sena_ir_notice {
        height: 800px;
    }
    .mmn_br_history_area .mmn_section_container {
        margin-left: inherit; margin-right: inherit; margin: auto;
    }
    .mmn_section_md_img {
        min-height: 400px;
    }
    .partner_img img { width: 105px; height: 60px; }
    .partner_each_inner { width: 107px; }
    .br_partners_box li { width: inherit; padding: 0 10px;}
    .br_partners_box { margin-left: -10px; margin-right: -10px; }
}
@media screen and (min-width: 768px) {
    .mmn_logo_images img:first-child {
        padding: 0 0 60px;
    }
    .mmn_br_slide_inner {
        height: 370px;
    }
    .mmn_br_map_img_frame {
        margin-bottom: 0;
        /* height: 100%; */
    }
    .mmn_gl_company_each_info {
        width: 33.3%;
    }
    .mmn_section_br_slider .swiper-button-next svg, .mmn_section_br_slider .swiper-button-prev svg {
        width: 3rem; height: 3rem;
    }
    .mmn_page_topimg_area {
        height: 350px;
    }
    .mmn_principles_con .mmn_section_sena_t {
      margin-bottom: 45px;
    }
    .mmn_principles_con strong {
      font-size: 24px; margin-bottom: 20px;
    }
    .mmn_principles_con p {
      font-size: 16px;
    }
    .mmn_principles_con p br {
      display: block;
    }
    a.down_link_bnt {
      font-size: 12px;
      color: #333;
      line-height: 1.2;
      padding: 8px 20px;
      border-radius: 23px;
      border: 1px solid #222;
      background-color: #fff;
      margin: 0 5px;
      min-width: inherit;
    }
    a.down_link_bnt img {
      width: 14px; height: 14px;
    }
    .priciple_popup_box {
      width: 800px;
      max-width: 800px;
      box-sizing: border-box;
      padding: 80px 60px;
      position: relative;
      background-color: #fff;
      border-radius: 3px;
      box-shadow: 0 0 15px rgba(0,0,0,.5);
      text-align: center;
      color: #333;
      margin: 10px;
    }
    .priciple_popup_box h3 {
      font-size: 32px; margin-bottom: 58px;
    }
    .priciple_popup_box p {
      margin-bottom: 30px; font-size: 18px;
    }
    .priciple_popup_box p br {
      display: block;
    }
    .report_close img {
      width: 46px; height: 46px;
    }
    .reporting_center {  font-size: 16px;  margin-top: 40px; }
    .mmn_page_section_title {
      font-size: 45px; margin-bottom: 32px;
    }
    .mmn_page_section_p { font-size: 18px; line-height: 1.7;}
    .br_partners_box { margin-top: 50px; }
    .mmn_pc_only { display: block; }
    .mmn_mobile_only { display: none; }

}
@media screen and (min-width: 992px) {
    .mmn_br_history_each_year {
        width: 25%;
    }
    .mmn_gl_company_each_info {
        width: 25%;
    }
    .sena_half .mmn_gl_company_img img {
        width: 100%;
    }
    .mmn_gl_company_each_info.sena_half {
        width: 50%;
        /* margin-bottom: 1rem; */
    }
    /* .sena_half .mmn_gl_company_info_area {
        padding: 0 0 0 2rem;
    } */
    .mmn_gl_company_info_area {
        list-style: none;
        padding: 0.8rem 0 0 0;
    }
    .mmn_section_br_slider .swiper-button-next {
        right: 1.5rem;
    }
    .mmn_section_br_slider .swiper-button-prev {
        left: 1.5rem;
    }
    .mmn_br_sl_p br {
        display: block;
    }
    .mmn_br_sl_cen_con_right h3 br {
        display: block;
    }

}
@media screen and (min-width: 1140px) {
    .mmn_br_global_infos.gl_usa {
        transform: translate(-95%,-26%);
    }
    .mmn_br_global_infos.gl_europe {
        transform: translate(8%,-36%);
    }
    .mmn_br_global_infos.gl_china {
        transform: translate(-25%,-18%);
    }
    .mmn_br_global_infos.gl_korea {
        transform: translate(-15%,-35%);
    }
    /* 일본 (2026-05-08 신규 추가) */
    .mmn_br_global_infos.gl_japan {
        transform: translate(-10%,-37%);
    }
    .mmn_br_slide_inner h3 br {
        display: block;
    }

}
@media screen and (min-width: 1200px) {
  .sena_half .mmn_gl_company_info_area {
      padding: 0 0 0 2rem;
      margin-bottom: 0;
  }
  .sena_half .mmn_gl_company_img img {
      max-width: 270px;
      min-width: 270px;
  }
  .partner_br_li { min-width: 100%; height: 1px; width: 100%; display: block !important; margin: -20px 0 0;}
}


@keyframes y_fade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
