:root {
  --logo-color-on: var(--color_bg);
  --logo-color-off: var(--color_link);
  --logo-color-stroke: rgba(85, 85, 85, 0.5);
  --logo-color-fill: rgba(85, 85, 85, 0.2)
}

.p-mainVisual {
  background: var(--color_link);
  position: fixed;
  top: 0
}

.p-mainVisual.-height-full {
  height: calc(var(--swl-mv-height, 100vh) - var(--swl-adminbarH, 0px))
}

@media(max-width: 600px) {
  .p-mainVisual.-height-full {
    height: calc(var(--swl-mv-height, 100vh) + var(--tilt_height)/2 + var(--swl-headerH, 0px) - var(--swl-adminbarH, 0px))
  }
}

.p-mainVisual.-height-full .p-mainVisual__textLayer {
  height: var(--dev-content-top)
}

.p-mainVisual .c-filterLayer:not(.-off)::before {
  opacity: 0
}

.p-mainVisual .c-filterLayer.-off .p-mainVisual__imgLayer.c-filterLayer__img {
  opacity: 1;
  visibility: visible
}

.p-mainVisual .p-mainVisual__imgLayer.c-filterLayer__img {
  opacity: 0;
  visibility: hidden;
  transition: all .5s
}

.p-mainVisual .p-mainVisual__textLayer {
  align-items: center;
  opacity: 1;
  visibility: visible
}

@media(max-width: 600px) {
  .p-mainVisual .p-mainVisual__textLayer {
    padding: 0 5vw
  }
}

.p-mainVisual .p-mainVisual__textLayer svg#logo {
  opacity: 0;
  -webkit-animation: FadeIn .5s linear .5s forwards;
  animation: FadeIn .5s linear .5s forwards
}

.p-mainVisual .p-mainVisual__textLayer h2 {
  margin: -1rem 0 1vw;
  color: var(--logo-color-on);
  font-size: 1.3em;
  letter-spacing: .2em;
  -webkit-clip-path: inset(0 100% 0% 0);
  clip-path: inset(0 100% 0% 0);
  -webkit-animation: clipmove .8s cubic-bezier(0.17, 0.67, 0.89, 0.56) 3s forwards;
  animation: clipmove .8s cubic-bezier(0.17, 0.67, 0.89, 0.56) 3s forwards
}

.p-mainVisual .p-mainVisual__textLayer h2::before, .p-mainVisual .p-mainVisual__textLayer h2::after {
  background: var(--logo-color-on);
  -webkit-mask: url(/wp-content/themes/swell_manuon/dev/img/h3-bg.svg) repeat center center/contain;
  mask: url(/wp-content/themes/swell_manuon/dev/img/h3-bg.svg) repeat center center/contain;
  -webkit-mask-size: 13px;
  mask-size: 13px;
  content: "";
  height: 1.5em;
  width: calc(50% - 4em)
}

.p-mainVisual .p-mainVisual__textLayer h2::after {
  position: absolute;
  right: 0
}

.p-mainVisual .p-mainVisual__textLayer h3 {
  color: var(--logo-color-on);
  -webkit-clip-path: inset(0 100% 0% 0);
  clip-path: inset(0 100% 0% 0);
  -webkit-animation: clipmove 1.5s linear 4s forwards;
  animation: clipmove 1.5s linear 4s forwards
}

[data-scrolled=true] .p-mainVisual .c-filterLayer:not(.-off)::before {
  opacity: 0
}

[data-scrolled=true] .p-mainVisual .c-filterLayer::before {
  opacity: .7;
  transition: all 2s
}

[data-scrolled=true] .p-mainVisual .c-filterLayer__img {
  filter: blur(4px);
  transition: all 2s
}

[data-scrolled=true] .p-mainVisual .p-mainVisual__textLayer {
  opacity: 0;
  visibility: hidden;
  transition: all 1s
}

.search-form.wp-block-search {
  opacity: 0;
  margin-top: 5em;
  margin-bottom: 2em !important;
  -webkit-animation: FadeIn .5s ease-in 6s forwards;
  animation: FadeIn .5s ease-in 6s forwards
}

.search-form.wp-block-search .wp-block-search__inside-wrapper {
  margin: 0 auto;
  width: 28em !important
}

.search-form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  border: 1px solid var(--logo-color-on);
  font-weight: 600;
  color: var(--logo-color-on);
  background: rgba(0, 0, 0, 0)
}

.search-form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input::-moz-placeholder {
  color: var(--logo-color-on);
  top: -0.5em
}

.search-form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input::placeholder {
  color: var(--logo-color-on);
  top: -0.5em
}

.search-form.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  background: var(--logo-color-on);
  border: none !important;
  border-radius: 0px;
  box-shadow: 0 0 1px #aaa, inset 0 -1px 0 #ccc;
  font-size: 1em;
  font-weight: 600;
  padding: 0 1em
}

.p-mainVisual__scroll {
  top: calc(var(--dev-content-top) - 60px);
  height: 50px;
  opacity: 1
}

.p-mainVisual__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 30px;
  background: #fff;
  -webkit-animation: pathmove 1.4s ease-in-out 7s infinite;
  animation: pathmove 1.4s ease-in-out 7s infinite;
  opacity: 0
}

[data-scrolled=true] .p-mainVisual__scroll {
  opacity: 0;
  visibility: hidden;
  transition: all .5s
}

.p-mainVisual__scrollArrow, .p-mainVisual__scrollLabel {
  display: none
}

svg#logo {
  opacity: 0;
  stroke: var(--logo-color-stroke);
  stroke-miterlimit: 10;
  stroke-width: 1px;
  -webkit-animation: FadeIn .5s linear 0s forwards, glow 2s ease-out 2s forwards;
  animation: FadeIn .5s linear 0s forwards, glow 2s ease-out 2s forwards;
  width: 90vw;
  max-width: 1000px;
  height: 17vw;
  max-height: 190px;
  display: block;
  margin-top: 10vh !important
}

svg#logo #base {
  fill: rgba(0, 0, 0, 0);
  -webkit-animation: flash .5s linear 2s forwards;
  animation: flash .5s linear 2s forwards
}

svg#logo #txt-on {
  fill: var(--logo-color-fill);
  -webkit-animation: flash-on .4s linear 1.5s forwards, glow .8s ease-out 1.5s forwards;
  animation: flash-on .4s linear 1.5s forwards, glow .8s ease-out 1.5s forwards
}