@charset "utf-8";

/* Common */
.board-ls table .num {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  padding: 0 3px;
}
.board-ls .m_info {
  display: none;
}
.sound_only {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: 0;
  overflow: hidden;
}

/* Board type 1  : simple */
.board-ls--table--simple table {
  width: 100%;
  border-top: 2px solid var(--main-color);
  table-layout: fixed;
}
.board-ls--table--simple table tr {
  border-bottom: 1px solid #d4d4d4;
}
.board-ls--table--simple table tr td.contents .text__inner:hover {
  text-decoration: underline;
  font-weight: 600;
}
.board-ls--table--simple table tr th {
  width: 80px;
  padding: 10px 0;
}
.board-ls--table--simple table tr th.notice {
  color: var(--main-color);
  text-align: center;
}
.board-ls--table--simple table tbody tr th.num {
  padding: 10px 20px;
  color: #676871;
  text-align: center;
}
.board-ls--table--simple table tbody tr td.contents {
  width: 100%;
}
.board-ls--table--simple table tbody tr td.contents .text__inner {
  display: block;
  width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.board-ls--table--simple.wide th,
.board-ls--table--simple.wide td {
  padding: 25px 0;
}

/* Board type 2 : basic */
.board-ls--table--basic table {
  width: 100%;
  border-top: 2px solid #000;
  table-layout: fixed;
}
.board-ls--table--basic table tr th,
.board-ls--table--basic table tr td {
  color: #818181;
}
.board-ls--table--basic table thead tr th {
  padding: 5px 0;
  text-align: center;
  color: var(--main-color);
}
.board-ls--table--basic table thead tr th.num {
  width: 70px;
}
.board-ls--table--basic table thead tr th.date {
  width: 100px;
}
.board-ls--table--basic table tbody {
  border-bottom: 2px solid #818181;
}
.board-ls--table--basic table tbody tr:first-child {
  border-top: 1px solid #aaaaaa;
}
.board-ls--table--basic table tbody tr {
  border-top: 1px solid #d5d5d5;
}
.board-ls--table--basic table tbody tr th,
.board-ls--table--basic table tbody tr td {
  padding: 5px 0;
}
.board-ls--table--basic table tbody tr th.num {
  text-align: center;
  color: #686464;
  border-right: 3px solid #fff;
}
.board-ls--table--basic table tbody tr td.date {
  text-align: center;
  font-size: 15px;
}
.board-ls--table--basic table tbody tr td.title {
  padding-left: 15px;
  border-right: 3px solid #fff;
}
.board-ls--table--basic table tbody tr td.title .title__inner {
  display: block;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}
.board-ls--table--basic table tbody tr td.title .title__inner:hover {
  text-decoration: underline;
  font-weight: 600;
}
.board-ls--table--basic table tbody tr:last-child td,
.board-ls--table--basic table tbody tr:last-child th {
  border-right: none;
}
.board-ls--table--basic.wide table thead th,
.board-ls--table--basic.wide table thead td {
  padding: 15px 0;
}
.board-ls--table--basic.wide table tbody th,
.board-ls--table--basic.wide table tbody td {
  padding: 25px 0;
}

/* Board type 3 :  category */
.board-ls--table--category table {
  width: 100%;
  border-top: 2px solid #706f6e;
  table-layout: fixed;
}
.board-ls--table--category table tr th,
.board-ls--table--category table tr td {
  color: #818181;
}
.board-ls--table--category table thead tr th {
  padding: 10px 0;
  text-align: center;
  color: #000;
}
.board-ls--table--category table thead tr th.num {
  width: 100px;
}
.board-ls--table--category table thead tr th.title {
  width: 100%;
}
.board-ls--table--category table thead tr th.date {
  width: 100px;
}
.board-ls--table--category table tbody {
  border-bottom: 2px solid #818181;
}
.board-ls--table--category table tbody tr:first-child {
  border-top: 1px solid #aaaaaa;
}
.board-ls--table--category table tbody tr {
  border-top: 1px solid #d5d5d5;
}
.board-ls--table--category table tbody tr th,
.board-ls--table--category table tbody tr td {
  padding: 10px 0;
}
.board-ls--table--category table tbody tr th.num {
  text-align: center;
  color: #686464;
}
.board-ls--table--category table tbody tr td.date {
  text-align: center;
  font-size: 15px;
  color: #969696;
}
.board-ls--table--category table tbody tr td.title {
  padding-left: 15px;
  padding-right: 15px;
}
.board-ls--table--category table tbody tr td.title .wrap {
  display: flex;
  width: 100%;
}
.board-ls--table--category table tbody tr td.title .category {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  flex-shrink: 0;
}
.board-ls--table--category table tbody tr td.title .category.notice {
  color: var(--main-color);
}
.board-ls--table--category table tbody tr td.title .category.news {
  color: #001313;
}
.board-ls--table--category table tbody tr td.title .title__inner {
  display: block;
  flex-shrink: 1;
  width: calc(100% - 100px);
}
.board-ls--table--category table tbody tr td.title .title__inner:hover {
  text-decoration: underline;
  font-weight: 600;
}
.board-ls--table--category table tbody tr td.title .title__inner .title {
  color: #4b4b4b;
  display: block;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.board-ls--table--category table tbody tr td.title .title__inner .contents {
  color: #797979;
  font-size: 13px;
  display: block;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Board type 4 :  head--colored */
.board-ls--table--head--colored table {
  width: 100%;
  border-top: 2px solid #c8c7c7;
  table-layout: fixed;
}
.board-ls--table--head--colored table thead {
  background-color: #f8f7f1;
}
.board-ls--table--head--colored table thead tr th {
  position: relative;
  padding: 20px 25px;
  border-bottom: 2px solid var(--main-color);
  color: #70706e;
}
.board-ls--table--head--colored table thead tr th.num {
  width: 90px;
  text-align: center;
}
.board-ls--table--head--colored table thead tr th.date {
  width: 180px;
}
.board-ls--table--head--colored table thead tr th.view {
  width: 180px;
}
.board-ls--table--head--colored table thead tr th::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: '';
  width: 2px;
  height: 15px;
  background-color: #c8c7c7;
}
.board-ls--table--head--colored table thead tr th:last-child::after {
  display: none;
}
.board-ls--table--head--colored table tbody tr {
  border-bottom: 1px solid #909090;
}
.board-ls--table--head--colored table tbody tr td {
  padding: 10px 25px;
}
.board-ls--table--head--colored table tbody tr th.num {
  padding: 0 15px;
  text-align: center;
}
.board-ls--table--head--colored table tbody tr td.title .wrap {
  display: flex;
  overflow: hidden;
}
.board-ls--table--head--colored table tbody tr td.title .category {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50px;
  width: 80px;
  font-size: 14px;
  margin-right: 20px;
}
.board-ls--table--head--colored table tbody tr td.title .category.alarm {
  background-color: #03285a;
}
.board-ls--table--head--colored table tbody tr td.title .category.notice {
  background-color: var(--main-color);
}
.board-ls--table--head--colored table tbody tr td.title .wrap .contents {
  display: block;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-ls--table--head--colored table tbody .m_info {
  display: none;
}
.board-ls--table--head--colored table tbody .m_info .date_m {
  margin-right: 10px;
}

/* Board type 5 : table--head--font--colored */
.board-ls--table--head--font--colored .table {
  width: 100%;
  border-top: 2px solid #38373a;
  border-bottom: 2px solid #b5b5b6;
}
.board-ls--table--head--font--colored .table .thead {
  display: flex;
}
.board-ls--table--head--font--colored .table .thead div {
  text-align: center;
  padding: 15px 0;
  border-bottom: 2px solid #d8d8d9;
  margin: 0 10px;
  font-weight: 600;
  color: #545a60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-ls--table--head--font--colored .table .thead .date {
  width: 80px;
  flex-shrink: 0;
}
.board-ls--table--head--font--colored .table .thead .title {
  width: 100%;
}
.board-ls--table--head--font--colored .table .thead .view {
  width: 60px;
  flex-shrink: 0;
}
.board-ls--table--head--font--colored .table .thead .attachment {
  width: 100px;
  flex-shrink: 0;
}

.board-ls--table--head--font--colored .table .tr {
  display: flex;
}
.board-ls--table--head--font--colored .table .tr .td {
  display: flex;
  flex-shrink: 0;
  border-bottom: 1px solid #b5b5b6;
  margin: 0 10px;
}
.board-ls--table--head--font--colored .table .tr:last-child .td {
  border-bottom: none;
}
.board-ls--table--head--font--colored .table .tr .date {
  width: 80px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #656566;
  justify-content: center;
  padding: 20px 0;
}
.board-ls--table--head--font--colored .table .tr .date .day {
  font-size: 35px;
  line-height: 1.2;
}
.board-ls--table--head--font--colored .table .tr .contents {
  flex-shrink: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 20px;
  overflow: hidden;
}
.board-ls--table--head--font--colored .table .tr .contents .title {
  font-weight: 600;
  font-size: 20px;
  color: #363730;
  line-height: 1;
  margin-bottom: 0.5em;
  overflow: hidden;
  display: block;
  width: 90%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-ls--table--head--font--colored .table .tr .contents .title .colored {
  color: var(--main-color);
}
.board-ls--table--head--font--colored .table .tr .contents .text {
  line-height: 1;
  font-size: 15px;
  overflow: hidden;
  display: block;
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-ls--table--head--font--colored .table .tr .view {
  width: 60px;
  justify-content: center;
  align-items: center;
}
.board-ls--table--head--font--colored .table .tr .attachment {
  width: 100px;
  justify-content: center;
  align-items: center;
}

/* Board type 6 : table--attachment */
.board-ls--table--attachment .table {
  width: 100%;
  border-top: 2px solid #38373a;
  border-top: 3px solid #2f64a6;
  border-bottom: 1px solid #5a5a5a;
}
.board-ls--table--attachment .table .thead {
  display: flex;
  background-color: #f5f8fd;
  border-bottom: 1px solid #2f64a6;
}
.board-ls--table--attachment .table .thead .th {
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
}
.board-ls--table--attachment .table .thead .th.num {
  width: 100px;
}
.board-ls--table--attachment .table .thead .th.title {
  width: calc(100% - 400px);
}
.board-ls--table--attachment .table .thead .th.attachment {
  width: 100px;
}
.board-ls--table--attachment .table .thead .th.date {
  width: 100px;
}
.board-ls--table--attachment .table .thead .th.view {
  width: 100px;
}

.board-ls--table--attachment .table .tbody {
  display: flex;
  border-bottom: 1px solid #e1e1e1;
}
.board-ls--table--attachment .table .tbody:last-child {
  border-bottom: none;
}
.board-ls--table--attachment .table .tbody .td {
  padding: 10px 0;
  flex-shrink: 0;
}
.board-ls--table--attachment .table .tbody .td.num {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board-ls--table--attachment .table .tbody .td.contents {
  width: calc(100% - 400px);
  min-height: 74px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.board-ls--table--attachment .table .tbody .td.contents .title_section {
  width: 90%;
  overflow: hidden;
}
.board-ls--table--attachment .table .tbody .td.contents .title_section .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board-ls--table--attachment .table .tbody .td.contents .title_section .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board-ls--table--attachment .table .tbody .td.contents a:hover {
  text-decoration: underline;
}
.board-ls--table--attachment .table .tbody .td.contents .text {
  font-size: 14px;
  color: #8b898c;
}
.board-ls--table--attachment .table .tbody .td.attachment {
  width: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board-ls--table--attachment .table .tbody .td.attachment img {
  display: block;
  width: 35px;
}
.board-ls--table--attachment .table .tbody .td.date {
  width: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.board-ls--table--attachment .table .tbody .td.view {
  width: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/* gallery type1 : gallery--simple */
.board-ls--gallery--simple .ly-flex_cards .card {
  padding: 10px 10px 50px;
}
.board-ls--gallery--simple .ly-flex_cards .card .inner img {
  object-fit: cover;
  display: block;
}
.board-ls--gallery--simple .ly-flex_cards .card .inner .contents .title {
  color: #595757;
  font-size: 20px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-top: 20px;
}
.board-ls--gallery--simple
  .ly-flex_cards
  .card
  .inner
  .contents
  .title
  .category {
  display: inline-block;
  line-height: 1.4;
}
.board-ls--gallery--simple .ly-flex_cards .card .inner .date {
  margin-top: 10px;
  color: #727171;
}

/* gallery type2 : gallery--simple--border */
.card .inner {
  height: auto;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner {
  display: flex;
  flex-direction: column;
  display: flex;
  border: 1px solid #dfdfdf;
  align-items: center;
  justify-content: center;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner .image {
  width: 100%;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner img {
  display: block;
  object-fit: cover;
  width: 100%;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner .contents {
  width: 90%;
  padding: 15px 0;
  border-bottom: 2px solid #e9e9e9;
}
.board-ls--gallery--simple--border
  .ly-flex_cards
  .card
  .inner
  .contents
  .category {
  color: var(--main-color);
  font-weight: 600;
}
.board-ls--gallery--simple--border
  .ly-flex_cards
  .card
  .inner
  .contents
  .title {
  color: #2d2c2f;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
  height: 50px;
  overflow: hidden;
  line-height: 1.3;
  font-size: 20px;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner .date {
  color: #a0a3a8;
}
.board-ls--gallery--simple--border .ly-flex_cards .card .inner .date {
  width: 90%;
  padding: 15px 0;
}

/* gallery type3 : gallery--vertical--view--download */
.board-ls--gallery--vertical--view--download .ly-flex_cards--col2 .card {
  width: calc(50% - 10px);
}
.board-ls--gallery--vertical--view--download .ly-flex_cards .card {
  background-color: #f8f8f8;
  margin-right: 10px;
  margin-bottom: 20px;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card:nth-child(2n) {
  margin-right: 0;
}
.board-ls--gallery--vertical--view--download .ly-flex_cards .card .inner {
  display: flex;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .image {
  flex-shrink: 0;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .image
  img {
  display: block;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 20px;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .title
  .category {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .title
  .product_name {
  color: #434343;
  font-size: 18px;
  font-weight: 600;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .title
  .product_info {
  color: #434343;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .btns {
  display: flex;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .btns
  .btn {
  border: 1px solid #c6c6c6;
  border-radius: 50px;
  padding: 2px 15px;
  display: flex;
  justify-content: space-between;
  width: 130px;
  text-transform: capitalize;
  font-size: 14px;
  color: #434343;
  font-weight: 600;
}
.board-ls--gallery--vertical--view--download
  .ly-flex_cards
  .card
  .inner
  .contents
  .btns
  .btn:first-child {
  margin-right: 10px;
}

/* gallery type4 : gallery--vertical--view */
.board-ls--gallery--vertical--view .ly-flex_cards .card {
  width: 100%;
  border-bottom: 1px solid #bfbfbf;
  padding: 25px 10px;
}
.board-ls--gallery--vertical--view .ly-flex_cards .card .inner {
  display: flex;
}
.board-ls--gallery--vertical--view .ly-flex_cards .card .inner .image {
  width: 340px;
  height: 185px;
  margin-right: 30px;
  flex-shrink: 0;
}
.board-ls--gallery--vertical--view .ly-flex_cards .card .inner .image .img {
  width: 100%;
  height: 100%;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card:first-child
  .inner
  .image
  .img {
  background: url(http://angel-robotics.com/uploads/press/press_thumbnail_20220419173013.PNG)
    no-repeat center/cover;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card:nth-child(2)
  .inner
  .image
  .img {
  background: url(http://angel-robotics.com/uploads/press/press_thumbnail_20210721173725.jpg)
    no-repeat center/cover;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card:nth-child(3)
  .inner
  .image
  .img {
  background: url(http://angel-robotics.com/uploads/press/press_thumbnail_20211014182114.png)
    no-repeat center/cover;
}
.board-ls--gallery--vertical--view .ly-flex_cards .card .inner .contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 370px);
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .upper {
  width: 80%;
  overflow: hidden;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .upper
  .title {
  font-size: 28px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .upper
  .category {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower {
  display: flex;
  justify-content: space-between;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower
  .date {
  font-size: 20px;
  color: #9fa0a0;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower
  .go {
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #333;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower
  .go
  .go_text {
  display: block;
  margin-right: 10px;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower
  .go
  .ico {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  border-radius: 50px;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  .card
  .inner
  .contents
  .lower
  .go
  .ico
  .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -7px;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  a:hover
  .contents
  .upper
  .title {
  text-decoration: underline;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  a:hover
  .contents
  .lower
  .go_text {
  color: var(--main-color);
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  a:hover
  .contents
  .lower
  .go
  .ico {
  border: 1px solid var(--main-color) !important;
}
.board-ls--gallery--vertical--view
  .ly-flex_cards
  a:hover
  .contents
  .lower
  .go
  .ico
  .arrow {
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
}

/* gallery type5 : gallery--certificate--simple */
.board-ls--gallery--certificate--simple .ly-flex_cards .card {
  width: 26.5%;
  margin-right: 10.25%;
  margin-bottom: 55px;
}
.board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(3n) {
  margin-right: 0;
}
.board-ls--gallery--certificate--simple .ly-flex_cards .card .inner .image {
  border: 1px solid #b0b0b0;
  margin-bottom: 15px;
}
.board-ls--gallery--certificate--simple .ly-flex_cards .card .inner .image img {
  display: block;
  width: 100%;
}
.board-ls--gallery--certificate--simple
  .ly-flex_cards
  .card
  .inner
  .contents
  .category {
  color: var(--main-color);
  font-weight: 600;
  font-size: 15px;
}
.board-ls--gallery--certificate--simple
  .ly-flex_cards
  .card
  .inner
  .contents
  .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.board-ls--gallery--certificate--simple
  .ly-flex_cards
  .card
  .inner
  .contents
  .certificate_num {
  color: #727171;
  font-size: 12px;
}

/* gallery-download-1 */
.board-ls--gallery--download {
  margin-bottom: 120px;
}
.board-ls--gallery--download__item .thumb {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 110%;
  background-color: #dfdfdf;
  border: 1px solid #dfdfdf;
}
.board-ls--gallery--download__item .thumb > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-ls--gallery--download__item .thumb > a .tag {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--sub-color1);
  margin: 0;
  font-weight: 600;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}
.board-ls--gallery--download__item .thumb:hover > a .tag {
  opacity: 1;
}
.prototype .board-ls--gallery--download__item:first-child .thumb > a .tag {
  opacity: 1;
}
.board-ls--gallery--download__item .info {
  padding: 30px 0 0 0;
}
.board-ls--gallery--download__item .info .down_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border: 1px solid #dfdfdf;
  margin-top: 20px;
}
.board-ls--gallery--download__item .info .down_btn .txt {
  color: #adadad;
}
.board-ls--gallery--download__item .info .down_btn .ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #afafaf;
  padding: 0 2px 2px 2px;
  border: none;
}
.board-ls--gallery--download__item .info .down_btn .ico .arrow {
  width: 12px;
  height: 12px;
  border-color: #afafaf;
  border-width: 1px;
}
.board-ls--gallery--download__item .info .down_btn .ico::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  transform: translate(-50%);
  width: 1px;
  height: 120%;
  background: #afafaf;
}
.board-ls--gallery--download__item .info .down_btn:hover {
  border-color: var(--sub-color2);
}
.board-ls--gallery--download__item .info .down_btn:hover .ico::after {
  background-color: var(--sub-color1);
}
.board-ls--gallery--download__item .info .down_btn:hover .ico .arrow {
  border-color: var(--sub-color1);
}
.board-ls--gallery--download__item .info .down_btn:hover .txt {
  color: var(--main-color);
}
.board-ls--gallery--download__item.boxed {
  padding: 20px;
  border: 1px solid #dadada;
}

@media screen and (max-width: 1399px) {
  .board-ls--gallery--download__item .thumb > a .tag {
    display: none;
  }
}

/* gallery img only */
.board-ls--gallery--img_only__item {
  border: 1px solid #dadada;
  padding: 0 30px;
  height: 150px;
}

/* faq type1 : faq--basic */
.board--faq--basic ul {
  border-top: 3px solid var(--main-color);
  width: 100%;
  padding: 0;
}
.board--faq--basic ul li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}
.board--faq--basic ul li > a::after {
  display: none;
}
.board--faq--basic ul li.active a {
  border-bottom: 1px solid #b9b9b9;
}
.board--faq--basic ul li.active > a .arrow.up {
  transform: rotate(135deg);
}
.board--faq--basic ul li {
  border-bottom: 1px solid #b9b9b9;
}
.board--faq--basic ul li .question_inner {
  display: flex;
  align-items: center;
  padding: 15px;
}
.board--faq--basic ul li .question_inner .tag {
  border-radius: 50px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  margin-right: 25px;
  background-color: #8cb5e3;
}
.board--faq--basic ul li .question .ico {
  position: relative;
  right: 15px;
  width: 35px;
  height: 35px;
  border: 1px solid #4f5050;
  border-radius: 50px;
}
.board--faq--basic ul li .question .ico .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2.5px;
  margin-left: -4.5px;
  border-top: 1px solid #4f5050;
  border-right: 1px solid #4f5050;
}
.board--faq--basic ul li.active .ico .arrow {
  transform: rotate(135deg);
  margin-top: -6.5px;
}
.board--faq--basic ul li .answer {
  display: none;
  background-color: #f7f8f8;
  padding: 15px 15px 30px;
}
.board--faq--basic ul li .answer .answer_inner {
  display: flex;
  align-items: flex-start;
}
.board--faq--basic ul li .answer .answer_inner p {
  font-size: 20px;
  color: #444;
}
.board--faq--basic ul li .answer .answer_inner .tag {
  border-radius: 50px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  margin-right: 25px;
  background-color: #9fa0a0;
  flex-shrink: 0;
}

/* inquiry type1 : inquiry--basic */
.board--inquiry--basic form {
  width: 100%;
}
.board--inquiry--basic form table {
  width: 100%;
  border-top: 2px solid #a0a0a0;
  border-bottom: 1px solid #a0a0a0;
}
.board--inquiry--basic form table tr th {
  width: 200px;
  min-width: 85px;
  font-size: 16px;
  font-weight: 700;
  background-color: #f6f6f6;
  padding: 15px 20px;
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
}
.board--inquiry--basic form table tr th .req {
  margin-left: 10px;
  color: var(--main-color);
}
.board--inquiry--basic form table tr td {
  padding: 15px 20px;
  border-bottom: 1px solid #e9e9e9;
}
.board--inquiry--basic form table tr td .inp_half {
  width: 40%;
}
.board--inquiry--basic form table tr td .cate {
  padding-right: 30px;
}
.board--inquiry--basic form table tr td .cate input[type='radio'] {
  margin-right: 10px !important;
}
.board--inquiry--basic .btn_confirm {
  display: flex;
  justify-content: center;
  margin: 55px;
}
.board--inquiry--basic .btn_confirm .btn_submit {
  background-color: var(--main-color);
  border: none;
  color: #fff;
  width: 148px;
  height: 50px;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.board--inquiry--basic .privacy_use_information {
  position: relative;
  height: 380px;
  background-color: #f8f8f8;
  margin-top: 60px;
  border: 1px solid #efefef;
  overflow-y: scroll;
}
.board--inquiry--basic .privacy_use_information .privacy_container {
  padding: 30px 40px;
}
.board--inquiry--basic .privacy_use_information h5 {
  font-size: 20px;
  color: #585c60;
  margin-bottom: 20px;
}
.board--inquiry--basic .privacy_use_information p {
  color: #838f97;
}
.board--inquiry--basic .privacy_use_information dl dt {
  font-weight: 600;
  color: #838f97;
}
.board--inquiry--basic .privacy_use_information dl dd {
  padding-left: 15px; /* display: flex; */
  color: #838f97;
}
.board--inquiry--basic .privacy_use_information dl ul {
  padding-left: 30px;
}
.board--inquiry--basic .privacy_use_information dl ul li {
  /* display: flex; */
  color: #838f97;
}
.board--inquiry--basic .privacy_use_information .chk_box {
  position: sticky;
  bottom: -1px;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #838f97;
  border-top: 1px solid #efefef;
}
.board--inquiry--basic
  .privacy_use_information
  .chk_box
  input[type='checkbox'] {
  margin-right: 10px;
}

/* inquiry type1 : board--inquiry--attachment */
.board--inquiry--attachment form {
  width: 100%;
}
.board--inquiry--attachment form table {
  width: 100%;
  border-top: 2px solid #000;
  border-bottom: 1px solid #a0a0a0;
  color: #333;
}
.board--inquiry--attachment form table tr th {
  position: relative;
  width: 120px;
  min-width: 85px;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px;
  border-bottom: 1px solid #e9e9e9;
}
.board--inquiry--attachment form table tr th .req {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  margin-left: 10px;
  color: #d40329;
}
.board--inquiry--attachment form table tr td {
  padding: 15px 20px;
  border-bottom: 1px solid #e9e9e9;
}
.board--inquiry--attachment form table tr td .cate {
  padding-right: 30px;
}
.board--inquiry--attachment form table tr td .cate input[type='radio'] {
  margin-right: 10px !important;
}
.board--inquiry--attachment form table tr td .cate .margin_right_10 {
  margin-right: 10px;
}
.board--inquiry--attachment form table tr td.file_attachment .inputWrap {
  display: flex;
  position: relative;
}
.board--inquiry--attachment
  form
  table
  tr
  td.file_attachment
  .inputWrap
  .file_input {
  width: 400px;
  height: 40px;
}
.board--inquiry--attachment
  form
  table
  tr
  td.file_attachment
  .inputWrap
  > input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.board--inquiry--attachment form table tr td.file_attachment .fileSkin {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.board--inquiry--attachment form table tr td.file_attachment .fileSkin input {
  width: calc(100% - 95px);
}
.board--inquiry--attachment form table tr td.file_attachment .fileSkin button {
  width: 90px;
  height: 40px;
  line-height: 1.4;
  border-radius: 0;
  border: 1px solid #d2d2d2;
  margin-left: -1px;
}
.board--inquiry--attachment
  form
  table
  tr
  td.file_attachment
  .inputWrap
  > button {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid transparent;
  color: #777;
  font-size: 18px;
  cursor: pointer;
}
.board--inquiry--attachment form table tr td .noti {
  display: inline-block;
  font-size: 15px;
  margin-top: 15px;
  color: #333;
}
.board--inquiry--attachment form table tr td.wr_content textarea {
  height: 300px;
}
.board--inquiry--attachment .btn_confirm {
  display: flex;
  justify-content: center;
  margin: 55px;
}
.board--inquiry--attachment .btn_confirm .btn_submit {
  background-color: var(--main-color);
  border: none;
  color: #fff;
  width: 375px;
  height: 73px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
}

.board--inquiry--attachment .privacy_use_information {
  margin-top: 60px;
}
.board--inquiry--attachment .privacy_use_information .privacy_container {
  position: relative;
  height: 380px;
  background-color: #f8f8f8;
  border: 1px solid #efefef;
  overflow-y: scroll;
  padding: 30px 40px;
  border-top: 2px solid #000;
}
.board--inquiry--attachment
  .privacy_use_information
  .privacy_container::-webkit-scrollbar {
  background-color: #fff;
} /* 스크롤바 영역에 대한 설정 */
.board--inquiry--attachment
  .privacy_use_information
  .privacy_container::-webkit-scrollbar-thumb {
  background-color: #ededed;
  border-radius: 30px;
} /* 스크롤바 막대에 대한 설정 */
.board--inquiry--attachment
  .privacy_use_information
  .privacy_container::-webkit-scrollbar-track {
  background-color: #fff;
} /* 스크롤바 뒷 배경에 대한 설정 */
.board--inquiry--attachment .privacy_use_information h5 {
  font-size: 25px;
  color: #585c60;
  margin-bottom: 20px;
  font-weight: 400;
}
.board--inquiry--attachment .privacy_use_information p {
  color: #838f97;
}
.board--inquiry--attachment .privacy_use_information dl dt {
  font-weight: 600;
  color: #838f97;
}
.board--inquiry--attachment .privacy_use_information dl dd {
  padding-left: 15px; /* display: flex; */
  color: #838f97;
}
.board--inquiry--attachment .privacy_use_information dl ul {
  padding-left: 30px;
}
.board--inquiry--attachment .privacy_use_information dl ul li {
  /* display: flex; */
  color: #838f97;
}
.board--inquiry--attachment .privacy_use_information .chk_box {
  background-color: #fff;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #838f97;
  border-bottom: 1px solid #efefef;
}
.board--inquiry--attachment .privacy_use_information .chk_box li {
  position: relative;
}
.board--inquiry--attachment .privacy_use_information .chk_box li:first-child {
  margin-right: 15px;
}
.board--inquiry--attachment .privacy_use_information .chk_box li label {
  display: flex;
  align-items: center;
}
.board--inquiry--attachment
  .privacy_use_information
  .chk_box
  input[type='checkbox'] {
  position: absolute;
  z-index: -1;
}
.board--inquiry--attachment
  .privacy_use_information
  .chk_box
  label
  .fake_checkbox {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #d2d2d2;
  margin-right: 10px;
}
.board--inquiry--attachment
  .privacy_use_information
  .chk_box
  input[type='checkbox']:checked
  + label
  .fake_checkbox {
  border: 2px solid var(--main-color);
  background: #fff url(../images/common/check.png) no-repeat center/70%;
}
.board--inquiry--attachment form table tr td .email_total {
  display: inline-block;
}
.board--inquiry--attachment form table tr td .email_total .email_at {
  margin: 0 5px;
  display: inline-block;
}

/* Editor Content */
.editor_content {
  word-break: normal;
}

@media screen and (max-width: 1399px) {
  .editor_content h1 {
    font-size: 28px!important;
  }
  .editor_content h2 {
    font-size: 26px!important;
  }
  .editor_content h3 {
    font-size: 24px!important;
  }
  .editor_content h4 {
    font-size: 22px!important;
  }
  .editor_content h5 {
    font-size: 20px!important;
  }
  .editor_content h6 {
    font-size: 18px!important;
  }
  .editor_content span,
  .editor_content p {
    font-size: 15px!important;
  }
}

/* view type1 :  view-basic */
.board--view--basic section {
  border-top: 4px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 40px;
}
.board--view--basic section .viewHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 30px;
  padding: 25px 15px;
  border-bottom: 1px solid #c9c9c9;
}
.board--view--basic section .viewHead .viewHead_title {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.board--view--basic section .viewHead .viewHead_title .category {
  margin-right: 15px;
  color: var(--main-color);
  font-weight: 900;
}
.board--view--basic section .viewHead .viewHead_title .title {
  color: #434343;
  font-weight: 500;
}
.board--view--basic section .viewHead .viewHead_info {
  flex-shrink: 0;
  font-size: 16px;
  color: #777;
}
.board--view--basic section .viewHead .viewHead_info .view {
  margin-right: 20px;
}
.board--view--basic section .viewBody {
  padding: 40px 0;
}
.board--view--basic .listBtn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.board--view--basic .listBtn a {
  display: flex;
  width: 215px;
  height: 70px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  justify-content: center;
  align-items: center;
}

/* view type2 :  view--prev--next--horizontal */
.board--view--prev--next--horizontal {
  border-top: 1px solid #000;
}
.board--view--prev--next--horizontal .viewHead {
  background-color: #f8f8f8;
}
.board--view--prev--next--horizontal .viewHead .viewHead_title {
  border-bottom: 1px solid #d2d2d2;
  padding: 20px;
  font-size: 24px;
}
.board--view--prev--next--horizontal .viewHead .viewHead_info {
  padding: 15px 20px;
  font-size: 18px;
  color: #727171;
}
.board--view--prev--next--horizontal .viewHead .viewHead_info .date {
  position: relative;
  margin-right: 30px;
}
.board--view--prev--next--horizontal .viewHead .viewHead_info .date::after {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 20px;
  background-color: #d2d2d2;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.board--view--prev--next--horizontal .viewBody {
  padding: 50px 20px;
  border-bottom: 1px solid #d2d2d2;
}
.board--view--prev--next--horizontal .viewFoot .view_nav {
  border-top: 1px solid #535353;
  border-bottom: 1px solid #535353;
  margin-bottom: 30px;
}
.board--view--prev--next--horizontal .viewFoot .view_nav div {
  display: flex;
  padding: 10px 15px;
}
.board--view--prev--next--horizontal .viewFoot .view_nav div:first-child {
  border-bottom: 1px solid #b5b5b5;
}
.board--view--prev--next--horizontal .viewFoot .view_nav div span {
  margin-right: 30px;
}
.board--view--prev--next--horizontal .viewFoot .view_nav div a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 70%;
}
.board--view--prev--next--horizontal .viewFoot .view_nav div a:hover {
  text-decoration: underline;
}
.board--view--prev--next--horizontal .viewFoot .listBtn {
  width: 100%;
}
.board--view--prev--next--horizontal .viewFoot .listBtn a {
  display: flex;
  width: 130px;
  height: 40px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* view type3 :  view--prev--list--next*/
.board--view--prev--list--next {
  border-top: 3px solid #49484b;
}
.board--view--prev--list--next .viewHead {
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
.board--view--prev--list--next .viewHead .viewHead_title .title {
  font-size: 24px;
  margin-bottom: 15px;
}
.board--view--prev--list--next .viewHead .viewHead_info {
  font-size: 18px;
  color: #727171;
}
.board--view--prev--list--next .viewHead .viewHead_info .date {
  color: #000;
}
.board--view--prev--list--next .viewHead .viewHead_info .date_colored {
  font-style: normal;
  color: var(--main-color);
  font-weight: 500;
}
.board--view--prev--list--next .viewBody {
  padding: 50px 10px;
  border-bottom: 1px solid #d2d2d2;
  border-bottom: 1px solid #000;
}
.board--view--prev--list--next .viewFoot .view_nav {
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-weight: 600;
}
.board--view--prev--list--next .viewFoot .view_nav div {
  display: flex;
  width: calc(100% / 3);
  justify-content: center;
}
.board--view--prev--list--next .viewFoot .view_nav div.btn a {
  width: 85px;
  height: 45px;
  border: 1px solid #d2d2d2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #666;
}
.board--view--prev--list--next .viewFoot .view_nav div.btn.prev {
  justify-content: flex-start;
}
.board--view--prev--list--next .viewFoot .view_nav div.btn.next {
  justify-content: flex-end;
}
.board--view--prev--list--next .viewFoot .view_nav div.listBtn a {
  background-color: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  color: #333;
  transition: 0.3s;
}
.board--view--prev--list--next .viewFoot .view_nav div.listBtn a:hover {
  color: #fff;
  background-color: var(--main-color);
}

/* modal type : modal--basic */
.board--modal--basic .board__modal_trigger_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--modal--basic .board__modal_trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  border-radius: 50px;
  font-weight: 600;
}
.board--modal--basic .board__modal_trigger:hover {
  background-color: var(--main-color);
  color: #fff;
}
.board--modal--basic .board__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: flex-start;
  justify-content: center;
}
.board--modal--basic .board__modal__overflow_wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 200px 0 80px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
.board--modal--basic .board__modal__inner {
  position: relative;
  background: #fff;
  padding: 60px 100px 60px 80px;
  width: calc(100% - 20px);
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: initial;
}
.board--modal--basic .board__modal__contents {
  display: flex;
  align-items: center;
  justify-content: center;
}
.board--modal--basic .board__modal__contents--type1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.board--modal--basic .board__modal__contents--type1 .titlebox {
  margin-bottom: 30px;
}
.board--modal--basic .board__modal__contents--type1 .titlebox h5 {
  font-size: 25px;
}
.board--modal--basic .board__modal__contents--type1 .contentsbox {
  text-align: justify;
  justify-content: center;
}
.board--modal--basic
  .board__modal__contents--type1
  .contentsbox
  .img_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.board--modal--basic .board__modal__contents--type1 .contentsbox img {
  width: 300px;
}
.board--modal--basic .board__modal__contents--type1 .contentsbox .text {
  margin-top: 20px;
}
.board--modal--basic .board__modal__foot {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 40px;
}
.board--modal--basic .board__modal__foot .board__modal__close_btn {
  width: 30px;
}

/* Pagination */
.board--pagination {
  margin-top: 50px;
}

/* pagination type-1 : pagination--prev--num--next*/
.board--pagination--prev--num--next .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--prev--num--next .pagination_container > a {
  color: transparent;
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}
.board--pagination--prev--num--next .pagination_container > a.btnPrev {
  background-image: url(../images/common/paging_prev.png);
}
.board--pagination--prev--num--next .pagination_container > a.btnNext {
  background-image: url(../images/common/paging_next.png);
}
.board--pagination--prev--num--next .pagination_container ul {
  display: flex;
}
.board--pagination--prev--num--next .pagination_container ul li {
  margin: 0 15px;
}
.board--pagination--prev--num--next .pagination_container ul li a {
  font-size: 15px;
  color: #4c4c4c;
}
.board--pagination--prev--num--next .pagination_container ul li a.active {
  color: var(--main-color);
  font-weight: 600;
}

/* pagination type-2 : pagination--start--prev--num--next--end*/
.board--pagination--start--prev--num--next--end .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--start--prev--num--next--end .pagination_container > a {
  color: transparent;
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}
.board--pagination--start--prev--num--next--end
  .pagination_container
  > a.btnPrev {
  background-image: url(../images/common/paging_prev.png);
}
.board--pagination--start--prev--num--next--end
  .pagination_container
  > a.btnNext {
  background-image: url(../images/common/paging_next.png);
}
.board--pagination--start--prev--num--next--end .pagination_container ul {
  display: flex;
}
.board--pagination--start--prev--num--next--end .pagination_container ul li {
  margin: 0 15px;
}
.board--pagination--start--prev--num--next--end .pagination_container ul li a {
  font-size: 15px;
  color: #4c4c4c;
}
.board--pagination--start--prev--num--next--end
  .pagination_container
  ul
  li
  a.active {
  color: var(--main-color);
  font-weight: 600;
}
.board--pagination--start--prev--num--next--end
  .pagination_container
  > a.btnStart {
  background-image: url(../images/common/paging_start.png);
}
.board--pagination--start--prev--num--next--end
  .pagination_container
  > a.btnEnd {
  background-image: url(../images/common/paging_end.png);
}

/* pagination type-3 : pagination--start--prev--num--colored--circle--next--end*/
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  > a {
  color: transparent;
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  > a.btnPrev {
  background-image: url(../images/common/paging_prev.png);
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  > a.btnNext {
  background-image: url(../images/common/paging_next.png);
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  ul {
  display: flex;
  align-items: center;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  ul
  li {
  margin: 0 15px;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  ul
  li
  a {
  font-size: 15px;
  color: #4c4c4c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  ul
  li
  a.active {
  color: #fff;
  font-weight: 600;
  background-color: var(--main-color);
  border-radius: 100px;
  width: 30px;
  height: 30px;
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  > a.btnStart {
  background-image: url(../images/common/paging_start.png);
}
.board--pagination--start--prev--num--colored--circle--next--end
  .pagination_container
  > a.btnEnd {
  background-image: url(../images/common/paging_end.png);
}

/* pagination type-4 : pagination--start--prev--num--border--circle--next--end*/
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  > a {
  color: transparent;
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  > a.btnPrev {
  background-image: url(../images/common/paging_prev.png);
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  > a.btnNext {
  background-image: url(../images/common/paging_next.png);
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  ul {
  display: flex;
  align-items: center;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  ul
  li {
  margin: 0 5px;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  ul
  li
  a {
  border: 1px solid #e1e1e1;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: #4c4c4c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  ul
  li
  a.active {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-weight: 600;
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  > a.btnStart {
  background-image: url(../images/common/paging_start.png);
}
.board--pagination--start--prev--num--border--circle--next--end
  .pagination_container
  > a.btnEnd {
  background-image: url(../images/common/paging_end.png);
}

/* pagination type-5 : pagination--prev--num--colored--circle--next */
.board--pagination--prev--num--colored--circle--next .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--prev--num--colored--circle--next .pagination_container > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  color: #9d9798;
}
.board--pagination--prev--num--colored--circle--next
  .pagination_container
  > a.btnPrev {
  width: 30px;
  height: 30px;
}
.board--pagination--prev--num--colored--circle--next
  .pagination_container
  > a.btnNext {
  width: 30px;
  height: 30px;
}
.board--pagination--prev--num--colored--circle--next .pagination_container ul {
  display: flex;
  align-items: center;
}
.board--pagination--prev--num--colored--circle--next
  .pagination_container
  ul
  li {
  margin: 0 15px;
}
.board--pagination--prev--num--colored--circle--next
  .pagination_container
  ul
  li
  a {
  font-size: 15px;
  color: #4c4c4c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--prev--num--colored--circle--next
  .pagination_container
  ul
  li
  a.active {
  color: #fff;
  font-weight: 600;
  background-color: #02224f;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}

/* pagination type-6 : pagination--prev--slash--num--slash--next */
.board--pagination--prev--slash--num--slash--next .pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--prev--slash--num--slash--next .pagination_container > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
  flex-shrink: 0;
}
.board--pagination--prev--slash--num--slash--next .pagination_container ul {
  display: flex;
  align-items: center;
}
.board--pagination--prev--slash--num--slash--next .pagination_container ul li {
  position: relative;
  margin: 0 12px;
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  ul
  li::before {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #767678;
  display: block;
  content: '';
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  ul
  li:first-child:before {
  display: none;
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  ul
  li
  a {
  font-size: 15px;
  color: #767678;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  ul
  li
  a.active {
  color: var(--main-color);
  font-weight: 600;
}
.board--pagination--prev--slash--num--slash--next .pagination_container > a {
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  > a.btnPrev {
  background-image: url(../images/common/pg_prev.png);
  margin-right: 5px;
}
.board--pagination--prev--slash--num--slash--next
  .pagination_container
  > a.btnNext {
  background-image: url(../images/common/pg_next.png);
  margin-left: 5px;
}

@media screen and (max-width: 1400px) {
  /* Common */
  .board-ls .m_info {
    display: block; /* padding-top: 5px; 이거 왜 넣었지? */
    font-size: 12px;
    display: flex;
    flex-direction: row;
    color: #999;
  }
  .board-ls .m_info div:first-child {
    margin-right: 1em;
  }
  .board-ls .pc_info {
    display: none !important;
  }
  .ellipsis_container {
    width: 100%;
    font-size: 15px;
  }
  .board-ls table th.date,
  .board-ls table td.date {
    display: none;
  }
  .board-ls table tr th,
  .board-ls table tr td {
    font-size: 14px;
  }

  /* Board type 1 : simple */
  .board-ls--table--simple table tbody tr td.contents .text__inner {
    width: 90%;
  }

  /* Board type 2 : basic */
  .board-ls--table--basic table thead tr th.num {
    width: 55px;
  }
  .board-ls--table--basic table tbody tr td.title {
    border-right: 0;
    padding: 5px 10px;
  }
  .board-ls--table--basic table tbody tr td.title .title__inner {
    width: 90%;
    font-size: 14px;
  }
  .board-ls--table--basic table tbody tr td .date_m {
    width: 100%;
    font-size: 12px;
  }
  .board-ls--table--basic tr th.date,
  .board-ls--table--basic tr td.date {
    display: none;
  }

  /* Board type 3 :  category */
  .board-ls--table--category table thead tr th.num {
    width: 60px;
  }
  .board-ls--table--category table tbody tr td.title .wrap {
    flex-direction: column;
  }
  .board-ls--table--category table tbody tr td.title .title__inner {
    width: 100%;
  }
  .board-ls--table--category table tbody tr td.title .title__inner .title,
  .board-ls--table--category table tbody tr td.title .title__inner .contents {
    width: 100%;
  }
  .board-ls--table--category table tbody tr td.title .category {
    display: block;
  }

  /* Board type 4 : head--colored */
  .board-ls--table--head--colored table tbody tr td.title .category {
    margin-bottom: 5px;
  }
  .board-ls--table--head--colored table tbody tr td.title .wrap .contents {
    line-height: 1.4;
  }
  .board-ls--table--head--colored table thead tr th {
    padding: 15px;
  }
  .board-ls--table--head--colored table thead tr th.view {
    display: none;
  }
  .board-ls--table--head--colored table tbody tr td {
    padding: 10px;
  }
  .board-ls--table--head--colored table tbody tr td.view {
    display: none;
  }
  .board-ls--table--head--colored table thead tr th:nth-child(2)::after {
    display: none;
  }
  .board-ls--table--head--colored table tbody .m_info {
    display: flex;
  }
  .board-ls--table--head--colored table tbody tr td.title .wrap {
    flex-direction: column;
  }
  .board-ls--table--head--colored table thead tr th.num {
    width: 60px;
  }

  /* Board type 5 : head--font--colored */
  .board-ls--table--head--font--colored .table .thead div {
    padding: 10px 0;
  }
  .board-ls--table--head--font--colored .table .thead .date {
    width: 80px;
  }
  .board-ls--table--head--font--colored .table .thead .attachment {
    width: 50px;
  }
  .board-ls--table--head--font--colored .table .tr .contents {
    padding: 5px 10px;
  }
  .board-ls--table--head--font--colored .table .tr .contents .title {
    text-align: left;
    font-size: 18px;
  }
  .board-ls--table--head--font--colored .table .tr .contents .text {
    display: none;
    margin-bottom: 8px;
  }
  .board-ls--table--head--font--colored .table .tr div {
    margin: 0 5px 0 0;
  }
  .board-ls--table--head--font--colored .table .tr .td {
    margin: 0 5px;
    padding: 15px 10px;
  }
  .board-ls--table--head--font--colored .table .tr .date {
    width: 80px;
    flex-shrink: 0;
    padding: 10px 0;
  }
  .board-ls--table--head--font--colored .table .tr .date .day {
    font-size: 22px;
  }
  .board-ls--table--head--font--colored .table .tr .date .year_month {
    font-size: 14px;
  }
  .board-ls--table--head--font--colored .table .tr .view {
    width: 80px;
    font-size: 15px;
  }
  .board-ls--table--head--font--colored .table .tr .attachment {
    width: 50px;
  }
  .board-ls--table--head--font--colored .table .thead .title {justify-content: flex-start; padding-left: 10px;}

  /* Board type 6 : table--attachment */
  .board-ls--table--attachment .table .tbody .m_info {
    color: #8b898c;
  }
  .board-ls--table--attachment .table .thead .th.num {
    width: 60px;
  }
  .board-ls--table--attachment .table .thead .th.attachment {
    width: 80px;
  }
  .board-ls--table--attachment .table .tbody .td.num {
    width: 60px;
  }
  .board-ls--table--attachment .table .tbody .td.attachment {
    width: 80px;
  }
  .board-ls--table--attachment .table .thead .th.title {
    width: calc(100% - 140px);
  }
  .board-ls--table--attachment .table .thead .th {
    font-size: 16px;
  }
  .board-ls--table--attachment .table .tbody .td {
    padding: 5px 0;
  }
  .board-ls--table--attachment .table .tbody .td.contents {
    width: calc(100% - 140px);
  }
  .board-ls--table--attachment .table .tbody .td.num {
    font-size: 14px;
  }
  .board--view--basic section .viewHead {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5px;
  }
  .board--view--basic section .viewHead .viewHead_title {
    align-items: flex-start;
  }
  .board--view--basic section .viewHead .viewHead_title .category {
    line-height: 1.4;
  }
  .board--view--basic section .viewHead .viewHead_info {
    width: 100%;
    text-align: right;
    font-size: 14px;
    margin-top: 5px;
  }
  .board--view--basic section .viewHead .viewHead_info .view {
    margin-right: .5em;
  }
  .board--view--basic .listBtn a {
    width: 140px;
    height: 50px;
    font-size: 16px;
  }
  .board--view--basic section .viewBody {
    padding: 20px 5px;
  }
  .board--view--basic section .viewBody img {
    margin-bottom: 30px;
  }
  

  /* faq type1 : faq--basic */
  .board--faq--basic ul li > a {
    font-size: 16px;
  }
  .board--faq--basic ul li .answer .answer_inner p {
    font-size: 16px;
  }
  .board--faq--basic ul li .question_inner {
    padding: 15px 10px;
  }
  .board--faq--basic ul li .question_inner .tag {
    margin-right: 10px;
  }
  .board--faq--basic ul li .question .ico {
    width: 28px;
    height: 28px;
  }
  .board--faq--basic ul li .question .ico .arrow {
    width: 7px;
    height: 7px;
  }
  .board--faq--basic ul li.active .question .ico .arrow {
    margin-top: -4.5px;
  }
  .board--faq--basic ul li .answer {
    padding: 10px 10px 20px;
  }
  .board--faq--basic ul li .answer .answer_inner .tag {
    margin-right: 10px;
  }

  /* view type1 :  view--prev--list--next*/
  .board--view--prev--list--next .viewHead .viewHead_title .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .board--view--prev--list--next .viewHead .viewHead_info .date {
    font-size: 16px;
  }
  .board--view--prev--list--next .viewBody {
    padding: 30px 10px;
  }
  .board--view--prev--list--next .viewBody h5 {
    font-size: 18px;
  }
  .board--view--prev--list--next .viewBody p {
    font-size: 15px;
  }
  .board--view--prev--list--next .viewFoot .view_nav div.btn a {
    width: 70px;
    height: 38px;
    font-size: 15px;
  }
  .board--view--prev--list--next .viewFoot .view_nav div.listBtn a {
    width: 110px;
    height: 38px;
  }

  /* view type2 :  view--prev--next--horizontal */
  .board--view--prev--next--horizontal .viewHead .viewHead_title {
    font-size: 20px;
    padding: 15px 10px;
  }
  .board--view--prev--next--horizontal .viewHead .viewHead_info {
    padding: 10px;
    font-size: 14px;
  }
  .board--view--prev--next--horizontal .viewBody {
    padding: 25px 10px;
  }
  .board--view--prev--next--horizontal .viewBody p {
    font-size: 15px;
  }

  /* view type3 :  view--prev--list--next*/
  .board--view--prev--list--next .viewHead {
    padding: 10px;
  }
  .board--view--prev--list--next .viewHead .viewHead_info {
    font-size: 14px;
  }

  /* gallery type2 : gallery--simple--border */
  .board-ls--gallery--simple--border .ly-flex_cards .card .inner .contents {
    padding: 10px 0;
  }
  .board-ls--gallery--simple--border
    .ly-flex_cards
    .card
    .inner
    .contents
    .title {
    font-size: 15px;
    height: 40px;
  }
  .board-ls--gallery--simple--border .ly-flex_cards .card .inner .image {
    height: auto;
  }
  .board-ls--gallery--simple--border .ly-flex_cards .card .inner .date {
    padding: 10px 0;
    font-size: 14px;
  }

  /* gallery type3 : gallery--simple */
  .board-ls--gallery--simple .ly-flex_cards .card {
    padding: 10px 10px 20px;
  }
  .board-ls--gallery--simple .ly-flex_cards .card .inner .contents .title {
    font-size: 16px;
    height: 45px;
    margin-top: 10px;
  }
  .board-ls--gallery--simple .ly-flex_cards .card .inner .date {
    font-size: 14px;
    margin-top: 0;
  }

  /* gallery type4 : gallery--vertical--view--download */
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents {
    padding: 0 10px;
    width: 100%;
  }
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents
    .btns {
    flex-direction: column;
  }
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents
    .btns
    .btn {
    font-size: 13px;
  }
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents
    .btns
    .btn:first-child {
    margin-bottom: 8px;
  }
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents
    .title
    .product_name {
    font-size: 16px;
  }
  .board-ls--gallery--vertical--view--download
    .ly-flex_cards
    .card
    .inner
    .contents
    .title
    .product_info {
    font-size: 14px;
  }

  /* gallery type5 : gallery--vertical--view */
  .board-ls--gallery--vertical--view .ly-flex_cards .card {
    padding: 15px 10px;
  }
  .board-ls--gallery--vertical--view .ly-flex_cards .card .inner {
    flex-direction: column;
  }
  .board-ls--gallery--vertical--view .ly-flex_cards .card .inner .image {
    margin-bottom: 10px;
    width: 100%;
  }
  .board-ls--gallery--vertical--view .ly-flex_cards .card .inner .contents {
    width: auto;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .upper {
    margin-bottom: 15px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .upper
    .category {
    font-size: 16px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .upper
    .title {
    font-size: 18px;
    line-height: 1;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .lower
    .date {
    font-size: 14px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .lower
    .go
    .go_text {
    font-size: 14px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .lower
    .go
    .ico {
    width: 20px;
    height: 20px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card
    .inner
    .contents
    .lower
    .go
    .ico
    .arrow {
    width: 7px;
    height: 7px;
    margin: -3px 0 0 -5.5px;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card:first-child
    .inner
    .image
    .img {
    background-position: top center;
  }
  .board-ls--gallery--vertical--view
    .ly-flex_cards
    .card:nth-child(3)
    .inner
    .image
    .img {
    background-position: top center;
  }

  /* gallery type5 : gallery--certificate--simple */
  .board-ls--gallery--certificate--simple .ly-flex_cards .card {
    width: 45%;
    margin-right: 10%;
    margin-bottom: 35px;
  }
  .board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(2n) {
    margin-right: 0;
  }
  .board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(3n) {
    margin-right: 10%;
  }
  .board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(6n) {
    margin-right: 0;
  }
  .board-ls--gallery--certificate--simple
    .ly-flex_cards
    .card
    .inner
    .contents
    .title {
    font-size: 18px;
  }

  /* view type1 :  view-basic*/
  .board--view-basic section .viewHead {
    flex-direction: column;
    align-items: unset;
    padding: 10px 10px;
  }
  .board--view-basic section .viewHead .viewHead_title {
    flex-direction: column;
    font-size: 16px;
    align-items: flex-start;
  }
  .board--view-basic section .viewHead .viewHead_info {
    text-align: right;
  }
  .board--view-basic section .viewBody {
    padding: 20px 0;
  }
  .board--view-basic section .viewBody img {
    margin-bottom: 30px;
  }
  .board--view-basic .listBtn a {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }

  /* view type2 :  view-basic--prev--next*/
  .board--view--prev--next .viewHead .viewHead_title {
    font-size: 18px;
  }
  .board--view--prev--next .viewHead .viewHead_info {
    font-size: 16px;
  }
  .board--view--prev--next .viewBody {
    padding: 30px 20px;
  }

  /* inquiry type2 : inquiry--2 */
  .board--inquiry--attachment form table tr td .cate {
    display: inline-block;
    width: 100%;
  }
  .board--inquiry--attachment
    form
    table
    tr
    td.file_attachment
    .inputWrap
    .file_input {
    width: 100%;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* gallery--vertical--view--download */
  .board-ls--gallery--vertical--view--download .ly-flex_cards .card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* gallery type5 : gallery--certificate--simple */
  .board-ls--gallery--certificate--simple .ly-flex_cards .card {
    width: 100%;
    max-width: 302px;
    margin: 0 auto 20px;
  }
  .board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(2n) {
    margin-right: auto;
  }
  .board-ls--gallery--certificate--simple .ly-flex_cards .card:nth-child(3n) {
    margin-right: auto;
  }

  /* modal type : modal--basic */
  .board--modal--basic .board__modal__inner {
    padding: 85px 50px 30px 40px;
  }
  .board--modal--basic .board__modal__foot {
    padding: 25px;
  }
  .board--modal--basic .board__modal__contents--type1 .contentsbox .text {
    line-height: 1.4;
  }

  /* pagination type-1 : pagination--prev--num--next*/
  .board--pagination--prev--num--next .pagination_container ul li a {
    font-size: 13px;
  }
  .board--pagination--prev--num--next .pagination_container > a {
    width: 25px;
    height: 25px;
  }
  .board--pagination--prev--num--next .pagination_container ul li {
    margin: 0 10px;
  }

  /* pagination type-2 : pagination--start--prev--num--next--end*/
  .board--pagination--start--prev--num--next--end .pagination_container > a {
    width: 25px;
    height: 25px;
  }
  .board--pagination--start--prev--num--next--end .pagination_container ul li {
    margin: 0 10px;
  }
  .board--pagination--start--prev--num--next--end
    .pagination_container
    ul
    li
    a {
    font-size: 13px;
  }

  /* pagination type-3 : pagination--start--prev--num--colored--circle--next--end*/
  .board--pagination--start--prev--num--colored--circle--next--end
    .pagination_container
    > a {
    width: 25px;
    height: 25px;
  }
  .board--pagination--start--prev--num--colored--circle--next--end
    .pagination_container
    ul
    li {
    margin: 0 10px;
  }
  .board--pagination--start--prev--num--colored--circle--next--end
    .pagination_container
    ul
    li
    a {
    font-size: 13px;
  }

  /* pagination type-4 : pagination--start--prev--num--border--circle--next--end*/
  .board--pagination--start--prev--num--border--circle--next--end
    .pagination_container
    > a {
    width: 25px;
    height: 25px;
  }
  .board--pagination--start--prev--num--border--circle--next--end
    .pagination_container
    ul
    li {
    margin: 0 5px;
  }
  .board--pagination--start--prev--num--border--circle--next--end
    .pagination_container
    ul
    li
    a {
    font-size: 13px;
  }

  /* pagination type-5 : pagination--prev--num--colored--circle--next */
  .board--pagination--prev--num--colored--circle--next
    .pagination_container
    ul
    li {
    margin: 0 10px;
  }
  .board--pagination--prev--num--colored--circle--next
    .pagination_container
    ul
    li
    a {
    font-size: 13px;
  }

  /* pagination type-6 : pagination--prev--slash--num--slash--next */
  .board--pagination--prev--slash--num--slash--next
    .pagination_container
    ul
    li
    a {
    font-size: 13px;
  }

  /* inquiry type1 : inquiry--basic */
  .board--inquiry--basic form table tr {
    display: block;
  }
  .board--inquiry--basic form table tr th {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px;
  }
  .board--inquiry--basic form table tr td .cateWrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .board--inquiry--basic .privacy_use_information .privacy_container {
    padding: 20px;
  }
  .board--inquiry--basic .privacy_use_information .chk_box .txt {
    font-size: 14px;
  }
  .board--inquiry--basic .privacy_use_information p {
    font-size: 14px;
  }
  .board--inquiry--basic .privacy_use_information dl dd {
    font-size: 14px;
  }
  .board--inquiry--basic .privacy_use_information ul li {
    font-size: 14px;
  }
  .board--inquiry--basic .btn_confirm .btn_submit {
    width: 120px;
    height: 35px;
    font-size: 16px;
  }
  .board--inquiry--basic .privacy_use_information {
    margin-top: 50px;
  }
  .board--inquiry--basic form table tr td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .board--inquiry--basic form table tr td .autosave_wrapper {
    display: block;
  }
  .board--inquiry--basic form table tr td .autosave_wrapper input {
    display: block;
    width: 100%;
  }

  /* inquiry type2 : inquiry--2 */
  .board--inquiry--attachment form table tr th {
    display: block;
    width: 100%;
    background-color: #f6f6f6;
    padding: 10px;
  }
  .board--inquiry--attachment form table tr td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .board--inquiry--attachment form table tr td .email_total {
    display: block;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .board--inquiry--attachment form table tr td .email_total input {
    width: 47%;
  }
  .board--inquiry--attachment form table #emailDomain_ls {
    width: 100%;
    margin-top: 5px;
  }
  .board--inquiry--attachment form table tr td input[type='text'] {
    width: 100%;
  }
  .board--inquiry--attachment .privacy_use_information {
    margin-top: 30px;
  }
  .board--inquiry--attachment .privacy_use_information .chk_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .board--inquiry--attachment
    .privacy_use_information
    .chk_box
    label
    .fake_checkbox {
    width: 25px;
    height: 25px;
  }
  .board--inquiry--attachment .privacy_use_information .chk_box li {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .board--inquiry--attachment form table tr td .noti {
    line-height: 1.2;
  }
  .board--inquiry--attachment .privacy_use_information h5 {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 22px;
  }
  .board--inquiry--attachment .privacy_use_information .privacy_container {
    padding: 15px 20px;
  }
  .board--inquiry--attachment .privacy_use_information p {
    font-size: 14px;
  }
  .board--inquiry--attachment .privacy_use_information dl dd {
    font-size: 14px;
  }
  .board--inquiry--attachment .privacy_use_information dl ul li {
    font-size: 14px;
  }
  .board--inquiry--attachment .btn_confirm {
    margin: 30px 0;
  }
  .board--inquiry--attachment .btn_confirm .btn_submit {
    width: 100%;
    height: 40px;
    font-size: 16px;
    border-radius: 3px;
  }
  .board--inquiry--attachment
    form
    table
    tr
    td.file_attachment
    .fileSkin
    button {
    margin-left: -2px;
  }
  .board--inquiry--attachment form table tr td .cate {
    padding-right: 0;
  }
  .board--inquiry--attachment form table tr td.wr_content textarea {
    height: 150px;
  }
}


.board_empty {padding: 20px;}
.board_empty .inner {border: 1px solid #dadada; display: flex; align-items: center; justify-content: center; padding: 20px; min-height: 350px; color: #aaa; text-align: center; font-size: 20px;}