.font24 {
  --fontsize: 2.4rem;
  font-size: var(--fontsize);
}
.font28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}
.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}
.font70 {
  --fontsize: 7rem;
  font-size: var(--fontsize);
}
.font80 {
  --fontsize: 8rem;
  font-size: var(--fontsize);
}
.font100 {
  --fontsize: 10rem;
  font-size: var(--fontsize);
}
main .visual {
  width: 100%;
  /* height: 100vh; */
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
/*@supports (-webkit-touch-callout: none) {*/
/*  main .visual {*/
/*    height: -webkit-fill-available;*/
/*  }*/
/*}*/
main .visual :root {
  --vh: 100%;
}
main .visual .box,
main .visual .contents,
main .visual .itemBox,
main .visual .bg,
main .visual .title {
  width: 100%;
  height: 100%;
}
main .visual .itemBox {
  position: relative;
  overflow: hidden;
}
main .visual .bg {
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
main .visual video{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
}
main .visual .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
  padding: 0 0 40px;
}
main .visual .title * {
  color: #fff;
}
main .visual .title h2,
main .visual .title p {
  overflow: hidden;
}
main .visual .title h2 span,
main .visual .title p span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s;
}
main .visual .title p {
  font-size: 2.4rem;
}
main .visual .title.on h2 span,
main .visual .title.on p span {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s;
}
main .visual .title.on p span {
  transition-delay: 0.6s;
}
main .visual .w1690 {
  height: auto;
}
main .visual .optionBox {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 100px 0 0;
/*  width: 100%;*/
  height: 100%;
  position: absolute;
  top: 0;
/*  left: 0;*/
  bottom: 0;
  z-index: 1;
}
main .visual .svgBox {
  width: 74px;
  height: 74px;
  position: relative;
/*  top: 60px;*/
}
main .visual .svgBox > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .visual .svgBox span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .visual .svgBox svg {
  fill: rgba(0, 0, 0, 0);
  stroke: #fff;
  stroke-dasharray: 226.08;
}
main .visual .svgBox svg.off {
  stroke-dashoffset: 0;
  opacity: 0.2;
}
main .visual .svgBox svg.on {
  stroke-dashoffset: 226.08;
  transform: translate(-50%, -50%) rotate(-90deg);
  animation: spinCircle 8s infinite; 
}
main .visual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0);
  opacity: 0.3;
  position: relative;
  cursor: pointer;
}
main .visual .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .visual .swiper-pagination-bullet:hover,
main .visual .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
main .visual .swiper-pagination-bullet:hover::before,
main .visual .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 100%;
  height: 100%;
}
/*main .bottom {*/
/*  background: #fff;*/
/*  padding: 7px 0;*/
/*}*/
/*main .bottom .swiper-wrapper {*/
/*  transition-timing-function: linear;*/
/*}*/
/*main .bottom .swiper-slide {*/
/*  width: auto !important;*/
/*  height:52px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  margin: 0 30px;*/
/*}*/
main .bottom {
  height: 66px;
}
main .bottom .flexBox,
main .bottom ul {
  display: flex;
  align-items: center;
}
main .bottom .flexBox {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
main .bottom ul {
  /* width: 3405px; */
  width: max-content;
  height: 100%;
  position: absolute;
}
main .bottom ul li {
  width: max-content;
  padding: 0 30px;
}
main .bottom ul li img{
	width: max-content;
}
@keyframes txtUp{
    from {
		transform: translateY(100%);
    }
    to {
		transform: translateY(0);
    }
}

@keyframes spinCircle{
    from {
       stroke-dashoffset: 226.08;
    }
    to {
       stroke-dashoffset: 0;
    }
}