/*************** Main ***************/
#main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url(../assets/pressRelease_topimg.jpg);
  height: calc(var(--vh, 1vh)*100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-content p:nth-child(1) {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 68px;
}

.main-content p:nth-child(2) {
  margin-top: 42px;
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.move-down {
  animation: scroll 1.5s infinite;
  background: url(../assets/arrow-down-sb.svg) no-repeat;
  background-size: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-bottom: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 30px;
}

@keyframes scroll {
  0% {
    height: 50px;
  }

  30% {
    height: 56px;
  }

  60% {
    height: 50px;
  }
}

@media (min-width: 1280px) {
  .move-down {
    background-size: 40px;
    height: 52px;
    width: 52px;
  }
}

@media (max-width: 1279px) {
  #main p {
    font-size: 56px;
    display: block;
    line-height: inherit;
  }

  #main p:nth-child(2) {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  #main p {
    font-size: 28px;
    display: block;
    line-height: inherit;
  }

  #main p:nth-child(2) {
    font-size: 20px;
  }
}

/*************** Board ***************/

a,
span,
div,
p {
  color: black;
}

select {
  outline: none;
}

#board {
  position: relative;
  margin-top: calc(var(--vh, 1vh)*10);
  width: 100%;
  z-index: 2;
  background-color: white;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .board {
    min-height: calc(100vh - 148px);
  }
}

.breadcrumb ul {
  display: flex;
  margin-bottom: 30px;
}

.breadcrumb li span {
  color: #999999;
  font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  width: 16px;
  height: 2px;
  background: #DDDDDD;
  border-radius: 10px;
  transform: rotateZ(110deg);
}

.breadcrumb a {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb [aria-current] {
  color: #202020;
  font-weight: 700;
}

.sub-visual {
  margin-bottom: 80px;
  padding-top: 200px;
}

.inner-small {
  max-width: 1480px;
}

.inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px;
  width: 90%;
}

.sub-visual[data-visual-full] {
  z-index: 2;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  padding-top: 0;
  height: 100vh;
  background: #fff;
}

.sub-visual .background {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1680px;
  width: 90%;
  height: 100vh;
  will-change: transform;
}

.sub-visual .background .image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-visual .sticky {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  padding-bottom: 100px;
  width: 100%;
  height: 100vh;
}

.sub-visual .heading {
  font-size: 64px;
}

.sub-visual .heading span {
  display: block;
  opacity: 0;
}

.sub-visual .heading span:nth-child(1) {
  transform: translateY(65px);
}

.sub-visual .heading span:nth-child(2) {
  transform: translateY(85px);
}

.sub-visual .heading span:nth-child(3) {
  transform: translateY(105px);
}

.sub-visual .text {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 500;
}

.section-border-top {
  border-top: 1px solid #CCCCCC;
}

