/* ---------- S: pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  margin-top:60px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:35px;
  height:35px;
  margin: 0 4px 0 5px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:#fff;
  border:1px solid transparent;
  text-align: center;
  font-size:1.9rem;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
  color: #b5b5b5;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
  font-weight:700;
  color: #262626;
}

.pagination a.pagination__backward,
.pagination a.pagination__prev,
.pagination a.pagination__forward,
.pagination a.pagination__next {
  border-color: #b5b5b5;
}

.pagination a.pagination__backward {
  margin-right: 6px;
}

.pagination a.pagination__prev {
  margin-right:21px;
}

.pagination a.pagination__forward {
  margin-left: 6px;
}

.pagination a.pagination__next {
  margin-left:21px;
}

.pagination a.pagination__backward {
  background-image: url('/en/img/common/btn-backward.png');
}

.pagination a.pagination__prev {
  background-image: url('/en/img/common/btn-prev.png');
}

.pagination a.pagination__forward {
  background-image: url('/en/img/common/btn-forward.png');
}

.pagination a.pagination__next {
  background-image: url('/en/img/common/btn-next.png');
}

@media(max-width:1200px) {
  .pagination a {
    font-size:1.6rem;
  }
}

@media(max-width:1024px) {
  .pagination {
    margin-top:50px;
  }
  
  .pagination a {
    width:30px;
    height:30px;
  }
  
  .pagination a.pagination__prev {
    margin-right:15px;
  }
  
  .pagination a.pagination__next {
    margin-left:15px;
  }
}

@media(max-width:768px) {
  .pagination {
    margin-top:45px;
  }
  
  .pagination a {
    margin: 0 4px;
    font-size:1.5rem;
  }
  
  .pagination a.pagination__backward {
    margin-right: 4px;
  }
  
  .pagination a.pagination__prev {
    margin-right:12px;
  }
  
  .pagination a.pagination__forward {
    margin-left: 4px;
  }
  
  .pagination a.pagination__next {
    margin-left:12px;
  }
}

@media(max-width:500px) {
  .pagination {
    margin-top:40px;
  }
  
  .pagination a {
    width:28px;
    height:28px;
    margin: 0 3px;
    font-size:1.3rem;
  }
  
  .pagination a.pagination__prev {
    margin-right:3px;
  }
  
  .pagination a.pagination__next {
    margin-left:3px;
  }
}
/* ---------- E: pagination ---------- */

/* ---------- S: Basic ---------- */
.basic-list .table {
  table-layout: fixed;
  border-collapse: collapse;
  width:100%;
  border-top:2px solid #b5b5b5;
}

.basic-list .table tr {
  border-bottom:1px solid #dcdcdc;
}

.basic-list .table tr.table_notice {
  background-color: #fef8f2;
}

.basic-list .table th,
.basic-list .table td {
  padding:22px 15px;
  text-align: center;
}

.basic-list .table td {
  padding: 23px 15px 22px;
}

.basic-list .table th {
  font-size:2.1rem;
}

.basic-list .table th.subject p {
  margin-right: 260px;
}

.basic-list .table td {
  font-size:2.1rem;
}

.basic-list .table td.no {
  font-size:1.9rem;
}

.basic-list .table tr.table_notice td.no {
  font-weight: 700;
  color: #ec6619;
}

.basic-list .table td.left {
  text-align: left;
}

.basic-list .table .link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.basic-list .table tr.table_message div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:50px 0px;
} 

.basic-list .table tr.table_message p {
  font-size:2.2rem;
}

@media(max-width:1200px) {
  .basic-list .table th,
  .basic-list .table td {
    padding:22px 15px;
  }
  
  .basic-list .table td {
    padding: 23px 15px 22px;
  }
  
  .basic-list .table th {
    font-size:1.9rem;
  }
  
  .basic-list .table th.subject p {
    margin-right: 0;
  }
  
  .basic-list .table td {
    font-size:1.9rem;
  }
  
  .basic-list .table td.no {
    font-size:1.7rem;
  }
  
  .basic-list .table tr.table_message div {
    padding:50px 0px;
  } 
  
  .basic-list .table tr.table_message p {
    font-size:2rem;
  }
}

@media(max-width:1024px) {
  .basic-list .table th,
  .basic-list .table td {
    padding:20px 12px;
  }

  .basic-list .table tr.table_message div {
    padding:45px 0px;
  } 
  
}

