/**
* ========================================
 * // all
 * ========================================
 */

#single {
  margin-top: -100px;
  margin-bottom: 80px;
  overflow-x: hidden;
}

#wrap-single {
  overflow-x: hidden;
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #single {
    margin-bottom: 60px;
  }

  #wrap-single {
    padding-top: 100px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #single {
    margin-bottom: 60px;
  }

  #wrap-single {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  #single {
    margin-bottom: 60px;
  }

  #wrap-single {
    padding-top: 100px !important;
  }
}

/**
 * ========================================
 * // Main Visual
 * ========================================
 */

.pimg {
  position: relative;
}

.mainvis-pc {
  width: 100vw;
  height: 105vh;
  object-fit: cover;
  overflow-x: hidden;
}

.mainvis-sp {
  display: none;
}

.mouse_scroll {
  position: absolute;
  top: 95vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.6s ease;
  text-align: center;
  mix-blend-mode: difference;
}

.mouse_scroll.hidden {
  opacity: 0;
  pointer-events: none;
}

.mouse {
  height: 42px;
  width: 24px;
  border: 2px solid #fff;
  border-radius: 14px;
  position: relative;
  margin: 0 auto;
}

.wheel {
  height: 4px;
  width: 4px;
  background: #fff;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: wheelMove 1.5s infinite;
}

@keyframes wheelMove {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

.scroll-text {
  font-size: 14px;
  font-family: Montserrat;
  color: #e6e6e6;
  margin: 5px;
}

.swipe-text {
  display: none;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .swipe-text {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainvis-pc {
    display: none;
  }

  .mainvis-sp {
    width: 100vw;
    height: 105vh;
    object-fit: cover;
    overflow-x: hidden;
    display: block;
  }

  .swipe-text {
    font-size: 12px;
    font-family: Montserrat;
    color: #e6e6e6;
    margin: 5px;
    display: block;
  }

  .scroll-text {
    display: none;
  }

  .mouse_scroll {
    top: 95vh;
  }
}

@media screen and (max-width: 767px) {
  .mainvis-pc {
    display: none;
  }

  .mainvis-sp {
    width: 100vw;
    height: 110vh;
    object-fit: cover;
    overflow-x: hidden;
    display: block;
  }

  .swipe-text {
    font-size: 10px;
    font-family: Montserrat;
    color: #e6e6e6;
    margin: 3px;
    display: block;
  }

  .scroll-text {
    display: none;
  }

  .mouse {
    height: 30px;
    width: 14px;
    border: 2px solid #fff;
    border-radius: 14px;
    position: relative;
    margin: 0 auto;
  }

  .wheel {
    height: 3px;
    width: 3px;
    top: 5px;
  }

  @keyframes wheelMove {
    0% {
      top: 5px;
      opacity: 1;
    }
    100% {
      top: 20px;
      opacity: 0;
    }
  }

  .mouse_scroll {
    top: 92vh;
  }
}

/**
 * ========================================
 * // Intro
 * ========================================
 */

.pintro {
  display: flex;
  justify-content: space-between;
  gap: 170px;
  margin-bottom: 80px;
}

.pleft {
  max-width: 50%;
}

.ptitle {
  font-size: 42px;
  font-weight: 600;
  color: #ef5323;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
}

.pdesc p {
  font-size: 16px;
  color: #e6e6e6;
  margin: 0;
}

.pright {
  max-width: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pli {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #808080;
  padding: 20px 0px;
}

.pli b {
  font-size: 14px;
  font-weight: 600;
  color: #808080;
}

.pli span {
  display: block;
  font-size: 18px;
  color: #e6e6e6;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .pintro {
    gap: 80px;
  }

  .ptitle {
    font-size: 36px;
    line-height: 1.2em;
  }

  .pdesc p {
    font-size: 14px;
  }

  .pli {
    padding: 15px 0px;
  }

  .pli b {
    font-size: 12px;
  }

  .pli span {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pintro {
    gap: 50px;
  }

  .ptitle {
    font-size: 36px;
    line-height: 1.2em;
  }

  .pdesc p {
    font-size: 14px;
  }

  .pli {
    padding: 10px 0px;
  }

  .pli b {
    font-size: 10px;
  }

  .pli span {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .pintro {
    flex-wrap: wrap;
    gap: 30px;
  }

  .pleft {
    max-width: 100%;
    width: 100%;
  }

  .pright {
    max-width: 100%;
    width: 100%;
  }

  .ptitle {
    font-size: 28px;
    line-height: 1.2em;
  }

  .pdesc p {
    font-size: 14px;
  }

  .pli {
    padding: 10px 0px;
  }

  .pli b {
    font-size: 10px;
  }

  .pli span {
    font-size: 14px;
  }
}

/**
 * ========================================
 * // Photo
 * ========================================
 */

.pphoto {
  margin-bottom: 50px;
}

.photobox {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer !important;
}

.modula-item-content > a:not(.modula-no-follow) {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer !important;
}

.modula-fancybox-container,
.fancybox-image {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/orange.cur") 8 8, pointer !important;
}

.fancybox__nav {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer !important;
}

.modula-best-grid-gallery .f-button {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer !important;
}

.modula-best-grid-gallery .fancybox__carousel {
  transform: none !important;
  touch-action: manipulation !important;
}

.fancybox__slide.can-zoom_in {
  pointer-events: none !important;
  transform: none !important;
  touch-action: manipulation !important;
}

.fancybox__content {
  pointer-events: none !important;
  touch-action: manipulation !important;
}

.fancybox__track {
  pointer-events: none !important;
  touch-action: manipulation !important;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .pphoto {
    margin-bottom: 30px;
  }
}

/**
 * ========================================
 * // Pagination
 * ========================================
 */

.pagebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pnext {
  color: #e6e6e6;
  font-size: 24px;
  font-weight: 700;
  font-family: Montserrat;
  margin: 0;
}

.pnexttitle {
  color: #e6e6e6;
  font-size: 42px;
  font-weight: 600;
  font-family: Montserrat;
  margin: 0;
}

.pbuttonbox {
  position: relative;
  width: 80px;
  height: 80px;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}

.arrow-outline,
.arrow-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.arrow-fill {
  clip-path: inset(0 100% 0 0); /* hide all */
  transition: clip-path 0.5s ease;
}

.pbuttonbox:hover .arrow-fill {
  clip-path: inset(0 0 0 0); /* reveal fully */
}

.pbutton:hover {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer !important;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .pnext {
    font-size: 22px;
  }

  .pnexttitle {
    font-size: 36px;
  }

  .pbuttonbox {
    width: 65px;
    height: 65px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pnext {
    font-size: 22px;
  }

  .pnexttitle {
    font-size: 36px;
  }

  .pbuttonbox {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .pnext {
    font-size: 14px;
  }

  .pnexttitle {
    font-size: 22px;
    line-height: 1.2em;
    text-align: center;
  }

  .pbutton {
    padding-top: 10px;
  }

  .pbuttonbox {
    width: 30px;
    height: 30px;
  }
}
