/* ---------- S: Common ---------- */
.sec-tit {
  font-size: 6.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sec-tit p span {
  display: inline-block;
}

@media(max-width:1200px) {
  .sec-tit {
    font-size: 5.4rem;
  }
}

@media(max-width:1024px) {
  .sec-tit {
    font-size: 4.4rem;
  }
}

@media(max-width:768px) {
  .sec-tit {
    font-size: 3.6rem;
  }
}

@media(max-width:500px) {
  .sec-tit {
    font-size: 3rem;
  }
}
/* ---------- E: Common ---------- */
/* ---------- E: Sec01 ---------- */
.sec01 {
  width: 100%;
  height: 100vh;
  padding: 0px;
  background-color: #000;
}

.sec01 .visual {
  width: 100%;
  height: 100%;
  position: relative;
}

.sec01 .context {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1550px;
  width: 100%;
  padding: 0 15px;
}

.sec01 .context .sub-tit {
  margin-bottom: 39px;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.sec01 .context .tit {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.25)
}

.sec01 .context .tit br {
  display: none;
}

.sec01 .context .sub-tit p,
.sec01 .context .tit p {
  opacity: 0;
  transform: translateY(80px);
}

.sec01 .background {
  width: 100%;
  height: 100%;
  transform: scale(1.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec01 .background.background01 {
  background-image: url("../img/main/sec01_bak01.png");
}
.sec01 .background.background02 {
  background-image: url("../img/main/sec01_bak02.png");
}
.sec01 .background.background03 {
  background-image: url("../img/main/sec01_bak03.png");
}

.sec01 .swiper-slide.swiper-slide-active .background {
  animation: visualBgAni 3.5s ease-out forwards;
}

@keyframes visualBgAni {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Swiper */
.sec01 .swiper-container {
  height: 100%;
}

.sec01 .swiper-wrapper {
  height: 100%;
}

.sec01 .swiper-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* .sec01.aos-animate .context .sub-tit p {
  animation: txtAni .6s ease-out forwards;
}

.sec01.aos-animate .context .tit p {
  animation: txtAni .6s ease-out forwards;
  animation-delay: .25s;
} */

.sec01 .swiper-slide-active .tit p {
  animation: txtAni .6s ease-out forwards;
  animation-delay: .25s;
}

.sec01 .swiper-slide-active .background {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes txtAni {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec01 .controls {
  position: absolute;
  left: 50%;
  bottom: 147px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  max-width: 1530px;
  width: 100%;
  padding: 0 15px;
}

.sec01 .controls .stop,
.sec01 .controls .play {
  display: inline-block;
  width: 9px;
  height: 13px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.sec01 .controls .stop.on,
.sec01 .controls .play.on {
  display: none;
}

.sec01 .controls .stop {
  background-image: url('../img/main/sec01_btn_stop.png');
}

.sec01 .controls .play {
  background-image: url('../img/main/sec01_btn_play.svg');
}

.sec01 .visual-pagination .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  margin-right: 40px;
  background-color: transparent;
  opacity: 1;
}

.sec01 .visual-pagination .swiper-pagination-bullet .number {
  display: inline-block;
  padding-bottom: 1px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.sec01 .visual-pagination .swiper-pagination-bullet .fp-arc-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec01 .visual-pagination .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: -1;
  border-radius: 50%;
  border: 2px solid #bbbbbb;
  background-color: transparent;
}

.sec01 .visual-pagination .swiper-pagination-bullet-active .fp-arc-loader {
  display: block;
}

.sec01 .swiper-pagination-bullet-active .path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
	display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 40s;
  animation-iteration-count: unset;
}

.sec01 .swiper-pagination-bullet-active .path.stop {
  animation: none;
}

.sec01 .swiper-pagination-bullet-active .path.start {
  animation: dash linear 40s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@media(max-width:1200px) {
  .sec01 {
    height: calc(100vh - 60px);
  }

  .sec01 .context .sub-tit {
    margin-bottom: 35px;
    font-size: 2.4rem;
  }

  .sec01 .context .tit {
    font-size: 5rem;
  }

  .sec01 .visual-pagination {
    bottom: 215px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet {
    margin-right: 35px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .number {
    font-size: 1.5rem;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .fp-arc-loader {
    width: 35px;
    height: 35px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet-active::after {
    width: 35px;
    height: 35px;
  }
}

@media(max-width:1024px) {
  .sec01 {
    height: calc(100vh - 85px);
  }

  .sec01 .context {
    top: calc(50% - 50px);
  }

  .sec01 .context .sub-tit {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }

  .sec01 .context .tit {
    font-size: 4.2rem;
  }

  .sec01 .visual-pagination {
    bottom: 200px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet {
    margin-right: 30px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .number {
    font-size: 1.4rem;
  }
}

@media(max-width:768px) {
  .sec01 .context .sub-tit {
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .sec01 .context .tit {
    font-size: 3.4rem;
  }

  .sec01 .visual-pagination {
    bottom: 180px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet {
    margin-right: 25px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .number {
    padding-bottom: 3px;
    font-size: 1.3rem;
  }

  .sec01 .controls .stop, .sec01 .controls .play,
  .sec01 .controls .stop, .sec01 .controls .stop {
    margin-top: 3px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .fp-arc-loader {
    width: 30px;
    height: 30px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet-active::after {
    width: 30px;
    height: 30px;
  }

}

@media(max-width:500px) {
  .sec01 .context .sub-tit {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .sec01 .context .tit {
    font-size: 2.8rem;
  }

  .sec01 .context .tit br {
    display: block;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet {
    margin-right: 20px;
  }

  .sec01 .visual-pagination .swiper-pagination-bullet .number {
    font-size: 1.2rem;
  }


}
/* ---------- E: Sec01 ---------- */
/* ---------- S: Sec02 ---------- */
.sec02 {
  position: relative;
  padding: 208px 0 220px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}

.sec02 .bg-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.sec02 .bg-list li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .3s ease-out;
}

.sec02 .bg-list li.bg01 {
  background-image: url('../img/main/sec02_bak01.png');
}

.sec02 .bg-list li.bg02 {
  background-image: url('../img/main/sec02_bak02.png');
}

.sec02 .bg-list li.bg03 {
  background-image: url('../img/main/sec02_bak03.png');
}

.sec02 .bg-list li.bg04 {
  background-image: url('../img/main/sec02_bak04.png');
}

.sec02 .bg-list li.bg05 {
  background-image: url('../img/main/sec02_bak05.png');
}

.sec02 .bg-list li.on {
  opacity: 1;
}


.sec02 .container {
  position: relative;
}

.sec02 .sec-tit {
  display: flex;
  align-items: center;
  margin-bottom: 83px;
}

.sec02 .sec-tit .logo {
  display: block;
  width: 86px;
  aspect-ratio: 1.535 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/main/sec02_logo.svg');
}

.sec02 .sec-tit p {
  width: calc(100% - 86px);
  padding-left: 26px;
  color: #fff;
}

.sec02 .list {
  max-width: 720px;
}

.sec02 .list li {
  position: relative;
  padding: 31px 40px 34px;
  border-bottom: 2px solid #fff;
  opacity: 0.5;
}

.sec02 .list li::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 80px);
  height: calc(100% + 2px);
  background-image: linear-gradient(to right, #0a87a8, #fff);
  opacity: 0.8;
}

.sec02 .list li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
}

.sec02 .list li a p {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}

.sec02 .list li a .arr {
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/main/sec02_arr_off.png');
  transition: all .3s ease-out;
}

.sec02 .list li.on {
  border-bottom: none;
  opacity: 1;
}

.sec02 .list li.on::after  {
  display: block;
}

.sec02 .list li.on .arr {
  background-image: url('../img/main/sec02_arr_on.png');
}

.sec02 .list li:hover .arr {
  transform: translateX(5px);
}

.sec02 .bgBox {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02 .bgBox .swiper-container {
  width: 100%;
  height: 100%;
}

.sec02 .bgBox .swiper-slide {
  position: relative;
}

.sec02 .bgBox .swiper-slide .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec02 .bgBox .swiper-slide .background01 {
  background-image: url('../img/main/sec02_bak01.png');
}
.sec02 .bgBox .swiper-slide .background02 {
  background-image: url('../img/main/sec02_bak02.png');
}
.sec02 .bgBox .swiper-slide .background03 {
  background-image: url('../img/main/sec02_bak03.png');
}
.sec02 .bgBox .swiper-slide .background04 {
  background-image: url('../img/main/sec02_bak04.png');
}
.sec02 .bgBox .swiper-slide .background05 {
  background-image: url('../img/main/sec02_bak05.png');
}

.sec02 .swiper-pagination {
  display: none;
  position: relative;
  max-width: 750px;
  width: 100%;
}

.sec02 .swiper-pagination p::before {
  content: "";
  display: block;
  font-size: inherit;
  font-weight: 600;
  color: #fff;
}

.sec02 .swiper-pagination.list li.swiper-pagination-bullet {
  display: block;
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 0.5;
  border-radius: 0px;
  transition: all .3s ease-out;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.sec02 .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100% + 80px);
  height: calc(100% + 2px);
  background-image: linear-gradient(to right, #0a87a8, #fff);
  opacity: 0.8;
  transition: all .3s ease-out;
}

.sec02 .swiper-pagination .swiper-pagination-bullet-active::after {
  display: block;
}

.sec02 .swiper-pagination.list li.swiper-pagination-bullet-active {
  opacity: 1;
  border-bottom: none;
}

.sec02 .swiper-pagination .swiper-pagination-bullet-active .arr {
  background-image: url('../img/main/sec02_arr_on.png');
}

.sec02 .swiper-pagination li:nth-of-type(1) p::before {
  content: "R&D";
}
.sec02 .swiper-pagination li:nth-of-type(2) p::before {
  content: "Production";
}
.sec02 .swiper-pagination li:nth-of-type(3) p::before {
  content: "QC";
}
.sec02 .swiper-pagination li:nth-of-type(4) p::before {
  content: "CRO&Environment";
}
.sec02 .swiper-pagination li:nth-of-type(5) p::before {
  content: "CRO Service";
}

@media(max-width:1200px){
  .sec02 {
    padding: 200px 0;
  }

  .sec02 .sec-tit {
    position: relative;
    z-index: 10;
    margin-bottom: 75px;
  }

  .sec02 .sec-tit .logo {
    width: 75px;
  }

  .sec02 .sec-tit p {
    width: calc(100% - 75px);
    padding-left: 20px;
  }

  .sec02 .list {
    width: 100%;
    max-width: 720px;
  }

  .sec02 .list li {
    padding: 25px 35px 30px;
  }

  .sec02 .list li a p {
    font-size: 2.2rem;
  }

  .sec02 .list li a .arr {
    width: 25px;
    height: 25px;
  }

  .sec02 .list {
    display: none;
  }

  .sec02 .bg-list {
    display: none;
  }

  .sec02 .bgBox {
    display: block;
  }

  .sec02 .list.swiper-pagination {
    display: block;
  }

  .sec02 .swiper-pagination .swiper-pagination-bullet {
    padding: 10px 35px 15px;
  }

  .sec02 .swiper-pagination .swiper-pagination-bullet a {
    padding: 10px 0;
  }

}

@media(max-width:1024px){
  .sec02 {
    padding: 180px 0;
  }

  .sec02 .sec-tit {
    margin-bottom: 65px;
  }

  .sec02 .sec-tit .logo {
    width: 65px;
  }

  .sec02 .sec-tit p {
    width: calc(100% - 65px);
    padding-left: 18px;
  }

  .sec02 .list li {
    padding: 20px 30px 25px;
  }

  .sec02 .list li a p {
    font-size: 2rem;
  }

  .sec02 .list li a .arr {
    width: 20px;
    height: 20px;
  }

  .sec02 .swiper-pagination .swiper-pagination-bullet {
    padding: 10px 30px 15px;
  }
}

@media(max-width:768px){
  .sec02 {
    padding: 160px 0;
  }

  .sec02 .sec-tit {
    margin-bottom: 55px;
  }

  .sec02 .sec-tit .logo {
    width: 55px;
  }

  .sec02 .sec-tit p {
    width: calc(100% - 55px);
    padding-left: 15px;
  }

  .sec02 .list {
    max-width: 500px;
  }

  .sec02 .list li {
    padding: 18px 25px 20px;
  }

  .sec02 .list li a p {
    font-size: 1.8rem;
  }

  .sec02 .list li a .arr {
    width: 18px;
    height: 18px;
  }

  .sec02 .swiper-pagination .swiper-pagination-bullet {
    padding: 8px 25px 10px;
  }
}

@media(max-width:500px){
  .sec02 {
    padding: 160px 0;
  }

  .sec02 .sec-tit {
    margin-bottom: 55px;
  }

  .sec02 .sec-tit .logo {
    width: 55px;
  }

  .sec02 .sec-tit p {
    width: calc(100% - 55px);
    padding-left: 15px;
  }

  .sec02 .list li {
    padding: 15px 20px 18px;
  }

  .sec02 .list li a p {
    font-size: 1.6rem;
  }

  .sec02 .list li a .arr {
    width: 15px;
    height: 15px;
  }

  .sec02 .swiper-pagination .swiper-pagination-bullet {
    padding: 5px 20px 8px;
  }
}

/* ---------- E: Sec02 ---------- */
/* ---------- S: Sec03 ---------- */
.sec03 {
  padding: 103px 0 114px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/main/sec03_bak.png');
}

.sec03 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 66px;
}

.sec03 .heading .sec-tit {
  color: #58595b;
}

.sec03 .heading .sec-tit span {
  color: #0a87a8;
}

.sec03 .heading .more-btn {
  display: block;
  width: 157px;
  height: 56px;
}

.sec03 .heading .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 19px;
  width: 100%;
  height: 100%;
  background-color: #0a87a8;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.sec03 .heading .more-btn a span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all .3s ease-out;

}

.sec03 .heading .more-btn a span::before,
.sec03 .heading .more-btn a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.sec03 .heading .more-btn:hover a span {
  transform: rotate(-180deg);
}

.sec03 .heading .more-btn a span::before {
  width: 100%;
  height: 2px;
}

.sec03 .heading .more-btn a span::after {
  height: 100%;
  width: 2px;
}

.sec03 .widget {
  max-width: 1815px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
}

.sec03 .widget .swiper-slide  {
  padding-bottom: 6px;
  transition: all .3s ease-out;
}

.sec03 .widget .swiper-slide a {
  display: block;
  width: 100%;
  padding: 32px 32px 28px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}

.sec03 .widget .swiper-slide .thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 35px;
  overflow: hidden;
}

.sec03 .widget .swiper-slide .thumb > div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec03 .widget .swiper-slide .category {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a87a8;
}

.sec03 .widget .swiper-slide .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height:64px;
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sec03 .widget .swiper-slide .date {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #868686;
}

.sec03 .widget .prev,
.sec03 .widget .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s ease-out;
}

.sec03 .widget .prev {
  left: 0;
  background-image: url('../img/main/sec03_arr_prev.png');
}

.sec03 .widget .next {
  right: 0;
  background-image: url('../img/main/sec03_arr_next.png');
}

.sec03 .widget  .widget-progressbar {
  position: relative;
  display: none;
  max-width: 1760px;
  margin: 0 auto;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}

.sec03 .widget  .swiper-pagination-progressbar-fill {
  background-color: #0a87a8;
}

@media(min-width:1201px) {

  .sec03 .widget .swiper-container {
    padding-top: 15px;
  }

  .sec03 .widget .swiper-slide:hover {
    transform: translateY(-15px);
  }

  .sec03 .widget .prev:hover,
  .sec03 .widget .next:hover {
    background-color: #0a87a8;
  }
}

@media(max-width:1200px) {
  .sec03 {
    padding: 90px 0 95px;
  }

  .sec03 .heading {
    margin-bottom: 70px;
  }

  .sec03 .heading .more-btn {
    width: 140px;
    height: 45px;
  }

  .sec03 .heading .more-btn a {
    gap: 0 18px;
    font-size: 1.8rem;
  }

  .sec03 .heading .more-btn a span {
    width: 18px;
    height: 18px;
  }

  .sec03 .widget {
    padding: 0 15px;
  }

  .sec03 .widget .swiper-slide  {
    padding-bottom: 6px;
  }

  .sec03 .widget .swiper-slide a {
    padding: 30px 30px 25px;
  }

  .sec03 .widget .swiper-slide .thumb {
    margin-bottom: 30px;
  }

  .sec03 .widget .swiper-slide .category {
    /* margin-bottom: 12px; */
    font-size: 1.8rem;
  }

  .sec03 .widget .swiper-slide .subject {
    height:60px;
    margin-bottom: 25px;
    font-size: 2.2rem;
  }

  .sec03 .widget .swiper-slide .date {
    font-size: 1.6rem;
  }

  .sec03 .widget .prev,
  .sec03 .widget .next {
    width: 45px;
    height: 45px;
  }
}

@media(max-width:1024px) {
  .sec03 {
    padding: 80px 0 85px;
  }

  .sec03 .heading {
    margin-bottom: 60px;
  }

  .sec03 .heading .more-btn {
    width: 120px;
    height: 40px;
  }

  .sec03 .heading .more-btn a {
    gap: 0 15px;
    font-size: 1.6rem;
  }

  .sec03 .heading .more-btn a span {
    width: 15px;
    height: 15px;
  }

  .sec03 .widget .swiper-slide  {
    padding-bottom: 4px;
  }

  .sec03 .widget .swiper-slide a {
    padding: 25px 25px 20px;
  }

  .sec03 .widget .swiper-slide .thumb {
    margin-bottom: 25px;
  }

  .sec03 .widget .swiper-slide .category {
    /* margin-bottom: 12px; */
    font-size: 1.6rem;
  }

  .sec03 .widget .swiper-slide .subject {
    /* height: 2.4em; */
    height:52px;
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .sec03 .widget .swiper-slide .date {
    font-size: 1.5rem;
  }

  .sec03 .widget .prev,
  .sec03 .widget .next {
    width: 40px;
    height: 40px;
  }
}

@media(max-width:768px) {
  .sec03 {
    padding: 70px 0 75px;
  }

  .sec03 .heading {
    margin-bottom: 50px;
  }

  .sec03 .heading .more-btn {
    width: 100px;
    height: 35px;
  }

  .sec03 .heading .more-btn a {
    gap: 0 12px;
    font-size: 1.5rem;
  }

  .sec03 .widget .swiper-slide a {
    padding: 20px 20px 18px;
  }

  .sec03 .widget .swiper-slide .thumb {
    margin-bottom: 20px;
  }

  .sec03 .widget .swiper-slide .category {
    /* margin-bottom: 12px; */
    font-size: 1.5rem;
  }

  .sec03 .widget .swiper-slide .subject {
    height: 48px;
    margin-bottom: 18px;
    font-size: 1.8rem;
  }

  .sec03 .widget .swiper-slide .date {
    font-size: 1.4rem;
  }

  .sec03 .widget .prev,
  .sec03 .widget .next {
    display: none;
    width: 35px;
    height: 35px;
  }

  .sec03 .widget  .widget-progressbar {
    margin-top: 25px;
    display: block;
  }
}

@media(max-width:500px) {
  .sec03 {
    padding: 60px 0 65px;
  }

  .sec03 .heading {
    margin-bottom: 45px;
  }

  .sec03 .heading .sec-tit {
    width: calc(100% - 90px);
    padding-right: 10px;
  }

  .sec03 .heading .more-btn {
    width: 90px;
    height: 30px;
  }

  .sec03 .heading .more-btn span {
    width: 15px;
    height: 15px;
  }

  .sec03 .heading .more-btn a {
    gap: 0 10px;
    font-size: 1.4rem;
  }

  .sec03 .widget .swiper-slide a {
    padding: 15px 15px 12px;
  }

  .sec03 .widget .swiper-slide .thumb {
    margin-bottom: 18px;
  }

  .sec03 .widget .swiper-slide .category {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  .sec03 .widget .swiper-slide .subject {
    height:44px;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }

  .sec03 .widget .swiper-slide .date {
    font-size: 1.3rem;
  }

  .sec03 .widget .prev,
  .sec03 .widget .next {
    width: 30px;
    height: 30px;
  }

  .sec03 .widget  .widget-progressbar {
    margin-top: 20px;
  }
}
/* ---------- E: Sec03 ---------- */
/* ---------- S: Sec04 ---------- */
.sec04 {
  padding: 55px 0 65px;
  background-color: #0a87a8;
}

.sec04 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec04 .sec-tit {
  color: #fff;
}

.sec04 .box {
  display: flex;
  align-items: center;
  padding-right: 80px;
}

.sec04 .box a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(50px);
  transition: all .3s ease-out;
}

.sec04 .box a i {
  position: relative;
  display: none;
  opacity: 0;
  width: 96px;
  height: 96px;
  margin-bottom: 8px;
  transition: all .3s ease-out;
  transition-delay: .15s;
}

.sec04 .box a i img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec04 .box.aos-animate a {
  opacity: 1;
  transform: translateY(0);
}

.sec04 .box.aos-animate a:nth-of-type(2) {
  transition-delay: .15s;
}

.sec04 .box.aos-animate a:nth-of-type(3) {
  transition-delay: .3s;
}

.sec04 .box a:hover {
  background-color: #fff;
  color: #0a87a8;
  font-weight: 700;
}

.sec04 .box a:hover i {
  display: block;
  opacity: 1;
}

@media(max-width:1200px) {
  .sec04 {
    padding: 45px 0 55px;
  }

  .sec04 .box {
    padding-right: 0;
  }

  .sec04 .box a {
    width: 210px;
    height: 210px;
    font-size: 2.2rem;
    background-color: #fff;
    color: #0a87a8;
    font-weight: 700;
  }

  .sec04 .box a i {
    display: block;
    opacity: 1;
    width: 85px;
    height: 85px;
  }

}

@media(max-width:1024px) {
  .sec04 {
    padding: 40px 0 45px;
  }

  .sec04 .box a {
    width: 180px;
    height: 180px;
    font-size: 2rem;
  }

  .sec04 .box a i {
    width: 75px;
    height: 75px;
  }
}

@media(max-width:768px) {
  .sec04 {
    padding: 35px 0 40px;
  }

  .sec04 .container {
    flex-direction: column;
    align-items: start;
    gap: 35px 0;
  }

  .sec04 .box {
    width: 100%;
    gap: 0 1px;
  }

  .sec04 .box a {
    width: 33.333%;
    height: auto;
    aspect-ratio: 1 / 1;
    font-size: 1.8rem;
  }

  .sec04 .box a i {
    width: 65px;
    height: 65px;
  }
}

@media(max-width:500px) {
  .sec04 {
    padding: 30px 0 35px;
  }

  .sec04 .container {
    gap: 30px 0;
  }

  .sec04 .box a {
    font-size: 1.6rem;
  }

  .sec04 .box a i {
    width: 50px;
    height: 50px;
  }
}
/* ---------- E: Sec04 ---------- */

/* Popup */
#popup {
	position: relative;
}

.popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
}

@keyframes popup-fade {
	0% { opacity: 0;
	-webkit-transform: translateY(25px);
	-ms-transform: translateY(25px);
	transform: translateY(25px); }
	100% { opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0); }
}
.popup-layer__body {
	background: #fff;
}

.popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
}

.popup-layer__foot {
	background: #424242;
}

.popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
}

.popup-layer__foot li {
	width:50%;
	padding:10px;
}

.popup-layer__foot li:first-child {
	padding-right:0;
}

.popup-layer__foot li:last-child {
	text-align: right;
}

.popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

	.popup-layer {
		width:calc(100% - 10px);
	}

	.popup-layer img {
		max-width: none;
		width:100%;
		height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
}