@media(max-width:768px) {
  colgroup {
    display: none;
  }
  
  .basic-list .table th,
  .basic-list .table td {
    padding:18px 10px;
  }

  .basic-list .table th {
    font-size:1.7rem;
  }
  
  .basic-list .table td {
    font-size:1.7rem;
  }
  
  .basic-list .table th:first-child,
  .basic-list .table td:first-child {
    width: 80px;
  }
 
  .basic-list .table th:nth-child(2),
  .basic-list .table td:nth-child(2) {
    width: calc(100% - 200px);
  }
  
  .basic-list .table th:last-child,
  .basic-list .table td:last-child {
    width: 120px;
  }
  
  .basic-list .table td.no {
    font-size:1.5rem;
  }
  
  .basic-list .table tr.table_message div {
    padding:40px 0px;
  } 
  
  .basic-list .table tr.table_message p {
    font-size:1.8rem;
  }
}

@media(max-width:500px) {
  .basic-list .table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
  }
  
  .basic-list .table thead {
    display: none;
  }
  
  .basic-list .table td {
    padding: 0;
    font-size:1.5rem;
  }
  
  .basic-list .table td:first-child {
    width: 65px;
    text-align: left;
  }
  
  .basic-list .table td:last-child {
    text-align: left;
    width: 95px;
  }
  
  .basic-list .table td:nth-child(2) {
    width: 100%;
  }
  
  .basic-list .table td.left {
    padding: 10px 0;
  }
 
  .basic-list .table td.no {
    font-size:1.3rem;
  }
  
  .basic-list .table tr.table_message div {
    padding:35px 0px;
  } 
  
  .basic-list .table tr.table_message p {
    font-size:1.6rem;
  }
}
/* ---------- E: Basic ---------- */

/* ---------- S: View ---------- */
.basic-view  {
  border-top:2px solid #b5b5b5;
}

.basic-view .view_head {
  padding: 26px 0;
  border-bottom:1px solid #dcdcdc;
}

.basic-view .view_head h3 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.basic-view .view_head h3 span {
  color: #ec6619;
}

.basic-view .view_head .info {
  font-size: 1.9rem;
  color: #8c8c8c;
}

.basic-view .view_file {
  display: flex;
  align-items: start;
  width: 100%;
  padding: 22px 0 23px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 2.1rem;
}

.basic-view .view_file p {
  display: flex;
  align-items: center;
}

.basic-view .view_file p i {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/common/view-file.png');
}

.basic-view .view_file a {
  width: calc(100% - 155px);
  padding-left: 5px;
}

.basic-view .view_area {
  min-height:577px;
  height: 100%;
  padding: 25px 0;
  border-bottom:1px solid #ddd;
}

.basic-view .view_area p {
  font-size:1.9rem;
  line-height: 1.5;
}

.basic-view .view_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.basic-view .view_btns .button {
  width:300px;
  height:60px;
  border-radius: 10px;
  color: #fff;
  font-size: 2.1rem;
}

@media(max-width:1200px){
  .basic-view .view_head h3 {
    font-size: 2.6rem;
  }
  
  .basic-view .view_head .info {
    font-size: 1.7rem;
  }
  
  .basic-view .view_file {
    font-size: 1.9rem;
  }
  
  .basic-view .view_area p {
    font-size:1.7rem;
  }
 
  .basic-view .view_btns .button {
    font-size: 1.7rem;
  }
}

@media(max-width:1024px){
  .basic-view .view_head {
    padding: 20px 0;
  }
  
  .basic-view .view_file {
    padding: 20px 0;
  }
  
  .basic-view .view_file p i {
    width: 16px;
    height: 16px;
  }
  
  .basic-view .view_file a {
    width: calc(100% - 140px);
  }
  
  .basic-view .view_area {
    min-height:530px;
    padding: 20px 0;
  }
  
  .basic-view .view_btns {
    margin-top:50px;
  }
  
  .basic-view .view_btns .button {
    width:280px;
    height:50px;
  }
}

