:root {
    --color-white: #FFF;
    --color-teal: #00AFAC;
    --color-dark-teal: #083744;
    --color-green: #029542;
    --color-dark-green: #058A43;
    --color-light-green: #8AE68D;
    --color-purple: #A348FF;
    --color-blue-violet: #7A63FF;
    --color-black: #0C0D13;
    --color-text-black: #00171D;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:visited {
    text-decoration: none;
}

p {
    margin: 0;
    line-height: 1.4;
}

.icon-login{
	background-image: url(../img/icon_login.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 16px;
	height: 16px;
	margin: 5px;
	
}
.icon-user::before{
	content: none !important;
}
.icon-user{
	background-image: url(../img/icon_user.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 16px;
	height: 16px;
	margin: 5px;
	
}

.mega-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 67px 0 80px;
    background-color: rgba(244, 245, 246, 1);
    box-shadow: 0px 30px 50px 0 rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mega-menu--is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu__container {
    margin: 0 auto;
    width: 1280px;
}

.mega-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu__title {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: var(--color-dark-green);
}

.mega-menu__close-button {
    width: 28px;
    height: 28px;
}

.mega-menu__close-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.mega-menu__content {
/*     margin: 40px 0 0; */
    display: flex;
    width: 100%;
    column-gap: 20px;
    border-top: 1px solid var(--color-dark-green);
}

.mega-menu-nav {
    flex: 1;
}

.mega-menu-nav__title {
    margin: 0;
    padding: 20px 0;
    line-height: 1;
    color: var(--color-dark-green);
    font-size: 19px;
    font-weight: 700;
    text-align: start;
}

.mega-menu-nav__list {
    padding: 18px 0 0;
    display: flex;
    width: 90%;
    flex-direction: column;
    row-gap: 16px;
    border-top: 1px solid var(--color-dark-green);
}
.sitemap-entry:last-child .mega-menu-nav__list {
    width: 100%;
}

.mega-menu-nav__item {
    font-size: 16px;
    font-weight: 500;
    text-align: start;
}

.mega-menu-nav__item:hover {
    font-weight: 700 !important;
    text-decoration: underline;
    background: url("../img/icon_arrow-out.png") no-repeat right center;
    background-size: 12px 12px;
}

.mega-menu-nav__link,
.mega-menu-nav__link:visited {
    color: var(--color-text-black);
}


.global-header {
    background-color: var(--color-black);
}

.global-header__container {
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    width: 1280px;
    align-items: center;
}

.global-header__logo {
    height: 20px;
}

.global-header__logo-image {
    width: auto;
    height: 100%;
}

.global-header__ticker {
    margin: 0 0 0 30px;
    flex: 1;
}

.ticker {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.ticker__icon {
    width: 15px;
    height: 15px;
}

.ticker__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.ticker__list {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}

.ticker__item {
    color: var(--color-white);
    font-size: 13px;
}

.ticker__item:last-child {
    display: none;
}

.global-featured-nav {
    margin: 0;
    padding: 0 20px;
    width: auto;
    border-right: 1px solid var(--color-white);
}

.global-featured-nav__list {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    column-gap: 26px;
}

.global-featured-nav__item {
    line-height: 1;
}

.global-featured-nav__link,
.global-featured-nav__link:visited {
    color: var(--color-white);
    font-size: 13px;
}

.global-account-nav {
    margin: 0;
    padding: 0 0 0 20px;
    width: auto;
}

.global-account-nav__list {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    column-gap: 13px;
}

.global-account-nav__item {
    line-height: 1;
}

.global-account-nav__link,
.global-account-nav__link:visited {
    display: flex;
    color: var(--color-white);
    font-size: 13px;
    column-gap: 8px;
    justify-content: center;
    align-items: center;
}

.global-account-nav__icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

.main-content {
    background-color: var(--color-dark-teal);
}



.page-nav {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.page-nav__logo {
    height: 28px;
}

.page-nav__logo-image {
    width: auto;
    height: 100%;
}

.page-nav__list {
    display: flex;
    flex: 1;
    column-gap: 14px;
}

.page-nav-item {
    position: relative;
    line-height: 1;
    border-radius: 20px;
    background-color: var(--color-teal);
    overflow: hidden;
}

.page-nav-item--active {
    background-color: var(--color-white);
}

.page-nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.page-nav-item:not(.page-nav-item--active):hover::before {
    transform: translateY(0);
}

.page-nav-item__link,
.page-nav-item__label {
    position: relative;
    padding: 11px 20px 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-black);
    font-size: 16px;
    font-weight: 600;
}

.page-nav__mega-menu-button {
    display: flex;
    column-gap: 8px;
    color: var(--color-white);
    font-size: 15px;
    align-items: center;
}

.page-nav__hamburger-icon {
    width: auto;
    height: 18px;
}

.main-content__dashboard {
    margin: 30px 0 0;
    width: 100%;
}

.main-content__dashboard p, .main-content__dashboard span, .main-content__dashboard sub {
	color: #fff;	
}

.dashboard-cards {
    width: 100%;
}

.dashboard-cards__list {
    display: flex;
    justify-content: space-between;
    row-gap: 16px;
    flex-wrap: wrap;
}



/* 애니메이션 정의 */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 카드별로 순차적으로 delay 적용 */
.dashboard-cards__item:nth-child(1) { animation-delay: 0.15s; }
.dashboard-cards__item:nth-child(2) { animation-delay: 0.3s; }
.dashboard-cards__item:nth-child(3) { animation-delay: 0.45s; }
.dashboard-cards__item:nth-child(4) { animation-delay: 0.6s; }
.dashboard-cards__item:nth-child(5) { animation-delay: 0.6s; }
.dashboard-cards__item:nth-child(6) { animation-delay: 0.75s; }
.dashboard-cards__item:nth-child(7) { animation-delay: 0.9s; }
.dashboard-cards__item:nth-child(8) { animation-delay: 1.05s; }
.dashboard-cards__item:nth-child(9) { animation-delay: 1.2s; }
.dashboard-cards__item:nth-child(10) { animation-delay: 1.2s; }

.dashboard-card {
    padding: 24px;
    display: block;
    flex: 1;
    height: 280px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.dashboard-card:hover {
    outline: 6px solid var(--color-white);
}

.dashboard-card--link {
    position: relative;
    height: 134px;
    background-color: var(--color-light-green);
}

.dashboard-card--link::after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 28px;
    background-image: url("../img/icon_arrow-right.png");
    background-size: cover;
}

.dashboard-card--link-with-icon {
    padding: 20px;
    width: auto;
    flex: 1;
    width: 200px;
    background-color: var(--color-purple);
}

.dashboard-card--link-with-icon::after {
    width: 44px;
    height: 44px;
}

.dashboard-card--slider {
    padding: 0;
    width: 100%;
    height: 100%;
}

.dashboard-card--filter-green {
    background: linear-gradient(
      rgba(2, 149, 66, 0.85),
      rgba(2, 149, 66, 0.85)
    ), url("../img/image_energy-usage.png");
    background-size: cover;
}

.dashboard-card--filter-teal {
    background: linear-gradient(
      rgba(0, 159, 157, 0.85),
      rgba(0, 159, 157, 0.85)
    ), url("../img/image_co2-emissions.png");
    background-size: cover;
}

.dashboard-card--filter-blue {
    background: linear-gradient(
      rgba(60, 138, 255, 0.85),
      rgba(60, 138, 255, 0.85)
    ), url("../img/image_solar-generation.png");
    background-size: cover;
}

.dashboard-card--energy-usage {
    background: linear-gradient(
      rgba(2, 149, 66, 0.85),
      rgba(2, 149, 66, 0.85)
    ), url("../img/image_energy-usage.png");
    background-size: cover;
}

.dashboard-card--co2-emissions {
    background: linear-gradient(
      rgba(0, 159, 157, 0.85),
      rgba(0, 159, 157, 0.85)
    ), url("../img/image_co2-emissions.png");
    background-size: cover;
}

.dashboard-card--energy-consulting {
    background-image: url("../img/image_energy-consulting.png");
}

.dashboard-card--apartment-compatition {
    background-image: url("../img/image_apartment-compatition.png");
    background-position: center top;
}

.dashboard-card--solar-power-generation {
    background: linear-gradient(
      rgba(60, 138, 255, 0.85),
      rgba(60, 138, 255, 0.85)
    ), url("../img/image_solar-generation.png");
    background-size: cover;
}



/* .dashboard-card--solar-power-generation, */
/* .dashboard-card--solar-map { */
/*     margin-top: -146px; */
/* } */

.dashboard-card--icon-energy-cycle::after {
    background-image: url("../img/icon_energy-cycle.png");
}

.dashboard-card--icon-buildings::after {
    background-image: url("../img/icon_buildings.png");
}

.dashboard-card__label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-white);
}



.dashboard-card--link .dashboard-card__name {
    color: var(--color-text-black);
    font-size: 25px;
    font-weight: 700;
}

.dashboard-card--link-with-icon .dashboard-card__name {
    line-height: 1.4;
    color: var(--color-white);
    font-size: 22px;
}

.dashboard-card--solar-map .dashboard-card__name {
    width: 150px;
    color: var(--color-white);
    font-weight: 400;
    word-break: keep-all;
}

.dashboard-card__highlight {
    font-weight: 700;
}

.dashboard-card__reference-date {
    font-size: 18px;
}

.dashboard-card__amount {
    margin: 16px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    column-gap: 8px;
    color: var(--color-white);
}



.dashboard-card__unit {
    margin: 0 0 4px;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
}

.main-content__banner {
    display: block;
    margin: 40px 0 0;
    width: 100%;
    text-align: center;
}

.main-content__banner-image {
    width: 1200px;
}



.poster-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.poster-slider__container {
    display: flex;
}

.poster-slider__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.poster-slider__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.poster-slider__buttons {
}

.poster-slider__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: #083744;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-slider__button::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 13.5px;
    height: 13.5px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    cursor: pointer;
}

