* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a { 
    text-decoration: none;
    border-bottom:1px solid #ccc;
}
body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    vertical-align: top;
}
.wid {
    max-width: 1180px;
    margin: auto;
}
.bg_full {
    background: url() no-repeat 50% 50%;
    overflow: hidden;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.ac_nbox {
    width: 55px;
    border-radius: 50%;
    overflow: hidden;
}
.ac_nbox::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.ac_pathways {
    height: 250px;
    position: relative;
    display: flex;
    white-space: normal;
}
.ac_node + .ac_node {
    margin-left: 150px;
}
.ac_parents, .ac_nodes {
    height: 100%;
    display: flex;
}
.ac_nmiddle {
    align-self: center;
}
.ac_ntop {
    align-self: flex-start;
}
.ac_empty {
    height: 50px;
}
.ac_txts {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    font-weight: bold;
    width: 150px;
    margin-bottom: 10px;
}
.ac_bg_txt {
    font-size: 8px;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    display: inline-block;
    padding: 1px 5px;
    font-weight: normal;
}
.ac_node {
    position: relative;
}
.ac_plus {
    background-color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 100%;
    bottom: 0;
    transform: translate(-50%, 30%);
    cursor: pointer;
    animation: pulse-animation 1s infinite;
}
.ac_plus::before, .ac_plus::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    width: 50%;
    height: 2px;
    background-color: #fff;
}
.ac_plus::after{
    transform: rotate(90deg);
}
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
    }
    100% {
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
}
.ac_childs {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 150px;
}
.ac_top {
    align-self: flex-start;
    height: auto;
}
.ac_bottom {
    align-self: flex-end;
    height: auto;
}
.ac_nodes{
    position: relative;
}
.ac_nodes::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    border-bottom: 2px dashed #ccc;
    transform: translateY(-50%);
}
.ac_nbox .bg_full, .ac_image .bg_full {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ac_nbox .bg_full{
    width: 100%;
    height: 100%;
}
.ac_line_two::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 25px;
    transform: rotate(-30deg);
    height: 2px;
    width: 225px;
    border-top: 2px dashed #ccc;
    transform-origin: left center;
}
.ac_line_two::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 25px;
    transform: rotate(30deg);
    height: 2px;
    width: 225px;
    border-top: 2px dashed #ccc;
    transform-origin: left center;
}
.ac_line_one::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 25px;
    transform: rotate(-30deg);
    height: 2px;
    width: 225px;
    border-top: 2px dashed #ccc;
    transform-origin: left center;
}
.ac_ntop.ac_line_one::before {
    top: 30px;
    transform: rotate(30deg);
}
.ac_oh{
    overflow: hidden;
    padding: 150px 0;
    position: relative;
}
.ac_oh::after{
    content: '';
    width: 35%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 0;
    transition: opacity 0.4s;
	pointer-events: none;
}
.ac_oh::before{
    content: '';
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
	pointer-events: none;
}
.ac_oh[data-active="left"]::before,
.ac_oh[data-active="right"]::after{
    opacity: 1;
}
.ac_popup {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 5;
    overflow: auto;
    padding: 30px;
    align-items: flex-start;
}
.ac_popupactive .ac_popup {
    opacity: 1;
    visibility: visible;
}
.ac_popup::-webkit-scrollbar {
    width: 10px;
}
.ac_popup::-webkit-scrollbar-track {
   background: #f1f1f1;
}
.ac_popup::-webkit-scrollbar-thumb {
   background: #888;
}
.ac_popup::-webkit-scrollbar-thumb:hover {
   background: #555;
}
.ac_inner {
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    max-width: 60%;
    margin-left: auto;    
    margin-right: auto;    
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ac_inner .ac_col:first-child {
    width: 155px;
    padding: 0 30px;
}
.ac_inner .ac_col:last-child {
    flex: 1;
    padding-left: 30px;
}
.ac_row {
    display: flex;
    align-items: center;
    background-color: #ebebeb;
    padding: 30px;
}
.ac_image{
    position: relative;
    border-radius: 50%;
}
.ac_image::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.ac_poptxt {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
}
.ac_popdesc {
    font-size: 14px;
    color: #171717;
}
.ac_popt {
    font-size: 15px;
    line-height: 1.5;
    color: #4e4c4c;
    padding: 30px;
}
.ac_close {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.4s;
}
.ac_close::before, .ac_close::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 2px;
    background-color: #D72D18;
    transform: rotate(45deg);
}
.ac_close::after {
    transform: rotate(-45deg);
}
.ac_close:hover {
    transform: rotate(90deg);
}
.ac_pathways_scroll {
    display: inline-block;
    white-space: nowrap;
    transition: transform 2s;
}
.ac_aright, .ac_aleft {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.4s, visibility 0.4s;
    animation: pulse-animation 1s infinite;
}
.ac_aright::before, .ac_aleft::before {
    content: '';
    position: absolute;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg);
    left: 6px;
    top: 7px;
}
.ac_aleft{
    right: auto;
    left: 10px;
}
.ac_aleft::before{
    transform: rotate(135deg);
    left: 9px;
}
.ac_hide{
    opacity: 0;
    visibility: hidden;
}
.ac_sub_tit, .ac_desc {
    display: none;
}
.ac_tit_txt > img {
    height: 75px;
    width: auto;
}
.ac_popt table img {
    width: auto;
    height: 30px;
}
.ac_popt table span {
    display: block;
    font-size: 12px;
    max-width: 75px;
    text-align: center;
}
.ac_popt table {
    text-align: center;
    margin-top: 30px;
    border-collapse: collapse;
}
.ac_popt td {
    border: 1px solid #ddd;
    padding: 10px 15px;
}
.ac_poptxt > img {
    display: none;
}
.img_none > span{
    display: none;
}
.ac_potxt {
    display: none;
}
.ac_popt b {
    font-weight: bold;
    color: #000;
}
.ac_blackbtn {
    background-color: #333;
    padding: 10px 20px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}
.ac_popt a:hover{
    color: #D72D18;
}
a.ac_blackbtn:hover{
    background-color: #D72D18;
    color: #fff;
}

@media (max-width: 1024px){
    .ac_poptxt {
        font-size: 20px;
    }
    .ac_inner .ac_col:first-child {
        width: 130px;
    }
}
@media (max-width: 768px){
    .ac_inner{
        max-width: 85%;
    }
}
@media (max-width: 500px){
    .ac_inner{
        max-width: 100%;
    }
    .ac_row{
        padding: 20px;
        display: block;
    }
    .ac_inner .ac_col{
        width: 100% !important;
        padding: 0 !important;
    }
    .ac_inner .ac_col > .ac_image{
        max-width: 40%;
        margin: auto;
        margin-bottom: 15px;
    }
    .ac_popt{
        padding: 20px;
    }
    .ac_oh{
        padding: 100px 30px;
    }
    .ac_oh::after, .ac_oh::before{
        width: 20%;
    }
}