/*============================================================
	SUB
============================================================*/
/*  mv
-------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .sub__mv {
    display: grid;
    grid-template-columns: auto 61.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .sub__mv {
    margin-left: 6.667vw;
  }
}
.sub__mv .logo__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sub__mv .logo__wrap {
    height: 8.385rem;
    align-items: flex-start;
  }
}
.sub__mv .logo__wrap a {
  width: 17.5rem;
}
@media only screen and (max-width: 767px) {
  .sub__mv .logo__wrap a {
    width: 10.769rem;
  }
}
.sub__mv figure {
  opacity: 0;
  transition: all ease-in-out 1s;
  position: relative;
}
.sub__mv figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f5f5f5;
  transition: all ease-in-out 1s;
  transform-origin: center right;
}
.sub__mv figure.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.sub__mv figure.visible::after {
  transform: scaleX(0);
}

.sub__ttl {
  padding-top: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .sub__ttl {
    padding-top: 3.846rem;
  }
}
.sub__ttl h1 {
  font-size: 5.625rem;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transition: all ease-in-out 1s;
  transform: translate(-50px, 0);
}
@media only screen and (max-width: 767px) {
  .sub__ttl h1 {
    font-size: 3.462rem;
  }
}
.sub__ttl h1 span {
  display: block;
  font-size: 1.875rem;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .sub__ttl h1 span {
    font-size: 1.154rem;
    margin-top: 1.154rem;
  }
}
.sub__ttl h1.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.sub__ttl .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .sub__ttl .container {
    flex-direction: column;
    padding-top: 3.846rem;
  }
}
.sub__ttl .container h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: all ease-in-out 2s;
  filter: blur(10px);
}
@media print, screen and (min-width: 768px) {
  .sub__ttl .container h2 {
    writing-mode: vertical-rl;
    font-size: 2.25rem;
    line-height: 2;
  }
}
@media only screen and (max-width: 767px) {
  .sub__ttl .container h2 {
    font-size: 1.846rem;
    text-align: right;
    line-height: 1.6;
    margin-bottom: 3.846rem;
  }
}
.sub__ttl .container h2.visible {
  opacity: 1;
  filter: blur(0);
}
.sub__ttl .container p {
  opacity: 0;
  transition: all ease-in-out 2s;
  filter: blur(10px);
}
@media print, screen and (min-width: 768px) {
  .sub__ttl .container p {
    width: 68%;
    padding-top: 6.25rem;
  }
}
.sub__ttl .container p.visible {
  opacity: 1;
  filter: blur(0);
}