@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);
  }
}

#btnTop {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  background: url(../images/main/btnTop.png) no-repeat 50% 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 30px 0 30px 0;
  transition: all 0.5s;
  transform: translateY(100px);
}

#btnTop.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.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%);
}

#header {
  z-index: 100;
  position: relative;
  transition: all 0.3s;
  background-color: #fff;
}

#header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  height: 0.3rem;
  background: linear-gradient(to right, #2b316a, #039b58);
}

@media (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }
}

#header .header-container {
  align-items: center;
  position: relative;
  z-index: 99;
  margin: auto;
}

#header .header-container .header-top .header-inner {
  max-width: 144rem;
  margin: auto;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  #header .header-container .header-top .header-inner {
    height: 4.1rem;
    padding: 0 2rem;
  }
}

#header .header-container .header-top .header-inner .head--eng {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.9;
}

#header .header-container .header-top .header-inner .head--eng .en-ico {
  width: 2rem;
  height: 2rem;
  background: url("../images/ico/lang-black.png") no-repeat;
}

#header .header-container .header-top .header-inner .head--eng span {
  color: #717171;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  #header .header-container .header-top .header-inner .head--eng span {
    display: none;
  }
}

#header .header-container .header-top.sub-header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#header .header-container .header-bi {
  display: block;
  width: 23.7rem;
  height: 4rem;
  background: url("../images/common/bi.svg") no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  #header .header-container .header-bi {
    width: 11.8rem;
    height: 2rem;
  }
}

#header .header-container .head--eng {
  color: #fff;
}

#header .header-container .gnb--wrap {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  #header .header-container .gnb--wrap {
    display: none;
  }
}

#header .header-container .gnb--wrap.sub--gnb--wrap {
  border-bottom: 1px solid #d8d8d8;
}

#header.hide {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transform: translateY(-100%);
}

#header.hide:after {
  display: none;
}

#header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

#header.main-header:after {
  background: transparent;
}

#header.main-header .header-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#header.main-header .header-container .header-top {
  box-shadow: inset 0px -50px 50px -50px rgba(255, 255, 255, 0.2);
}

#header.main-header .header-container .header-top .head--eng .en-ico {
  background: url("../images/ico/lang-white.png") no-repeat;
}

#header.main-header .header-container .header-top .head--eng span {
  color: #fff;
}

#header.main-header .header-container .total-menu .gnb--inner .gnb--dep01 > a {
  color: #fff;
}

#header.main-header .header-container .header-bi {
  background-image: url("../images/common/bi-white.png");
  background-size: contain;
}

#header.main-header.gnb-open, #header.main-header.up {
  background: #fff;
}

#header.main-header.gnb-open .header-container .header-bi, #header.main-header.up .header-container .header-bi {
  background-image: url("../images/common/bi.svg");
}

#header.main-header.gnb-open .header-container .head--eng, #header.main-header.up .header-container .head--eng {
  opacity: 1;
}

#header.main-header.gnb-open .header-container .head--eng .en-ico, #header.main-header.up .header-container .head--eng .en-ico {
  background: url("../images/ico/lang-black.png") no-repeat;
}

#header.main-header.gnb-open .header-container .head--eng span, #header.main-header.up .header-container .head--eng span {
  color: #717171;
}

#header.main-header.gnb-open .header-container .gnb--wrap, #header.main-header.up .header-container .gnb--wrap {
  border-top: 1px solid #eeeeee;
}

#header.main-header.gnb-open .total-menu .gnb--inner .gnb--dep01 > a, #header.main-header.up .total-menu .gnb--inner .gnb--dep01 > a {
  color: #000;
}

#header.main-header.gnb-open .head--util .ham-btn .line, #header.main-header.up .head--util .ham-btn .line {
  background-color: #000;
}

#header.main-header .head--util .ham-btn .line {
  background-color: #fff;
}

#header.gnb-open .gnb--wrap {
  background: #fafafa;
}

#header.gnb-open .gnbBg {
  height: 33rem;
  opacity: 1;
  filter: Alpha(opacity=100);
}

#header.gnb-open .gnb--dep02 {
  height: 32.9rem;
  opacity: 1;
  filter: Alpha(opacity=100);
  padding-top: 4rem;
  visibility: visible;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

#header .gnbBg {
  z-index: 89;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 14.1rem;
  width: 100%;
  height: 0;
  background: #e9eaf0;
  opacity: 0;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#header .gnbBg .gnbBg-inner {
  display: none;
  position: relative;
  width: 144rem;
  margin: auto;
  height: 100%;
}

#header .gnbBg img {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .mm-open #header.main-header .header-container {
    transition: all 0.3s;
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
  }

  .mm-open #header.main-header .header-container .header-bi {
    background-image: url("../images/common/bi.png");
  }

  .mm-open #header.main-header .head--util .ham-btn .line {
    background-color: #000;
  }
}

.total-menu {
  max-width: 144rem;
  margin: auto;
  width: 100%;
}

.total-menu .gnb--inner {
  display: flex;
}

.total-menu .gnb--inner:hover .gnb--dep01 > a, .total-menu .gnb--inner:focus .gnb--dep01 > a {
  padding: 0 2rem;
}

@media (max-width: 1170px) {
  .total-menu .gnb--inner:hover .gnb--dep01 > a, .total-menu .gnb--inner:focus .gnb--dep01 > a {
    padding: 0 1rem;
  }
}

.total-menu .gnb--inner .gnb--dep01 {
  position: relative;
  flex: 1;
}

.total-menu .gnb--inner .gnb--dep01 > a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  padding: 0 1rem;
  height: 6rem;
  transition: all 0.5s;
  color: #000;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1170px) {
  .total-menu .gnb--inner .gnb--dep01 > a {
    line-height: 1;
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

.total-menu .gnb--inner .gnb--dep01:first-child .gnb--dep02 {
  border-left: 1px solid #eeeeee;
}

.total-menu .gnb--inner .gnb--dep01.on > a {
  color: #029c58;
}

.total-menu .gnb--inner .gnb--dep01.on .gnb--dep02 {
  transition: all 0.3s;
  background: linear-gradient(to bottom, #1d8162, #2a4f6a);
}

.total-menu .gnb--inner .gnb--dep01.on .gnb--dep02 a {
  color: #fff;
  opacity: 0.5;
}

.total-menu .gnb--inner .gnb--dep01.on .gnb--dep02 a:hover, .total-menu .gnb--inner .gnb--dep01.on .gnb--dep02 a:focus {
  opacity: 1;
}

.total-menu .gnb--inner .gnb--dep01.on .gnb--dep02:after {
  width: 100%;
  left: 0;
}

.total-menu .gnb--inner .gnb--dep02 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 0;
  transition: all 0.2s 0s;
  transition-delay: 0s;
  border-right: 1px solid #eeeeee;
}

.total-menu .gnb--inner .gnb--dep02 ul li {
  padding-top: 3rem;
  text-align: center;
  font-size: 1.5rem;
}

.total-menu .gnb--inner .gnb--dep02 ul li:first-child {
  padding-top: 0;
}

.total-menu .gnb--inner .gnb--dep02 ul li a {
  position: relative;
  transition: all 0.3s;
}

.total-menu .gnb--inner .gnb--dep02 ul li a.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");
  transition: all 0.3s;
}

@media (max-width: 1170px) {
  .total-menu .gnb--inner .gnb--dep02 ul li a {
    font-size: 1.3rem;
  }
}

.total-menu .gnb--inner .gnb--dep02 ul li a:hover, .total-menu .gnb--inner .gnb--dep02 ul li a:focus {
  color: #2b316a;
}

/* Header :: 사이트맵버튼 */
.head--util {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.head--util .ham-btn {
  width: 2.4rem;
  height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  align-items: flex-end;
}

.head--util .ham-btn .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-top: 5px;
  transition: all 0.4s ease-in-out;
}

.head--util .ham-btn .line:nth-child(1) {
  margin-top: 0;
}

.head--util .ham-btn .line:nth-child(2) {
  width: 70%;
}

.head--util .mobile-button {
  display: none;
}

@media (max-width: 768px) {
  .head--util .mobile-button {
    display: flex;
  }
}

#nav {
  position: fixed;
  left: 0;
  top: 42px;
  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 > a > span::after {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  background: url("../images/common/nav-gnb-arw.png") no-repeat;
  transition: background 0.15s ease-in;
  transform: rotate(0deg);
  width: 8px;
  height: 4px;
  background-size: 100% auto;
}

.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;
}

body:has(.gnb-open) .overlay {
  display: block;
  z-index: 10;
}

.overlay {
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

body:has(#fullpage):not(.fp-viewing-0) #header.main-header {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transform: translateY(-100%);
}

body:has(#fullpage):not(.fp-viewing-0) #header.ups.main-header {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transform: translateY(0%);
}

body:has(#fullpage) #footer {
  height: auto !important;
}

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

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

@media (max-width: 768px) {
  .mb12 {
    margin-bottom: 0.6rem !important;
  }
}

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

@media (max-width: 768px) {
  .mb18 {
    margin-bottom: 0.9rem !important;
  }
}

.mb20 {
  margin-bottom: 2rem !important;
}

@media (max-width: 768px) {
  .mb20 {
    margin-bottom: 1rem !important;
  }
}

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

@media (max-width: 768px) {
  .mb30 {
    margin-bottom: 1.5rem !important;
  }
}

.mb32 {
  margin-bottom: 3.2rem !important;
}

@media (max-width: 768px) {
  .mb32 {
    margin-bottom: 1.6rem !important;
  }
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

@media (max-width: 768px) {
  .mb35 {
    margin-bottom: 1.75rem !important;
  }
}

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

@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 2rem !important;
  }
}

.mb50 {
  margin-bottom: 5rem !important;
}

@media (max-width: 768px) {
  .mb50 {
    margin-bottom: 2.5rem !important;
  }
}

.mb60 {
  margin-bottom: 6rem !important;
}

@media (max-width: 768px) {
  .mb60 {
    margin-bottom: 3rem !important;
  }
}

.mb80 {
  margin-bottom: 8rem !important;
}

@media (max-width: 768px) {
  .mb80 {
    margin-bottom: 4rem !important;
  }
}

.mb120 {
  margin-bottom: 12rem !important;
}

@media (max-width: 768px) {
  .mb120 {
    margin-bottom: 6rem !important;
  }
}

.mt120 {
  margin-top: 12rem !important;
}

@media (max-width: 768px) {
  .mt120 {
    margin-top: 6rem !important;
  }
}

.fz15 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .fz15 {
    font-size: 1.1rem;
  }
}

.fz17 {
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .fz17 {
    font-size: 1.3rem;
  }
}

.fz19 {
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .fz19 {
    font-size: 1.5rem;
  }
}

.fz21 {
  font-size: 2.1rem;
}

@media (max-width: 768px) {
  .fz21 {
    font-size: 1.7rem;
  }
}

.fz25 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .fz25 {
    font-size: 2.1rem;
  }
}

.fw-b {
  font-weight: bold;
}

.red {
  color: #d22c2c;
}

.blue {
  color: #164194;
}

.black {
  color: #1d1d1d;
}

.green {
  color: #029b58;
}

.row {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .row {
    margin-bottom: 1.5rem;
  }
}

#breadcrumb {
  width: 100%;
  height: 6rem;
  border-bottom: 1px solid #d8d8d8;
}

@media (max-width: 768px) {
  #breadcrumb {
    height: 4rem;
    margin-top: 4.1rem;
  }
}

#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);
}

.sub--wrap--inner {
  position: relative;
  max-width: 1440px;
  margin: auto;
  padding: 0 1.5rem;
}

.sub--wrap .sub--ti {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8.5rem;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 2rem;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .sub--wrap .sub--ti {
    padding-top: 4.25em;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
}

.sub--wrap .sub--ti h3 {
  font-size: 3.2rem;
}

@media (max-width: 768px) {
  .sub--wrap .sub--ti h3 {
    font-size: 2.8rem;
  }
}

.sub--wrap .sub--ti--util {
  display: flex;
  gap: 1rem;
}

.sub--wrap .sub--ti--util button {
  width: 4rem;
  height: 4rem;
  background-size: contain;
}

@media (max-width: 768px) {
  .sub--wrap .sub--ti--util button {
    width: 3rem;
    height: 3rem;
  }
}

.sub--wrap .sub--ti--util button.share {
  background-image: url("../images/ico/share_ico.png");
}

.sub--wrap .sub--ti--util button.print {
  background-image: url("../images/ico/print_ico.png");
}

.sub--Data--wrap {
  position: relative;
  background: url(../images/sub/background-data.png) no-repeat center bottom;
  background-size: 100% auto;
}

.sub--Data--wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #252a64 0%, #148e5d 100%);
  top: 0;
  left: 0;
}

.sub--Data--wrap h3.fz25 {
  color: #fff;
}

.sub--Data--wrap .sub--wrap--inner {
  padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
  .sub--Data--wrap .sub--wrap--inner {
    padding: 4rem 0.75rem;
  }
}

.info--li--item {
  margin-bottom: 6rem;
  border-radius: 0.6rem;
}

@media (max-width: 768px) {
  .info--li--item {
    height: auto;
    flex-direction: column;
    margin-bottom: 3rem;
  }
}

.info--li--item dl {
  flex: 1;
}

.info--li--item dl dt {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4.3rem;
}

.info--li--item dl dt:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-image: url("../images/sub/bullet-32@32.png");
}

@media (max-width: 768px) {
  .info--li--item dl dt:after {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .info--li--item dl dt {
    margin-bottom: 1rem;
    padding-left: 3rem;
  }
}

.info--li--item--con {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .info--li--item--con {
    font-size: 1.1rem;
  }
}

.info--li--item--con h4 {
  color: #1d1d1d;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .info--li--item--con h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
}

.info--li--item--con p {
  color: #555555;
}

@media (max-width: 768px) {
  .info--li--item--con p {
    font-size: 1.1rem;
  }
}

.info--li--item--con + div {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .info--li--item--con + div {
    margin-top: 1rem;
  }
}

.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;
  box-shadow: rgba(14, 12, 12, 0.1) 0px 10px 30px;
  padding: 2.5rem 4rem;
}

.data--box.block {
  width: 100%;
}

.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: 1400px) {
  .data--box {
    padding: 2rem;
    min-height: 300px;
    max-width: 100%;
    width: 100%;
  }
}

@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: nowrap;
    gap: 1rem;
    height: auto;
  }
}

@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;
}

.weather-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.weather-box .flex-1 {
  gap: 16px;
}

@media (max-width: 768px) {
  .weather-box .flex-1 {
    flex-direction: column;
  }
}

.weather-box .weather-cast-wrap .weather-cast-row01 {
  display: flex;
  gap: 30px;
}

.flex-chart {
  display: flex;
  height: 15.7rem;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .flex-chart {
    flex-direction: column;
    height: auto;
  }
}

.flex-chart .left {
  height: 100%;
  width: 53rem;
}

@media (max-width: 768px) {
  .flex-chart .left {
    width: 100%;
  }
}

.flex-chart .right {
  height: 100%;
  position: relative;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-chart .right:after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e4e4e4;
  content: "";
}

@media (max-width: 768px) {
  .flex-chart .right:after {
    display: none;
  }
}

.rangking-ti {
  text-align: center;
}

.rangking-ti .num {
  width: 5.5rem;
  height: 5rem;
  margin: 1rem auto;
  padding-top: 0.5rem;
  font-weight: bold;
  font-size: 2.5rem;
  color: #fff;
  background-image: url("../images/sub/rangking-55@50.png");
}

.rangking-ti dd {
  color: #555555;
}

.sub--Info--box {
  padding: 4rem 6rem;
  background: #d5d6e1;
  border-radius: 0.6rem;
}

@media (max-width: 768px) {
  .sub--Info--box {
    padding: 2rem 3rem;
  }
}

.sub--Info--box .btn-wrap {
  position: relative;
  margin-top: 3rem;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .sub--Info--box .btn-wrap {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.sub--Info--box .btn-wrap:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  height: 1px;
  background-image: url("../images/sub/line-dotted.png");
  background-repeat: repeat;
}

.sub--Info--box .btn-wrap a {
  color: #2b316a;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .sub--Info--box .btn-wrap a {
    font-size: 1.5rem;
  }
}

.sub--Info--box .btn-wrap a i {
  margin-left: 0.5rem;
  width: 10px;
  height: 10px;
}

.sub--Info--box .btn-wrap a + a {
  margin-left: 2rem;
}

.card--li {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 3rem 3rem;
}

@media (max-width: 768px) {
  .card--li {
    grid-template-columns: repeat(2, 4fr);
    gap: 1.5rem;
  }
}

.card--li--item {
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 0.6rem;
}

.card--li--item img {
  max-width: 100%;
}

.card--li--item dl {
  padding: 3rem;
  border-top: 1px solid #d8d8d8;
}

@media (max-width: 768px) {
  .card--li--item dl {
    padding: 1.5rem;
  }
}

.card--li--item dl dt {
  font-size: 1.3rem;
  color: #029c58;
  margin-bottom: 2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .card--li--item dl dt {
    margin-bottom: 1rem;
  }
}

.card--li--item dl dd {
  color: #1d1d1d;
  font-size: 1.9rem;
}

@media (max-width: 768px) {
  .card--li--item dl dd {
    font-size: 1.5rem;
  }
}

.board-box-4 {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .board-box-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.board-box-4 .board-box-item {
  padding: 2rem;
  border: 1px solid #c6c6c6;
  border-radius: 0.4rem;
}

.board-box-4 .board-box-item > h4 {
  font-size: 1.9rem;
  color: #1d1d1d;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .board-box-4 .board-box-item > h4 {
    font-size: 1.5rem;
  }
}

.board-box-4 .board-box-item.h260 {
  height: 260px;
}

.board-box-4 .board-box-item.h335 {
  height: 335px;
}

.btn-tab-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-tab-wrap button {
  border: 1px solid #d8d8d8;
  background: #e4e4e4;
  color: #555555;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  border-radius: 0.2rem;
}

.btn-tab-wrap button.active {
  border: 1px solid #1a1d40;
  background: #2b316a;
  color: #fff;
}

.map-info-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0 0 0.4rem 0.4rem;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  color: #fff;
  line-height: 1;
}

.map-info-txt p {
  font-size: 1.5rem;
  padding: 1.2rem;
}

@media (max-width: 768px) {
  .map-info-txt p {
    font-size: 1.1rem;
    padding: 0.6rem;
  }
}

.weather-cast-today {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .weather-cast-today {
    margin-bottom: 0.75rem;
  }
}

.weather-cast-today > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weather-cast-today > div img {
  max-width: 100%;
}

.weather-cast-today > div b {
  font-size: 4rem;
}

@media (max-width: 768px) {
  .weather-cast-today > div b {
    font-size: 2rem;
  }
}

.weather-cast-today > div b sub {
  vertical-align: top;
}

.weather-cast-today dl {
  margin-left: 2rem;
}

.weather-cast-today dl dt {
  font-size: 1.7rem;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .weather-cast-today dl dt {
    font-size: 1.3rem;
  }
}

.weather-cast-today dl dd {
  font-size: 1.7rem;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .weather-cast-today dl dd {
    font-size: 1.3rem;
  }
}

.weather-cast-today dl dd sub {
  vertical-align: top;
}

.weather-cast-flex-3 {
  flex: 1;
  display: flex;
  gap: 0.8rem;
}

.weather-cast-flex-3 > dl {
  flex: 1;
  text-align: center;
  background: #f0f0f0;
  padding: 1.2rem;
  border-radius: 0.4rem;
}

@media (max-width: 768px) {
  .weather-cast-flex-3 > dl {
    padding: 0.8rem;
  }
}

.weather-cast-flex-3 > dl dt {
  color: #555555;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .weather-cast-flex-3 > dl dt {
    font-size: 1.2rem;
  }
}

.weather-cast-flex-3 > dl dd {
  color: #1d1d1d;
  font-weight: bold;
}

.weather-cast-flex-3 > dl dd sub {
  vertical-align: top;
}

@media (max-width: 768px) {
  .weather-cast-flex-3 > dl dd {
    font-size: 1.2rem;
  }
}

.weather-cast-week li {
  display: flex;
  align-items: center;
  border: 1px solid #c6c6c6;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-radius: 0.4rem;
}

.weather-cast-week li + li {
  margin-top: 1.2rem;
}

.weather-cast-week li .data dt {
  font-size: 1.9rem;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .weather-cast-week li .data dt {
    font-size: 1.5rem;
  }
}

.weather-cast-week li .data dd {
  font-size: 1.7rem;
  color: #717171;
}

@media (max-width: 768px) {
  .weather-cast-week li .data dd {
    font-size: 1.3rem;
  }
}

.weather-cast-week li .apm {
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .weather-cast-week li .apm {
    gap: 2rem;
  }
}

.weather-cast-week li .apm .am {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .weather-cast-week li .apm .am {
    gap: 1rem;
  }
}

.weather-cast-week li .apm .pm {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .weather-cast-week li .apm .pm {
    gap: 1rem;
  }
}

.weather-cast-week li .apm dl dt {
  color: #717171;
}

@media (max-width: 768px) {
  .weather-cast-week li .apm dl dt {
    font-size: 1.2rem;
  }
}

.weather-cast-week li .apm dl dd {
  text-align: center;
  color: #717171;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .weather-cast-week li .apm dl dd {
    font-size: 1.1rem;
  }
}

.weather-cast-week li .temp {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.weather-cast-week li .temp .low {
  font-size: 1.9rem;
  color: #0086d9;
}

@media (max-width: 768px) {
  .weather-cast-week li .temp .low {
    font-size: 1.5rem;
  }
}

.weather-cast-week li .temp .slash {
  font-size: 1.9rem;
  color: #c6c6c6;
}

@media (max-width: 768px) {
  .weather-cast-week li .temp .slash {
    font-size: 1.5rem;
  }
}

.weather-cast-week li .temp .high {
  color: #d22c2c;
  font-weight: bold;
  font-size: 2.1rem;
}

@media (max-width: 768px) {
  .weather-cast-week li .temp .high {
    font-size: 1.7rem;
  }
}

.weather-news-item {
  border-radius: 0.6rem;
  padding: 1.2rem 1.6rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.weather-news-item.weather-cast-news {
  background: rgba(210, 44, 44, 0.08);
}

.weather-news-item.weather-info-news {
  background: rgba(0, 134, 255, 0.08);
}

@media (max-width: 768px) {
  .weather-news-item {
    font-size: 1.2rem;
    padding: 1rem;
  }
}

.weather-news-item p {
  color: #1d1d1d;
  flex: 1;
}

@media (max-width: 768px) {
  .weather-news-item p {
    font-size: 1.2rem;
  }
}

.environmental-index {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .environmental-index {
    grid-template-columns: repeat(2, 3fr);
  }
}

.environmental-index dl {
  text-align: center;
  border: 1px solid #c6c6c6;
  border-radius: 0.6rem;
  padding: 1rem;
}

.environmental-index dl dt {
  margin-bottom: 0.5rem;
  color: #555555;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .environmental-index dl dt {
    font-size: 1.1rem;
  }
}

.environmental-index dl dd {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.5rem;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .environmental-index dl dd {
    font-size: 1.2rem;
  }
}

.environmental-index dl dd i {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}

.environmental-index dl dd i.idx-lv01 {
  background: #81d2e5;
}

.environmental-index dl dd i.idx-lv02 {
  background: #b7d772;
}

.environmental-index dl dd i.idx-lv03 {
  background: #ffd96f;
}

.environmental-index dl dd i.idx-lv04 {
  background: #f79443;
}

.footer {
  width: 100%;
  align-items: center;
  background: #000;
}

.footer--family--container {
  display: flex;
  justify-content: flex-end;
  max-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;
  padding: 0 2rem;
}

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

.footer .footer-sitemap h3 {
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  font-size: 40px;
  padding-top: 8rem;
}

.footer .footer-sitemap .footer-sitemap-inner {
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 1440px) {
  .footer .footer-sitemap .footer-sitemap-inner {
    gap: 1rem;
  }
}

.footer .footer-sitemap ul {
  flex: 1;
}

.footer .footer-sitemap ul li:first-child strong {
  display: block;
  color: #ffffff;
  font-size: 1.9rem;
  padding-bottom: 3rem;
}

@media (max-width: 1440px) {
  .footer .footer-sitemap ul li:first-child strong {
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
}

.footer .footer-sitemap ul li + li {
  margin-bottom: 3rem;
}

@media (max-width: 1440px) {
  .footer .footer-sitemap ul li + li {
    margin-bottom: 2rem;
  }
}

.footer .footer-sitemap ul li a {
  position: relative;
  color: #717171;
  font-size: 1.7rem;
  transition: all 0.3s;
}

@media (max-width: 1440px) {
  .footer .footer-sitemap ul li a {
    font-size: 1.4rem;
  }
}

.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;
  max-width: 148rem;
  margin: 0 auto;
  padding: 4rem 2rem 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;
  }
}

.footer--addr {
  display: flex;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 1440px) {
  .footer--addr {
    flex-direction: column;
  }
}

.footer--addr dl {
  display: flex;
  color: #717171;
}

.footer--addr dl dt, .footer--addr dl dd {
  font-size: 1em;
}

.footer--addr dl dt {
  font-weight: bold;
  margin-right: 0.5rem;
}

@media (max-width: 1440px) {
  .footer--addr dl {
    color: #c6c6c6;
    line-height: 1.34;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .footer--addr dl {
    font-size: 11px;
  }
}

.footer--addr span {
  display: inline-block;
  margin: 0 0.5rem;
  color: #C6C6C6;
  font-size: 1.5rem;
}

@media (max-width: 1440px) {
  .footer--addr span {
    display: none !important;
  }
}

.footer--copy {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .footer--copy {
    font-size: 1.2rem;
  }
}

.login-wrap {
  min-width: 1920px;
  width: 100%;
  height: 100vh;
  background-image: url("../images/intro/intro-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#modal-login {
  box-shadow: none;
}

#modal-login .modal--content {
  position: relative;
  border: none;
  background: transparent;
}

#modal-login .modal--content .modal--close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  width: 2.1rem;
  height: 2.1rem;
  background-image: url("../images/login/btn-close21x21.png");
}

