/* Privacy */
/* Privacy */
@media (max-width: 768px) {
  .container.container-privacy {
    padding: 30px 15px 50px;
  }
}

.privacy-contents {
  margin: 0;
  width: 100%;
  height: 300px;
  border: 1px solid #aaa;
  overflow-x: hidden;
  overflow-y: scroll;
}

.privacy-textarea {
  width: 100%;
  height: 100%;
}

.privacy-textarea p {
  padding: 15px;
}

/* Main - New - Layout */
.layout-list {
  border-top: 2px solid #161616;
}

.layout-list .list_item {
  padding: 0 40px;
  border-bottom: 1px solid #888;
}

.layout-list .list_item a {
  display: flex;
  align-items: center;
  height: 115px;
  width: 100%;
}

.layout-list .list_item .date {
  max-width: 230px;
  width: 100%;
  margin: 0 80px 0 0;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}

.layout-list .list_item .title {
  display: -webkit-box;
  max-width: 700px;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  color: #717171;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  word-break: break-word;
  -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
  .layout-list .list_item {
    padding: 0 35px;
  }

  .layout-list .list_item a {
    height: 100px;
  }

  .layout-list .list_item .date {
    max-width: 200px;
    margin: 0 60px 0 0;
    font-size: 2.6rem;
  }

  .layout-list .list_item .title {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
  .layout-list .list_item {
    padding: 0 30px;
  }

  .layout-list .list_item a {
    height: 85px;
  }

  .layout-list .list_item .date {
    max-width: 170px;
    margin: 0 40px 0 0;
    font-size: 2.2rem;
  }

  .layout-list .list_item .title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .layout-list .list_item {
    padding: 0 20px;
  }

  .layout-list .list_item a {
    height: 70px;
  }

  .layout-list .list_item .date {
    max-width: 140px;
    margin: 0 20px 0 0;
    font-size: 2rem;
  }

  .layout-list .list_item .title {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .layout-list .list_item {
    padding: 0 10px;
  }

  .layout-list .list_item a {
    height: 60px;
  }

  .layout-list .list_item .date {
    max-width: 110px;
    margin: 0 15px 0 0;
    font-size: 1.8rem;
  }

  .layout-list .list_item .title {
    font-size: 1.6rem;
  }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 0 2px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  font-size: 1.6rem;
  color: #5c5c5c;
  border: 1px solid #dfdfdf;
}

.pagination .pagination_button {
  background-position: center;
  background-repeat: no-repeat;
}

.pagination .pagination_button.button--prev {
  background-image: url("/en/img/bbs/pagination_prev.png");
}

.pagination .pagination_button.button--next {
  background-image: url("/en/img/bbs/pagination_next.png");
}

.pagination .pagination_button.button--backward {
  background-image: url("/en/img/bbs/pagination_backward.png");
}

.pagination .pagination_button.button--forward {
  background-image: url("/en/img/bbs/pagination_forward.png");
}

.pagination a.current {
  color: #fff;
  background-color: #0d8afc;
  border-color: #0d8afc;
}

@media (max-width: 1200px) {
  .pagination a {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .pagination a {
    width: 33px;
    height: 33px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pagination a {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
  
  .pagination .pagination_button.button--prev,
  .pagination .pagination_button.button--next {
    background-size: 5px 9px;
  }

  .pagination .pagination_button.button--backward,
  .pagination .pagination_button.button--forward {
    background-size: 12px 9px;
  }
  
}

@media (max-width: 500px) {
  .pagination a {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }
}

/* News List */
.list--gallery {
  margin-bottom: 77px;
}

.list--gallery .list-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 38px 0;
}

.list--gallery li {
  max-width: 400px;
  width: 33%;
}

.list--gallery .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(280 / 400 * 100%);
  overflow: hidden;
  border: 1px solid #dfdfdf;
}

.list--gallery .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all .3s ease-out;
}

.list--gallery .subject {
  display: -webkit-box;
  margin: 20px 0 35px;
  font-size: 2rem;
  font-weight: 600;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list--gallery .date {
  margin: 0 0 -3px;
  font-size: 1.6rem;
  line-height: 1;
  color: #979797;
}

.view .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 76px;
  padding: 0 20px;
  border-top: 2px solid #000;
}

.view .view-title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  color: #292929;
}

.view .view-date {
  font-size: 2rem;
  line-height: 1;
  color: #858585;
  text-align: right;
}

.view .file {
  width: 100%;
  padding: 8px 20px 15px;
  /* border-top: 1px solid #ababab; */
}

.view .file a {
  display: flex;
  align-items: start;
  justify-content: end;
}

.view .file a i {
  display: block;
  width: 16px;
  height: 20px;
  margin-top: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/bbs/file-icon.png');
}

.view .file a p {
  width: calc(100% - 16px);
  padding-left: 15px;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: #858585;
}

.view .contents-area {
  padding: 35px 20px;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
  min-height: 894px;
  height: 100%;
}

.view .contents-area p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #000;
}

