@charset "UTF-8";
.main-hero .swiper {
  width: 100%;
  position: relative;
}
.main-hero .swiper-wrapper {
  height: var(--slider-height);
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .main-hero .swiper-wrapper {
    --slider-height: 100vh;
  }
}
.main-hero .swiper-slide {
  position: relative;
}
.main-hero .swiper-slide .slide-img {
  display: flex;
  height: 100%;
  background-size: cover;
  transition: transform 1.5s ease-in-out;
  background-repeat: no-repeat;
  background-position: 100% 55%;
  transform: scale(1);
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .main-hero .swiper-slide .slide-img {
    background-size: cover;
    background-position: center;
  }
}
.main-hero .swiper-slide .slide-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.72);
}
.main-hero .swiper-slide .slide-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.main-hero .swiper-slide .slide-txt {
  position: absolute;
  z-index: 1;
  color: var(--white);
  top: 40%;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .main-hero .swiper-slide .slide-txt {
    top: 25%;
  }
}
.main-hero .swiper-slide .slide-txt h1 {
  font-size: var(--fs60);
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper-slide .slide-txt h1 {
    font-size: var(--fs40);
  }
}
.main-hero .swiper-slide .slide-txt p {
  font-size: var(--fs22);
  margin-bottom: 30px;
}
.main-hero .swiper-slide .slide-txt .tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-hero .swiper-slide .slide-txt .tag-cat {
  color: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
}
.main-hero .swiper .slide-txt {
  position: absolute;
  z-index: 1;
  color: var(--white);
  top: 40%;
  width: 100%;
  text-align: left;
  margin-top: -71px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper .slide-txt {
    top: 35%;
  }
}
.main-hero .swiper .slide-txt h1 {
  font-size: clamp(40px, 60 / var(--inr) * 100vw, 60px);
  line-height: 85px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper .slide-txt h1 {
    line-height: normal;
    text-align: center;
  }
}
.main-hero .swiper .slide-txt p {
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper .slide-txt p {
    text-align: center;
  }
}
.main-hero .swiper-progress {
  position: absolute;
  bottom: 62px;
  left: calc(50% - 31px);
  width: 62px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 1;
  transform: rotate(90deg);
  border-radius: 2px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper-progress {
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    width: 30%;
  display:none;
  }
}
.main-hero .swiper-progress-bar {
  width: 24px;
  height: 100%;
  background-color: var(--white);
  transition: width 0.3s linear;
  border-radius: 2px;
}
.main-hero .swiper .autoplay-progress {
  position: absolute;
  left: 18.1%;
  bottom: 36.2%;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
	display:none;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper .autoplay-progress {
    left: 50%;
    transform: translateX(-50%);
    bottom: 2%;
	display:none;
  }
}
.main-hero .swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 2px;
  stroke: var(--white);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-hero .swiper .autoplay-progress .circle {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.3);
  fill: none;
  stroke-dashoffset: 0;
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-hero .swiper .autoplay-progress .toggle {
  z-index: 10;
}
.main-hero .swiper .scroll {
  font-size: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
  color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper .scroll {
    display: none;
  }
}
.main-hero .swiper .zoom-in {
  transform: scale(1);
}
.main-hero .swiper-el {
  display: flex;
  align-items: stretch;
  position: absolute;
  bottom: 37%;
  right: 0;
  width: 100%;
  
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper-el {
    bottom: 10%;
  }
}
.main-hero .swiper-el .inr-narrow {
  display: flex;
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-hero .swiper-el .inr-narrow {
    justify-content: center;
  display: none;
  }
}
.main-hero .swiper-el .swiper-button-next, .main-hero .swiper-el .swiper-button-prev {
  width: 40px;
  height: 40px;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
}
.main-hero .swiper-el .swiper-button-next img, .main-hero .swiper-el .swiper-button-prev img {
  width: 40px;
  height: auto;
}
.main-hero .swiper-el .swiper-button-next::after, .main-hero .swiper-el .swiper-button-prev::after {
  display: none;
}
.main-hero .swiper-el .swiper-button-prev img {
  transform: rotate(-180deg);
}
.main-hero .swiper-el .el {
  display: flex;
  align-items: stretch;
  z-index: 1;
}
.main-hero .swiper-el .el .prev, .main-hero .swiper-el .el .next {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main-hero .swiper-el .el .prev img, .main-hero .swiper-el .el .next img {
  width: 40px;
  height: auto;
}
.main-hero .swiper-el .el .prev {
  transform: rotate(-180deg);
}
.main-hero .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 16px;
  inset: auto;
  width: auto;
}
.main .business {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content !important;
  }
  .main .business .fp-tableCell {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }
}
.main .business .inr-full {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.main .business .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .grid {
    grid-template-columns: 1fr;
    margin-top: 110px;
    row-gap: 50px;
  }
}
.main .business .sect-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  top: 180px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .sect-title {
    position: relative;
    top: 50px;
  }
}
.main .business .sect-title h1 {
  font-size: clamp(22px, 32 / var(--inr) * 100vw, 32px);
  font-weight: 800;
}
.main .business .sect-title h3 {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}
.main .business .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  border-right: 1px solid #EEEEEE;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .col {
    border: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.main .business .col:last-child {
  border: 0;
}
.main .business .col .b-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  bottom: 26px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .col .b-content {
    bottom: 0;
    width: 92%;
  }
}
.main .business .col .b-content .tit {
  font-size: clamp(22px, 32 / var(--inr) * 100vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .col .b-content .tit {
    margin-bottom: 0;
  }
}
.main .business .col .b-content p {
  font-size: clamp(16px, 18 / var(--inr) * 100vw, 18px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .col .b-content p {
    text-align: center;
  }
}
.main .business .col .b-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: var(--white);
  position: relative;
  top: 50px;
  z-index: 1;
  box-shadow: var(--box-shadow);
  transition: all 0.4s;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .business .col .b-icon {
    width: 50px;
    height: 50px;
    top: 25px;
  }
}
.main .business .col .b-icon i {
  font-size: 18px;
  color: var(--accent);
}
.main .business .col .b-icon:hover {
  background: var(--accent);
}
.main .business .col .b-icon:hover i {
  color: var(--white);
}
.main .business .col figure {
  display: block;
  overflow: hidden;
  aspect-ratio: 238/159;
  width: 100%;
}
.main .business .col figure img {
  scale: 1;
  transition: all 0.4s;
}
.main .business .col figure img:hover {
  scale: 1.05;
}
.main .cons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100vh;
  position: relative;
  background-color: var(--black);
  background-image: url("/images/main/s3_bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons {
    background-size: cover;
    background-position: center;
    height: auto !important;
  }
  .main .cons .fp-tableCell {
    height: auto !important;
    margin-bottom: 100px;
  }
}
.main .cons .inr-narrow {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.main .cons-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 507px;
  min-height: 507px;
  margin-top: 50px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-text {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: 0;
    align-items: center;
  }
}
.main .cons-text p {
  font-size: clamp(16px, 24 / var(--inr) * 100vw, 24px);
  color: var(--white);
  line-height: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-text p {
    text-align: center;
  }
  .main .cons-text p b {
    font-size:25rem;
	font-weight:700;	
  }
}
.main .cons-text h1 {
  font-size: clamp(30px, 60 / var(--inr) * 100vw, 60px);
  color: var(--white);
  font-weight: 400;
  margin-top: 14px;
  line-height: 80px;
}
.main .cons-text h1 span {
  color: var(--accent);
  font-weight: 700;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-text h1 {
    text-align: center;
    margin-top: 0;
    line-height: normal;
  }
}
.main .cons-text hr {
  height: 1px;
  width: 147px;
  margin-top: 37px;
  margin-bottom: 43px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-text hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.main .cons-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  padding: 17px 40px;
  margin-top: 64px;
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  transition: all 0.4s;
}
.main .cons-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-button {
    margin-top: 30px;
  }
}
.main .cons-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  height: 500px;
  min-height: 500px;
  margin-top: 54px;
  position: relative;
  left: -20px;
  width: calc(100% + 20px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-box {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    left: 0;
    width: 100%;
    min-height: auto;
    margin-top: 50px;
  }
}
.main .cons-box .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding-block: 114px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.4s;
  scale: 1;
}
.main .cons-box .box:hover {
  scale: 1.05;
  box-shadow: var(--box-shadow);
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .cons-box .box {
    padding-block: 50px;
  }
}
.main .cons-box .box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent);
  width: 100px;
  height: 100px;
  border-radius: 100px;
}
.main .cons-box .box-icon i {
  color: var(--white);
  font-size: 50px;
}
.main .cons-box .box .nums {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main .cons-box .box .nums span {
  color: var(--white);
}
.main .cons-box .box .nums span:first-child {
  font-size: clamp(30px, 60 / var(--inr) * 100vw, 60px);
  font-weight: 700;
}
.main .cons-box .box .nums span:last-child {
  font-size: clamp(16px, 24 / var(--inr) * 100vw, 24px);
  font-weight: 700;
}
.main .cons-box .box .info {
  color: var(--white);
  font-size: clamp(16px, 24 / var(--inr) * 100vw, 24px);
  position: relative;
  top: 5px;
}
.main .story {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .story {
    height: auto !important;
    margin-bottom: 150px;
  }
  .main .story .fp-tableCell {
    height: auto !important;
  }
}
.main .story .inr {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  height: 91%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .story .inr-narrow {
    --inr-width: 1;
  }
}
.main .story .sect-title {
  text-align: center;
  position: relative;
  margin-top: 153px;
}
.main .story .sect-title h1 {
  font-size: clamp(22px, 32 / var(--inr) * 100vw, 32px);
  font-weight: 800;
}
.main .story .sect-title h3 {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}
.main .story .sect-title p {
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  margin-top: 34px;
}
.main .story .story-slider {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  margin-top: 35px;
}
.main .story .story-slider .storySlider {
  display: flex;
  height: 440px;
}
.main .story .story-slider .storySlider .swiper-slide {
  display: flex;
}
.main .story .story-slider .storySlider .slide-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border: 1px solid #DDDDDD;
  padding: clamp(10px, 40 / var(--inr) * 100vw, 40px);
}
.main .story .story-slider .storySlider .slide-box .slide-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.main .story .story-slider .storySlider .slide-box .slide-title h1 {
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  border-bottom: 1px solid #DDDDDD;
  color: var(--accent);
  padding-bottom: 25px;
  min-width: 244px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .story .story-slider .storySlider .slide-box .slide-title h1 {
    min-width: 0;
  }
}
.main .story .story-slider .storySlider .slide-box .slide-title img {
  width: 80px;
  height: auto;
}
.main .story .story-slider .storySlider .slide-box .slide-content {
  position: relative;
  top: -3px;
}
.main .story .story-slider .storySlider .slide-box .slide-content span {
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  font-weight: 600;
}
.main .story .story-slider .storySlider .slide-box .slide-content p {
  font-size: 16px;
  margin-top: 20px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
  max-height: 96px;
}
.main .story .story-slider .storySlider .slide-box .slide-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--accent);
  max-width: 200px;
  /* padding: 10px 30px; */
  padding: 8px 26px;
  padding-right: 25px;
  transition: all 0.4s;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .story .story-slider .storySlider .slide-box .slide-btn {
    max-width: 100%;
    width: 100%;
  }
}
.main .story .story-slider .storySlider .slide-box .slide-btn span {
  /* font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px); */
  font-size: clamp(14px, 20 / var(--inr) * 100vw, 16px);
  color: var(--accent);
}
.main .story .story-slider .storySlider .slide-box .slide-btn i {
  font-size: 20px;
  color: var(--accent);
}
.main .story .story-slider .storySlider .slide-box .slide-btn:hover {
  background-color: var(--accent);
}
.main .story .story-slider .storySlider .slide-box .slide-btn:hover span, .main .story .story-slider .storySlider .slide-box .slide-btn:hover i {
  color: var(--white);
}
.main .story .story-slider .prev, .main .story .story-slider .next {
  display: flex;
  position: absolute;
  cursor: pointer;
  top: 29%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .story .story-slider .prev, .main .story .story-slider .next {
    display: none;
  }
}
.main .story .story-slider .prev {
  left: 0;
}
.main .story .story-slider .next {
  right: 0;
}
.main .story .story-btn {
  display: flex;
  align-items: center;
  background-color: var(--accent);
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-top: 40px;
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  padding: 18px 40px;
  transition: all 0.4s;
}
.main .story .story-btn:hover {
  background: var(--grey);
}
.main .contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100vh;
  position: relative;
  background-color: var(--white);
  background-image: url("/images/main/s5_bg.webp");
  background-repeat: no-repeat;
  background-position: left 20%;
  background-size: 50% 100%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact {
    background-size: cover;
    background-position: center;
    height: auto !important;
  }
  .main .contact .fp-tableCell {
    height: auto !important;
    margin-bottom: 100px;
  }
}
.main .contact .inr-narrow {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.main .contact-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 396px;
  min-height: 396px;
  padding-bottom: 18px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-text {
    border-bottom: 1px solid var(--white);
    padding-top: 50px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-text {
    height: auto;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.main .contact-text p {
  font-size: clamp(16px, 24 / var(--inr) * 100vw, 24px);
  color: var(--white);
  line-height: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-text p {
    line-height: auto;
  }
}
.main .contact-text h1 {
  font-size: clamp(30px, 50 / var(--inr) * 100vw, 50px);
  color: var(--white);
  font-weight: 400;
  margin-top: -2px;
  line-height: 80px;
}
.main .contact-text h1 span {
  font-weight: 700;
}
.main .contact-text hr {
  height: 1px;
  width: 147px;
  margin-top: 17px;
  margin-bottom: 24px;
}
.main .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 80px;
  height: 657px;
  margin-top: 84px;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-form {
    margin-left: 0;
    margin-top: 30px;
    height: auto;
  }
}
.main .contact-form h3 {
  font-size: clamp(20px, 24 / var(--inr) * 100vw, 24px);
  font-weight: 700;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-form h3 {
    color: var(--white);
    margin-bottom: 20px;
  }
}
.main .contact-form p {
  font-size: clamp(16px, 18 / var(--inr) * 100vw, 18px);
  line-height: 30px;
  font-weight: 500;
  position: relative;
  top: -10px;
  color: #555555;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .contact-form p {
    color: var(--white);
  }
}
.main .col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main .col2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.main .open-yt {
  cursor: pointer;
}
.main .news-box.open-yt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.5); /* Overlay hitam transparan */
  opacity: 0;
  transition: opacity 0.3s ease;
  aspect-ratio: 4/3;
}
.main .news-box.open-yt::after {
  content: "▶"; /* Ikon Play */
  font-size: 50px;
  color: white;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main .news-box.open-yt:hover::before,
.main .news-box.open-yt:hover::after {
  opacity: 1;
}
.main .more {
  position: relative;
  transition: all 0.4s;
}
.main .more:hover {
  color: var(--accent);
}
.main .more::after {
  position: absolute;
  content: "";
  width: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  display: block;
  background: var(--accent);
  transition: all 0.4s;
}
.main .more:hover img {
  -webkit-animation: wx 0.8s ease-in-out infinite;
  animation: wx 0.8s ease-in-out infinite;
}
.main .more:hover::after {
  width: 100%;
}
.main form .form-input {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.main form .input {
  display: flex;
  align-items: stretch;
}
.main form .input input {
  display: flex;
  align-items: center;
  flex-grow: 1;
  border: 0;
  font-size: 16px;
  color: #999999;
  background-color: #F2F2F2;
  padding: 30px 20px;
  margin: 0;
}
.main form .input input[type=textarea] {
  height: 130px;
}
.main form .input.captcha {
  gap: 10px;
}
.main form .input.captcha .captcha {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--black);
  padding: 16px 48px;
  font-size: clamp(16px, 18 / var(--inr) * 100vw, 18px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main form .input.captcha .captcha {
    background-color: var(--white);
    padding: 16px 20px;
  }
  .main form .input.captcha .captcha div, .main form .input.captcha .captcha input {
    width: 50%;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main form .input.captcha div, .main form .input.captcha input {
    width: 50%;
  }
}
.main form .check {
  justify-content: flex-start;
  position: relative;
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main form .check {
    width: 100%;
    color: var(--white);
  }
}
.main form .check label {
  font-size: 16px;
  margin: 0;
  cursor: pointer;
  margin-left: 12px;
  position: relative;
  top: 2px;
}
.main form .check input[type=checkbox], .main form .check input[type=radio] {
  cursor: pointer;
  opacity: 0;
  height: auto;
  flex-grow: 0;
}
.main form .check input[type=checkbox]:checked ~ .mark, .main form .check input[type=radio]:checked ~ .mark {
  background-color: var(--white);
  border-color: var(--accent);
}
.main form .check input[type=checkbox]:checked ~ .mark::after, .main form .check input[type=radio]:checked ~ .mark::after {
  display: block;
}
.main form .check .mark {
  position: absolute;
  left: 2px;
  top: 4px;
  height: 20px;
  width: 20px;
  border: 1px solid var(--black);
  transition: all 0.2s ease;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main form .check .mark {
    border-color: var(--white);
  }
}
.main form .check .mark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.main form .button {
  width: 100%;
  min-width: 100%;
  height: 60px;
  margin-top: 32px;
  font-size: clamp(18px, 20 / var(--inr) * 100vw, 20px);
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.yt-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.yt-content {
  background: #fff;
  padding: 20px;
  position: relative;
  width: 80%;
  max-width: 900px;
  text-align: center;
  border-radius: 8px;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.yt-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  background: #f00;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  z-index: 99;
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=main.css.map */