#modal-login-use {
  box-shadow: none;
}

#modal-login-use .modal--content {
  position: relative;
  border: none;
  background: transparent;
}

#modal-login-use .modal--content .modal--close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  width: 2.1rem;
  height: 2.1rem;
  background-image: url("../images/login/btn-close21x21.png");
}

#modal-login-use .modal--content .login--panel {
  background-image: url("../images/modal/manual-bg.png");
  background-repeat: no-repeat;
  background-position: -45px -130px;
}

#modal-login-use .modal--content .login--panel--head h3 {
  font-size: 3.2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  color: #3d2d27;
  font-weight: normal;
  border-bottom: 1px solid #774f3f;
}

#modal-login-use .modal--content .login--panel .form-btn.mb0 {
  margin-bottom: 0;
}

.login--panel {
  background: #fff;
  width: 51.4rem;
  border-radius: 4rem;
}

.login--panel--bi {
  text-align: center;
  margin-bottom: 3rem;
}

.login--panel {
  padding: 4rem 3.2rem;
  border: 1px solid #d6cac5;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.login--panel--head {
  text-align: center;
}

.login--panel--head--top {
  margin-bottom: 1.8rem;
}

.login--panel--head--bottom {
  align-items: center;
  border-bottom: 1px solid #774f3f;
  padding-bottom: 3.2rem;
}

.login--panel--head--bottom p {
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #000000;
}

.login--panel--body {
  margin-top: 3.5rem;
}

.login--panel--body label {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.login--panel--body .form-control {
  margin-bottom: 2.4rem;
  height: 5.6rem;
  border-radius: 0.8rem;
}

.login--panel .form-btn {
  height: 6.4rem;
  display: block;
  width: 100%;
  background: #774f3f;
  font-size: 2.1rem;
  color: #fff;
  border-radius: 0.8rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.login--panel .foot-util button {
  display: inline-block;
  color: #723838;
}

.login--panel .foot-util button + button {
  color: #757575;
  border-bottom: 1px solid #757575;
}

.login-wrap {
  overflow: hidden;
  position: relative;
}

.login-wrap .bi {
  z-index: 4;
  position: absolute;
  top: 2rem;
  left: 4rem;
}

.login-wrap .house {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-wrap .house .position-btn {
  cursor: pointer;
  position: absolute;
  bottom: 280px;
  left: 731px;
  width: 379px;
  height: 105px;
  background-image: url("../images/intro/position.png");
  transition: all 0.3s;
}

.login-wrap .house .position-btn:hover {
  background-image: url("../images/intro/position-in.png");
}

.login-wrap .house .left-door {
  position: absolute;
  bottom: 160px;
  left: 819px;
}

.login-wrap .house .right-door {
  position: absolute;
  bottom: 160px;
  right: 819px;
}

.login-wrap .folding-screen {
  z-index: 0;
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translate(-50%, -20%);
}

.login-wrap .tree {
  z-index: 4;
  position: absolute;
  left: 6rem;
  bottom: 7rem;
}

.login-wrap .scholar {
  z-index: 4;
  right: 13rem;
  bottom: 7rem;
  position: absolute;
}

.login-wrap.on .left-door {
  animation: Leftdoor 0.3s linear alternate;
}

.login-wrap.on .right-door {
  animation: Rightdoor 0.3s linear alternate;
}

#modal-login {
  position: absolute;
  top: calc(100% - 650px);
  left: calc(50% - 257px);
}

#modal-login.active {
  animation: scale-up-center 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes scale-up-center {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scholar01 {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

@keyframes scholar02 {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

@keyframes scholar02 {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

@keyframes Leftdoor {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-73px);
  }
}

@keyframes Rightdoor {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(73px);
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

.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-carbon-scope {
  width: 2.5rem;
  height: 2.5rem;
}

.ico-carbon-scope01-01 {
  background-image: url("../images/ico/ico-carbon-scope01-01.svg");
  background-size: 2.3rem;
}

.ico-carbon-scope01-02 {
  background-image: url("../images/ico/ico-carbon-scope01-02.svg");
  background-size: 2.3rem;
}

.ico-carbon-scope01-03 {
  background-image: url("../images/ico/ico-carbon-scope01-03.svg");
  background-size: 2.2rem;
}

.ico-carbon-scope01-04 {
  background-image: url("../images/ico/ico-carbon-scope01-04.svg");
  background-size: 2.2rem;
}

.ico-carbon-scope01-05 {
  background-image: url("../images/ico/ico-carbon-scope01-05.svg");
  background-size: 2.2rem;
}

.ico-carbon-scope02-01 {
  background-image: url("../images/ico/ico-carbon-scope02-01.svg");
  background-size: 2.3rem;
}

.ico-carbon-scope02-02 {
  background-image: url("../images/ico/ico-carbon-scope02-02.svg");
  background-size: 2.2rem;
}

.active .ico-carbon-scope01-01 {
  background-image: url("../images/ico/ico-carbon-scope01-01-on.svg");
}

.active .ico-carbon-scope01-02 {
  background-image: url("../images/ico/ico-carbon-scope01-02-on.svg");
}

.active .ico-carbon-scope01-03 {
  background-image: url("../images/ico/ico-carbon-scope01-03-on.svg");
}

.active .ico-carbon-scope01-04 {
  background-image: url("../images/ico/ico-carbon-scope01-04-on.svg");
}

.active .ico-carbon-scope01-05 {
  background-image: url("../images/ico/ico-carbon-scope01-05-on.svg");
}

.active .ico-carbon-scope02-01 {
  background-image: url("../images/ico/ico-carbon-scope02-01-on.svg");
}

.active .ico-carbon-scope02-02 {
  background-image: url("../images/ico/ico-carbon-scope02-02-on.svg");
}

.ico-back {
  width: 3.2rem;
  height: 3.2rem;
  background-image: url("../images/ico/ico-back.svg");
  background-size: contain;
}

.ico-infor-line {
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("../images/ico/ico-infor-line.png");
}

.ico-quick {
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("../images/ico/ico-quick.png");
  vertical-align: text-top;
  margin-left: 1rem;
}

.ico-quick-gray {
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("../images/ico/ico-quick-gray.png");
  vertical-align: text-bottom;
  margin-left: 0.5rem;
}

.ico-scope01 {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico_scope1.svg");
}

.ico-scope02 {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico_scope2.svg");
}

.ico-scope03 {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico_scope3.svg");
}

.ico-file-item {
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../images/ico/ico-file-up.svg");
  background-size: contain;
}

.ico-file-del {
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../images/ico/ico-file-del.svg");
}

.ico-file-modify {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico-file-modify.svg");
}

.ico-down {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico-down.svg");
  margin-top: -3px;
}

.ico-down-disable {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../images/ico/ico-down-disable.svg");
  margin-top: -3px;
}

.item_q {
  font-weight: bold;
  display: inline-block;
  font-size: 2rem;
}

.ico-arrow-up {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/main/ico-vi-arrow.svg");
  margin-top: -3px;
}

.ico-notice {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/main/ico-notice.svg");
  margin-top: -3px;
}

.ico-sucess {
  width: 2.6rem;
  height: 2.7rem;
  background-image: url("../images/main/ico-drm-succes.svg");
}

.ico-danger {
  width: 2.6rem;
  height: 2.7rem;
  background-image: url("../images/main/ico-drm-danger.svg");
}

.ico-report {
  width: 1.7rem;
  height: 1.7rem;
  background-image: url("../images/ico/ico-report.svg");
}

.ico-pdf {
  width: 1.7rem;
  height: 1.6rem;
  background-image: url("../images/ico/ico-pdf-17@16.png");
}

.ico-link-arrow {
  width: 1.7rem;
  height: 1.7rem;
  background-image: url("../images/sub/link-arrow.png");
}

.ico-arrow-up {
  width: 1rem;
  height: 1.1rem;
  background-image: url("../images/ico/ico-arrow-up.png");
}

.ico-arrow-down {
  width: 1rem;
  height: 1.1rem;
  background-image: url("../images/ico/ico-arrow-down.png");
}

.ico-news {
  background-image: url("../images/ico/ico-breaking.png");
  width: 2rem;
  height: 1.6rem;
}

.ico-news-info {
  background-image: url("../images/ico/ico-infonews.png");
  width: 1.7rem;
  height: 1.6rem;
}

.ico-add-more {
  background-image: url("../images/ico/add-12@12.png");
  width: 1.2rem;
  height: 1.2rem;
}

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

.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.4rem;
  border: 1px solid #555555;
  height: 3.2rem;
  padding: 0 1rem;
  background: #fff;
  color: #555555;
}

@media (max-width: 768px) {
  .form-control {
    font-size: 1.2rem;
  }
}

.form-control::-moz-placeholder {
  font-size: 1.2rem;
}

.form-control::placeholder {
  font-size: 1.2rem;
}

.form-control.md {
  height: 4rem;
}

.form-control.lg {
  height: 4.8rem;
}

@media (max-width: 768px) {
  .form-control.lg {
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    padding: 0 0.5rem;
    border-radius: 0.3rem;
    font-size: 1.2rem;
  }

  .form-control.lg.round {
    border-radius: 2rem;
  }
}

.form-control.block {
  display: block;
  width: 100%;
}

.form-control.search {
  border: 2px solid #774f3f;
  width: 61rem;
  border-radius: 2.8rem;
  height: 5.5rem;
}

.form-control.search input {
  background: transparent;
}

.form-control.search .serch-btn {
  position: absolute;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  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.svg") no-repeat right 10px center !important;
  background-size: 1.2rem auto !important;
}

select.form-control {
  min-width: 11rem;
  padding-right: 2.5rem;
}

.form-type {
  margin-bottom: 2rem;
}

.form-type dt {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
  .form-type dt {
    font-size: 1.3rem;
  }
}

.form-type dt span {
  display: inline-block;
  width: 0.8rem;
  height: 1.2rem;
  vertical-align: middle;
}

.form-type dd {
  color: #1d1d1d;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .form-type dd {
    font-size: 1.1rem;
  }
}

.form-radio {
  display: inline-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: #555555;
  border-color: #555555;
  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;
}

.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;
}

.dotted-box.h110 {
  height: 11rem;
}

/*
    table
*/
.table.cursor tr {
  cursor: pointer;
}

.table.cursor tr:hover td {
  background: #d6cac5;
  transition: all 0.3s;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #c6c6c6;
}

.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;
}

@media (max-width: 768px) {
  .btn.sm {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
}

.btn.md {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  padding: 0 2rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
}

.btn.md.round {
  border-radius: 2rem;
}

@media (max-width: 768px) {
  .btn.md {
    display: inline-block;
    height: 3.2rem;
    line-height: 3.2rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    font-size: 1.1rem;
  }

  .btn.md.round {
    border-radius: 1.6rem;
  }
}

.btn.lg {
  display: inline-block;
  height: 4.8rem;
  line-height: 4.8rem;
  padding: 0 2.4rem;
  border-radius: 0.4rem;
  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.4rem;
  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-darkgray.active {
  color: #4eab56;
  border-color: #4eab56;
}

.btn.border-primary {
  border: 1px solid #164194;
  color: #164194;
}

.btn.border-green {
  border: 1px solid #029c58;
  background: transparent;
  color: #029c58;
}

.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(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(14, 42, 95) 0%, rgb(29, 29, 29) 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;
}

.btn-pdf {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 3rem;
  padding: 0 1.4rem;
  border: 1px solid #2b316a;
  color: #2b316a;
  border-radius: 1.6rem;
  background: #fff;
}

@media (max-width: 768px) {
  .btn-pdf {
    font-size: 1.2rem;
  }
}

.btn-tab-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.btn-tab-wrap button {
  border: 1px solid #d8d8d8;
  background: #e4e4e4;
  color: #555555;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  border-radius: 0.2rem;
}

.btn-tab-wrap button.active {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.btn-tab-wrap02 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btn-tab-wrap02 {
    gap: 0.4rem;
  }
}

.btn-tab-wrap02 button {
  border: 1px solid #555555;
  background: #fff;
  color: #555555;
  padding: 0.6rem 1.6rem;
  font-size: 1.5rem;
  border-radius: 0.4rem;
}

@media (max-width: 768px) {
  .btn-tab-wrap02 button {
    padding: 0.3rem 0.8rem;
    font-size: 1.2rem;
    border-radius: 0.2rem;
  }
}

.btn-tab-wrap02 button.active {
  border: 1px solid #029c58;
  background: #fff;
  color: #029c58;
}

.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.5rem;
  gap: 0.8rem;
}

@media (max-width: 1170px) {
  .tabs {
    overflow-x: auto;
    width: 100%;
  }

  .tabs .tab-item {
    flex-shrink: 0;
    min-width: 25%;
    white-space: nowrap;
  }

  .tabs .tab-item button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .tabs .tab-item {
    min-width: 50%;
  }
}

.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: #a2b3d4;
}

.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;
}

@media (max-width: 768px) {
  .tabs .tab-item button {
    font-size: 1.5rem;
    padding: 1rem 0.4rem;
  }
}

.tabs .tab-item button .small {
  margin-left: 0.6rem;
  font-size: 1.5rem;
}

.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;
}

@media (max-width: 768px) {
  .pagination .adri {
    height: 3rem;
  }
}

.pagination a,
.pagination strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  height: 4rem;
  width: 4rem;
}

@media (max-width: 768px) {
  .pagination a,
  .pagination strong {
    height: 3rem;
    width: 3rem;
  }
}

.pagination .paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  margin: 0 3rem;
}

@media (max-width: 1024px) {
  .pagination .paging {
    margin: 0 1.5rem;
  }
}

.pagination .paging a,
.pagination .paging strong {
  border-radius: 0.5rem;
  font-size: 1.7rem;
}

@media (max-width: 1024px) {
  .pagination .paging a,
  .pagination .paging strong {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pagination .paging a,
  .pagination .paging strong {
    font-size: 1.2rem;
  }
}

.pagination .paging a:hover, .pagination .paging a:focus,
.pagination .paging strong:hover,
.pagination .paging strong:focus {
  background-color: #f8f8f8;
  color: #717171;
}

.pagination .paging strong {
  color: #fff;
  background-color: #0a529d;
  font-weight: 700;
}

.pagination .fir,
.pagination .prev,
.pagination .next,
.pagination .last {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .pagination .fir,
  .pagination .prev,
  .pagination .next,
  .pagination .last {
    width: 4rem;
  }
}

.pagination .fir span,
.pagination .prev span,
.pagination .next span,
.pagination .last span {
  white-space: nowrap;
  color: #555555;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .pagination .fir span,
  .pagination .prev span,
  .pagination .next span,
  .pagination .last span {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .pagination .fir span,
  .pagination .prev span,
  .pagination .next span,
  .pagination .last span {
    font-size: 1.1rem;
  }
}

.pagination .fir i,
.pagination .prev i,
.pagination .next i,
.pagination .last i {
  display: block;
  line-height: 1;
}

.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: #007ab4;
}

.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: #007ab4;
}

.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: 100;
  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: 0.6rem;
}

.modal--close {
  width: 2rem;
  height: 2rem;
  background-image: url("../images/modal/white-close.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}

@media (max-width: 768px) {
  .modal--close {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
  }
}

.modal--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  background: #000;
  padding: 0 3rem;
  border-radius: 0.6rem 0.6rem 0 0;
}

@media (max-width: 768px) {
  .modal--head {
    height: 4rem;
    padding: 0 1.5rem;
  }
}

.modal--head--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal--head--inner h3 {
  font-size: 2.1rem;
  font-weight: normal;
  color: #fff;
}

@media (max-width: 768px) {
  .modal--head--inner h3 {
    font-size: 1.7rem;
  }
}

.modal--head--util {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}

.modal--content {
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 3rem;
}

.modal--content--inner {
  max-height: 50rem;
}

@media (max-width: 768px) {
  .modal--content--inner {
    max-height: calc(100vh - 4rem - 3rem);
  }
}

@media (max-width: 768px) {
  .modal--content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modal.full .modal--content {
    height: calc(100vh - 4rem) !important;
  }
}

#modal-score .modal--inner {
  width: 100%;
  max-width: 995px;
  max-height: 820px;
}

#modal-score .modal-score-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.4rem;
  margin-bottom: 4rem;
  background: #d5d6e1;
  border-radius: 0.6rem;
  text-align: center;
}

@media (max-width: 768px) {
  #modal-score .modal-score-info {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 2rem;
  }
}

#modal-score .modal-score-info p {
  font-size: 1.1rem;
}

#modal-score .modal-score-flex {
  display: flex;
}

.modal--box--con {
  border: 1px solid #d8d8d8;
  padding: 2rem;
  border-radius: 0.6rem;
}

@media (max-width: 768px) {
  .modal--box--con {
    padding: 1rem;
  }
}

.modal--box--con dt {
  font-size: 1.9rem;
  margin-bottom: 1.7rem;
}

@media (max-width: 768px) {
  .modal--box--con dt {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
}

.modal--box--con dd {
  background: #f8f8f8;
  font-size: 1.2rem;
}

#modal-weather-report .modal--inner {
  width: 100%;
  max-width: 995px;
}

#modal-weather-report .modal--content {
  position: relative;
  height: 60rem;
}

#modal-weather-report .modal--content.p0 {
  padding: 0;
}

#modal-weather-report .modal--content .btn-tab-wrap02 {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

#modal-weather-report .modal--content .modal-report-flex {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  margin: 2rem;
  width: calc(100% - 4rem);
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex {
    gap: 1rem;
    flex-direction: column;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-item {
  flex: 1;
  border: 1px solid #c6c6c6;
  border-radius: 0.6rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-item {
    padding: 1rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex h3 {
  color: #1d1d1d;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex {
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl {
  flex: 1;
  padding: 1.5rem;
  border-radius: 0.4rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl {
    padding: 0.75rem;
    border-radius: 0.2rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl dt {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl dt {
    font-size: 1.1rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl dd {
  font-size: 1.5rem;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex dl dd {
    font-size: 1.2rem;
  }
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex.caution dl {
  background: rgba(246, 165, 35, 0.08);
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex.caution dl dt {
  color: #e59a21;
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex.warning dl {
  background: rgba(210, 44, 44, 0.08);
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-time-flex.warning dl dt {
  color: #d22c2c;
}

#modal-weather-report .modal--content .modal-report-flex .modal-report-city {
  color: #717171;
}

@media (max-width: 768px) {
  #modal-weather-report .modal--content .modal-report-flex .modal-report-city {
    font-size: 1.1rem;
  }
}

#modal-Announce-Info .modal--inner {
  width: 100%;
  max-width: 995px;
}

#modal-Announce-Info .modal--content {
  position: relative;
  height: 60rem;
}

#modal-Announce-Info .modal--content.p0 {
  padding: 0;
}

#modal-Announce-Info .modal--content .btn-tab-wrap02 {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

#modal-Announce-Info .modal--content .criteria-box {
  position: absolute;
  right: 3.5rem;
  bottom: 3.5rem;
  border: 1px solid #555555;
  border-radius: 0.4rem;
}

#modal-Announce-Info .modal--content .criteria-box .criteria-box-basics {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box .criteria-box-basics {
    font-size: 1.2rem;
  }
}

#modal-Announce-Info .modal--content .criteria-box .criteria-box-basics .criteria-box-btn {
  width: 1.5rem;
  height: 1.4rem;
  background-image: url("../images/modal/modal-weather-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

#modal-Announce-Info .modal--content .criteria-box .criteria-box-active {
  display: none;
}

#modal-Announce-Info .modal--content .criteria-box.active {
  padding: 2rem 1.5rem;
  border-radius: 0.6rem;
  border: 1px solid #c6c6c6;
  min-width: 46rem;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box.active {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    margin: 2rem;
    min-width: auto;
    width: calc(100% - 4rem);
  }
}

#modal-Announce-Info .modal--content .criteria-box.active .criteria-box-active {
  display: block;
}

#modal-Announce-Info .modal--content .criteria-box.active .criteria-box-basics {
  padding: 0;
}

#modal-Announce-Info .modal--content .criteria-box.active .criteria-box-basics .criteria-box-btn {
  position: absolute;
  right: 1.5rem;
  top: 2.3rem;
  transform: rotate(0deg);
}

#modal-Announce-Info .modal--content .criteria-box.active .criteria-box-basics span {
  display: none;
}

#modal-Announce-Info .modal--content .criteria-box h3 {
  font-size: 1.9rem;
  color: #1d1d1d;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box h3 {
    font-size: 1.5rem;
  }
}

#modal-Announce-Info .modal--content .criteria-box dl dt {
  font-size: 1.5rem;
  color: #1d1d1d;
  margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box dl dt {
    font-size: 1.2rem;
    margin-bottom: 0.3 0.5rem;
  }
}

#modal-Announce-Info .modal--content .criteria-box dl dd table th span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2rem;
  margin-left: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
}

#modal-Announce-Info .modal--content .criteria-box dl dd table th, #modal-Announce-Info .modal--content .criteria-box dl dd table td {
  padding: 1rem;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box dl dd table th, #modal-Announce-Info .modal--content .criteria-box dl dd table td {
    font-size: 1.1rem;
  }
}

#modal-Announce-Info .modal--content .criteria-box dl + dl {
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  #modal-Announce-Info .modal--content .criteria-box dl + dl {
    margin-top: 0.6rem;
  }
}

#modal-energy-report .modal--inner {
  width: 100%;
  max-width: 995px;
}

#modal-energy-report .modal--content {
  position: relative;
  max-height: 60rem;
  overflow-y: auto;
}

#modal-carbon-plan .modal--inner {
  width: 100%;
  max-width: 995px;
}

#modal-carbon-plan .modal--content {
  position: relative;
  max-height: 60rem;
  overflow-y: auto;
}

.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;
}

.panel--wrap {
  position: absolute;
  top: 0;
  height: calc(100% - 1.2rem - 1.2rem);
  margin: 1.2rem 0;
  left: 1.2rem;
  width: 37rem;
  transition: all 0.3s;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #d6cac5;
}

.panel--wrap.active {
  left: 0;
}

.panel {
  height: 100%;
}

.panel--head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.8rem;
  background: rgb(122, 82, 67);
  background: linear-gradient(90deg, rgb(122, 82, 67) 0%, rgb(166, 133, 115) 100%);
  color: #fff;
  border-radius: 1.2rem 1.2rem 0 0;
}

.panel--head h3 {
  font-size: 1.7rem;
  font-weight: normal;
}

.panel--content {
  padding: 1.6rem;
  height: calc(100% - 6.8rem);
}

.panel--cont {
  margin-bottom: 2.2rem;
}

.panel--maparea {
  position: relative;
  height: 20.6rem;
  border: 1px solid #d6cac5;
  border-radius: 0.6rem;
}

.panel--maparea .map-option-toggle {
  right: 13px;
  top: 13px;
}

.panel--maparea .map-tool {
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.panel .map-area-ti button {
  position: relative;
  font-size: 1.3rem;
  border-bottom: 1px solid #723838;
  margin-right: 2rem;
  color: #723838;
}

.panel .map-area-ti button:after {
  position: absolute;
  right: -20px;
  top: 0;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url("../images/ico/ico-map.png") no-repeat;
}

.cont-ti {
  margin-bottom: 1rem;
}

.map-option-toggle {
  position: absolute;
  display: flex;
  border: 1px solid #d8d8d8;
  border-radius: 0.6rem;
  background: #Fff;
  padding: 0.3rem;
  display: flex;
}

.map-option-toggle button {
  padding: 0.7rem 0.8rem;
  font-size: 1.3rem;
  border-radius: 0.6rem;
  color: #555555;
}

.map-option-toggle button.active {
  background: #774f3f;
  color: #fff;
}

.map-tool {
  position: absolute;
}

.map-tool button {
  display: block;
  width: 3rem;
  height: 3rem;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
}

.map-tool button + button {
  border-top: none;
}

.map-tool button:first-child {
  border-radius: 0.6rem 0.6rem 0 0;
}

.map-tool button:last-child {
  border-radius: 0 0 0.6rem 0.6rem;
}

.map-tool button.tool--zoomin {
  background-image: url("../images/ico/ico-zoomin.png");
}

.map-tool button.tool--zoomout {
  background-image: url("../images/ico/ico-zoomout.png");
}

.accordion--item {
  margin-bottom: 2rem;
  border: 1px solid #c6c6c6;
  border-radius: 1.2rem;
}

@media (max-width: 768px) {
  .accordion--item {
    margin-bottom: 1rem;
  }
}

.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;
}

@media (max-width: 768px) {
  .accordion--button {
    padding: 1rem;
  }
}

.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%;
}

@media (max-width: 768px) {
  .accordion--ti--arrow {
    width: 2rem;
    height: 2rem;
    background-size: 12px;
  }
}

.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;
  background-color: #fff;
  overflow: hidden;
  border-top: 1px solid #c6c6c6;
  border-radius: 0 0 1.2rem 1.2rem;
}

.accordion--content--body {
  padding: 2rem;
}

@media (max-width: 768px) {
  .accordion--content--body {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
}

.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.5rem;
  padding: 1.1rem 0.5rem;
  vertical-align: middle;
  color: #717171;
}

@media (max-width: 768px) {
  .board--wrap--body .board-thead > div {
    font-size: 1.1rem;
  }
}

.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 > div {
  display: table-cell;
  font-size: 1.5rem;
  color: #1d1d1d;
  padding: 1.1rem 0.5rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .board--wrap--body .board-tbody .board-tbody-item > div {
    font-size: 1.1rem;
  }
}

.board--wrap--body .board-tbody .board-tbody-item:hover {
  background: rgb(43, 63, 106);
  background: linear-gradient(90deg, rgb(43, 63, 106) 0%, rgb(19, 143, 93) 100%);
}

.board--wrap--body .board-tbody .board-tbody-item:hover > div {
  color: #fff;
}

.board--wrap--body .board-tbody .board-tbody-item:hover > div .ranking-bg:before {
  background-image: url("../images/sub/rangking-left-on-9@17.png");
}

