@charset "utf-8";

/* mypage_tbl */
.mypage_tbl table {
  width: 100%;
  border-top: 2px solid #121417;
}
.mypage_tbl table th,
.mypage_tbl table td {
  border-bottom: 1px solid #c0c7ce;
  border-right: 1px solid #c0c7ce;
  padding: 12px;
  font-size: 15px;
  line-height: 22px;
  vertical-align: middle;
  word-break: keep-all;
}
.mypage_tbl table tr th:last-child,
.mypage_tbl table tr td:last-child {
  border-right: 0;
}
.mypage_tbl table th {
  background: #f3f5f7;
  font-weight: 700;
}
.mypage_tbl table td {
  background: #fff;
  text-align: center;
}
.mypage_tbl.left_type th,
.mypage_tbl.left_type td {
  text-align: left;
}
.mypage_tbl table td .no_data {
  text-align: center;
}
.mypage_tbl .info_txt1 {
  margin: 12px 0 0 0;
  font-size: 14px;
}

/* file_upload */
.mypage_tbl table td .file_upload input {
  position: absolute;
  left: -99999px;
  opacity: 0;
}
.mypage_tbl table td .file_upload .file_list .fileItem {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  margin: 8px 0 0;
  column-gap: 5px;
  font-size: 16px;
}
.mypage_tbl table td .file_upload .file_list .fileItem .clear {
  border: none;
  padding: 0;
  background: url(../img/ico/icon_x.png) no-repeat center/18px;
  width: 18px;
  height: 18px;
}

/* phone_wrap */
.mypage_tbl table td .phone_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mypage_tbl table td .phone_wrap .timer {
  display: none;
  width: 50px;
  font-size: 15px;
  font-weight: 500;
}
.mypage_tbl table td .phone_wrap .acabtn {
  flex: 0 0 auto;
}

/* bottom_btnarea */
.bottom_btnarea {
  display: flex;
  justify-content: center;
  margin: 40px 0 0 0;
}

/* table_top */
.table_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 20px;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.table_top:first-child {
  margin-top: 0;
}
.table_top h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  flex: 0 0 auto;
}
.table_top .ty_text {
  display: flex;
  align-self: flex-end;
}
.table_top .right_box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.table_top .right_box .txt {
  font-size: 15px;
}
.table_top .right_box .btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* thumbnail_list */
.thumbnail_list {
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
}
.thumbnail_list .item {
  padding: 16px 0 0 16px;
  flex: 0 0 25%;
  cursor: pointer;
  box-sizing: border-box;
}
.thumbnail_list .item .in {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 10px;
  border: 1px solid #ebeaec;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  box-sizing: border-box;
}
.thumbnail_list .item .in .top img {
  display: block;
  max-width: 100%;
}
.thumbnail_list .item .in .bottom .name {
  font-size: 14px;
}

/* paging */
.paging {
  text-align: center;
  margin: 50px 0 0;
}
.paging ul {
  font-size: 0;
}
.paging ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}
.paging ul li a {
  display: block;
}
.paging ul li a span {
  font-size: 13px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  border: 1px solid #00c1bb;
  border-radius: 50%;
  display: inline-block;
  color: #00c1bb;
}
.paging ul li.on a span {
  background: #00c1bb;
  color: #fff;
}
.paging ul li.btn_page_first span,
.paging ul li.btn_page_prev span,
.paging ul li.btn_page_next span,
.paging ul li.btn_page_last span {
  font-size: 0;
  display: block;
  width: 12px;
  height: 12px;
  border: 0;
  line-height: unset;
  border-radius: 0;
}
.paging ul li.btn_page_first span {
  background: url(../img/ico/ico_first.png) no-repeat center/12px 11px;
}
.paging ul li.btn_page_prev span {
  background: url(../img/ico/ico_prev.png) no-repeat center/6px 11px;
}
.paging ul li.btn_page_next span {
  background: url(../img/ico/ico_next.png) no-repeat center/6px 11px;
}
.paging ul li.btn_page_last span {
  background: url(../img/ico/ico_last.png) no-repeat center/12px 11px;
}

@media (max-width: 1080px) {
  /* mypage_tbl */
  .mypage_tbl table th,
  .mypage_tbl table td {
    padding: 10px;
    word-break: break-all;
    font-size: 14px;
    line-height: 18px;
  }
  .mypage_tbl .info_txt1 {
    font-size: 13px;
  }

  /* file_upload */
  .mypage_tbl table td .file_upload .file_list .fileItem {
    font-size: 14px;
  }
  .mypage_tbl table td .file_upload .file_list .fileItem .clear {
    background-size: 16px;
    width: 16px;
    height: 16px;
  }

  /* bottom_btnarea */
  .bottom_btnarea {
    margin: 30px 0 0 0;
  }

  /* table_top */
  .table_top {
    margin: 30px 0 10px;
  }
  .table_top h3 {
    font-size: 15px;
    line-height: 22px;
  }
  .table_top .right_box .txt {
    font-size: 13px;
  }

  /* thumbnail_list */
  .thumbnail_list .item {
    flex: 0 0 50%;
  }
}

@media (max-width: 760px) {
  /* mypage_tbl */
  .mypage_tbl table th,
  .mypage_tbl table td {
    font-size: 12px;
  }
  .mypage_tbl .info_txt1 {
    font-size: 12px;
  }

  /* file_upload */
  .mypage_tbl table td .file_upload .file_list .fileItem {
    font-size: 12px;
  }

  /* bottom_btnarea */
  .bottom_btnarea {
    margin: 20px 0 0 0;
  }
}

@media (max-width: 480px) {
  /* thumbnail_list */
  .thumbnail_list .item {
    flex: 0 0 100%;
  }
}
