@charset "UTF-8";
* {
  box-sizing: border-box;
}

textarea {
  overflow: auto;
  resize: vertical;
}

/* ==========================================================================
  게시판
   ========================================================================== */
.board-wrap {
  padding: 15px;
  width: 100%;
  font-size: 1rem;
  line-height: 1;
  color: #606060;
}

@media (max-width: 767px) {
  .board-wrap {
    padding: 15px;
    width: 100%;
    font-size: 12px;
    line-height: 1;
    color: #606060;
  }
}

.board-wrap input,
.board-wrap select,
.board-wrap textarea {
  display: inline-block;
  border: 1px solid #dedede;
  padding-left: 10px;
  border-radius: 0;
  background: #fff;
  font-size: 0.8125rem;
  height: 35px;
  line-height: 1;
  color: #414141;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .board-wrap input,
  .board-wrap select,
  .board-wrap textarea {
    font-size: 0.75rem;
  }
}

.board-wrap a {
  display: block;
  font-size: 0.75rem;
  color: #414141;
  text-decoration: none;
  transition: all .3s ease;
}

.board-wrap a:hover {
  color: #000;
}

.board-wrap .board-title {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1;
  color: #303030;
  text-align: center;
}

@media (max-width: 767px) {
  .board-wrap .board-title {
    margin-bottom: 1.25rem;
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1;
    color: #303030;
    text-align: center;
  }
}

.board-wrap .board-paging {
  margin: -15px 0 50px;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.board-wrap .btn-write-wrap {
  margin: -38px 0 0;
}

.board-wrap .btn-write-wrap {
  *zoom: 1;
}

.board-wrap .btn-write-wrap:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .board-wrap .btn-write-wrap {
    margin: 20px 0 0;
  }
}

.board-wrap .btn-write-wrap .btn-write {
  float: right;
  padding: 0 30px;
  min-width: 100px;
  border: 1px solid #929292;
  background: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 2.25rem;
  color: #333;
  text-align: center;
}

@media (max-width: 767px) {
  .board-wrap .btn-write-wrap .btn-write {
    float: none;
  }
}

.board-wrap th.required:after {
  display: inline-block;
  margin-top: -3px;
  margin-left: 7px;
  width: 14px;
  height: 11px;
  background: url("/img/common/required.png") no-repeat 0 0;
  vertical-align: middle;
  content: '';
}

.board-wrap .category-tab {
  margin: 50px 0;
  width: 100%;
}

.board-wrap .category-tab ul {
  width: 100%;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.board-wrap .category-tab ul li {
  display: inline-block;
  margin: 0 15px;
}

.board-wrap .category-tab ul li a {
  position: relative;
  display: block;
  padding: 0 3px;
  font-size: 1.076rem;
  line-height: 40px;
  color: #303030;
}

@media (max-width: 767px) {
  .board-wrap .category-tab ul li a {
    display: block;
    font-size: 0.92rem;
    color: #606060;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .board-wrap .category-tab ul li a:hover {
    color: #111;
  }
}

.board-wrap .category-tab ul li.on a {
  font-weight: bold;
  color: #111;
}

.board-wrap .category-tab ul li.on a:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 55;
  width: 100%;
  height: 2px;
  background: #111;
}

.board-wrap .board-view {
  border-top: 1px solid #303030;
}

.board-wrap .board-view header {
  padding: 15px 32px 14px;
  border-bottom: 1px solid #dedede;
  font-size: 14px;
  line-height: 20px;
}

.board-wrap .board-view header {
  *zoom: 1;
}

.board-wrap .board-view header:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .board-wrap .board-view header {
    padding: 15px 10px;
  }
}

.board-wrap .board-view header h1 {
  float: left;
  font-weight: bold;
  color: #303030;
}

@media (max-width: 767px) {
  .board-wrap .board-view header h1 {
    float: none;
  }
}

.board-wrap .board-view header address {
  float: right;
  font-style: normal;
  color: #414141;
}

@media (max-width: 767px) {
  .board-wrap .board-view header address {
    float: left;
    font-style: normal;
    color: #414141;
  }
}

.board-wrap .board-view header address p {
  float: left;
  padding: 0 18px;
  background: url("/img/common/board-view-header-line.gif") no-repeat right center;
}

.board-wrap .board-view header address p:last-child {
  padding-right: 0;
  background: none;
}

@media (max-width: 767px) {
  .board-wrap .board-view header address p {
    float: left;
    margin: 7px 0 0;
    padding: 0 10px;
    font-size: 12px;
    line-height: 18px;
  }
  .board-wrap .board-view header address p:first-child {
    padding-left: 0;
  }
}

.board-wrap .board-view .board-conts {
  margin-bottom: 20px;
  padding: 15px 32px;
  font-size: 13px;
  line-height: 18px;
  color: #414141;
}

@media (max-width: 767px) {
  .board-wrap .board-view .board-conts {
    padding: 15px 10px;
  }
}

.board-wrap .board-view .board-conts div,
.board-wrap .board-view .board-conts p {
  font-size: 15px;
  line-height: 25px;
  color: #414141;
}

.board-wrap .board-view .board-conts figure {
  max-width: 500px;
  margin: 20px 0 30px;
  text-align: left;
}

