@charset "UTF-8";
.container {
  margin: 0 auto;
  padding-left: var(--gap);
  padding-right: var(--gap);
  max-width: var(--xl);
}
.container.relative {
  position: relative;
}

.gutter-xxl {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 1660px) {
  .gutter-xxl {
    padding-left: var(--gap-sm);
    padding-right: var(--gap-sm);
  }
}

.skip {
  position: relative;
  z-index: 1000;
}
.skip a {
  position: absolute;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.25s;
  width: 100%;
  height: 50px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skip a:focus, .skip a:hover {
  transform: translateY(0%);
}

body:has(#fullpage) .header--logo a {
  background-image: url(../images/common/bi-white.png);
}
body:has(#fullpage) .header nav .gnb li a {
  color: #fff;
}
body:has(#fullpage) .header--util .parent-btn {
  color: #fff;
  border-color: #fff;
}
body:has(#fullpage) .header--util .parent-btn i {
  background-image: url(../images/common/head-util-arrow-white.png);
}

.header {
  position: relative;
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 100;
  background: #fff;
}
.header.Main {
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.header.Main .header--util .ham-btn .line {
  background: #fff;
}
@media (max-width: 768px) {
  .header {
    height: 4.1rem;
    padding: 0 2rem;
  }
}
.header--logo a {
  display: block;
  width: 19.9rem;
  height: 3rem;
  background: url("../images/common/bi.png") no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .header--logo a {
    width: 11.8rem;
    height: 2rem;
  }
}
.header--util {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header--util .parent-btn {
  display: inline-block;
  font-size: 1.5rem;
  height: 4rem;
  line-height: 4rem;
  border: 1px solid #2b316b;
  color: #2b316b;
  padding: 0 2rem;
  border-radius: 0.4rem;
}
.header--util .parent-btn i {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/head-util-arrow.png);
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .header--util .parent-btn {
    font-size: 1.1rem;
    padding: 0 1rem;
    height: 3rem;
    line-height: 3rem;
  }
  .header--util .parent-btn i {
    height: 8px;
    width: 8px;
    background-size: contain;
  }
}
.header--util .ham-btn {
  width: 2.4rem;
  height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  align-items: flex-end;
}
.header--util .ham-btn .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-top: 5px;
  transition: all 0.4s ease-in-out;
}
.header--util .ham-btn .line:nth-child(1) {
  margin-top: 0;
}
.header--util .ham-btn .line:nth-child(2) {
  width: 70%;
}
.header--util .mobile-button {
  display: none;
}
@media (max-width: 768px) {
  .header--util .mobile-button {
    display: flex;
  }
}
.header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header nav .gnb {
  display: flex;
}
@media (max-width: 768px) {
  .header nav .gnb {
    display: none;
  }
}
.header nav .gnb li {
  white-space: nowrap;
  position: relative;
  padding: 0 50px;
}
@media (max-width: 1170px) {
  .header nav .gnb li {
    padding: 0 25px;
  }
}
@media (max-width: 1024px) {
  .header nav .gnb li {
    padding: 0 12.5px;
  }
}
.header nav .gnb li:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 6px;
  height: 16px;
  background-image: url(../images/common/slash.png);
}
.header nav .gnb li:first-child::after {
  display: none;
}
.header nav .gnb li a {
  font-size: 1.9rem;
  transition: all 0.3s;
  font-weight: bold;
  color: #000;
}
@media (max-width: 1170px) {
  .header nav .gnb li a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .header nav .gnb li a {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .mm-open .header.Main {
    transition: all 0.3s;
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
  }
  .mm-open .header.Main .header--logo a {
    background-image: url("../images/common/bi.png");
  }
  .mm-open .header .header--util .parent-btn {
    border: 1px solid #164194;
    color: #164194;
  }
  .mm-open .header .header--util .parent-btn i {
    background-image: url(../images/common/head-util-arrow-on.png);
  }
  .mm-open .header .header--util .ham-btn .line {
    background-color: #000;
  }
}

#nav {
  position: fixed;
  left: 0;
  top: 41px;
  height: calc(100% - 41px);
  width: 100%;
  z-index: 1100;
  background-color: #fff;
  transition: all 0.3s ease-in;
  transform: translateX(100%);
  opacity: 0;
}

@media (max-width: 768px) {
  .mm-open #nav {
    transform: translateX(0%);
    opacity: 1;
  }
}
.mm-open .btn-header-menu {
  background-image: url(../images/common/header-menu-close.png);
  width: 15px;
  height: 15px;
  background-size: 100% auto;
}
.mm-open .ham-btn .line1 {
  transform: translateY(7px) rotate(45deg);
}
.mm-open .ham-btn .line2 {
  opacity: 0;
  visibility: hidden;
}
.mm-open .ham-btn .line3 {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-gnb {
  height: calc(100% - 109px);
  overflow-y: auto;
}
.nav-gnb .lv1-li {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.nav-gnb .lv1-li > a {
  display: flex;
  align-items: center;
  font-weight: 700;
  background-color: #fff;
  color: #000;
  font-size: 1.5rem;
  height: 50px;
  padding-left: 17px;
  width: 100%;
}
.nav-gnb .lv1-li > a > span {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 32px;
}
.nav-gnb .lv1-li .depth {
  display: none;
  padding: 14px 0;
  border-top: 1px solid #dddddd;
}
.nav-gnb .lv1-li .depth li a {
  display: block;
  font-weight: 500;
  color: #666666;
  font-size: 1.3rem;
  padding: 6px 0 6px 25px;
}
.nav-gnb .lv1-li.active > a {
  background-color: #f5f5f5;
  color: #0e4194;
}
.nav-gnb .lv1-li.active > a > span::after {
  transform: rotate(180deg);
}
.nav-gnb .lv1-li.active .depth {
  display: block;
}

.dimmed {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.dimmed.active {
  opacity: 1;
  visibility: inherit;
  z-index: 90;
  background: rgba(0, 0, 0, 0.5);
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb12 {
  margin-bottom: 1.2rem !important;
}

.mb18 {
  margin-bottom: 1.8rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.red {
  color: #d22c2c;
}

.blue {
  color: #164194;
}

.black {
  color: #1d1d1d;
}

.row {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .br-none {
    display: none;
  }
}

.heading-40 {
  font-size: 4rem !important;
}

.heading-32 {
  font-size: 3.2rem !important;
}

.heading-25 {
  font-weight: normal !important;
  font-size: 2.5rem !important;
}

.heading-21 {
  font-weight: normal !important;
  font-size: 2.1rem !important;
}

.heading-19 {
  font-weight: normal !important;
  font-size: 1.9rem !important;
}

.heading-17 {
  font-weight: normal !important;
  font-size: 1.7rem !important;
}

.bold {
  font-weight: bold !important;
}

.progress {
  display: flex;
  height: 0.4rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.2rem;
}
.progress .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
.progress .bg-scope01 {
  background: #6a86bb;
}
.progress .bg-info {
  background: #a2b3d4;
}

.scope-num {
  display: inline-block;
  background: #f0f0f0;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  width: 13.6rem;
  height: 3.2rem;
  border-radius: 0.6rem;
}
.scope-num span {
  display: inline-block;
  position: relative;
  color: #555555;
  font-weight: bold;
}
.scope-num span:after {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 3px;
  display: block;
  width: 1px;
  height: 1.2rem;
  background: #c6c6c6;
}

.danger-ment {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.4rem;
}
.danger-ment .red {
  text-align: right;
  font-size: 1.3rem;
}
.danger-ment i {
  margin-top: 0.1rem;
  margin-right: 0.3rem;
  vertical-align: text-top;
}

.txt-wrap .txt01 {
  font-size: 1.7rem;
}
.txt-wrap .txt02 {
  font-size: 1.5rem;
  color: #717171;
}

.bdb {
  border-bottom: 1px solid #e4e4e4;
}

.dotted-box {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  border: 1px dashed #8e8e8e;
  height: 15rem;
  background: #f0f0f0;
  border-radius: 1.2rem;
}

.border-box {
  border: 1px solid #c6c6c6;
  border-radius: 1.2rem;
  padding: 4rem 3rem;
}

.dotted-ti {
  position: relative;
  padding-left: 3rem;
  font-weight: bold;
}
.dotted-ti:after {
  position: absolute;
  left: 0;
  top: 4px;
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background: #fff;
  border: 5px solid #8aa1ca;
  border-radius: 50%;
  box-sizing: border-box;
}

.certifi--box {
  height: 16.5rem;
  background-image: url("../images/home/certifi-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.certifi--box--top {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.certifi--box--top span {
  display: inline-block;
  margin-left: 0.5rem;
  border-radius: 1.2rem;
  background: #164194;
  color: #fff;
  height: 2.4rem;
  line-height: 2.4rem;
  padding: 0 1.2rem;
  font-size: 1.5rem;
}
.certifi--box--middle {
  margin-bottom: 1.5rem;
}
.certifi--box--middle strong {
  font-size: 2.1rem;
  color: #fff;
  line-height: 1;
}
.certifi--box--bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
.certifi--box--bottom dl {
  font-size: 1.3rem;
}
.certifi--box--bottom dl dt {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.certifi--box--bottom dl dd {
  line-height: 1;
}
.certifi--box--bottom button {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  padding-right: 1.5rem;
}
.certifi--box--bottom button:after {
  position: absolute;
  top: -3px;
  right: -10px;
  display: block;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../images/home/certifi-arrow.svg");
}

.vertical-dl {
  font-size: 1.7rem;
}
.vertical-dl dt {
  color: #717171;
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
}
.vertical-dl dd {
  font-size: 1.7rem;
}

.home-wrap {
  width: 1170px;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: auto;
}
.home-wrap > div {
  width: 50%;
}
.home-wrap > div .home-txt {
  margin-bottom: 4rem;
}
.home-wrap > div .home-txt h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.home-wrap > div .home-txt p {
  font-size: 2.1rem;
  line-height: 1.5;
}
.home-wrap > div .home-item {
  height: 60rem;
  padding: 6rem 8rem;
  background-repeat: no-repeat;
  color: #fff;
}
.home-wrap > div .home-item .home-item-head {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.home-wrap > div .home-item .home-item-head h3 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
}
.home-wrap > div .home-item .home-item-head p {
  font-size: 2.1rem;
  line-height: 1.5;
}
.home-wrap > div .home-item .home-item-body {
  height: calc(100% - 16.2rem);
}
.home-wrap .home-carbon .home-item {
  background-image: url("../images/home/carbon-bg.png");
}
.home-wrap .home-energy .home-item {
  background-image: url("../images/home/energy-bg.png");
}

#breadcrumb {
  width: 100%;
  background: #f8f8f8;
  height: 6rem;
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
}
@media (max-width: 768px) {
  #breadcrumb {
    height: 4rem;
    margin-top: 0;
  }
}
#breadcrumb--container {
  display: flex;
  align-items: center;
  width: 1440px;
  margin: auto;
  height: 100%;
}
@media (max-width: 768px) {
  #breadcrumb--container {
    width: 100%;
  }
}
#breadcrumb--container > li.home {
  border-left: 1px solid #D8D8D8;
}
#breadcrumb--container > li.home a {
  display: block;
  background: url("../images/common/sublayout-home.svg") no-repeat 50% 50%;
  width: 2.2rem;
  line-height: 6rem;
  margin: 0 1.9rem;
}
@media (max-width: 768px) {
  #breadcrumb--container > li.home a {
    margin: 0 auto;
    background-size: 15px;
  }
}
#breadcrumb--container > li {
  height: 100%;
  border-right: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  #breadcrumb--container > li {
    width: 4rem;
  }
}
#breadcrumb--container > li > a {
  position: relative;
  height: 100%;
  line-height: 6rem;
  color: #000;
  font-size: 1.7rem;
  display: block;
}
@media (max-width: 768px) {
  #breadcrumb--container > li > a {
    line-height: 4rem;
    font-size: 1.3rem;
  }
}
#breadcrumb--container > li + li {
  min-width: 32rem;
  position: relative;
}
@media (max-width: 768px) {
  #breadcrumb--container > li + li {
    flex: 1;
    min-width: auto;
  }
}
#breadcrumb--container > li + li > a {
  padding: 0 3.3rem;
}
@media (max-width: 768px) {
  #breadcrumb--container > li + li > a {
    padding: 0 1.8rem;
  }
}
#breadcrumb--container > li + li > a:after {
  position: absolute;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  display: block;
  content: "";
  width: 1.2rem;
  height: 0.8rem;
  background: url("../images/common/bread-arw.svg") no-repeat;
}
#breadcrumb--container > li .drop {
  display: none;
  position: absolute;
  left: -1px;
  width: calc(100% + 2px);
}
#breadcrumb--container > li .drop ul {
  border: 1px solid #D8D8D8;
  background-color: #fff;
}
#breadcrumb--container > li .drop li a {
  font-size: 1.7rem;
  display: block;
  white-space: nowrap;
  padding: 2rem 3.3rem;
  border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  #breadcrumb--container > li .drop li a {
    font-size: 1.3rem;
    padding: 1rem 1.8rem;
  }
}
#breadcrumb--container > li .drop li a:hover {
  color: #0E4194;
}
#breadcrumb--container > li .drop li:last-child a {
  border-bottom: none;
}
#breadcrumb--container > li.active .drop {
  display: block;
}
#breadcrumb--container > li.active > a {
  color: #0E4194;
}
#breadcrumb--container > li.active > a:after {
  transform: translateY(-50%) rotate(-180deg);
}

