@charset "UTF-8";
/* =========================================================
other-parks
========================================================= */

#contents #other-parks {
  padding: 70px 0;
}

#contents #other-parks .inner {
  width: 1000px !important;
}

#other-parks .leadCenter {
  margin-bottom: 36px;
}

#other-parks .parkIndex {
  margin: 0 0 56px;
}

#other-parks .parkIndexGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

#other-parks .parkIndexCard {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px 12px;
  border: none;
  border-radius: 4px;
  background: #333;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.6;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

#other-parks .parkIndexCard:hover {
  opacity: 0.8;
}

#other-parks .post {
  margin-bottom: 72px;
  padding-bottom: 44px;
  border-bottom: 1px solid #d7e7f1;
}

#other-parks .post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#other-parks .otherParkMedia {
  margin-top: 18px;
}

#other-parks .otherParkMedia img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid #d7e7f1;
  box-sizing: border-box;
}

#other-parks .otherParkLead {
  margin-top: 16px;
}

#other-parks .otherParkLead p {
  margin: 0;
  line-height: 1.9;
}

#other-parks .otherParkLead p+p {
  margin-top: 8px;
}

#other-parks .tableWrap {
  margin: 20px 0 0;
}

#other-parks .tableWrap table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d7e7f1;
  background: #fff;
  table-layout: fixed;
}

#other-parks .tableWrap th,
#other-parks .tableWrap td {
  border: 1px solid #d7e7f1;
  padding: 12px 16px;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-word;
}

#other-parks .tableWrap th {
  width: 260px;
  background: #eef8fd;
  text-align: left;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

#other-parks .tableWrap td {
  background: #fff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

#other-parks .tableWrap td p {
  margin: 0;
}

#other-parks .tableWrap td p+p {
  margin-top: 8px;
}

#other-parks .pdfLinks {
  margin-top: 10px;
}

#other-parks .pdfLinks p {
  margin: 0;
}

#other-parks .pdfLinks p+p {
  margin-top: 6px;
}

#other-parks .pdfLinks a,
#other-parks .tableWrap a,
#other-parks .contactBlock a {
  color: #2f88b9;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

#other-parks .pdfLinks a:hover,
#other-parks .tableWrap a:hover,
#other-parks .contactBlock a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#other-parks .contactBlock {
  margin-top: 12px;
}

#other-parks .contactBlock p {
  margin: 0;
  line-height: 1.9;
}

#other-parks .contactBlock p+p {
  margin-top: 8px;
}

#other-parks .parkBtnList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

#other-parks .parkBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 48px 14px 20px;
  border: none;
  border-radius: 4px;
  background: #333;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

#other-parks .parkBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-image: url(../../images/shared/arrow_left_wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#other-parks .parkBtn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  #other-parks .parkIndexGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  #contents #other-parks {
    padding: 50px 4%;
  }

  #contents #other-parks .inner {
    width: auto !important;
  }

  #other-parks .parkIndexGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #other-parks .parkIndexCard {
    min-height: 74px;
    padding: 12px 10px;
    font-size: 14px;
  }

  #other-parks .tableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #other-parks .tableWrap table {
    min-width: 720px;
  }

  #other-parks .tableWrap th,
  #other-parks .tableWrap td {
    padding: 10px 12px;
    font-size: 14px;
  }

  #other-parks .tableWrap th {
    width: 160px;
    white-space: normal;
  }

  #other-parks .parkBtnList {
    display: block;
  }

  #other-parks .parkBtn {
    display: flex;
    width: 100%;
    margin-top: 12px;
  }

  #other-parks .parkBtn:first-child {
    margin-top: 0;
  }
}