.poster-slider__button--prev {
    left: 20px;
}

.poster-slider__button--prev::before {
    left: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.poster-slider__button--next {
    right: 20px;
}

.poster-slider__button--next::before {
    right: 63%;
    transform: translate(50%, -50%) rotate(225deg);
}

.poster-slider__dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    column-gap: 18px;
    background-color: var(--color-white);
}

.poster-slider-dot {
    margin: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    background-color: #8A949E;
    border: none;
    border-radius: 100%;
    appearance: none;
    cursor: pointer;
}

.poster-slider-dot--selected {
    background-color: var(--color-dark-teal);
    cursor: default;
}

.global-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    margin-top: 10px;
}



.global-footer__logo {
    height: 60px;
}

.global-footer__logo-image {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.global-footer__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
}
.global-footer__content p , .global-footer__content li{
	color: #fff;
}

.global-footer__guideline {
    display: flex;
    width: 100%;
    justify-content: center;
}

.footer-guideline {
}

.footer-guideline__list {
    display: flex;
    width: 100%;
    align-items: center;
}

.footer-guideline__item {
    padding: 0 8px;
    line-height: 1;
    font-size: 13px;
    border-right: 1px solid var(--color-white);
}

.footer-guideline__item:last-of-type {
    border-right: none;
}