.tool-section .tool-top {
  position: absolute;
  top: 10rem;
  right: 2rem;
  display: flex;
  gap: 1.2rem;
}
.tool-section .tool-top .address-select {
  display: flex;
}
.tool-section .tool-top .address-select .form-control {
  width: 16rem;
  border-radius: 0.6rem 0 0 0.6rem;
}
.tool-section .tool-top .address-select .form-control + .form-control {
  border-left: none;
  border-radius: 0 0.6rem 0.6rem 0;
}
.tool-section .tool-top .map-option-toggle {
  display: flex;
  border: 1px solid #d8d8d8;
  border-radius: 0.4rem;
  background: #Fff;
  padding: 0.3rem;
}
.tool-section .tool-top .map-option-toggle button {
  padding: 0.7rem 0.8rem;
  font-size: 1.5rem;
  border-radius: 0.46rem;
  color: #555555;
}
.tool-section .tool-top .map-option-toggle button.active {
  background: #2d2d2d;
  color: #fff;
}
.tool-section .tool-top .api-link {
  position: relative;
  background: #fff;
  height: 40px;
  line-height: 4rem;
  border-radius: 0.4rem;
  padding: 0 2rem;
}
.tool-section .tool-top .api-link::after {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
}
.tool-section .tool-top .api-link.climate-type {
  color: #c8553e;
}
.tool-section .tool-top .api-link.climate-type::after {
  border-top: 6px solid #c8553e;
}
.tool-section .tool-top .api-link.carbon-type {
  color: #64940e;
}
.tool-section .tool-top .api-link.carbon-type::after {
  border-top: 6px solid #64940e;
}
.tool-section .tool-top .api-link.energy-type {
  color: #0868ac;
}
.tool-section .tool-top .api-link.energy-type::after {
  border-top: 6px solid #0868ac;
}
.tool-section .tool-top .api-link.score-type {
  color: #35645e;
}
.tool-section .tool-top .api-link.score-type::after {
  border-top: 6px solid #35645e;
}
.tool-section .tool-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.tool-section .tool-bottom {
  position: absolute;
  bottom: 8.2rem;
  right: 2rem;
}
.tool-section .tool > li {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: #fff;
  padding: 0.2rem;
}
.tool-section .tool > li > button {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  text-align: center;
  color: #222222;
  padding-top: 2rem;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center 0.5rem;
}
.tool-section .tool > li:first-child {
  border-radius: 4px 4px 0 0;
}
.tool-section .tool > li:last-child {
  border-radius: 0 0 4px 4px;
}
.tool-section .tool > li.active > button, .tool-section .tool > li:hover > button {
  transition: all 0.3s;
  background-color: #000;
  border-radius: 0.2rem;
  color: #fff;
}
.tool-section .tool > li + li {
  border-top: 1px solid #e5e5e5;
}
.tool-section .tool > li.active .tool--layer {
  display: block;
}
.tool-section .tool.single > li {
  border-radius: 6px;
}
.tool-section .tool + .tool {
  margin-top: 8px;
}
.tool-section .tool--setting > button {
  background-image: url("../images/ico/ico-tool01.png");
}
.tool-section .tool--setting.active > button, .tool-section .tool--setting:hover > button {
  background-image: url("../images/ico/ico-tool01-on.png");
}
.tool-section .tool--2d > button {
  background-image: url("../images/ico/ico-tool02.png");
}
.tool-section .tool--2d.active > button, .tool-section .tool--2d:hover > button {
  background-image: url("../images/ico/ico-tool02-on.png");
}
.tool-section .tool--3d > button {
  background-image: url("../images/ico/ico-tool03.png");
}
.tool-section .tool--3d.active > button, .tool-section .tool--3d:hover > button {
  background-image: url("../images/ico/ico-tool03-on.png");
}
.tool-section .tool--distance > button {
  background-image: url("../images/ico/ico-tool04.png");
}
.tool-section .tool--distance.active > button, .tool-section .tool--distance:hover > button {
  background-image: url("../images/ico/ico-tool04-on.png");
}
.tool-section .tool--area > button {
  background-image: url("../images/ico/ico-tool05.png");
}
.tool-section .tool--area.active > button, .tool-section .tool--area:hover > button {
  background-image: url("../images/ico/ico-tool05-on.png");
}
.tool-section .tool--radius > button {
  background-image: url("../images/ico/ico-tool06.png");
}
.tool-section .tool--radius.active > button, .tool-section .tool--radius:hover > button {
  background-image: url("../images/ico/ico-tool06-on.png");
}
.tool-section .tool--height > button {
  background-image: url("../images/ico/ico-tool07.png");
}
.tool-section .tool--height.active > button, .tool-section .tool--height:hover > button {
  background-image: url("../images/ico/ico-tool07-on.png");
}
.tool-section .tool--save > button {
  background-image: url("../images/ico/ico-tool08.png");
}
.tool-section .tool--save:hover > button {
  background-image: url("../images/ico/ico-tool08-on.png");
}
.tool-section .tool--print > button {
  background-image: url("../images/ico/ico-tool09.png");
}
.tool-section .tool--print:hover > button {
  background-image: url("../images/ico/ico-tool09-on.png");
}
.tool-section .tool--share > button {
  background-image: url("../images/ico/ico-tool10.png");
}
.tool-section .tool--share:hover > button {
  background-image: url("../images/ico/ico-tool10-on.png");
}
.tool-section .tool--topic > button {
  background-image: url("../images/ico/ico-tool11.png");
}
.tool-section .tool--topic.active > button, .tool-section .tool--topic:hover > button {
  background-image: url("../images/ico/ico-tool11-on.png");
}