.board--wrap--body .board-tbody .board-tbody-item:hover > div .ranking-bg:after {
  background-image: url("../images/sub/rangking-right-on-9@17.png");
}

.board-score-scroll {
  max-height: 400px;
}

.board-score-scroll .board-thead > div,
.board-score-scroll .board-tbody-item > div {
  text-align: center;
  width: 13%;
}

.board-score-scroll .board-thead > div + div,
.board-score-scroll .board-tbody-item > div + div {
  width: 14%;
}

.board-score-scroll .board-thead > div + div + div,
.board-score-scroll .board-tbody-item > div + div + div {
  width: 10%;
}

.board-score-scroll .board-thead > div + div + div + div,
.board-score-scroll .board-tbody-item > div + div + div + div {
  width: 15%;
}

.board-score-scroll .board-thead > div + div + div + div + div,
.board-score-scroll .board-tbody-item > div + div + div + div + div {
  width: 23%;
}

.board-score-scroll .board-thead > div + div + div + div + div + div,
.board-score-scroll .board-tbody-item > div + div + div + div + div + div {
  width: auto;
}

.board--wtite--head {
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
}

.board--wtite--head h3 {
  margin-bottom: 1rem;
}

.board--wtite--head p {
  margin-bottom: 1.8rem;
}

.board--wtite--body {
  border-bottom: 1px solid #e4e4e4;
}

.board--wtite--body .txt-write {
  height: 150px;
  padding: 1rem;
}

.board--wtite--body .txt-write textarea {
  width: 100%;
  height: 85%;
  border: none;
  outline: none;
  overflow-y: auto;
  resize: none;
}

@media (max-width: 768px) {
  .board--wtite--body .txt-write textarea {
    font-size: 1.2rem;
  }
}

.board--wtite--body .txt-write .byte-inner {
  text-align: right;
}

.board--wtite--body .info-box {
  background: #ecf0f6;
  border-radius: 0.8rem;
  padding: 2rem;
  color: #717171;
  font-size: 1.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .board--wtite--body .info-box {
    font-size: 1.2rem;
  }
}

.board--wtite--foot {
  text-align: right;
  padding-top: 3.2rem;
}

@media (max-width: 768px) {
  .board--wtite--foot {
    padding-top: 1.6rem;
  }
}

.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;
  border-collapse: collapse;
}

.board-list-text thead th {
  color: #000000;
  font-size: 15px;
  height: 60px;
  background: #fafafa;
}

@media (max-width: 768px) {
  .board-list-text thead th {
    font-size: 11px;
    height: 40px;
  }
}

.board-list-text th, .board-list-text td {
  border-bottom: 1px solid #e1e1e1;
  box-sizing: border-box;
  padding: 10px;
  color: #666666;
}

@media (max-width: 768px) {
  .board-list-text th, .board-list-text td {
    padding: 5px;
  }
}

.board-list-text tbody th, .board-list-text tbody td {
  height: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .board-list-text tbody th, .board-list-text tbody td {
    font-size: 11px;
    height: 40px;
  }
}

.board-list-text a {
  color: #091634;
}

.board-list-text .item_list-title {
  padding-left: 70px;
  text-align: left;
}

@media (max-width: 768px) {
  .board-list-text .item_list-title {
    padding-left: 20px;
  }
}

.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;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_header {
    padding: 10px;
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
  }
}

.board-viwer .board-viwer_header > h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: #000000;
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_header > h3 {
    font-size: 18px;
    white-space: inherit;
  }
}

.board-viwer .board-viwer_header .title {
  flex: 0 0 50px;
  color: #2149a6;
  font-size: 18px;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_header .title {
    flex: auto;
    font-size: 14px;
  }
}

.board-viwer .board-viwer_header .data {
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 270px;
  color: #666666;
  position: relative;
  text-align: center;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_header .data {
    flex: 1;
    font-size: 11px;
  }
}

.board-viwer .board-viwer_header .data::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #e1e1e1;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_header .data::after {
    display: none;
  }
}

.board-viwer .board-viwer_attach {
  padding: 15px 15px 15px 34px;
  background: #fafafa;
}

.board-viwer .board-viwer_text {
  padding: 20px 35px;
  min-height: 30rem;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer_text {
    padding: 10px 17.5px;
    min-height: 15rem;
  }
}

.board-viwer .board-viwer-coment .board-viwer-coment-headr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #333333;
  padding: 20px 0 20px 35px;
  border-bottom: 1px dashed #e1e1e1;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer-coment .board-viwer-coment-headr {
    padding: 10px;
    align-items: baseline;
    gap: 5px;
  }
}

.board-viwer .board-viwer-coment .board-viwer-coment-headr h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer-coment .board-viwer-coment-headr h3 {
    font-size: 18px;
    white-space: inherit;
  }
}

.board-viwer .board-viwer-coment .board-viwer-coment-headr .data {
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 270px;
  color: #666666;
  position: relative;
  text-align: center;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer-coment .board-viwer-coment-headr .data {
    flex: 0 0 70px;
    font-size: 11px;
  }
}

.board-viwer .board-viwer-coment .board-viwer-coment-headr .data::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #e1e1e1;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}

@media (max-width: 768px) {
  .board-viwer .board-viwer-coment .board-viwer-coment-headr .data::after {
    display: none;
  }
}

.board-viwer .board-viwer-coment p {
  padding: 20px 35px;
  min-height: 30rem;
}

@media (max-width: 768px) {
  .board-viwer .board-viwer-coment p {
    padding: 10px 17.5px;
    min-height: 15rem;
  }
}

.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;
}

@media (max-width: 768px) {
  .board-nav a {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

.board-nav a b {
  position: relative;
  font-weight: 500;
  flex: 0 0 140px;
  width: 140px;
  text-align: center;
}

@media (max-width: 768px) {
  .board-nav a b {
    flex: 0 0 80px;
    width: 80px;
    font-size: 11px;
  }
}

.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);
}

@media (max-width: 768px) {
  .board-nav a b::before {
    width: 5px;
    height: 5px;
    top: 0;
  }
}

.board-nav a strong {
  font-weight: 500;
  width: 100%;
  flex: 1;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .board-nav a strong {
    font-size: 12px;
    padding: 0 10px;
  }
}

.board-nav a span {
  flex: 0 0 270px;
  color: #666666;
  position: relative;
  text-align: center;
}

@media (max-width: 768px) {
  .board-nav a span {
    flex: 0 0 100px;
    font-size: 11px;
  }
}

.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;
}

.board-btn {
  text-align: right;
}

.error-body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-body .lay-logo {
  display: block;
  width: 23.7rem;
  height: 4rem;
  background: url("../images/common/bi.png") no-repeat;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .error-body .lay-logo {
    width: 17rem;
    height: 3rem;
    background-size: contain;
    margin-bottom: 1rem;
  }
}

.error-body .error-container {
  width: 1280px;
}

@media (max-width: 1170px) {
  .error-body .error-container {
    margin: 0 2rem;
  }
}

.error-body .error-cont {
  text-align: center;
  padding: 100px 0;
  border-radius: 0 0 100px 0;
  border: 16px solid #edf1f4;
}

@media (max-width: 768px) {
  .error-body .error-cont {
    padding: 50px 10px;
  }
}

.error-body .error-cont > h2 {
  margin: 0;
  padding: 0px;
  color: #222222;
  font-size: 30px;
}

@media (max-width: 768px) {
  .error-body .error-cont > h2 {
    font-size: 16px;
  }
}

.error-body .error-cont .error-icons {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .error-body .error-cont .error-icons {
    margin-bottom: 15px;
  }
}

.error-body .error-cont .error-icons i {
  background: url("../images/common/error_404.png") no-repeat;
  width: 114px;
  height: 91px;
  display: inline-block;
  background-size: cover;
}

@media (max-width: 768px) {
  .error-body .error-cont .error-icons i {
    width: 80px;
    height: 60px;
  }
}

.error-body .error-cont .error-infos {
  margin-top: 35px;
  line-height: 1.6em;
  font-size: 16px;
  color: #666666;
}

@media (max-width: 768px) {
  .error-body .error-cont .error-infos {
    margin-top: 17px;
    font-size: 11px;
  }
}

.error-body .error-cont .error-btns {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .error-body .error-cont .error-btns {
    margin-top: 30px;
  }

  .error-body .error-cont .error-btns button {
    font-size: 14px;
  }
}

.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;
}

/*
    툴팁기능
*/
.tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #c6c6c6;
  transform: translateY(5px);
  border-radius: 8px;
  z-index: 10;
}

.tooltip-container {
  position: relative;
}

.tooltip-header {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 40px;
}

.tooltip-header h4 {
  color: #000;
  font-weight: 700;
  font-size: 13px;
}

.tooltip #tooltip-body {
  padding: 15px 20px;
}

.tooltip-content {
  overflow-y: auto;
  color: #717171;
  font-size: 1.3rem;
}

#close-tooltip {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 10px;
  height: 10px;
}

#close-tooltip i {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

#close-tooltip i::before, #close-tooltip i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #000;
  transform-origin: center;
  border-radius: 4px;
}

#close-tooltip i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#close-tooltip i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fp-section {
  overflow: hidden;
}

#fp-nav {
  display: none;
}

#header .gnbBg {
  top: 14rem;
}

html, body {
  scroll-behavior: auto;
  height: 100%;
}

.section {
  height: 100vh;
}

.sc-container {
  margin: 0 auto;
  width: 1450px;
  padding: 0 20px;
}

@media (max-width: 1450px) {
  .sc-container {
    width: 100%;
  }
}

.mobile-block {
  display: none;
}

@media (max-width: 768px) {
  .mobile-block {
    display: block;
  }
}

.section-wrap {
  position: relative;
  background: #000;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-wrap {
    height: auto;
  }
}

