/* Util */
.util {
  margin-bottom:30px;
}

.util form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.util .util-count {
  font-size: 1.8rem;
}

.util .util-search {
  max-width: 540px;
  width: 100%;
}

.util .search-inner {
  display: flex;
  gap:10px;
}

.util .search-select {
  width: 130px;
}

.util .search-input {
  position: relative;
  padding-right:50px;
  width: calc(100% - 140px);
}

.util select {
  width: 100%;
  height:50px;
  padding:0px 20px;
  border:1px solid #b5b5b5;
  font-size:1.8rem;
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-image: url('../img/bbs/bbs_select.png');
}

.util input {
  width: 100%;
  height:50px;
  padding:0px 20px;
  border:1px solid #b5b5b5;
  border-right: 0px;
  font-size:1.8rem;
}

.util button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  right:0;
  width:50px;
  height:50px;
  background: #227fc4 url('../img/bbs/bbs_search.png') no-repeat center;
}

@media screen and (max-width:1200px) {
  .util .util-count {
    font-size: 1.6rem;
  }

  .util select {
    font-size: 1.6rem;
  }

  .util input {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .util {
    margin-bottom:20px;
  }

  .util .util-search {
    max-width: 480px;
  }

  .util .search-inner {
    gap: 6px;
  }

  .util .search-select {
    width: 110px;
  }

  .util .search-input {
    width: calc(100% - 116px);
    padding-right:42px;
  }

  .util select {
    height: 42px;
    padding:0px 16px;
  }

  .util input {
    height: 42px;
    padding:0px 16px;
  }

  .util button {
    width: 42px;
    height:42px;
  }
}
@media screen and (max-width:768px) {
  .util .util-search {
    max-width:400px;
  }

  .util .util-count {
    font-size: 1.4rem;
  }

  .util select {
    font-size: 1.4rem;
  }

  .util input {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .util {
    margin-bottom:16px;
  }

  .util form {
    flex-wrap: wrap;
    gap:12px;
  }

  .util .search-inner {
    gap:4px;
  }

  .util .util-search {
    max-width: 100%;
    order: 1;
  }

  .util .search-select {
    width: 90px;
  }
  
  .util .search-input {
    width: calc(100% - 94px);
    padding-right:36px;
  }

  .util .util-count {
    order: 2;
    font-size: 1.2rem;
  }

  .util select {
    height:36px;
    padding:0px 12px;
    background-position: right 12px center;
    background-size: auto 5px;
    font-size: 1.2rem;
  }

  .util input {
    height:36px;
    padding: 0px 12px;
    font-size: 1.2rem;
  }

  .util button {
    width: 36px;
    height:36px;
    background-size: auto 16px;
  }
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
	margin-top:80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:38px;
  height:38px;
	margin:0px 4px;
	border-radius:50%;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:1.8rem;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#fff;
	background-color: #0081c7;
}

.pagination a.pagination-prev {
  background-image: url('../img/bbs/bbs_page_prev.png');
}

.pagination a.pagination-next {
  background-image: url('../img/bbs/bbs_page_next.png');
}

.pagination a.pagination-backward {
  background-image: url('../img/bbs/bbs_page_backward.png');
}

.pagination a.pagination-forward {
  background-image: url('../img/bbs/bbs_page_forward.png');
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size:1.6rem;
  }

}
@media screen and (max-width:1024px) {
  .pagination {
    margin-top: 60px;
  }

  .pagination a {
    width: 32px;
    height:32px;
    background-size: auto 12px;
    margin:0px 2px;
  }
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
  }

  .pagination a {
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination a {
    width: 28px;
    height:28px;
    font-size:1.2rem;
    background-size: auto 10px;
  }
}


/* News List Board */
.bbs-news .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #b5b5b5;
}

.bbs-news .table tr {
  border-bottom: 1px solid #dcdcdc;
}

.bbs-news .table tr.table-message div {
  padding: 200px 20px;
}

.bbs-news .table th,
.bbs-news .table td {
  height:70px;
  padding:10px;
  font-size: 1.8rem;
}

