:root {
  --form-height: 60px;
}

.paging {
  margin-top: var(--gap60);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.paging a {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.paging .arr,
.paging ul {
  column-gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.paging .arr a {
  border: 1px solid var(--color-border);
  border-radius: 50%;
  margin: 0 !important;
}
.paging .arr img {
  filter: brightness(0.8);
}
.paging ul {
  padding: 0 10px;
}
.paging ul li {
  margin: 0 !important;
}
.paging ul li a {
  border: none;
  color: #aaa;
  font-weight: 500;
  line-height: 1;
  transition: all 0.4s;
}
.paging ul li:hover a, .paging ul li.on a {
  background: var(--color-white);
  color: #111;
  font-weight: 800;
}

select {
  border: none;
  outline: none;
  appearance: none;
  background: #fff url("/img/sub/angle_select.png") no-repeat calc(100% - 20px) center;
  color: #111;
  font-size: 1.8rem;
  padding: 0 20px;
}
select::-ms-expand {
  display: none;
}

.search-box {
  column-gap: 30px;
  margin-bottom: var(--gap100);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.search-box > * {
  height: calc(var(--form-height) + 10px);
  border-bottom: 2px solid var(--color-black);
}
.search-box select {
  width: 300px;
  flex-shrink: 0;
}
.search-box label {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
}
.search-box label > * {
  height: 100%;
}
.search-box input[type=text] {
  width: 100%;
  padding: 0 25px;
  color: #111;
  font-size: 2rem;
  font-weight: 500;
}
.search-box input[type=text]::placeholder {
  color: #ccc;
}
.search-box button {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.icon-file {
  width: 18px;
}

.board-box {
  border-top: 2px solid var(--color-black);
}
.board-box table {
  table-layout: inherit;
}
.board-box table th, .board-box table td {
  height: 90px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.board-box table th,
.board-box table .font18 {
  font-size: 1.8rem;
}
.board-box table th {
  color: #333;
  font-weight: 600;
}
.board-box table td.left {
  text-align: left;
}
.board-box table td.subject {
  padding: 0 20px;
}
.board-box table td.subject a {
  height: 1.3em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-suit);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.board-box table td.subject .icon-file {
  margin-left: 10px;
}
.board-box table tbody tr {
  position: relative;
}
.board-box table tbody tr::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.6s;
}
.board-box table tbody tr:hover::after {
  width: 100%;
}
.board-box .item {
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.board-box .item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.6s;
}
.board-box .item > a {
  display: flex;
  column-gap: 60px;
  align-items: flex-end;
  padding: 40px;
  width: 100%;
  height: 100%;
}
.board-box .item .img {
  width: 22.2225%;
  flex-shrink: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/0.61115;
}
.board-box .item .img img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.board-box .item .text h5,
.board-box .item .text p {
  font-family: var(--font-suit);
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.board-box .item .text h5 {
  color: #111;
  font-size: 2.6rem;
  font-weight: 500;
  margin-top: 15px;
  -webkit-line-clamp: 1;
}
.board-box .item .text p {
  height: 3.3em;
  color: #666;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.65;
  margin: 10px 0 35px;
  -webkit-line-clamp: 2;
}
.board-box .item .text .date {
  color: #999;
  font-size: 1.5rem;
}
.board-box .item:hover::after {
  width: 100%;
}

.view-box .link-flex,
.sub-contents .inquiry-box .link-flex {
  justify-content: center;
  margin-top: var(--gap100);
}

.view-box .top {
  border-bottom: 2px solid var(--color-black);
  padding: 0 40px 40px;
}
.view-box .top .status {
  margin-bottom: 15px;
}
.view-box .top h3 {
  /*height: 1.3em;
  overflow: hidden; */
  font-size: 4rem;
  /* -webkit-line-clamp: 2; */
  word-wrap: break-word;
  /* text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; */
}
.view-box .top .row {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.view-box .top .right {
  display: inline-flex;
  column-gap: 40px;
}
.view-box .content {
  padding: 40px;
}
.view-box .content {
  font: initial; 
  font-style: initial;
  font-weight: initial;
  font-size: initial;
  line-height: initial;
  letter-spacing: initial;
  color: initial; 
}
.view-box .content * {
  word-break: normal;
}
.view-box .shortcut {
  width: 240px;
  height: 60px;
  column-gap: 15px;
  background: #333;
  border-radius: 60px;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.view-box .shortcut span {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 600;
}
.view-box .shortcut figure {
  display: inline-flex;
}
.view-box .file {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 60px;
}
.view-box .file dl {
  display: flex;
  align-items: flex-start;
  column-gap: 60px;
}
.view-box .file dl * {
  font-size: 1.8rem;
}
.view-box .file dl dt {
  display: flex;
  column-gap: 10px;
  align-items: center;
  flex-shrink: 0;
  color: #333;
  font-weight: 500;
}
.view-box .file dl dd {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.view-box .file dl dd a {
  color: #666;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-position: under;
}

.sub-contents .inquiry-box {
  margin-top: 80px;
}
.sub-contents .inquiry-box .agreement {
  margin: 30px 0 40px;
}
.sub-contents .inquiry-box .policy {
  height: 340px;
  background: #f9f9f9;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 50px 60px;
}
.sub-contents .inquiry-box .policy .hover-box,
.sub-contents .inquiry-box .policy .policy-tab {
  display: none;
}
.sub-contents .inquiry-box .policy .text {
  margin-top: 0;
}
.sub-contents .inquiry-box .policy .text * {
  color: #666;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
.sub-contents .inquiry-box .policy .text dl dt {
  color: #333;
  font-weight: 600;
}
.sub-contents .inquiry-box .policy .dot::before {
  transform: translateY(0.8em);
}
.sub-contents .inquiry-box .policy .table-box {
  border-top-width: 1px;
  margin: 10px 0;
}
.sub-contents .inquiry-box .policy .table-box table {
  table-layout: inherit;
}
.sub-contents .inquiry-box .policy .table-box table th,
.sub-contents .inquiry-box .policy .table-box table td {
  height: 60px;
}
.sub-contents .inquiry-box .policy .table-box table th {
  color: #333;
  font-weight: 600;
}
.sub-contents .inquiry-box .scrollable {
  height: 100%;
}

.form-box {
  border-top: 2px solid var(--color-black);
  margin-top: var(--gap60);
}
.form-box select,
.form-box input,
.form-box .textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  font-size: 1.7rem;
  width: 100%;
  height: 100%;
}
.form-box select::placeholder,
.form-box input::placeholder,
.form-box .textarea::placeholder {
  color: #888;
}
.form-box select,
.form-box input {
  padding: 0 30px;
}
.form-box .max200 {
  max-width: 200px;
}
.form-box .max400 {
  max-width: 400px;
}
.form-box .max430 {
  max-width: 430px;
}
.form-box .max500 {
  max-width: 500px;
}
.form-box .max600 {
  max-width: 600px;
}
.form-box dl {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}
.form-box dl dt,
.form-box dl dd {
  min-height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.form-box dl dt {
  width: 310px;
  flex-shrink: 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 60px;
}
.form-box dl dt em {
  color: var(--color-main);
  margin: 0.2em 0 0 0.1em;
}
.form-box dl dd {
  width: 100%;
  padding: 20px;
}
.form-box dl dd div {
  width: 100%;
  height: 100%;
}
.form-box dl dd .row {
  align-items: center;
  column-gap: 10px;
}
.form-box .phone span {
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-black);
}
.form-box .email span {
  color: var(--color-black);
  font-size: 1.8rem;
  font-weight: 600;
}
.form-box .content {
  height: 260px;
}
.form-box .content .textarea {
  padding: 20px;
}
.form-box .content textarea {
  color: #333;
  font-size: 1.7rem;
  width: 100%;
  height: 100%;
}
.form-box .border {
  height: var(--form-height);
  border: 1px solid var(--color-black);
  border-radius: 5px;
  color: #333;
  font-size: 1.7rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.form-box .row > span {
  flex-shrink: 0;
}
.form-box .file label {
  width: 150px;
  position: relative;
}
.form-box .file label input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-box .captcha .img,
.form-box .captcha button {
  flex-shrink: 0;
}
.form-box .captcha figure {
  width: 160px;
  height: var(--form-height);
  border-radius: 5px;
  overflow: hidden;
}
.form-box .captcha figure img {
  width: 100%;
  height: 100%;
}
.form-box .captcha button {
  width: var(--form-height);
}

.agreement p {
  color: #444;
  font-size: 1.8rem;
  line-height: 1.6;
}

.agree {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
}
.agree input[type=checkbox] {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: var(--color-main);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.agree input[type=checkbox]::after {
  content: "";
  display: block;
  width: 42.85%;
  padding: 21.425% 0;
  background: var(--color-white);
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.agree input[type=checkbox]:checked::after {
  opacity: 1;
}
.agree span {
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 1600px) {
  .search-box {
    column-gap: 20px;
  }
  .board-box .item .img {
    width: 28.1035%;
  }
}
@media (max-width: 1400px) {
  .search-box select {
    width: 220px;
  }
  .board-box .item > a {
    column-gap: 40px;
    padding: 40px 30px;
  }
  .board-box .item .img {
    width: 27.6935%;
  }
  .view-box .top {
    padding: 0 0 30px;
  }
  .view-box .top h3 {
    font-size: 3.4rem;
  }
  .view-box .file {
    padding: 40px 0;
  }
  .sub-contents .inquiry-box .policy {
    padding: 40px;
  }
  .form-box dl dt {
    width: 260px;
    padding: 0 30px;
  }
}
@media (max-width: 1200px) {
  .search-box > * {
    height: var(--form-height);
  }
  .search-box input[type=text] {
    font-size: 1.8rem;
    padding: 0 20px;
  }
  .search-box button img {
    width: 25px;
  }
  .board-box table th,
  .board-box table td {
    height: 80px;
  }
  .board-box .item > a {
    align-items: center;
    column-gap: 30px;
    padding: 40px 0;
  }
  .view-box .shortcut {
    width: auto;
    height: 50px;
    display: inline-flex;
    padding: 0 20px;
  }
  .form-box select,
  .form-box input {
    padding: 0 20px;
  }
  .form-box dl dt {
    width: 200px;
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  .paging a {
    width: 40px;
    height: 40px;
  }
  .search-box {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 10px;
  }
  .search-box > * {
	border-bottom-width: 1px;
  }
  .search-box select {
    width: calc(50% - 10px);
  }
  .search-box label {
    max-width: inherit;
  }
  .board-box table th,
  .board-box table .font18 {
    font-size: 1.7rem;
  }
  .board-box .item > a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 40px;
    column-gap: 0;
  }
  .board-box .item .img {
    width: 360px;
  }
  .board-box .item .text .status {
    margin-bottom: 10px;
  }
  .board-box .item .text h5 {
    font-size: 2.3rem;
    margin-top: 0;
  }
  .board-box .item .text p {
    font-size: 1.7rem;
    margin: 10px 0 20px;
  }
  .view-box .top h3 {
    font-size: 2.7rem;
  }
  .view-box .top .right {
    column-gap: 20px;
  }
  .view-box .file dl {
    column-gap: 40px;
  }
  .view-box .file dl * {
    font-size: 1.7rem;
  }
  .sub-contents .inquiry-box {
    margin-top: var(--gap100);
  }
  .sub-contents .inquiry-box .policy {
    height: 280px;
    padding: 30px;
  }
  .form-box select,
  .form-box input {
    height: var(--form-height);
  }
  .form-box dl {
    flex-direction: column;
    row-gap: 15px;
    padding: 20px;
  }
  .form-box dl dt,
  .form-box dl dd {
    min-height: inherit;
    padding: 0;
  }
  .form-box dl dt {
    width: 100%;
  }
  .agree input[type=checkbox] {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .paging a {
    width: 35px;
    height: 35px;
  }
  .paging .arr img {
    margin: 0 -0.05em;
  }
  .board-box table colgroup,
  .board-box table thead,
  .board-box table th:first-child,
  .board-box table td:first-child {
    display: none;
  }
  .board-box table tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 0;
    border-bottom: 1px solid #191919;
    padding: 20px;
  }
  .board-box table td {
    height: auto;
    order: 2;
    display: inline-flex;
    align-items: center;
    border-right: none;
    border-bottom: none;
  }
  .board-box table td.subject {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .board-box table td.subject a {
    font-size: 1.7rem;
    text-align: left;
  }
  .board-box table td.after::after {
    content: "|";
    color: #333;
    font-size: 10px;
    margin: 0 10px;
  }
  .board-box table td.margin-right {
    order: 3;
    margin: 0 0 0 auto;
  }
  .view-box .top .row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
  .view-box .top h3 {
    font-size: 2.4rem;
  }
  .view-box .content {
    padding: 20px;
  }
  .view-box .file {
    padding: 30px 0;
  }
  .form-box dl {
    padding: 20px 10px;
  }
  .agreement p {
    font-size: 1.6rem;
  }
}
@media (max-width: 640px) {
  :root {
    --form-height: 50px;
  }
  .paging .arr,
  .paging ul {
    column-gap: 5px;
  }
  .paging ul li a {
    width: 30px;
  }
  select {
    font-size: 1.6rem;
  }
  .search-box input[type=text] {
    font-size: 1.6rem;
  }
  .search-box button img {
    width: 20px;
  }
  .board-box .item > a {
    padding: 30px 0;
  }
  .board-box .item .text h5 {
    font-size: 1.9rem;
  }
  .board-box .item .text p {
    font-size: 1.6rem;
  }
  .view-box .shortcut {
    height: 40px;
    column-gap: 10px;
  }
  .view-box .shortcut span {
    font-size: 1.6rem;
  }
  .view-box .file {
    padding: 20px 0;
  }
  .view-box .file dl {
    flex-direction: column;
    row-gap: 15px;
    column-gap: 0;
  }
  .view-box .file dl dd {
    row-gap: 10px;
  }
  .view-box .file dl dd a {
    font-size: 1.6rem;
  }
  .sub-contents .inquiry-box .policy {
    height: 200px;
    padding: 20px;
  }
  .sub-contents .inquiry-box .policy .text * {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .sub-contents .inquiry-box .gap40 {
    row-gap: 20px;
  }
  .form-box select,
  .form-box input,
  .form-box .textarea,
  .form-box .border {
    font-size: 1.6rem;
  }
  .form-box .captcha figure {
    width: 120px;
  }
  .form-box .file input {
    font-size: 1.4rem;
  }
  .agree input[type=checkbox] {
    width: 25px;
    height: 25px;
  }
  .agree span {
    font-size: 1.6rem;
  }
}