.board-view__edit {
  img {
    display: inline-block;
  }
}

.board-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  border-bottom: 2px solid #111;
  width: 522px;
  color: #666;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.425px;
}

.board-search select {
  background-image: url("/en/image/common/select_arrow.svg");
  background-position: right 20px center;
  height: 60px;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.board-search__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
}

.board-search__input input[type=text] {
  min-width: 0;
  height: 60px;
  line-height: 60px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
}

.board-search__input button {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.board-paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 80px;
}

.board-paging>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.board-paging>div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 20px;
  padding: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
  color: #B9B9B9;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.board-paging>div a.active {
  color: var(--pink);
  border-color: var(--pink);
}

.board-paging>div a:hover {
  color: #111;
}

.board-list {
  margin-top: 90px;
}

.list.style01 .board-list .board-list__header {
  background-color: #F9F9F9;
  height: 80px;
}

.list.style01 .board-list .board-list__header,
.list.style01 .board-list .board-list__record {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.list.style01 .board-list .board-list__header div,
.list.style01 .board-list .board-list__record div {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
}

.list.style01 .board-list .board-list__header .num,
.list.style01 .board-list .board-list__record .num {
  width: 140px;
}

.list.style01 .board-list .board-list__header .tit,
.list.style01 .board-list .board-list__record .tit {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222;
  font-weight: 500;
}

.list.style01 .board-list .board-list__header .name,
.list.style01 .board-list .board-list__record .name {
  width: 120px;
}

.list.style01 .board-list .board-list__header .date,
.list.style01 .board-list .board-list__record .date {
  width: 180px;
}

.list.style01 .board-list .board-list__header .view,
.list.style01 .board-list .board-list__record .view {
  width: 160px;
}

.list.style01 .board-list .board-list__record {
  height: 90px;
  z-index: 2;
  position: relative;
}

.list.style01 .board-list .board-list__record div {
  color: #555;
}

.list.style01 .board-list .board-list__record .num {
  color: #111;
}

.list.style01 .board-list .board-list__record .tit {
  text-align: left;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.list.style01 .board-list .board-list__record .date,
.list.style01 .board-list .board-list__record .view {
  font-weight: 400;
}

.list.style01 .board-list .board-list__record::after {
  content: "";
  width: calc(100% - 1px);
  height: 100%;
  border: 1px solid var(--pink);
  opacity: 0;
  background-color: #FFF4F9;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.list.style01 .board-list .board-list__record:hover {
  border-color: transparent;
}

.list.style01 .board-list .board-list__record:hover::after {
  opacity: 1;
}

.list.style01 .board-list .board-list__record:hover .tit {
  color: var(--pink);
}

.list.style02 .board-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 80px 40px;
}

.list.style02 .board-list__record {
  overflow: hidden;
}

.list.style02 .board-list__record figure {
  aspect-ratio: 1.629/1;
  overflow: hidden;
  margin-bottom: 30px;
}

.board-list__record figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

.list.style02 .board-list__record .tit {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 30px;
  padding-bottom: 3px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.list.style02 .board-list__record .date {
  color: #888;
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.4px;
}

.board-list__record:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.list.style02 .board-list__record:hover .tit {
  color: var(--pink);
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.list.style03 .board-list {
  border-top: 1px solid #000;
}

.list.style03 .board-list__record {
  padding: 36px;
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list.style03 .board-list__record figure {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 420px;
  aspect-ratio: 1.82/1;
  margin-right: 60px;
  overflow: hidden;
}

.list.style03 .board-list__record figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.list.style03 .board-list__record:hover .tit {
  text-decoration-line: underline;
  text-underline-offset: 3px;
  color: var(--pink);
}

.list.style03 .board-list__record:hover .board-list__arrow {
  border-color: var(--pink);
}

.list.style03 .board-list__record:hover .board-list__arrow svg path {
  stroke: var(--pink);
}

.list.style03 .board-list__tit {
  width: 570px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
}

.list.style03 .board-list__tit .tit {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.list.style03 .board-list__tit .desc {
  height: 3.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list.style03 .board-list__tit .date {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  line-height: 1;
  margin-top: 40px;
}

.list .board-list__arrow {
  margin-left: auto;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ddd;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.list .board-list__arrow svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.board-view__tit {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  border-top: 2px solid var(--pink);
}

.board-view__tit h4 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.75px;
}

.board-view__tit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.board-view__tit ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.board-view__tit ul li span {
  color: #888;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.4px;
}

.board-view__tit ul li span:last-child {
  font-family: var(--poppins);
}

.board-view__tit ul li:not(:first-child) {
  position: relative;
}

.board-view__tit ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 1px;
  height: 14px;
  background-color: #ddd;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.board-view__desc {
  padding: 50px 0 60px;
  border-top: 1px solid #ddd;
}

.board-view__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #ddd;
}

.board-view__nav .list {
  background-image: url("/en/image/common/board_go_list.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  width: 68px;
  height: 68px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.board-view__nav .list:hover,
.board-view__nav .list:active {
  background-image: url("/en/image/common/board_go_list_hover.svg");
}

.board-view__nav .prev,
.board-view__nav .next {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.board-view__nav .prev div,
.board-view__nav .next div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: #000;
  font-family: var(--poppins);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.45px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.board-view__nav .prev div svg,
.board-view__nav .next div svg {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.board-view__nav .prev p,
.board-view__nav .next p {
  color: #888;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 90%;
}

.board-view__nav .prev div svg {
  margin-left: -22px;
}

.board-view__nav .prev:hover div {
  color: var(--pink);
}

.board-view__nav .prev:hover div svg {
  margin: 0;
  opacity: 1;
}

.board-view__nav .next {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.board-view__nav .next div svg {
  margin-right: -22px;
}

.board-view__nav .next:hover div {
  color: var(--pink);
}

.board-view__nav .next:hover div svg {
  margin: 0;
  opacity: 1;
}

.board-notice {
  padding: 60px 0 60px 100px;
  position: relative;
  z-index: 2;
  margin-bottom: 120px;
}

.board-notice::after {
  content: "";
  width: calc(100% - 60px);
  height: 100%;
  background-color: #FFF6FA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.board-notice article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}

.board-notice article figure {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 1.72/1;
}

.board-notice article figure img {
  width: 100%;
  /*   height: 100%; */
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.board-notice article div {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 340px;
  overflow: hidden;
}

.board-notice article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.board-notice article ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #888;
}

.board-notice article ul li:first-child {
  font-weight: 500;
}

.board-notice article p {
  margin-top: 36px;
  height: 4.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.board-notice .common-btn {
  margin-top: 130px;
}

.board-notice .common-btn a {
  width: 180px;
  height: 57px;
  font-size: 17px;
  margin-inline: 0;
}

/* archive */
.content.archive {
  padding: 166px 0 180px;
}

.content.archive:has(.view) {
  padding: 146px 0 100px;
  background-color: #f9f9f9;
}

.list.style04 .board-list__record {
  position: relative;
  display: block;
  width: calc((100% - 60px) / 3);
  float: left;
  margin-bottom: 30px;
  overflow: hidden;
}

.list.style04 .gutter-sizer {
  width: 30px;
}

.list.style04 .common-btn {
  width: calc((100% - 60px) / 3);
  float: left;
  margin-bottom: 30px;
}

.list.style04 .common-btn button {
  width: 100%;
  padding: 0 calc((100% - 140px) / 2);
}

.list.style04 .common-btn button:hover svg {
  right: calc((100% - 140px) / 2);
}

.list.style04 .board-list__record img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.list.style04 .board-search {
  width: 100%;
  overflow: hidden;
}

.list.list.style04 .board-search select {
  flex: none;
  width: 122px;
}

.list.style04 .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70.47%, rgba(0, 0, 0, 0.40) 96.93%);
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s ease;
}

.list.style04 .tit p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
}

.list.style04 .board-list__record:hover .tit {
  opacity: 1;
}

.list.style04 .board-search__input {
  width: auto;
  flex: 1;
  overflow: hidden;
}

.list.style04 .board-list {
  margin-top: 40px;
}

.list.style04 .board-list::after {
  content: '';
  display: block;
  clear: both;
}

.board-tab {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.board-tab a {
  color: #666;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.board-tab a.active {
  color: var(--pink);
}

.archive-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.archive-main figure {
  height: 520px;
  position: relative;
  width: 100%;
}

.archive-main figure img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.archive-main figure iframe {
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  margin-inline: auto;
}

.archive-main.rotate1 figure img {
  transform: translate(-50%, -50%) rotate(90deg);
  max-width: 520px;
}

.archive-main.rotate2 figure img {
  transform: translate(-50%, -50%) rotate(180deg);
}

.archive-main.rotate3 figure img {
  transform: translate(-50%, -50%) rotate(270deg);
  max-width: 520px;
}

.archive-main.rotate4 figure img {
  transform: translate(-50%, -50%) rotate(0);
}

.archive-scroll {
  width: 100%;
  overflow-x: scroll;
  padding-bottom: 23px;
}

.archive-scroll::-webkit-scrollbar {
  height: 3px;
  background-color: #ddd;
}

.archive-scroll::-webkit-scrollbar-thumb {
  background-color: var(--pink);
}

.archive-items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.archive-items .item {
  width: 145px;
  height: 145px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.archive-items .item::after {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid var(--pink);
  opacity: 0;
  transition: opacity .3s ease;
}

.archive-items .item.active::after {
  opacity: 1;
}

.archive-items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.archive-btns {
  display: flex;
  align-items: center;
  /* gap: 23px; */
  justify-content: space-between;
  width: 136px;
}

.archive-info {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 400px auto;
}

.archive-info ul {
  border-top: 1px solid #000;
}

.archive-info ul li {
  border-bottom: 1px solid #ddd;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.archive-info ul li p {
  font-size: 17px;
  font-weight: 400;
  color: #666;
}

.archive-info ul li p:first-child {
  color: #222;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.archive-info__tit {
  font-size: 30px;
  color: #111;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.archive .board-view__nav {
  margin-top: 120px;
  border-color: #888;
}

.archive .board-view__nav .list {
  background-image: url("/en/image/common/board_go_list02.svg");
}

.archive .board-view__nav .list:hover,
.archive .board-view__nav .list:active {
  background-image: url("/en/image/common/board_go_list_hover.svg");
}


/* 첨부파일 */

.board-view-file {
  margin-top: 50px;
}

.board-view-file li {
  display: flex;
  align-items: center;
  padding-left: 22px;
  margin: 5px 0;
  background: url("/image/common/ico_flie.svg") no-repeat left center /contain;
}

.board-view-file a {
  color: #666;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  border-bottom: 1px dotted transparent;
  transition: .2s;
}

.board-view-file a:hover {
  border-bottom: 1px dotted #666;
}


@media all and (max-width: 1440px) {
  .board-notice article {
    gap: 50px;
  }

  .board-notice {
    padding: 30px 0 30px 60px;
  }

  .board-notice::after {
    width: calc(100% - 30px);
  }
}

@media all and (max-width: 1200px) {
  .board-notice {
    padding: 30px;
  }

  .board-notice article {
    flex-direction: column-reverse;
  }

  .board-notice article div {
    width: 100%;
  }

  .board-notice article figure {
    flex: none;
    width: 100%;
  }

  .board-notice::after {
    width: 100%;
  }

  .list.style03 .board-list__record figure {
    width: 40%;
    margin-right: 30px;
  }

  .list.style03 .board-list__tit {
    width: auto;
    flex: 1;
  }

  .list.style03 .board-list__record {
    padding: 24px;
  }

  .list .board-list__arrow {
    width: 40px;
    height: 40px;
  }

  .archive-info {
    display: block;
  }

  .archive-info__tit {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 1024px) {
  .list.style02 .board-list {
    grid-gap: 40px 20px;
  }
}

@media all and (max-width: 768px) {
  .board-search__input {
    width: 56.94vw;
  }

  .board-search {
    width: 77.78vw;
    font-size: 3.19vw;
  }

  .board-search__input button {
    width: 3.61vw;
    height: 3.61vw;
  }

  .board-search__input button svg {
    width: 100%;
  }

  .board-search select {
    height: 10.56vw;
    background-position: right 2.78vw center;
    background-size: 2.22vw;
  }

  .board-search__input input[type=text] {
    height: 10.56vw;
    line-height: 10.56vw;
    padding: 0 2.78vw;
  }

  .list.style01 .board-list {
    border-top: 1px solid #000;
  }

  .board-list {
    margin-top: 12.5vw;
  }

  .list.style01 .board-list .board-list__record .num,
  .list.style01 .board-list .board-list__record .name,
  .list.style01 .board-list .board-list__record .view {
    display: none;
  }

  .list.style01 .board-list .board-list__header {
    display: none;
  }

  .list.style01 .board-list .board-list__record:hover::after {
    display: none;
  }

  .list.style01 .board-list .board-list__record .date {
    width: 100%;
    text-align: left;
  }

  .list.style01 .board-list .board-list__record .tit {
    flex: none;
    font-size: 3.61vw;
  }

  .list.style01 .board-list .board-list__record {
    flex-direction: column;
    justify-content: center;
    gap: 3.33vw;
    align-items: flex-start;
    height: auto;
    padding: 5.56vw 4.17vw;
  }

  .list.style01 .board-list .board-list__record:hover {
    border-color: #ddd;
  }

  .list.style01 .board-list .board-list__record:hover .tit {
    color: #222;
  }

  .list.style01 .board-list .board-list__record div {
    font-size: 3.06vw;
  }

  .board-paging {
    gap: 7.78vw;
    margin-top: 11.11vw;
  }

  .board-paging>div a {
    min-width: 2.78vw;
    padding: 1.39vw 0;
    font-size: 3.06vw;
  }

  .board-paging>a svg {
    height: 2.22vw;
    min-height: 10px;
  }

  .board-paging>div {
    gap: 5vw;
  }

  .list.style02 .board-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 11.11vw 2.78vw;
  }

  .list.style02 .board-list__record .tit {
    font-size: 3.89vw;
    margin-bottom: 8.33vw;
  }

  .list.style02 .board-list__record .date {
    font-size: 3.06vw;
  }

  .list.style02 .board-list__record figure {
    margin-bottom: 4.17vw;
  }

  .board-notice {
    padding: 4.17vw;
    margin-bottom: 16.67vw;
  }

  .board-notice article {
    gap: 6.94vw;
  }

  .board-notice article ul {
    gap: 2.78vw;
    margin-bottom: 5.56vw;
  }

  .board-notice article ul li {
    font-size: 3.19vw;
  }

  .board-notice article p {
    margin-top: 5vw;
  }

  .board-notice .common-btn {
    margin-top: 13.89vw;
  }

  .board-notice .common-btn a {
    width: 30.56vw;
    height: 10.56vw;
    font-size: 3.33vw;
  }

  .list.style03 .board-list__record {
    padding: 4.17vw;
    flex-direction: column;
    position: relative;
  }

  .list.style03 .board-list__record figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4.17vw;
  }

  .list.style03 .board-list__tit {
    flex: none;
    width: 100%;
  }

  .list.style03 .board-list__tit .tit {
    font-size: 3.89vw;
    margin-bottom: 2.78vw;
  }

  .list.style03 .board-list__tit .date {
    font-size: 3.19vw;
    margin-top: 5.56vw;
  }

  .list .board-list__arrow {
    width: 8.33vw;
    height: 8.33vw;
    position: absolute;
    bottom: 4.17vw;
    right: 4.17vw;
  }

  .board-tab {
    margin-top: 4.17vw;
    gap: 4.17vw;
  }

  .board-tab a {
    font-size: 3.61vw;
  }

  .list.style04 .tit {
    padding: 4.17vw;
  }

  .list.style04 .tit p {
    font-size: 3.89vw;
  }

  .list.style04 .board-list {
    margin-top: 5.56vw;
  }

  .list.style04 .common-btn,
  .list.style04 .board-list__record {
    width: calc(50% - 2.08vw);
    margin-bottom: 4.17vw;
  }

  .list.style04 .gutter-sizer {
    width: 4.17vw;
  }

  .content.archive {
    padding: 25vw 0;
  }

  .content.archive:has(.view) {
    padding: 20.28vw 0 13.89vw;
  }

  .archive-main figure {
    height: 72.22vw;
  }

  .archive-btns {
    /* gap: 3.19vw; */
    width: 27.78vw;
  }

  .archive-btns button {
    width: 8.33vw;
  }

  .archive-btns .archive-rotate {
    width: 5.56vw;
  }

  .archive-main.rotate1 figure img,
  .archive-main.rotate3 figure img {
    max-width: 72.22vw;
  }

  .archive-scroll {
    padding-bottom: 3.19vw;
  }

  .archive-items {
    gap: 1.67vw;
  }

  .archive-items .item {
    width: 25vw;
    height: 25vw;
  }

  .archive-main {
    margin-bottom: 4.17vw;
    gap: 2.78vw;
  }

  .archive-info {
    margin-top: 16.67vw;
  }

  .archive-info__tit {
    margin-bottom: 5.56vw;
    font-size: 4.44vw;
  }

  .archive-info ul li {
    padding: 5.56vw 0;
    gap: 2.78vw;
  }

  .archive-info ul li p:first-child {
    font-size: 3.89vw;
  }

  .archive-info ul li p {
    font-size: 3.61vw;
  }

  .archive .board-view__nav {
    margin-top: 16.67vw;
  }

  .board-view__nav {
    padding: 5.56vw 0;
  }

  .board-view__nav .list {
    max-width: 68px;
    max-height: 68px;
    width: 11.11vw;
    height: 11.11vw;
  }

  .board-view__nav .prev,
  .board-view__nav .next {
    gap: 1.94vw;
  }

  .board-view__nav .prev div,
  .board-view__nav .next div {
    font-size: 3.33vw;
    gap: 1.11vw;
    color: var(--pink);
  }

  .board-view__nav .prev p,
  .board-view__nav .next p {
    font-size: 3.33vw;
  }

  .board-view__nav .prev div svg,
  .board-view__nav .next div svg {
    width: 3.33vw;
    opacity: 1;
  }

  .board-view__nav .prev div svg {
    margin-left: 0;
  }

  .board-view__nav .next div svg {
    margin-right: 0;
  }

  .list.list.style04 .board-search select {
    width: 30.56vw;
  }

  .board-view__tit {
    padding: 8.33vw 3.90625%;
    gap: 4.17vw;
  }

  .board-view__tit h4 {
    font-size: 5vw;
  }

  .board-view__tit ul {
    gap: 4.72vw;
  }

  .board-view__tit ul li:not(:first-child)::before {
    left: -2.22vw;
    height: 2.78vw;
  }

  .board-view__tit ul li {
    gap: 1.67vw;
  }

  .board-view__tit ul li span {
    font-size: 3.33vw;
  }

  .board-view__desc {
    padding: 6.94vw 0 8.33vw;
    min-height: 55.56vw;
  }

  .board-view__nav .list:hover,
  .board-view__nav .list:active,
  .archive .board-view__nav .list:hover,
  .archive .board-view__nav .list:active {
    background-image: url("/en/image/common/board_go_list.svg");
  }
}