.bbs-news .table a {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width:1200px) {
  .bbs-news .table th,
  .bbs-news .table td {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news .table th,
  .bbs-news .table td {
    height: 60px;
  }
}
@media screen and (max-width:768px) {
  .bbs-news .table {
    display: block;
  }

  .bbs-news .table thead {
    display: none;
  }

  .bbs-news .table tbody {
    display: block;
  }
  
  .bbs-news .table tr {
    display: flex;
    flex-wrap: wrap;
    padding:6px 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    height: auto;
    padding: 4px 6px;
    font-size:1.4rem;
    position: relative;
  }

  .bbs-news .table td.td_subject {
    width: 100%;
    order: 1;
  }

  .bbs-news .table td.td_number {
    order: 2;
  }

  .bbs-news .table td.td_writer {
    order: 3;
  }

  .bbs-news .table td.td_data {
    order: 4;
  }

  .bbs-news .table td:not(.td_subject):not(.td_data)::after {
    content: "";
    display:block;
    position: absolute;
    top:50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width:1px;
    height:10px;
    background-color: #aaa;
  }
}
@media screen and (max-width:576px) {
  .bbs-news .table tr {
    padding: 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    padding: 3px 5px;
    font-size:1.2rem;
  }
}


/* New View Board */
.bbs-news-view {
  border-top: 2px solid #b5b5b5;
}

.bbs-news-view .bbs-view-head {
  padding: 40px 10px;
  border-bottom: 1px solid #b5b5b5;
}

.bbs-news-view .bbs-view-area {
  border-bottom: 2px solid #b5b5b5;
}

.bbs-news-view .bbs-view-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.bbs-news-view .subject {
  font-size: 3rem;
  font-weight:600;
  margin-bottom:30px;
}

.bbs-news-view .data {
  font-size: 1.8rem;
  color:#999999;
}

.bbs-news-view .textarea {
  min-height:460px;
  padding:40px 10px;
}

.bbs-news-view .textarea p {
  font-size:1.8rem;
}

.bbs-news-view .btn {
  width: 120px;
  height:50px;
  background-color: #f5f5f5;
  font-size: 1.8rem;
}

.bbs-news-view .btn02 {
  color:#fff;
  background-color: #227fc4;
}

.bbs-news-view .btn01:first-child {
  margin-right: 10px;
}

@media screen and (max-width:1200px) {
  .bbs-news-view .subject {
    font-size:2.4rem;
  }

  .bbs-news-view .data {
    font-size: 1.6rem;
  }

  .bbs-news-view .textarea p {
    font-size:1.6rem;
  }

  .bbs-news-view .btn {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news-view .bbs-view-head {
    padding: 30px 6px;
  }

  .bbs-news-view .bbs-view-nav {
    margin-top: 20px;
  }

  .bbs-news-view .subject {
    margin-bottom: 20px;
  }

  .bbs-news-view .textarea {
    padding: 30px 6px;
  }

  .bbs-news-view .btn {
    width: 100px;
    height:42px;
  }

  .bbs-news-view .btn01:first-child {
    margin-right:6px;
  }
}
@media screen and (max-width:768px) {
  .bbs-news-view .subject {
    font-size:2rem;
    margin-bottom: 12px;
  }

  .bbs-news-view .data {
    font-size: 1.4rem;
  }

  .bbs-news-view .textarea {
    min-height:360px;
  }

  .bbs-news-view .textarea p {
    font-size:1.4rem;
  }

  .bbs-news-view .btn {
    width: 80px;
    height: 36px;
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-news-view .bbs-view-head {
    padding: 20px 6px;
  }

  .bbs-news-view .bbs-view-nav {
    margin-top: 16px;
  }

  .bbs-news-view .subject {
    font-size:1.8rem;
    margin-bottom: 6px;
  }

  .bbs-news-view .data {
    font-size: 1.2rem;
  }

  .bbs-news-view .textarea {
    min-height:300px;
    padding: 20px 6px;
  }

  .bbs-news-view .textarea p {
    font-size:1.2rem;
  }

  .bbs-news-view .btn {
    width: 70px;
    height: 30px;
    font-size:1.2rem;
  }
}


/* Product List Board */
.bbs-product .list {
  display: flex;
  flex-wrap: wrap;
  margin:-15px -12px;
}

.bbs-product .list li:not(.list-message) {
  flex:1 0 50%;
  max-width:50%;
  padding: 15px 12px;
}

.bbs-product .list li.list-message {
  flex:1 1 100%;
  max-width: 100%;
  padding: 240px 20px;
}

.bbs-product .list a {
  display: block;
  position: relative;
  width: 100%;
  height:0;
  padding-top: calc(500/738*100%);
  border:1px solid #b5b5b5;
  border-radius:10px;
  overflow: hidden;
}


.bbs-product .list .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  padding:10px;
}

.bbs-product .list .img {
  position: relative;
  width: 100%;
  height:0;
  padding-top: calc(165/716*100%);
  overflow: hidden;
}

.bbs-product .list .img img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  height: 100%;
}

.bbs-product .list .con {
  text-align: center;
  margin-top: 8.5%;
}

.bbs-product .list .category {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  margin-bottom:10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight:700;
  color:#227fc4;
}

.bbs-product .list .subject {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  font-size:3rem;
  font-weight:700;
}

@media screen and (max-width:1200px) {
  .bbs-product .list .category {
    font-size: 1.4rem;
  }

  .bbs-product .list .subject {
    font-size:2.4rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-product .list {
    margin:-8px;
  }

  .bbs-product .list li:not(.list-message) {
    padding: 8px;
  }

  .bbs-product .list .category {
    margin-bottom: 6px;
  }
}
@media screen and (max-width:768px) {
  .bbs-product .list .category {
    font-size: 1.2rem;
  }

  .bbs-product .list .subject {
    font-size:2rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-product .list {
    margin:-4px;
  }

  .bbs-product .list li:not(.list-message) {
    flex:1 0 100%;
    max-width: 100%;
    padding: 4px;
  }
  
  .bbs-product .list .category {
    font-size: 1rem;
    margin-bottom:4px;
  }

  .bbs-product .list .subject {
    font-size:1.8rem;
  }
}


/* Product View Board */
.bbs-product-view .bbs-view-head {
  display: flex;
  justify-content: space-between;
}

.bbs-product-view .bbs-view-head .img {
  position: relative;
  width: 40.8%;
  height:0;
  padding-top: calc(610/1500*100%);
  border:1px solid #dcdcdc;
  overflow: hidden;
}

.bbs-product-view .bbs-view-head .img img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 70%;
  height:auto;
}

.bbs-product-view .bbs-view-head .con {
  width: 50.6666%;
}

.bbs-product-view .bbs-view-head .category {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight:700;
  color:#227fc4;
  margin-bottom:20px;
}

.bbs-product-view .bbs-view-head .subject {
  font-size: 3.6rem;
  font-weight:600;
  padding-bottom: 40px;
  margin-bottom:30px;
  border-bottom: 1px solid #d2d2d2;
}

.bbs-product-view .bbs-view-head .info dd {
  display: flex;
  font-size: 2rem;
}

.bbs-product-view .bbs-view-head .info dd:not(:last-child) {
  margin-bottom:30px;
}

.bbs-product-view .bbs-view-head .info b {
  width: 180px;
}

.bbs-product-view .bbs-view-head .info span {
  width: calc(100% - 180px);
}

.bbs-product-view .bbs-view-area .area-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 3px solid #dcdcdc;
}

.bbs-product-view .bbs-view-area .area-title::after {
  content: "";
  display: block;
  position: absolute;
  left:50%;
  bottom:-3px;
  transform: translateX(-50%);
  width: 300px;
  height: 3px;
  background-color:#227fc4;
}

.bbs-product-view .bbs-view-area .area-title p {
  display:inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height:64px;
  font-size: 2rem;
}

.bbs-product-view .bbs-view-area .textarea {
  min-height:580px;
  padding:50px 0px;
  border-bottom: 3px solid #dcdcdc;
}

.bbs-product-view .bbs-view-area .textarea p {
  font-size: 1.8rem;
}

@media screen and (max-width:1200px) {
  .bbs-product-view .bbs-view-head .category {
    font-size: 1.8rem;
  }

  .bbs-product-view .bbs-view-head .subject {
    font-size: 2.8rem;
  }

  .bbs-product-view .bbs-view-head .info dd {
    font-size: 1.8rem;
  }

  .bbs-product-view .bbs-view-area .area-title p {
    font-size:1.8rem;
  }

  .bbs-product-view .bbs-view-area .textarea p {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-product-view .bbs-view-head {
    flex-wrap: wrap;
    gap:40px;
  }

  .bbs-product-view .bbs-view-head .img {
    max-width:610px;
    width: 100%;
    height: 610px;
    margin: 0 auto;
    padding:0px;
  }

  .bbs-product-view .bbs-view-head .con {
    width: 100%;
  }

  .bbs-product-view .bbs-view-head .category {
    margin-bottom:12px;
  }

  .bbs-product-view .bbs-view-head .subject {
    padding-bottom: 28px;
    margin-bottom:20px;
  }

  .bbs-product-view .bbs-view-head .info dd:not(:last-child) {
    margin-bottom:20px;
  }

  .bbs-product-view .bbs-view-head .info b {
    width: 140px;
  }

  .bbs-product-view .bbs-view-head .info span {
    width: calc(100% - 140px);
  }

  .bbs-product-view .bbs-view-area .area-title p {
    width: 240px;
    height:56px;
  }

  .bbs-product-view .bbs-view-area .area-title::after {
    width: 240px;
  }

  .bbs-product-view .bbs-view-area .textarea {
    padding: 36px 0px;
  }
}
@media screen and (max-width:768px) {
  .bbs-product-view .bbs-view-head .img {
    max-width:420px;
    height: 420px;
  }

  .bbs-product-view .bbs-view-head .category {
    font-size: 1.6rem;
  }

  .bbs-product-view .bbs-view-head .subject {
    font-size:2.4rem;
    padding-bottom:20px;
  }
  
  .bbs-product-view .bbs-view-head .info dd {
    font-size: 1.6rem;
  }

  .bbs-product-view .bbs-view-head .info dd:not(:last-child) {
    margin-bottom:16px;
  }

  .bbs-product-view .bbs-view-head .info b {
    width: 140px;
  }
  
  .bbs-product-view .bbs-view-head .info span {
    width: calc(100% - 140px);
  }

  .bbs-product-view .bbs-view-area .area-title p {
    width: 200px;
    height:48px;
    font-size: 1.6rem;
  }

  .bbs-product-view .bbs-view-area .area-title::after {
    width: 200px;
  }

  .bbs-product-view .bbs-view-area .textarea {
    min-height:480px;
  }

  .bbs-product-view .bbs-view-area .textarea p {
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-product-view .bbs-view-head {
    gap:30px;
  }

  .bbs-product-view .bbs-view-head .img {
    max-width:360px;
    height: 360px;
  }

  .bbs-product-view .bbs-view-head .category {
    font-size:1.4rem;
  }

  .bbs-product-view .bbs-view-head .subject {
    font-size: 2rem;
    padding-bottom:16px;
    margin-bottom: 16px;
  }

  .bbs-product-view .bbs-view-head .info dd {
    font-size:1.4rem;
  }

  .bbs-product-view .bbs-view-head .info dd:not(:last-child) {
    margin-bottom:10px;
  }

  .bbs-product-view .bbs-view-head .info b {
    width: 120px;
  }

  .bbs-product-view .bbs-view-head .info span {
    width: calc(100% - 120px);
  }

  .bbs-product-view .bbs-view-area .area-title {
    border-width: 2px;
  }

  .bbs-product-view .bbs-view-area .area-title p {
    width: 160px;
    height:40px;
    font-size: 1.4rem;
  }

  .bbs-product-view .bbs-view-area .area-title::after {
    width: 160px;
    height:2px;
    bottom:-2px;
  }

  .bbs-product-view .bbs-view-area .textarea {
    min-height:380px;
    padding:24px 0px;
    border-width: 2px;
  }

  .bbs-product-view .bbs-view-area .textarea p {
    font-size:1.2rem;
  }
}

.editor * {
	margin: revert;
	list-style: unset;
}