.tool--layer {
  display: none;
  position: absolute;
  width: 30rem;
  top: 0;
  right: 50px;
  background: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 0.6rem;
}
.tool--layer--head {
  background: #000;
  height: 4.8rem;
  padding: 1.5rem 2rem;
}
.tool--layer--head h3 {
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.tool--layer--search {
  background: #f0f0f0;
  padding: 1rem 2rem;
  display: flex;
  gap: 0.8rem;
}
.tool--layer--search input {
  flex: 1;
  width: 100%;
}
.tool--layer--search button {
  width: 6.6rem;
}
.tool--layer--cont {
  padding: 2rem;
}

.topic--li {
  max-height: 33rem;
}
.topic--li--item--ti {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 0;
  cursor: pointer;
}
.topic--li--item--ti.active:after {
  content: "+";
}
.topic--li--item--ti.active + .topic--li--item--cont {
  display: block;
}
.topic--li--item--ti:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "-";
  display: block;
}
.topic--li--item--cont {
  display: none;
}
.topic--li--item--cont .form-radio em {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.topic--li--item--cont .form-radio em img {
  max-width: 100%;
}

.btn-api01 {
  position: absolute;
  right: 10px;
  bottom: 1rem;
  width: 5.7rem;
  height: 5.7rem;
  text-align: center;
  line-height: 5.7rem;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  letter-spacing: 1px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.btn-api01.climate-type {
  background: #c8553e;
}
.btn-api01.carbon-type {
  background: #64940e;
}
.btn-api01.energy-type {
  background: #0868ac;
}
.btn-api01.score-type {
  background: #35645e;
}

.btn-api02 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  border: 1px solid #fff;
}

.footer {
  width: 100%;
  align-items: center;
  background: #000;
}
.footer--family--container {
  display: flex;
  justify-content: flex-end;
  width: 144rem;
  margin: 0 auto;
  padding: 1.2rem 0;
  background: #000;
}
.footer--family--container select {
  height: 4rem;
  border-radius: 2rem;
  min-width: 24rem;
}
@media (max-width: 768px) {
  .footer--family--container {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer--logo img {
    width: 50%;
  }
}
.footer .footer-sitemap {
  background: #111111;
}
@media (max-width: 768px) {
  .footer .footer-sitemap {
    display: none;
  }
}
.footer .footer-sitemap .footer-sitemap-inner {
  width: 930px;
  margin: auto;
  display: flex;
  gap: 3rem;
  padding-top: 10rem;
  padding-bottom: 6rem;
}
.footer .footer-sitemap ul {
  flex: 1;
}
.footer .footer-sitemap ul li:first-child strong {
  display: block;
  color: #ffffff;
  font-size: 2.1rem;
  padding-bottom: 3rem;
  margin-bottom: 3.5rem;
  border-bottom: 3px solid #2b316a;
}
.footer .footer-sitemap ul li + li {
  margin-bottom: 3rem;
}
.footer .footer-sitemap ul li a {
  position: relative;
  color: #717171;
  font-size: 1.7rem;
  transition: all 0.3s;
}
.footer .footer-sitemap ul li a:hover {
  color: #fff;
}
.footer .footer-sitemap ul li a.foot-ico-link:after {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 14px;
  height: 15px;
  background-image: url("../images/ico/ico-foot-link.png");
}
.footer--container {
  display: flex;
  align-items: center;
  gap: 8rem;
  width: 144rem;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  color: #717171;
  background-repeat: no-repeat;
  background-position: 0 center;
}
@media (max-width: 768px) {
  .footer--container {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 2.5rem;
    margin: 0 4rem;
  }
}
.footer--addr {
  display: flex;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .footer--addr {
    display: inline-block;
  }
  .footer--addr * {
    display: inline !important;
    word-break: break-all;
    font-size: 1.4rem;
  }
}
.footer--addr dl {
  display: flex;
  color: #717171;
}
.footer--addr dl dt {
  font-weight: bold;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .footer--addr dl {
    flex-direction: column;
  }
}
.footer--addr span {
  display: inline-block;
  margin: 0 0.5rem;
  color: #C6C6C6;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .footer--addr span {
    margin: 0 0.2rem;
  }
}
.footer--copy {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .footer--copy {
    font-size: 1.2rem;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  text-indent: -9999px;
}
.icon-del._white {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/icon-del-white.png");
  width: 1.4rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 768px) {
  .icon-del._white {
    width: 1.2rem;
    height: 1.2rem;
    background-size: cover;
    background-position: 50% 50%;
  }
}
.icon-close._white {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/icon-close-white.png");
  width: 1.4rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 768px) {
  .icon-close._white {
    width: 1.2rem;
    height: 1.2rem;
    background-size: cover;
    background-position: 50% 50%;
  }
}
.icon-window._white {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/icon-window-white.png");
  width: 1.4rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 768px) {
  .icon-window._white {
    width: 1.2rem;
    height: 1.2rem;
    background-size: cover;
    background-position: 50% 50%;
  }
}
.icon-download._white {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/icon-download-white.png");
  width: 1.9rem;
  height: 1.9rem;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 768px) {
  .icon-download._white {
    width: 1.2rem;
    height: 1.2rem;
    background-size: cover;
    background-position: 50% 50%;
  }
}

.ico-bul {
  background-image: url("../images/common/ti-bul.png");
  width: 1.1rem;
  height: 1.1rem;
}

.ico-api {
  background-image: url("../images/ico/api-ico-20@13.png");
  width: 2rem;
  height: 1.3rem;
}

.ico-card01 {
  background-image: url("../images/main/item01-ico.png");
  width: 3.2rem;
  height: 3.2rem;
}

.ico-card02 {
  background-image: url("../images/main/item02-ico.png");
  width: 3.2rem;
  height: 3.2rem;
}

.badge {
  display: inline-block;
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 2rem;
  font-size: 1.5rem;
  border-radius: 1.6rem;
}
.badge.small {
  height: 2.4rem;
  padding: 0 1rem;
  line-height: 2.4rem;
  border-radius: 1.2rem;
  font-size: 1.3rem;
}
.badge.primary {
  background: #d0d9ea;
  color: #164194;
}
.badge.danger {
  background: #f6cccc;
  color: #d93333;
}
.badge.green {
  background: #d5ead7;
  color: #419c48;
}
.badge.sky {
  background: #ccecf9;
  color: #009fe3;
}
.badge.yellow {
  background: #fdedcc;
  color: #ff9600;
}
.badge.grey {
  background: #dddddd;
  color: #575756;
}
.badge.border-primary {
  border: 1px solid #d0d9ea;
  color: #164194;
  background: #fff;
}
.badge.border-green {
  border: 1px solid #d5ead7;
  color: #164194;
  background: #fff;
}
.badge.border-danger {
  border: 1px solid #f6cccc;
  color: #d40000;
  background: #fff;
}

.form-control {
  position: relative;
  border-radius: 0.6rem;
  border: 1px solid #555555;
  height: 3.2rem;
  padding: 0 1rem;
  background: #fff;
  color: #555555;
}
.form-control.lg {
  height: 4.8rem;
}
.form-control.md {
  height: 4rem;
}
.form-control.block {
  display: block;
  width: 100%;
}
.form-control.search {
  border-radius: 0.4rem;
  height: 4.8rem;
  border: transparent;
}
.form-control.search input {
  border: none;
  flex: 1;
  height: 100%;
  width: calc(100% - 40px);
  font-size: 1.7rem;
}
.form-control.search .serch-btn {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: url("../images/common/search-btn.png") no-repeat;
  border: none;
}
.form-control.disable {
  background: #d8d8d8;
  color: #9e9e9e;
}
.form-control .eye-btn {
  position: absolute;
  right: 1.2rem;
  width: 2.5rem;
  height: 2.1rem;
  background: url("../images/login/eye_on.png") no-repeat;
  background-position: 0 2px;
}
.form-control .eye-btn.active {
  background: url("../images/login/eye_close.png") no-repeat;
}
.form-control.flex-control {
  display: flex;
  align-items: center;
  padding: 0 6rem 0 1rem;
}
.form-control.flex-control input {
  border: none;
  height: calc(100% - 0.2rem);
  flex: 1;
}

.form-flex {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-flex .form-control {
  width: 50%;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("../images/common/select-arrow.png") no-repeat right 10px center !important;
}
select.form-control {
  width: 180px;
  padding-left: 2rem;
}

.form-type {
  margin-bottom: 2rem;
}
.form-type dt {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 1.1rem;
}
.form-type dt span {
  display: inline-block;
  width: 0.8rem;
  height: 1.2rem;
  vertical-align: middle;
}
.form-type dd {
  color: #1d1d1d;
  font-size: 1.4rem;
}

.form-radio {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0 1rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .form-radio {
    gap: 0 0.7rem;
  }
}
.form-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.1;
}
.form-radio i {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  transition: all 0.25s;
}
@media (max-width: 1024px) {
  .form-radio i {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.form-radio i::after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
  border-radius: 50%;
  background-color: #fff;
}
.form-radio span {
  color: #555555;
  font-size: 1.5rem;
}
@media (max-width: 1170px) {
  .form-radio span {
    font-size: clamp(1.3rem, 1.5vw, 1.7rem);
  }
}
@media (max-width: 1024px) {
  .form-radio span {
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
  }
}
.form-radio input:checked + i {
  background-color: #fff;
  border-color: #c6c6c6;
  background-image: url("../images/ico/check.png");
  background-repeat: no-repeat;
  background-position: center;
}
.form-radio input[type=checkbox] + i {
  border-radius: 0;
  border-radius: 0.3rem;
}
.form-radio input[type=checkbox]:checked + i::after {
  border-radius: 0;
  border-radius: 0.3rem;
}
.form-radio span span {
  color: #007ab4;
  font-size: 1.9rem;
}
@media (max-width: 1024px) {
  .form-radio span span {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .form-radio span span {
    font-size: 1.2rem;
  }
}

.form-input {
  display: inline-block;
  border-radius: 1rem;
  border: 1px solid #8e8e8e;
  padding: 0 2rem;
  height: 6rem;
  width: 100%;
}

/* switch */
.sc-switch {
  display: none;
  height: 0 !important;
  width: 0 !important;
  visibility: hidden;
}

.sc-switch-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 38px;
  height: 24px;
  background: #e0e0e0;
  display: block;
  border-radius: 100px;
  position: relative;
  transition: all ease 0.8s;
}

.sc-switch-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

input:checked + label {
  background: #0071bb;
}

input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.sc-switch-label:active:after {
  width: 30px;
}

.form-textarea {
  display: inline-block;
  border-radius: 1rem;
  border: 1px solid #8e8e8e;
  padding: 2rem;
  overflow-y: auto;
  width: 100%;
}
@media (max-width: 1170px) {
  .form-textarea {
    padding: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .form-textarea {
    font-size: 1.4rem;
  }
}

.form-control-dl {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-control-dl dt {
  min-width: 7rem;
}
.form-control-dl dd {
  position: relative;
  flex: 1;
  width: 100%;
}
.form-control-dl dd input:disabled {
  background: #e4e4e4;
}
.form-control-dl dd .form-text {
  font-size: 1.3rem;
  position: absolute;
  bottom: -2.2rem;
  left: 1rem;
  color: #d40000;
}

.search--wrap {
  width: 28rem;
  position: absolute;
  top: 10rem;
  left: 10rem;
}
.search--wrap .search--head {
  width: 100%;
  margin-bottom: 1.2rem;
}
.search--wrap .search--cont {
  width: 100%;
  background: #fff;
  border-radius: 0.6rem;
}
.search--wrap .search--cont--head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #d8d8d8;
}
.search--wrap .search--cont--head .count {
  position: relative;
  font-size: 1.3rem;
  padding-left: 0.8rem;
}
.search--wrap .search--cont--head .count span {
  font-weight: bold;
}
.search--wrap .search--cont--head .close-btn {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/common/search_close.png");
}
.search--wrap .search--cont--body .search--li {
  max-height: 49rem;
}
.search--wrap .search--cont--body .search--li li:nth-child(odd) {
  background: #f8f8f8;
}
.search--wrap .search--cont--body .search--li li:last-child {
  border-bottom: none;
}
.search--wrap .search--cont--body .search--li--item {
  padding: 2rem;
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
  transition: all 0.3s;
}
.search--wrap .search--cont--body .search--li--item--name {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}
.search--wrap .search--cont--body .search--li--item--name span {
  color: #000;
  font-weight: bold;
}
.search--wrap .search--cont--body .search--li--item--name p {
  color: #000000;
}
.search--wrap .search--cont--body .search--li--item--juso01 {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 0.5rem;
}
.search--wrap .search--cont--body .search--li--item--juso02 {
  font-size: 1.3rem;
  color: #717171;
}
.search--wrap .search--cont--foot {
  border-top: 1px solid #d8d8d8;
  padding: 1.2rem;
}
.search--wrap .search--cont--foot .pagination .paging a {
  font-size: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}
.search--wrap .search--cont--foot .pagination .paging strong {
  border-radius: 50%;
  font-size: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
}

/*
    table
*/
.table {
  border-top: 1px solid #000;
}
.table.cursor tr {
  cursor: pointer;
}
.table.cursor tr:hover td {
  background: #d6cac5;
  transition: all 0.3s;
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
.table tr {
  border-bottom: 1px solid #c6c6c6;
}
.table th,
.table td {
  padding: 1.5rem 1rem;
  text-align: left;
  vertical-align: middle;
  font-size: 1.5rem;
}
.table th {
  background: #f7f7f7;
  color: #332b28;
  font-weight: normal;
}
.table td {
  color: #717171;
}
.table td .time-small {
  color: #757575;
  font-size: 1.5rem;
}
.table .tac {
  text-align: center;
}
.table thead th {
  background-color: #f0f0f0;
  text-align: center;
  border: 1px solid #c6c6c6;
}
.table thead th:first-child {
  border-left: none;
}
.table thead th:last-child {
  border-right: none;
}
.table tbody td {
  text-align: center;
  background-color: #fff;
  border: 1px solid #c6c6c6;
}
.table tbody td:first-child {
  border-left: none;
}
.table tbody td:last-child {
  border-right: none;
}
.table.type02 th, .table.type02 td {
  padding: 0.8rem;
}
.table.type02 thead th {
  text-align: left;
  padding-left: 2rem;
}
.table.type02 tbody tr {
  border-bottom: none;
}
.table.type02 tbody tr td {
  padding-left: 4rem;
}
.table.type02 tbody tr:first-child td {
  padding-top: 1.5rem;
}

.btn {
  background: #fff;
}
.btn + .btn {
  margin-left: 0.6rem;
}
.btn.xs {
  display: inline-block;
  height: 2.4rem;
  line-height: 2.4rem;
  padding: 0 1.2rem;
  border-radius: 1.6rem;
  font-size: 1.3rem;
}
.btn.xs.round {
  border-radius: 1.2rem;
}
.btn.sm {
  display: inline-block;
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 1.6rem;
  border-radius: 0.6rem;
  font-size: 1.5rem;
}
.btn.sm.round {
  border-radius: 1.6rem;
}
.btn.md {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  padding: 0 1.5rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
}
.btn.md.round {
  border-radius: 2rem;
}
.btn.lg {
  display: inline-block;
  height: 4.8rem;
  line-height: 4.8rem;
  padding: 0 1.5rem;
  border-radius: 0.6rem;
  font-size: 1.7rem;
}
.btn.lg.round {
  border-radius: 2.4rem;
}
.btn.xl {
  display: inline-block;
  height: 5.6rem;
  line-height: 5.6rem;
  padding: 0 3.5rem;
  border-radius: 0.6rem;
  font-size: 1.9rem;
}
.btn.xl.round {
  border-radius: 2.8rem;
}
.btn.border {
  border: 1px solid #dbdbdb;
}
.btn.border-white {
  border: 1px solid #dbdbdb;
  background: transparent;
  color: #fff;
}
.btn.border-gray {
  border: 1px solid #717171;
  background: transparent;
  color: #555555;
}
.btn.border-darkgray {
  border: 1px solid #555555;
  background: transparent;
  color: #555555;
}
.btn.border-primary {
  border: 1px solid #164194;
  color: #164194;
}
.btn.black {
  background: #000;
  color: #fff;
}
.btn.gray {
  background: #717171;
  color: #fff;
}
.btn.dark-gray {
  background: #555555;
  color: #fff;
}
.btn.primary {
  background: #164194;
  color: #fff;
}
.btn.green {
  border: 1px solid #4eab56;
  background: #2f9638;
  color: #fff;
}
.btn.block {
  width: 100%;
}
.btn.grdient {
  color: #fff;
  background: rgb(200, 85, 62);
  background: linear-gradient(36deg, rgb(200, 85, 62) 0%, rgb(100, 148, 14) 35%, rgb(8, 104, 172) 70%, rgb(53, 100, 94) 100%);
}
.btn.grdient-main {
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(22, 66, 148) 0%, rgb(46, 149, 58) 100%);
}
.btn.disable {
  background: #d8d8d8;
  color: #8e8e8e;
}

.btn-right {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.btn-fixed {
  width: 100%;
}

.btn-center {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
}

.btn-search {
  width: 12.2rem;
  color: #fff;
  height: 4.8rem;
  border-radius: 0.8rem;
  padding-left: 6.1rem;
  text-align: left;
  background-color: #774f3f;
  background-image: url("../images/ico/ico-search.png");
  background-repeat: no-repeat;
  background-position: 3.2rem center;
}

.btn-reset {
  width: 12.2rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  border: 1px solid #8e8e8e;
  padding-left: 5.2rem;
  text-align: left;
  background-image: url("../images/ico/ico-reset.png");
  background-repeat: no-repeat;
  background-position: 2.2rem center;
}

.btn-set {
  width: 15rem;
  height: 4rem;
  border-radius: 0.8rem;
  border: 1px solid #8e8e8e;
  padding-left: 5.2rem;
  text-align: left;
  background-image: url("../images/ico/ico-setting.png");
  background-repeat: no-repeat;
  background-position: 2.2rem center;
}

.btn-down {
  width: 16rem;
  height: 4rem;
  border-radius: 0.8rem;
  border: 1px solid #8e8e8e;
  padding-left: 5.2rem;
  text-align: left;
  background-image: url("../images/ico/ico-down.png");
  background-repeat: no-repeat;
  background-position: 2.2rem center;
}

.btn-stats {
  width: 16.5rem;
  height: 4rem;
  border-radius: 0.8rem;
  border: 1px solid #8e8e8e;
  padding-left: 5.2rem;
  text-align: left;
  background-image: url("../images/ico/ico-stats.png");
  background-repeat: no-repeat;
  background-position: 2.2rem center;
}

.list__square > li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.7rem;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .list__square > li {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .list__square > li {
    font-size: clamp(1.2rem, 2.08vw, 1.4rem);
  }
}
.list__square > li + li {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .list__square > li + li {
    margin-top: 1.2rem;
  }
}
.list__square > li::before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media (max-width: 768px) {
  .list__square > li::before {
    width: 3px;
    height: 3px;
    top: 0.5rem;
  }
}
.list__circle > li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 2.1rem;
  color: #555;
  text-align: left;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .list__circle > li {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 768px) {
  .list__circle > li {
    font-size: clamp(1.2rem, 2.08vw, 1.4rem);
  }
}
.list__circle > li + li {
  margin-top: 1.5rem;
}
.list__circle > li::before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #555;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 1rem;
}
@media (max-width: 1024px) {
  .list__circle > li::before {
    width: 2px;
    height: 2px;
    top: 0.5rem;
  }
}

.tabs {
  display: flex;
  border-radius: 1.2rem;
  background: #d5d6e1;
  padding: 0.4rem 0.8rem;
  gap: 0.8rem;
}
.tabs .tab-item {
  position: relative;
  flex: 1;
  border-radius: 0.8rem;
  color: #555555;
  text-align: center;
}
.tabs .tab-item:after {
  position: absolute;
  width: 1px;
  height: 2rem;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: #d5d6e1;
}
.tabs .tab-item:first-child:after {
  display: none;
}
.tabs .tab-item button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.9rem;
  padding: 2rem 0.8rem;
}
.tabs .tab-item button .small {
  margin-left: 0.6rem;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .tabs .tab-item button {
    font-size: 1.4rem;
    padding: 1.4rem 0.4rem;
  }
}
.tabs .tab-item.active {
  background: #2b316a;
}
.tabs .tab-item.active button {
  color: #fff;
}

.toggle-hidden {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a, .pagination strong, .pagination span {
  transition: all 0.25s;
}
.pagination .adri {
  display: flex;
  align-items: center;
  height: 4rem;
  color: #555555;
}
.pagination a,
.pagination strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  height: 4rem;
  width: 4rem;
}
.pagination .paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  margin: 0 3rem;
}
.pagination .paging a,
.pagination .paging strong {
  border-radius: 0.5rem;
  font-size: 1.7rem;
}
.pagination .paging a:hover, .pagination .paging a:focus,
.pagination .paging strong:hover,
.pagination .paging strong:focus {
  background-color: #f5f7fa;
  color: #717171;
}
.pagination .paging strong {
  color: #fff;
  background-color: #091a3b;
  font-weight: 700;
}
.pagination .fir,
.pagination .prev,
.pagination .next,
.pagination .last {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
}
.pagination .fir span,
.pagination .prev span,
.pagination .next span,
.pagination .last span {
  white-space: nowrap;
  color: #555555;
  font-size: 1.5rem;
}
.pagination .fir:hover, .pagination .fir:focus,
.pagination .prev:hover,
.pagination .prev:focus,
.pagination .next:hover,
.pagination .next:focus,
.pagination .last:hover,
.pagination .last:focus {
  color: #717171;
}
.pagination .fir:hover span, .pagination .fir:focus span,
.pagination .prev:hover span,
.pagination .prev:focus span,
.pagination .next:hover span,
.pagination .next:focus span,
.pagination .last:hover span,
.pagination .last:focus span {
  color: #717171;
}
.pagination .fir img,
.pagination .prev img,
.pagination .next img,
.pagination .last img {
  display: flex;
}

.modal-wrap {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

.modal-wrap-dimmed {
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal {
  overflow: hidden;
  z-index: 30;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.modal--inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1.2rem;
  padding: 3rem;
}
.modal--close {
  width: 2rem;
  height: 2rem;
  background-image: url("../images/modal/close.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}
.modal--close.btn-black {
  background-image: url("../images/modal/black-close.svg");
}
.modal--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.4rem 0.4rem 0 0;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 1.8rem;
}
.modal--head--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal--head--inner h3 {
  font-size: 2.1rem;
  font-weight: normal;
}
.modal--head--util {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}
.modal--content {
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 3rem 0;
}
.modal.alert-modal .modal--content {
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1rem 1.5rem;
  margin-top: -1px;
}
.modal.alert-modal .modal--content.flex-con {
  padding-bottom: 8rem;
}
.modal.modal-input-change .modal--inner {
  width: 450px;
}
.modal.modal-input-change .modal--inner .modal--content .txt01 {
  font-size: 2rem;
}
.modal.modal-input-change .modal--inner .modal--content .txt02 {
  color: #555555;
}

#modal-data-upload .maekrt-place {
  padding: 2rem 2rem 2rem 9.4rem;
  color: #fff;
  background: url(../images/modal/market-place.png) no-repeat 2rem center, linear-gradient(90deg, #50af31 0%, #005da4 100%);
  border-radius: 1.2rem;
}

#modal-alert-report .txt01 {
  font-size: 2rem;
  font-weight: bold;
}
#modal-alert-report .txt02 {
  line-height: 1.6;
}

#modal-business-case .modal--main--inner {
  width: 930px;
}

#modal-card-news .modal--main--inner {
  width: 930px;
}

@media (max-width: 768px) {
  .modal--main--inner {
    width: 90% !important;
    height: 90% !important;
    overflow-y: auto;
    padding: 1.2rem;
  }
}

@media (max-width: 768px) {
  .main--modal--head {
    padding-bottom: 1rem;
  }
}
.main--modal--head .modal--head--inner h3 {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main--modal--head .modal--head--inner h3 {
    font-size: 2rem;
  }
}
.main--modal--head .modal--head--util .btn-gray {
  width: 5.6rem;
  height: 5.6rem;
  background-color: #f8f8f8;
  border-radius: 50%;
  background-image: url("../images/ico/ico-file-del.svg");
  background-size: 2rem;
}
@media (max-width: 768px) {
  .main--modal--head .modal--head--util .btn-gray {
    width: 3rem;
    height: 3rem;
    background-size: 1.2rem;
  }
}

.main--modal--content {
  padding: 3rem;
}
@media (max-width: 768px) {
  .main--modal--content {
    padding: 1.2rem;
  }
}
.main--modal--content .company-info {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #ecf0f6;
  border-radius: 1.2rem;
  padding: 4rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .main--modal--content .company-info {
    display: block;
  }
}
.main--modal--content .company-info .company-info-logo {
  position: relative;
  width: 30rem;
  border: 1px solid #e4e4e4;
  background: #fff;
  height: 16rem;
  text-align: center;
  border-radius: 1.2rem;
}
@media (max-width: 768px) {
  .main--modal--content .company-info .company-info-logo {
    height: 10rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.main--modal--content .company-info .company-info-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main--modal--content .company-info .company-info-txt {
  flex: 1;
}
.main--modal--content .company-info .company-info-txt .category {
  color: #164194;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .main--modal--content .company-info .company-info-txt .category {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.main--modal--content .company-info .company-info-txt .company {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .main--modal--content .company-info .company-info-txt .company {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.main--modal--content .company-info .company-info-txt .txt {
  font-size: 1.9rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .main--modal--content .company-info .company-info-txt .txt {
    font-size: 1.4rem;
  }
}
.main--modal--content .modal-img-con {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .main--modal--content .modal-img-con {
    display: block;
  }
}
.main--modal--content .modal-img-con > div {
  flex: 1;
  position: relative;
  border: 1px solid #c6c6c6;
  border-radius: 1.2rem;
  height: 20rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #f8f8f8;
}
@media (max-width: 768px) {
  .main--modal--content .modal-img-con > div {
    height: 15rem;
  }
  .main--modal--content .modal-img-con > div:first-child {
    margin-bottom: 1.2rem;
  }
}
.main--modal--content .modal-img-con > div img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main--modal--content .modal-img-con > div .modal-img-con-ti {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 1.5rem 0 1.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  border-radius: 0 0 1.2rem 0;
  color: #555555;
  background-color: #fff;
}
.main--modal--content .dotted-txt + .dotted-txt {
  margin-top: 2rem;
}
.main--modal--content .dotted-txt .dotted-ti {
  font-size: 2.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .main--modal--content .dotted-txt .dotted-ti {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.main--modal--content .dotted-txt p {
  font-size: 1.7rem;
  color: #717171;
}
@media (max-width: 768px) {
  .main--modal--content .dotted-txt p {
    font-size: 1.5rem;
  }
}
.main--modal--content .card-news-wrap {
  text-align: center;
}
.main--modal--content .card-news-wrap .card-ti {
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .main--modal--content .card-news-wrap .card-ti {
    font-size: 1.2rem;
  }
}
.main--modal--content .card-news-wrap .card-ti .txt01 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .main--modal--content .card-news-wrap .card-ti .txt01 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.main--modal--content .card-news-wrap .card-ti .txt02 {
  color: #717171;
}
@media (max-width: 768px) {
  .main--modal--content .card-news-wrap .card-ti .txt02 {
    font-size: 1.2rem;
  }
}
.main--modal--content .card-news-wrap .card-banner img {
  max-width: 100%;
}

.modal-swiper-btn .swiper-button-next01 {
  z-index: 20;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 40px;
  background-image: url("../images/main/arrow-next.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
  cursor: pointer;
}
.modal-swiper-btn .swiper-button-next01:after {
  display: none;
}
.modal-swiper-btn .swiper-button-next01:hover {
  background-image: url("../images/main/arrow-next-on.png");
}
.modal-swiper-btn .swiper-button-prev01 {
  z-index: 20;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 40px;
  background-image: url("../images/main/arrow-prev.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
  cursor: pointer;
}
.modal-swiper-btn .swiper-button-prev01:after {
  display: none;
}
.modal-swiper-btn .swiper-button-prev01:hover {
  background-image: url("../images/main/arrow-prev-on.png");
}

.ui-widget-header {
  border: 0px solid #dddddd;
  background: #fff;
}

.ui-datepicker-calendar > thead > tr > th {
  font-size: 14px !important;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 10px 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 0px solid #c5c5c5;
  background-color: transparent;
  font-weight: normal;
  color: #454545;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 0em;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  padding: 0px;
  font-weight: bold;
}

.ui-datepicker {
  display: none;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 20px;
  padding-bottom: 10px;
  width: 300px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.ui-widget.ui-widget-content {
  border: 1px solid #eee;
}

#datepicker:focus > .ui-datepicker {
  display: block;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  cursor: pointer;
}

.ui-datepicker-next {
  float: right;
}

.ui-state-disabled {
  cursor: auto;
  color: hsl(0, 0%, 80%);
}

.ui-datepicker-title {
  text-align: center;
  padding: 10px;
  font-weight: 100;
  font-size: 20px;
}

.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker-calendar > thead > tr > th {
  padding: 5px;
  font-size: 20px;
  font-weight: 400;
}

.ui-datepicker-calendar > tbody > tr > td > a {
  color: #000;
  font-size: 12px !important;
  font-weight: bold !important;
  text-decoration: none;
}

.ui-datepicker-calendar > tbody > tr > .ui-state-disabled:hover {
  cursor: auto;
  background-color: #fff;
}

.ui-datepicker-calendar > tbody > tr > td {
  border-radius: 100%;
  width: 44px;
  height: 30px;
  cursor: pointer;
  padding: 5px;
  font-weight: 100;
  text-align: center;
  font-size: 12px;
}

.ui-datepicker-calendar > tbody > tr > td:hover {
  background-color: transparent;
  opacity: 0.6;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 0px solid #cccccc;
  background-color: transparent;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-widget-header .ui-icon {
  background-image: url("../images/ico/cal-btns.png");
}

.ui-icon-circle-triangle-e {
  background-position: -20px 0px;
  background-size: 36px;
}

.ui-icon-circle-triangle-w {
  background-position: 0px 0px;
  background-size: 36px;
}

.ui-datepicker-calendar > tbody > tr > td:first-child a {
  color: red !important;
}

.ui-datepicker-calendar > tbody > tr > td:last-child a {
  color: #0099ff !important;
}

.ui-datepicker-calendar > thead > tr > th:first-child {
  color: red !important;
}

.ui-datepicker-calendar > thead > tr > th:last-child {
  color: #0099ff !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 0px;
  background: #f1f1f1;
  border-radius: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.inp {
  background-image: url("../images/common/ico-cal.png");
  background-position: 90% center;
  background-repeat: no-repeat;
}

.inp:focus {
  outline: none;
}

.SNB {
  position: relative;
  height: 100%;
  /* 패널 버튼 영역 스타일 */
}
.SNB .SNB-container {
  z-index: 50;
  position: absolute;
  height: calc(100% - 8rem);
  left: 0;
  width: 7rem;
  background: #e49264;
}
.SNB .SNB-container .snblinks {
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.3rem;
  height: 12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.SNB .SNB-container .snblinks .icon {
  display: block;
  margin: auto auto 2rem auto;
}
.SNB .SNB-container .snblinks span {
  color: #fff;
}
.SNB .SNB-container .snblinks.active {
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 60px -28px inset;
}
.SNB .SNB-container .SNB-container-util {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.SNB .SNB-container .SNB-container-util button {
  padding: 2.5rem;
}
.SNB .SNB-container .SNB-container-util .ico-notice {
  width: 22px;
  height: 23px;
  background-image: url(../images/ico/ico_notice.png);
}
.SNB .SNB-container .SNB-container-util .ico-guide {
  width: 22px;
  height: 18px;
  background-image: url(../images/ico/ico_guide.png);
}
.SNB .SNB--view {
  z-index: 40;
  position: absolute;
  display: none;
  left: 7rem;
  top: 0;
  border-top: none;
  transition: all 0.3s;
}
.SNB .SNB--view.active {
  display: block;
  visibility: inherit;
}
.SNB .SNB--view.active.hidden {
  left: -60rem;
}
.SNB .SNB--view.active.hidden .close-panel .panel-arrow {
  transform: rotate(180deg);
}
.SNB .SNB--view .close-panel {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 6rem;
  border-radius: 0 0.2rem 0.2rem 0;
}
.SNB .SNB--view .close-panel .panel-arrow {
  background-image: url(../images/common/panel-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  width: 0.7rem;
  height: 1.2rem;
}
.SNB .SNB--view--panel {
  height: 100vh;
}
.SNB .SNB--view--panel.view--panel01 {
  height: calc(100vh - 80px);
  position: relative;
  z-index: 30;
  width: 30rem;
  background: #fff;
  border-right: 1px solid #d8d8d8;
  box-shadow: 10px 0px 30px -15px rgba(0, 0, 0, 0.3);
}
.SNB .SNB--view--panel.view--panel02 {
  width: 37rem;
  background: #f0f0f0;
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--head {
  height: 5.4rem;
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--head h3 {
  padding: 2rem;
  line-height: 1;
  color: #fff;
  font-size: 1.7rem;
  font-weight: normal;
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--cont {
  height: calc(100vh - 80px - 57px);
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--cont .view--panel02--item {
  padding: 2rem;
  background: #fff;
  margin-bottom: 0.8rem;
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--cont .view--panel02--item--ti {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.SNB .SNB--view--panel.view--panel02 .view--panel02--cont .view--panel02--item .form-line {
  margin-bottom: 1rem;
}
.SNB .SNB--view--panel--inner {
  display: flex;
}
.SNB .SNB--view--panel--li {
  border-bottom: 1px solid #d8d8d8;
}
.SNB .SNB--view--panel--li.active .SNB--view--panel--li--head {
  border-bottom: 1px solid #d8d8d8;
}
.SNB .SNB--view--panel--li.active .SNB--view--panel--li--cont {
  display: block;
}
.SNB .SNB--view--panel--li .toggle-label {
  font-size: 1.5rem;
  width: 100%;
}
.SNB .SNB--view--panel--li--head {
  padding: 1.6rem 1.2rem;
  cursor: pointer;
}
.SNB .SNB--view--panel--li--cont {
  display: none;
  padding: 1.2rem;
}
.SNB .SNB--view--panel--li--item {
  border: 1px solid #c6c6c6;
  border-radius: 0.6rem;
}
.SNB .SNB--view--panel--li--item .toggle-ti {
  display: flex;
  padding: 1rem;
}
.SNB .SNB--view--panel--li--item .toggle-ti .right {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.SNB .SNB--view--panel--li--item .toggle-ti em {
  transition: all 0.3s;
  display: inline-block;
  border-bottom: 4px solid #717171;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.SNB .SNB--view--panel--li--item .toggle-cont {
  display: none;
}
.SNB .SNB--view--panel--li--item + * {
  margin-top: 1.2rem;
}
.SNB .SNB--view--panel--li--item.active .toggle-ti {
  background: #f0f0f0;
}
.SNB .SNB--view--panel--li--item.active .toggle-ti .right em {
  transform: rotate(180deg);
}
.SNB .SNB--view--panel--li--item.active .toggle-cont {
  display: block;
  padding: 1.5rem;
}
.SNB .SNB--view--panel--li:first-child .SNB--view--panel--li--head {
  border-top: 1px solid #d8d8d8;
}

.climate-type .SNB-container {
  background: #e49264;
}
.climate-type .SNB-container .snblinks--inner .snblinks:nth-child(1) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav01-ico01.png);
}
.climate-type .SNB-container .snblinks--inner .snblinks:nth-child(2) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav01-ico02.png);
}
.climate-type .SNB-container .snblinks--inner .snblinks:nth-child(3) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav01-ico03.png);
}
.climate-type .SNB-container .snblinks--inner .snblinks:nth-child(4) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav01-ico04.png);
}
.climate-type .SNB-container .snblinks--inner .snblinks.active {
  background: #c8553e;
}
.climate-type .SNB-container .SNB-container-util {
  background: #c8553e;
}
.climate-type .toggle-label input[type=checkbox]:checked + .toggle-custom {
  background-color: #c8553e;
}
.climate-type .SNB--view .SNB--view--panel.view--panel02 .view--panel02--head {
  height: 5.4rem;
  background: #c8553e;
}
.climate-type .SNB--view--panel--li.active {
  border-top: 1px solid #c8553e;
  border-bottom: 1px solid #c8553e;
}
.climate-type .SNB--view--panel--li.active .SNB--view--panel--li--head {
  color: #c8553e;
}

.carbon-type .SNB-container {
  background: #93bf3b;
}
.carbon-type .SNB-container .snblinks--inner .snblinks:nth-child(1) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav02-ico01.png);
}
.carbon-type .SNB-container .snblinks--inner .snblinks:nth-child(2) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav02-ico02.png);
}
.carbon-type .SNB-container .snblinks--inner .snblinks:nth-child(3) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav02-ico03.png);
}
.carbon-type .SNB-container .snblinks--inner .snblinks:nth-child(4) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav02-ico04.png);
}
.carbon-type .SNB-container .snblinks--inner .snblinks:nth-child(5) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav02-ico05.png);
}
.carbon-type .SNB-container .snblinks--inner .snblinks.active {
  background: #64940e;
}
.carbon-type .SNB-container .SNB-container-util {
  background: #64940e;
}
.carbon-type .toggle-label input[type=checkbox]:checked + .toggle-custom {
  background-color: #64940e;
}
.carbon-type .SNB--view .SNB--view--panel.view--panel02 .view--panel02--head {
  height: 5.4rem;
  background: #64940e;
}
.carbon-type .SNB--view--panel--li.active {
  border-top: 1px solid #64940e;
  border-bottom: 1px solid #64940e;
}
.carbon-type .SNB--view--panel--li.active .SNB--view--panel--li--head {
  color: #64940e;
}

.energy-type .SNB-container {
  background: #43a2ca;
}
.energy-type .SNB-container .snblinks--inner .snblinks:nth-child(1) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav03-ico01.png);
}
.energy-type .SNB-container .snblinks--inner .snblinks:nth-child(2) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav03-ico02.png);
}
.energy-type .SNB-container .snblinks--inner .snblinks:nth-child(3) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav03-ico03.png);
}
.energy-type .SNB-container .snblinks--inner .snblinks.active {
  background: #0868ac;
}
.energy-type .SNB-container .SNB-container-util {
  background: #0868ac;
}
.energy-type .toggle-label input[type=checkbox]:checked + .toggle-custom {
  background-color: #0868ac;
}
.energy-type .SNB--view .SNB--view--panel.view--panel02 .view--panel02--head {
  height: 5.4rem;
  background: #0868ac;
}
.energy-type .SNB--view--panel--li.active {
  border-top: 1px solid #0868ac;
  border-bottom: 1px solid #0868ac;
}