@media(max-width:768px){
  .basic-view .view_head {
    padding: 15px 0;
  }
  
  .basic-view .view_head h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .basic-view .view_head .info {
    font-size: 1.5rem;
  }
  
  .basic-view .view_file {
    padding: 15px 0;
    font-size: 1.7rem;
  }
  
  .basic-view .view_file p i {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  
  .basic-view .view_file a {
    width: calc(100% - 125px);
    padding-left: 3px;
  }
  
  .basic-view .view_area {
    min-height:480px;
    padding: 15px 0;
  }
  
  .basic-view .view_area p {
    font-size:1.5rem;
  }
 
  .basic-view .view_btns {
    margin-top:45px;
  }
  
  .basic-view .view_btns .button {
    width:260px;
    height:45px;
    font-size: 1.7rem;
  }
}

@media(max-width:500px){
  .basic-view .view_head {
    padding: 12px 0;
  }
  
  .basic-view .view_head h3 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .basic-view .view_head .info {
    font-size: 1.3rem;
  }
  
  .basic-view .view_file {
    padding: 12px 0;
    font-size: 1.5rem;
  }
  
  .basic-view .view_file p i {
    width: 13px;
    height: 13px;
    margin-right: 6px;
  }
  
  .basic-view .view_file a {
    width: calc(100% - 110px);
  }
  
  .basic-view .view_area {
    min-height:430px;
    padding: 12px 0;
  }
  
  .basic-view .view_area p {
    font-size:1.3rem;
  }
 
  .basic-view .view_btns {
    margin-top:40px;
  }
  
  .basic-view .view_btns .button {
    width:240px;
    height:40px;
    font-size: 1.5rem;
  }
}
/* ---------- E: View ---------- */

/* ---------- S: Resource List ---------- */
.resource-list .table {
  table-layout: fixed;
  border-collapse: collapse;
  width:100%;
  border-top:2px solid #b5b5b5;
}

.resource-list .table tr {
  border-bottom:1px solid #dcdcdc;
}

.resource-list .table th,
.resource-list .table td {
  padding:21px 12px 22px;
  text-align: center;
}

.resource-list .table td {
  padding: 19px 12px 20px;
}

.resource-list .table th {
  font-size:2.1rem;
}

.resource-list .table td {
  font-size:2.1rem;
}

.resource-list .table td.no {
  font-size:1.9rem;
}

.resource-list .table tr.table_notice td.no {
  font-weight: 700;
  color: #ec6619;
}

.resource-list .table td.left {
  text-align: left;
  padding-left: 22px;
}

.resource-list .table .link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.resource-list .table td.type p {
  padding: 3px 5px 4px;
  margin: 0 auto;
  border: 1px solid #ec6619;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.9rem;
  color: #ec6619;
}

.resource-list .table tr.table_message div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:50px 0px;
} 

.resource-list .table tr.table_message p {
  font-size:2.2rem;
}

@media(max-width:1200px) {
  .resource-list .table th {
    font-size:1.9rem;
  }
  
  .resource-list .table td {
    font-size:1.9rem;
  }
  
  .resource-list .table td.no {
    font-size:1.7rem;
  }
  
  .resource-list .table td.type p {
    font-size: 1.7rem;
  }
  
  .resource-list .table tr.table_message p {
    font-size:2rem;
  }
}

@media(max-width:1024px) {
  .resource-list .table th,
  .resource-list .table td {
    padding:18px 10px;
  }
  
  .resource-list .table td.left {
    padding-left: 20px;
  }
  
  .resource-list .table td.type p {
    padding: 4px;
  }
  
  .resource-list .table tr.table_message div {
    padding:45px 0px;
  } 
}

@media(max-width:768px) {
  colgroup {
    display: none;
  }
  
  .resource-list .table th,
  .resource-list .table td {
    padding:15px 10px;
  }

  .resource-list .table th {
    font-size:1.7rem;
  }
  
  .resource-list .table td {
    font-size:1.7rem;
  }
  
  .resource-list .table th:first-child,
  .resource-list .table td:first-child {
    width: 80px;
  }
  
  .resource-list .table th:nth-child(2),
  .resource-list .table td:nth-child(2) {
    width: 90px;
  }
 
  .resource-list .table th:nth-child(3),
  .resource-list .table td:nth-child(3) {
    width: calc(100% - 280px);
  }
  
  .resource-list .table th:last-child,
  .resource-list .table td:last-child {
    width: 120px;
  }
  
  .resource-list .table td.left {
    padding-left: 15px;
  }

  .resource-list .table td.no {
    font-size:1.5rem;
  }
  .resource-list .table td.type p {
    font-size: 1.5rem;
  }
  
  .resource-list .table tr.table_message div {
    padding:40px 0px;
  } 
  
  .resource-list .table tr.table_message p {
    font-size:1.8rem;
  }
}

@media(max-width:500px) {
  .resource-list .table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
  }
  
  .resource-list .table thead {
    display: none;
  }
  
  .resource-list .table td {
    padding: 0;
    font-size:1.5rem;
  }
  
  .resource-list .table td:first-child {
    display: flex;
    align-items: center;
    width: auto;
    margin-right: 10px;
    height: 24px;
    text-align: left;
  }
  
  .resource-list .table td:last-child {
    text-align: left;
    width: 95px;
  }
  
  .resource-list .table td:nth-child(2) {
    width: 60px;
  }
  
  .resource-list .table td:nth-child(3) {
    width: 100%;
  }
 
  .resource-list .table td.left {
    padding-left: 0;
    padding: 10px 0;
  }
  
  .resource-list .table td.no {
    font-size:1.3rem;
  }

  .resource-list .table td.type p {
    font-size:1.3rem;
  }
  
  .resource-list .table tr.table_message div {
    padding:35px 0px;
  } 
  
  .resource-list .table tr.table_message p {
    font-size:1.6rem;
  }
}
/* ---------- E: Resource List ---------- */