.footer-guideline__link,
.footer-guideline__link:visited {
    font-weight: 700;
    color: var(--color-white);
}

.global-footer__address,
.global-footer__copyright {
    text-align: center;
    line-height: 1;
    font-size: 13px;
}
#seoul-gnb-plugin{
	background-color: #000;
	
}
.wrap{background-color: #000;}
.navbar-menu {
/*  	display: none; */
 	padding-left: 40px;
 }
 
 @media(min-width:1025px){
 	.dashboard-card__name {
	    font-size: 25px;
	    font-weight: 700;
	}
 	.dashboard-card--solar-map {
	    background:
	    url('../img/image_solar-map.png') no-repeat center / cover, /* 이미지가 위 */
	    var(--color-blue-violet); /* 배경 보라색 */
	    background-origin: content-box;
	}
	.dashboard-cards__item {
	    display: flex;
	    width: calc(33.333% - 10.666px);
	    column-gap: 16px;
	    opacity: 0;
	    transform: translateY(20px);
	    animation: fadeInUp 0.6s ease-out forwards;
	    height: 280px;
	    
	}
	
	.dashboard-card__value {
	    line-height: 1;
	    font-size: 60px;
	    font-weight: 700;
	}
	
	.dashboard-card--solar-power-generation,
	.dashboard-card--solar-map {
  	    margin-top: -146px;
	}
	.global-footer__container {
	    margin: 0 auto;
	    padding: 32px 0;
	    display: flex;
	    width: 1280px;
	    column-gap: 40px;
	    justify-content: center;
	    align-items: center;
	}
	.main-content__container {
	    margin: 0 auto;
	    padding: 30px 0 30px;
	/*     width: 1280px;  */ /* 원래값*/
		width: 1400px;
	}
	.main-content{
		height: 100vh;
	}
}

@media(max-width:1400px){
	.main-content__container{
		width: calc(100% - 20px);
	}
}
/* 패드 */
@media(max-width:1024px){
	#order1{order :1}
	#order2{order :2}
	#order3{order :3}
	#order4{order :6}
	#order5{order :7}
	#order6{order :8}
	#order7{order :4}
	#order8{order :5}
	#order9{order :9}
    .dashboard-card__value {
	    line-height: 1;
	    font-size: 60px;
	    font-weight: 700;
	}
	
	.dashboard-card--solar-map {
	    background:
	    url('../img/image_solar-map.png') no-repeat center / cover, /* 이미지가 위 */
	    var(--color-blue-violet); /* 배경 보라색 */
	    background-origin: content-box;
	}
	.main-content__container{
		width: 100%;
	}
	.dashboard-cards__item {
	    display: flex;
	    width: calc(50% - 7.666px);
	    column-gap: 16px;
	    opacity: 0;
	    transform: translateY(20px);
	    animation: fadeInUp 0.6s ease-out forwards;
	}

	.poster .dashboard-card{
		height: 400px;
	}
	.poster {
		width: 100%;
		height: 400px;
	}
	.smallCard{
		width: 100%;
	}
	.dashboard-card__label{
		flex-direction: column;
	}
	/*모바일 footer*/
	.global-footer__container{
		display: flex;
		width: 100%;
		flex-direction: column;
	}
	.global-footer__logo{
		margin: 0 auto;
	}
	.main-content__dashboard{
		padding: 5px;
	}
	.dashboard-card__name {
	    font-size: 25px;
	    font-weight: 700;
	}
}

@media ( max-width :1056px) {
	.page-nav__list {
		overflow-x: auto;
    	white-space: nowrap;
	}
	.page-nav-item{
		flex: 0 0 auto;
	}
	.page-nav{
		padding: 15px 10px 0;
	}
}
@media ( max-width :767px) {
	.dashboard-card__value {
	    line-height: 1;
	    font-size: 30px;
	    font-weight: 700;
	}
}
/* 모바일 */
@media(max-width:450px){
	.dashboard-card__name {
	    font-size: 18px;
	}
	
	.dashboard-card--solar-map .dashboard-card__name {
	    width: auto;
	    color: var(--color-white);
	    font-weight: 400;
	    word-break: keep-all;
	}
	.dashboard-card--solar-map {
 	    background-image: none !important;
	    background-origin: content-box;
	    background-color: var(--color-blue-violet);
	}
	.main-content__dashboard{
		padding: 5px;
		margin-top: 15px;
	}
	.main-content__container{
		width: 100%;
	}
	.dashboard-cards__item {
	    display: flex;
	    width: calc(50% - 7.666px);
	    column-gap: 16px;
	    opacity: 0;
	    transform: translateY(20px);
	    animation: fadeInUp 0.6s ease-out forwards;
	}
	.dashboard-card__value{
		font-size: 22px;
	}
	.poster {
		width: 100%;
	}
	.smallCard{
		width: 100%;
	}
	.dashboard-card__label{
		flex-direction: column;
	}
	.poster .dashboard-card{
		height: 300px !important;
	}
	.mbw .dashboard-card{
		height: min-content;
		min-height : 180px;
		
	}
	.poster {
		width: 100%;
		height: 300px !important;
	}
	.dashboard-card--link .dashboard-card__name{
		font-size: 18px;
	}
	/*모바일 footer*/
	.global-footer__container{
		display: flex;
		width: 100%;
		flex-direction: column;
	}
	.global-footer__logo{
		margin: 0 auto;
	}
	/* 모바일 사이트맵*/
	#siteMap{
		height: 100vh;
	}
	
	.page-nav{
		display: flex;
		justify-content: space-between;
		padding: 15px 10px 0;
	}
	/* .page-nav__list li:not(:first-child){
		display: none;
	} */
}
.skipnav a {display:none}
.skipnav a:focus, .skipnav a:active {display:block;}
#skip-navi { z-index:3000}
#skip-navi a {position:absolute;top:-100px;left:0;width:140px;text-align:center;border: 1px solid #fb0685;background-color:#000}
#skip-navi a:focus ,#skip-navi a:active{ top:0; z-index:1000; text-decoration:none;}
#skip-navi span { 
	display:inline-block; 
	padding:12px;
	font-size:14px; 
	line-height:20px; 
	color:#fff; 
	white-space:nowrap; 
}
.main-content__dashboard {
    margin: 30px 0 0;
    width: 100%;
}