.section-container .section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-container .section-padding-medium {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-container .section:first-child,
.section-container .section-flex:first-child {
  margin-top: 0;
}

.section-container .section-start {
  padding-top: 80px;
}

.section-container .section-end {
  padding-bottom: 180px;
}

@media screen and (max-width: 1200px) {
  .sub-visual {
    padding-top: 160px;
  }

  .sub-visual .heading {
    font-size: 42px;
  }

  .sub-visual .text {
    font-size: 18px;
  }

  .breadcrumb a {
    font-size: 13px;
  }

  .breadcrumb ul {
    margin-bottom: 24px;
  }

  .section-container .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-container .section-padding-medium {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-container .section-start {
    padding-top: 60px;
  }

  .section-container .section-end {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 768px) {
  .sub-visual {
    margin-bottom: 60px;
    padding-top: 120px;
  }

  .sub-visual .heading {
    font-size: 30px;
  }

  .sub-visual .text {
    margin-top: 14px;
    font-size: 16px;
  }

  .breadcrumb ul {
    margin-bottom: 20px;
  }

  .section-container .section-end {
    padding-bottom: 80px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-right: -5%;
  margin-left: -5%;
}

.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #151515;
  border: 1px solid transparent;
  transition: opacity ease .15s;
  opacity: 0.55;
}

.pagination .page-item.active .page-link {
  color: #097CD3;
  opacity: 1;
}

.pagination .page-item .page-link span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}

.pagination .page-item .page-link span.first {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M24 11L17 18L24 25'/%3E%3Cpath d='M12 10V18V26'/%3E%3C/svg%3E%0A");
}

.pagination .page-item .page-link span.previous {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M21 11L14 18L21 25'/%3E%3C/svg%3E%0A");
}

.pagination .page-item .page-link span.next {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M14 11L21 18L14 25'/%3E%3C/svg%3E%0A");
}

.pagination .page-item .page-link span.last {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M12 11L19 18L12 25'/%3E%3Cpath d='M24 10V18V26'/%3E%3C/svg%3E%0A");
}

.pagination .page-item:nth-child(1) .page-link,
.pagination .page-item:nth-child(2) .page-link,
.pagination .page-item:nth-last-child(1) .page-link,
.pagination .page-item:nth-last-child(2) .page-link {
  opacity: 1;
}

.pagination .page-item.disabled,
.pagination .disabled>.page-link {
  opacity: 0.55;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .pagination .page-item:not(.active) .page-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media screen and (max-width: 1200px) {
  .pagination {
    margin-top: 50px;
  }

  .pagination .page-item .page-link {
    margin: 0 4px;
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 36px;
  }

  .pagination .page-item .page-link {
    margin: 0;
  }
}


/* PAGINATION */
.pagination {
  text-align: center;
  font-size: 0;
}

.pagination .pg {
  display: flex;
  align-items: center;
}

.pagination .pg a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #151515;
  border: 1px solid transparent;
  transition: opacity ease .15s;
  opacity: 0.55;
}

.pagination .pg a.on {
  color: #005eb8 !important;
  position: relative;
}

.pagination .pg_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  vertical-align: middle;
  cursor: pointer;
  transition: opacity ease .15s;
  opacity: 0.55;
}

.pagination .pg_btn.pg_start {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M24 11L17 18L24 25'/%3E%3Cpath d='M12 10V18V26'/%3E%3C/svg%3E%0A");
}

.pagination .pg_btn.pg_prev {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M21 11L14 18L21 25'/%3E%3C/svg%3E%0A");
}

.pagination .pg_btn.pg_next {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M14 11L21 18L14 25'/%3E%3C/svg%3E%0A");
}

.pagination .pg_btn.pg_end {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23151515' stroke-width='2'%3E%3Cpath d='M12 11L19 18L12 25'/%3E%3Cpath d='M24 10V18V26'/%3E%3C/svg%3E%0A");
}

@media (hover: hover) and (pointer: fine) {

  .pagination .pg_btn:hover,
  .pagination .pg a:not(.on):hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media screen and (max-width: 1200px) {

  .pagination .pg_btn,
  .pagination .pg a {
    margin: 0 4px;
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {

  .pagination .pg_btn,
  .pagination .pg a {
    margin: 0;
  }
}


/* List */
.board-list-container .board-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.board-list-container .total {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.board-list-container .total .fraction {
  letter-spacing: 0.125em;
}

.board-list-container .total .color-primary {
  font-weight: 700;
  color: #097CD3;
}

.board-list-container .search {
  display: flex;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.board-list-container .search select {
  padding-left: 40px;
  width: 205px;
  font-size: inherit;
  color: inherit;
  background-color: #fff;
  border: none;
}

.board-list-container .search select option {
  color: #111;
}

.board-list-container .search input {
  padding-right: 0;
  width: 220px;
  font-size: inherit;
  color: inherit;
  background: #fff;
  border: none;
}

.board-list-container .search button {
  width: 110px;
  height: 60px;
  font-size: inherit;
  color: inherit;
  background-repeat: no-repeat;
  background-size: auto 38%;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 1200px) {
  .board-list-container .board-list-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .board-list-container .board-list-head .col {
    width: 100%;
  }

  .board-list-container .board-list-head .col:first-child {
    order: 2;
  }

  .board-list-container .board-list-head .col:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .board-list-container .total {
    font-size: 14px;
  }

  .board-list-container .total::before {
    margin-right: 5px;
    width: 17px;
    height: 17px;
  }

  .board-list-container .search {
    width: 100%;
    font-size: 14px;
  }

  .board-list-container .search button {
    height: 45px;
  }

  .board-list-container .search input {
    flex: 1 1 auto;
    margin-left: 10px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .board-list-container .search select {
    padding-right: 36px;
    padding-left: 20px;
    width: 130px;
    background-position: right 12px center;
  }

  .board-list-container .search button {
    width: 50px;
  }

  .board-list-container .search input {
    margin-left: 4px;
  }
}

.gallery-board-list {
  display: flex;
  flex-wrap: wrap;
  margin: -50px -20px;
}

.gallery-board-list.list-2 .list {
  width: 50%;
}

.gallery-board-list.list-3 .list {
  width: 33.33333%;
}

.gallery-board-list .list {
  padding: 50px 20px;
}

.gallery-board-list .list-empty {
  padding: 180px 0;
  width: 100% !important;
  text-align: center;
}

.gallery-board-list .thumbnail {
  overflow: hidden;
  position: relative;
  background: #000;
}

.gallery-board-list .thumbnail::before {
  content: '';
  z-index: 2;
  display: block;
  position: relative;
  padding-top: calc(400 / 720 * 100%);
  width: 100%;
  height: 0;
}

.gallery-board-list .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease .6s;
}

.gallery-board-list .thumbnail-media::before {
  background: rgba(0, 0, 0, 0.4);
}

.gallery-board-list .contents .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  margin: 20px 0 12px;
  max-width: 100%;
  font-size: 18px;
  color: #151515;
  font-weight: 700;
  background-image: linear-gradient(transparent calc(100% - 2px), #151515 2px);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size .3s;
}

.gallery-board-list .contents .date {
  font-size: 15px;
  color: #555555;
}

.gallery-board-list .button-expand {
  margin-top: 40px;
}

.modal-video {
  background: rgba(0, 0, 0, 0.7);
}

.modal-video,
.modal-video-movie-wrap {
  animation-duration: .35s;
  animation-timing-function: ease;
}

.modal-video-body {
  max-width: 1200px;
}

.modal-video-movie-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

@media (hover: hover) and (pointer: fine) {

  .gallery-board-list .block:hover .title,
  .gallery-board-list .block:focus .title {
    background-size: 100% 100%;
  }

  .gallery-board-list .block:hover .thumbnail img {
    transform: scale(1.2);
  }

  .gallery-board-list-media .block:hover .thumbnail::after {
    opacity: 1;
  }

  .gallery-board-list-media .block:hover .thumbnail img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1200px) {
  .gallery-board-list {
    margin: -12px;
  }

  .gallery-board-list .list {
    padding: 12px;
  }

  .gallery-board-list .list-empty {
    padding: 100px 0;
  }

  .gallery-board-list .contents .title {
    font-size: 18px;
    margin: 10px 0 0;
  }

  .gallery-board-list .thumbnail-media::after {
    width: 50px;
    height: 50px;
    background-size: auto 18px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-board-list.list-3 .list {
    width: 100%;
  }

  .gallery-board-list.list-2 .list {
    width: 100%;
  }

  .gallery-board-list .list-empty {
    padding: 60px 0;
  }

  .gallery-board-list .button-expand {
    margin-top: 20px;
  }

  .gallery-board-list .contents .title {
    font-size: 16px;
  }
}

.button-expand {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 70px 0 24px;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  color: #151515;
  background: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 100px;
}

.button-expand .circle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  padding: 0 18px 0 24px;
  color: #fff;
  white-space: nowrap;
  background: #097CD3;
  border-radius: 100px;
  transition: clip-path .35s cubic-bezier(.785, .135, .15, .86), transform .35s cubic-bezier(.785, .135, .15, .86);
  clip-path: inset(8px 8px 8px calc(100% - 44px) round 36px);
}

.button-expand .circle svg {
  overflow: hidden;
  width: 13px;
  height: 13px;
}

.button-expand .circle path {
  fill: currentColor;
  transition: transform .35s cubic-bezier(.785, .135, .15, .86);
}

.button-expand .circle path:first-child {
  transition-delay: .1s;
}

.button-expand .circle path:last-child {
  transform: translateX(-100%);
  transition-delay: 0s;
}

.button-expand-light {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.button-expand-light .circle {
  color: #151515;
  background: #fff;
}

.action-button-container {
  z-index: 10;
  overflow: hidden;
  align-items: flex-end;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  margin: 0;
  padding-bottom: 60px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.action-background {
  border-radius: 32px;
  box-shadow: inset 0 0 1px rgb(232 232 237/11%);
  color: #000000;
  display: flex;
  will-change: transform;
  z-index: 1;
  transition: linear 250ms background-color;
  background-color: rgba(212, 212, 212, 0.5);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.action-button {
  transform: scale(0);
  will-change: transform;
}

.action-button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: scale(var(--action-scale));
  background-color: #097CD3;
  border-radius: 50%;
  will-change: transform;
}

.action-base {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  pointer-events: auto;
  border-radius: 32px;
}

.action-text {
  display: inline-block;
  margin: 0 66px 0 24px;
  padding: 21px 0;
  line-height: 1.2353em;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  will-change: opacity;
}

.action-icon {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 10px;
  padding: 12px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: #097CD3;
  border-radius: 50%;
  will-change: transform;
}

.action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fff;
  animation: actionIcon linear 1s infinite;
}

@keyframes actionIcon {
  to {
    transform: rotate(360deg);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button-expand:hover .circle {
    clip-path: inset(0 round 50px);
  }

  .button-expand:hover .circle path:first-child {
    transform: translateX(100%);
    transition-delay: 0s;
  }

  .button-expand:hover .circle path:last-child {
    transform: translateX(0);
    transition-delay: .1s;
  }

  .button-more-expand:hover .icon {
    clip-path: circle(150% at calc(100% - 26px) 50%);
  }
}

@media screen and (max-width: 1200px) {
  .button-expand {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .button-expand {
    font-size: 14px;
  }
}

select {
  padding: 22px 20px;
  margin: 0;
  padding-right: 50px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../assets/board-arrow.svg);
  background-color: #F8F8F8;
  background-size: auto 8px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: right 18px center;
  box-shadow: none;
  border-color: #F8F8F8;
  transition: all ease .1s;
}