@charset "UTF-8";
@import url("/resources/css/common/print.css");
/*-------------------------------------------------
title       : 서브
Author      : PLAN I
-------------------------------------------------*/
@media print {
  /* 반응형 제거 */
  header,
  footer,
  #visual {
    display: none !important;
  }
  #wrap {
    padding-top: 2rem !important;
  }
}
#wrap {
  padding-top: var(--header-height);
}

#header {
  background: #fff;
  --header-text-color: var(--gray900);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}
#header .logo a {
  background: url(/template/mps/img/layout/logo-active.svg) no-repeat center center/cover;
}
#header .header-external {
  background: #F4F5F4;
}
#header .header-external span {
  background: transparent;
  color: var(--color02);
  -webkit-text-fill-color: inherit;
}
#sub {
  padding-bottom: 12rem;
}
#sub .layout {
  --layout-width: 128rem ;
}
#sub .h4 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gray900);
  margin: 8rem 0 2.4rem;
}
#sub .desc {
  font-size: 1.8rem;
  color: var(--gray800);
}

#side {
  position: fixed;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
#side > button {
  transition: 0.4s ease-in-out;
}
#side .top {
  display: flex;
  width: 6.4rem;
  height: 6.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
  border: 1px solid var(--color05);
  background: #FFF;
  box-shadow: 4px 8px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
#side .top i {
  color: var(--color05);
  font-size: 1.6rem;
}
#side .top > span {
  color: var(--color05);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
}
#side .top.active {
  z-index: 60;
  visibility: visible;
  opacity: 1;
}

.like {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.like > span {
  color: var(--gray700);
  font-size: 1.4rem;
  font-weight: 600;
}
.like .icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  background: radial-gradient(83.39% 74.01% at 39.22% 37.24%, #DADF00 10%, #8DC21F 90%, #AACC03 100%);
}
.like .icon i {
  color: #fff;
  font-size: 2.4rem;
}

#visual {
  display: flex;
  position: relative;
  width: 100%;
  height: 32rem;
  text-align: left;
  flex-direction: column;
  justify-content: center;
}
#visual strong {
  display: block;
  font-size: 5.2rem;
  color: #fff;
  font-weight: 700;
}
#visual i {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100dvw;
  max-width: none;
  border-bottom-left-radius: 12rem;
  overflow: hidden;
}
#visual img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#visual .control a {
  display: inline-block;
  overflow: hidden;
  width: 6rem;
  height: 6rem;
  text-align: center;
  line-height: 6rem;
  vertical-align: middle;
  font-size: 3rem;
  top: 23rem;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--time2);
}
#visual .control a[class*=prev] {
  position: absolute;
  left: 3rem;
}
#visual .control a[class*=prev]::before {
  font-family: "remixicon";
  content: "\ea64";
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: inherit;
}
#visual .control a[class*=next] {
  position: absolute;
  right: 3rem;
}
#visual .control a[class*=next]::before {
  font-family: "remixicon";
  content: "\ea6e";
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: inherit;
}
#visual .control a:hover, #visual .control a:focus {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 1023px) {
  #visual {
    height: 26rem;
  }
  #visual strong {
    font-size: 4rem;
    text-align: center;
  }
  #visual i {
    border-bottom-left-radius: 0;
  }
}

