.blurIn {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(10px);
  transition: 1.5s;
  transition-property: opacity, transform, filter;
}
.blurIn.scrollIn {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.smooth-left {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth-left.scrollIn {
  clip-path: inset(0);
}

.fadeUp {
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition: 1.2s;
  transition-property: opacity, transform;
}
.fadeUp.scrollIn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.imgZoomOut {
  transition: 1.2s;
}
.imgZoomOut.scrollIn {
  transform: scale(0.8);
}

.fade-in-left {
  transform: translateX(40px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.scrollIn {
  transform: translateX(0px);
  opacity: 1;
}

.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s ease 1s;
}
.fade-in-right.scrollIn {
  transform: translateX(0px);
  opacity: 1;
}

.line {
  width: 1px;
  height: 4rem;
  margin: 0 auto;
  background: #93814b;
  transform: scaleY(0);
  transform-origin: top;
}
.line.scrollIn {
  animation: lineGrow 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes lineGrow {
  to {
    transform: scaleY(1);
  }
}
/* fade in */
.fade-in {
  opacity: 0;
  transition: all 1s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.popup-anime {
  opacity: 0;
}
.popup-anime.inview-on {
  animation: popup 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.poyopoyo.inview-on {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.smooth-left {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth-left.inview-on {
  clip-path: inset(0);
}

.main .ttl_wrap {
  text-align: center;
}
.main .ttl_wrap .en {
  font-size: 0.4rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .main .ttl_wrap .en {
    font-size: 0.28rem;
  }
}
.main .ttl_wrap .jp {
  font-size: 0.6rem;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .main .ttl_wrap .jp {
    font-size: 0.4rem;
    margin-top: 0.5rem;
  }
}
.main .ttl_wrap .text {
  margin-top: 0.3rem;
  line-height: 2;
}
.main .ttl_wrap .text p + p {
  margin-top: 0.2rem;
}
.main .sec--01 {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 {
    margin-top: 1.5rem;
  }
}
.main .sec--01 .ttl_wrap .jp {
  letter-spacing: 0.05rem;
}
.main .sec--01 .prepend .profile {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .profile {
    margin-top: 1.5rem;
    display: grid;
    padding: 0.5rem 0;
    gap: 0.5rem;
  }
}
.main .sec--01 .prepend .profile .inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .profile .inner {
    display: grid;
    grid-template-columns: 3rem auto;
    gap: 0.3rem;
  }
}
@media screen and (min-width: 751px) {
  .main .sec--01 .prepend .profile .inner .image {
    width: 4rem;
  }
}
.main .sec--01 .prepend .profile .inner .text {
  font-size: 0.24rem;
}
.main .sec--01 .prepend .profile .inner .text em {
  font-size: 0.4rem;
}
.main .sec--01 .prepend .profile .inner .logo {
  width: 3rem;
  background: #f4f3f1;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .profile .inner .logo {
    width: 2rem;
  }
}
.main .sec--01 .prepend .profile .inner .logo img {
  mix-blend-mode: multiply;
}
@media screen and (min-width: 751px) {
  .main .sec--01 .prepend .order1 {
    order: 1;
  }
  .main .sec--01 .prepend .order2 {
    order: 2;
  }
}
.main .sec--01 .body {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body {
    margin-top: 1.5rem;
  }
}
.main .sec--01 .body .ttl_wrap .text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body .ttl_wrap .text {
    text-align: left;
  }
}
.main .sec--01 .body .grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body .grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    gap: 0.1rem;
  }
}
.main .sec--01 .body .grid .image figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body .grid .image figcaption {
    bottom: 0.1rem;
    right: 0.1rem;
    font-size: 0.15rem;
  }
}
.main .sec--02 {
  margin-top: 3rem;
  background: #ebe7e5;
  padding-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}
.main .sec--02 .mainimage figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
.main .sec--02 .ttl_wrap {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .ttl_wrap {
    margin-top: 1.5rem;
  }
}
.main .sec--02 .ttl_wrap .text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .ttl_wrap .text {
    text-align: left;
  }
}
.main .sec--02 .grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    gap: 0.1rem;
  }
}
.main .sec--03 {
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 {
    margin-top: 2rem;
  }
}
.main .sec--03 .ttl_wrap .text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .ttl_wrap .text {
    text-align: left;
  }
}
.main .sec--03 .mainimage {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .mainimage {
    margin-top: 1.5rem;
  }
}
.main .sec--03 .mainimage figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
.main .sec--03 .image_wrap {
  width: 13rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .image_wrap {
    width: 100%;
  }
}
.main .sec--03 .image_wrap .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .image_wrap .grid {
    gap: 0.5rem;
  }
}
.main .sec--03 .image_wrap .text {
  margin-top: 0.3rem;
  font-size: 0.4rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .image_wrap .text {
    font-size: 0.32rem;
  }
}
.main .sec--03 .image_wrap .text small {
  font-size: 0.24rem;
}
@media screen and (max-width: 750px) {
  .main .sec--03 .image_wrap .text small {
    font-size: 0.2rem;
  }
}
.main .sec--04 {
  margin-top: 3rem;
  background: url(../imgs/13.webp) no-repeat center;
  background-size: cover;
  padding: 3rem 0;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec--04 {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}
@media screen and (min-width: 751px) {
  .main .sec--04 .wrap {
    width: 24rem;
  }
}
.main .sec--04 .catch {
  text-align: center;
  margin-top: 0.8rem;
}
.main .sec--04 .catch .ttl {
  font-size: 0.6rem;
}
@media screen and (max-width: 750px) {
  .main .sec--04 .catch .ttl {
    font-size: 0.4rem;
  }
}
.main .sec--04 .catch .text {
  margin-top: 0.3rem;
  line-height: 2;
}
.main .sec--04 .grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 8rem auto;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--04 .grid {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.main .sec--04 .grid .cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec--04 .grid .cont {
    gap: 0.5rem 0.2rem;
  }
}
.main .sec--04 .grid .cont .ttl {
  margin-top: 0.3rem;
  text-align: center;
  font-size: 0.24rem;
}
.main .sec--04 .note {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  color: #fff;
  font-size: 0.24rem;
}
@media screen and (max-width: 750px) {
  .main .sec--04 .note {
    bottom: 0.3rem;
    right: 0.3rem;
    font-size: 0.2rem;
  }
}/*# sourceMappingURL=unique.css.map */