div {
  box-sizing: border-box;
}

@font-face {
  src: url("fonts/icons.woff") format("woff");
  font-family: "Icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-transform: none;
}
.visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10vw;
  border-bottom: 1px solid #e0e0e0;
}
.visual .inner .header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.8vw;
}
.visual .inner .header h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3vw;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "KTB";
  font-weight: 700;
  font-size: 6vw;
  color: #000;
}
.visual .inner .header h3 span {
  position: absolute;
  top: 0;
  right: -8vw;
  width: 6.5vw;
  height: 6.5vw;
  background-image: url("/static/images/mobile/btn_share.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}
.visual .inner .header p {
  font-size: 3.45vw;
  color: #222;
}

.tabCont {
  display: flex;
  align-items: center;
  -moz-column-gap: 4vw;
       column-gap: 4vw;
  padding: 0 4.0625vw;
  border-bottom: 1px solid #e0e0e0;
}
.tabCont li {
  flex-grow: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 12vw;
}
.tabCont li button {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 3.67vw;
  color: #666;
  line-height: 1.2;
  word-break: keep-all;
}
.tabCont li button.current {
  font-weight: 500;
  font-size: 3.67vw;
  color: #d71826;
}
.tabCont li button.current:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #d71826;
}
.tabCont.info button.current {
  color: #00a69e;
}
.tabCont.info button.current:after {
  background-color: #00a69e;
}

.tabChild {
  display: none;
}
.tabChild.current {
  display: block;
}

.invisible {
  position: absolute;
  left: -1000%;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

ul.sns {
  position: absolute;
  top: 10vw;
  left: -50%;
  z-index: 5;
  display: none;
  padding: 3vw 2vw;
  border: 1px solid #bfbfbf;
  background-color: #fff;
}
ul.sns:before {
  position: absolute;
  top: -9px;
  left: calc(50% - 6px);
  z-index: 5;
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("/static/images/mobile/arrow-sns.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}
ul.sns li + li {
  margin-top: 2.3vw;
}
ul.sns li button {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 0.5vw;
  font-weight: 700;
  font-size: 2.8vw;
  color: #666;
  text-align: center;
  letter-spacing: -0.15vw;
}
ul.sns li button:before {
  content: "";
  display: block;
  width: 10vw;
  height: 10vw;
  background-repeat: no-repeat;
  background-size: contain;
}
ul.sns li.kakao button:before {
  background-image: url("/static/images/mobile/btn_kakao.jpg");
}
ul.sns li.facebook button:before {
  background-image: url("/static/images/mobile/btn_fb.jpg");
}
ul.sns li.x button:before {
  background-image: url("/static/images/mobile/btn_twitter.jpg");
}
ul.sns li.line button:before {
  background-image: url("/static/images/mobile/btn_line.jpg");
}

.notice p {
  text-align: center;
  word-break: keep-all;
}

.cont {
  padding: 0 3vw;
}
.cont ul {
  margin-top: 5vw;
  border-top: 1px solid #222;
}
.cont ul li {
  border-bottom: 1px solid #e9e9e9;
}
.cont ul li a {
  padding: 3vw 0;
  display: flex;
  flex-direction: column;
  row-gap: 1vw;
  background-image: url("/static/images/mobile/ico-more-gray.png");
  background-repeat: no-repeat;
  background-position: 98% 50%;
}
.cont ul li a span {
  width: 94%;
  font-size: 3.25vw;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cont ul li a em {
  font-size: 3vw;
  color: #999;
}
.cont .detailHeader {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2vw;
  margin-top: 5vw;
  padding: 4vw 0;
  border-top: 1px solid #555;
  border-bottom: 1px solid #ccc;
}
.cont .detailHeader h6 {
  width: 100%;
  font-weight: 700;
  font-size: 3.45vw;
  color: #222;
  line-height: 1;
  text-align: left;
}
.cont .detailHeader span {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 1.5vw;
       column-gap: 1.5vw;
  font-size: 3.15vw;
  color: #464646;
  line-height: 1;
}
.cont .detailHeader span + span {
  margin-left: 1.5vw;
}
.cont .detailHeader span + span:before {
  content: "";
  display: block;
  width: 1px;
  height: 2.6vw;
  background-color: #666;
}
.cont article {
  margin-bottom: 7vw;
  padding: 5vw 3vw;
  min-height: 250px;
  border-bottom: 1px solid #ccc;
}
.cont .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3.5vw;
       column-gap: 3.5vw;
}
.cont .btn a.listBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24vw;
  height: 8vw;
  font-size: 3.45vw;
  color: #fff;
  border: 1px solid #d71826;
  border-radius: 7vw;
  background-color: #d71826;
}
.cont .btn a.listBtn.line {
  color: #d71826;
  background-color: #fff;
}
.cont .btn a.listBtn.list {
  border-radius: 0;
}

button.more {
  margin-top: 10vw;
  width: 100%;
  height: 10vw;
  font-size: 3.45vw;
  color: #666;
  border-top: 1px solid #e4e4e4;
  background-color: #fafafa;
}/*# sourceMappingURL=news.css.map */