.contents_util {
  display: flex;
  justify-content: space-between;
  margin: 2.4rem 0 6.4rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.search-form {
  margin-bottom: 8rem;
}
.search-form-box {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 4rem;
  position: relative;
}
.search-form-input {
  display: block;
  width: 100%;
  height: 7.6rem;
  padding: 3px;
  background: linear-gradient(to right, #DADF00, #8DC21F, #AACC03);
  border-radius: 10rem;
  overflow: hidden;
}
.search-form-input input {
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  padding: 0 7rem 0 3.7rem;
  border: none;
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.search-form-input input::-moz-placeholder {
  color: var(--gray600);
}
.search-form-input input::placeholder {
  color: var(--gray600);
}
.search-form-submit {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  color: #222;
}
.search-form-detail {
  padding: 2.4rem 4rem;
  background: #F6F7F8;
  border-radius: 1.2rem;
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
}
.search-form-detail-item {
  padding: 1.4rem 0;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.search-form-detail-item:last-of-type {
  border-bottom: none;
}
.search-form-detail-label {
  flex-shrink: 0;
  width: var(--search-form-detail-label-width);
  font-size: 1.8rem;
  color: var(--gray900);
  font-weight: 600;
}
.search-form-detail-list {
  flex-grow: 1;
  gap: 0.8rem;
  display: flex;
  flex-wrap: wrap;
}
.search-form-detail-list label {
  position: relative;
  display: flex;
  gap: 0.4rem;
  height: 4rem;
  padding: 0 1.4rem;
  font-size: 1.5rem;
  color: var(--gray700);
  background: #fff;
  border-radius: 10rem;
  border: 1px solid #ddd;
  align-items: center;
  cursor: pointer;
}
.search-form-detail-list label:has(input[type=checkbox]:focus, input[type=radio]:focus) {
  outline: 1px auto;
}
.search-form-detail-list label::before {
  display: none;
  content: "\eb7a";
  font-family: "remixicon";
  color: var(--color07);
  font-size: 2rem;
}
.search-form-detail-list label input[type=checkbox],
.search-form-detail-list label input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  clip: rect(0, 0, 0, 0);
}
.search-form-detail-list label:has(input[type=checkbox]:checked), .search-form-detail-list label:has(input[type=radio]:checked) {
  background: var(--color05);
  border-color: var(--color05);
  color: #fff;
}
.search-form-detail-list label:has(input[type=checkbox]:checked)::before, .search-form-detail-list label:has(input[type=radio]:checked)::before {
  display: block;
}
.search-form-detail-main {
  --search-form-detail-label-width: 8rem;
}
.search-form-detail-sub {
  --search-form-detail-label-width: 12rem;
  background: #fff;
  overflow: hidden;
  border-radius: 1.2rem;
}
.search-form-detail-sub-controller {
  width: 100%;
  padding: 1.95rem 1rem;
  background: #E3EDF7;
  border-radius: 1.2rem;
  overflow: hidden;
  gap: 0.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  -moz-column-rule-color: var(--gray900);
       column-rule-color: var(--gray900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.search-form-detail-sub-controller i {
  font-size: 2.4rem;
}
.search-form-detail-sub-box {
  display: none;
  padding: 0 3.2rem;
}
.search-form-detail-sub.active .search-form-detail-sub-controller i {
  transform: rotate(180deg);
}
.search-form-detail-sub.active .search-form-detail-sub-box {
  display: block;
}
.search-form-detail-button {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.search-form-state {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  align-items: flex-start;
  --search-form-state-height: 3.2rem;
}
.search-form-state-title {
  display: flex;
  gap: 0.4rem;
  color: var(--gray900);
  height: var(--search-form-state-height);
  align-items: center;
}
.search-form-state-title-count {
  color: var(--main800);
  font-weight: 600;
}
.search-form-state-refresh {
  width: var(--search-form-state-height);
  aspect-ratio: 1/1;
  background: #f6f6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var;
}
.search-form-state-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.search-form-state-filter:has(.search-form-state-filter-item) .search-form-state-filter-text {
  display: none;
}
.search-form-state-filter-text {
  letter-spacing: -0.02em;
  font-size: 1.7rem;
  color: var(--gray700);
  padding-top: 0.6rem;
}
.search-form-state-filter-item {
  display: flex;
  height: var(--search-form-state-height);
  align-items: center;
  padding: 0 1.4rem;
  font-size: 1.5rem;
  gap: 0.4rem;
  color: var(--gray800);
  border: 1px solid #ddd;
  border-radius: 10rem;
  background: #fff;
}
.search-form-state-filter-remove {
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .search-form-detail-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-form-detail-label {
    width: 100%;
  }
}

.g-search-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray800);
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 587px) {
  .g-search-area {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}

.search-list-top {
  font-size: 1.8rem;
  font-weight: 500;
}
.search-list-top .point {
  display: inline-block;
  margin: 0 0.4rem;
}

.search-top-box .form-col-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.search-top-box .form-group {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.search-top-box .form-tit h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.sch-form-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sch-select {
  display: flex;
  position: relative;
  align-items: center;
}
.sch-select::after {
  display: block;
  content: "\ea4e";
  font-family: "remixicon";
  font-size: 2.4rem;
  color: var(--gray800);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  z-index: -1;
}
.sch-select select {
  border: none;
  font-size: 1.8rem;
  color: var(--gray800);
  padding-right: 2.8rem;
  height: 2.6rem;
  outline: none;
  background: transparent;
}
.sch-select select:focus {
  outline: 1px auto;
}

.card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 4.8rem;
}
.card-body .img-wrap {
  width: 100%;
  aspect-ratio: 392/240;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  display: block;
}
.card-body .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-body .board-label-wrap {
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.card-body .c-text {
  padding: 2.4rem 0.8rem;
}
.card-body .c-tit {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gray900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  margin-bottom: 0.8rem;
  height: 6.4rem;
}
.card-body .c-detail {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}
.card-body .c-detail-item {
  display: flex;
  gap: 1.2rem;
  font-size: 1.7rem;
}
.card-body .c-detail-item strong {
  color: var(--color05);
  font-weight: 700;
}
.card-body .c-detail-item div {
  display: flex;
  color: #454545;
  flex-wrap: wrap;
}
.card-body .c-detail-item div span {
  padding-right: 1.2rem;
  margin-right: 1.2rem;
  position: relative;
}
.card-body .c-detail-item div span::after {
  display: block;
  content: "";
  width: 1px;
  height: 1.6rem;
  background: #ddd;
  position: absolute;
  right: -0.5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.card-body .c-detail-item div span:last-of-type {
  padding-right: 0;
  margin-right: 0;
}
.card-body .c-detail-item div span:last-of-type::after {
  display: none;
}
.card-body .c-keyword {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.card-body .c-keyword span {
  height: 3.2rem;
  padding: 0 1.2rem;
  color: var(--color05);
  font-weight: 500;
  background: #F4F5F4;
  font-size: 1.5rem;
  border-radius: 10rem;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: centerr;
}
.card-body .c-like {
  margin-top: 2rem;
  display: flex;
  gap: 0.4rem;
  color: var(--gray700);
  font-size: 1.5rem;
  align-items: center;
}
.card-body .c-like i {
  font-size: 2rem;
  line-height: 1;
}
.card-body .c-like strong {
  color: var(--gray900);
}
@media screen and (max-width: 1279px) {
  .card-wrap {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 587px) {
  .card-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search-item {
  display: flex;
  flex-direction: column;
}
.search-item .like-btn {
  margin-top: auto;
  width: 100%;
  text-align: left;
}

.view {
  position: relative;
  border-top: 1px solid var(--gray900);
}
.view-title {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.view-title-name {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.view-title-name-main {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gray900);
}
.view-thumbnail {
  aspect-ratio: 1280/480;
  overflow: hidden;
  width: 100%;
  border-radius: 1rem;
}
.view-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.view-information {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 2rem 0;
}
.view-information-item {
  padding: 1.2rem 2rem 1.2rem 0;
  position: relative;
  display: flex;
  gap: 1.6rem;
}
.view-information-item-title {
  font-size: 1.8rem;
  color: var(--color05);
  font-weight: 600;
  width: 10rem;
  flex-shrink: 0;
}
.view-information-item-detail {
  flex-grow: 1;
  color: var(--gray800);
  font-size: 1.8rem;
  font-weight: 400;
}
.view-keyword {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: #F0F5FB;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 8rem;
}
.view-keyword-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main800);
}
.view-keyword-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.view-keyword-list span {
  padding: 0 1.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--main800);
  border-radius: 10rem;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--main800);
}
.view-images-item {
  display: block;
  width: 100%;
}
.view-images-item:hover .view-images-item-thumbnail-hover, .view-images-item:focus .view-images-item-thumbnail-hover {
  opacity: 1;
  visibility: visible;
}
.view-images-item-thumbnail {
  aspect-ratio: 400/266;
  overflow: hidden;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
.view-images-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.view-images-item-thumbnail-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 85, 162, 0.9);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--time2);
  pointer-events: none;
}
.view-images-item-thumbnail-hover i {
  width: 4.4rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  color: var(--gray900);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-images-item-thumbnail-hover span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.view-images-item-title {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .view-title {
    flex-direction: column;
  }
  .view-title-name {
    width: 100%;
  }
  .view-title-link {
    align-self: flex-end;
  }
  .view-information {
    grid-template-columns: repeat(1, 1fr);
  }
  .view-keyword {
    padding: 3.4rem;
  }
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.schedule-header-left button, .schedule-header-right button {
  display: flex;
  align-items: center;
  height: 4rem;
  font-size: 1.6rem;
  color: var(--gray800);
}
.schedule-header-current {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.schedule-header-current-title {
  color: #222;
  font-weight: 700;
  font-size: 3.6rem;
}
.schedule-header-current-viewmore {
  height: 3.2rem;
  background: var(--main800);
  border-radius: 10rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0 1.6rem;
}
.schedule-body .board_list tr.currentDay {
  background: #f3f9ff;
}
.schedule-body .board_list tr.currentDay [rowspan] {
  color: var(--main800);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .schedule-body .board_list colgroup {
    display: none;
  }
  .schedule-body .board_list thead {
    display: none;
  }
  .schedule-body .board_list tbody {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  .schedule-body .board_list tr {
    border: 1px solid var(--bdc);
    border-radius: 0.8rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem;
    justify-content: space-between;
    gap: 0.6rem;
  }
  .schedule-body .board_list tr:has([rowspan]) {
    margin-top: 5rem;
  }
  .schedule-body .board_list td {
    padding: 0;
    border: none;
    width: 100%;
    order: 2;
    text-align: left;
  }
  .schedule-body .board_list td[aria-label=상태] {
    order: 0;
  }
  .schedule-body .board_list td[aria-label=단지명] {
    order: 1;
  }
  .schedule-body .board_list td[aria-label="자세히 보기"] {
    width: auto;
  }
  .schedule-body .board_list td[aria-label=홈페이지] {
    width: auto;
  }
  .schedule-body .board_list [rowspan] {
    position: absolute;
    transform: translateY(-100%);
    top: -1rem;
    left: 0;
    width: 100%;
    display: flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .schedule-header {
    align-items: flex-end;
  }
  .schedule-header-current {
    flex-direction: column-reverse;
  }
  .schedule-header-current-title {
    font-size: 3.2rem;
  }
  .schedule-header-left, .schedule-header-right {
    padding-bottom: 1rem;
  }
}

.homepage {
  display: inline-flex;
  width: 4rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: radial-gradient(83.39% 74.01% at 39.22% 37.24%, #DADF00 10%, #8DC21F 90%, #AACC03 100%), #005DA3;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.map-wrap {
  display: flex;
  background: #F6F7F8;
  position: relative;
  margin-bottom: 8rem;
}
.map-wrap::before {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 8.8rem);
  background: #DDD;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map-wrap .map-item {
  flex: 1;
  padding: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 640/700;
  overflow: hidden;
}
.map-wrap .map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-size: 2.4rem;
  background: var(--main800);
  pointer-events: none;
}
.map-wrap .map-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}
.map-wrap .map-empty img {
  width: 16rem;
}
.map-wrap .map-empty strong {
  font-size: 2.4rem;
  color: var(--gray900);
  font-size: 2.4rem;
  margin: 2.4rem 0 1rem;
}
.map-wrap .map-empty span {
  color: #454545;
  font-size: 1.5rem;
}
.map-wrap .map-empty.active {
  opacity: 0;
  visibility: hidden;
}
.map-wrap .state-map-notice {
  display: none;
}
.map-wrap .state-map-back {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .map-wrap {
    flex-direction: column;
  }
  .map-wrap::before {
    display: none;
  }
  .map-wrap .map-item {
    aspect-ratio: 0;
    flex: auto;
    padding: 0;
  }
  .map-wrap .map-center {
    display: none;
  }
  .map-wrap .map-empty {
    display: none;
  }
  .map-wrap .state-map-notice {
    display: block;
  }
  .map-wrap .state-map-back {
    display: flex !important;
  }
  .map-wrap:has(.state-map-object.sub-mode.loaded.active:not(.korea-fixed)) .korea-fixed {
    display: none !important;
  }
}

html:has(.choice-header) #header {
  display: none;
}
html:has(.choice-header) body {
  background: #F6F6F6;
}
html:has(.choice-header) #wrap {
  padding-top: 0;
}
html:has(.choice-header) #sub {
  padding-bottom: 0;
}

.choice {
  display: flex;
  flex-direction: column;
}
.choice-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 8rem 1rem;
}
.choice-header .h1 {
  display: block;
  flex-shrink: 0;
}
.choice-header .h1 img {
  display: block;
  aspect-ratio: 151/61;
  -o-object-fit: contain;
     object-fit: contain;
}
.choice-header .h2 {
  color: #111;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  word-break: auto-phrase;
  text-wrap: balance;
}
.choice-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
}
.choice-item {
  display: flex;
  align-items: center;
  padding: 3.2rem 0;
  gap: 6.4rem;
}
.choice-item:not(:last-of-type) {
  border-bottom: 1px solid #DDD;
}
.choice-item .btn-more {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.2rem;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
  background: var(--white);
  border: 1px solid #0359A6;
  border-radius: 0.8rem;
}
.choice-item .btn-more span, .choice-item .btn-more i {
  color: #0359A6;
}
.choice-item .btn-more span {
  font-size: 1.5rem;
  font-weight: 600;
}
.choice-item .btn-more i {
  font-size: 2rem;
}
.choice-item .btn-more:hover {
  background: #0359A6;
}
.choice-item .btn-more:hover span, .choice-item .btn-more:hover i {
  color: #fff;
}
.choice-thumbnail {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 31.25%;
  aspect-ratio: 400/225;
  /* 전체화면 대상으로 했을 때 */
}
.choice-thumbnail:after {
  content: "\f2db";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.2rem;
  height: 5.2rem;
  background: #111;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "remixicon";
  color: var(--white);
  font-size: 2rem;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.choice-thumbnail img {
  display: block;
  width: 100%;
  -o-object-position: top center;
     object-position: top center;
}
.choice-thumbnail.active {
  overflow-y: auto;
  cursor: zoom-out;
}
.choice-thumbnail.active img {
  width: 100vw;
  height: auto;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #000;
}
.choice-thumbnail.active:after {
  content: "\f2dd";
}
.choice-thumbnail:hover:after {
  opacity: 1;
  visibility: visible;
}
.choice-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.choice-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.choice-title .title {
  color: #111;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: normal;
}
.choice-title .tag-list {
  display: flex;
  gap: 0.8rem;
}
.choice-title .tag-list li {
  color: #666;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  background: #E6EAF0;
}
.choice-desc {
  display: -webkit-box;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.choice-footer {
  padding: 6rem 1rem;
}
.choice-footer .copyright {
  color: #555;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .choice-header .h2 {
    font-size: 4.4rem;
  }
  .choice-item {
    gap: 4.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .choice-header .h2 {
    font-size: 4.2rem;
  }
  .choice-item {
    gap: 3.2rem;
    padding: 2.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .choice-header .h2 {
    font-size: 4rem;
  }
  .choice-item {
    flex-direction: column;
    gap: 3.2rem;
  }
  .choice-thumbnail {
    max-width: 60%;
  }
  .choice-content {
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .choice-header .h2 {
    font-size: 3.8rem;
  }
  .choice-thumbnail {
    max-width: 100%;
  }
}

/* 좋아요 아이콘 색상 변경 */
.c-like .ri-heart-fill {
  color: #e74c3c !important;
}

.c-like .ri-heart-line {
  color: #666 !important;
}