.view-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.view-buttons .buttons-wrap {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.view-buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 56px;
  background-color: #0f0f0f;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}

.view-buttons .button--list {
  width: 200px;
  background-color: #494949;
}


.list--gallery li:hover  .thumb img {
  transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 1200px) {
  .list--gallery {
    margin-bottom: 70px;
  }

  .list--gallery .list-inner {
    gap: 35px 0;
  }

  .list--gallery .subject {
    margin: 20px 0 30px;
    font-size: 1.8rem;
  }

  .list--gallery .date {
    font-size: 1.5rem;
  }

  .view .heading {
    height: 70px;
  }

  .view .view-title {
    font-size: 2.2rem;
  }

  .view .view-date {
    font-size: 1.8rem;
  }

  .view .file {
    padding: 7px 20px 10px;
  }

  .view .file a i {
    width: 14px;
    height: 18px;
    margin-top: 3px;
  }

  .view .file a p {
    width: calc(100% - 14px);
    padding-left: 12px;
    font-size: 1.8rem;
  }

  .view .contents-area {
    padding: 30px 20px;
    min-height: 800px;
  }

  .view .contents-area p {
    font-size: 1.6rem;
  }

  .view-buttons .buttons-wrap {
    gap: 0 15px;
  }

  .view-buttons {
    margin-top: 35px;
  }

  .view-buttons .button {
    width: 140px;
    height: 50px;
    font-size: 1.8rem;
  }

  .view-buttons .button--list {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .list--gallery {
    margin-bottom: 60px;
  }

  .list--gallery .list-inner {
    gap: 30px 0;
  }

  .list--gallery .subject {
    margin: 15px 0 25px;
    font-size: 1.6rem;
  }

  .list--gallery .date {
    font-size: 1.4rem;
  }

  .view .heading {
    height: 60px;
    padding: 0 15px;
  }

  .view .view-title {
    font-size: 2rem;
  }

  .view .view-date {
    font-size: 1.6rem;
  }
  
  .view .file {
    padding: 7px 15px 10px;
  }

  .view .file a i {
    width: 13px;
    height: 17px;
    margin-top: 2px;
  }

  .view .file a p {
    width: calc(100% - 13px);
    padding-left: 10px;
    font-size: 1.6rem;
  }

  .view .contents-area {
    padding: 25px 15px;
    min-height: 700px;
  }

  .view .contents-area p {
    font-size: 1.5rem;
  }

  .view-buttons {
    margin-top: 30px;
  }

  .view-buttons .button {
    width: 120px;
    height: 45px;
    font-size: 1.6rem;
  }

  .view-buttons .button--list {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .list--gallery {
    margin-bottom: 40px;
  }

  .list--gallery .list-inner {
    gap: 25px 0;
  }

  .list--gallery li {
    width: 49%;
  }

  .list--gallery .subject {
    margin: 10px 0 20px;
    font-size: 1.5rem;
  }

  .list--gallery .date {
    font-size: 1.3rem;
  }

  .view .heading {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 55px;
    padding: 0 10px;
  }

  .view .view-title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .view .view-date {
    font-size: 1.5rem;
  }
  
  .view .file {
    padding: 7px 10px 10px;
  }

  .view .file a i {
    width: 12px;
    height: 16px;
    margin-top: 1px;
  }

  .view .file a p {
    width: calc(100% - 12px);
    padding-left: 8px;
    font-size: 1.5rem;
  }

  .view .contents-area {
    padding: 20px 10px;
    min-height: 600px;
  }

  .view .contents-area p {
    font-size: 1.4rem;
  }

  .view-buttons .buttons-wrap {
    gap: 0 10px;
  }

  .view-buttons {
    margin-top: 25px;
  }

  .view-buttons .button {
    width: 100px;
    height: 40px;
    font-size: 1.5rem;
  }

  .view-buttons .button--list {
    width: 140px;
  }
}

@media (max-width: 500px) {
  .list--gallery {
    margin-bottom: 30px;
  }

  .list--gallery .list-inner {
    gap: 20px 0;
  }

  .list--gallery .subject {
    margin: 10px 0 15px;
    font-size: 1.4rem;
  }

  .list--gallery .date {
    font-size: 1.2rem;
  }

  .view .heading {
    padding: 5px;
    min-height: 50px;
    height: 100%;
  }

  .view .view-title {
    font-size: 1.6rem;
  }

  .view .view-date {
    font-size: 1.4rem;
  }

  .view .file {
    padding: 5px 5px 10px;
  }

  .view .file a i {
    width: 11px;
    height: 15px;
  }

  .view .file a p {
    width: calc(100% - 11px);
    padding-left: 7px;
    font-size: 1.4rem;
  }
  
  .view .contents-area {
    padding: 15px 5px;
    min-height: 500px;
  }

  .view .contents-area p {
    font-size: 1.3rem;
  }

  .view-buttons .buttons-wrap {
    gap: 0 5px;
  }

  .view-buttons {
    margin-top: 20px;
  }

  .view-buttons .button {
    width: 80px;
    height: 35px;
    font-size: 1.4rem;
  }

  .view-buttons .button--list {
    width: 120px;
  }
}

/* Search */
.util {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.util .total {
  font-size: 1.6rem;
  font-weight: 300;
  color: #a7a7a7;
}

.util .search {
  display: flex;
  align-items: center;
}

.util .search-select {
  display: flex;
  align-items: center;
  width: 200px;
  height: 44px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  background-image: url("/en/img/bbs/select_down.png");
  background-position: right 20px center;
  background-size: 14px 8px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #a7a7a7;
}

.util input.search-bar {
  display: flex;
  align-items: center;
  width: 280px;
  height: 44px;
  margin: 0 8px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  font-size: 1.6rem;
  font-weight: 300;
  text-indent: 20px;
}

.util input.search-bar::placeholder {
  color: #a7a7a7;
}

.util .search-btn {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background-color: #333;
  background-image: url("/en/img/bbs/search_icon.png");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .util .total {
    font-size: 1.5rem;
  }

  .util .search-select {
    width: 180px;
    height: 40px;
    padding: 0 15px;
    background-position: right 15px center;
    background-size: 12px 6px;
    font-size: 1.5rem;
  }

  .util input.search-bar {
    width: 260px;
    height: 40px;
    margin: 0 5px;
    font-size: 1.5rem;
    text-indent: 15px;
  }

  .util .search-btn {
    width: 40px;
    height: 40px;
    background-size: 13px 13px;
  }
}

@media (max-width: 1024px) {
  .util .total {
    font-size: 1.4rem;
  }

  .util .search-select {
    width: 150px;
    height: 35px;
    padding: 0 12px;
    background-position: right 12px center;
    font-size: 1.4rem;
  }

  .util input.search-bar {
    width: 230px;
    height: 35px;
    font-size: 1.4rem;
    text-indent: 12px;
  }

  .util .search-btn {
    width: 35px;
    height: 35px;
    background-size: 12px 12px;
  }
}

@media (max-width: 768px) {
  .util .total {
    font-size: 1.3rem;
  }

  .util .search-select {
    width: 120px;
    height: 30px;
    padding: 0 10px;
    background-position: right 12px center;
    font-size: 1.3rem;
  }

  .util input.search-bar {
    width: 200px;
    height: 30px;
    font-size: 1.3rem;
    text-indent: 10px;
  }

  .util .search-btn {
    width: 30px;
    height: 30px;
    background-size: 11px 11px;
  }
}

@media (max-width: 500px) {
  .util {
    flex-direction: column;
    width: 100%;
  }

  .util .search {
    width: 100%;
  }

  .util .total {
    margin-bottom: 5px;
    font-size: 1.2rem;
    text-align: right;
  }

  .util .search-select {
    max-width: 90px;
    width: 100%;
    height: 30px;
    padding: 0 8px;
    background-position: right 8px center;
    background-size: 10px 5px;
    font-size: 1.2rem;
  }

  .util input.search-bar {
    width: 65%;
    height: 30px;
    font-size: 1.2rem;
    text-indent: 8px;
  }

  .util .search-btn {
    width: 30px;
    height: 30px;
    background-size: 11px 11px;
  }
}
/* IR List */
.list--basic {
  margin: 40px auto 43px;
  border-top: 2px solid #121212;
}

.list--basic .list-head {
  display: flex;
  align-items: center;
  height: 73px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #c6c6c6;
}

.list--basic .list-inner {
  display: block;
  width: 100%;
}

.list--basic .list_item {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 73px;
  border-bottom: 1px solid #c6c6c6;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list--basic .num {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 117px;
  width: 9.14%;
  color: #999;
  font-size: 1.8rem;
}


.list--basic .subject {
  display: -webkit-box;
  align-items: center;
  justify-content: left;
  max-width: 956px;
  width: 74.687%;
  padding: 0 44px;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  word-break: break-word;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  color: #2b2b2b;
}

.list--basic .date {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 207px;
  width: 16.171%;
  font-size: 1.8rem;
}

.list--basic .list-head .num,
.list--basic .list-head .subject,
.list--basic .list-head .date {
  font-weight: 600;
  color: #1f1f1f;
  text-align: center;
}

@media (max-width: 1200px) {
  .list--basic {
    margin: 35px auto 40px;
  }

  .list--basic .list-head {
    height: 65px;
  }

  .list--basic .list_item {
    height: 65px;
  }

  .list--basic .num {
    font-size: 1.6rem;
  }

  .list--basic .subject {
    padding: 0 40px;
    font-size: 1.6rem;
  }

  .list--basic .date {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .list--basic {
    margin: 30px auto 35px;
  }

  .list--basic .list-head {
    height: 55px;
  }

  .list--basic .list_item {
    height: 55px;
  }

  .list--basic .num {
    font-size: 1.5rem;
  }

  .list--basic .subject {
    padding: 0 35px;
    font-size: 1.5rem;
  }

  .list--basic .date {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .list--basic {
    margin: 25px auto 30px;
  }

  .list--basic .list-head {
    display: none;
    height: 45px;
  }

  .list--basic .list_item {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
    gap: 8px 0;
  }

  .list--basic .num {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }

  .list--basic .date {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding: 0;
  }

  .list--basic .subject {
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .list--basic {
    margin: 20px auto 25px;
  }

  .list--basic .list-head {
    justify-content: space-between;
    height: 35px;
  }

  .list--basic .num {
    font-size: 1.3rem;
  }

  .list--basic .subject {
    font-size: 1.3rem;
  }

  .list--basic .date {
    font-size: 1.3rem;
  }
}

/* Form */
.form--audit .form-table {
  margin-bottom: 17px;
  border-top: 2px solid #000;
}

.form--audit .form-row {
  display: flex;
  align-items: start;
  border-bottom: 1px solid #f0f0f0;
}

.form--audit .form_th {
  display: flex;
  align-items: center;
  width: 236px;
  height: 72px;
  text-indent: 40px;
  border-right: 1px solid #f0f0f0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.form--audit .form_th p {
  margin-top: 15px;
}

.form--audit .form_td {
  width: calc(100% - 236px);
  padding: 12px 40px 12px 25px;
}

.form--audit .form_td input[type="text"] {
  width: 100%;
  height: 48px;
  border: 1px solid #c6c6c6;
  font-size: 1.8rem;
  padding: 0 23px;
}

.form--audit .form_td .file-box {
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
  padding: 0 4px 0 23px;
  border: 1px solid #c6c6c6;
}

.form--audit .form_td .file-box label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.form--audit .form_td .file-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
  border: 0;
}

.form--audit .file-label {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #ababab;
}

.form--audit .file-label i {
  display: block;
  width: 12px;
  height: 25px;
  margin-right: 12px;
  background-image: url("/en/img/icon/file-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form--audit .file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  background-color: #2f2f2f;
  font-size: 1.6rem;
  color: #fff;
}

.form--audit .form_td textarea {
  width: 100%;
  min-height: 160px;
  padding: 20px 23px;
  border: 1px solid #c6c6c6;
  font-size: 1.8rem;
  resize: none;
}

.form--audit .agree-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.form--audit .agree-inner input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.form--audit .agree-inner i {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  background-image: url("/en/img/icon/checkbox.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form--audit .agree-inner span {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
}

.form--audit .agree-inner button {
  position: relative;
  font-size: 1.8rem;
  font-weight: 300;
}

.form--audit .agree-inner button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.form--audit .agree-inner input[type="checkbox"]:checked ~ i {
  background-image: url("/en/img/icon/checkbox-checked.png");
}

.form--audit .button-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  margin: 38px auto 0;
  background-color: #0d8afc;
  font-size: 1.6rem;
  color: #fff;
}

@media (max-width: 1200px) {
  .form--audit .form-table {
    margin-bottom: 15px;
  }

  .form--audit .form_th {
    width: 200px;
    height: 65px;
    text-indent: 35px;
    font-size: 1.8rem;
  }

  .form--audit .form_th p {
    margin-top: 10px;
  }

  .form--audit .form_td {
    width: calc(100% - 200px);
    padding: 10px 35px 10px 20px;
  }

  .form--audit .form_td input[type="text"] {
    height: 45px;
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .form--audit .form_td .file-box {
    height: 45px;
    padding: 0 4px 0 20px;
  }

  .form--audit .file-label {
    font-size: 1.6rem;
  }

  .form--audit .file-label i {
    margin-right: 10px;
  }

  .form--audit .file-btn {
    width: 140px;
    height: 35px;
    font-size: 1.5rem;
  }

  .form--audit .form_td textarea {
    min-height: 150px;
    padding: 20px 20px;
    font-size: 1.6rem;
  }

  .form--audit .agree-inner span {
    font-size: 1.6rem;
  }

  .form--audit .agree-inner button {
    font-size: 1.6rem;
  }

  .form--audit .button-form {
    width: 220px;
    height: 45px;
    margin: 35px auto 0;
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .form--audit .form-table {
    margin-bottom: 10px;
  }

  .form--audit .form_th {
    width: 180px;
    height: 55px;
    text-indent: 20px;
    font-size: 1.6rem;
  }

  .form--audit .form_th p {
    margin-top: 10px;
  }

  .form--audit .form_td {
    width: calc(100% - 180px);
    padding: 10px 15px;
  }

  .form--audit .form_td input[type="text"] {
    height: 40px;
    font-size: 1.5rem;
  }

  .form--audit .form_td .file-box {
    height: 45px;
    padding: 0 4px 0 15px;
  }

  .form--audit .file-label {
    font-size: 1.5rem;
  }

  .form--audit .file-label i {
    width: 9px;
    height: 20px;
    margin-right: 8px;
  }

  .form--audit .file-btn {
    width: 140px;
    height: 30px;
    font-size: 1.4rem;
  }

  .form--audit .form_td textarea {
    min-height: 150px;
    padding: 20px 20px;
    font-size: 1.6rem;
  }

  .form--audit .agree-inner span {
    font-size: 1.5rem;
  }

  .form--audit .agree-inner button {
    font-size: 1.5rem;
  }

  .form--audit .button-form {
    width: 200px;
    height: 40px;
    margin: 30px auto 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .form--audit .form-row {
    flex-direction: column;
    align-items: start;
  }

  .form--audit .form_th {
    width: 100%;
    height: 40px;
    text-indent: 10px;
    font-size: 1.5rem;
    border-right: none;
  }

  .form--audit .form_td {
    width: 100%;
    padding: 10px 10px;
  }

  .form--audit .form_td input[type="text"] {
    height: 35px;
    font-size: 1.4rem;
  }

  .form--audit .form_td .file-box {
    height: 40px;
    padding: 0 4px 0 10px;
  }

  .form--audit .file-label {
    font-size: 1.4rem;
  }

  .form--audit .file-label i {
    width: 9px;
    height: 20px;
    margin-right: 8px;
  }

  .form--audit .file-btn {
    width: 120px;
    height: 30px;
    font-size: 1.4rem;
  }

  .form--audit .form_td textarea {
    min-height: 150px;
    padding: 15px 10px;
    font-size: 1.5rem;
  }

  .form--audit .agree-inner span {
    font-size: 1.4rem;
  }

  .form--audit .agree-inner button {
    font-size: 1.4rem;
  }

  .form--audit .button-form {
    width: 200px;
    height: 40px;
    margin: 30px auto 0;
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  .form--audit .form_th {
    height: 25px;
    text-indent: 8px;
    font-size: 1.4rem;
  }

  .form--audit .form_td {
    padding: 10px 8px;
  }

  .form--audit .form_td input[type="text"] {
    height: 30px;
    font-size: 1.3rem;
  }

  .form--audit .form_td .file-box {
    height: 40px;
    padding: 0 4px 0 8px;
  }

  .form--audit .file-label {
    font-size: 1.3rem;
  }

  .form--audit .file-label i {
    width: 10px;
    height: 18px;
    margin-right: 5px;
  }

  .form--audit .file-btn {
    width: 100px;
    height: 30px;
    font-size: 1.3rem;
  }

  .form--audit .form_td textarea {
    min-height: 150px;
    padding: 15px 10px;
    font-size: 1.3rem;
  }

  .form--audit .agree-inner span {
    font-size: 1.3rem;
  }

  .form--audit .agree-inner button {
    font-size: 1.3rem;
  }

  .form--audit .button-form {
    width: 180px;
    height: 40px;
    margin: 25px auto 0;
    font-size: 1.2rem;
  }
}
