.kv__title, .kv__desc {
    color: #000;
}





.content-detail {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 160px;
  font-family: SamsungOne, sans-serif;
  color: #000;
}

/* header */
.content-detail__header {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 16px;
}


.content-detail__type {
  color: #000;
  font-family: SamsungOne;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
}

.content-detail__title-row {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  column-gap: 0;
}

.content-detail__title {
  color: #000;
  font-family: "samsungSharpSans";
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  word-break: keep-all;
}

.content-detail__date {
  color: #000;
  font-family: SamsungOne;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.content-detail__divider {
  margin: 24px 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.20);
}

/* share button */
.share-container {
  position: relative;
  display: inline-block;
}

.content-detail__share {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  background: none;
  border: none;
  gap: 6px;
  cursor: pointer;
  color: #000;

  font-family: SamsungOne;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.content-detail__icon {
  width: 14px;
  height: 15px;
  background: url("/resources/icon/ico_share.svg") no-repeat center / contain;
}

/* share popup */
.share-popup__background{
  display: none;
}


.share-popup {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  transform: scale(0);
  transform-origin: top right;
  opacity: 0;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.20);
  width: 420px;
  padding: 32px 24px;
  z-index: 60;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.share-popup.is-active {
  transform: scale(1);
  opacity: 1;
}

.share-popup__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.share-popup__title {
  color: #000;

  font-family: SamsungOne;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin: 0;
}

.share-popup__sns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.share-popup__sns img {
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.share-popup__sns img:hover {
  transform: scale(1.1);
}

.share-popup__link {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #CCC;
  background: #F7F7F7;
  overflow: hidden;
  padding: 10px 20px;
  gap: 20px;
}

.share-popup__link input {
  flex: 1;
  border: none;
  padding: 0;
  overflow: hidden;
  color: #363636;

  text-overflow: ellipsis;
  font-family: SamsungOne;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: initial;
}

.share-popup__copy {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 0;
  color: #363636;
  font-family: SamsungOne;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.share-popup__icon{
  display: none;
}

.share-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: url("/resources/icon/ico_modal_popup_close.svg") no-repeat center / contain;
  border: none;
  cursor: pointer;
}

/* body */
.content-detail__body {
  padding: 0 150px 0;
  min-height: 400px;
  width: 100%;
}
.content-detail__body table{
  table-layout: auto;
}

/* footer */
.content-detail__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.content-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: auto;
  padding: 10px 24px;
  background: #000;
  color: #F7F7F7;
  border: none;
  border-radius: 999px;
  font-family: SamsungOne, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.content-detail__back:hover {
  background: #333;
}


.content-detail__google-map{
  width:100%; 
  height:586px;
}



@media only screen and (max-width: 1440px) {

  .content-detail {
    padding: 5.56vw 0 11.11vw;
  }

  /* header */
  .content-detail__header {
    padding: 0 1.67vw;
    gap: 1.11vw;
  }

  .content-detail__type {
    font-size: 1.25vw;
  }

  .content-detail__title-row {
    grid-template-columns: 1fr 3.89vw;
    align-items: center;
    column-gap: 0;
  }

  .content-detail__title {
    font-size: 2.64vw;
  }

  .content-detail__date {
    font-size: 0.97vw;
  }

  .content-detail__divider {
    margin: 1.67vw 0;
    height: 1px;
  }

  /* share button */
  .share-container {
  }

  .content-detail__share {
    width: 3.89vw;
    gap: 0.42vw;

    font-size: 0.97vw;
  }

  .content-detail__icon {
    width: 0.97vw;
    height: 1.04vw;
  }

  /* share popup */
  .share-popup {
    top: calc(100% + 1.39vw);
    border-radius: 1.39vw;
    box-shadow: 0 0.28vw 1.39vw 0 rgba(0, 0, 0, 0.20);
    width: 29.17vw;
    padding: 2.22vw 1.67vw;
  }

  .share-popup.is-active {
  }

  .share-popup__inner {
    gap: 2.22vw;
  }

  .share-popup__title {
    font-size: 0.97vw;
  }

  .share-popup__sns {
    gap: 0.69vw;
  }

  .share-popup__sns img {
    width: 3.89vw;
    height: 3.89vw;
  }

  .share-popup__sns img:hover {
    transform: scale(1.1);
  }

  .share-popup__link {
    border: 1px solid #CCC;
    padding: 0.69vw 1.39vw;
    gap: 1.39vw;
  }

  .share-popup__link input {
    font-size: 1.11vw;
  }

  .share-popup__copy {
    font-size: 1.11vw;
  }

  .share-popup__close {
    width: 1.11vw;
    height: 1.11vw;
  }

  /* body */
  .content-detail__body {
    padding: 0 10.42vw 0;
    min-height: 27.78vw;
    width: 100%;
  }

  /* footer */
  .content-detail__footer {
    margin-top: 4.17vw;
  }

  .content-detail__back {
    padding: 0.69vw 1.67vw;
    border-radius: 69.38vw;
    font-size: 0.97vw;
  }

  .content-detail__back:hover {
  }

  .content-detail__google-map{
    zoom: calc(100vw / 1440px);
  }

}



@media only screen and (max-width: 768px) {

  .kv__title, .kv__desc {
      color: #fff;
  }



  .content-detail {
    padding: 8.89vw 6.67vw 20.56vw;
  }

  /* header */
  .content-detail__header {
    padding: 0;
    gap: 4.44vw;
  }

  .content-detail__type {
    font-size: 5.00vw;
  }

  .content-detail__title-row {
    grid-template-columns: 1fr 15.56vw;
    align-items: center;
    column-gap: 0;
  }

  .content-detail__title {
    font-size: 6.67vw;
  }

  .content-detail__date {
    font-size: 3.89vw;
  }

  .content-detail__divider {
    margin: 6.67vw 0;
    height: 0.28vw;
  }

  /* share button */
  .share-container {
    position: initial;
  }

  .content-detail__share {
    width: 15.56vw;
    gap: 1.67vw;

    font-size: 3.89vw;
  }

  .content-detail__icon {
    width: 3.89vw;
    height: 4.17vw;
  }

  /* share popup */
  .share-popup__background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 50;
  }

  .share-popup__background.is-active{
    display: block;
    background: #0008;
    opacity: 1;
  }



  .share-popup {
    position: fixed;
    top : 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 5.56vw;
    box-shadow: inherit;
    width: 86.67vw;
    padding: 11.67vw 8.89vw;

    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .share-popup.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .share-popup__inner {
    gap: 6.67vw;
  }

  .share-popup__title {
    font-size: 3.89vw;
  }

  .share-popup__sns {
    gap: 2.22vw;
  }

  .share-popup__sns img {
    width: 10.00vw;
    height: 10.00vw;
  }

  .share-popup__sns img:hover {
    transform: scale(1.1);
  }

  .share-popup__link {
    padding: 2.78vw 3.33vw;
    gap: 3.61vw;
  }

  .share-popup__link input {
    font-size: 4.44vw;
  }

  .share-popup__copy {
    font-size: 1.11vw;
    display: none;
  }

  .share-popup__icon{
    display: block;
    width: 4.17vw;
    height: 4.86vw;
    background: url("/resources/icon/ico_copy.svg") no-repeat center / contain;
  }

  .share-popup__close {
    position: absolute;
    top: -8.33vw;
    right: -5.56vw;
    width: 6.67vw;
    height: 6.67vw;
  }

  /* body */
  .content-detail__body {
    padding: 0;
    min-height: 57.78vw;
    width: 100%;
  }

  /* footer */
  .content-detail__footer {
    margin-top: 11.11vw;
  }

  .content-detail__back {
    padding: 2.78vw 6.67vw;
    border-radius: 5.56vw;
    font-size: 3.89vw;
  }

  .content-detail__back:hover {
  }


  .content-detail__google-map{
    width:312px; 
    height:450px;

    zoom: calc(100vw / 360px);
  }

}