.dashboard-cards-item {
    display: flex;
    width: calc(33.333% - 10.666px);
    height: 280px;
    column-gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}



/* 애니메이션 정의 */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 카드별로 순차적으로 delay 적용 */
.dashboard-cards-item:nth-child(1) { animation-delay: 0.15s; }
.dashboard-cards-item:nth-child(2) { animation-delay: 0.3s; }
.dashboard-cards-item:nth-child(3) { animation-delay: 0.45s; }
.dashboard-cards-item:nth-child(4) { animation-delay: 0.6s; }
.dashboard-cards-item:nth-child(5) { animation-delay: 0.6s; }
.dashboard-cards-item:nth-child(6) { animation-delay: 0.75s; }
.dashboard-cards-item:nth-child(7) { animation-delay: 0.9s; }
.dashboard-cards-item:nth-child(8) { animation-delay: 1.05s; }
.dashboard-cards-item:nth-child(9) { animation-delay: 1.2s; }
.dashboard-cards-item:nth-child(10) { animation-delay: 1.2s; }

.dashboard-card {
    padding: 24px;
    display: block;
    flex: 1;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.dashboard-card:hover {
    outline: 6px solid var(--color-white);
}

.dashboard-card--link {
    position: relative;
    height: 134px;
    background-color: var(--color-light-green);
}

.dashboard-card--link::after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 28px;
    background-image: url("../img/icon_arrow-right.png");
    background-size: cover;
}