.board-wrap .board-view .board-conts figure .embed-responsive-16by9 {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.board-wrap .board-view .board-conts figure .embed-responsive-16by9 iframe {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}

.board-wrap .board-view .board-conts figure img {
  max-width: 100%;
}

.board-wrap .board-view .board-view-file {
  clear: both;
  display: inline-block;
  width: 100%;
  margin: 15px 0 0;
  padding: 15px 32px;
  border-top: 1px solid #dedede;
  line-height: 20px;
}

@media (max-width: 767px) {
  .board-wrap .board-view .board-view-file {
    padding: 15px 10px;
  }
}

.board-wrap .board-view .board-view-file strong {
  font-weight: bold;
}

.board-wrap .board-view .comment-wrap {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.board-wrap .board-view .comment-wrap ul li.no-comment {
  padding: 18px 32px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 0.8125rem;
  line-height: 18px;
  text-align: center;
}

.board-wrap .board-view .comment-wrap .comment-list {
  display: table;
  table-layout: fixed;
  padding: 13px 32px;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
}

.board-wrap .board-view .comment-wrap .comment-list span {
  display: table-cell;
  line-height: 18px;
  vertical-align: middle;
}

.board-wrap .board-view .comment-wrap .comment-list span:first-child {
  width: 100px;
}

.board-wrap .board-view .comment-wrap .comment-list span:nth-child(2) {
  text-align: left;
}

.board-wrap .board-view .comment-wrap .comment-list span:nth-child(3) {
  width: 150px;
  text-align: right;
}

.board-wrap .board-view .comment-wrap .comment-list span a {
  display: table-cell;
  width: 20px;
  text-align: right;
  vertical-align: middle;
}

.board-wrap .board-view .comment-wrap .comment-list span a img {
  margin-bottom: -3px;
}

.board-wrap .board-view .comment-write {
  padding: 13px 32px;
  width: 100%;
}

@media (max-width: 767px) {
  .board-wrap .board-view .comment-write {
    padding: 13px 20px;
  }
}

@media (max-width: 480px) {
  .board-wrap .board-view .comment-write {
    padding: 13px 10px;
  }
}

.board-wrap .board-view .comment-write > p:first-child {
  padding-bottom: 13px;
  width: 100%;
}

.board-wrap .board-view .comment-write p {
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .board-wrap .board-view .comment-write p:first-child {
    padding-right: 10px;
  }
}

.board-wrap .board-view .comment-write p:first-child label {
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .board-wrap .board-view .comment-write p:first-child label {
    display: inline-block;
    width: 14%;
    margin-right: 0;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .board-wrap .board-view .comment-write p:first-child label {
    width: 20%;
  }
}

.board-wrap .board-view .comment-write p:first-child input {
  margin-right: 30px;
  width: 200px;
}

@media (max-width: 767px) {
  .board-wrap .board-view .comment-write p:first-child input {
    display: inline-block;
    width: 35%;
    margin-right: 2%;
  }
  .board-wrap .board-view .comment-write p:first-child input[type="password"] {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .board-wrap .board-view .comment-write p:first-child input {
    width: 29%;
  }
}

.board-wrap .board-view .comment-write p textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

@media (max-width: 767px) {
  .board-wrap .board-view .comment-write p textarea {
    height: 70px;
  }
}

.board-wrap .board-view .comment-write div {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.board-wrap .board-view .comment-write div p {
  display: table-cell;
  vertical-align: middle;
}

.board-wrap .board-view .comment-write div p:last-child {
  width: 100px;
}

.board-wrap .board-view .comment-write a {
  display: block;
  width: 100px;
  height: 100px;
  background: #656565;
  line-height: 100px;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .board-wrap .board-view .comment-write a {
    width: 100%;
    height: 70px;
    line-height: 70px;
  }
}

.board-wrap .board-view .comment-write .board-view-captcha {
  margin-top: 10px;
  padding: 10px;
  background: #f9f9f9;
}

.board-wrap .board-view .comment-write .board-view-captcha label {
  font-weight: bold;
  color: #111;
  vertical-align: middle;
}

.board-wrap .board-view .comment-write .board-view-captcha input {
  margin-left: 5px;
  width: 100px;
  vertical-align: middle;
}

.board-wrap .board-view .comment-write .board-view-captcha img {
  vertical-align: middle;
}

.board-wrap .board-view .comment-write .board-view-captcha span {
  display: inline-block;
  margin: 10px 0 0;
  width: 100%;
  font-size: 12px;
  line-height: 17px;
  vertical-align: middle;
}

.board-wrap .board-view .comment-write .board-view-captcha div {
  display: block;
}

.board-wrap .board-view .btn-view-wrap {
  margin: 20px 0 40px;
  text-align: right;
}

.board-wrap .board-view .btn-view-wrap {
  *zoom: 1;
}

.board-wrap .board-view .btn-view-wrap:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .board-wrap .board-view .btn-view-wrap {
    text-align: center;
  }
}

.board-wrap .board-view .btn-view-wrap p {
  float: left;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 767px) {
  .board-wrap .board-view .btn-view-wrap p {
    float: none;
    margin-bottom: 10px;
  }
}

.board-wrap .board-view .btn-view-wrap .btn-del,
.board-wrap .board-view .btn-view-wrap .btn-modify,
.board-wrap .board-view .btn-view-wrap .btn-reply {
  display: inline-block;
  margin-right: 7px;
  padding: 0 15px;
  min-width: 100px;
  background: #d3d3d3;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 38px;
  color: #464646;
  text-align: center;
}

@media (max-width: 767px) {
  .board-wrap .board-view .btn-view-wrap .btn-del,
  .board-wrap .board-view .btn-view-wrap .btn-modify,
  .board-wrap .board-view .btn-view-wrap .btn-reply {
    padding: 0;
    width: 30%;
    min-width: auto;
  }
}

.board-wrap .board-view .btn-view-wrap .btn-list {
  display: inline-block;
  padding: 0 15px;
  min-width: 100px;
  background: #464646;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 38px;
  color: #fff;
  text-align: center;
}

.board-wrap .board-view .post-navi li {
  border-bottom: 1px solid #aaa;
  padding: 18px 32px;
  font-size: 0.8125rem;
  line-height: 18px;
  vertical-align: middle;
}

.board-wrap .board-view .post-navi li {
  *zoom: 1;
}

.board-wrap .board-view .post-navi li:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .board-wrap .board-view .post-navi li {
    padding-left: 50px;
  }
}

.board-wrap .board-view .post-navi li a,
.board-wrap .board-view .post-navi li span,
.board-wrap .board-view .post-navi li strong {
  font-size: 0.8125rem;
  line-height: 18px;
  vertical-align: middle;
  color: #999;
}

.board-wrap .board-view .post-navi li a {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 75%;
}

.board-wrap .board-view .post-navi li span {
  float: right;
}

.board-wrap .board-view .post-navi li strong {
  float: left;
  margin-right: 82px;
  font-weight: 700;
}

.board-wrap .board-view .post-navi li:first-child {
  border-top: 1px solid #aaa;
}

.board-wrap .board-view .post-navi li:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
}

@media (max-width: 767px) {
  .board-wrap .board-view .post-navi li a {
    max-width: 95%;
  }
  .board-wrap .board-view .post-navi li strong {
    display: none;
  }
  .board-wrap .board-view .post-navi li span {
    position: relative;
    bottom: -5px;
    float: left;
    clear: both;
    width: 100%;
    font-size: 0.75rem;
  }
}

.board-wrap .board-view .post-navi .prev-post {
  background: url("/img/common/prev-post-arrow.png") no-repeat 80px center;
}

@media (max-width: 767px) {
  .board-wrap .board-view .post-navi .prev-post {
    background-position: 15px 23px;
  }
}

.board-wrap .board-view .post-navi .prev-post a {
  color: #999;
}

.board-wrap .board-view .post-navi .next-post {
  background: url("/img/common/next-post-arrow.png") no-repeat 80px center;
}

@media (max-width: 767px) {
  .board-wrap .board-view .post-navi .next-post {
    background-position: 15px 23px;
  }
}

.board-wrap .board-view .post-navi .next-post a {
  color: #999;
}

.board-wrap .gallery-list {
  margin-bottom: 50px;
  padding: 50px 0;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
  font-size: 0;
}

@media (max-width: 767px) {
  .board-wrap .gallery-list {
    padding: 25px 10px 0;
    margin-bottom: 50px;
  }
}

.board-wrap .gallery-list figure {
  display: inline-block;
  margin-bottom: 25px;
  padding: 0 17px;
  width: 33.33333333333333%;
  vertical-align: top;
}

@media (max-width: 767px) {
  .board-wrap .gallery-list figure {
    width: 100%;
    padding: 0;
  }
}

.board-wrap .gallery-list figure a {
  display: block;
  width: 100%;
  height: 100%;
}

.board-wrap .gallery-list figure a .thumb-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
}

.board-wrap .gallery-list figure a .thumb-wrap.embed-responsive-21by9 {
  padding-bottom: 42.85714%;
}

.board-wrap .gallery-list figure a .thumb-wrap.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.board-wrap .gallery-list figure a .thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.board-wrap .gallery-list figure a .thumb-wrap img {
  width: 100%;
}

.board-wrap .gallery-list figure a figcaption {
  padding: 11px 20px 16px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .board-wrap .gallery-list figure a figcaption {
    min-height: 117px;
  }
}

.board-wrap .gallery-list figure a figcaption p {
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #111;
}

.board-wrap .gallery-list figure a figcaption li {
  font-size: 13px;
  line-height: 20px;
  color: #414141;
}

.board-wrap .gallery-list figure a figcaption li strong {
  clear: both;
  width: 40px;
  font-weight: bold;
}

.board-wrap .gallery-list figure a figcaption li:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 20px;
  height: 40px;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list {
    table-layout: auto;
  }
}