.score-type .SNB-container {
  background: #5d958f;
}
.score-type .SNB-container .snblinks--inner .snblinks:nth-child(1) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav04-ico01.png);
}
.score-type .SNB-container .snblinks--inner .snblinks:nth-child(2) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav04-ico02.png);
}
.score-type .SNB-container .snblinks--inner .snblinks:nth-child(3) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav04-ico03.png);
}
.score-type .SNB-container .snblinks--inner .snblinks:nth-child(4) i {
  width: 34px;
  height: 34px;
  background-image: url(../images/ico/nav04-ico04.png);
}
.score-type .SNB-container .snblinks--inner .snblinks.active {
  background: #35645e;
  box-shadow: rgba(114, 88, 49, 0.8) 0px -80px 60px -28px inset;
}
.score-type .SNB-container .SNB-container-util {
  background: #35645e;
}
.score-type .toggle-label input[type=checkbox]:checked + .toggle-custom {
  background-color: #35645e;
}
.score-type .SNB--view .SNB--view--panel.view--panel02 .view--panel02--head {
  height: 5.4rem;
  background: #35645e;
}
.score-type .SNB--view--panel--li.active {
  border-top: 1px solid #35645e;
  border-bottom: 1px solid #35645e;
}

.accordion--item {
  margin-bottom: 2rem;
}
.accordion--item:last-child {
  margin-bottom: 0;
}
.accordion--item.active .accordion--button {
  border-radius: 1.2rem 1.2rem 0 0;
}
.accordion--item.active .accordion--content {
  opacity: 1;
  visibility: inherit;
  height: auto;
}
.accordion--item.active .accordion--ti--arrow {
  background-color: #f0f0f0;
  background-image: url("../images/components/accordion-arrow-on.svg");
}
.accordion--button {
  width: 100%;
  padding: 2rem;
  text-align: left;
  background-color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease;
  border-radius: 1.2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.accordion--ti--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion--ti--arrow {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 2rem;
  transition: all 0.3s;
  background-image: url("../images/components/accordion-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.accordion--ti--arrow::after {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2rem;
  background: #c6c6c6;
  content: "";
}
.accordion--content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  background-color: #fff;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
}
.accordion--content--body {
  box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
  padding: 2rem;
}
.accordion.carbon-main .accordion--ti--cont {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 8rem;
}
.accordion.carbon-main .accordion--ti--cont .scope-ti {
  display: flex;
  align-items: center;
}
.accordion.carbon-main .accordion--ti--cont .scope-ti h4 {
  font-size: 1.9rem;
  color: #555555;
  margin-left: 7rem;
  margin-right: 1.5rem;
}
.accordion.carbon-main .accordion--ti--cont .scope-index strong {
  display: inline-block;
  font-size: 2.5rem;
  color: #1d1d1d;
}
.accordion.carbon-main .accordion--ti--cont .scope-index span {
  color: #555555;
}

.board--wrap {
  padding: 3rem 4rem;
}
.board--wrap--head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
}
.board--wrap--body {
  width: 100%;
}
.board--wrap--body .board-thead {
  display: table;
  width: 100%;
  background: #f0f0f0;
  border-radius: 0.8rem;
}
.board--wrap--body .board-thead > div {
  display: table-cell;
  font-size: 1.7rem;
  padding: 2rem 1rem;
  vertical-align: middle;
}
.board--wrap--body .board-tbody {
  margin-bottom: 6rem;
}
.board--wrap--body .board-tbody .board-tbody-item {
  border: 1px solid #c3c3c3;
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 0.8rem;
  border-radius: 0.8rem;
  transition: all 0.3s;
}
.board--wrap--body .board-tbody .board-tbody-item:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
  border: 1px solid #000;
}
.board--wrap--body .board-tbody .board-tbody-item > div {
  display: table-cell;
  font-size: 1.7rem;
  color: #555555;
  padding: 2rem 1rem;
  vertical-align: middle;
}