.dashboard-card--link-with-icon {
    padding: 20px;
    width: auto;
    flex: 1;
    width: 200px;
    background-color: var(--color-purple);
}

.dashboard-card--link-with-icon::after {
    width: 44px;
    height: 44px;
}

.dashboard-card--slider {
    padding: 0;
    width: 100%;
    height: 100%;
}

.dashboard-card--filter-green {
    background: linear-gradient(
      rgba(2, 149, 66, 0.85),
      rgba(2, 149, 66, 0.85)
    ), url("../img/image_energy-usage.png");
    background-size: cover;
}

.dashboard-card--filter-teal {
    background: linear-gradient(
      rgba(0, 159, 157, 0.85),
      rgba(0, 159, 157, 0.85)
    ), url("../img/image_co2-emissions.png");
    background-size: cover;
}

.dashboard-card--filter-blue {
    background: linear-gradient(
      rgba(60, 138, 255, 0.85),
      rgba(60, 138, 255, 0.85)
    ), url("../img/image_solar-generation.png");
    background-size: cover;
}

.dashboard-card--solar-map {
    background:
    url('../img/image_solar-map.png') no-repeat center / cover, /* 이미지가 위 */
    var(--color-blue-violet); /* 배경 보라색 */
    background-origin: content-box;
}

.dashboard-card--icon-energy-cycle::after {
    background-image: url("../img/icon_energy-cycle.png");
}

.dashboard-card--icon-buildings::after {
    background-image: url("../img/icon_buildings.png");
}

.dashboard-card__label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-white);
}

/* #emission-box {
    display: none;
    position: absolute;
    top: 130px;
    background: #fff;
    right: 190px;
    width: 345px;
    height: auto;
    z-index: 3;
    opacity: 95%;
    border: 1px solid black;
    padding: 6px 5px;
    color: black;
    font-size: 15px;
    border-radius: 10px;
} */

.box-p, .box-p2 {
	color: black !important;
	padding: 4px;
	margin-left: 19px;
}
.box-p::before {
    content: '● ';
    position: absolute;
    left: 10px;
}
.box-p2::before {
    content: '※ ';
    position: absolute;
    left: 10px;
}

.poster-slider__container a:focus-visible img{
	outline: 3px dotted #0084ff !important;
	outline-offset:-4px  !important;
	border-radius: 10px;
/* 	position:absolute  !important; */
}



