@keyframes linehover-animation-out {
  0% {
    background-position: right 100%;
    background-size: 100% 1px;
  }
  100% {
    background-position: right 100%;
    background-size: 0 1px;
  }
}
@keyframes linehover-animation-in {
  0% {
    background-position: left 100%;
    background-size: 0 1px;
  }
  100% {
    background-position: left 100%;
    background-size: 100% 1px;
  }
}
@keyframes after-linehover-animation-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes after-linehover-animation-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (min-width: 768px) {
  .cArrowLink__inner {
    position: relative;
    display: block;
    width: 100%;
    height: var(--hover-hight, 100%);
    overflow: hidden;
  }
  .cArrowLink__upper {
    position: absolute;
    top: 0;
    left: var(--hover-left, 0);
    transition: transform 0.6s var(--e-out-expo);
    transform: translateY(0);
  }
  .cArrowLink__bottom {
    position: absolute;
    top: 0;
    left: var(--hover-left, 0);
    transition: transform 0.6s var(--e-out-expo);
    transform: translateY(100%);
  }
}
@media (hover: hover) {
  .cArrowLink:hover::after {
    animation: after-linehover-animation-out 0.3s forwards, after-linehover-animation-in 0.3s 0.3s forwards;
  }
  .cArrowLink:hover .cArrowLink__upper {
    transform: translateY(-100%);
  }
  .cArrowLink:hover .cArrowLink__bottom {
    transform: translateY(0);
  }
  .cHoverImage__item {
    overflow: hidden;
  }
  .cHoverImage__item img {
    transition: transform 0.5s var(--e-out-expo);
    transform: scale(1);
  }
  .cHoverImage:hover .cHoverImage__item img {
    transform: scale(1.05);
  }
  .cHoverOpacity {
    transition: opacity 0.7s var(--e-out-expo);
  }
  .cHoverOpacity:hover {
    opacity: 1;
  }
}
.cFadein {
  opacity: 0;
  transition: opacity 0.7s var(--e-out-expo) var(--s-delay, 0s);
}
.cFadein.is-active {
  opacity: 1;
}

.cDiagonal {
  -webkit-mask-image: linear-gradient(225deg, #000 0%, #000 100%, transparent 100%, transparent 0%);
          mask-image: linear-gradient(225deg, #000 0%, #000 100%, transparent 100%, transparent 0%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
}

@keyframes img-wrap-before {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-wrap-after {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.cFadeUpSVG {
  overflow: hidden;
  opacity: 0;
}
.cFadeUpSVG .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.36, 0.14, 0, 1) var(--s-delay, 0s), transform 0.7s cubic-bezier(0.36, 0.14, 0, 1) var(--s-delay, 0s);
  transform: translate(0, 100%) skewX(0);
}
.cFadeUpSVG.is-active {
  opacity: 1;
}
.cFadeUpSVG.is-active .char {
  opacity: 1;
  transform: translate(0, 0%) skewX(0deg);
}

.cFadeRightToLeftSVG {
  overflow: hidden;
  opacity: 0;
}
.cFadeRightToLeftSVG .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.36, 0.14, 0, 1), transform 0.7s cubic-bezier(0.36, 0.14, 0, 1);
  transform: translate(100%, 0) skewX(0);
}
.cFadeRightToLeftSVG.is-active {
  opacity: 1;
}
.cFadeRightToLeftSVG.is-active .char {
  opacity: 1;
  transform: translate(0%, 0) skewX(0deg);
}

.cFadeLeftToRightSVG {
  overflow: hidden;
  opacity: 0;
}
.cFadeLeftToRightSVG .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.36, 0.14, 0, 1), transform 0.7s cubic-bezier(0.36, 0.14, 0, 1);
  transform: translate(-100%, 0) skewX(0);
}
.cFadeLeftToRightSVG.is-active {
  opacity: 1;
}
.cFadeLeftToRightSVG.is-active .char {
  opacity: 1;
  transform: translate(0%, 0) skewX(0deg);
}

.cFadeUpText {
  overflow: hidden;
  opacity: 0;
}
.cFadeUpText span, .cFadeUpText path {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.36, 0.14, 0, 1) var(--s-delay, 0s), transform 0.7s cubic-bezier(0.36, 0.14, 0, 1) var(--s-delay, 0s);
  transform: translate(0, 100%) skewX(12deg);
}
.cFadeUpText.is-active {
  opacity: 1;
}
.cFadeUpText.is-active span, .cFadeUpText.is-active path {
  opacity: 1;
  transform: translate(0, 0%) skewX(0deg);
}

.cClipLeftoToRightBox__item {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path var(--s-animation, 0.6s) var(--e-out-expo) var(--s-delay, 0s);
}
.cClipLeftoToRightBox.is-active .cClipLeftoToRightBox__item {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cClipLeftoToRight {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path var(--s-animation, 0.6s) var(--e-out-expo) var(--s-delay, 0s);
}
.cClipLeftoToRight.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cClipRightoToLeft {
  position: relative;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
  transition: clip-path var(--s-animation, 0.6s) var(--e-out-expo) var(--s-delay, 0s);
}
.cClipRightoToLeft.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cClipBottomToTOP {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path var(--s-animation, 0.6s) var(--e-out-expo);
}
.cClipBottomToTOP.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cScaleImage {
  overflow: hidden;
}
.cScaleImage img {
  transition: transform 1.5s var(--e-out-expo);
  transform: scale(1.05);
}
.cScaleImage.is-active img {
  transform: scale(1);
}

.lContainer {
  background-image: url("../images/common/repeat_background.jpg");
  background-size: 76rem 76rem;
}

.pContactFv {
  padding: 160rem 30rem 150rem;
}
.pContactFv__headline {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  width: 100%;
}
.pContactFv__headline_en {
  font-family: var(--f-en);
  font-size: 11rem;
  font-weight: var(--f-regular);
  line-height: 1.75;
  color: #4b4b4b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pContactFv__headline_jp {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.pContactFv__headline_jp_item1 {
  width: 178rem;
  height: 25rem;
}
.pContactFv__headline_jp_item2 {
  width: 149rem;
  height: 25rem;
}
.pContactFv__copy {
  margin-top: 35rem;
  font-size: 15rem;
  font-weight: var(--f-regular);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.pContactFv__link {
  position: relative;
  width: 330rem;
  padding-bottom: 23rem;
  margin: 45rem auto 0;
  font-size: 16rem;
  font-weight: var(--f-medium);
  letter-spacing: 0.04em;
}
.pContactFv__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #353535;
}
.pContactFv__link_upper, .pContactFv__link_bottom {
  left: 115rem;
}

@media screen and (min-width: 768px) {
  .lContainer {
    background-image: url("../images/common/repeat_background-pc.jpg");
    background-size: 152rem 152rem;
  }
  .pContactFv {
    padding: 218rem 180rem 196rem 142rem;
  }
  .pContactFv__headline {
    gap: 14rem;
  }
  .pContactFv__headline_en {
    margin-left: 3rem;
    font-size: 12rem;
  }
  .pContactFv__headline_jp {
    gap: 10rem;
  }
  .pContactFv__headline_jp_item1 {
    width: 258rem;
    height: 36rem;
  }
  .pContactFv__headline_jp_item2 {
    width: 214rem;
    height: 35rem;
  }
  .pContactFv__copy {
    margin: 63rem 0 0 -2rem;
    font-size: 16rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .pContactFv__link {
    width: 272rem;
    margin: 35rem 0 0;
    font-size: 18rem;
  }
  .pContactFv__link_upper, .pContactFv__link_bottom {
    left: 0;
  }
}