.board-management .board-thead > div,
.board-management .board-tbody-item > div {
  text-align: center;
  width: 15%;
}
.board-management .board-thead > div + div,
.board-management .board-tbody-item > div + div {
  width: 15%;
}
.board-management .board-thead > div + div + div,
.board-management .board-tbody-item > div + div + div {
  width: auto;
}
.board-management .board-thead > div + div + div + div,
.board-management .board-tbody-item > div + div + div + div {
  width: 10%;
}
.board-management .board-thead > div + div + div + div + div,
.board-management .board-tbody-item > div + div + div + div + div {
  width: 10%;
}
.board-management .board-thead > div + div + div + div + div + div,
.board-management .board-tbody-item > div + div + div + div + div + div {
  width: 10%;
}

.write--management {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.write--management .box {
  padding: 3rem 4rem;
  width: 45rem;
}
.write--management .box.box-md {
  width: 90rem;
}
.write--management--head {
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
}
.write--management--head h3 {
  margin-bottom: 1rem;
}
.write--management--head p {
  margin-bottom: 1.8rem;
}
.write--management--body {
  border-bottom: 1px solid #e4e4e4;
}
.write--management--body .txt-write {
  height: 150px;
  padding: 1rem;
}
.write--management--body .txt-write textarea {
  width: 100%;
  height: 85%;
  border: none;
  outline: none;
  overflow-y: auto;
}
.write--management--body .txt-write .byte-inner {
  text-align: right;
}
.write--management--body .info-box {
  background: #ecf0f6;
  border-radius: 0.8rem;
  padding: 2rem;
  color: #717171;
  font-size: 1.5rem;
  line-height: 1.5;
}
.write--management--foot {
  padding-top: 3.2rem;
}

.file--list--item {
  display: flex;
  border: 1px solid #c6c6c6;
  padding: 1.5rem 2rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.6rem;
  margin-bottom: 0.8rem;
}
.file--list--item:last-child {
  margin-bottom: 0;
}
.file--list--ti {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 1.7rem;
  color: #555555;
}
.file--list--util {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.board-list-text table {
  border-top: 1px solid #333333;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 4rem;
}
.board-list-text thead th {
  color: #000000;
  font-size: 16px;
  height: 60px;
  background: #fafafa;
}
.board-list-text th, .board-list-text td {
  border-bottom: 1px solid #e1e1e1;
  box-sizing: border-box;
  padding: 10px;
  color: #666666;
}
.board-list-text tbody th, .board-list-text tbody td {
  height: 60px;
  text-align: center;
}
.board-list-text a {
  color: #091634;
}
.board-list-text .item_list-title {
  padding-left: 70px;
  text-align: left;
}
.board-list-text .cs-link-text {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.board-list-text .cs-link-text i {
  flex: 0 0 18px;
}
.board-list-text .cs-link-text span {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-list-text .cs-link-text > * + * {
  margin-left: 5px;
}

.board-search,
.board-search2 {
  background: #edf1f4;
  padding: 15px;
  margin-bottom: 4rem;
}
.board-search form,
.board-search2 form {
  display: flex;
  width: 830px;
  margin: 0 auto;
}
.board-search form > * + *,
.board-search2 form > * + * {
  margin-left: 8px;
}
.board-search .board-search_input,
.board-search2 .board-search_input {
  height: 44px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 0;
  padding: 0 15px;
  flex: 1;
  width: 100%;
}
.board-search select.board-search_input,
.board-search2 select.board-search_input {
  flex: 0 0 200px;
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  padding-right: 35px;
}
.board-search .board-search_btn,
.board-search2 .board-search_btn {
  background: #2149a6;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  border: 0;
  height: 44px;
  box-sizing: border-box;
  width: 115px;
  flex: 0 0 115px;
}

.board-viwer .board-viwer_header {
  border-top: 2px solid #333333;
  display: flex;
  padding: 20px 0 20px 35px;
  align-items: center;
  border-bottom: 1px dashed #e1e1e1;
}
.board-viwer .board-viwer_header > strong, .board-viwer .board-viwer_header > h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: #000000;
  font-size: 22px;
}
.board-viwer .board-viwer_header > strong span, .board-viwer .board-viwer_header > h3 span {
  color: #2149a6;
  margin-right: 20px;
  font-size: 18px;
}
.board-viwer .board-viwer_header > span {
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 270px;
  color: #666666;
  position: relative;
  text-align: center;
}
.board-viwer .board-viwer_header > span::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #e1e1e1;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}
.board-viwer .board-viwer_attach {
  padding: 15px 15px 15px 34px;
  background: #fafafa;
}
.board-viwer .board-viwer_text {
  padding: 20px 35px;
  min-height: 30rem;
}

.board-viwer + .board-nav {
  margin-top: 25px;
}

.board-viwer_footer {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: flex-end;
}
.board-viwer_footer > * + * {
  margin-left: 5px;
}

.board-nav {
  border: 1px solid #333333;
  border-left: 0;
  border-right: 0;
}
.board-nav a {
  display: block;
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
}
.board-nav a b {
  position: relative;
  font-weight: 500;
  flex: 0 0 140px;
  width: 140px;
  text-align: center;
}
.board-nav a b::before {
  content: "";
  width: 9px;
  height: 9px;
  box-sizing: border-box;
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #666666;
  border-top: 0;
  border-right: 0;
  position: relative;
  top: 2px;
  transform: rotate(135deg);
}
.board-nav a strong {
  font-weight: 500;
  width: 100%;
  flex: 1;
  padding: 0 20px;
}
.board-nav a span {
  flex: 0 0 270px;
  color: #666666;
  position: relative;
  text-align: center;
}
.board-nav a span::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #e1e1e1;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}
.board-nav .board-nav_next b::before {
  transform: rotate(-45deg);
  top: -3px;
}
.board-nav a + a {
  border-top: 1px solid #e1e1e1;
}

.error-body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-body .lay-logo {
  display: block;
  width: 27.5rem;
  height: 3.7rem;
  background: url("../images/common/bi.png") no-repeat;
  margin-bottom: 2rem;
}
.error-body .error-container {
  flex: 0 0 1280px;
}
.error-body .error-cont {
  text-align: center;
  padding: 100px 0;
  border-radius: 0 0 100px 0;
  border: 16px solid #edf1f4;
}
.error-body .error-cont > h2 {
  margin: 0;
  padding: 0px;
  color: #222222;
  font-size: 30px;
}
.error-body .error-cont .error-icons {
  text-align: center;
  margin-bottom: 30px;
}
.error-body .error-cont .error-icons i {
  background: url("../images/common/error_404.png") no-repeat;
  width: 114px;
  height: 91px;
  display: inline-block;
}
.error-body .error-cont .error-infos {
  margin-top: 35px;
  line-height: 1.6em;
  font-size: 16px;
  color: #666666;
}
.error-body .error-cont .error-btns {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.error-body .error-cont .error-btns-home {
  padding: 0 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 60px;
  color: #fff;
  border-radius: 10px;
  transition: all 0.25s;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.video-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.main-cont-inner {
  width: 1440px;
  margin: auto;
  padding: 0 1rem;
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .main-cont-inner {
    width: 100%;
  }
}
.main-cont-inner .main-txt01 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .main-cont-inner .main-txt01 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.main-cont-inner .main-txt02 {
  color: #fff;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .main-cont-inner .main-txt02 {
    font-size: 3rem;
    margin-bottom: 6rem;
  }
}
.main-cont-inner .main-card-wrap {
  display: flex;
  gap: 3rem;
}
.main-cont-inner .main-card-item {
  width: 9rem;
  min-height: 27rem;
  background: rgb(114, 184, 74);
  background: linear-gradient(0deg, rgb(114, 184, 74) 0%, rgb(21, 157, 89) 100%);
  color: #fff;
  border-radius: 2rem;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item {
    min-height: 17.7rem;
    padding: 1rem;
  }
}
.main-cont-inner .main-card-item .main-card-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url(../images/main/item01-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 2rem;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item .main-card-item-inner {
    padding: 1rem;
    background-size: 50%;
  }
}
.main-cont-inner .main-card-item + .main-card-item .main-card-item-inner {
  background-image: url(../images/main/item02-bg.png);
}
.main-cont-inner .main-card-item .number {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item .number {
    margin-bottom: 0.5rem;
  }
}
.main-cont-inner .main-card-item .main-card-item-active {
  display: none;
  transition: all 0.3s;
}
.main-cont-inner .main-card-item.active {
  width: auto;
  max-width: 57rem;
  background: #fff;
}
.main-cont-inner .main-card-item.active .main-card-item-inner {
  display: block;
}
.main-cont-inner .main-card-item.active .number {
  display: block;
  color: #16955a;
}
.main-cont-inner .main-card-item.active .main-card-item-active {
  display: block;
}
.main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-txt01 {
  font-size: 2.1rem;
  color: #1d1d1d;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-txt01 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
  }
}
.main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-txt02 {
  font-size: 1.7rem;
  color: #717171;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-txt02 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
.main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-quick {
  color: #1d1d1d;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-quick {
    font-size: 1.2rem;
  }
}
.main-cont-inner .main-card-item.active .main-card-item-active .main-card-item-quick:after {
  margin-left: 1rem;
  content: "";
  width: 4.5rem;
  height: 1.4rem;
  background-image: url(../images/main/arrow.png);
}
.main-cont-inner .main-card-item.active .icon {
  display: none;
}

.row {
  padding: 0 2rem;
}

.container {
  margin: 0 auto;
  max-width: 141rem;
}

#contentWraps {
  padding-bottom: 80px;
}

.page-name {
  position: relative;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.page-name::after {
  content: "";
  display: block;
  width: 1410px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -705px;
  background: url(../images/sub/page-bg.png) no-repeat right 0;
}
@media (max-width: 1024px) {
  .page-name::after {
    width: 100%;
    margin-left: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  .page-name::after {
    background-size: auto 100px;
  }
}
.page-name span {
  display: inline-flex;
  flex-direction: column;
  color: #000;
  gap: 2rem 0;
  font-weight: 700;
  font-size: 4rem;
}
.page-name span::after {
  content: "";
  display: inline-block;
  margin: 0 auto;
  height: 0.5rem;
  width: 10rem;
  background-image: linear-gradient(to right, #07985a, #2b3369);
  border-radius: 0.2rem;
}
@media (max-width: 768px) {
  .page-name {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .page-name span {
    font-size: 2rem;
  }
  .page-name span::after {
    width: 8rem;
  }
}

.page-tab-menu {
  margin-bottom: 6rem;
}

/* 컨텐츠 변경 */
.notice-container + .notice-container {
  margin-top: 4.5rem;
}
.notice-container .alert-container {
  margin-top: 3rem;
}
.notice-title {
  color: #000;
  font-weight: 700;
  font-size: 2.5rem;
  padding-bottom: 1.7rem;
}
.notice-content {
  color: #555;
  line-height: 1.3;
  font-size: 1.7rem;
}
.notice-content + .info--li--item--con {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .notice-title {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
  .notice-content {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .notice-title {
    font-size: 1.7rem;
  }
  .notice-content {
    font-size: 1.2rem;
  }
}

.alert-container {
  display: grid;
  background-color: #f8f8f8;
  border-radius: 0.6rem;
  padding: 3rem 4rem;
}
.alert-container.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .alert-container {
    padding: 1.7rem;
  }
  .alert-container.grid-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
}

.alert-panel.alert-round .alert-title {
  position: relative;
  padding-left: 1rem;
}
.alert-panel.alert-round .alert-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2px;
  height: 2px;
  background-color: #000;
  border-radius: 50%;
}
.alert-panel.alert-round .alert-content {
  padding-left: 1rem;
}

.alert-title {
  display: block;
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .alert-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
}

.alert-content {
  line-height: 1.4;
  color: #555;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .alert-content {
    font-size: 1.1rem;
  }
}

.heading-container {
  margin-bottom: 2rem;
}
.heading-title {
  color: #000000;
  font-size: 2.5rem;
}
.heading-desc {
  color: #555;
  font-size: var(--font-sub-size);
  margin-top: 1.2rem;
  line-height: 1.34;
}
@media (max-width: 1024px) {
  .heading-container {
    margin-bottom: 1.5rem;
  }
  .heading-title {
    font-size: 2rem;
  }
  .heading-desc {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .heading-title {
    font-size: 1.5rem;
  }
  .heading-desc {
    font-size: 1.2rem;
  }
}

/* page-common */
.page-intro {
  overflow: hidden;
  position: relative;
  background: url(../images/sub/page-intro-bg.png) no-repeat 50% 50%;
  border-radius: 1.2rem;
  min-height: 22rem;
  padding: 40px 60px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .page-intro {
    padding: 20px 30px;
    margin-bottom: 40px;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .page-intro {
    min-height: inherit;
    padding: 30px 16px;
  }
}
.page-intro::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #252a64 25%, transparent 100%);
}
@media (max-width: 768px) {
  .page-intro::after {
    background: linear-gradient(36deg, #252a64 25%, transparent 100%);
  }
}
.page-intro-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .page-intro-header {
    flex-direction: column;
    gap: 1rem 0;
    justify-content: flex-start;
  }
}
.page-intro-header strong {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 25px;
  gap: 0 10px;
}
.page-intro-header strong::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/sub/bullet@32x32.png) no-repeat 50% 50%;
  width: 32px;
  height: 32px;
}
@media (max-width: 1024px) {
  .page-intro-header strong {
    font-size: 20px;
  }
  .page-intro-header strong::before {
    width: 24px;
    height: 24px;
    background-size: cover;
  }
}
.page-intro-links {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
@media (max-width: 768px) {
  .page-intro-links {
    flex-direction: column;
    gap: 1rem 0;
  }
}
.page-intro-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 2rem;
  border: 1px solid var(--border-color);
  color: #555;
  padding: 0 24px;
  height: 4rem;
  gap: 0 2rem;
}
@media (max-width: 1024px) {
  .page-intro-links a {
    height: 3.5rem;
    padding: 0 14px;
    font-size: 13px;
  }
}
.page-intro-links a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/sub/blank@15x15.png) no-repeat 50% 50%;
  width: 15px;
  height: 15px;
}
@media (max-width: 1024px) {
  .page-intro-links a::after {
    background-size: cover;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 768px) {
  .page-intro-links a {
    width: 100%;
  }
}
.page-intro-content {
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1.45;
  font-size: 17px;
}
@media (max-width: 1024px) {
  .page-intro-content {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-intro-content {
    font-size: 12px;
    text-align: center;
  }
}

.picture-contaienr {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.25);
  height: 420px;
  margin-bottom: 6rem;
}
.picture-contaienr .backgorund {
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.picture-contaienr .picture-text {
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.picture-contaienr .text-xl {
  font-weight: 700;
  font-size: 60px;
}
.picture-contaienr .text-lg {
  font-weight: 600;
  font-size: 25px;
}
.picture-contaienr .text-sm {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .picture-contaienr {
    padding: 0 1.5rem;
    height: 100vw;
    max-height: 40rem;
  }
  .picture-contaienr .text-xl {
    font-size: 30px;
  }
  .picture-contaienr .text-lg {
    font-size: 18px;
    padding: 10px 0;
  }
  .picture-contaienr .text-sm {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .picture-contaienr .text-xl {
    font-size: 24px;
  }
  .picture-contaienr .text-lg {
    font-size: 16px;
  }
  .picture-contaienr .text-sm {
    font-size: 12px;
  }
}

.theme-map {
  background: url(../images/sub/map.png) no-repeat 50% 50%;
  border-radius: 8px;
  border: 1px solid #c6c6c6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 90rem;
}
@media (max-width: 1024px) {
  .theme-map {
    height: 50rem;
  }
}
@media (max-width: 768px) {
  .theme-map {
    height: auto;
    padding: 5rem 1.5rem;
  }
}
.theme-map .slick-prev,
.theme-map .slick-next {
  position: absolute;
  top: 50%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid var(--border-color-hover);
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../images/sub/arrow@17x29.png);
  font-size: 0;
  transition: all 0.25s;
  opacity: 1;
}
@media (max-width: 1024px) {
  .theme-map .slick-prev,
  .theme-map .slick-next {
    width: 4rem;
    height: 4rem;
    background-size: 12px auto;
  }
}
@media (max-width: 768px) {
  .theme-map .slick-prev,
  .theme-map .slick-next {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.theme-map .slick-prev.slick-disabled,
.theme-map .slick-next.slick-disabled {
  opacity: 0.15;
  cursor: not-allowed;
}
.theme-map .slick-prev {
  transform: rotate(180deg) translateY(50%);
  left: 4rem;
}
@media (max-width: 1024px) {
  .theme-map .slick-prev {
    left: 0rem;
  }
}
.theme-map .slick-next {
  right: 4rem;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .theme-map .slick-next {
    right: 0rem;
  }
}
.theme-map-slide {
  width: 33rem;
}
@media (max-width: 768px) {
  .theme-map-slide {
    width: 100%;
  }
}
.theme-map-slide .slick-list {
  overflow: visible;
  margin: 0 -1.5rem;
}
@media (max-width: 768px) {
  .theme-map-slide .slick-list {
    margin: 0;
    overflow: hidden;
  }
}
.theme-map-slide .slick-slide {
  margin: 0 1.5rem;
}
@media (max-width: 768px) {
  .theme-map-slide .slick-slide {
    margin: 0;
  }
}
.theme-map .theme-map-card {
  background-color: #fff;
  border-radius: 2rem;
  border: 2px solid #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.25s;
  width: 33rem;
  height: 37rem;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .theme-map .theme-map-card {
    width: 100%;
    height: auto;
  }
}
.theme-map .theme-map-card:hover {
  border-color: var(--border-color-hover);
}
.theme-map .theme-map-card.down-1 {
  transform: translateY(7rem);
}
@media (max-width: 768px) {
  .theme-map .theme-map-card.down-1 {
    transform: translateY(0rem);
  }
}
.theme-map .theme-map-card.down-2 {
  transform: translateY(3rem);
}
@media (max-width: 768px) {
  .theme-map .theme-map-card.down-2 {
    transform: translateY(0rem);
  }
}
.theme-map .theme-map-card.up-1 {
  transform: translateY(-4rem);
}
@media (max-width: 768px) {
  .theme-map .theme-map-card.up-1 {
    transform: translateY(0rem);
  }
}
.theme-map .theme-map-card .thumb {
  text-align: center;
}
.theme-map .theme-map-card .thumb img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.theme-map .theme-map-card .details {
  padding-top: 2rem;
}
.theme-map .theme-map-card .details strong {
  display: block;
  color: #000;
  font-size: 2.5rem;
}
.theme-map .theme-map-card .details p {
  color: var(--text-sub2);
  font-size: 1.5rem;
  padding-top: 1rem;
}
@media (max-width: 1024px) {
  .theme-map .theme-map-card .details strong {
    font-size: 1.7rem;
  }
  .theme-map .theme-map-card .details p {
    font-size: 1.2rem;
  }
}

.data--box--flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 3rem;
  min-height: 74rem;
}
.data--box--flex--left {
  flex: 1;
  max-width: 57rem;
}
.data--box--flex--right {
  width: 81rem;
}
.data--box--flex--full {
  width: 100% !important;
  min-width: 100%;
  flex-shrink: 0;
}
.data--box--flex.half > div {
  width: 50%;
  max-width: none;
}
@media (max-width: 1170px) {
  .data--box--flex.half > div {
    width: 100%;
  }
}
@media (max-width: 1170px) {
  .data--box--flex {
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
  }
  .data--box--flex--left {
    flex: auto;
    max-width: 100%;
  }
  .data--box--flex--right {
    width: 100%;
  }
}

.data--box {
  position: relative;
  background: #fff;
  border-radius: 0.4rem;
  padding: 2.5rem 4rem;
  border: 1px solid #c6c6c6;
}
.data--box.boarder {
  border: 1px solid #2b316a;
}
.data--box + .data--box--row {
  height: calc(100% - 15.8rem);
}
.data--box.pn {
  padding: 0;
}
@media (max-width: 1170px) {
  .data--box {
    padding: 2rem;
    min-height: 300px;
  }
}
@media (max-width: 1170px) {
  .data--box.auto-height {
    min-height: auto;
  }
}
.data--box--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.data--box--head.end {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .data--box--head {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    height: auto;
  }
  .data--box--head.end {
    justify-content: space-between;
  }
  .data--box--head .data--box--util {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .data--box--head .data--box--util .btn {
    width: calc(50% - 0.5rem);
  }
  .data--box--head .data--box--util .btn + .btn {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .data--box--head.flex-keep {
    flex-direction: row;
  }
}
.data--box--head h4 {
  display: flex;
  align-items: center;
  font-size: 2.1rem;
}
@media (max-width: 768px) {
  .data--box--head h4 {
    font-size: 1.7rem;
  }
}
.data--box--head h4 span {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .data--box--head h4 span {
    margin-left: 0.5rem;
    font-size: 1.3rem;
  }
}
.data--box--head h4 span.head--ti--small {
  color: #555555;
  font-weight: normal;
}
.data--box--head .data--box--util--txt {
  color: #8e8e8e;
  font-size: 1.5rem;
}
.data--box--head .data--box--util--txt span {
  cursor: pointer;
}
.data--box--head .data--box--util--txt span.active {
  color: #029b58;
  font-weight: bold;
}
@media (max-width: 768px) {
  .data--box--head .data--box--util--txt {
    font-size: 1.3rem;
  }
}
.data--box--head .data--box--util--txt * + * {
  position: relative;
  margin-left: 2rem;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .data--box--head .data--box--util--txt * + * {
    margin-left: 1rem;
    padding-left: 1rem;
  }
}
.data--box--head .data--box--util--txt * + *:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 1px;
  height: 2rem;
  background: #c6c6c6;
}
@media (max-width: 768px) {
  .data--box--head .data--box--util--txt * + *:after {
    height: 1rem;
    top: 3px;
  }
}
.data--box .chart-box {
  border: 1px solid #c6c6c6;
  border-radius: 0.4rem;
}
.data--box .chart-box.none-board {
  border: none;
}
.data--box .chart-box.chart-box290 {
  height: 29rem;
}
@media (max-width: 768px) {
  .data--box .chart-box.chart-box290 {
    height: auto;
  }
}
.data--box .chart-box.chart-box321 {
  height: 32.1rem;
}
@media (max-width: 768px) {
  .data--box .chart-box.chart-box321 {
    height: auto;
  }
}
.data--box .chart-box.chart-box465 {
  height: 46.5rem;
}
@media (max-width: 768px) {
  .data--box .chart-box.chart-box465 {
    height: auto;
  }
}
.data--box .chart-box.chart-box623 {
  height: 62.3rem;
}
@media (max-width: 768px) {
  .data--box .chart-box.chart-box623 {
    height: auto;
  }
}
.data--box .chart-box.chart-box209 {
  height: 209px;
}
.data--box .chart-box.chart-box176 {
  height: 176px;
}
.data--box .flex-score-ranking {
  display: flex;
}
.data--box .flex-score-ranking > div {
  flex: 1;
}
.data--box .flex-score-ranking > div + div {
  text-align: center;
  border-radius: 0.4rem;
}
.data--box .flex-score-ranking > div + div + div {
  margin-left: 1.2rem;
}
@media (max-width: 768px) {
  .data--box .flex-score-ranking > div + div + div {
    margin-left: 0.6rem;
  }
}
.data--box .flex-score-ranking > div.flex-score-ranking01 {
  border: 2px solid #aaadc3;
}
.data--box .flex-score-ranking > div.flex-score-ranking01 strong {
  color: #2b316a;
}
.data--box .flex-score-ranking > div.flex-score-ranking02 {
  border: 2px solid #9ad7bc;
}
.data--box .flex-score-ranking > div.flex-score-ranking02 strong {
  color: #029c58;
}
.data--box .flex-score-ranking > div.flex-score-ranking03 {
  border: 2px solid #ffd96f;
}
.data--box .flex-score-ranking > div.flex-score-ranking03 strong {
  color: #f79443;
}
.data--box .flex-score-ranking > div ul li {
  font-size: 1.5rem;
  padding: 1.1rem 2rem;
}
@media (max-width: 768px) {
  .data--box .flex-score-ranking > div ul li {
    font-size: 1.1rem;
    padding: 0.55rem 0rem;
  }
}
.data--box .flex-score-ranking > div ul li:nth-child(odd) {
  background: #ffffff;
}
.data--box .flex-score-ranking > div ul li:nth-child(even) {
  background: #fafafa;
}
.data--box .flex-score-ranking > div .no-data {
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  background: #f0f0f0;
  box-sizing: border-box;
  border: 8px solid #fff;
}
@media (max-width: 768px) {
  .data--box .flex-score-ranking > div .no-data {
    font-size: 0.9rem;
  }
}
.data--box .ranking-bg {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 2px;
}
.data--box .ranking-bg:before {
  position: absolute;
  content: "";
  left: -15px;
  top: 0px;
  width: 9px;
  height: 17px;
  background-image: url("../images/sub/rangking-left-9@17.png");
}
@media (max-width: 768px) {
  .data--box .ranking-bg:before {
    left: -5px;
    top: 2px;
    width: 5px;
    height: 10px;
    background-size: contain;
  }
}
.data--box .ranking-bg:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 0;
  width: 9px;
  height: 17px;
  background-image: url("../images/sub/rangking-right-9@17.png");
}
@media (max-width: 768px) {
  .data--box .ranking-bg:after {
    right: -5px;
    top: 2px;
    width: 5px;
    height: 10px;
    background-size: contain;
  }
}
.data--box .dl-felx {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.data--box .dl-felx dt {
  font-size: 2.1rem;
  color: #1d1d1d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .data--box .dl-felx dt {
    font-size: 1.7rem;
  }
}
.data--box .dl-felx dd {
  flex: 1;
}
.data--box .dl-felx dd select {
  width: 20rem;
}

.flex-box {
  display: flex;
  gap: 1.2rem;
}
.flex-box li {
  flex: 1;
  background: #f0f0f0;
  border-radius: 0.4rem;
  height: 17rem;
}
@media (max-width: 768px) {
  .flex-box li {
    height: 10rem;
  }
}
.flex-box.md li {
  padding: 1.2rem 1.5rem;
  height: auto;
}
.flex-box.md li dl dt {
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .flex-box.md li dl dt {
    font-size: 0.9rem;
  }
}
.flex-box.md li dl dd {
  font-size: 2.1rem;
  text-align: right;
  font-weight: bold;
}
@media (max-width: 768px) {
  .flex-box.md li dl dd {
    font-size: 1.7rem;
  }
}
.flex-box.md li dl dd span {
  font-size: 1.5rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .flex-box.md li dl dd span {
    font-size: 1.1rem;
  }
}
.flex-box.box-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}
.flex-box.box-grid li {
  height: 8.5rem;
}
.flex-box.box-grid li dl {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flex-box.box-grid li dl .year {
  display: block;
  color: #0086d9;
}
.flex-box.box-grid li dl dd {
  font-size: 1.8rem;
}
.flex-box.box-grid li dl dd span {
  margin-left: 0.3rem;
  font-size: 1.4rem;
}

.inbdata {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  margin: 20px 0;
}

.bit-statis-map {
  margin-top: 8rem;
}

.echocity-intro {
  color: #000;
  line-height: 1.4;
  font-size: 1.9rem;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .echocity-intro {
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
}
.echocity-main {
  background-color: #f8f8f8;
  border-radius: 0.6rem;
  padding: 70px 0 60px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .echocity-main {
    padding: 40px 0 30px;
  }
}
.echocity-main-container {
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .echocity-main-container {
    padding: 0 20px;
  }
}
.echocity-main-hgroup {
  background: #fff;
  border-radius: 80px;
  padding: 40px;
  text-align: center;
}
.echocity-main-hgroup div:nth-child(1) {
  font-weight: 600;
  color: #2b316a;
  font-size: 21px;
}
.echocity-main-hgroup div:nth-child(2) {
  color: #555555;
  line-height: 1.6;
  font-size: 17px;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.echocity-main-hgroup span {
  font-size: 15px;
  color: #777777;
}
@media (max-width: 1024px) {
  .echocity-main-hgroup {
    padding: 2rem;
  }
  .echocity-main-hgroup div:nth-child(1) {
    font-size: 18px;
  }
  .echocity-main-hgroup div:nth-child(2) {
    padding-top: 1.5rem;
    font-size: 14px;
  }
  .echocity-main-hgroup span {
    font-size: 12px;
  }
}
.echocity-main-gh {
  position: relative;
  display: flex;
  height: 20rem;
  margin-top: 6rem;
  overflow: hidden;
  border-radius: 100px;
}
.echocity-main-gh div:nth-child(1),
.echocity-main-gh div:nth-child(3) {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background-repeat: no-repeat;
}
.echocity-main-gh .round {
  position: absolute;
  left: 50%;
  top: 0;
  overflow: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
}
.echocity-main-gh .round img {
  max-width: 100%;
}
.echocity-main-gh div:nth-child(1) {
  background-color: #9194b1;
  background-image: url(../images/sub/leaf-left.png);
}
.echocity-main-gh div:nth-child(3) {
  background-color: #7dcaa8;
  background-image: url(../images/sub/leaf-right.png);
  background-position: 100% 50%;
}
@media (max-width: 1024px) {
  .echocity-main-gh div:nth-child(1),
  .echocity-main-gh div:nth-child(3) {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .echocity-main-gh {
    height: auto;
    display: block;
    border-radius: 0;
    background-image: linear-gradient(to bottom, #9194b1, #7dcaa8);
  }
  .echocity-main-gh .round {
    overflow: visible;
    position: static;
    margin: 0 auto;
    text-align: center;
    transform: translate(0);
  }
  .echocity-main-gh div:nth-child(1),
  .echocity-main-gh div:nth-child(3) {
    background: none;
    width: 50%;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 2rem 0;
    margin: 0 auto;
  }
}
.echocity-main .label-btn {
  text-align: center;
  padding-top: 3rem;
}
.echocity-main-bio {
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 4rem;
  margin-top: 2rem;
}
.echocity-main-bio strong {
  display: block;
  font-weight: 600;
  color: #2b316a;
  font-size: 21px;
}
.echocity-main-bio p {
  line-height: 1.7;
  color: #555555;
  font-size: 17px;
  padding-top: 1.5rem;
}
@media (max-width: 1024px) {
  .echocity-main-bio {
    padding: 2rem;
  }
  .echocity-main-bio strong {
    font-size: 18px;
  }
  .echocity-main-bio p {
    font-size: 14px;
  }
}

.ti-md {
  font-size: 25px;
  color: #2b316a;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .ti-md {
    font-size: 18px;
  }
}

.law-sec {
  padding: 40px;
  border-radius: 12px;
  background: #f8f8f8;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .law-sec {
    padding: 20px;
    padding-bottom: 30px;
  }
}
.law-sec dl {
  margin-bottom: 20px;
}
.law-sec dl dt {
  color: #1d1d1d;
  font-size: 19px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .law-sec dl dt {
    font-size: 15px;
  }
}
.law-sec dl dd {
  margin-left: 10px;
  font-size: 17px;
  color: #555555;
  margin-bottom: 5px;
}
.law-sec dl dd:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .law-sec dl dd {
    font-size: 13px;
  }
}
.law-sec dl:last-child {
  margin-bottom: 0;
}

.img-box {
  margin-bottom: 60px;
  border-radius: 12px;
  text-align: center;
  background: #f8f8f8;
  padding: 90px;
}
@media (max-width: 1024px) {
  .img-box {
    padding: 45px;
  }
}

.info-tbl {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .info-tbl {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .info-tbl th {
    font-size: 13px;
  }
}
.info-tbl td {
  text-align: left !important;
  line-height: 1.8;
  padding: 35px;
}
@media (max-width: 1024px) {
  .info-tbl td {
    padding: 15px;
    font-size: 13px;
  }
}

.grdient-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 19px;
  border-radius: 8px;
  background: linear-gradient(36deg, rgb(43, 50, 106) 0%, rgb(7, 156, 88) 100%);
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .grdient-btn {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.grdient-btn img {
  margin-right: 10px;
}

.max {
  max-width: 100%;
}

.topic-card {
  background-image: url(../images/sub/topic-bg.png);
  background-size: cover;
  padding: 60px;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .topic-card {
    padding: 30px;
  }
}
.topic-card-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .topic-card-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.topic-card-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 768px) {
  .topic-card-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
}
.topic-card-item .thumb {
  max-width: 240px;
}
@media (max-width: 768px) {
  .topic-card-item .thumb {
    margin: auto;
  }
}
.topic-card-item .detail h3 {
  font-size: 21px;
  color: #1d1d1d;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .topic-card-item .detail h3 {
    font-size: 16px;
  }
}
.topic-card-item .detail p {
  color: #717171;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .topic-card-item .detail p {
    font-size: 12px;
  }
}
.topic-card-item .detail .olLink {
  display: flex;
  gap: 15px;
  float: right;
  margin-top: 0.8rem;
}
.topic-card-item .detail .olLink a {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  font-size: 1.5rem;
  color: #555555;
}
@media (max-width: 768px) {
  .topic-card-item .detail .olLink a {
    font-size: 11px;
  }
}
.topic-card-item .detail .olLink a i {
  display: block;
  width: 1.4rem;
  height: 1.5rem;
  background: url(../images/ico/ico-blank18@18.png) no-repeat center center/100% 100%;
}
@media (max-width: 768px) {
  .topic-card-item .detail .olLink a i {
    width: 1rem;
    height: 1rem;
  }
}

:root {
  --map-gutter: 20px;
}

body:has(#map) {
  overflow: hidden;
}

#map {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: -1;
}

.map-container {
  position: relative;
  height: calc(100% - 8rem);
  width: 100%;
}
@media (max-width: 768px) {
  .map-container {
    height: calc(100% - 4rem);
  }
}

.search {
  position: absolute;
  left: 110px;
  top: var(--map-gutter);
  z-index: 10;
  width: 280px;
}
.search-window {
  width: 100%;
  position: relative;
  border: 0;
  border-radius: 0.4rem;
  background-color: #fff;
  height: 48px;
  display: flex;
}
.search-window input {
  display: block;
  font-size: 17px;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  border: 0;
  background: transparent;
}
.search-window #btnSearch {
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 22px;
  height: 22px;
  background: url(../images/map/icon-search.png) no-repeat center center/100% 100%;
  transform: translateY(-50%);
}

.search--cont {
  width: 100%;
  background: #fff;
  border-radius: 0.6rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-top: 1rem;
}
.search--cont--head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #d8d8d8;
}
.search--cont--head .count {
  position: relative;
  font-size: 1.3rem;
}
.search--cont--head .count span {
  font-weight: bold;
}
.search--cont--head .close-btn {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/common/search_close.png");
}
.search--cont--body .search--li--inner {
  max-height: 49rem;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--inner {
    height: calc(100vh - 25rem);
  }
}
.search--cont--body .search--li li:nth-child(odd) {
  background: #f8f8f8;
}
.search--cont--body .search--li li:last-child {
  border-bottom: none;
}
.search--cont--body .search--li--item {
  padding: 1.4rem;
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--item {
    padding: 1rem 1.5rem;
  }
}
.search--cont--body .search--li--item--name {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--item--name {
    font-size: 1.3rem;
  }
}
.search--cont--body .search--li--item--name span {
  color: #000;
  font-weight: bold;
}
.search--cont--body .search--li--item--name p {
  color: #000000;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--item--name p {
    font-size: 1.3rem;
  }
}
.search--cont--body .search--li--item--juso01 {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--item--juso01 {
    font-size: 1.2rem;
  }
}
.search--cont--body .search--li--item--juso02 {
  font-size: 1.3rem;
  color: #717171;
}
@media (max-width: 768px) {
  .search--cont--body .search--li--item--juso02 {
    font-size: 1.1rem;
  }
}
.search--cont--foot {
  border-top: 1px solid #d8d8d8;
  padding: 1.2rem;
}
.search--cont--foot .pagination .paging a {
  font-size: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}
.search--cont--foot .pagination .paging strong {
  border-radius: 50%;
  font-size: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.toolbar {
  position: absolute;
  right: var(--map-gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.toolbar .group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
.toolbar .group #pop-thematic {
  left: auto;
  right: calc(100% + 1rem);
}
.toolbar .toolbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem 0;
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  border-radius: 50%;
}
.toolbar .toolbar-btn span {
  font-size: 9px;
}
.toolbar .toolbar-btn[aria-pressed=true] {
  background-color: #029c58;
  color: #fff;
}
.toolbar .toolbar-btn i {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.toolbar .toolbar-btn .icon-map {
  background-image: url(../images/map/icon-map.png);
}
.toolbar .toolbar-btn .icon-distance {
  background-image: url(../images/map/icon-distance.png);
}
.toolbar .toolbar-btn .icon-area {
  background-image: url(../images/map/icon-area.png);
}
.toolbar .toolbar-btn .icon-radius {
  background-image: url(../images/map/icon-radius.png);
}
.toolbar .toolbar-btn .icon-save {
  background-image: url(../images/map/icon-save.png);
}
.toolbar .toolbar-btn .icon-print {
  background-image: url(../images/map/icon-print.png);
}
.toolbar .toolbar-btn .icon-share {
  background-image: url(../images/map/icon-share.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-map {
  background-image: url(../images/map/icon-map-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-distance {
  background-image: url(../images/map/icon-distance-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-area {
  background-image: url(../images/map/icon-area-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-radius {
  background-image: url(../images/map/icon-radius-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-save {
  background-image: url(../images/map/icon-save-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-print {
  background-image: url(../images/map/icon-print-active.png);
}
.toolbar .toolbar-btn[aria-pressed=true] .icon-share {
  background-image: url(../images/map/icon-share-active.png);
}

.sidebar {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 7rem;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid #c6c6c6;
}
.sidebar-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
  width: 100%;
}
.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 12rem;
  background-color: #ffffff;
  border-bottom: 1px solid #c6c6c6;
  gap: 2rem 0;
}
.sidebar-btn i {
  display: block;
  width: 3.5rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.sidebar-btn span {
  color: #000;
  font-size: 1.3rem;
}
.sidebar-btn-default i {
  background-image: url(../images/map/icon-default.png);
}
.sidebar-btn-default[aria-pressed=true] i {
  background-image: url(../images/map/icon-default-active.png);
}
.sidebar-btn-etc i {
  background-image: url(../images/map/icon-etc.png);
}
.sidebar-btn-etc[aria-pressed=true] i {
  background-image: url(../images/map/icon-etc-active.png);
}
.sidebar-btn-envi i {
  background-image: url(../images/map/icon-envi.png);
}
.sidebar-btn-envi[aria-pressed=true] i {
  background-image: url(../images/map/icon-envi-active.png);
}
.sidebar-btn[aria-pressed=true] {
  background-image: linear-gradient(to bottom, #09965a, #2b3269);
}
.sidebar-btn[aria-pressed=true] span {
  color: #fff;
}

.panel {
  display: none;
  position: absolute;
  left: 7rem;
  top: 0;
  width: 30rem;
  height: 100%;
  background-color: #fff;
  transform: translateX(0%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.panel.active {
  display: block;
}
.panel.minimize {
  transform: translateX(-100%);
}
.panel-container {
  position: relative;
  height: 100%;
  width: 100%;
}
.panel-container .sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 7rem;
  padding: 1rem;
  background-color: #67c49b;
}
.panel-container .search-map {
  position: relative;
  background: #fff;
  height: 4rem;
  border-radius: 0.4rem;
}
.panel-container .search-map input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
}
.panel-container .search-map #btnSearchMap {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/map/icon-search.png) no-repeat center center/100% 100%;
}
.panel .panel-content {
  height: calc(100% - 7rem);
}
.panel-collapse {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  width: 2rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 0 0.4rem 0.4rem 0 ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.panel-collapse::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 1.2rem;
  background: url(../images/map/icon-collapse.png) no-repeat center center/100% 100%;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.panel-collapse[aria-pressed=true]::after {
  transform: rotate(0deg);
}

.dialog {
  position: absolute;
  border-radius: 1.2rem;
  background-color: #fff;
  border: 0;
  z-index: 100;
  top: 0;
  padding: 0;
}
.dialog-body {
  padding: 2rem;
}
.dialog-title {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  margin-bottom: 1.5rem;
}
.dialog-title strong {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
}
.dialog-title .count {
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  padding: 0.4rem 1.2rem;
  border-radius: 1.2rem;
  background-color: #000;
  color: #fff;
}
.dialog-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../images/map/icon-close.png) no-repeat center center/100% 100%;
}
.dialog-content {
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .dialog-content {
    width: calc(100vw - 8rem) !important;
  }
}

.theme-row {
  padding: 2rem 0;
  margin: 0 2rem;
  border-bottom: 1px solid #f0f0f0;
}
.theme-title {
  color: #000;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
.theme-list {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
.theme-item {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0 1rem;
}
.theme-item-title {
  color: #000;
  font-size: 1.3rem;
  display: block;
  text-align: center;
  padding-top: 0.4rem;
}
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.theme-btn[aria-pressed=true] {
  z-index: 3;
}
.theme-btn[aria-pressed=true]::after {
  opacity: 1;
  visibility: visible;
}
.theme-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(2, 156, 88, 0.6);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../images/map/check.png);
  border: 2px solid #029c58;
  border-radius: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.theme-btn-image {
  display: block;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 0.4rem;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
}
.theme-btn-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
.theme-btn-help {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../images/map/!.png) no-repeat center center/100% 100%;
  z-index: 2;
}

/* 주제도팝업 */
#pop-thematic .collapse:not(:last-child) {
  margin-bottom: 1rem;
}

.collapse {
  border: 1px solid #c6c6c6;
  border-radius: 0.4rem;
  background-color: #fff;
}
.collapse-container {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.collapse-header {
  padding: 1.5rem;
}
.collapse-header-ti {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.collapse-btn {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
}
.collapse-btn-title {
  flex: 1;
  text-align: left;
}
.collapse-btn::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.4rem;
  background: url(../images/map/icon-extend.png) no-repeat;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.collapse-btn[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.collapse-utils-group {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}
.collapse-utils-group .line {
  width: 1px;
  height: 1.5rem;
  background-color: #c6c6c6;
}
.collapse-info-btn {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/ico/mark-info-ico.png) no-repeat center center/100% 100%;
}
.collapse-del-btn {
  display: block;
  width: 1.5rem;
  height: 1.7rem;
  background: url(../images/ico/icon-del.svg) no-repeat center center/100% 100%;
}
.collapse-content {
  padding: 1.4rem;
  border-top: 1px solid #c6c6c6;
  max-height: 13rem;
}
.collapse-content[aria-hidden=true] {
  display: none;
}
.collapse:first-child {
  background: rgba(2, 156, 88, 0.1);
  border: 2px solid #029c58;
}

.range-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(to right, #333 50%, #ddd 50%);
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.range-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  -moz-transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.range-slider:hover::-webkit-slider-thumb {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.range-slider:hover::-moz-range-thumb {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.range-slider:active::-webkit-slider-thumb {
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.range-slider:active::-moz-range-thumb {
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.origin-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.3rem;
}
.origin-item-title {
  font-size: 1.3rem;
  color: #8e8e8e;
}
.origin-item-link {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  font-size: 1.3rem;
  color: #029c58;
}
.origin-item-link i {
  display: block;
  width: 1.4rem;
  height: 1.5rem;
  background: url(../images/map/icon-blank.png) no-repeat center center/100% 100%;
}

.legend-container {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  background: white;
}
.legend-title {
  font-size: 1.5rem;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  margin-bottom: 0.7rem;
}
.legend-title::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #000;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}
.legend-item:not(:last-child) {
  margin-bottom: 0.2rem;
}
.legend-item-color {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  background-color: #000;
}
.legend-item-title {
  font-size: 1.3rem;
  color: #8e8e8e;
}

@media (max-width: 768px) {
  .map-container {
    height: calc(100% - 4rem);
  }
  .search {
    width: calc(100vw - 2 * var(--map-gutter) - 14rem);
  }
  .search-window {
    height: 4rem;
  }
  .search-window input {
    font-size: 1.4rem;
  }
  .toolbar .toolbar-btn {
    gap: 0.1rem 0;
  }
  .sidebar {
    height: auto;
    border-left: 0;
    background-color: transparent;
    width: auto;
    right: var(--map-gutter);
    top: var(--map-gutter);
  }
  .sidebar-container {
    flex-direction: row;
    gap: 0.5rem;
  }
  .sidebar-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 0.4rem;
    border-bottom: 0;
    gap: 0.5rem;
  }
  .sidebar-btn i {
    width: 2rem;
    height: 1.8rem;
    background-size: cover;
    display: none;
  }
  .sidebar-btn span {
    font-size: 1rem;
  }
  .panel {
    position: fixed;
    left: 0;
    width: 100%;
    right: 0;
    bottom: 0;
    top: inherit;
    height: auto;
  }
  .panel.minimize {
    transform: translateY(100%);
  }
  .panel.minimize .panel-collapse {
    top: -20px;
    border-radius: 0.4rem 0.4rem 0 0;
  }
  .panel-container .sticky {
    height: 8rem;
    padding-top: 3rem;
  }
  .panel .panel-content {
    max-height: calc(80dvh - 7rem);
  }
  .panel-container .search-map input {
    font-size: 1.4rem;
  }
  .theme-btn-help {
    display: none;
  }
  .panel-collapse {
    left: 50%;
    top: 5px;
    width: 6rem;
    height: 2rem;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .panel-collapse::after {
    transform: rotate(90deg);
  }
  .panel-collapse[aria-pressed=true]::after {
    transform: rotate(-90deg);
  }
  .info-popup {
    width: 100%;
    transform: translate(-50%);
  }
}
.theme-inner .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.theme-inner .menu-list .menu-item {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
}
.theme-inner .menu-list .menu-item .menu-link {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  color: #1e293b;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.13s;
}
.theme-inner .menu-list .menu-item.has-children .submenu-list {
  display: none;
}
.theme-inner .menu-list .menu-item.active > .submenu-list {
  display: block;
}
.theme-inner .menu-list .menu-item .submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #e5e7eb;
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item {
  position: relative;
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item .submenu-link {
  display: block;
  text-align: left;
  width: 100%;
  padding: 12px 32px;
  font-size: 15px;
  color: #3c3c3c;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.12s;
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item.active:after {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/ico/ico-check.svg);
  background-repeat: no-repeat;
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item.active {
  background: rgba(2, 156, 88, 0.1);
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item.active .submenu-link {
  color: #029c58;
}
.theme-inner .menu-list .menu-item .submenu-list .submenu-item .submenu-link:hover{
  background: rgba(2, 156, 88, 0.1);
  color: #029c58;
}

.info-popup {
  width: 430px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #ececec;
  overflow: hidden;
}
.info-popup .info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 8px 16px;
  border-bottom: 1px solid #f1f1f1;
}
.info-popup .info-header .info-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.5px;
}
.info-popup .info-header .info-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #444;
  cursor: pointer;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 50%;
  transition: background 0.15s;
}
.info-popup .info-header .info-close:hover {
  background: #f3f5fa;
}
.info-popup .info-list {
  padding: 12px 18px 0 18px;
  font-size: 15px;
  color: #222;
  line-height: 1.7;
  max-height: 150px;
}
.info-popup .info-list > div {
  margin-bottom: 2px;
}
.info-popup .info-list > div .info-label {
  display: inline-block;
  width: 58px;
  color: #222;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.info-popup .info-list > div .info-label-light {
  color: #b1b5c5;
  font-weight: 400;
}
.info-popup .info-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  padding: 12px 0 6px 18px;
}
.info-popup .info-pagination .info-page {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #f5f6fa;
  color: #b1b5c5;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.info-popup .info-pagination .info-page.active {
  background: #029c58;
  color: #fff;
  font-weight: 700;
}
.info-popup .info-pagination .info-page:not(.active):hover {
  background: #e8eafb;
  color: #029c58;
}
.info-popup .info-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f1f1;
  padding: 10px 14px 8px 14px;
  background: #fff;
}
.info-popup .info-footer .info-setting {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
}
.info-popup .info-footer .info-download {
  display: flex;
  align-items: center;
  border: none;
  background: none;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 3px 6px 3px 2px;
  border-radius: 6px;
  transition: background 0.13s;
}
.info-popup .info-footer .info-download:hover {
  background: #f3f5fa;
}
.info-popup .info-footer .info-download svg {
  margin-right: 2px;
  vertical-align: -3px;
}

.map-option-item {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  gap: 0.7rem;
  z-index: 100;
}
.map-option-item li {
  position: relative;
  width: 5rem;
  text-align: center;
  cursor: pointer;
}
.map-option-item li .map-option-item-bg {
  position: relative;
  height: 5rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.map-option-item li.map-option-item01 .map-option-item-bg {
  background-image: url("../images/map/map-option-item01.png");
}
.map-option-item li.map-option-item02 .map-option-item-bg {
  background-image: url("../images/map/map-option-item02.png");
}
.map-option-item li.map-option-item03 .map-option-item-bg {
  background-image: url("../images/map/map-option-item03.png");
}
.map-option-item li.map-option-item04 .map-option-item-bg {
  background-image: url("../images/map/map-option-item04.png");
}
.map-option-item li span {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 0;
}
@media (max-width: 768px) {
  .map-option-item li span {
    font-size: 0.9rem;
  }
}
.map-option-item li.active .map-option-item-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("../images/map/map-option-item-check.png");
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #2d2d2d;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
.map-option-item li.active span {
  font-weight: bold;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
  text-indent: -9999px;
  border-radius: 0;
}

.flex {
  display: flex;
}
.flex.gap-8 {
  gap: 0.8rem;
}
.flex.gap-20 {
  gap: 2rem;
}
.flex.gap-16 {
  gap: 1.6rem;
}
.flex.flex-1 > * {
  flex: 1;
}

.flex-item-cetner {
  align-items: center;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}

.flex-end {
  justify-content: flex-end;
}

.flex-start {
  align-items: flex-start;
}

.no-data {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-content: stretch;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #555555;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vct {
  vertical-align: top !important;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

.col-lg-1 {
  width: 8.3333333333%;
}

.col-lg-2 {
  width: 16.6666666667%;
}

.col-lg-3 {
  width: 25%;
}

.col-lg-4 {
  width: 33.3333333333%;
}

.col-lg-5 {
  width: 41.6666666667%;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-7 {
  width: 58.3333333333%;
}

.col-lg-8 {
  width: 66.6666666667%;
}

.col-lg-9 {
  width: 75%;
}

.col-lg-10 {
  width: 83.3333333333%;
}

.col-lg-11 {
  width: 91.6666666667%;
}

.col-lg-12 {
  width: 100%;
}

.col-md-1 {
  width: 8.3333333333%;
}

.col-md-2 {
  width: 16.6666666667%;
}

.col-md-3 {
  width: 25%;
}

.col-md-4 {
  width: 33.3333333333%;
}

.col-md-5 {
  width: 41.6666666667%;
}

.col-md-6 {
  width: 50%;
}

.col-md-7 {
  width: 58.3333333333%;
}

.col-md-8 {
  width: 66.6666666667%;
}

.col-md-9 {
  width: 75%;
}

.col-md-10 {
  width: 83.3333333333%;
}

.col-md-11 {
  width: 91.6666666667%;
}

.col-md-12 {
  width: 100%;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
/*# sourceMappingURL=styles.css.map */

.menu-item {
.submenu-link-download {
  display: inline-block;
  font-size: 12px;
  color: #555555;
  padding: 5px 10px;
  border: 1px solid #555555;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  cursor: pointer;

  @include fn.responsive(md) {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 4px;
  }

  i {
    display: inline-block;
    vertical-align: inherit;
    margin-left: 5px;

    @include fn.responsive(md) {
      margin-left: 8px;
    }
  }
}
}

.down{
  width: 12px;
  height: 12px;
  margin-left: 3px;
  vertical-align: text-top;
  background-image: url('../images/sub/ico-data16@16.png');
}
