@charset "utf-8";


/* ----------------- */
.sglist-box {
  display: block;
  position: relative;
  width: calc(100% - 44px);
  max-width: 980px;
  margin: 70px 22px;
}
.sglist-box .h2_section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width:100%;
  z-index: 1;
}
.sglist-box .h2_section ._img {
  display: block;
  position: absolute;
  width: 140px;
  height: 35px;
  top: -18px;
}

ul.sgdetail-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width:100%;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}
ul.sgdetail-list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  position: relative;
  width:100%;
  background-color: #ffffff;
  border-top: 1px solid #cfe1e9;
}
ul.sgdetail-list li:first-child {
  padding-top: 20px;
  border-top: none;
}
ul.sgdetail-list li:last-child {
  padding-bottom: 20px;
}
ul.sgdetail-list li p._title {
  flex-basis: 80px;
  width: 80px;
  height: auto;
  position: relative;
  padding: 23px 0px 23px 15px;
}
ul.sgdetail-list li p._date {
  flex-basis: calc(100% - 80px);
  display: block;
  position: relative;
  padding: 15px;
}
ul.sgdetail-list li p._h3 {
  flex-basis: calc(100% - 80px);
  display: block;
  position: relative;
  padding: 15px;
  color: #00378c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width:100%;
  margin-bottom: 25px;
}


.btns-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0px 15px;
  position: relative;
  width: 100%;
}
.btns-box .nomal_btn {
  display: inline-block;
  position: relative;
  width: 160px;
  height: 50px;
  margin: 0px auto 10px;
  padding: 15px 15px;
  color: #4cabdf;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.0em;
  text-align: center;
  background-color: #ffffff;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgba(51, 159, 225, 1), rgba(117, 214, 230, 1)) border-box;
  border: 2px solid transparent;
  border-radius: 38px;
  box-shadow: 0px 4px 12px 0px rgba(76, 171, 223, 0.5);
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.btns-box .nomal_btn:hover {
  color: #ffffff;
  border: 2px solid #0738cc;
}
.btns-box .nomal_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #00378c;
  transition: left 0.3s ease;
  z-index: -1;
}
.btns-box .nomal_btn:hover::before {
  left: 0;
}
.btns-box .nomal_btn.goback::after {
  content: url("../img/arrow_back.svg");
  position: absolute;
  width: 6px;
  height: 10px;
  top: 12px;
  left: 15px;
}





/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

@media (min-width: 768px) {

  ul.sgdetail-list li p._title {
    flex-basis: 110px;
    width: 110px;
    padding: 23px 0px 23px 20px;
  }
  ul.sgdetail-list li p._date {
    flex-basis: calc(100% - 110px);
    padding: 20px;
  }
  ul.sgdetail-list li p._h3 {
    flex-basis: calc(100% - 110px);
    padding: 20px;
  }
}




@media (min-width: 1024px) {


}