.board-wrap .webzine-board-list tr.no-data {
  min-height: 0;
}

.board-wrap .webzine-board-list tr.no-data td {
  padding: 15px 0;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list thead th {
    display: none;
  }
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr {
    display: inline-block;
    width: 100%;
    min-height: 101px;
  }
  .board-wrap .webzine-board-list tbody tr:first-child {
    border-top: 1px solid #303030;
  }
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td {
    float: left;
    width: 100%;
    padding: 0 10px 0 130px;
    text-align: left;
  }
  .board-wrap .webzine-board-list tbody tr td.board-num {
    display: none;
  }
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject {
    text-align: left;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject a {
  font-size: 0.75rem;
  line-height: 17px;
  color: #414141;
  vertical-align: middle;
  text-decoration: none;
  transition: all .2s ease;
}

@media (min-width: 768px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject a {
    display: table;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject a:hover {
  color: black;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject a {
    display: block;
    position: relative;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject div {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div {
    display: table-cell;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject div img.thumb {
  padding: 0;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div img.thumb {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div img.thumb {
    max-width: 150px;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject div:first-child {
  width: 150px;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div:first-child {
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: -120px;
    width: 110px;
    height: 80px;
  }
}

@media (min-width: 768px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div:last-child {
    padding-left: 23px;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject div strong {
  display: inline-block;
  margin: 5px 0;
  font-weight: bold;
  font-size: 0.875rem;
  color: #606060;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div strong {
    margin: 10px 0 5px;
  }
}

.board-wrap .webzine-board-list tbody tr td.board-subject div strong:hover {
  color: black;
}

.board-wrap .webzine-board-list tbody tr td.board-subject div span {
  display: inline-block;
  margin: 5px 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 17px;
  height: 34px;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-subject div span {
    margin: 0 0 5px;
  }
}

.board-wrap .webzine-board-list tbody tr td img {
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .board-wrap .webzine-board-list tbody tr td.board-date {
    margin: 5px 0 5px;
  }
}

/* // Board Wrap */
.board-paging {
  margin: -15px 0 50px;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.board-paging li,
.board-paging ol {
  display: inline-block;
  vertical-align: top;
}

.board-paging li {
  overflow: hidden;
  position: relative;
  margin-left: -1px;
}

.board-paging li > a {
  width: 35px;
  height: 35px;
  border: 1px solid #dedede;
  font-size: 13px;
  line-height: 33px;
  color: #414141;
}

.board-paging li.on, .board-paging li:hover {
  z-index: 111;
}

.board-paging li.on > a, .board-paging li:hover > a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #45881d;
  color: #fff;
}

.board-paging ol {
  margin: 0 13px;
}

.board-search-wrap {
  margin: 30px 0;
  padding: 20px;
  width: 100%;
  background: #f4f4f4;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.board-search-wrap legend {
  display: none;
}

.board-search-wrap p {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .board-search-wrap p {
    margin: 0 3px;
  }
}

.board-search-wrap p:nth-of-type(1) {
  width: 100px;
}

.board-search-wrap p:nth-of-type(2) {
  width: 190px;
}

.board-search-wrap p:nth-of-type(3) {
  width: 70px;
}

.board-search-wrap select {
  min-width: auto;
  width: 100%;
  height: 38px;
}

.board-search-wrap input[type="text"] {
  width: 100%;
  height: 38px;
  background: #fff;
}

.board-search-wrap .search-btn-wrap a {
  padding: 0 12px;
  width: 100%;
  background: #414141;
  font-weight: bold;
  font-size: 14px;
  line-height: 38px;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .board-search-wrap .search-btn-wrap a {
    margin-left: 5px;
  }
}

.board-search-wrap .search-btn-wrap a:hover {
  color: #fff;
}

.basic-board-list,
.webzine-board-list {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

@media (min-width: 768px) {
  .basic-board-list,
  .webzine-board-list {
    margin-bottom: 50px;
  }
}

.basic-board-list legend,
.webzine-board-list legend {
  display: none;
}

.basic-board-list thead th,
.webzine-board-list thead th {
  padding: 16px 0 13px;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: #303030;
  text-align: center;
  vertical-align: middle;
}

.basic-board-list tbody tr,
.webzine-board-list tbody tr {
  border-top: 1px solid #e1e1e1;
}

.basic-board-list tbody tr.no-data,
.webzine-board-list tbody tr.no-data {
  padding: 15px 0;
}

.basic-board-list td,
.webzine-board-list td {
  font-size: 12px;
  line-height: 17px;
  color: #414141;
  text-align: center;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .basic-board-list td,
  .webzine-board-list td {
    padding: 17px 0 15px;
  }
}

@media (max-width: 767px) {
  .basic-board-list {
    table-layout: auto;
  }
}

@media (max-width: 767px) {
  .basic-board-list thead th {
    display: none;
  }
}

@media (max-width: 767px) {
  .basic-board-list tbody tr {
    display: inline-block;
    padding: 10px 20px 15px;
    width: 100%;
    border-top: 1px solid #e1e1e1;
  }
  .basic-board-list tbody tr:first-child {
    border-color: #303030;
  }
}

@media (max-width: 767px) {
  .basic-board-list tbody td {
    float: left;
    margin: 10px 0 0;
    padding-right: 15px;
    width: auto;
    font-size: 14px;
    line-height: 18px;
    color: #666;
    vertical-align: middle;
  }
  .basic-board-list tbody td.board-subject {
    margin: 0;
    width: 100%;
  }
  .basic-board-list tbody td.board-name {
    clear: both;
    font-size: 12px;
  }
  .basic-board-list tbody td.board-date {
    font-size: 12px;
  }
  .basic-board-list tbody td.board-hit, .basic-board-list tbody td.board-num, .basic-board-list tbody td.board-category {
    display: none;
  }
}

.basic-board-list tbody td.board-subject {
  text-align: left;
}

.basic-board-list tbody td.board-subject a {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 17px;
  color: #414141;
  vertical-align: middle;
  /* 말줄임 */
  overflow: hidden;
  max-width: 90%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .basic-board-list tbody td.board-subject a {
    padding-left: 10px;
  }
}

.basic-board-list tbody td.board-subject a:hover {
  color: black;
}

@media (max-width: 767px) {
  .basic-board-list tbody td.board-subject a {
    display: inline;
    max-width: 100%;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    color: #666;
  }
}

.basic-board-list tbody td.board-subject img {
  display: inline;
  padding-left: 5px;
  vertical-align: middle;
}

.basic-board-row {
  width: 100%;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.basic-board-row tr {
  border-bottom: 1px solid #e1e1e1;
}

.basic-board-row tr.board-row-subject input{
  width: auto;
}
.basic-board-row tr.board-row-subject label{
    margin:0;
    vertical-align: middle;
}
.basic-board-row tr.board-row-subject input[type="radio"],
.basic-board-row tr.board-row-subject input[type="checkbox"]{
    margin: 0;
    width: 18px;
    height: 18px;
}
.basic-board-row tr.board-row-subject input[type="text"]{
    width: 100%;
}

.basic-board-row tr.board-row-select select {
  min-width: 200px;
}

.basic-board-row tr.board-row-name input {
  min-width: 200px;
}

.basic-board-row tr.board-row-tel select {
  max-width: 150px;
  min-width: auto;
  width: 25%;
}

.basic-board-row tr.board-row-tel input {
  margin-left: 7px;
  max-width: 150px;
  width: 25%;
}

.basic-board-row tr.board-row-tel span {
  margin-left: 7px;
}

.basic-board-row tr.board-row-email input {
  max-width: 200px;
  width: 25%;
}

.basic-board-row tr.board-row-email input:last-of-type {
  margin-left: 7px;
}

.basic-board-row tr.board-row-email select {
  margin-left: 7px;
  max-width: 200px;
  width: 25%;
}

.basic-board-row tr.board-row-email span {
  margin-left: 7px;
}

.basic-board-row tr.board-row-check p,
.basic-board-row tr.board-row-radio p {
  display: inline-block;
  margin-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.basic-board-row tr.board-write-captcha.btn-reload,
.basic-board-row tr.board-write-captcha img {
  display: inline-block;
  vertical-align: middle;
}

.basic-board-row tr.board-write-captcha.btn-reload:after {
  content: "\f021";
  display: inline-block;
  margin-left: 3px;
  font: normal normal 24px/45px 'FontAwesome';
  color: #111;
  vertical-align: middle;
  cursor: pointer;
}

.basic-board-row tr.board-write-captcha input[type="text"] {
  margin: 10px 0 0;
}

.basic-board-row tr.board-write-captcha .p_notice {
  display: inline-block;
  margin-top: 7px;
  width: 100%;
}

.basic-board-row tr.board-write-file-list button {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 15px;
  border: 1px solid #dedede;
  background: #f3f3f3;
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
}

.basic-board-row tr.board-write-file-list #list_file input[type="file"] {
  display: inline-block;
  margin: 3px 0;
  width: 100%;
}

.basic-board-row tr:last-child {
  border-bottom: 0 none;
}

.basic-board-row tr th {
  padding: 16px 10px 16px 20px;
  background: #f4f4f4;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #303030;
  text-align: left;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .basic-board-row tr th {
    padding: 16px 10px;
    width: 90px;
    font-size: 12px;
  }
}

.basic-board-row tr td {
  padding: 7px 13px 8px;
  font-size: 13px;
  line-height: 18px;
  color: #414141;
  vertical-align: middle;
}

.board-write-btn-wrap {
  margin: 55px 0 30px;
  text-align: center;
}

.board-write-btn-wrap a {
  display: inline-block;
  margin: 0 5px;
  width: 150px;
  height: 45px;
  font-weight: bold;
  font-size: 14px;
  line-height: 45px;
}

@media (max-width: 767px) {
  .board-write-btn-wrap a {
    width: 45%;
  }
}

.board-write-btn-wrap .btn-confirm {
  background: #464646;
  color: #fff;
}

.board-write-btn-wrap .btn-cancel {
  background: #d3d3d3;
  color: #464646;
}

.faq-wrap {
  margin-bottom: 50px;
  width: 100%;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.faq-wrap .faq-list {
  border-bottom: 1px solid #e1e1e1;
}

.faq-wrap .faq-list:last-of-type {
  border-bottom: 0 none;
}

.faq-wrap .f-wrap {
  width: 100%;
}

.faq-wrap .f-wrap a {
  position: relative;
  padding: 15px 40px 15px 70px;
  font-size: 13px;
  line-height: 20px;
  color: #303030;
}

@media (max-width: 767px) {
  .faq-wrap .f-wrap a {
    padding: 15px 40px;
  }
}

.faq-wrap .f-wrap a:before {
  content: 'Q';
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: #111;
  border-radius: 50%;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .faq-wrap .f-wrap a:before {
    left: 10px;
  }
}

.faq-wrap .f-wrap a:after {
  content: '\f106';
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 1;
  color: #999;
}

.faq-wrap .f-wrap.on a:after {
  content: "\f107";
  color: #111;
}

.faq-wrap .q-wrap {
  display: none;
  width: 100%;
}

.faq-wrap .q-wrap p {
  position: relative;
  padding: 20px 40px 20px 70px;
  border-top: 1px solid #e1e1e1;
  background: #f9f9f9;
  font-size: 13px;
  line-height: 18px;
  color: #414141;
}

.faq-wrap .q-wrap p:before {
  content: 'A';
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 30px;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  background: #999;
  border-radius: 50%;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  text-align: center;
}

strong.date_on {
  margin: 0 0 0 10px;
  display: inline-block;
  width: 55px;
  height: 26px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 12px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  background: #091520;
}

strong.date_off {
  margin: 0 0 0 10px;
  display: inline-block;
  width: 55px;
  height: 26px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 12px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  background: #c4c7c9;
}

/* Mobile Board Style */
@media (max-width: 767px) {
  .board-wrap input,
  .board-wrap select {
    display: inline-block;
  }
  .post-navi li a {
    max-width: 60%;
  }
  .board-search-wrap {
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    font-size: 0;
    line-height: 0;
    background-color: #f4f4f4;
  }
  .board-search-wrap p:first-of-type {
    margin-right: 3%;
    width: 30%;
  }
  .board-search-wrap p:nth-of-type(2) {
    margin-right: 0;
    width: 67%;
  }
  .board-search-wrap p:nth-of-type(3) {
    margin-top: 3%;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .post-navi li a {
    max-width: 65%;
  }
}

/* ==========================================================================
  회원가입 & 로그인
   ========================================================================== */
.member-wrap {
  padding: 0.9375rem;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1;
  color: #414141;
}

.member-wrap .member-title {
  padding-bottom: 1.25rem;
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1;
  color: #303030;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap .member-title {
    font-size: 1.25rem;
  }
}

.member-wrap a {
  display: block;
  font-size: 0.75rem;
  color: #606060;
  text-decoration: none;
}

.member-wrap a:hover {
  color: black;
}

.member-wrap input, .member-wrap select, .member-wrap textarea {
  border: 1px solid #dedede;
  border-radius: 0;
  background: white;
  font-size: 0.8125rem;
  line-height: 1;
  color: #414141;
  vertical-align: middle;
}

.member-wrap input, .member-wrap select {
  display: inline-block;
}

.member-wrap input[type="text"], .member-wrap input[type="password"], .member-wrap select {
  padding: 0 0.4375rem;
  height: 2.1875rem;
}

.member-wrap input[type="radio"] {
  display: none !important;
}

.member-wrap input[type="radio"] + label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.member-wrap input[type="radio"] + label:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #bebebe;
  transition: all .3s ease;
  border-radius: 50%;
  content: "";
}

@media (max-width: 767px) {
  .member-wrap input[type="radio"] + label:before {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.member-wrap input[type="radio"]:checked + label:before {
  content: "\f00c";
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #111;
  border-color: #111;
  font-family: 'FontAwesome';
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap input[type="radio"]:checked + label:before {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.member-wrap input[type="checkbox"] {
  display: none !important;
}

.member-wrap input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.member-wrap input[type="checkbox"] + label:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #bebebe;
  transition: all .3s ease;
  border-radius: 0;
  content: "";
}

@media (max-width: 767px) {
  .member-wrap input[type="checkbox"] + label:before {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.member-wrap input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #111;
  border-color: #111;
  font-family: 'FontAwesome';
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap input[type="checkbox"]:checked + label:before {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.member-wrap p label {
  display: inline-block;
  padding-left: 28px;
  line-height: 20px;
  color: #666;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .member-wrap p label {
    padding-left: 23px;
    line-height: 15px;
  }
}

.member-wrap select {
  padding: 0 0 0 10px;
  min-width: 150px;
  background: #fff url("/img/common/select-arrow.gif") no-repeat right center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  cursor: pointer;
}

.member-wrap select::-ms-expand {
  display: none;
}

.member-wrap textarea {
  padding: 10px;
  height: 150px;
  width: 100%;
  color: #666;
}

@media (max-width: 767px) {
  .member-wrap textarea {
    font-size: 13px;
    line-height: 18px;
  }
}

.member-wrap input[type="file"] {
  border: 0 none;
}

.member-wrap .login-form-wrap {
  position: relative;
  margin: 0 auto;
  padding-top: 9.375rem;
  width: 31.25rem;
  border-top: 1px solid #e1e1e1;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap .login-form-wrap {
    width: 100%;
  }
}

.member-wrap .login-form-wrap:before {
  display: inline-block;
  z-index: 66;
  position: absolute;
  top: 30px;
  left: 50%;
  width: 64px;
  height: 89px;
  margin-left: -32px;
  background: url("/img/member/icon_lock.png") no-repeat 0 0;
  background-size: 100% auto;
  content: '';
}

.member-wrap .login-form-wrap .login-input {
  width: 100%;
}

.member-wrap .login-form-wrap .login-input li {
  margin: 0 0 15px;
}

.member-wrap .login-form-wrap input[type="text"], .member-wrap .login-form-wrap input[type="password"] {
  width: 100%;
  height: 50px;
}

.member-wrap .login-form-wrap .save-id-wrap {
  float: left;
  width: 50%;
  text-align: left;
}

.member-wrap .login-form-wrap .save-id-wrap label {
  font-size: 13px;
}

.member-wrap .login-form-wrap .find-btn-wrap {
  float: right;
  width: 50%;
  text-align: right;
}

.member-wrap .login-form-wrap .find-btn-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 13px;
  line-height: 20px;
}

.member-wrap .login-form-wrap .login-btn-wrap {
  clear: both;
  padding: 30px 0 0;
  width: 100%;
  text-align: center;
}

.member-wrap .login-form-wrap .login-btn-wrap a {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
}

.member-wrap .login-form-wrap .login-btn-wrap a.btn-login {
  background: #464646;
  color: #fff;
}

.member-wrap .login-form-wrap .login-btn-wrap a.btn-join {
  background: #d3d3d3;
  color: #464646;
}

.member-wrap .join-form-wrap {
  width: 100%;
}

.member-wrap .join-form-wrap legend {
  padding: 30px 0 10px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 20px;
  color: #303030;
}

@media (max-width: 767px) {
  .member-wrap .join-form-wrap legend {
    padding: 20px 0 10px;
    font-size: 14px;
  }
}

.member-wrap .join-form-wrap legend span {
  display: inline-block;
  margin: 7px 0 0;
  width: 100%;
  font-weight: normal;
  font-size: 13px;
  line-height: 18px;
  color: #666;
}

.member-wrap .join-form-wrap .box-wrap {
  overflow-x: hidden;
  margin-bottom: 15px;
  padding: 15px 20px;
  width: 100%;
  height: 230px;
  border: 1px solid #bebebe;
  border-top-color: #303030;
  white-space: pre-line;
  font-size: 14px;
  line-height: 18px;
  color: #666;
  text-align: left;
}

.member-wrap .join-form-wrap .box-wrap + .join-agree label strong {
  color: #f84a4a;
}

@media (max-width: 767px) {
  .member-wrap .join-form-wrap .box-wrap {
    height: 150px;
    padding: 15px;
    font-size: 12px;
    line-height: 17px;
  }
}

.member-wrap .form-table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

@media (max-width: 767px) {
  .member-wrap .form-table colgroup {
    display: none;
  }
}

.member-wrap .form-table tr {
  border-bottom: 1px solid #e1e1e1;
}

.member-wrap .form-table tr:last-child {
  border-bottom: 0 none;
}

.member-wrap .form-table tr th {
  padding: 16px 10px 16px 20px;
  background: #f4f4f4;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  color: #303030;
  text-align: left;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr th {
    width: 30%;
    padding: 16px 0 16px 15px;
  }
}

@media (max-width: 480px) {
  .member-wrap .form-table tr th {
    padding: 16px 10px;
    width: 90px;
    font-size: 12px;
  }
}

.member-wrap .form-table tr th.required:after {
  display: inline-block;
  width: 14px;
  height: 11px;
  margin-top: -3px;
  margin-left: 7px;
  background: url("/img/common/required.png") no-repeat 0 0;
  vertical-align: middle;
  content: '';
}

@media (max-width: 767px) {
  .member-wrap .form-table tr th.required:after {
    background-size: 100% auto;
    margin-left: 3px;
    width: 10px;
    height: 8px;
  }
}

.member-wrap .form-table tr td {
  padding: 7px 13px 8px;
  font-size: 13px;
  line-height: 18px;
  color: #666;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .member-wrap .form-table tr td {
    padding: 7px 10px 8px;
    font-size: 12px;
  }
}

.member-wrap .form-table tr td .info-text {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 0;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr td .info-text {
    margin-top: 7px;
    margin-left: 0;
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .member-wrap .form-table tr td .info-text {
    font-size: 12px;
  }
}

.member-wrap .form-table tr td input, .member-wrap .form-table tr td select, .member-wrap .form-table tr td span, .member-wrap .form-table tr td label, .member-wrap .form-table tr td .check-btn {
  display: inline-block;
  margin-right: -5px;
}

.member-wrap .form-table tr td .check-btn {
  margin-right: 0;
  border: 1px solid #dedede;
  background: #f3f3f3;
  font-weight: bold;
  font-size: 14px;
  line-height: 33px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .member-wrap .form-table tr td .check-btn {
    margin-left: 10px;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .member-wrap .form-table tr td .check-btn {
    float: right;
    width: 38%;
    font-size: 12px;
    text-align: center;
  }
}

.member-wrap .form-table tr.join-form-id input {
  min-width: 250px;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-id input {
    min-width: 0;
    width: 60%;
  }
}

.member-wrap .form-table tr.join-form-password input {
  min-width: 320px;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-password input {
    min-width: 0;
    width: 100%;
  }
}

.member-wrap .form-table tr.join-form-password input::-webkit-input-placeholder {
  color: #f84a4a;
}

.member-wrap .form-table tr.join-form-password input:-moz-placeholder {
  color: #f84a4a;
}

.member-wrap .form-table tr.join-form-password input::-moz-placeholder {
  color: #f84a4a;
}

.member-wrap .form-table tr.join-form-password input:-ms-input-placeholder {
  color: #f84a4a;
}

.member-wrap .form-table tr.join-form-tel select {
  max-width: 150px;
  min-width: auto;
  width: 25%;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-tel select {
    max-width: 100%;
    width: 30%;
  }
}

.member-wrap .form-table tr.join-form-tel input {
  margin-left: 7px;
  max-width: 150px;
  width: 25%;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-tel input {
    width: 30%;
    max-width: 100%;
    margin-left: 0;
  }
}

.member-wrap .form-table tr.join-form-tel span {
  margin-left: 7px;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-tel span {
    width: 5%;
    margin-left: 0;
    text-align: center;
  }
}

.member-wrap .form-table tr.join-form-email input {
  min-width: 250px;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-email input {
    width: 60%;
    min-width: 0;
  }
}

.member-wrap .form-table tr.join-form-email span {
  display: inline-block;
  margin-top: 7px;
  width: 100%;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-email select {
    width: 100%;
    margin-top: 7px;
  }
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-address .post {
    width: 60%;
  }
}

.member-wrap .form-table tr.join-form-address input.address {
  margin-top: 7px;
  width: 100%;
}

.member-wrap .form-table tr.join-form-radio p, .member-wrap .form-table tr.join-form-check p {
  display: inline-block;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-radio p, .member-wrap .form-table tr.join-form-check p {
    margin-top: 7px;
    margin-right: 0;
    width: 100%;
  }
  .member-wrap .form-table tr.join-form-radio p:first-child, .member-wrap .form-table tr.join-form-check p:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .member-wrap .form-table tr.join-form-check p {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.member-wrap .form-table tr.join-form-birth select {
  width: 23%;
  min-width: auto;
}

@media (min-width: 768px) {
  .member-wrap .form-table tr.join-form-birth select {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .member-wrap .form-table tr.join-form-birth select {
    width: 40%;
  }
  .member-wrap .form-table tr.join-form-birth select:first-child {
    margin-bottom: 7px;
    width: 90%;
  }
}

.member-wrap .form-table tr.join-form-birth input {
  margin-left: 10px;
  width: 23%;
  max-width: 150px;
}

.member-wrap .form-table tr.join-form-birth input:first-of-type {
  margin-left: 0;
}

@media (min-width: 768px) {
  .member-wrap .form-table tr.join-form-birth span {
    margin-left: 7px;
    margin-right: 7px !important;
  }
}

@media (max-width: 767px) {
  .member-wrap .form-table tr.join-form-birth span {
    width: 10.33333333333333%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .member-wrap .form-table tr.join-form-birth span {
    width: 10%;
  }
  .member-wrap .form-table tr.join-form-birth span:first-of-type {
    margin-bottom: 7px;
    width: 10%;
  }
}

.member-wrap .join-result-wrap .result-title {
  border-top: 1px solid #e1e1e1;
  padding: 4.375rem 0 1.875rem;
  width: 100%;
  font-weight: 100;
  font-size: 30px;
  line-height: 36px;
  color: #303030;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap .join-result-wrap .result-title {
    padding: 3.125rem 0 0.9375rem;
    font-size: 26px;
    line-height: 30px;
  }
}

.member-wrap .join-result-wrap .result-text {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  text-align: center;
}

.member-wrap .join-result-wrap .result-text span {
  font-weight: bold;
  color: #303030;
}

.member-wrap .join-result-wrap .warning-message {
  margin: 50px 0 15px;
  width: 100%;
  color: #f84a4a;
  text-align: center;
}

@media (max-width: 767px) {
  .member-wrap .join-result-wrap .warning-message {
    margin: 30px 0 15px;
  }
}

.member-wrap .join-result-wrap .form-table {
  margin: 0 auto;
  width: 65%;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .member-wrap .join-result-wrap .form-table {
    margin: 0 0 10px;
    width: 100%;
  }
}

.member-wrap .join-btn-wrap {
  clear: both;
  padding: 30px 0 0;
  width: 100%;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.member-wrap .join-btn-wrap a {
  display: inline-block;
  margin: 0 5px;
  width: 150px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
}

.member-wrap .join-btn-wrap a.btn-confirm {
  background: #464646;
  color: #fff;
}

.member-wrap .join-btn-wrap a.btn-cancel {
  background: #d3d3d3;
  color: #464646;
}

@media (max-width: 480px) {
  .member-wrap .join-btn-wrap a {
    width: 48.5%;
    margin: 0;
    margin-right: 3%;
    font-size: 14px;
    line-height: 45px;
  }
  .member-wrap .join-btn-wrap a:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .join-form-select select {
    width: 100%;
  }
  .join-form-name input {
    width: 100%;
  }
}