.section-1, .section-2, .section-3 {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.section-1 {
  z-index: 1;
}

.section-2,
.section-3 {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.section-3 {
  z-index: 3;
}

.sc1 .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sc1 .text span {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  display: block;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.2);
  transition: all 1.2s ease-out;
}

@media (max-width: 1450px) {
  .sc1 .text span {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .sc1 .text span {
    font-size: 40px;
  }
}

.sc1 .text span em {
  display: block;
  font-size: 60px;
  font-weight: 700;
}

@media (max-width: 1450px) {
  .sc1 .text span em {
    font-size: 40px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .sc1 .text span em {
    font-size: 30px;
  }
}

.sc1 .text span b, .sc1 .text span em {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .sc1 .text span b {
    display: block;
  }
}

.sc1.section-1, .sc1.section-2, .sc1.section-3 {
  width: 100vw;
  height: 100vh;
}

.sc1.section-1 .image, .sc1.section-1 .video, .sc1.section-2 .image, .sc1.section-2 .video, .sc1.section-3 .image, .sc1.section-3 .video {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: auto;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-image: url("../images/main/loading-bg.jpg");
}

.sc1.section-1 .video::before, .sc1.section-2 .video::before, .sc1.section-3 .video::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.sc1.section-1 .image, .sc1.section-2 .image, .sc1.section-3 .image {
  transform: scale(1.2);
  transition: all 0.8s ease-out;
}

.sc1.section-1:not(.first-active).active .image, .sc1.section-2:not(.first-active).active .image, .sc1.section-3:not(.first-active).active .image {
  opacity: 1;
  transform: scale(1);
}

.sc1.section-1:not(.first-active).active .text span, .sc1.section-2:not(.first-active).active .text span, .sc1.section-3:not(.first-active).active .text span {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.sc1.section-1 {
  z-index: 1;
}

.sc1.section-1 .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sc1.section-2 {
  overflow: hidden;
  z-index: 2;
  opacity: 1;
}

.sc1.section-2 .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sc1.section-3 {
  overflow: hidden;
  opacity: 1;
  z-index: 3;
}

.sc1.section-3 .image {
  background-image: url("../images/main/main-visual-03.png");
}

.section-3-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-3-grid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .section-3-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section-3-grid .item {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-3-grid .item > div {
  color: #fff;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
  filter: blur(10px);
}

.section-3-grid .item > div h3 {
  font-size: 60px;
}

.section-3-grid .item > div p {
  font-size: 21px;
  padding-top: 35px;
  line-height: 1.34;
}

@media (max-width: 768px) {
  .section-3-grid .item > div h3 {
    font-size: 30px;
  }

  .section-3-grid .item > div p {
    font-size: 11px;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .section-3-grid .item {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: all 0.5s;
  }

  .section-3-grid .item:has(.text-1) {
    background-image: url(../images/main/sc3-1.png);
  }

  .section-3-grid .item:has(.text-2) {
    background-image: url(../images/main/sc3-2.png);
  }

  .section-3-grid .item:has(.text-3) {
    background-image: url(../images/main/sc3-3.png);
  }

  .section-3-grid .item:has(.text-4) {
    background-image: url(../images/main/sc3-4.png);
  }
}

.section-3.active .section-3-grid .item {
  opacity: 1;
}

.section-3.active .section-3-grid .item:has(.text-1) > div, .section-3.active .section-3-grid .item:has(.text-2) > div, .section-3.active .section-3-grid .item:has(.text-3) > div, .section-3.active .section-3-grid .item:has(.text-4) > div {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-3.active .section-3-grid .item:has(.text-1) > div {
  transition-delay: 0.2s;
}

.section-3.active .section-3-grid .item:has(.text-2) > div {
  transition-delay: 0.4s;
}

.section-3.active .section-3-grid .item:has(.text-3) > div {
  transition-delay: 0.6s;
}

.section-3.active .section-3-grid .item:has(.text-4) > div {
  transition-delay: 0.8s;
}

.sc2 {
  position: relative;
}

.sc2 nav {
  opacity: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  z-index: 1;
  position: relative;
  gap: 10px;
}

.sc2 nav button {
  height: 60px;
  padding: 0 40px;
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.25s;
}

.sc2 nav button[aria-selected=true] {
  background-color: #fff;
}

.sc2 nav button[aria-selected=true] span {
  color: #000;
}

.sc2 nav button span {
  font-weight: 600;
  color: #fff;
  font-size: 25px;
}

.sc2 .switch-panel-track {
  height: 100vh;
  width: 100%;
}

.sc2 .switch-panel {
  height: 100%;
  width: 100%;
  display: flex;
}

.sc2 .picture {
  width: 50%;
  height: 100%;
}

.sc2 .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.sc2 .details .hgroup h3 {
  color: #fff;
  font-size: 60px;
}

@media (max-width: 1440px) {
  .sc2 .details .hgroup h3 {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .sc2 .details .hgroup h3 {
    font-size: 30px;
  }
}

.sc2 .details .hgroup p {
  color: #fff;
  font-size: 32px;
  padding-top: 22px;
}

@media (max-width: 1440px) {
  .sc2 .details .hgroup p {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .sc2 .details .hgroup p {
    font-size: 16px;
  }
}

.sc2 .details .link-container {
  padding-top: 12.5vh;
  display: flex;
  gap: 0 95px;
}

@media (max-width: 1024px) {
  .sc2 .details .link-container {
    padding-top: 4rem;
    flex-direction: column;
    gap: 4rem 0;
  }
}

.sc2 .details .link-container a {
  display: block;
}

.sc2 .details .link-container a strong {
  color: #fff;
  transition: all 0.25s;
  font-weight: 600;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}

.sc2 .details .link-container a strong::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../images/main/sc2-arw.png) no-repeat 50% 50%;
  transition: all 0.15s;
}

@media (max-width: 768px) {
  .sc2 .details .link-container a strong {
    font-size: 14px;
  }

  .sc2 .details .link-container a strong::after {
    width: 12px;
    height: 12px;
    background-size: 100% auto;
  }
}

.sc2 .details .link-container a div {
  color: #717171;
  font-size: 16px;
  padding-top: 20px;
  line-height: 1.34;
  transition: all 0.25s;
}

@media (max-width: 768px) {
  .sc2 .details .link-container a div {
    font-size: 12px;
  }
}

.sc2 .details .link-container a:hover strong, .sc2 .details .link-container a:focus strong {
  color: #81d2e5;
}

.sc2 .details .link-container a:hover strong::after, .sc2 .details .link-container a:focus strong::after {
  background-image: url(../images/main/s2-arw-active.png);
}

.sc2 .details .link-container a:hover div, .sc2 .details .link-container a:focus div {
  text-decoration: underline;
  color: #fff;
}

/*  */
.main-busi {
  position: relative;
}

.busi-motion {
  background-color: #000;
}

.main-inner {
  width: 100%;
  height: 100vh;
  position: relative;
  margin: 0px auto;
}

.busi-motion .busi-con {
  height: 100vh;
  top: 0px;
}

.busi-motion .busi-con .busi-contents-wrap {
  width: 100vw;
}

.busi-contents-wrap .busi-content {
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

@media (min-width: 1025px) {
  .busi-g {
    display: inline-flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 168px;
  }
}

.busi-contents-wrap .busi-content .busi-info {
  position: relative;
}

.busi-contents-wrap .busi-content .busi-thumb {
  background-size: cover;
  width: calc(-16px + 50vw);
  height: 100vh;
  background-position: center center;
}

@media (max-width: 1025px) {
  .main-inner {
    padding: 0px 60px;
  }
}

@media (max-width: 768px) {
  .main-inner {
    padding: 0px 24px;
  }
}

@media (max-width: 1025px) {
  .busi-motion .busi-con {
    height: 100%;
  }
}

@media (max-width: 1025px) {
  .busi-motion .busi-con .busi-contents-wrap {
    width: 100%;
    position: static;
    transform: translateY(0px);
    white-space: normal;
  }
}

.slick-slider .slick-track, .slick-slider .slick-list {
  height: 100%;
}

@media (max-width: 1025px) {
  .busi-motion .busi-con .busi-contents-wrap .slick-list {
    overflow: visible;
  }
}

@media (max-width: 1600px) {
  .busi-contents-wrap .busi-content {
    padding-right: 32px;
    gap: 32px;
  }
}

@media (max-width: 1025px) {
  .busi-contents-wrap .busi-content {
    position: static;
    padding-right: 0px;
    margin: 0px 16px;
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .busi-contents-wrap .busi-content {
    margin: 0px 5px;
  }
}

@media (max-width: 1025px) {
  .busi-contents-wrap .busi-content .busi-info {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0;
  }
}

@media (max-width: 1025px) {
  .busi-contents-wrap .busi-content .busi-thumb {
    margin-top: 40px;
    width: 100%;
    min-height: 270px;
    height: calc(-600px + 100vh);
    border-radius: 20px;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .busi-contents-wrap .busi-content .busi-thumb {
    height: 270px;
    display: none;
  }

  .main-inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    transition: background 0.4s;
  }

  .main-inner:has(.busi01.slick-active) {
    background-image: url(../images/main/s2-img-01.png);
  }

  .main-inner:has(.busi02.slick-active) {
    background-image: url(../images/main/s2-img-02.png);
  }

  .main-inner:has(.busi03.slick-active) {
    background-image: url(../images/main/s2-img-03.png);
  }

  .main-inner:has(.busi04.slick-active) {
    background-image: url(../images/main/s2-img-04.png);
  }

  .busi-g {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .busi-info .details {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 3px;
  }

  .sc2 .details .link-container a:hover strong, .sc2 .details .link-container a:focus strong {
    color: #fff !important;
  }

  .sc2 .details .link-container a div {
    color: #fff !important;
  }
}

@media (max-width: 1025px) {
  .busi-contents-wrap .busi-content .busi-info {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0;
  }
}

@media (max-width: 1025px) {
  .busi-motion .busi-con .busi-menu-wrap {
    display: none;
  }
}

@media (max-width: 1025px) {
  .busi-contents-wrap .busi-content.slick-current .busi-info {
    opacity: 1;
    transition: opacity 0.5s 0.3s;
  }
}

.sc2 .slide-dot-wrap {
  padding-top: 20px;
}

.sc2 .slick-dots li button {
  width: 8px;
  height: 8px;
  border: 0;
  background-color: #fff;
  opacity: 0.2;
}

.sc2 .slick-dots li.slick-active button, .sc2 .slick-dots li.slick-stop button {
  width: 8px;
  height: 8px;
  border: 0;
  opacity: 1;
  background-color: #fff;
}

.sc2 .slick-dots li.slick-active button::before, .sc2 .slick-dots li.slick-stop button::before {
  display: none;
}

.sc3 {
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
}

.sc3.active .image {
  transform: scale(1);
}

.sc3.active h2 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.sc3.active h3 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.sc3.active .link-list a {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.sc3 .image {
  width: 100%;
  height: 100%;
  background: url(../images/main/s3-bg.png) no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.2);
  transition: all 0.8s ease-out;
}

.sc3 h2 {
  text-align: center;
  color: #fff;
  font-size: 80px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-out;
  filter: blur(10px);
}

@media (max-width: 1450px) {
  .sc3 h2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .sc3 h2 {
    font-size: 40px;
  }
}

.sc3 h3 {
  opacity: 0;
  transform: translateX(100px);
  text-align: center;
  color: #fff;
  font-size: 60px;
  transition: all 1.2s ease-out;
  filter: blur(10px);
}

@media (max-width: 1450px) {
  .sc3 h3 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sc3 h3 {
    font-size: 30px;
    padding-top: 20px;
  }
}

.sc3 .link-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.5%;
  padding-top: 100px;
}

@media (max-width: 1440px) {
  .sc3 .link-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .sc3 .link-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 35px;
  }
}

.sc3 .link-list a {
  display: block;
  border-radius: 4px;
  background-color: #fff;
  color: #fff;
  position: relative;
  padding: 30px;
  padding-top: 75px;
  height: 210px;
  overflow: hidden;
  transition: all 0.25s;
  will-change: transform, opacity;
  backface-visibility: hidden; /* 부드럽게 */
  opacity: 0;
  transform: translateY(50px);
  filter: blur(10px);
  transition: all 0.6s ease-in;
}

@media (min-width: 1000px) {
  .sc3 .link-list a {
    border-radius: 120px 4px 120px 4px;
  }
}

.sc3 .link-list a:hover, .sc3 .link-list a:focus {
  transition: all 0.3s ease-in !important;
  transition-delay: 0 !important;
}

.sc3 .link-list a:nth-child(1) {
  transition-delay: 0.1s;
}

.sc3 .link-list a:nth-child(2) {
  transition-delay: 0.2s;
}

.sc3 .link-list a:nth-child(3) {
  transition-delay: 0.3s;
}

.sc3 .link-list a:nth-child(4) {
  transition-delay: 0.4s;
}

.sc3 .link-list a:nth-child(5) {
  transition-delay: 0.5s;
}

.sc3 .link-list a:nth-child(1) {
  background-color: #c8553e;
}

.sc3 .link-list a:nth-child(2) {
  background-color: #238443;
}

.sc3 .link-list a:nth-child(3) {
  background-color: #0868ac;
}

.sc3 .link-list a:nth-child(4) {
  background-color: #35645e;
}

.sc3 .link-list a:nth-child(5) {
  background-color: #2a316a;
}

@media (max-width: 768px) {
  .sc3 .link-list a {
    height: auto;
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: 15px;
  }
}

.sc3 .link-list a::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  background: url(../images/main/sc3-arw-active.png) no-repeat 50% 50%;
  transition: all 0.25s;
  width: 17px;
  height: 17px;
}

@media (max-width: 768px) {
  .sc3 .link-list a::after {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-size: cover;
  }
}

.sc3 .link-list a strong {
  display: block;
  font-weight: 600;
  font-size: 25px;
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .sc3 .link-list a strong {
    font-size: 13px;
    padding-bottom: 0;
  }
}

.sc3 .link-list a div {
  color: #fff;
  line-height: 1.34;
  font-size: 17px;
}

@media (max-width: 768px) {
  .sc3 .link-list a div {
    font-size: 11px;
  }

  .sc3 .link-list a div br {
    display: none;
  }
}

.sc3 .link-list a:hover, .sc3 .link-list a:focus {
  transform: translateY(-40px);
}

@media (max-width: 768px) {
  .sc3 .link-list a:hover, .sc3 .link-list a:focus {
    transform: translateY(0px);
  }
}

.sc3 .link-list a:hover:nth-child(1), .sc3 .link-list a:focus:nth-child(1) {
  background-color: #c8553e;
}

.sc3 .link-list a:hover:nth-child(2), .sc3 .link-list a:focus:nth-child(2) {
  background-color: #238443;
}

.sc3 .link-list a:hover:nth-child(3), .sc3 .link-list a:focus:nth-child(3) {
  background-color: #0868ac;
}

.sc3 .link-list a:hover:nth-child(4), .sc3 .link-list a:focus:nth-child(4) {
  background-color: #35645e;
}

.sc3 .link-list a:hover:nth-child(5), .sc3 .link-list a:focus:nth-child(5) {
  background-color: #2a316a;
}

.sc3 .link-list a:hover strong,
.sc3 .link-list a:hover div, .sc3 .link-list a:focus strong,
.sc3 .link-list a:focus div {
  color: #fff;
}

.sc3 .link-list a:hover::after, .sc3 .link-list a:focus::after {
  background: url(../images/main/sc3-arw-active.png) no-repeat 50% 50%;
}

.sc4 {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
  overflow: hidden;
}

.sc4 .sc-container {
  position: relative;
  z-index: 2;
}

.sc4.active .image {
  transform: scale(1);
}

.sc4.active h2 {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.sc4.active .text-group {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.sc4.active .sc4-slide {
  transform: translateY(0);
  filter: blur(0px);
  opacity: 1;
}

.sc4 .image {
  width: 100%;
  height: 100%;
  background: url(../images/main/sc4-bg.png) no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale(1.2);
  transition: all 0.8s ease-out;
}

@media (max-width: 1024px) {
  .sc4 {
    height: auto;
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .sc4 {
    padding: 40px 0;
  }
}

.sc4 h2 {
  color: #fff;
  font-size: 60px;
  opacity: 0;
  transform: translateY(100px);
  filter: blur(10px);
  transition: all 1.2s ease-out;
}

@media (max-width: 1450px) {
  .sc4 h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sc4 h2 {
    font-size: 30px;
  }
}

.sc4 .text-group {
  opacity: 0;
  transform: translateY(-100px);
  filter: blur(10px);
  transition: all 1.2s 0.2s ease-out;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
}

@media (max-width: 1440px) {
  .sc4 .text-group {
    display: block;
  }
}

.sc4 .text-group .text {
  color: #c6c6c6;
  line-height: 1.34;
  font-size: 32px;
}

@media (max-width: 1440px) {
  .sc4 .text-group .text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .sc4 .text-group .text {
    font-size: 12px;
  }
}

.sc4 .text-group .link {
  display: inline-flex;
  align-items: center;
  gap: 0 60px;
}

@media (max-width: 1440px) {
  .sc4 .text-group .link {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .sc4 .text-group .link {
    gap: 0 30px;
    padding-top: 40px;
  }
}

.sc4 .text-group .link a {
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s;
  gap: 0 13px;
}

@media (max-width: 1440px) {
  .sc4 .text-group .link a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sc4 .text-group .link a {
    font-size: 12px;
    gap: 0 6px;
  }
}

.sc4 .text-group .link a::after {
  content: "";
  display: inline-block;
  background: url(../images/main/sc4-arw.png) no-repeat 50% 50%;
  width: 17px;
  height: 17px;
  transition: all 0.25s;
}

@media (max-width: 768px) {
  .sc4 .text-group .link a::after {
    width: 12px;
    height: 12px;
    background-size: cover;
  }
}

.sc4 .text-group .link a:hover, .sc4 .text-group .link a:focus {
  color: #81d2e5;
}

.sc4 .text-group .link a:hover::after, .sc4 .text-group .link a:focus::after {
  background-image: url(../images/main/sc4-arw-active.png);
}

.sc4-slide {
  display: flex;
  gap: 0 2.1%;
  padding-top: 80px;
  opacity: 0;
  transform: translateY(-100px);
  filter: blur(10px);
  transition: all 1.2s 0.4s ease-out;
}

@media (max-width: 1024px) {
  .sc4-slide {
    display: block;
    padding-top: 10px;
    gap: 0;
  }
}

.sc4-slide .title-item {
  width: 31.9%;
}

.sc4-slide .title-item .card > a {
  background-color: #2a316a;
  height: 500px;
}

.sc4-slide .title-item .card > a .detail {
  color: #fff;
}

@media (max-width: 1024px) {
  .sc4-slide .title-item {
    width: 100%;
  }

  .sc4-slide .title-item .card > a {
    height: auto;
    display: flex;
    align-items: center;
    gap: 0 12px;
  }

  .sc4-slide .title-item .card > a .thumb {
    width: 40%;
  }

  .sc4-slide .title-item .card > a strong,
  .sc4-slide .title-item .card > a div {
    text-align: left;
  }

  .sc4-slide .title-item .card > a .detail strong {
    padding-top: 0;
  }
}

.sc4-slide .card > a {
  display: block;
  padding: 20px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .sc4-slide .card > a {
    padding: 10px;
  }
}

.sc4-slide .card > a .thumb {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 52.25%;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .sc4-slide .card > a .thumb {
    padding-bottom: 48.25%;
  }
}

.sc4-slide .card > a .detail {
  text-align: center;
  color: #000;
}

.sc4-slide .card > a .detail strong {
  display: block;
  font-size: 25px;
  padding: 40px 0 20px;
}

@media (max-width: 768px) {
  .sc4-slide .card > a .detail strong {
    font-size: 12px;
    padding: 15px 0 10px;
  }
}

.sc4-slide .card > a .detail div {
  line-height: 1.45;
  font-size: 15px;
}

@media (max-width: 768px) {
  .sc4-slide .card > a .detail div {
    font-size: 11px;
  }
}

.sc4-slide .slide-list {
  width: 66%;
  padding-top: 40px;
  padding-bottom: 60px;
  height: 500px;
  background-color: #222222;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .sc4-slide .slide-list {
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.sc4-slide .slide-list .custom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  gap: 0 16px;
}

@media (max-width: 768px) {
  .sc4-slide .slide-list .custom-controls {
    padding-top: 20px;
  }
}

.sc4-slide .slide-list .custom-controls .custom-pagination {
  display: flex;
  align-items: center;
  width: auto;
  gap: 0 7px;
}

.sc4-slide .slide-list .custom-controls .custom-pagination span {
  margin: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
}

.sc4-slide .slide-list .custom-controls button {
  width: 14px;
  height: 14px;
  background: url(../images/main/pause.png) no-repeat 50% 50%;
  transition: all 0.15s;
}

.sc4-slide .slide-list .custom-controls button.play {
  background-image: url(../images/main/play.png);
}

.sc4-slide .slide-list .swiper {
  overflow: inherit;
}

.sc4-slide .slide-list .swiper-slide {
  width: 330px;
}

@media (max-width: 768px) {
  .sc4-slide .slide-list .swiper-slide {
    width: 55%;
  }
}

.sc4-slide .slide-list .swiper-slide.swiper-slide-active a::after {
  opacity: 0;
  visibility: hidden;
}

.sc4-slide .slide-list .swiper-slide a {
  position: relative;
  height: 387px;
}

@media (max-width: 768px) {
  .sc4-slide .slide-list .swiper-slide a {
    height: auto;
    padding-bottom: 35px;
  }
}

.sc4-slide .slide-list .swiper-slide a::after {
  transition: all 0.1s;
  content: "";
  opacity: 0.5;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc5 {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/main/sc5-bg.png) no-repeat 50% 50%;
  background-size: cover;
}

.sc5.active .hgroup h2 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.sc5.active .hgroup p {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.sc5.active .link-container > div.lg {
  transform: translateY(0px);
  filter: blur(0px);
  opacity: 1;
}

.sc5.active .link-container > div.sm {
  transform: translateY(0px);
  filter: blur(0px);
  opacity: 1;
}

@media (max-width: 1024px) {
  .sc5 {
    height: auto;
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .sc5 {
    padding: 40px 0;
  }
}

.sc5 .hgroup {
  text-align: left;
}

.sc5 .hgroup h2 {
  color: #fff;
  font-size: 60px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
  filter: blur(10px);
}

@media (max-width: 1450px) {
  .sc5 .hgroup h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sc5 .hgroup h2 {
    font-size: 30px;
  }
}

.sc5 .hgroup p {
  transform: translateX(100px);
  transition: all 1s 0.3s ease-out;
  filter: blur(10px);
  color: #c6c6c6;
  line-height: 1.34;
  font-size: 32px;
  padding-top: 10px;
}

@media (max-width: 1450px) {
  .sc5 .hgroup p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .sc5 .hgroup p {
    font-size: 14px;
  }
}

.sc5 .link-container {
  display: flex;
  gap: 0 2.1%;
  padding-top: 80px;
}

@media (max-width: 1024px) {
  .sc5 .link-container {
    flex-direction: column;
    gap: 20px 0;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .sc5 .link-container {
    gap: 10px 0;
  }
}

.sc5 .link-container > div {
  position: relative;
  overflow: hidden;
  padding: 55px 0 0 50px;
  border-radius: 12px;
  height: 500px;
}

@media (max-width: 1024px) {
  .sc5 .link-container > div {
    height: auto;
    padding: 30px 0 0 30px;
  }
}

.sc5 .link-container > div:hover::after, .sc5 .link-container > div:focus::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 12px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #80a1be;
}

.sc5 .link-container > div:hover i, .sc5 .link-container > div:focus i {
  background-color: #fff;
  background-image: url(../images/main/sc5-arw-active.png);
}

.sc5 .link-container .lg {
  transform: translateY(100px);
  transition: all 1s 0.6s ease-out;
  filter: blur(10px);
  opacity: 0;
  width: 66%;
  background: url(../images/main/sc5-bg-01.png) no-repeat 50% 50%;
  background-size: cover;
}

@media (max-width: 1024px) {
  .sc5 .link-container .lg {
    width: 100%;
    aspect-ratio: 600/397;
    max-height: 550px;
  }
}

.sc5 .link-container .sm {
  transform: translateY(100px);
  transition: all 1s 0.9s ease-out;
  filter: blur(10px);
  width: 31.9%;
  opacity: 0;
  background: url(../images/main/sc5-bg-02.png) no-repeat 50% 50%;
  background-size: cover;
}

@media (max-width: 1024px) {
  .sc5 .link-container .sm {
    width: 100%;
    aspect-ratio: 600/397;
    max-height: 550px;
  }
}

.sc5 .link-container h3 {
  color: #fff;
  font-size: 25px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .sc5 .link-container h3 {
    font-size: 13px;
  }
}

.sc5 .link-container p {
  opacity: 0.5;
  color: #fff;
  line-height: 1.5;
  font-size: 17px;
}

@media (max-width: 768px) {
  .sc5 .link-container p {
    font-size: 11px;
  }
}

.sc5 .link-container .list {
  display: flex;
  padding-top: 100px;
  gap: 5%;
}

@media (max-width: 768px) {
  .sc5 .link-container .list {
    padding-top: 15px;
  }
}

.sc5 .link-container .list ul li {
  color: #555555;
  position: relative;
  font-size: 19px;
  padding-left: 10px;
}

.sc5 .link-container .list ul li + li {
  margin-top: 15px;
}

.sc5 .link-container .list ul li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 3px;
  background-color: #555555;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .sc5 .link-container .list ul li {
    font-size: 9px;
    padding-left: 7px;
  }

  .sc5 .link-container .list ul li + li {
    margin-top: 6px;
  }

  .sc5 .link-container .list ul li::after {
    top: 4px;
    width: 2px;
    height: 2px;
  }
}

.sc5 .link-container i {
  position: absolute;
  right: 55px;
  bottom: 55px;
  background: transparent url(../images/main/sc5-arw.png) no-repeat 50% 50%;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .sc5 .link-container i {
    width: 30px;
    height: 30px;
    background-size: 10px auto;
    right: 20px;
    bottom: 20px;
  }
}

body {
  overflow-x: hidden;
}

#breadcrumb--container {
  width: auto;
  max-width: 1440px;
}

.es-tab-content.hidden {
  display: none;
}

.info-card {
  background-color: #f8f8f8;
  border-radius: 0.6rem;
  padding: 3rem;
}

.info-card .data-container {
  position: relative;
  text-align: center;
}

@media (max-width: 1024px) {
  .info-card {
    padding: 1.7rem;
  }
}

/* 컨텐츠 변경 */
.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.5;
  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: #fff;
  font-size: 2.5rem;
}

.heading-desc {
  color: #fff;
  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;
  background-size: cover;
}

@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, .page-intro-links button {
  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 1.5rem;
}

@media (max-width: 1024px) {
  .page-intro-links a, .page-intro-links button {
    height: 3.5rem;
    padding: 0 14px;
    font-size: 13px;
  }
}

.page-intro-links a::after, .page-intro-links button::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, .page-intro-links button::after {
    background-size: cover;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 768px) {
  .page-intro-links a, .page-intro-links button {
    width: 100%;
  }
}

.page-intro-links.blank a, .page-intro-links.blank button {
  border: 1px solid #0867ab;
  color: #0867ab;
}

.page-intro-links.blank a::after, .page-intro-links.blank button::after {
  background: url(../images/sub/blank@15x15.svg) no-repeat 50% 50%;
}

.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;
  }
}

.carbon-picture-1 .backgorund {
  background-image: url(../images/sub/carbon-bg-1.png);
}

.qua-container {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1440px) {
  .qua-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .qua-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.qua-card {
  border-radius: 6px;
  background-color: #f0f0f0;
  padding: 0 8px;
  height: 300px;
}

@media (max-width: 1024px) {
  .qua-card {
    height: auto;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .qua-card {
    height: auto;
    padding-bottom: 30px;
  }
}

.qua-title {
  border-bottom: 1px solid #fff;
  padding: 30px 0 20px;
  text-align: center;
}

.qua-title .sub {
  color: #029c58;
  font-weight: 400;
  font-size: 17px;
}

@media (max-width: 1024px) {
  .qua-title .sub {
    font-size: 13px;
  }
}

.qua-title .main {
  color: #000;
  font-weight: 600;
  font-size: 25px;
}

@media (max-width: 1024px) {
  .qua-title .main {
    font-size: 17px;
  }
}

.qua-content {
  text-align: center;
  line-height: 2;
  font-size: 19px;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .qua-content {
    font-size: 14px;
  }
}

.extend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 15px 2.14%;
}

.extend-item {
  border: 1px solid #c6c6c6;
  border-radius: 6px;
  background-color: #fff;
  padding: 30px 40px;
}

.extend-title {
  color: #2b316a;
  font-size: 19px;
  padding-bottom: 15px;
}

@media (max-width: 1024px) {
  .extend-item {
    padding: 15px 17px;
  }

  .extend-title {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .extend-item {
    font-size: 12px;
  }
}

@media (max-width: 1440px) {
  .wide\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.number-list {
  display: flex;
  gap: 0 17px;
}

.number-list li b {
  padding-right: 5px;
}

@media (max-width: 1024px) {
  .number-list {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .number-list {
    flex-direction: column;
  }

  .number-list li {
    font-size: 11px;
  }
}

.report-download {
  display: flex;
  justify-content: center;
  padding-top: 4rem;
}

.report-download button {
  display: inline-flex;
  align-items: center;
  gap: 0 1.2rem;
  border-radius: 0.8rem;
  height: 5.6rem;
  padding: 0 3rem;
  background: linear-gradient(to right, #2b336a 30%, #0d955b 70%);
  color: #fff;
}

.report-download button.border {
  background: #fff;
  color: #555;
  border: 1px solid #555;
}

.report-download button i {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  background: url(../images/sub/icon-download.png) no-repeat 50% 50%;
}

.report-download button i.icon-download-black {
  background: url(../images/sub/icon-download-black.png) no-repeat 50% 50%;
}

.sub-inner-title {
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 32px;
  padding: 8rem 0 7rem;
}

.sub-inner-title b {
  color: #029b58;
}

@media (max-width: 1024px) {
  .sub-inner-title {
    font-size: 24px;
    padding: 4rem 0;
  }
}

.carbon-picture-2 .backgorund {
  background-image: url(../images/sub/carbon-bg-2.png);
}

.sub-title-group {
  text-align: center;
  padding-bottom: 35px;
}

@media (max-width: 1024px) {
  .sub-title-group {
    padding-bottom: 20px;
  }
}

.sub-title-text {
  font-weight: 600;
  font-size: 32px;
  padding-bottom: 15px;
  line-height: 1;
}

.sub-title-text b {
  color: var(--text-main);
}

@media (max-width: 1024px) {
  .sub-title-text {
    font-size: 27px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .sub-title-text {
    font-size: 18px;
  }
}

.sub-title-desc {
  color: var(--text-sub2);
  font-size: 21px;
}

@media (max-width: 1024px) {
  .sub-title-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sub-title-desc {
    font-size: 14px;
  }
}

.climate-policy-content .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 2.1%;
}

@media (max-width: 1100px) {
  .climate-policy-content .grid {
    display: block;
  }
}

.climate-policy-content .grid .slick-arrow {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #555;
  background-color: #fff;
  width: 50px;
  height: 50px;
}

.climate-policy-content .grid .slick-prev {
  left: 0;
}

.climate-policy-content .grid .slick-next {
  right: 0;
}

.card-diverse {
  text-align: center;
}

.card-diverse .image {
  overflow: hidden;
  text-align: center;
}

.card-diverse .image img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.card-diverse .text-group {
  padding: 20px 0 25px;
}

.card-diverse .strong {
  font-weight: 600;
  font-size: 25px;
}

@media (max-width: 768px) {
  .card-diverse .strong {
    font-size: 17px;
  }
}

.card-diverse .desc {
  color: var(--text-sub2);
  font-size: 19px;
  margin-top: 15px;
  height: 70px;
}

@media (max-width: 768px) {
  .card-diverse .desc {
    font-size: 14px;
    height: auto;
    margin-top: 10px;
  }
}

.card-diverse .details {
  background-color: #eee;
  border-radius: var(--border-radius);
  padding: 20px 35px;
  text-align: left;
}

@media (max-width: 768px) {
  .card-diverse .details {
    padding: 10px 15px;
  }
}

.card-diverse .details .text-list {
  padding-bottom: 13px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
  height: 16rem;
}

@media (max-width: 768px) {
  .card-diverse .details .text-list {
    height: auto;
    padding-bottom: 2rem;
  }
}

.card-diverse .details .text-list li {
  font-size: var(--font-sub-size);
  line-height: 1.3;
}

.card-diverse .details .text-list li + li {
  margin-top: 0.7rem;
}

.card-diverse .details .text-list li span {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 1em;
  gap: 0 5px;
}

.card-diverse .details .text-list li span::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background-color: #000;
  width: 2px;
  height: 2px;
}

.card-diverse .details .text-list li p {
  color: var(--text-sub2);
  font-size: 1em;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .card-diverse .details .text-list li {
    font-size: 13px;
  }
}

.card-diverse .details a {
  display: inline-flex;
  align-items: center;
  gap: 0 5px;
  color: var(--text-sub);
}

.card-diverse .details a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/sub/blank@14x14.png) no-repeat center/cover;
}

@media (max-width: 768px) {
  .card-diverse .details a {
    font-size: 13px;
  }

  .card-diverse .details a::after {
    width: 10px;
    height: 10px;
  }
}

.related-content {
  padding: var(--content-space) 0;
}

.related-content .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 2.1%;
}

@media (max-width: 768px) {
  .related-content .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2vw;
  }
}

.card-link {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 196px;
}

@media (max-width: 768px) {
  .card-link {
    height: auto;
    padding: 20px 0;
  }
}

.card-link .logos {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-link .logos img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .card-link .logos {
    padding: 0 1rem;
  }
}

.card-link .text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #555;
  color: #555;
  transition: all 0.25s;
  height: 40px;
  width: 84px;
}

.card-link .text:hover, .card-link .text:focus {
  background-color: #555;
  color: #fff;
}

/* 카본데이터 */
.es-tab {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.es-tab.risk button {
  color: #c8553e;
}

.es-tab.risk button::after {
  background-color: #c8553e;
}

.es-tab button {
  color: #fff;
  position: relative;
  font-size: 1.7rem;
  padding: 0 2.5rem 1.6rem;
}

.es-tab button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: #fff;
  will-change: width;
  transition: width 0.25s;
}

.es-tab button[aria-selected=true]::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .es-tab {
    margin-bottom: 1.5rem;
  }

  .es-tab button {
    font-size: 1.4rem;
  }
}

.cabon-map {
  background: url(../images/sub/carbon-data-bg.png) no-repeat 50% 50%;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 90rem;
}

@media (max-width: 1024px) {
  .cabon-map {
    height: 50rem;
  }
}

@media (max-width: 768px) {
  .cabon-map {
    height: auto;
    padding: 5rem 1.5rem;
  }
}

.cabon-map .slick-prev,
.cabon-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) {
  .cabon-map .slick-prev,
  .cabon-map .slick-next {
    width: 4rem;
    height: 4rem;
    background-size: 12px auto;
  }
}

@media (max-width: 768px) {
  .cabon-map .slick-prev,
  .cabon-map .slick-next {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.cabon-map .slick-prev.slick-disabled,
.cabon-map .slick-next.slick-disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

.cabon-map .slick-prev {
  transform: rotate(180deg) translateY(50%);
  left: 4rem;
}

@media (max-width: 1024px) {
  .cabon-map .slick-prev {
    left: 0rem;
  }
}

.cabon-map .slick-next {
  right: 4rem;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .cabon-map .slick-next {
    right: 0rem;
  }
}

.cabon-map-slide {
  width: 33rem;
}

@media (max-width: 768px) {
  .cabon-map-slide {
    width: 100%;
  }
}

.cabon-map-slide .slick-list {
  overflow: visible;
  margin: 0 -1.5rem;
}

@media (max-width: 768px) {
  .cabon-map-slide .slick-list {
    margin: 0;
    overflow: hidden;
  }
}

.cabon-map-slide .slick-slide {
  margin: 0 1.5rem;
}

@media (max-width: 768px) {
  .cabon-map-slide .slick-slide {
    margin: 0;
  }
}

.cabon-map .cabon-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) {
  .cabon-map .cabon-map-card {
    width: 100%;
    height: auto;
  }
}

.cabon-map .cabon-map-card:hover {
  border-color: var(--border-color-hover);
}

.cabon-map .cabon-map-card.down-1 {
  transform: translateY(7rem);
}

@media (max-width: 768px) {
  .cabon-map .cabon-map-card.down-1 {
    transform: translateY(0rem);
  }
}

.cabon-map .cabon-map-card.down-2 {
  transform: translateY(3rem);
}

@media (max-width: 768px) {
  .cabon-map .cabon-map-card.down-2 {
    transform: translateY(0rem);
  }
}

.cabon-map .cabon-map-card.up-1 {
  transform: translateY(-4rem);
}

@media (max-width: 768px) {
  .cabon-map .cabon-map-card.up-1 {
    transform: translateY(0rem);
  }
}

.cabon-map .cabon-map-card .thumb {
  text-align: center;
}

.cabon-map .cabon-map-card .thumb img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.cabon-map .cabon-map-card .details {
  padding-top: 2rem;
}

.cabon-map .cabon-map-card .details strong {
  display: block;
  color: #000;
  font-size: 2.5rem;
}

.cabon-map .cabon-map-card .details p {
  color: var(--text-sub2);
  font-size: 1.5rem;
  padding-top: 1rem;
}

@media (max-width: 1024px) {
  .cabon-map .cabon-map-card .details strong {
    font-size: 1.7rem;
  }

  .cabon-map .cabon-map-card .details p {
    font-size: 1.2rem;
  }
}

/* 기후대응 */
.round-title {
  margin-bottom: 1rem;
}

.round-title strong {
  display: inline-flex;
  align-items: center;
  gap: 0 0.5rem;
  font-weight: 400;
  color: #555555;
  font-size: 1.7rem;
}

.round-title strong::before {
  content: "";
  background-color: #555555;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .round-title strong {
    font-size: 1.4rem;
  }
}

.title-content {
  padding-bottom: 1rem;
}

.title-content .text-title {
  color: #000;
  font-size: 2.1rem;
}

.title-content .desc {
  color: #555;
  line-height: 1.34;
  font-size: 1.7rem;
  padding-top: 1.5rem;
}

@media (max-width: 1024px) {
  .title-content .text-title {
    font-size: 1.5rem;
  }

  .title-content .desc {
    font-size: 1.3rem;
    padding-top: 1rem;
  }
}

.text-content > strong {
  display: block;
  color: #000;
  font-size: 1.7rem;
}

.text-content .desc {
  color: var(--text-sub2);
  line-height: 1.34;
  font-size: 1.7rem;
  padding-top: 1rem;
}

@media (max-width: 1024px) {
  .text-content > strong {
    font-size: 1.4rem;
  }

  .text-content .desc {
    font-size: 1.2rem;
    padding-top: 0.7rem;
  }
}

.legend-group {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
}

@media (max-width: 768px) {
  .legend-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.legend-group span {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  color: #717171;
}

.legend-group span i {
  display: inline-block;
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .legend-group span {
    font-size: 1rem;
  }

  .legend-group span i {
    width: 10px;
    height: 10px;
  }
}

.data--box--flex:has(.heatwave-about) {
  min-height: 56rem;
}

.heatwave-about .text-content {
  margin-top: 3rem;
}

.heatwave-legend .legend-group {
  margin-top: 1rem;
}

.action-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
  border-radius: var(--border-radius);
  height: 5.4rem;
  padding: 0 3rem 0 2rem;
}

.action-button-label {
  font-weight: 700;
  color: #9e9e9e;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  gap: 0 0.5rem;
}

.action-button-label::before {
  content: "";
  background-color: #9e9e9e;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .action-button {
    height: 4.2rem;
    padding: 0 1.5rem 0 1rem;
  }

  .action-button-label {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.action-button-icon {
  display: inline-flex;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.action-button-icon.icon-1 {
  background-image: url(../images/sub/solar-poten-ico-1.png);
  width: 3.2rem;
  height: 2.7rem;
}

[aria-pressed=true] .action-button-icon.icon-1 {
  background-image: url(../images/sub/solar-poten-ico-1-active.png);
}

.action-button-icon.icon-2 {
  background-image: url(../images/sub/solar-poten-ico-2.png);
  width: 3.2rem;
  height: 2.7rem;
}

[aria-pressed=true] .action-button-icon.icon-2 {
  background-image: url(../images/sub/solar-poten-ico-2-active.png);
}

.action-button-icon.icon-3 {
  background-image: url(../images/sub/solar-poten-ico-3.png);
  width: 3.2rem;
  height: 2.7rem;
}

[aria-pressed=true] .action-button-icon.icon-3 {
  background-image: url(../images/sub/solar-poten-ico-3-active.png);
}

.action-button[aria-pressed=true] {
  border-color: #f79443;
  background-color: #feefe3;
}

.action-button[aria-pressed=true] .action-button-label {
  color: #f79443;
}

.action-button[aria-pressed=true] .action-button-label::before {
  background-color: #f79443;
}

.solar-poten {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 2.1%;
}

.solar-poten .notice-container {
  margin-bottom: 2rem;
}

.solar-poten .action-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
  padding-bottom: 4rem;
}

@media (max-width: 1024px) {
  .solar-poten {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 0;
  }

  .solar-poten .action-button-group {
    padding-bottom: 2.5rem;
  }
}

.card-grid-container {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}

@media (max-width: 1024px) {
  .card-grid-container {
    padding: 1.5rem;
  }
}

.card-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
}

.card-grid-header .titles {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}

.card-grid-header .titles strong {
  font-weight: 400;
  font-size: 1.9rem;
}

@media (max-width: 1024px) {
  .card-grid-header .titles strong {
    font-size: 1.4rem;
  }
}

.toggle-tooltip {
  display: inline-block;
  background: url(../images/sub/icon-tooltip.png) no-repeat 50% 50%;
  font-size: 0;
  width: 1.7rem;
  height: 1.7rem;
}

.toggle-tooltip[aria-pressed=true] {
  background-image: url(../images/sub/icon-tooltip-active.png);
}

.solar-poten-data .card-grid-container + .card-grid-container {
  margin-top: 2rem;
}

.solar-poten-data .flex-box + .round-title {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .solar-poten-data .flex-box + .round-title {
    margin-bottom: 1.3rem;
  }
}

.solar-status {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solar-status .status-card {
  cursor: pointer;
}

.status-card {
  border-radius: 0.6rem;
  border: 1px solid #555555;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

@media (max-width: 1024px) {
  .status-card {
    height: 4.5rem;
  }
}

.status-card[aria-pressed=true] {
  background-color: #ffffff;
  border-color: #555555;
}

.status-card .label {
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 1.7rem;
}

@media (max-width: 1024px) {
  .status-card .label {
    font-size: 1.4rem;
  }
}

.status-card .label::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 1024px) {
  .status-card .label::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}

.status-card .label.before-bg-1::before {
  background-color: #ffd96f;
}

.status-card .label.before-bg-2::before {
  background-color: #f79443;
}

.status-card .label.before-bg-3::before {
  background-color: #b7d772;
}

.status-card .label.before-bg-4::before {
  background-color: #81d2e5;
}

.status-card .label.before-bg-5::before {
  background-color: #2b316a;
}

.status-card .value {
  display: flex;
  flex-wrap: wrap;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.status-card .value .number {
  color: #1d1d1d;
  font-weight: 700;
  font-size: 2.1rem;
}

@media (max-width: 1024px) {
  .status-card .value .number {
    font-size: 1.5rem;
  }
}

.status-card .value .unit {
  color: #000;
  font-size: 1.5rem;
  padding-left: 0.4rem;
}

@media (max-width: 1024px) {
  .status-card .value .unit {
    font-size: 1.2rem;
  }
}

.status-card .value .note {
  flex-shrink: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .status-card .value .note {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .card-grid-container .flex-box.md {
    flex-wrap: wrap;
  }

  .card-grid-container .flex-box.md > li {
    width: 100%;
    flex: 0 0 1;
    min-width: 100%;
  }
}

.data-610 {
  margin-top: 2rem;
  height: 61rem;
  overflow-y: auto;
}

@media (max-width: 1400px) {
  .data-610 {
    height: auto;
  }
}

.growth-data-row {
  display: flex;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .growth-data-row {
    display: block;
  }
}

.growth-data-row:last-child {
  margin-bottom: 0;
}

.growth-data-row .subject {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  flex-shrink: 0;
  width: 150px;
  min-height: 2rem;
}

.growth-data-row .subject strong {
  color: #2b316a;
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .growth-data-row .subject {
    width: 100%;
    min-height: inherit;
    padding: 2rem 0;
    text-align: center;
  }

  .growth-data-row .subject strong {
    font-size: 1.4rem;
  }
}

.growth-data-row .cont {
  flex-grow: 1;
  padding: 3.2rem 4rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .growth-data-row .cont {
    padding: 1.7rem;
  }
}

.growth-data-row .cont .bold-text {
  color: #000;
  font-size: 1.9rem;
}

.growth-data-row .cont .bold-text em {
  font-size: 1em;
  font-style: normal;
  color: #029b58;
}

@media (max-width: 768px) {
  .growth-data-row .cont .bold-text {
    font-size: 1.3rem;
  }
}

.growth-data-row .cont .thin-text {
  color: #555555;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .growth-data-row .cont .thin-text {
    font-size: 1.2rem;
  }
}

.growth-data-row .cont .regular-text {
  color: #555;
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .growth-data-row .cont .regular-text {
    font-size: 1.3rem;
  }
}

.growth-data-list li {
  border-bottom: 1px solid #ddd;
  padding: 2rem;
  margin: 0 -2rem;
}

.growth-data-list li:first-child {
  padding-top: 0;
}

@media (max-width: 768px) {
  .growth-data-list li {
    margin: 0;
    padding: 1.4rem;
  }
}

.growth-data-list li strong {
  display: block;
  font-size: 1.9rem;
}

.growth-data-list li strong small {
  font-weight: 400;
  font-size: 1em;
}

@media (max-width: 768px) {
  .growth-data-list li strong {
    font-size: 1.4rem;
  }
}

.growth-data-list li div {
  color: #555;
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .growth-data-list li div {
    font-size: 1.3rem;
  }
}

.sub--wrap.end {
  padding-bottom: 12rem;
  padding-top: 12rem;
}

/* 소개 */
.about-picture-1 {
  background-image: url(../images/sub/about-bg.png);
}

.platform-title {
  text-align: center;
}

.platform-title strong {
  font-weight: 600;
  color: #000;
  font-size: 3.2rem;
}

.platform-title b {
  font-size: 1em;
  color: #029b58;
}

.platform-title .desc {
  color: var(--text-sub2);
  font-size: 2.1rem;
  padding-top: 1.5rem;
}

@media (max-width: 1024px) {
  .platform-title strong {
    font-size: 2rem;
  }

  .platform-title .desc {
    font-size: 1.5rem;
    padding-top: 1rem;
  }
}

.platform-vision-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-top: 3.5rem;
}

@media (max-width: 1024px) {
  .platform-vision-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.platform-vision-content > div {
  background: #f0f0f0;
  border-radius: 4px;
  padding: 30px;
}

.platform-vision-content > div strong {
  font-weight: 600;
  color: #000;
  font-size: 2.5rem;
}

.platform-vision-content > div p {
  color: #000;
  font-size: 1.9rem;
  padding-top: 2rem;
}

@media (max-width: 1024px) {
  .platform-vision-content > div {
    padding: 1.5rem;
  }

  .platform-vision-content > div strong {
    font-size: 1.8rem;
  }

  .platform-vision-content > div p {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}

.platform-vision-notic {
  color: #717171;
  background: url(../images/sub/!.png) no-repeat 0 0;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-left: 1.5rem;
  padding-left: 2.5rem;
}

@media (max-width: 1024px) {
  .platform-vision-notic {
    font-size: 1.2rem;
  }
}

.platform-mission {
  padding: 12rem 0;
}

@media (max-width: 1024px) {
  .platform-mission {
    padding: 6rem 0;
  }
}

.platform-mission-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 4rem;
}

.platform-mission-content .box {
  position: relative;
}

.platform-mission-content .box .detail {
  position: absolute;
  color: #fff;
  left: 3.5rem;
  top: 3.5rem;
}

.platform-mission-content .box .detail strong {
  font-size: 2.5rem;
}

.platform-mission-content .box .detail p {
  font-size: 1.9rem;
  padding-top: 1.5rem;
}

.platform-mission-content .box .image img {
  width: 100%;
}

@media (max-width: 768px) {
  .platform-mission-content {
    flex-direction: column;
  }

  .platform-mission-content .box {
    width: 100%;
  }

  .platform-mission-content .box .detail strong {
    font-size: 2rem;
  }

  .platform-mission-content .box .detail p {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
}

.platform-task-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding-top: 4rem;
}

@media (max-width: 1024px) {
  .platform-task-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .platform-task-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.platform-task-content .box {
  background-color: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  text-align: center;
  border: 1px solid #d8d8d8;
}

.platform-task-content .box .image {
  border-bottom: 1px solid #d8d8d8;
}

.platform-task-content .box .image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.platform-task-content .box .detail {
  padding-top: 3rem;
  height: 20rem;
}

.platform-task-content .box .detail strong {
  font-size: 2.5rem;
}

.platform-task-content .box .detail p {
  font-size: 1.9rem;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .platform-task-content .box .detail {
    height: auto;
    padding: 2rem 1.5rem;
  }

  .platform-task-content .box .detail strong {
    font-size: 1.7rem;
  }

  .platform-task-content .box .detail p {
    font-size: 1.3rem;
    padding-top: 1rem;
  }
}

.re100-person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2%;
}

.re100-person .image {
  width: 49.2%;
}

.re100-person .image img {
  max-width: 100%;
}

.re100-person h3 {
  font-weight: 600;
  color: #000;
  font-size: 3.2rem;
}

.re100-person h3 b {
  color: var(--text-main);
}

.re100-person p {
  margin-top: 3rem;
  line-height: 1.5;
  font-size: 1.9rem;
}

@media (max-width: 1430px) {
  .re100-person h3 {
    font-size: 2.8rem;
  }

  .re100-person p {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .re100-person {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }

  .re100-person .image {
    width: 100%;
    text-align: center;
  }

  .re100-person .text {
    text-align: left;
  }

  .re100-person h3 {
    font-size: 1.7rem;
  }

  .re100-person p {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}

.re100-strategy {
  border-top: 1px solid #ddd;
  padding-top: 5rem;
  margin-top: 5rem;
}

.re100-strategy-title {
  font-weight: 600;
  font-size: 2.5rem;
  padding-bottom: 6rem;
}

@media (max-width: 1024px) {
  .re100-strategy-title {
    font-size: 2rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .re100-strategy-title {
    font-size: 1.7rem;
  }
}

.re100-strategy-list {
  padding-bottom: 6rem;
}

.re100-strategy-list strong {
  display: block;
  color: var(--text-main);
  font-size: 1.9rem;
  padding-bottom: 3rem;
}

.re100-strategy-list ol li + li {
  margin-top: 2.5rem;
}

.re100-strategy-list ol li b {
  display: block;
  font-weight: 400;
  font-size: 1.9rem;
}

.re100-strategy-list ol li p {
  color: var(--text-sub2);
  font-size: 1.7rem;
  line-height: 1.34;
  padding-top: 1.2rem;
}

.re100-strategy-list:last-child {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .re100-strategy-list {
    padding-bottom: 3rem;
  }

  .re100-strategy-list strong {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  .re100-strategy-list ol li + li {
    margin-top: 1.5rem;
  }

  .re100-strategy-list ol li b {
    font-size: 1.4rem;
  }

  .re100-strategy-list ol li p {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}

.sitemap-container > ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1024px) {
  .sitemap-container > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .sitemap-container > ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sitemap-container .lv1 {
  overflow: hidden;
  position: relative;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding-bottom: 3rem;
  border-radius: 12px;
}

.sitemap-container .lv1::after {
  display: block;
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  background: url(../images/new_sub/leaf.png) no-repeat;
  width: 200px;
  height: 200px;
  background-size: contain;
}

@media (max-width: 1024px) {
  .sitemap-container .lv1::after {
    width: 100px;
    height: 100px;
    right: -20px;
    bottom: -20px;
  }
}

.sitemap-container .lv1 > strong {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../images/sub/sitemap-icon.png);
  background-repeat: no-repeat;
  font-weight: 600;
  color: #000;
  font-size: 25px;
  height: 8.7rem;
  padding-left: 5rem;
  color: #fff;
}

.sitemap-container .lv1 > strong::after {
  display: block;
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  background-image: url(../images/sub/sitemap-icon.png);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .sitemap-container .lv1 > strong {
    height: 4.5rem;
    font-size: 1.8rem;
    background-size: 1.2rem auto;
    padding-left: 3rem;
    background-position: 1rem 1rem;
  }

  .sitemap-container .lv1 > strong::after {
    background-size: contain;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
  }
}

.sitemap-container .lv1 > strong.sitemap-head01 {
  background: linear-gradient(45deg, #bd5d3f, #238443, #0868ac, #004097);
}

.sitemap-container .lv1 > strong.sitemap-head02 {
  background: #c8553e;
}

.sitemap-container .lv1 > strong.sitemap-head03 {
  background: #0868ac;
}

.sitemap-container .lv1 > strong.sitemap-head04 {
  background: #238443;
}

.sitemap-container .lv1 > strong.sitemap-head05 {
  background: #6ab22f;
}

.sitemap-container .lv1 > strong.sitemap-head06 {
  background: #004097;
}

.sitemap-container .lv1 > strong.sitemap-head07 {
  background: #333333;
}

.sitemap-container .lv1 > strong.sitemap-head08 {
  background: #2a316a;
}

.sitemap-container .lv1 ul {
  border-top: 0;
  padding: 4rem 3rem 0;
}

@media (max-width: 1024px) {
  .sitemap-container .lv1 ul {
    padding: 2rem 1.5rem 0;
  }
}

.sitemap-container .lv1 ul li + li {
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .sitemap-container .lv1 ul li + li {
    margin-top: 1.5rem;
  }
}

.sitemap-container .lv1 ul li a {
  color: #1d1d1d;
  font-size: 19px;
}

@media (max-width: 1024px) {
  .sitemap-container .lv1 ul li a {
    font-size: 1.4rem;
  }
}

html {
  scroll-behavior: smooth;
}

.max-w100 {
  max-width: 100%;
}

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

.data-section {
  position: relative;
  padding-top: 120px;
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .data-section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0px;
  }
}

.data-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 86.5%;
  max-height: 500px;
  background-size: cover;
  content: "";
}

.data-section .data-section-title h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #fff;
}

@media (max-width: 768px) {
  .data-section .data-section-title h2 {
    font-size: 21px;
    margin-bottom: 17.5px;
  }
}

.data-section .inner {
  width: 100%;
  max-width: 980px;
  padding: 0;
  margin: auto;
}

.data-section .data-section_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap {
    flex-direction: column;
  }
}

.data-section .data-section_wrap.scroll-motion-on li .box {
  transform: translateX(100px);
}

.data-section .data-section_wrap.scroll-motion-on li.motion .box {
  transform: translateX(0);
}

.data-section .data-section_wrap.scroll-motion-on li.unfold .box {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .data-section .data-section_wrap.scroll-motion-on li.motion:hover .box {
    transition: transform 0.3s;
    transform: translateY(-30px);
  }
}

.data-section .data-section_wrap ul {
  display: inline-flex;
  font-size: 0;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap ul {
    width: 100%;
  }
}

.data-section .data-section_wrap li {
  position: relative;
  display: inline-block;
  width: 570px;
  min-height: 390px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: width 0.3s;
  vertical-align: top;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li {
    min-height: auto;
    width: 100%;
  }
}

.data-section .data-section_wrap li:last-child {
  margin-right: 0;
}

.data-section .data-section_wrap li .box {
  height: 100%;
  background: #ffffff;
  box-shadow: 14px 21px 15px 7px rgba(0, 0, 0, 0.17);
  position: relative;
  transition: transform 0.6s;
  padding: 40px 30px;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li .box {
    box-shadow: none;
    padding: 20px 15px;
  }
}

.data-section .data-section_wrap li .box .data-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li .box .data-heading {
    margin-bottom: 0px;
  }
}

.data-section .data-section_wrap li .box .data-heading .data-num {
  display: block;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .data-section .data-section_wrap li .box .data-heading .data-num {
    font-size: 10px;
    margin-bottom: 4px;
  }
}

.data-section .data-section_wrap li .box .data-heading .data-num.carbon {
  color: #238443;
}

.data-section .data-section_wrap li .box .data-heading .data-num.risk {
  color: #c8553e;
}

.data-section .data-section_wrap li .box .data-heading .data-num.energy {
  color: #0867ab;
}

.data-section .data-section_wrap li .box .data-heading .data-title {
  display: block;
  color: #1d1d1d;
  font-size: 21px;
}

@media (max-width: 768px) {
  .data-section .data-section_wrap li .box .data-heading .data-title {
    font-size: 14px;
  }
}

.data-section .data-section_wrap li .box .data-heading a {
  padding: 20px;
  display: inline-block;
  font-size: 15px;
  color: #1d1d1d;
  background: #f8f8f8;
  border-radius: 28px;
}

@media (max-width: 768px) {
  .data-section .data-section_wrap li .box .data-heading a {
    padding: 10px;
    font-size: 10px;
  }
}

.data-section .data-section_wrap li .box .data-heading a .icon {
  width: 16px;
  height: 16px;
  margin-left: 15px;
  background-image: url("../images/new_sub/ico-data16@16.png");
}

@media (max-width: 768px) {
  .data-section .data-section_wrap li .box .data-heading a .icon {
    width: 10px;
    height: 10px;
    margin-left: 5px;
  }
}

.data-section .data-section_wrap li .box .data-con {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li .box .data-con {
    display: none;
  }
}

.data-section .data-section_wrap li .box .data-con .data-con-txt p {
  font-size: 17px;
  line-height: 1.5;
  color: #717171;
}

@media (max-width: 768px) {
  .data-section .data-section_wrap li .box .data-con .data-con-txt p {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li.unfold .box .data-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 1024px) {
  .data-section .data-section_wrap li.unfold .box .data-con {
    display: flex;
    flex-direction: column;
  }
}

.data-section .progress_wrap {
  background: #e7ebec;
  margin-bottom: 120px;
}

.data-section .progress_wrap .progress {
  width: 0;
  height: 5px;
  background: #000;
}

@media (max-width: 1023px) {
  .data-section::before {
    height: 100%;
    max-height: 100%;
    background: #000;
    background-size: cover;
  }

  .data-section .data-section_wrap {
    padding: 0;
  }

  .data-section .data-section_wrap ul {
    flex-direction: column;
  }

  .data-section .data-section_wrap li {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-top: 0.625rem;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  }

  .data-section .data-section_wrap li:first-child {
    margin-top: 0;
  }

  .data-section .data-section_wrap li .box {
    box-shadow: none;
  }

  .data-section .data-section_wrap .area_bot .mCSB_scrollTools {
    display: none !important;
  }

  .data-section .progress_wrap {
    display: none;
  }
}

.data-section.carbon:before {
  background-image: url("../images/new_sub/data-carbon-bg.png");
}

.data-section.risk:before {
  background-image: url("../images/new_sub/data-risk-bg.png");
}

.data-section.energy:before {
  background-image: url("../images/new_sub/data-energy-bg.png");
}

.tab--stiky {
  position: sticky;
  top: 0;
  z-index: 10;
  transition: all 0.3s;
  background: #fff;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

@media (max-width: 1024px) {
  .tab--stiky {
    overflow-x: auto;
    width: 100%;
  }
}

.tab--stiky ul {
  display: flex;
}

.tab--stiky ul li {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .tab--stiky ul li {
    text-align: center;
  }
}

.tab--stiky ul li.active button, .tab--stiky ul li.active a {
  font-weight: bold;
}

.tab--stiky ul li.active:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
}

.tab--stiky ul li:hover button, .tab--stiky ul li:hover a {
  font-weight: bold;
}

.tab--stiky ul li:first-child button:before, .tab--stiky ul li:first-child a:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  content: "";
  width: 1px;
  height: 32px;
  background: #c6c6c6;
}

@media (max-width: 1024px) {
  .tab--stiky ul li:first-child button:before, .tab--stiky ul li:first-child a:before {
    height: 16px;
  }
}

.tab--stiky ul li button, .tab--stiky ul li a {
  white-space: nowrap;
  position: relative;
  display: block;
  width: 100%;
  color: #1d1d1d;
  font-size: 19px;
  transition: all 0.3s;
  word-break: break-all;
  padding: 30px 5px;
  text-align: center;
}

.tab--stiky ul li button:after, .tab--stiky ul li a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 32px;
  background: #c6c6c6;
}

@media (max-width: 1024px) {
  .tab--stiky ul li button:after, .tab--stiky ul li a:after {
    height: 16px;
  }
}

@media (max-width: 1024px) {
  .tab--stiky ul li button, .tab--stiky ul li a {
    font-size: 16px;
    padding: 10px 5px;
  }
}

@media (max-width: 768px) {
  .tab--stiky ul li button, .tab--stiky ul li a {
    font-size: 14px;
  }
}

.tab--stiky.carbon li.active button, .tab--stiky.carbon li.active a {
  color: #238443;
}

.tab--stiky.carbon li.active:before {
  background: #238443;
}

.tab--stiky.carbon li:hover button, .tab--stiky.carbon li:hover a {
  color: #238443;
}

.tab--stiky.energy li.active button, .tab--stiky.energy li.active a {
  color: #0867ab;
}

.tab--stiky.energy li.active:before {
  background: #0867ab;
}

.tab--stiky.energy li:hover button, .tab--stiky.energy li:hover a {
  color: #0867ab;
}

.tab--stiky.risk li.active button, .tab--stiky.risk li.active a {
  color: #c8553e;
}

.tab--stiky.risk li.active:before {
  background: #c8553e;
}

.tab--stiky.risk li:hover button, .tab--stiky.risk li:hover a {
  color: #c8553e;
}

.tab--stiky.info li.active button, .tab--stiky.info li.active a {
  color: #2a316a;
}

.tab--stiky.info li.active:before {
  background: #2a316a;
}

.tab--stiky.info li:hover button, .tab--stiky.info li:hover a {
  color: #2a316a;
}

.tab--stiky.up {
  top: 143px;
}

@media (max-width: 768px) {
  .tab--stiky.up {
    top: 43px;
  }
}

.tab--stiky.up.hide {
  top: 0;
}

.first--video {
  overflow: hidden;
  position: relative;
  height: 100vh;
  background: #f2f2f2;
}

.first--video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.first--video--info {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 141px;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .first--video--info {
    padding-top: 43px;
  }
}

.first--video--inner {
  height: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

@media (max-width: 768px) {
  .first--video--txt {
    padding: 10px;
  }
}

.first--video--txt h2 {
  font-size: 60px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .first--video--txt h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }
}

.first--video--txt h3 {
  font-size: 32px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .first--video--txt h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.first--video--txt p {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .first--video--txt p {
    font-size: 13px;
    opacity: 0.8;
  }
}

.first--video--tab {
  position: relative;
  z-index: 10;
  height: 100%;
}

@media (max-width: 1170px) {
  .first--video--tab {
    display: none;
  }
}

.first--video--tab ul {
  height: 100%;
}

.first--video--tab ul li {
  position: relative;
  cursor: pointer;
  min-width: 440px;
  transition: all 0.3s;
  border-radius: 12px;
  border: 1px solid transparent;
}

.first--video--tab ul li button, .first--video--tab ul li a {
  width: 100%;
  display: block;
  text-align: left;
  padding: 35px 0 32px 30px;
}

.first--video--tab ul li button strong, .first--video--tab ul li a strong {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
  display: block;
  font-weight: normal;
}

.first--video--tab ul li button span, .first--video--tab ul li a span {
  font-size: 15px;
  color: #fff;
  display: block;
}

.first--video--tab ul li:before {
  position: absolute;
  right: 16px;
  top: 16px;
  display: block;
  content: "";
  height: 14px;
  width: 14px;
  opacity: 0;
  background-image: url("../images/new_sub/arrow14@14.png");
  background-repeat: no-repeat;
  transition: all 0.3s;
}

.first--video--tab ul li:hover:after {
  opacity: 0;
  transition: all 0.3s;
}

.first--video--tab ul li:hover + li:after {
  opacity: 0;
  transition: all 0.3s;
}

.first--video--tab ul li:hover:before {
  opacity: 1;
}

.first--video--tab ul li + li:after {
  position: absolute;
  opacity: 1;
  left: 0;
  top: -4px;
  height: 4px;
  width: 100%;
  display: block;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.first--video--tab.carbon ul li:hover {
  background: rgba(35, 132, 67, 0.5);
  border: 1px solid rgb(35, 132, 67);
}

.first--video--tab.risk ul li:hover {
  background: rgba(200, 85, 62, 0.5);
  border: 1px solid rgb(200, 85, 62);
}

.first--video--tab.energy ul li:hover {
  background: rgba(8, 103, 171, 0.5);
  border: 1px solid rgb(8, 103, 171);
}

.first--video--tab.info ul li:hover {
  background: rgba(42, 49, 106, 0.5);
  border: 1px solid rgb(42, 49, 106);
}

.first--video .simplebar-content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.stat-section {
  margin: 120px auto;
}

.stat-section.ma60 {
  margin: 60px auto;
}

@media (max-width: 768px) {
  .stat-section.ma60 {
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .stat-section {
    margin: 60px auto;
  }
}

.stat-section .stat-box {
  padding: 60px 40px;
  border-radius: 0 20px 20px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  color: #fff;
  background-color: #efefef;
}

@media (max-width: 1170px) {
  .stat-section .stat-box {
    padding: 40px 57.5px;
  }
}

@media (max-width: 1170px) {
  .stat-section .stat-box {
    padding: 20px 30px;
  }
}

.stat-section .stat-box__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .stat-section .stat-box__header {
    margin-bottom: 40px;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .stat-section .stat-box__header {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.stat-section .stat-box__icon {
  width: 60px;
  height: 60px;
  background-size: contain;
}

@media (max-width: 768px) {
  .stat-section .stat-box__icon {
    width: 30px;
    height: 30px;
    background-size: cover;
  }
}

.stat-section .stat-box__titles {
  display: flex;
  flex-direction: column;
}

.stat-section .stat-box__title {
  font-weight: bold;
  font-size: 32px;
}

@media (max-width: 768px) {
  .stat-section .stat-box__title {
    font-size: 20px;
  }
}

.stat-section .stat-box__subtitle {
  font-size: 21px;
}

@media (max-width: 768px) {
  .stat-section .stat-box__subtitle {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .stat-section .stat-box__subtitle {
    width: 100%;
  }
}

.stat-section .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}

@media (max-width: 1024px) {
  .stat-section .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

@media (max-width: 576px) {
  .stat-section .stat-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
}

.stat-section .stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 12px;
}

.stat-section .stat-card__inner {
  position: relative;
  padding-left: 20px;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .stat-section .stat-card__inner {
    margin-bottom: 10px;
  }
}

.stat-section .stat-card__inner:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.stat-section .stat-card__title {
  font-size: 21px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .stat-section .stat-card__title {
    font-size: 15px;
  }
}

.stat-section .stat-card__title + p {
  margin-top: 10px;
}

.stat-section .stat-card__desc {
  font-size: 17px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .stat-section .stat-card__desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.stat-section .stat-card__value {
  display: flex;
  font-size: 1.25rem;
  font-weight: bold;
  align-items: flex-end;
  justify-content: flex-end;
}

.stat-section .stat-card__value p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .stat-section .stat-card__value p {
    font-size: 20px;
  }
}

.stat-section .stat-card__value span {
  font-size: 17px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .stat-section .stat-card__value span {
    font-size: 12px;
  }
}

.stat-section.carbon .stat-box {
  background-image: url("../images/new_sub/carbon-stat-bg.png");
}

.stat-section.carbon .section-title:after {
  background: #238443;
}

.stat-section.carbon .stat-box__icon {
  background-image: url("../images/new_sub/carbon-circle60@60.png");
}

.stat-section.risk .stat-box {
  background-image: url("../images/new_sub/risk-stat-bg.png");
}

.stat-section.risk .section-title:after {
  background: #c8553e;
}

.stat-section.risk .stat-box__icon {
  background-image: url("../images/new_sub/risk-circle60@60.png");
}

.stat-section.energy .stat-box {
  background-image: url("../images/new_sub/energy-stat-bg.png");
}

.stat-section.energy .section-title:after {
  background: #0867ab;
}

.stat-section.energy .stat-box__icon {
  background-image: url("../images/new_sub/energy-circle60@60.png");
}

.section-title {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 40px;
  padding: 15px 0 15px 32px;
  background-image: url("../images/new_sub/section-title-bg.png");
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 25px;
    background-size: cover;
  }
}

.section-title__icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: contain;
}

@media (max-width: 768px) {
  .section-title__icon {
    width: 30px;
    height: 30px;
    background-size: cover;
  }
}

.section-title.carbon .section-title__icon {
  background-image: url("../images/new_sub/carbon-circle60@60.png");
}

.section-title.risk .section-title__icon {
  background-image: url("../images/new_sub/risk-circle60@60.png");
}

.section-title.energy .section-title__icon {
  background-image: url("../images/new_sub/energy-circle60@60.png");
}

.section-title-info {
  position: relative;
  display: inline-block;
  gap: 20px;
  align-items: center;
  font-size: 40px;
  padding: 15px 0 15px 0px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-title-info {
    font-size: 25px;
    background-size: cover;
  }
}

.section-title-info:after {
  position: absolute;
  right: -12px;
  top: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 0.5rem;
  content: "";
  background: #0867ab;
}

.info-section {
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .info-section {
    margin-bottom: 60px;
  }
}

.info-section .info-section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1024px) {
  .info-section .info-section-wrap {
    flex-direction: column;
  }
}

.info-section .txt-info {
  flex: 1;
  width: 50%;
}

@media (max-width: 1024px) {
  .info-section .txt-info {
    width: 100%;
  }
}

.info-section .img-info {
  flex: 1;
  text-align: center;
  width: 50%;
}

@media (max-width: 1024px) {
  .info-section .img-info {
    width: 100%;
  }
}

.info-section .heading-txt {
  font-size: 32px;
  color: #1d1d1d;
  line-height: 1.5;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .info-section .heading-txt {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.info-section .line-txt {
  font-size: 19px;
  color: #1d1d1d;
  line-height: 1.3;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .info-section .line-txt {
    font-size: 14px;
  }
}

.info-section .gray-txt {
  color: #1d1d1d;
  font-size: 17px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .info-section .gray-txt {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.info-section .black-ti {
  font-size: 17px;
  color: #1d1d1d;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .info-section .black-ti {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.info-section .black-txt {
  font-size: 17px;
  color: #1d1d1d;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .info-section .black-txt {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .info-section .img-info img {
    max-width: 100%;
  }
}

.info-section p:last-child {
  margin-bottom: 0;
}

.info-section .link-btn {
  margin-top: 15px;
  display: inline-block;
  color: #fff;
  padding: 20px 32px;
  font-size: 19px;
  border-radius: 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .info-section .link-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.info-section .link-btn i {
  margin-left: 15px;
  background-image: url("../images/new_sub/ico-link14@14.png");
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .info-section .link-btn i {
    margin-left: 7px;
    width: 7px;
    height: 7px;
  }
}

.info-section .link-btn.energy {
  background: #0867ab;
}

.data-chart {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .data-chart {
    padding: 40px 0;
  }
}

.data-chart.carbon-green {
  background: #e9eeeb;
}

.data-chart.risk-red {
  background: #f6e4e0;
}

.data-chart.energy-blue {
  background: #d7e7f1;
}

.data-chart__txt h3 {
  font-size: 32px;
  color: #1d1d1d;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .data-chart__txt h3 {
    font-size: 21px;
    margin-bottom: 5px;
  }

  .data-chart__txt h3 br {
    display: none;
  }
}

.data-chart__txt h4 {
  font-size: 24px;
  color: #1d1d1d;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .data-chart__txt h4 {
    font-size: 15px;
    margin-bottom: 7.5px;
  }

  .data-chart__txt h4 br {
    display: none;
  }
}

.data-chart__txt .chart-txt01 {
  font-size: 21px;
  color: #1d1d1d;
  margin-bottom: 40px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .data-chart__txt .chart-txt01 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .data-chart__txt .chart-txt01 br {
    display: none;
  }
}

.data-chart__txt .chart-txt02 {
  font-size: 17px;
  color: #717171;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .data-chart__txt .chart-txt02 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .data-chart__txt .chart-txt02 br {
    display: none;
  }
}

.data-chart__img.flex {
  gap: 30px;
}

@media (max-width: 768px) {
  .data-chart__img.flex {
    flex-direction: column;
  }
}

.data-chart__img.flex img {
  max-width: 100%;
}

.data-chart__img.flex h4 {
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
}

.data-chart .dl-felx {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .data-chart .dl-felx {
    gap: 7.5px;
    flex-wrap: wrap;
  }
}

.data-chart .dl-felx dt {
  font-size: 19px;
  color: #1d1d1d;
  font-weight: bold;
}

@media (max-width: 768px) {
  .data-chart .dl-felx dt {
    font-size: 12px;
  }
}

.data-chart .dl-felx dd {
  flex: 1;
}

.data-chart .dl-felx dd select {
  width: 10rem;
}

@media (max-width: 768px) {
  .data-chart .dl-felx dd select {
    min-width: 8rem;
    width: 8rem;
    height: 3rem;
  }
}

.data-chart-gray {
  background-color: #f8f8f8;
  background-image: url(../images/new_sub/data-chart-bg01.png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}

.data-chart-cicle {
  background-color: #fff;
  background-position: -50px top;
  background-size: contain;
  background-repeat: no-repeat;
}

.data-chart-cicle.bg {
  background-image: url(../images/new_sub/data-chart-bg02.png);
  background-position: -250px -100px;
  background-size: 50%;
}

.chart__title span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 21px;
}

@media (max-width: 768px) {
  .chart__title span {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.chart__title h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .chart__title h2 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

.chart__title.tac {
  margin-bottom: 40px;
}

@media (max-width: 1170px) {
  .chart__title {
    text-align: center;
  }
}

@media (max-width: 1170px) {
  .chart-nav {
    width: 100%;
  }
}

.chart-nav__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1170px) {
  .chart-nav__inner {
    flex-wrap: wrap;
    justify-content: left;
  }
}

@media (max-width: 768px) {
  .chart-nav__inner {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.chart-nav__button {
  flex: 1;
  min-width: 214px;
  display: block;
  padding: 18px 10px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  cursor: pointer;
  font-size: 19px;
  color: #555555;
  transition: all 0.3s;
  outline: 0px solid transparent;
}

.chart-nav__button:hover {
  border: 1px solid transparent;
  outline: 2px solid black;
  transition: all 0.3s;
  font-weight: bold;
}

@media (max-width: 1170px) {
  .chart-nav__button {
    width: 130px;
    text-align: center;
    padding: 18px 30px;
    margin-bottom: 0;
    flex: auto;
  }
}

@media (max-width: 768px) {
  .chart-nav__button {
    font-size: 13px;
    padding: 9px 15px;
    min-width: auto;
  }
}

.chart-nav__button--active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.chart-map {
  width: 410px;
}

@media (max-width: 1170px) {
  .chart-map {
    width: 100%;
  }
}

.chart-map .chart-map-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.chart-map .chart-map-breadcrumb .place {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .chart-map .chart-map-breadcrumb .place {
    gap: 10px;
  }
}

.chart-map .chart-map-breadcrumb .place span {
  font-size: 19px;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .chart-map .chart-map-breadcrumb .place span {
    font-size: 13px;
  }
}

.chart-map .chart-map-breadcrumb .place i {
  width: 9px;
  height: 16px;
  background-image: url(../images/new_sub/arrow9@16.png);
}

@media (max-width: 768px) {
  .chart-map .chart-map-breadcrumb .place i {
    width: 7px;
    height: 12px;
  }
}

.chart-map .chart-map-breadcrumb .place strong {
  font-size: 25px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .chart-map .chart-map-breadcrumb .place strong {
    font-size: 16px;
  }
}

.chart-map .chart-map-breadcrumb .back {
  border: 1px solid #000;
  font-size: 13px;
  border-radius: 15px;
  padding: 5px;
  padding-right: 25px;
  background-image: url(../images/new_sub/back24@24.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 65px center;
  background-color: #fff;
}

.chart-map .chart-map-breadcrumb .back i {
  width: 24px;
  height: 24px;
  background-image: url(../images/new_sub/back24@24.png);
}

.chart-map-area {
  height: 430px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #c6c6c6;
}

.chart-map-area.bdn {
  border: none;
}

.chart-map-legend {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 20px;
  background: #fff;
}

@media (max-width: 768px) {
  .chart-map-legend {
    padding: 10px;
  }
}

.chart-map-legend h3 {
  font-size: 17px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .chart-map-legend h3 {
    font-size: 12px;
  }
}

.chart-map-legend .chart-map-legend-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.chart-flex {
  display: flex;
  gap: 25px;
  flex-direction: column;
}

.chart-flex.row {
  flex-direction: row;
}

@media (max-width: 1170px) {
  .chart-flex.row {
    flex-direction: column;
  }
}

@media (max-width: 1170px) {
  .chart-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .chart-flex {
    gap: 25px;
  }
}

.chart-flex.not-row {
  flex-wrap: wrap;
  flex-direction: column;
}

.chart-area {
  display: flex;
  flex: 1;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
}

.chart-area.dark-border {
  border: 2px solid #000;
}

@media (max-width: 768px) {
  .chart-area {
    border: none;
    flex-direction: column;
    gap: 25px;
  }
}

.chart-area .chart-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}

@media (max-width: 768px) {
  .chart-area .chart-box {
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
    border: 1px solid #c6c6c6;
  }
}

.chatr-block {
  padding: 30px;
  background: #fff;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  min-height: 350px;
}

@media (max-width: 768px) {
  .chatr-block {
    padding: 20px;
  }
}

.chatr-block + .data-chart__txt {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .chatr-block + .data-chart__txt {
    margin-bottom: 20px;
  }
}

.chatr-block.lg {
  height: 600px;
}

@media (max-width: 768px) {
  .chatr-block.lg {
    height: 400px;
  }
}

.chatr-block__btngroup {
  display: flex;
  border: 1px solid #e8e8e8;
  background: #f0f0f0;
  padding: 2px;
  border-radius: 6px;
}

.chatr-block__btngroup button {
  font-size: 15px;
  color: #8e8e8e;
  padding: 10px 12px;
}

@media (max-width: 768px) {
  .chatr-block__btngroup button {
    font-size: 11px;
    padding: 5px 6px;
  }
}

.chatr-block__btngroup button.active {
  border: 1px solid #dedede;
  border-radius: 4px;
  color: #000;
  background: #fff;
}

.chart-util__title h3 {
  font-size: 19px;
}

@media (max-width: 768px) {
  .chart-util__title h3 {
    font-size: 13px;
  }
}

.chart-util__btn {
  display: flex;
  gap: 10px;
}

.chart-util.flex-util {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .chart-util.flex-util {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.opcity-txt {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid #c6c6c6;
  color: #555555;
  font-size: 12px;
  padding: 10px;
}

.square-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: #d8d8d8;
}

@media (max-width: 768px) {
  .square-btn {
    width: 30px;
    height: 30px;
  }
}

.square-btn .graph {
  width: 12px;
  height: 12px;
  background-image: url(../images/new_sub/ico-chart.png);
}

@media (max-width: 768px) {
  .square-btn .graph {
    width: 8px;
    height: 8px;
  }
}

.square-btn .circle {
  width: 16px;
  height: 16px;
  background-image: url(../images/new_sub/ico-circle.png);
}

@media (max-width: 768px) {
  .square-btn .circle {
    width: 10px;
    height: 10px;
  }
}

.square-btn.active {
  background: #fff;
}

.square-btn.active .graph {
  background-image: url(../images/new_sub/ico-chart-on.png);
}

.square-btn.active .circle {
  background-image: url(../images/new_sub/ico-circle-on.png);
}

.chart-panel {
  width: 330px;
  background: #f0f0f0;
  border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
  .chart-panel {
    border: 1px solid #c6c6c6;
    width: 100%;
    border-radius: 12px;
  }
}

.chart-panel .chart-stat-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.chart-panel .chart-checking-inner {
  padding: 30px 20px;
}

@media (max-width: 768px) {
  .chart-panel .chart-checking-inner {
    padding: 20px;
  }
}

.chart-stat-heading {
  background: #000;
  border-radius: 6px;
  padding: 15px 20px;
}

.chart-stat-heading span {
  position: relative;
  display: block;
  padding-left: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #fff;
}

.chart-stat-heading span:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: subgrid;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 768px) {
  .chart-stat-heading span {
    font-size: 12px;
  }
}

.chart-stat-heading .chart-stat-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 768px) {
  .chart-stat-heading .chart-stat-title {
    gap: 6px;
  }
}

.chart-stat-heading .chart-stat-title .icon {
  width: 16px;
  height: 20px;
  background: url("../images/new_sub/position.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .chart-stat-heading .chart-stat-title .icon {
    width: 10px;
    height: 12px;
  }
}

.chart-stat-heading .chart-stat-title h3 {
  font-size: 25px;
  color: #fff;
}

@media (max-width: 768px) {
  .chart-stat-heading .chart-stat-title h3 {
    font-size: 16px;
  }
}

.chart-stat {
  border: 1px solid #c6c6c6;
  background: #fff;
  border-radius: 6px;
  padding: 15px;
}

.chart-stat__title {
  padding-left: 12px;
  position: relative;
  margin: 0 0 5px;
  font-size: 14px;
  color: #717171;
}

@media (max-width: 768px) {
  .chart-stat__title {
    font-size: 10px;
  }
}

.chart-stat__title strong {
  color: #000;
}

.chart-stat__title:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: subgrid;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555555;
}

.chart-stat__value {
  text-align: right;
  font-size: 25px;
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  .chart-stat__value {
    font-size: 16px;
  }
}

.chart-stat__value span {
  font-size: 15px;
}

@media (max-width: 768px) {
  .chart-stat__value span {
    font-size: 11px;
  }
}

.chart-legend {
  flex: 1;
  font-size: 12px;
  height: 200px;
}

.chart-legend .chart-legend-ti {
  margin-bottom: 20px;
  font-size: 17px;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .chart-legend .chart-legend-ti {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.chart-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .chart-legend__item {
    font-size: 11px;
  }
}

.chart-legend__data {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
}

.chart-legend__color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
}

.chart-checking-heading {
  padding: 10px 0;
  font-size: 15px;
}

.chart-checking-list {
  height: 502px;
}

@media (max-width: 768px) {
  .chart-checking-list {
    height: 200px;
  }
}

.chart-checking-list ul {
  padding-right: 10px;
}

.chart-checking-list ul li {
  border-top: 1px solid #c6c6c6;
}

.chart-checking-list ul li label {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.chart-checking-list ul li label:first-child {
  border: none;
}

.chart-checking-list ul li label .form-radio {
  font-size: 15px;
}

.chart-checking-list ul li .dep-checking {
  display: none;
}

.chart-checking-list ul li .dep-checking label {
  padding-left: 10px;
  border-top: 1px solid #e4e4e4;
}

.chart-checking-list ul li.active .dep-checking {
  display: block;
}

.chart-checking-list ul > li > label {
  font-weight: bold;
}

.chart-checking-list ul > li > label .arrow {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../images/ico/select-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
}

.chart-checking-list ul > li > label span {
  flex: 1;
}

.chart-checking-list ul > li.active > label .arrow {
  transform: rotate(180deg);
}

.filter-panel {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #c6c6c6;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .filter-panel {
    flex-direction: column;
    border: none;
    background: none;
    gap: 10px;
    width: auto;
  }
}

.filter-panel__inner {
  flex: 1;
  min-width: 170px;
}

@media (max-width: 768px) {
  .filter-panel__inner {
    width: 100%;
    border: 1px solid #c6c6c6;
    border-radius: 15px;
  }
}

.filter-panel__inner + div {
  border-left: 1px solid #c6c6c6;
}

.filter-panel__head {
  background: #f0f0f0;
  padding: 12px 15px;
}

@media (max-width: 768px) {
  .filter-panel__head {
    border-radius: 15px 15px 0 0;
  }
}

.filter-panel__head label {
  width: 100%;
}

.filter-panel__head.first {
  border-radius: 15px 0 0 0;
}

@media (max-width: 768px) {
  .filter-panel__head.first {
    border-radius: 15px 15px 0 0;
  }
}

.filter-panel__head.last {
  border-radius: 0 15px 0 0;
}

@media (max-width: 768px) {
  .filter-panel__head.last {
    border-radius: 15px 15px 0 0;
  }
}

.filter-panel__con {
  padding: 20px;
  height: 240px;
}

@media (max-width: 768px) {
  .filter-panel__con {
    background: #fff;
    border-radius: 0 0 15px 15px;
  }
}

.filter-panel__con label {
  width: 100%;
  margin-bottom: 12px;
}

.filter-panel__con label:last-child {
  margin-bottom: 0;
}

.stat-box-3 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .stat-box-3 {
    padding: 0;
    flex-direction: column;
  }
}

.stat-box-3 .stat-box-item {
  padding: 2rem;
  border: 1px solid #c6c6c6;
  border-radius: 0.8rem;
}

.stat-box-3 .stat-box-item > h4 {
  font-size: 1.9rem;
  color: #1d1d1d;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item > h4 {
    font-size: 1.5rem;
  }
}

.stat-box-3 .stat-box-item:first-child {
  width: 100%;
}

.stat-box-3 .stat-box-item + .stat-box-item {
  flex: 1;
}

.stat-box-3 .stat-box-item .chart-box209 {
  height: 209px;
}

.stat-box-3 .stat-box-item .flex-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item .flex-box {
    grid-template-columns: repeat(2, 2fr);
  }
}

.stat-box-3 .stat-box-item .flex-box li dl {
  padding-left: 13px;
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item .flex-box li dl {
    padding-left: 0;
  }
}

.stat-box-3 .stat-box-item .flex-box li dl dt {
  position: relative;
  font-size: 15px;
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item .flex-box li dl dt {
    font-size: 11px;
  }
}

.stat-box-3 .stat-box-item .flex-box li dl dt:after {
  position: absolute;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: -10px;
  top: 5px;
  background: #000;
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item .flex-box li dl dt:after {
    display: none;
  }
}

.stat-box-3 .stat-box-item .flex-box .year {
  font-size: 15px;
  color: #717171;
  display: block;
}

@media (max-width: 768px) {
  .stat-box-3 .stat-box-item .flex-box .year {
    font-size: 11px;
  }
}

.city-sel {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .city-sel {
    grid-template-columns: repeat(1, 1fr);
  }
}

.city-sel__item {
  position: relative;
  padding: 30px;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  height: 480px;
  cursor: pointer;
  background: #f8f8f8;
}

@media (max-width: 1024px) {
  .city-sel__item {
    height: auto;
    padding: 15px;
  }
}

.city-sel__item.active {
  border: 1px solid #000;
}

.city-sel__item.active:after {
  position: absolute;
  right: 30px;
  top: 30px;
  content: "";
  width: 28px;
  height: 21px;
  background-image: url("../images/new_sub/active_check.png");
}

@media (max-width: 1024px) {
  .city-sel__item.active:after {
    right: 15px;
    top: 15px;
  }
}

.city-sel__name {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .city-sel__name {
    font-size: 16px;
  }
}

.color-sel {
  border: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .color-sel {
    padding: 5px;
  }
}

.color-sel i {
  display: block;
  width: 29px;
  height: 17px;
  background-image: url("../images/new_sub/ico-color.png");
  padding-right: 12px;
  margin-right: 15px;
  border-right: 1px solid #c6c6c6;
}

.color-sel .color-value {
  display: flex;
  gap: 4px;
  margin-right: 5px;
}

.color-sel .color-value span {
  width: 16px;
  height: 16px;
}

.color-sel select {
  width: 98px;
  border: none;
}

@media (max-width: 768px) {
  .color-sel select {
    font-size: 11px;
  }
}

.dataSwiper {
  position: relative;
  overflow: visible;
  min-height: 0;
  height: auto !important;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .dataSwiper {
    overflow: hidden;
    margin-bottom: 40px;
  }
}

.dataSwiper .dataSwiper-ti {
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .dataSwiper .dataSwiper-ti {
    font-size: 21px;
    margin-bottom: 15px;
  }
}

.dataSwiper .swiper-pagination-bullet {
  background: #f0f0f0;
  opacity: 1;
}

.dataSwiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .dataSwiper .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dataSwiper .swiper-slide {
  height: auto !important;
  min-height: 0;
  box-sizing: border-box;
  display: block;
}

.dataSwiper.carbon .swiper-data {
  border: 1px solid #5a8167;
}

.dataSwiper.carbon .swiper-pagination-bullet-active {
  background: #238443;
}

.dataSwiper.energy .swiper-data {
  border: 1px solid #0867ab;
}

.dataSwiper.energy .swiper-pagination-bullet-active {
  background: #0867ab;
}

.dataSwiper.risk .swiper-data {
  border: 1px solid #c8553e;
}

.dataSwiper.risk .swiper-pagination-bullet-active {
  background: #c8553e;
}

.dataSwiper .swiper-util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 0;
  display: none;
}

@media (max-width: 1024px) {
  .dataSwiper .swiper-util {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .dataSwiper .swiper-util {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

.dataSwiper .swiper-util .swiper-util-right {
  display: flex;
  gap: 25px;
}

.dataSwiper .swiper-util .swiper-util-right .swiper-arrow {
  display: flex;
  gap: 15px;
}

.dataSwiper .swiper-util .swiper-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 80px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .dataSwiper .swiper-util .swiper-counter {
    font-size: 11px;
    width: 60px;
  }
}

.dataSwiper .swiper-util .swiper-counter.carbon .current {
  color: #238443;
}

.dataSwiper .swiper-util .swiper-counter.energy .current {
  color: #0867ab;
}

.dataSwiper .swiper-util .swiper-counter.risk .current {
  color: #c8553e;
}

.dataSwiper .swiper-pagination {
  all: unset;
  display: block;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  position: static;
  cursor: pointer;
}

.dataSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 5px;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .dataSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .dataSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
  }
}

.dataSwiper .swiper-button-next,
.dataSwiper .swiper-button-prev {
  all: unset;
  display: block;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  position: static;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #e5e5e5;
}

.dataSwiper .swiper-button-next:after,
.dataSwiper .swiper-button-prev:after {
  display: none;
}

@media (max-width: 768px) {
  .dataSwiper .swiper-button-next,
  .dataSwiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-size: 5px;
  }
}

.dataSwiper .swiper-button-next {
  background-image: url("../images/new_sub/arrow_next.png");
}

.dataSwiper .swiper-button-prev {
  background-image: url("../images/new_sub/arrow_prev.png");
}

.dataSwiper .swiper-slide-active .swiper-data {
  background: #f7f7f7;
}

.dataSwiper .swiper-slide-active .swiper-data .data-heading a, .dataSwiper .swiper-slide-active .swiper-data .data-heading button {
  background: #fff;
}

.swiper-data {
  height: 100%;
  background: #ffffff;
  box-shadow: 7px 10px 7px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.6s;
  padding: 40px 30px;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .swiper-data {
    box-shadow: none;
    padding: 20px 15px;
  }
}

.swiper-data .data-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.swiper-data .data-heading > div {
  flex: 1;
}

@media (max-width: 1024px) {
  .swiper-data .data-heading {
    margin-bottom: 15px;
  }
}

.swiper-data .data-heading .data-num {
  display: block;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .swiper-data .data-heading .data-num {
    font-size: 10px;
    margin-bottom: 4px;
  }
}

.swiper-data .data-heading .data-num.carbon {
  color: #238443;
}

.swiper-data .data-heading .data-num.risk {
  color: #c8553e;
}

.swiper-data .data-heading .data-num.energy {
  color: #0867ab;
}

.swiper-data .data-heading .data-title {
  display: block;
  color: #1d1d1d;
  font-size: 21px;
}

@media (max-width: 768px) {
  .swiper-data .data-heading .data-title {
    font-size: 14px;
  }
}

.swiper-data .data-heading a, .swiper-data .data-heading button {
  padding: 15px 20px;
  display: inline-block;
  font-size: 15px;
  color: #1d1d1d;
  background: #f8f8f8;
  border-radius: 28px;
}

@media (max-width: 768px) {
  .swiper-data .data-heading a, .swiper-data .data-heading button {
    padding: 10px;
    font-size: 10px;
  }
}

.swiper-data .data-heading a .icon, .swiper-data .data-heading button .icon {
  width: 16px;
  height: 16px;
  margin-left: 15px;
  background-image: url("../images/new_sub/ico-data16@16.png");
}

@media (max-width: 768px) {
  .swiper-data .data-heading a .icon, .swiper-data .data-heading button .icon {
    width: 10px;
    height: 10px;
    margin-left: 5px;
  }
}

.swiper-data .data-heading a .icon.ico-blank, .swiper-data .data-heading button .icon.ico-blank {
  background-image: url("../images/new_sub/ico-blank.png");
}

.swiper-data .data-con {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .swiper-data .data-con {
    flex-direction: column;
    gap: 10px;
  }
}

.swiper-data .data-con .data-con-img img {
  max-width: 220px;
}

@media (max-width: 768px) {
  .swiper-data .data-con .data-con-img img {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .swiper-data .data-con .data-con-img {
    text-align: center;
  }
}

.swiper-data .data-con .data-con-txt p {
  font-size: 17px;
  line-height: 1.5;
  color: #717171;
}

@media (max-width: 768px) {
  .swiper-data .data-con .data-con-txt p {
    font-size: 12px;
  }
}

.swiper-data .data-con .data-li li {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
}

@media (max-width: 768px) {
  .swiper-data .data-con .data-li li {
    font-size: 12px;
    padding-left: 10px;
  }
}

.swiper-data .data-con .data-li li + li {
  margin-top: 5px;
}

.swiper-data .data-con .data-li li:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #717171;
}

@media (max-width: 768px) {
  .swiper-data .data-con .data-li li:after {
    width: 3px;
    height: 3px;
  }
}

.tab--style {
  margin-top: 80px;
}

.tab--style ul[data-js=tabNav] {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fafafa;
  border: 1px solid #c6c6c6;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .tab--style ul[data-js=tabNav] {
    border-radius: 8px;
  }
}

.tab--style ul[data-js=tabNav] > li {
  flex: 1;
  position: relative;
  /* 탭 간 구분선 */
  /* 활성화된 탭 */
}

.tab--style ul[data-js=tabNav] > li + li {
  border-left: 1px solid #c6c6c6;
}

.tab--style ul[data-js=tabNav] > li.active button {
  color: #c8553e;
  font-weight: bold;
}

.tab--style ul[data-js=tabNav] > li button {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  font-size: 17px;
  color: #717171;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  height: 100%;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tab--style ul[data-js=tabNav] > li button {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.tab--style ul[data-js=tabNav] > li button:hover {
  color: #c8553e;
}

.tab--style ul[data-js=tabNav] > li:first-child button {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.tab--style ul[data-js=tabNav] > li:last-child button {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.tab--style ul[data-js=tabNav].carbon > li {
  /* 활성화된 탭 */
}

.tab--style ul[data-js=tabNav].carbon > li.active button {
  color: #238443;
}

.tab--style ul[data-js=tabNav].carbon > li button:hover {
  color: #238443;
}

.stat-txt p {
  font-size: 21px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .stat-txt p {
    font-size: 14px;
  }
}

.stat-txt ul li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stat-txt ul li {
    font-size: 12px;
  }
}

.stat-txt ul li:after {
  position: absolute;
  left: 0;
  top: 8px;
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.stat-txt ul li + li {
  margin-top: 5px;
}

@media (max-width: 768px) {
  .stat-txt ul li + li {
    margin-top: 5px;
  }
}

.climate-adaptation-slide-flex {
  display: flex;
  gap: 30px;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide-flex {
    flex-direction: column;
    gap: 20px;
  }
}

.climate-adaptation-slide-flex .climate-adaptation-slide {
  flex: 1;
}

.climate-adaptation-slide-flex .chart-map {
  width: 450px;
}

.climate-adaptation-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.climate-adaptation-slide.full {
  padding: 0 100px;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide.full {
    padding: 0;
  }
}

.climate-adaptation-slide .slide-header {
  display: flex;
  align-items: flex-start;
  background-image: url("../images/new_sub/carbon-vision-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #238443;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide .slide-header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-size: cover;
    gap: 10px;
    min-height: auto;
  }
}

.climate-adaptation-slide .slide-header .badge--vision {
  display: inline-block;
  background: #fff;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 17px;
  color: #000;
  line-height: 1;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-header .badge--vision {
    padding: 4px 10px;
    font-size: 12px;
  }
}

.climate-adaptation-slide .slide-header .slide-title-wrap {
  flex: 1;
  padding: 20px;
}

.climate-adaptation-slide .slide-header .slide-subtitle {
  font-size: 25px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-header .slide-subtitle {
    font-size: 16px;
  }
}

.climate-adaptation-slide .slide-header .slide-title {
  margin: 10px 0 0;
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-header .slide-title {
    font-size: 25px;
  }
}

.climate-adaptation-slide .strategic-goals {
  padding: 0px 40px;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide .strategic-goals {
    padding: 10px 20px;
  }
}

.climate-adaptation-slide .strategic-goals .goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.climate-adaptation-slide .strategic-goals .goals-list .goal-item {
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  background: #fafafa;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide .strategic-goals .goals-list .goal-item {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }
}

.climate-adaptation-slide .strategic-goals .goals-list .goal-item + li {
  margin-top: 12px;
}

.climate-adaptation-slide .strategic-goals .goals-list .goal-item .goal-number {
  background: #555555;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 17px;
  text-align: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .strategic-goals .goals-list .goal-item .goal-number {
    font-size: 12px;
    padding: 4px 10px;
  }
}

.climate-adaptation-slide .strategic-goals .goals-list .goal-item .goal-text {
  text-align: center;
  flex: 1;
  font-size: 21px;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .strategic-goals .goals-list .goal-item .goal-text {
    font-size: 14px;
  }
}

.climate-adaptation-slide .slide-footer {
  background: #e9eeeb;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  display: flex;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .climate-adaptation-slide .slide-footer {
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 10px;
  }
}

.climate-adaptation-slide .slide-footer .badge--strategy {
  display: inline-block;
  background: #238443;
  color: #fff;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .badge--strategy {
    padding: 4px 10px;
    font-size: 12px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note {
  flex: 1;
  gap: 5px;
  font-size: 20px;
  color: #238443;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note {
    font-size: 16px;
    padding: 10px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .blue .arrow {
  font-size: 10px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .blue .arrow {
    font-size: 8px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .check-goal {
  margin-top: 12px;
  position: relative;
  padding-left: 38px;
  font-size: 25px;
  display: inline-block;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .check-goal {
    font-size: 18px;
    padding-left: 20px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .check-goal:first-child {
  margin-top: 0;
}

.climate-adaptation-slide .slide-footer .footer-note .check-goal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 33px;
  height: 29px;
  background-image: url("../images/new_sub/check-ico.png");
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .check-goal::before {
    width: 20px;
    height: 15px;
    background-size: contain;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .check-goal .blue {
  font-size: 17px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .check-goal .blue {
    font-size: 12px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .bold-goal {
  margin-top: 12px;
  display: block;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .bold-goal {
    font-size: 18px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .gray-goal {
  margin-top: 12px;
  color: #555555;
  font-size: 21px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .gray-goal {
    font-size: 16px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .year-goal {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.climate-adaptation-slide .slide-footer .footer-note .year-goal li {
  background: #fff;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 17px;
  color: #717171;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .year-goal li {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .year-goal li + li {
  position: relative;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .year-goal li + li {
    margin-left: 10px;
  }
}

.climate-adaptation-slide .slide-footer .footer-note .year-goal li + li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("../images/new_sub/goal-arrow.png");
}

@media (max-width: 768px) {
  .climate-adaptation-slide .slide-footer .footer-note .year-goal li + li::before {
    width: 8px;
    height: 8px;
    background-size: contain;
    top: 10px;
    left: -15px;
  }
}

.report-down-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  padding: 20px 10px;
  gap: 40px;
}

@media (max-width: 1024px) {
  .report-down-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 20px 5px;
  }
}

.report-down-wrap p {
  font-size: 19px;
  color: #238443;
}

@media (max-width: 768px) {
  .report-down-wrap p {
    font-size: 13px;
  }
}

.report-down-wrap button {
  font-size: 19px;
  color: #555555;
  padding: 17px 30px;
  border: 1px solid #555555;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 768px) {
  .report-down-wrap button {
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 4px;
  }
}

.report-down-wrap button i {
  display: inline-block;
  vertical-align: inherit;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .report-down-wrap button i {
    margin-left: 8px;
  }
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 중앙 스피너 */
.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.energy-process {
  margin: 0 auto;
}

.energy-process__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .energy-process__row {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .energy-process__row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.energy-process__step {
  position: relative;
  background: #fff;
  border: 2px solid #0867ab;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 75px 30px 30px 30px;
}

@media (max-width: 768px) {
  .energy-process__step {
    padding: 45px 20px 20px 20px;
  }
}

.energy-process__step__ti h2 {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  background-image: url("../images/new_sub/energy-process-ti.png");
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 21px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .energy-process__step__ti h2 {
    font-size: 17px;
    width: 150px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .energy-process__step__ti h2 {
    font-size: 14px;
  }
}

.energy-process__step__ti h2.ti240 {
  width: 240px;
  background-image: url("../images/new_sub/energy-process-ti@240.png");
}

@media (max-width: 1024px) {
  .energy-process__step__ti h2.ti240 {
    width: 190px;
  }
}

.energy-process__step__ti h2.ti300 {
  width: 300px;
  background-image: url("../images/new_sub/energy-process-ti@300.png");
}

@media (max-width: 1024px) {
  .energy-process__step__ti h2.ti300 {
    width: 250px;
  }
}

.energy-process__step__con h3 {
  text-align: center;
  font-size: 24px;
  color: #1d1d1d;
  padding-bottom: 23px;
  border-bottom: 1px solid #c6c6c6;
  font-weight: 600;
  margin-bottom: 23px;
}

@media (max-width: 1024px) {
  .energy-process__step__con h3 {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .energy-process__step__con h3 {
    font-size: 17px;
  }
}

.energy-process__step__con h3 .eris {
  vertical-align: middle;
  margin-right: 10px;
}

.energy-process__step__con ul {
  margin: 0;
}

.energy-process__step__con ul li {
  position: relative;
  font-size: 19px;
  color: #1d1d1d;
  padding-left: 12px;
}

.energy-process__step__con ul li + li {
  margin-top: 10px;
}

.energy-process__step__con ul li:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: subgrid;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1d1d1d;
}

@media (max-width: 1024px) {
  .energy-process__step__con ul li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .energy-process__step__con ul li {
    font-size: 13px;
  }
}

.scenario-analysis {
  display: flex;
  gap: 30px;
  background: #fff;
  align-items: flex-end;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .scenario-analysis {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis {
    gap: 15px;
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.scenario-analysis__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
}

@media (max-width: 768px) {
  .scenario-analysis__column {
    width: 100%;
  }
}

.scenario-analysis__column .scenario-analysis__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1d1d1d;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__title {
    font-size: 21px;
    margin-bottom: 17.5px;
  }
}

.scenario-analysis__column .scenario-analysis__card {
  border: 1px solid #0867ab;
  border-radius: 10px;
  padding: 40px 30px 30px;
  background: #fff;
  width: 100%;
  min-height: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__card {
    padding: 30px 20px 20px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__card {
    padding: 20px 15px 15px;
    min-height: auto;
  }
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__subtitle {
  font-size: 24px;
  color: #1d1d1d;
  padding-bottom: 23px;
  border-bottom: 1px solid #c6c6c6;
  font-weight: 600;
  margin-bottom: 23px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__subtitle {
    font-size: 19px;
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__subtitle {
    font-size: 16px;
    padding-bottom: 11px;
    margin-bottom: 11px;
  }
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__list {
  margin: 0;
  line-height: 1;
  color: #1d1d1d;
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__list li {
  position: relative;
  padding-left: 12px;
  font-size: 19px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list li {
    font-size: 13px;
  }
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__list li:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: subgrid;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1d1d1d;
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li {
    font-size: 16px;
  }
}

.scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li + li {
  border-top: 1px solid #c6c6c6;
  margin-top: 25px;
  padding-top: 25px;
}

@media (max-width: 1024px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li + li {
    margin-top: 21px;
    padding-top: 21px;
  }
}

@media (max-width: 768px) {
  .scenario-analysis__column .scenario-analysis__card .scenario-analysis__list02 li + li {
    margin-top: 17px;
    padding-top: 17px;
  }
}

.public--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px 30px;
}

@media (max-width: 1024px) {
  .public--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

@media (max-width: 768px) {
  .public--grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.public--grid__item__info h3 {
  font-size: 32px;
  color: #1d1d1d;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .public--grid__item__info h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .public--grid__item__info h3 {
    font-size: 21px;
    margin-bottom: 15px;
  }
}

.public--grid__item__info p {
  font-size: 19px;
  line-height: 1.5;
  min-height: 230px;
  color: #1d1d1d;
}

@media (max-width: 1024px) {
  .public--grid__item__info p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .public--grid__item__info p {
    font-size: 13px;
    min-height: auto;
    margin-bottom: 10px;
  }
}

.public--grid__item__info p.min {
  min-height: 200px;
}

@media (max-width: 768px) {
  .public--grid__item__info p.min {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .public--grid__item__img {
    text-align: center;
  }
}

.custom-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .custom-slider {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

.custom-slider__info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 150px;
  width: 150px;
  background: #f0f0f0;
  padding: 24px 25px;
  gap: 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .custom-slider__info {
    width: 100%;
    max-width: none;
    padding: 12px 12px;
  }
}

.custom-slider__value {
  font-size: 32px;
  font-weight: bold;
  color: #1d1d1d;
  line-height: 1;
}

@media (max-width: 768px) {
  .custom-slider__value {
    font-size: 21px;
  }
}

.custom-slider__unit {
  font-size: 17px;
  color: #1d1d1d;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .custom-slider__unit {
    font-size: 12px;
  }
}

.custom-slider__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 17px 32px;
}

@media (max-width: 768px) {
  .custom-slider__inner {
    width: 100%;
    gap: 10px;
    padding: 8px 16px;
  }
}

.custom-slider__play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("../images/new_sub/slide-play.png");
  background-repeat: no-repeat;
  background-position: center;
}

.custom-slider__play.pause {
  background-image: url("../images/new_sub/slide-pause.png");
}

@media (max-width: 768px) {
  .custom-slider__play {
    width: 32px;
    height: 32px;
    background-size: 12px;
  }
}

.custom-slider__area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-slider__years {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555555;
  padding: 0 6px;
}

@media (max-width: 768px) {
  .custom-slider__years {
    font-size: 9px;
  }
}

.custom-slider__barwrap {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

.custom-slider .custom-slider__range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  margin: 0;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
}

.custom-slider .custom-slider__range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #111 0%, #111 calc((var(--value, 0) - var(--min, 0)) / (var(--max, 100) - var(--min, 0)) * 100%), #fff calc((var(--value, 0) - var(--min, 0)) / (var(--max, 100) - var(--min, 0)) * 100%), #fff 100%);
}

.custom-slider .custom-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #1d1d1d;
  border-radius: 50%;
  margin-top: -2px;
  cursor: pointer;
  position: relative;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.custom-slider .custom-slider__range::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: #ddd;
}

.custom-slider .custom-slider__range::-moz-range-progress {
  height: 8px;
  border-radius: 4px;
  background: #111;
}

.custom-slider .custom-slider__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #1d1d1d;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

.custom-slider .custom-slider__range::-ms-fill-lower {
  background: #111;
  border-radius: 4px;
}

.custom-slider .custom-slider__range::-ms-fill-upper {
  background: #ddd;
  border-radius: 4px;
}

.custom-slider .custom-slider__range::-ms-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid #222;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 3;
}

.custom-slider__tooltip {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  background: #555555;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .custom-slider__tooltip {
    padding: 6px 12px;
    font-size: 11px;
  }
}

.custom-slider__tooltip::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #555555 transparent;
  width: 0;
  height: 0;
  display: block;
}

/* toggle-label */
.toggle-ti-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.toggle-ti {
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: #fff;
  min-width: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
}

.toggle-ti p {
  font-size: 13px;
  color: #555555;
}

.toggle-ti .toggle-ti-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.toggle-label input[type=checkbox] {
  display: none;
}

.toggle-label input[type=checkbox]:checked + .toggle-custom::before {
  transform: translateX(20px);
}

.toggle-label input[type=checkbox]:checked + .toggle-custom {
  background-color: #000000;
}

.toggle-label .toggle-custom {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.toggle-label .toggle-custom::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.blank-btn {
  padding: 8px 10px;
  display: inline-block;
  font-size: 15px;
  margin-left: 5px;
  line-height: 1.5;
  color: #fff;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.blank-btn em {
  font-size: 15px;
}

@media (max-width: 768px) {
  .blank-btn em {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .blank-btn {
    padding: 5px;
    font-size: 10px;
  }
}

.blank-btn.carbon {
  background-color: #238443;
}

.blank-btn.carbon .ico-blank {
  background-image: url("../images/new_sub/i02@18x18.png");
}

.blank-btn.energy {
  background-color: #0086d9;
}

.blank-btn.energy .ico-blank {
  background-image: url("../images/new_sub/i01@18x18.png");
}

.blank-btn.risk {
  background-color: #c8553e;
}

.blank-btn.risk .ico-blank {
  background-image: url("../images/new_sub/i03@18x18.png");
}

.blank-btn .icon {
  width: 18px;
  height: 18px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .blank-btn .icon {
    width: 10px;
    height: 10px;
    margin-left: 2px;
  }
}

.ico-tab {
  background-image: url("../images/ico/tab-move.svg");
  width: 20px;
  height: 20px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

.mouse {
  width: 22px;
  height: 52px;
  background-image: url("../images/main/mouse-down.png");
}

.wheel {
  width: 4px;
  height: 8px;
  background: #aaa;
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-move 1.2s infinite;
}

@keyframes wheel-move {
  0% {
    top: 15px;
    opacity: 1;
  }
  70% {
    top: 20px;
    opacity: 0.2;
  }
  100% {
    top: 15px;
    opacity: 1;
  }
}

.mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .mobile-img {
    display: block;
  }
}

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

.eye-on {
  display: flex;
  gap: 3px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.eye-on .icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/new_sub/eye-on.svg");
}

.eye-off {
  display: flex;
  gap: 3px;
  align-items: center;
  color: #cccccc;
  cursor: pointer;
  font-size: 14px;
}

.eye-off .icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/new_sub/eye-off.svg");
}

.mobile-block {
  display: none;
}

@media (max-width: 767px) {
  .mobile-block {
    display: block;
  }
}

.gg-intro img {
  max-width: 100%;
  vertical-align: top;
}

.gg-intro .container {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.gg-intro-top {
  text-align: center;
  padding: 120px 0 0;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .gg-intro-top {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .gg-intro-top {
    padding-top: 60px;
  }
}

.gg-intro-top .container {
  position: relative;
}

.gg-intro-top .container::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -85px;
  right: 0;
  background: url(../images/250726/vector.png) 0 0 no-repeat;
  width: 403px;
  height: 380px;
  z-index: -1;
}

.gg-intro-top .logo {
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .gg-intro-top .logo {
    padding-bottom: 20px;
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.gg-intro-top .text {
  font-size: 21px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .gg-intro-top .text {
    padding-bottom: 30px;
    font-size: 14px;
  }
}

.video-area {
  position: relative;
  padding-bottom: 36%;
  max-width: 996px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
}

@media (max-width: 767px) {
  .video-area {
    padding-bottom: 56.25%;
  }
}

.video-area video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.text-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 80px;
}

@media (max-width: 767px) {
  .text-list {
    padding-top: 40px;
    gap: 15px;
  }
}

.text-list .text-group {
  padding: 40px;
  border-radius: 20px;
  background-color: #f8f8f8;
  text-align: left;
}

@media (max-width: 767px) {
  .text-list .text-group {
    padding: 20px;
  }
}

.text-list .text-group strong {
  font-size: 25px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 767px) {
  .text-list .text-group strong {
    font-size: 18px;
  }
}

.text-list .text-group p {
  margin-top: 20px;
  color: #555555;
  line-height: 1.4;
  font-size: 19px;
}

@media (max-width: 767px) {
  .text-list .text-group p {
    font-size: 12px;
  }
}

.gg-intro-vision {
  margin: 40px 0;
}

.gg-intro-vision .mobile-vision {
  display: none;
  background: linear-gradient(to bottom, #0c775f 0%, #162f69 100%);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.gg-intro-vision .mobile-vision > strong {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
}

.gg-intro-vision .mobile-vision .desc {
  font-size: 14px;
  padding-bottom: 10px;
  text-align: center;
  line-height: 1.4;
  margin-top: 20px;
}

.gg-intro-vision .mobile-vision .desc div {
  font-size: 12px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  background-color: #fff;
  border: 4px solid #3c927f;
  color: #3c927f;
  margin: 0 auto;
  margin-bottom: 10px;
  font-weight: 700;
}

.gg-intro-vision .mobile-vision ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gg-intro-vision .mobile-vision ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
}

.gg-intro-vision .mobile-vision ul li strong {
  font-size: 15px;
  font-weight: 700;
  color: #0e9850;
}

.gg-intro-vision .mobile-vision ul li p {
  font-size: 13px;
}

.gg-intro-vision .mobile-vision ul li p b {
  display: block;
}

@media (max-width: 767px) {
  .gg-intro-vision {
    margin: 20px 0;
  }

  .gg-intro-vision .img-box {
    display: none;
  }

  .gg-intro-vision .mobile-vision {
    display: block;
  }
}

.gg-intro-value .container {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 28px 40px;
}

@media (max-width: 767px) {
  .gg-intro-value .container {
    padding: 20px;
  }
}

.gg-intro-value .container > strong {
  color: #1d1d1d;
  font-weight: 600;
  line-height: 1;
  display: block;
  font-size: 25px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .gg-intro-value .container > strong {
    font-size: 18px;
  }
}

.gg-intro-value .container .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gg-intro-value .container .grid .grid-item {
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item {
    padding: 20px;
  }
}

.gg-intro-value .container .grid .grid-item-title {
  text-align: center;
  gap: 10px;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item-title {
    gap: 5px;
  }
}

.gg-intro-value .container .grid .grid-item-title b {
  display: inline-block;
  color: #1d1d1d;
  font-weight: 700;
  font-size: 32px;
  position: relative;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item-title b {
    font-size: 20px;
  }
}

.gg-intro-value .container .grid .grid-item-title b::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -35px;
  top: 0;
  width: 25px;
  height: 25px;
  background-position: 0 0;
}

.gg-intro-value .container .grid .grid-item-title p {
  font-size: 25px;
  color: #000;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item-title p {
    font-size: 18px;
  }
}

.gg-intro-value .container .grid .grid-item .text {
  color: #1b98a4;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .text {
    padding-top: 10px;
  }
}

.gg-intro-value .container .grid .grid-item .text p {
  font-size: 21px;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .text p {
    font-size: 14px;
  }
}

.gg-intro-value .container .grid .grid-item .text strong {
  font-size: 21px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .text strong {
    font-size: 14px;
  }
}

.gg-intro-value .container .grid .grid-item .round-list {
  padding: 20px 0 30px;
}

.gg-intro-value .container .grid .grid-item .round-list p {
  text-align: center;
  color: #fff;
  border-radius: 100px;
  font-size: 19px;
  margin-bottom: 12px;
  padding: 12px 0;
}

.gg-intro-value .container .grid .grid-item .round-list p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .round-list p {
    font-size: 12px;
  }
}

.gg-intro-value .container .grid .grid-item .point-list strong {
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  color: #1d1d1d;
  padding-bottom: 15px;
  display: block;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .point-list strong {
    font-size: 14px;
  }
}

.gg-intro-value .container .grid .grid-item .point-list ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #555;
  font-size: 17px;
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .gg-intro-value .container .grid .grid-item .point-list ul li {
    font-size: 12px;
  }
}

.gg-intro-value .container .grid .grid-item .point-list ul li:last-child {
  margin-bottom: 0;
}

.gg-intro-value .container .grid .grid-item .point-list ul li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #555;
  border-radius: 50%;
}

.gg-intro-value .container .grid .grid-item.ty1 b::after {
  background-image: url(../images/250726/vector-02.png);
}

.gg-intro-value .container .grid .grid-item.ty1 .round-list p:nth-child(1) {
  background-color: #49adb6;
}

.gg-intro-value .container .grid .grid-item.ty1 .round-list p:nth-child(2) {
  background-color: #76c1c8;
}

.gg-intro-value .container .grid .grid-item.ty1 .round-list p:nth-child(3) {
  background-color: #8dcbd1;
}

.gg-intro-value .container .grid .grid-item.ty2 .text {
  color: #172a69;
}

.gg-intro-value .container .grid .grid-item.ty2 b::after {
  background-image: url(../images/250726/vector-03.png);
}

.gg-intro-value .container .grid .grid-item.ty2 .round-list p:nth-child(1) {
  background-color: #455587;
}

.gg-intro-value .container .grid .grid-item.ty2 .round-list p:nth-child(2) {
  background-color: #747fa5;
}

.gg-intro-value .container .grid .grid-item.ty2 .round-list p:nth-child(3) {
  background-color: #8b94b4;
}

.gg-intro-value .container .grid .grid-item.ty3 .text {
  color: #0e9850;
}

.gg-intro-value .container .grid .grid-item.ty3 b::after {
  background-image: url(../images/250726/vector-04.png);
}

.gg-intro-value .container .grid .grid-item.ty3 .round-list p:nth-child(1) {
  background-color: #3ead73;
}

.gg-intro-value .container .grid .grid-item.ty3 .round-list p:nth-child(2) {
  background-color: #6ec196;
}

.gg-intro-value .container .grid .grid-item.ty3 .round-list p:nth-child(3) {
  background-color: #86cba7;
}

.gg-intro-special {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.gg-intro-special .container {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 28px 40px;
}

@media (max-width: 1420px) {
  .gg-intro-special .container {
    border-radius: 0px;
    padding: 20px;
  }
}

.gg-intro-special .container > strong {
  color: #1d1d1d;
  font-weight: 600;
  line-height: 1;
  display: block;
  font-size: 25px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .gg-intro-special .container > strong {
    font-size: 18px;
  }
}

.gg-intro-special .container .desc {
  color: #555555;
  line-height: 1.4;
  font-size: 19px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .gg-intro-special .container .desc {
    font-size: 14px;
  }
}

.gg-intro-special .block-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gg-intro-special .block-list .box {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding: 30px;
}

@media (max-width: 767px) {
  .gg-intro-special .block-list .box {
    padding: 20px;
  }
}

.gg-intro-special .block-list .box strong {
  font-size: 19px;
  font-weight: 700;
  color: #0e9850;
  display: block;
  padding-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .gg-intro-special .block-list .box strong {
    font-size: 14px;
  }
}

.gg-intro-special .block-list .box strong::after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 0;
  top: 0;
}

.gg-intro-special .block-list .box p {
  color: #555;
  line-height: 1.4;
  font-size: 17px;
}

@media (max-width: 767px) {
  .gg-intro-special .block-list .box p {
    font-size: 12px;
  }
}

.gg-intro-special .block-list .box:nth-child(1) strong::after {
  background-image: url(../images/250726/icon-01.png);
}

.gg-intro-special .block-list .box:nth-child(2) strong::after {
  background-image: url(../images/250726/icon-02.png);
}

.gg-intro-special .block-list .box:nth-child(3) strong::after {
  background-image: url(../images/250726/icon-03.png);
}

.gg-intro-special .block-list .box:nth-child(4) strong::after {
  background-image: url(../images/250726/icon-04.png);
}

.gg-intro-special .block-list .box:nth-child(5) strong::after {
  background-image: url(../images/250726/icon-05.png);
}

.gg-intro-end {
  background-color: #2a316a;
  padding-top: 250px;
  padding-bottom: 120px;
  margin-top: -120px;
}

@media (max-width: 767px) {
  .gg-intro-end {
    padding-top: 60px;
    padding-bottom: 40px;
    margin-top: 0;
  }
}

.gg-intro-end .container {
  margin: 0 auto;
  max-width: 1000px;
}

.gg-intro-end h3 {
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .gg-intro-end h3 {
    font-size: 24px;
  }
}

.gg-intro-end p {
  text-align: center;
  color: #fff;
  font-size: 21px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .gg-intro-end p {
    font-size: 14px;
  }
}

.gg-intro-end .video-area {
  padding-bottom: 56%;
}

@media (max-width: 767px) {
  .gg-intro-end .video-area {
    padding-bottom: 56.25%;
  }
}

.gg-satellite .container {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.satellite-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  background: url(../images/250727/satellite-bg.png) no-repeat center center/cover;
  color: #fff;
  margin-top: 120px;
}

@media (max-width: 1440px) {
  .satellite-top {
    height: 450px;
  }
}

@media (max-width: 1024px) {
  .satellite-top {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .satellite-top {
    height: 300px;
  }
}

.satellite-top h3 {
  font-size: 100px;
}

@media (max-width: 1440px) {
  .satellite-top h3 {
    font-size: 80px;
  }
}

@media (max-width: 1024px) {
  .satellite-top h3 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .satellite-top h3 {
    font-size: 36px;
    margin-bottom: 2rem;
  }
}

.satellite-top p {
  font-size: 40px;
}

@media (max-width: 1440px) {
  .satellite-top p {
    font-size: 35px;
  }
}

@media (max-width: 1024px) {
  .satellite-top p {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .satellite-top p {
    font-size: 18px;
  }
}

.line-title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .line-title {
    margin-bottom: 30px;
  }
}

.line-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #02973b;
  position: absolute;
  top: 50%;
  margin: -5px 0 0 0;
  left: 0;
}

@media (max-width: 767px) {
  .line-title::after {
    height: 4px;
    margin: -2px 0 0 0;
  }
}

.line-title span {
  position: relative;
  z-index: 2;
  background-color: #fff;
  color: #02973b;
  font-weight: 700;
  font-size: 52px;
  padding: 0 10px;
}

@media (max-width: 1440px) {
  .line-title span {
    font-size: 45px;
  }
}

@media (max-width: 1024px) {
  .line-title span {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .line-title span {
    font-size: 22px;
    padding: 0 8px;
  }
}

.satellite-bg {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .satellite-bg {
    padding: 40px 0;
  }
}

.satellite-bg .point-bg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 767px) {
  .satellite-bg .point-bg {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.satellite-bg .point-bg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #02973b;
  border-radius: 20px;
  text-align: center;
  gap: 20px;
  padding: 50px 0;
}

@media (max-width: 767px) {
  .satellite-bg .point-bg-item {
    padding: 30px 20px;
    gap: 15px;
  }
}

.satellite-bg .point-bg-item .subject {
  font-size: 32px;
  color: #02973b;
}

@media (max-width: 1024px) {
  .satellite-bg .point-bg-item .subject {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-bg-item .subject {
    font-size: 15px;
  }
}

.satellite-bg .point-bg-item .subject b {
  display: block;
}

.satellite-bg .point-bg-item .desc {
  color: #555555;
  line-height: 1.5;
  font-weight: 500;
  font-size: 25px;
  padding-top: 30px;
}

@media (max-width: 1024px) {
  .satellite-bg .point-bg-item .desc {
    font-size: 22px;
    padding-top: 25px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-bg-item .desc {
    font-size: 13px;
    padding-top: 10px;
  }
}

.satellite-bg .point-infos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .satellite-bg .point-infos {
    gap: 25px;
  }
}

.satellite-bg .point-infos-item {
  border: 1px solid #c6c6c6;
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  padding: 50px;
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.satellite-bg .point-infos-item::after {
  display: block;
  content: "";
  background: url(../images/250727/leaf.png) no-repeat center center/contain;
  width: 403px;
  height: 380px;
  right: 0;
  bottom: -90px;
  position: absolute;
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item::after {
    width: 200px;
    height: 190px;
    bottom: -45px;
  }
}

.satellite-bg .point-infos-item strong {
  display: block;
  font-size: 32px;
  color: #1d1d1d;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .satellite-bg .point-infos-item strong {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
}

.satellite-bg .point-infos-item dl {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item dl {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
}

.satellite-bg .point-infos-item dl:last-child {
  margin-bottom: 0;
}

.satellite-bg .point-infos-item dl dt {
  font-size: 25px;
  color: #555555;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .satellite-bg .point-infos-item dl dt {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item dl dt {
    font-size: 15px;
  }
}

.satellite-bg .point-infos-item dl dd {
  font-size: 25px;
  color: #555555;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .satellite-bg .point-infos-item dl dd {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item dl dd {
    font-size: 14px;
  }
}

.satellite-bg .point-infos-item dl dd small {
  display: block;
  font-weight: 400;
  font-size: 21px;
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-item dl dd small {
    font-size: 12px;
  }
}

.satellite-bg .point-infos-desc {
  font-size: 25px;
  color: #555555;
  line-height: 1.5;
  font-weight: 500;
}

.satellite-bg .point-infos-desc small {
  font-size: 21px;
}

@media (max-width: 1024px) {
  .satellite-bg .point-infos-desc {
    font-size: 22px;
  }

  .satellite-bg .point-infos-desc small {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .satellite-bg .point-infos-desc {
    font-size: 13px;
  }

  .satellite-bg .point-infos-desc small {
    font-size: 11px;
  }
}

.satellite-plan ol li {
  position: relative;
  background-color: #e6f4ed;
  border-radius: 20px;
  width: 920px;
  margin-bottom: 24px;
  padding: 50px;
}

@media (max-width: 1024px) {
  .satellite-plan ol li {
    width: 100%;
    margin-left: 0 !important;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .satellite-plan ol li {
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
  }
}

.satellite-plan ol li:last-child {
  margin-bottom: 0;
}

.satellite-plan ol li:nth-child(even) {
  background-color: #fef4e8;
}

.satellite-plan ol li:nth-child(even) .num {
  background-color: #f8941c;
}

.satellite-plan ol li:nth-child(1) {
  margin-left: 170px;
}

.satellite-plan ol li:nth-child(2) {
  margin-left: 360px;
}

.satellite-plan ol li:nth-child(3) {
  margin-left: 50px;
}

.satellite-plan ol li:nth-child(4) {
  margin-left: 480px;
}

.satellite-plan ol li:nth-child(5) {
  margin-left: 170px;
}

.satellite-plan ol li:nth-child(6) {
  margin-left: 360px;
}

.satellite-plan ol li .num {
  position: absolute;
  color: #fff;
  background-color: #02973b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  left: -50px;
  top: 25px;
  border: 4px solid #fff;
  width: 80px;
  height: 80px;
}

@media (max-width: 1024px) {
  .satellite-plan ol li .num {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .satellite-plan ol li .num {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.satellite-plan ol li .subject {
  font-size: 32px;
  color: #02973b;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .satellite-plan ol li .subject {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .satellite-plan ol li .subject {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.satellite-plan ol li .subject em {
  font-style: normal;
  color: #02973b;
  font-size: 25px;
}

@media (max-width: 767px) {
  .satellite-plan ol li .subject em {
    font-size: 18px;
  }
}

.satellite-plan ol li .desc {
  color: #555555;
  line-height: 1.5;
  font-weight: 500;
  font-size: 25px;
}

@media (max-width: 1024px) {
  .satellite-plan ol li .desc {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .satellite-plan ol li .desc {
    font-size: 14px;
  }
}

.satellite-plan ol li .desc2 {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .satellite-plan ol li .desc2 {
    margin-top: 20px;
  }
}

.satellite-plan ol li .desc2 strong {
  color: #02973b;
  font-size: 21px;
  font-weight: 700;
  display: block;
}

@media (max-width: 767px) {
  .satellite-plan ol li .desc2 strong {
    font-size: 14px;
  }
}

.satellite-plan ol li .desc2 p {
  font-size: 21px;
  color: #02973b;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .satellite-plan ol li .desc2 p {
    font-size: 14px;
  }
}

.satellite-photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #02973b;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  margin-top: 80px;
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .satellite-photo {
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .satellite-photo {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    border-radius: 15px;
  }
}

.satellite-photo-item img {
  max-width: 100%;
  vertical-align: top;
}

.satellite-photo-item p {
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .satellite-photo-item p {
    font-size: 22px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .satellite-photo-item p {
    font-size: 18px;
    margin-top: 10px;
  }
}

.gg-carbon {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .gg-carbon {
    padding: 80px 0;
  }
}

.gg-carbon .container {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.gg-carbon-top {
  display: flex;
  align-items: center;
  gap: 110px;
  margin-bottom: 110px;
}

@media (max-width: 1024px) {
  .gg-carbon-top {
    gap: 60px;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.gg-carbon-top .details .title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .gg-carbon-top .details .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-top .details .title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.gg-carbon-top .details .desc p {
  font-size: 19px;
  color: #1d1d1d;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .gg-carbon-top .details .desc p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-top .details .desc p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .gg-carbon-top .details .desc p br {
    display: none;
  }
}

.gg-carbon-top .details .blank-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  color: #fff;
  border-radius: 8px;
  background-color: #238443;
  padding: 20px 33px;
}

@media (max-width: 1024px) {
  .gg-carbon-top .details .blank-link a {
    font-size: 19px;
    padding: 18px 28px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-top .details .blank-link a {
    font-size: 16px;
    padding: 15px 25px;
  }
}

.gg-carbon-top .details .blank-link a i {
  display: block;
  background: url(../images/250727/link.png) no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.gg-carbon-top .image img {
  max-width: 100%;
  vertical-align: top;
}

.gg-carbon-section + .gg-carbon-section {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .gg-carbon-section + .gg-carbon-section {
    margin-top: 80px;
  }
}

.gg-carbon-section .hgroup h3 {
  color: #1d1d1d;
  font-size: 32px;
  margin-bottom: 35px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .hgroup h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .hgroup h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.gg-carbon-section .hgroup .desc {
  font-size: 19px;
  color: #1d1d1d;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .hgroup .desc {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .hgroup .desc {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .gg-carbon-section .hgroup .desc br {
    display: none;
  }
}

.gg-carbon-section .step-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .step-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .step-area {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.gg-carbon-section .step-area .step-area-item {
  border: 2px solid #238443;
  border-radius: 20px;
  padding: 0 30px;
  height: 300px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .step-area .step-area-item {
    padding: 0 25px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .step-area .step-area-item {
    padding: 0 20px;
    height: auto;
    min-height: 250px;
  }
}

.gg-carbon-section .step-area .step-area-item .num {
  background: url(../images/250727/step-badge.png) no-repeat center center/contain;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .gg-carbon-section .step-area .step-area-item .num {
    width: 180px;
    height: 35px;
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .step-area .step-area-item .num {
    width: 160px;
    height: 32px;
    font-size: 17px;
  }
}

.gg-carbon-section .step-area .step-area-item .subject {
  font-size: 24px;
  color: #1d1d1d;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c6c6c6;
  text-align: center;
}

@media (max-width: 1024px) {
  .gg-carbon-section .step-area .step-area-item .subject {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .step-area .step-area-item .subject {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.gg-carbon-section .step-area .step-area-item .lst li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  color: #1d1d1d;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .gg-carbon-section .step-area .step-area-item .lst li {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .step-area .step-area-item .lst li {
    font-size: 16px;
  }
}

.gg-carbon-section .step-area .step-area-item .lst li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #1d1d1d;
  color: #1d1d1d;
  flex-shrink: 0;
}

.gg-carbon-section .image-area {
  background-color: #f8f8f8;
  border: 1px solid #c6c6c6;
  padding: 60px;
  border-radius: 20px;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .gg-carbon-section .image-area {
    padding: 30px;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .image-area {
    padding: 15px;
    gap: 10px;
    flex-direction: column;
  }
}

.gg-carbon-section .image-area-item img {
  max-width: 100%;
  vertical-align: top;
}

.gg-carbon-section .text-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .text-area {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .text-area {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.gg-carbon-section .text-area-item {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #238443;
  border-radius: 20px;
  padding: 40px 30px;
}

@media (max-width: 1024px) {
  .gg-carbon-section .text-area-item {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .text-area-item {
    padding: 30px 20px;
  }
}

.gg-carbon-section .text-area-item-title {
  color: #1d1d1d;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c6c6c6;
}

@media (max-width: 1024px) {
  .gg-carbon-section .text-area-item-title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .text-area-item-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.gg-carbon-section .text-area-item-desc {
  font-size: 19px;
  line-height: 1.4;
  color: #1d1d1d;
}

@media (max-width: 1024px) {
  .gg-carbon-section .text-area-item-desc {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .gg-carbon-section .text-area-item-desc {
    font-size: 16px;
  }
}

.gg-carbon-section .block {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .gg-carbon-section .block {
    margin-top: 80px;
  }
}

.gg-carbon-section .block .image-area {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .gg-carbon-section .block .image-area {
    margin-top: 20px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  clip: rect(0 0 0 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));
}

.w-full {
  width: 100%;
}

.h-0,
.w-0 {
  width: 0px;
}

.h-5,
.w-5 {
  width: 5px;
}

.h-10,
.w-10 {
  width: 10px;
}

.h-15,
.w-15 {
  width: 15px;
}

.h-20,
.w-20 {
  width: 20px;
}

.h-25,
.w-25 {
  width: 25px;
}

.h-30,
.w-30 {
  width: 30px;
}

.h-35,
.w-35 {
  width: 35px;
}

.h-40,
.w-40 {
  width: 40px;
}

.h-45,
.w-45 {
  width: 45px;
}

.h-50,
.w-50 {
  width: 50px;
}

.h-55,
.w-55 {
  width: 55px;
}

.h-60,
.w-60 {
  width: 60px;
}

.h-65,
.w-65 {
  width: 65px;
}

.h-70,
.w-70 {
  width: 70px;
}

.h-75,
.w-75 {
  width: 75px;
}

.h-80,
.w-80 {
  width: 80px;
}

.h-85,
.w-85 {
  width: 85px;
}

.h-90,
.w-90 {
  width: 90px;
}

.h-95,
.w-95 {
  width: 95px;
}

.h-100,
.w-100 {
  width: 100px;
}

.h-105,
.w-105 {
  width: 105px;
}

.h-110,
.w-110 {
  width: 110px;
}

.h-115,
.w-115 {
  width: 115px;
}

.h-120,
.w-120 {
  width: 120px;
}

.h-125,
.w-125 {
  width: 125px;
}

.h-130,
.w-130 {
  width: 130px;
}

.h-135,
.w-135 {
  width: 135px;
}

.h-140,
.w-140 {
  width: 140px;
}

.h-145,
.w-145 {
  width: 145px;
}

.h-150,
.w-150 {
  width: 150px;
}

.h-155,
.w-155 {
  width: 155px;
}

.h-160,
.w-160 {
  width: 160px;
}

.h-165,
.w-165 {
  width: 165px;
}

.h-170,
.w-170 {
  width: 170px;
}

.h-175,
.w-175 {
  width: 175px;
}

.h-180,
.w-180 {
  width: 180px;
}

.h-185,
.w-185 {
  width: 185px;
}

.h-190,
.w-190 {
  width: 190px;
}

.h-195,
.w-195 {
  width: 195px;
}

.h-200,
.w-200 {
  width: 200px;
}

.h-205,
.w-205 {
  width: 205px;
}

.h-210,
.w-210 {
  width: 210px;
}

.h-215,
.w-215 {
  width: 215px;
}

.h-220,
.w-220 {
  width: 220px;
}

.h-225,
.w-225 {
  width: 225px;
}

.h-230,
.w-230 {
  width: 230px;
}

.h-235,
.w-235 {
  width: 235px;
}

.h-240,
.w-240 {
  width: 240px;
}

.h-245,
.w-245 {
  width: 245px;
}

.h-250,
.w-250 {
  width: 250px;
}

.h-255,
.w-255 {
  width: 255px;
}

.h-260,
.w-260 {
  width: 260px;
}

.h-265,
.w-265 {
  width: 265px;
}

.h-270,
.w-270 {
  width: 270px;
}

.h-275,
.w-275 {
  width: 275px;
}

.h-280,
.w-280 {
  width: 280px;
}

.h-285,
.w-285 {
  width: 285px;
}

.h-290,
.w-290 {
  width: 290px;
}

.h-295,
.w-295 {
  width: 295px;
}

.h-300,
.w-300 {
  width: 300px;
}

.h-305,
.w-305 {
  width: 305px;
}

.h-310,
.w-310 {
  width: 310px;
}

.h-315,
.w-315 {
  width: 315px;
}

.h-320,
.w-320 {
  width: 320px;
}

.h-325,
.w-325 {
  width: 325px;
}

.h-330,
.w-330 {
  width: 330px;
}

.h-335,
.w-335 {
  width: 335px;
}

.h-340,
.w-340 {
  width: 340px;
}

.h-345,
.w-345 {
  width: 345px;
}

.h-350,
.w-350 {
  width: 350px;
}

.h-355,
.w-355 {
  width: 355px;
}

.h-360,
.w-360 {
  width: 360px;
}

.h-365,
.w-365 {
  width: 365px;
}

.h-370,
.w-370 {
  width: 370px;
}

.h-375,
.w-375 {
  width: 375px;
}

.h-380,
.w-380 {
  width: 380px;
}

.h-385,
.w-385 {
  width: 385px;
}

.h-390,
.w-390 {
  width: 390px;
}

.h-395,
.w-395 {
  width: 395px;
}

.h-400,
.w-400 {
  width: 400px;
}

.h-405,
.w-405 {
  width: 405px;
}

.h-410,
.w-410 {
  width: 410px;
}

.h-415,
.w-415 {
  width: 415px;
}

.h-420,
.w-420 {
  width: 420px;
}

.h-425,
.w-425 {
  width: 425px;
}

.h-430,
.w-430 {
  width: 430px;
}

.h-435,
.w-435 {
  width: 435px;
}

.h-440,
.w-440 {
  width: 440px;
}

.h-445,
.w-445 {
  width: 445px;
}

.h-450,
.w-450 {
  width: 450px;
}

.h-455,
.w-455 {
  width: 455px;
}

.h-460,
.w-460 {
  width: 460px;
}

.h-465,
.w-465 {
  width: 465px;
}

.h-470,
.w-470 {
  width: 470px;
}

.h-475,
.w-475 {
  width: 475px;
}

.h-480,
.w-480 {
  width: 480px;
}

.h-485,
.w-485 {
  width: 485px;
}

.h-490,
.w-490 {
  width: 490px;
}

.h-495,
.w-495 {
  width: 495px;
}

.h-500,
.w-500 {
  width: 500px;
}

.h-505,
.w-505 {
  width: 505px;
}

.h-510,
.w-510 {
  width: 510px;
}

.h-515,
.w-515 {
  width: 515px;
}

.h-520,
.w-520 {
  width: 520px;
}

.h-525,
.w-525 {
  width: 525px;
}

.h-530,
.w-530 {
  width: 530px;
}

.h-535,
.w-535 {
  width: 535px;
}

.h-540,
.w-540 {
  width: 540px;
}

.h-545,
.w-545 {
  width: 545px;
}

.h-550,
.w-550 {
  width: 550px;
}

.h-555,
.w-555 {
  width: 555px;
}

.h-560,
.w-560 {
  width: 560px;
}

.h-565,
.w-565 {
  width: 565px;
}

.h-570,
.w-570 {
  width: 570px;
}

.h-575,
.w-575 {
  width: 575px;
}

.h-580,
.w-580 {
  width: 580px;
}

.h-585,
.w-585 {
  width: 585px;
}

.h-590,
.w-590 {
  width: 590px;
}

.h-595,
.w-595 {
  width: 595px;
}

.h-600,
.w-600 {
  width: 600px;
}

.h-605,
.w-605 {
  width: 605px;
}

.h-610,
.w-610 {
  width: 610px;
}

.h-615,
.w-615 {
  width: 615px;
}

.h-620,
.w-620 {
  width: 620px;
}

.h-625,
.w-625 {
  width: 625px;
}

.h-630,
.w-630 {
  width: 630px;
}

.h-635,
.w-635 {
  width: 635px;
}

.h-640,
.w-640 {
  width: 640px;
}

.h-645,
.w-645 {
  width: 645px;
}

.h-650,
.w-650 {
  width: 650px;
}

.h-655,
.w-655 {
  width: 655px;
}

.h-660,
.w-660 {
  width: 660px;
}

.h-665,
.w-665 {
  width: 665px;
}

.h-670,
.w-670 {
  width: 670px;
}

.h-675,
.w-675 {
  width: 675px;
}

.h-680,
.w-680 {
  width: 680px;
}

.h-685,
.w-685 {
  width: 685px;
}

.h-690,
.w-690 {
  width: 690px;
}

.h-695,
.w-695 {
  width: 695px;
}

.h-700,
.w-700 {
  width: 700px;
}

.h-705,
.w-705 {
  width: 705px;
}

.h-710,
.w-710 {
  width: 710px;
}

.h-715,
.w-715 {
  width: 715px;
}

.h-720,
.w-720 {
  width: 720px;
}

.h-725,
.w-725 {
  width: 725px;
}

.h-730,
.w-730 {
  width: 730px;
}

.h-735,
.w-735 {
  width: 735px;
}

.h-740,
.w-740 {
  width: 740px;
}

.h-745,
.w-745 {
  width: 745px;
}

.h-750,
.w-750 {
  width: 750px;
}

.h-755,
.w-755 {
  width: 755px;
}

.h-760,
.w-760 {
  width: 760px;
}

.h-765,
.w-765 {
  width: 765px;
}

.h-770,
.w-770 {
  width: 770px;
}

.h-775,
.w-775 {
  width: 775px;
}

.h-780,
.w-780 {
  width: 780px;
}

.h-785,
.w-785 {
  width: 785px;
}

.h-790,
.w-790 {
  width: 790px;
}

.h-795,
.w-795 {
  width: 795px;
}

.h-800,
.w-800 {
  width: 800px;
}

.h-805,
.w-805 {
  width: 805px;
}

.h-810,
.w-810 {
  width: 810px;
}

.h-815,
.w-815 {
  width: 815px;
}

.h-820,
.w-820 {
  width: 820px;
}

.h-825,
.w-825 {
  width: 825px;
}

.h-830,
.w-830 {
  width: 830px;
}

.h-835,
.w-835 {
  width: 835px;
}

.h-840,
.w-840 {
  width: 840px;
}

.h-845,
.w-845 {
  width: 845px;
}

.h-850,
.w-850 {
  width: 850px;
}

.h-855,
.w-855 {
  width: 855px;
}

.h-860,
.w-860 {
  width: 860px;
}

.h-865,
.w-865 {
  width: 865px;
}

.h-870,
.w-870 {
  width: 870px;
}

.h-875,
.w-875 {
  width: 875px;
}

.h-880,
.w-880 {
  width: 880px;
}

.h-885,
.w-885 {
  width: 885px;
}

.h-890,
.w-890 {
  width: 890px;
}

.h-895,
.w-895 {
  width: 895px;
}

.h-900,
.w-900 {
  width: 900px;
}

.h-905,
.w-905 {
  width: 905px;
}

.h-910,
.w-910 {
  width: 910px;
}

.h-915,
.w-915 {
  width: 915px;
}

.h-920,
.w-920 {
  width: 920px;
}

.h-925,
.w-925 {
  width: 925px;
}

.h-930,
.w-930 {
  width: 930px;
}

.h-935,
.w-935 {
  width: 935px;
}

.h-940,
.w-940 {
  width: 940px;
}

.h-945,
.w-945 {
  width: 945px;
}

.h-950,
.w-950 {
  width: 950px;
}

.h-955,
.w-955 {
  width: 955px;
}

.h-960,
.w-960 {
  width: 960px;
}

.h-965,
.w-965 {
  width: 965px;
}

.h-970,
.w-970 {
  width: 970px;
}

.h-975,
.w-975 {
  width: 975px;
}

.h-980,
.w-980 {
  width: 980px;
}

.h-985,
.w-985 {
  width: 985px;
}

.h-990,
.w-990 {
  width: 990px;
}

.h-995,
.w-995 {
  width: 995px;
}

.h-1000,
.w-1000 {
  width: 1000px;
}

.w-auto {
  width: auto;
}

/*# sourceMappingURL=styles.css.map */

.sc1 .text .slogan-wrapper {
  text-align: center;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
}

.sc1 .text .slogan-line {
  opacity: 0;
  width: 100%;
  transform: translateY(20px);
  color: #fff;
  font-size: 12rem;
  padding: 4rem;
}

@media (max-width: 1170px) {
  .sc1 .text .slogan-line {
    font-size: 8rem;
  }
}

@media (max-width: 1024px) {
  .sc1 .text .slogan-line {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .sc1 .text .slogan-line {
    font-size: 4rem;
  }
}

.sc1 .text .slogan-line.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 2s ease;
  color: #fff;
  font-size: 12rem;
}

@media (max-width: 1170px) {
  .sc1 .text .slogan-line.visible {
    font-size: 8rem;
  }
}

@media (max-width: 1024px) {
  .sc1 .text .slogan-line.visible {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .sc1 .text .slogan-line.visible {
    font-size: 4rem;
  }
}