@charset "utf-8";

/* layout */
body.resizing * {
  transition: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-fill-mode: forwards !important;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.header {
  transition: all .5s ease-out
}

.header.hide {
  background-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(5px);
  transform: translateY(-300%);
}

.evt-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
}

.evt-wrapper img {
  display: block
}

.evt-container,
.evt-section {
  position: relative;
  width: 100%;
  height: auto;
}


.sect-bg {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
}

.evt-section>.sect-cont {
  position: absolute;
  left: 0;
  top: var(--header-height);
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.evt-section>.sect-cont::before,
.evt-section>.sect-cont::after {
  content: "";
  display: block;
}

.evt-section>.sect-cont>* {
  margin: 0 auto;
  flex: none
}

:lang(zh-CN) .evt-menu>li .name,
:lang(zh-TW) .evt-menu>li .name,
:lang(ja) .evt-menu>li .name {
  font-weight: 700
}

.common-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  text-align: center;
  pointer-events: fill;
  width: 3.22rem;
  height: .82rem;
}

.common-btn>span {
  display: inline-block;
  width: auto;
  color: #fff;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: .26rem;
  line-height: .32rem;
  letter-spacing: -.025em;
  text-shadow: 0 .03rem 0 #00317A
}

.common-btn::before,
.common-btn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 100% auto
}

.common-btn::before {
  opacity: 1;
  background-position-y: top
}

.common-btn::after {
  opacity: 0;
  background-position-y: bottom
}

@media (min-width: 1081px) {
  .pc-only {
    display: block !important
  }

  .mo-only {
    display: none !important
  }

  .common-btn::before,
  .common-btn::after {
    transition: opacity .1s linear
  }

  .common-btn::before {
    transition-delay: 0s;
  }

  .common-btn::after {
    transition-delay: .05s;
  }

  .common-btn:hover::after {
    transition-delay: 0s;
    opacity: 1
  }

  .common-btn:hover::before {
    transition-delay: .05s;
    opacity: 0
  }

}

@media (max-width: 1080px) {
  .pc-only {
    display: none !important
  }

  .mo-only {
    display: block !important
  }
}

/* bridge */

#bridge .sect-bg {
  height: 100vh;
  min-height: 8rem;
}

#bridge .sect-cont::before {
  flex: 1
}

#bridge .sect-cont::after {
  flex: 1
}

#bridge .sect-title {
  display: block;
  margin: 0 auto
}

#bridge .common-btn {
  width: 4.22rem;
  height: 1.08rem;
  position: relative;
}

#bridge .common-btn>span {
  box-sizing: border-box;
  font-weight: 600;
  font-size: .24rem;
  line-height: .26rem;
  letter-spacing: -.025em;
  padding-left: .2rem;
  padding-right: .8rem;
}

#bridge .common-btn::before,
#bridge .common-btn::after {
  width: 6.02rem;
  height: 3.1rem;
  bottom: -.48rem;
}

@media (min-width: 1081px) {

  #bridge .sect-bg {
    background-image: url(../img/bg-pc.jpg)
  }

  #bridge .sect-title {
    width: 7.35rem
  }

  #bridge .common-btn {
    margin-top: 1.4rem
  }
  

  #bridge .common-btn::before,
  #bridge .common-btn::after{
    background-image: url(../img/btn.png?v=20250604)
  }
}

@media (max-width: 1080px) {

  #bridge .sect-bg {
    background-image: url(../img/bg-mo.jpg)
  }

  #bridge .sect-title {
    width: 6.24rem
  }

  #bridge .common-btn {
    margin-top: 1.94rem
  }
  #bridge .common-btn::before{
    background-image: url(../img/btn-mo.png?v=20250604)
  }

}