@charset "UTF-8";
.appear.up .item {
  transform: translateY(15px);
}

.appear.down .item {
  transform: translateY(-15px);
}

.appear.left .item {
  transform: translateX(15px);
}

.appear.right .item {
  transform: translateX(-15px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 1.1s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 1.3s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.7s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.9s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 2.2s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 2.3s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2.6s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.9s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 3.1s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 3.3s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 3.4s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 3.7s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 3.8s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.9s;
}
.appear.inview .item:nth-child(40) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(41) {
  transition-delay: 4.1s;
}
.appear.inview .item:nth-child(42) {
  transition-delay: 4.2s;
}
.appear.inview .item:nth-child(43) {
  transition-delay: 4.3s;
}
.appear.inview .item:nth-child(44) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(45) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(46) {
  transition-delay: 4.6s;
}
.appear.inview .item:nth-child(47) {
  transition-delay: 4.7s;
}
.appear.inview .item:nth-child(48) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(49) {
  transition-delay: 4.9s;
}
.appear.inview .item:nth-child(50) {
  transition-delay: 5s;
}

.sweep .item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweep .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #939393;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-101%);
}
.sweep .item img, .sweep .item .text {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sweep .item.inview {
  opacity: 1;
  transform: translateX(0);
}
.sweep .item.inview::before {
  animation: sweep 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sweep .item.inview img, .sweep .item.inview .text {
  opacity: 1;
}
.sweep .item:nth-child(1).inview {
  transition-delay: 0s;
}
.sweep .item:nth-child(1).inview::before {
  animation-delay: 0s;
}
.sweep .item:nth-child(1).inview img, .sweep .item:nth-child(1).inview .text {
  transition-delay: 0.35s;
}
.sweep .item:nth-child(2).inview {
  transition-delay: 0.12s;
}
.sweep .item:nth-child(2).inview::before {
  animation-delay: 0.12s;
}
.sweep .item:nth-child(2).inview img, .sweep .item:nth-child(2).inview .text {
  transition-delay: 0.47s;
}
.sweep .item:nth-child(3).inview {
  transition-delay: 0.24s;
}
.sweep .item:nth-child(3).inview::before {
  animation-delay: 0.24s;
}
.sweep .item:nth-child(3).inview img, .sweep .item:nth-child(3).inview .text {
  transition-delay: 0.59s;
}
.sweep .item:nth-child(4).inview {
  transition-delay: 0.36s;
}
.sweep .item:nth-child(4).inview::before {
  animation-delay: 0.36s;
}
.sweep .item:nth-child(4).inview img, .sweep .item:nth-child(4).inview .text {
  transition-delay: 0.71s;
}
.sweep .item:nth-child(5).inview {
  transition-delay: 0.48s;
}
.sweep .item:nth-child(5).inview::before {
  animation-delay: 0.48s;
}
.sweep .item:nth-child(5).inview img, .sweep .item:nth-child(5).inview .text {
  transition-delay: 0.83s;
}
.sweep .item:nth-child(6).inview {
  transition-delay: 0.6s;
}
.sweep .item:nth-child(6).inview::before {
  animation-delay: 0.6s;
}
.sweep .item:nth-child(6).inview img, .sweep .item:nth-child(6).inview .text {
  transition-delay: 0.95s;
}
.sweep .item:nth-child(7).inview {
  transition-delay: 0.72s;
}
.sweep .item:nth-child(7).inview::before {
  animation-delay: 0.72s;
}
.sweep .item:nth-child(7).inview img, .sweep .item:nth-child(7).inview .text {
  transition-delay: 1.07s;
}
.sweep .item:nth-child(8).inview {
  transition-delay: 0.84s;
}
.sweep .item:nth-child(8).inview::before {
  animation-delay: 0.84s;
}
.sweep .item:nth-child(8).inview img, .sweep .item:nth-child(8).inview .text {
  transition-delay: 1.19s;
}
.sweep .item:nth-child(9).inview {
  transition-delay: 0.96s;
}
.sweep .item:nth-child(9).inview::before {
  animation-delay: 0.96s;
}
.sweep .item:nth-child(9).inview img, .sweep .item:nth-child(9).inview .text {
  transition-delay: 1.31s;
}
.sweep .item:nth-child(10).inview {
  transition-delay: 1.08s;
}
.sweep .item:nth-child(10).inview::before {
  animation-delay: 1.08s;
}
.sweep .item:nth-child(10).inview img, .sweep .item:nth-child(10).inview .text {
  transition-delay: 1.43s;
}
.sweep .item:nth-child(11).inview {
  transition-delay: 1.2s;
}
.sweep .item:nth-child(11).inview::before {
  animation-delay: 1.2s;
}
.sweep .item:nth-child(11).inview img, .sweep .item:nth-child(11).inview .text {
  transition-delay: 1.55s;
}
.sweep .item:nth-child(12).inview {
  transition-delay: 1.32s;
}
.sweep .item:nth-child(12).inview::before {
  animation-delay: 1.32s;
}
.sweep .item:nth-child(12).inview img, .sweep .item:nth-child(12).inview .text {
  transition-delay: 1.67s;
}
.sweep .item:nth-child(13).inview {
  transition-delay: 1.44s;
}
.sweep .item:nth-child(13).inview::before {
  animation-delay: 1.44s;
}
.sweep .item:nth-child(13).inview img, .sweep .item:nth-child(13).inview .text {
  transition-delay: 1.79s;
}
.sweep .item:nth-child(14).inview {
  transition-delay: 1.56s;
}
.sweep .item:nth-child(14).inview::before {
  animation-delay: 1.56s;
}
.sweep .item:nth-child(14).inview img, .sweep .item:nth-child(14).inview .text {
  transition-delay: 1.91s;
}
.sweep .item:nth-child(15).inview {
  transition-delay: 1.68s;
}
.sweep .item:nth-child(15).inview::before {
  animation-delay: 1.68s;
}
.sweep .item:nth-child(15).inview img, .sweep .item:nth-child(15).inview .text {
  transition-delay: 2.03s;
}
.sweep .item:nth-child(16).inview {
  transition-delay: 1.8s;
}
.sweep .item:nth-child(16).inview::before {
  animation-delay: 1.8s;
}
.sweep .item:nth-child(16).inview img, .sweep .item:nth-child(16).inview .text {
  transition-delay: 2.15s;
}
.sweep .item:nth-child(17).inview {
  transition-delay: 1.92s;
}
.sweep .item:nth-child(17).inview::before {
  animation-delay: 1.92s;
}
.sweep .item:nth-child(17).inview img, .sweep .item:nth-child(17).inview .text {
  transition-delay: 2.27s;
}
.sweep .item:nth-child(18).inview {
  transition-delay: 2.04s;
}
.sweep .item:nth-child(18).inview::before {
  animation-delay: 2.04s;
}
.sweep .item:nth-child(18).inview img, .sweep .item:nth-child(18).inview .text {
  transition-delay: 2.39s;
}
.sweep .item:nth-child(19).inview {
  transition-delay: 2.16s;
}
.sweep .item:nth-child(19).inview::before {
  animation-delay: 2.16s;
}
.sweep .item:nth-child(19).inview img, .sweep .item:nth-child(19).inview .text {
  transition-delay: 2.51s;
}
.sweep .item:nth-child(20).inview {
  transition-delay: 2.28s;
}
.sweep .item:nth-child(20).inview::before {
  animation-delay: 2.28s;
}
.sweep .item:nth-child(20).inview img, .sweep .item:nth-child(20).inview .text {
  transition-delay: 2.63s;
}
.sweep .item:nth-child(21).inview {
  transition-delay: 2.4s;
}
.sweep .item:nth-child(21).inview::before {
  animation-delay: 2.4s;
}
.sweep .item:nth-child(21).inview img, .sweep .item:nth-child(21).inview .text {
  transition-delay: 2.75s;
}
.sweep .item:nth-child(22).inview {
  transition-delay: 2.52s;
}
.sweep .item:nth-child(22).inview::before {
  animation-delay: 2.52s;
}
.sweep .item:nth-child(22).inview img, .sweep .item:nth-child(22).inview .text {
  transition-delay: 2.87s;
}
.sweep .item:nth-child(23).inview {
  transition-delay: 2.64s;
}
.sweep .item:nth-child(23).inview::before {
  animation-delay: 2.64s;
}
.sweep .item:nth-child(23).inview img, .sweep .item:nth-child(23).inview .text {
  transition-delay: 2.99s;
}
.sweep .item:nth-child(24).inview {
  transition-delay: 2.76s;
}
.sweep .item:nth-child(24).inview::before {
  animation-delay: 2.76s;
}
.sweep .item:nth-child(24).inview img, .sweep .item:nth-child(24).inview .text {
  transition-delay: 3.11s;
}
.sweep .item:nth-child(25).inview {
  transition-delay: 2.88s;
}
.sweep .item:nth-child(25).inview::before {
  animation-delay: 2.88s;
}
.sweep .item:nth-child(25).inview img, .sweep .item:nth-child(25).inview .text {
  transition-delay: 3.23s;
}
.sweep .item:nth-child(26).inview {
  transition-delay: 3s;
}
.sweep .item:nth-child(26).inview::before {
  animation-delay: 3s;
}
.sweep .item:nth-child(26).inview img, .sweep .item:nth-child(26).inview .text {
  transition-delay: 3.35s;
}
.sweep .item:nth-child(27).inview {
  transition-delay: 3.12s;
}
.sweep .item:nth-child(27).inview::before {
  animation-delay: 3.12s;
}
.sweep .item:nth-child(27).inview img, .sweep .item:nth-child(27).inview .text {
  transition-delay: 3.47s;
}
.sweep .item:nth-child(28).inview {
  transition-delay: 3.24s;
}
.sweep .item:nth-child(28).inview::before {
  animation-delay: 3.24s;
}
.sweep .item:nth-child(28).inview img, .sweep .item:nth-child(28).inview .text {
  transition-delay: 3.59s;
}
.sweep .item:nth-child(29).inview {
  transition-delay: 3.36s;
}
.sweep .item:nth-child(29).inview::before {
  animation-delay: 3.36s;
}
.sweep .item:nth-child(29).inview img, .sweep .item:nth-child(29).inview .text {
  transition-delay: 3.71s;
}
.sweep .item:nth-child(30).inview {
  transition-delay: 3.48s;
}
.sweep .item:nth-child(30).inview::before {
  animation-delay: 3.48s;
}
.sweep .item:nth-child(30).inview img, .sweep .item:nth-child(30).inview .text {
  transition-delay: 3.83s;
}
.sweep .item:nth-child(31).inview {
  transition-delay: 3.6s;
}
.sweep .item:nth-child(31).inview::before {
  animation-delay: 3.6s;
}
.sweep .item:nth-child(31).inview img, .sweep .item:nth-child(31).inview .text {
  transition-delay: 3.95s;
}
.sweep .item:nth-child(32).inview {
  transition-delay: 3.72s;
}
.sweep .item:nth-child(32).inview::before {
  animation-delay: 3.72s;
}
.sweep .item:nth-child(32).inview img, .sweep .item:nth-child(32).inview .text {
  transition-delay: 4.07s;
}
.sweep .item:nth-child(33).inview {
  transition-delay: 3.84s;
}
.sweep .item:nth-child(33).inview::before {
  animation-delay: 3.84s;
}
.sweep .item:nth-child(33).inview img, .sweep .item:nth-child(33).inview .text {
  transition-delay: 4.19s;
}
.sweep .item:nth-child(34).inview {
  transition-delay: 3.96s;
}
.sweep .item:nth-child(34).inview::before {
  animation-delay: 3.96s;
}
.sweep .item:nth-child(34).inview img, .sweep .item:nth-child(34).inview .text {
  transition-delay: 4.31s;
}
.sweep .item:nth-child(35).inview {
  transition-delay: 4.08s;
}
.sweep .item:nth-child(35).inview::before {
  animation-delay: 4.08s;
}
.sweep .item:nth-child(35).inview img, .sweep .item:nth-child(35).inview .text {
  transition-delay: 4.43s;
}
.sweep .item:nth-child(36).inview {
  transition-delay: 4.2s;
}
.sweep .item:nth-child(36).inview::before {
  animation-delay: 4.2s;
}
.sweep .item:nth-child(36).inview img, .sweep .item:nth-child(36).inview .text {
  transition-delay: 4.55s;
}
.sweep .item:nth-child(37).inview {
  transition-delay: 4.32s;
}
.sweep .item:nth-child(37).inview::before {
  animation-delay: 4.32s;
}
.sweep .item:nth-child(37).inview img, .sweep .item:nth-child(37).inview .text {
  transition-delay: 4.67s;
}
.sweep .item:nth-child(38).inview {
  transition-delay: 4.44s;
}
.sweep .item:nth-child(38).inview::before {
  animation-delay: 4.44s;
}
.sweep .item:nth-child(38).inview img, .sweep .item:nth-child(38).inview .text {
  transition-delay: 4.79s;
}
.sweep .item:nth-child(39).inview {
  transition-delay: 4.56s;
}
.sweep .item:nth-child(39).inview::before {
  animation-delay: 4.56s;
}
.sweep .item:nth-child(39).inview img, .sweep .item:nth-child(39).inview .text {
  transition-delay: 4.91s;
}
.sweep .item:nth-child(40).inview {
  transition-delay: 4.68s;
}
.sweep .item:nth-child(40).inview::before {
  animation-delay: 4.68s;
}
.sweep .item:nth-child(40).inview img, .sweep .item:nth-child(40).inview .text {
  transition-delay: 5.03s;
}
.sweep .item:nth-child(41).inview {
  transition-delay: 4.8s;
}
.sweep .item:nth-child(41).inview::before {
  animation-delay: 4.8s;
}
.sweep .item:nth-child(41).inview img, .sweep .item:nth-child(41).inview .text {
  transition-delay: 5.15s;
}
.sweep .item:nth-child(42).inview {
  transition-delay: 4.92s;
}
.sweep .item:nth-child(42).inview::before {
  animation-delay: 4.92s;
}
.sweep .item:nth-child(42).inview img, .sweep .item:nth-child(42).inview .text {
  transition-delay: 5.27s;
}
.sweep .item:nth-child(43).inview {
  transition-delay: 5.04s;
}
.sweep .item:nth-child(43).inview::before {
  animation-delay: 5.04s;
}
.sweep .item:nth-child(43).inview img, .sweep .item:nth-child(43).inview .text {
  transition-delay: 5.39s;
}
.sweep .item:nth-child(44).inview {
  transition-delay: 5.16s;
}
.sweep .item:nth-child(44).inview::before {
  animation-delay: 5.16s;
}
.sweep .item:nth-child(44).inview img, .sweep .item:nth-child(44).inview .text {
  transition-delay: 5.51s;
}
.sweep .item:nth-child(45).inview {
  transition-delay: 5.28s;
}
.sweep .item:nth-child(45).inview::before {
  animation-delay: 5.28s;
}
.sweep .item:nth-child(45).inview img, .sweep .item:nth-child(45).inview .text {
  transition-delay: 5.63s;
}
.sweep .item:nth-child(46).inview {
  transition-delay: 5.4s;
}
.sweep .item:nth-child(46).inview::before {
  animation-delay: 5.4s;
}
.sweep .item:nth-child(46).inview img, .sweep .item:nth-child(46).inview .text {
  transition-delay: 5.75s;
}
.sweep .item:nth-child(47).inview {
  transition-delay: 5.52s;
}
.sweep .item:nth-child(47).inview::before {
  animation-delay: 5.52s;
}
.sweep .item:nth-child(47).inview img, .sweep .item:nth-child(47).inview .text {
  transition-delay: 5.87s;
}
.sweep .item:nth-child(48).inview {
  transition-delay: 5.64s;
}
.sweep .item:nth-child(48).inview::before {
  animation-delay: 5.64s;
}
.sweep .item:nth-child(48).inview img, .sweep .item:nth-child(48).inview .text {
  transition-delay: 5.99s;
}
.sweep .item:nth-child(49).inview {
  transition-delay: 5.76s;
}
.sweep .item:nth-child(49).inview::before {
  animation-delay: 5.76s;
}
.sweep .item:nth-child(49).inview img, .sweep .item:nth-child(49).inview .text {
  transition-delay: 6.11s;
}
.sweep .item:nth-child(50).inview {
  transition-delay: 5.88s;
}
.sweep .item:nth-child(50).inview::before {
  animation-delay: 5.88s;
}
.sweep .item:nth-child(50).inview img, .sweep .item:nth-child(50).inview .text {
  transition-delay: 6.23s;
}

@keyframes sweep {
  0% {
    transform: translateX(-101%);
  }
  40% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(101%);
    opacity: 0;
  }
}
.animText {
  overflow: hidden;
}
.animText span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) scale(0.7);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.animText.inview span {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.animText.inview span:nth-child(1) {
  transition-delay: 0s;
}
.animText.inview span:nth-child(2) {
  transition-delay: 0.06s;
}
.animText.inview span:nth-child(3) {
  transition-delay: 0.12s;
}
.animText.inview span:nth-child(4) {
  transition-delay: 0.18s;
}
.animText.inview span:nth-child(5) {
  transition-delay: 0.24s;
}
.animText.inview span:nth-child(6) {
  transition-delay: 0.3s;
}
.animText.inview span:nth-child(7) {
  transition-delay: 0.36s;
}
.animText.inview span:nth-child(8) {
  transition-delay: 0.42s;
}
.animText.inview span:nth-child(9) {
  transition-delay: 0.48s;
}
.animText.inview span:nth-child(10) {
  transition-delay: 0.54s;
}
.animText.inview span:nth-child(11) {
  transition-delay: 0.6s;
}
.animText.inview span:nth-child(12) {
  transition-delay: 0.66s;
}
.animText.inview span:nth-child(13) {
  transition-delay: 0.72s;
}
.animText.inview span:nth-child(14) {
  transition-delay: 0.78s;
}
.animText.inview span:nth-child(15) {
  transition-delay: 0.84s;
}
.animText.inview span:nth-child(16) {
  transition-delay: 0.9s;
}
.animText.inview span:nth-child(17) {
  transition-delay: 0.96s;
}
.animText.inview span:nth-child(18) {
  transition-delay: 1.02s;
}
.animText.inview span:nth-child(19) {
  transition-delay: 1.08s;
}
.animText.inview span:nth-child(20) {
  transition-delay: 1.14s;
}
.animText.inview span:nth-child(21) {
  transition-delay: 1.2s;
}
.animText.inview span:nth-child(22) {
  transition-delay: 1.26s;
}
.animText.inview span:nth-child(23) {
  transition-delay: 1.32s;
}
.animText.inview span:nth-child(24) {
  transition-delay: 1.38s;
}
.animText.inview span:nth-child(25) {
  transition-delay: 1.44s;
}
.animText.inview span:nth-child(26) {
  transition-delay: 1.5s;
}
.animText.inview span:nth-child(27) {
  transition-delay: 1.56s;
}
.animText.inview span:nth-child(28) {
  transition-delay: 1.62s;
}
.animText.inview span:nth-child(29) {
  transition-delay: 1.68s;
}
.animText.inview span:nth-child(30) {
  transition-delay: 1.74s;
}
.animText.inview span:nth-child(31) {
  transition-delay: 1.8s;
}
.animText.inview span:nth-child(32) {
  transition-delay: 1.86s;
}
.animText.inview span:nth-child(33) {
  transition-delay: 1.92s;
}
.animText.inview span:nth-child(34) {
  transition-delay: 1.98s;
}
.animText.inview span:nth-child(35) {
  transition-delay: 2.04s;
}
.animText.inview span:nth-child(36) {
  transition-delay: 2.1s;
}
.animText.inview span:nth-child(37) {
  transition-delay: 2.16s;
}
.animText.inview span:nth-child(38) {
  transition-delay: 2.22s;
}
.animText.inview span:nth-child(39) {
  transition-delay: 2.28s;
}
.animText.inview span:nth-child(40) {
  transition-delay: 2.34s;
}
.animText.inview span:nth-child(41) {
  transition-delay: 2.4s;
}
.animText.inview span:nth-child(42) {
  transition-delay: 2.46s;
}
.animText.inview span:nth-child(43) {
  transition-delay: 2.52s;
}
.animText.inview span:nth-child(44) {
  transition-delay: 2.58s;
}
.animText.inview span:nth-child(45) {
  transition-delay: 2.64s;
}
.animText.inview span:nth-child(46) {
  transition-delay: 2.7s;
}
.animText.inview span:nth-child(47) {
  transition-delay: 2.76s;
}
.animText.inview span:nth-child(48) {
  transition-delay: 2.82s;
}
.animText.inview span:nth-child(49) {
  transition-delay: 2.88s;
}
.animText.inview span:nth-child(50) {
  transition-delay: 2.94s;
}
.animText.inview span:nth-child(51) {
  transition-delay: 3s;
}
.animText.inview span:nth-child(52) {
  transition-delay: 3.06s;
}
.animText.inview span:nth-child(53) {
  transition-delay: 3.12s;
}
.animText.inview span:nth-child(54) {
  transition-delay: 3.18s;
}
.animText.inview span:nth-child(55) {
  transition-delay: 3.24s;
}
.animText.inview span:nth-child(56) {
  transition-delay: 3.3s;
}
.animText.inview span:nth-child(57) {
  transition-delay: 3.36s;
}
.animText.inview span:nth-child(58) {
  transition-delay: 3.42s;
}
.animText.inview span:nth-child(59) {
  transition-delay: 3.48s;
}
.animText.inview span:nth-child(60) {
  transition-delay: 3.54s;
}

.pps_wrapper .more-btn {
  text-align: center;
}
.pps_wrapper .more-btn._orange a {
  background: #EB8C00;
}
.pps_wrapper .more-btn._black a {
  background: #1F1F1F;
}
.pps_wrapper .more-btn._black a:hover {
  background: #474747;
  opacity: 1;
}
.pps_wrapper .more-btn a {
  position: relative;
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  position: relative;
  display: inline-block;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 50px;
  padding: 1.25rem 1.5em;
  width: 280px;
  max-width: 100%;
  overflow: hidden;
  background: white;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pps_wrapper .more-btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .pps_wrapper .more-btn a {
    max-width: 65%;
    padding: 1.25rem 2em 1.25rem 1.5em;
  }
}
.pps_wrapper .more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  width: 1.5rem;
  aspect-ratio: 1/1;
  right: 1.75rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.pps_wrapper .list-btn {
  text-align: center;
}
.pps_wrapper .list-btn a {
  font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
  letter-spacing: 0.2rem;
  position: relative;
  display: inline-block;
  width: 400px;
  max-width: 100%;
  padding: 2.25rem;
  border-radius: 5px;
  color: white;
  background: linear-gradient(115deg, rgb(79, 79, 232) 20%, rgb(235, 140, 0) 85%);
  background-size: 130% 130%;
  background-position: 100% 50%;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pps_wrapper .list-btn a:hover {
  background-position: 0% 0%;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.pps_wrapper .list-btn a:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.pps_wrapper .list-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_white2.svg) no-repeat center/contain;
  width: 2em;
  aspect-ratio: 54/7;
  right: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .pps_wrapper .list-btn a::before {
    right: 2rem;
  }
}

.animate-text .char {
  opacity: 0;
}

.animate-text.inview .char {
  animation: letter-glow 0.7s 0s ease both, kf-blur-chars 2s 0s ease both;
}
.animate-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-blur-chars {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
.fadeUp-text .char {
  opacity: 0;
}

.fadeUp-text.inview .char {
  animation-name: kf-fadeUp-chars;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.fadeUp-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.fadeUp-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.fadeUp-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.fadeUp-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.fadeUp-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.fadeUp-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.fadeUp-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.fadeUp-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.fadeUp-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.fadeUp-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.fadeUp-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.fadeUp-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.fadeUp-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.fadeUp-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.fadeUp-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.fadeUp-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.fadeUp-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.fadeUp-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.fadeUp-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.fadeUp-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.fadeUp-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.fadeUp-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.fadeUp-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.fadeUp-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.fadeUp-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.fadeUp-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.fadeUp-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.fadeUp-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.fadeUp-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.fadeUp-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-fadeUp-chars {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#contents {
  width: 100%;
}
@media (max-width: 767px) {
  #contents {
    margin-inline: 0;
  }
}

.pps_wrapper * {
  margin: 0;
  padding: 0;
  min-height: 0vw;
}

.pps_wrapper {
  font-size: 62.5%;
}

.pps_inner {
  height: 100%;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #1F1F1F;
  background: #FFFAF4;
  overflow-x: hidden;
}

.pps_wrapper img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 960px) {
  .pps_wrapper img {
    image-rendering: auto;
  }
}

@media screen and (max-width: 960px) {
  .pps_wrapper .pc {
    display: none;
  }
}

.pps_wrapper .sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .pps_wrapper .sp {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
.lg-inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 40px);
}

.sm-inner {
  width: min(100%, 720px);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 40px);
}

.section_content {
  margin: 120px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 80px 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
  }
}

.breadcrumb {
  display: none;
}

/** 左側画像のレイアウト **/
@media screen and (max-width: 960px) {
  .layout-a {
    flex-direction: column-reverse;
  }
}
.layout-a .l_box {
  margin: 0 0 0 calc(50% - 50vw);
}
.layout-a .l_box img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .layout-a .l_box {
    margin-top: 3.5rem;
  }
}
.layout-a .r_box {
  width: 100%;
  padding: 0 0 0 5vw;
}
@media screen and (max-width: 960px) {
  .layout-a .r_box {
    padding: 0;
  }
}

/** 右側画像のレイアウト **/
.layout-b .l_box {
  width: 100%;
  padding: 0 5vw 0 0;
}
@media screen and (max-width: 960px) {
  .layout-b .l_box {
    padding: 0;
  }
}
.layout-b .r_box {
  margin: 0 calc(50% - 50vw) 0 0;
}
.layout-b .r_box img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .layout-b .r_box {
    margin-top: 3.5rem;
  }
}

.anchor {
  display: block;
  padding-top: 0;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.pps-hero {
  background: url(../images/hero_bg.webp) no-repeat center center/cover;
  height: calc(100vh - 157px);
  min-height: 750px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
@media screen and (max-width: 1440px) {
  .pps-hero {
    height: calc(100vh - 53px);
    min-height: 600px;
  }
}
@media screen and (max-width: 960px) {
  .pps-hero {
    min-height: auto;
  }
}
@media screen and (max-width: 600px) {
  .pps-hero {
    height: calc(140vw - 157px);
    height: calc(140vw - 157px);
  }
}

.pps-hero__title {
  display: inline-block;
  font-size: clamp(2.6rem, 3vw + 0.8rem, 5rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: #EB8C00;
  border-bottom: 3px solid #EB8C00;
  margin-block: 0 min(5rem, 3vw);
}
@media screen and (max-width: 960px) {
  .pps-hero__title {
    font-size: min(4rem, 7vw);
    margin-block: 0 min(4rem, 8vw);
  }
}

.pps-hero__subtitle {
  display: block;
}
.pps-hero__subtitle span {
  font-size: clamp(2.4rem, 2.5vw + 1.32rem, 4.6rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: #67503E;
  background: white;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  position: relative;
  margin-block: 0 1.5rem;
}
@media screen and (max-width: 960px) {
  .pps-hero__subtitle span {
    font-size: min(3.6rem, 6.5vw);
    padding-inline: 1rem;
    margin-block: 0 1.25rem;
  }
}
.pps-hero__subtitle span::before {
  position: absolute;
  content: "";
  bottom: -21px;
  left: 0;
  right: 0;
  margin: auto;
  width: 26px;
  aspect-ratio: 26/21;
  background: url(../images/speech_bubble_btm.svg) no-repeat center center/contain;
}
@media screen and (max-width: 960px) {
  .pps-hero__subtitle span::before {
    bottom: -12px;
    width: 15px;
  }
}

.pps-hero__main {
  margin: 0;
  font-size: clamp(3.6rem, 4vw + 1.54rem, 8.6rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .pps-hero__main {
    font-size: min(6rem, 9vw);
    line-height: 1.5;
  }
}
.pps-hero__main span {
  font-size: clamp(5rem, 8vw + 0.6rem, 14rem);
  line-height: 1.2;
  color: #EB8C00;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 960px) {
  .pps-hero__main span {
    font-size: min(10rem, 15vw);
    line-height: 1.5;
  }
}

.hes {
  overflow: hidden;
}
.hes .subat {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .hes .subat {
    text-align: left;
  }
}

.hes__title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
}
.hes__title span {
  background: linear-gradient(115deg, rgb(79, 79, 232) 10%, rgb(235, 140, 0) 100%);
  font-size: clamp(2.6rem, 1.908rem + 3.08vw, 5.6rem);
  font-weight: 900;
  color: white;
  display: inline-block;
  padding: 0.75rem;
  margin-block: 0 2rem;
}
@media screen and (max-width: 960px) {
  .hes__title span {
    margin-block: 0 1.5rem;
  }
}

.hes__subtitle {
  font-size: clamp(2.8rem, 1.692rem + 4.92vw, 7.6rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.hes__text {
  font-size: clamp(1.6rem, 1.462rem + 0.62vw, 2.2rem);
  font-weight: 600;
  line-height: 2;
  text-align: center;
  margin-block: 2rem 4rem;
}
@media screen and (max-width: 960px) {
  .hes__text {
    margin-block: 2rem 3rem;
  }
}

.hes__block {
  position: relative;
  z-index: 0;
  text-align: center;
}

.hes__en-text {
  position: absolute;
  z-index: -100;
  top: max(-5rem, -3vw);
  left: 50%;
  transform: translate(-50%, 0);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4rem, -0.846rem + 21.54vw, 25rem);
  font-weight: 700;
  color: #F8EDDF;
  text-align: center;
  text-wrap: nowrap;
  line-height: 0.9;
}
@media screen and (max-width: 960px) {
  .hes__en-text {
    left: 40%;
  }
}
.hes__en-text span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .hes__img {
    display: inline-block;
    max-width: 70%;
    margin-inline: auto;
  }
}

.hes__ac__block {
  margin-block: 5rem 0;
  text-align: center;
}

.hes__ac__img {
  margin-block: 2rem 4rem;
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .hes__ac__img {
    margin-block: 2rem;
  }
}

.hes__ac__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .hes__ac__list {
    width: 100%;
    left: 0;
    transform: none;
    flex-direction: column;
  }
  .hes__ac__list .hes__ac__list__item {
    position: relative;
  }
  .hes__ac__list .hes__ac__list__item._02 {
    width: 90%;
    margin: 2rem auto 2.5rem;
  }
}

.about__catchWrap {
  position: relative;
  z-index: 0;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .about__catchWrap {
    height: min(450px, 100vw);
  }
}

.about__catch__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about__catch__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/fixed_bg.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.about__catch__bg::before {
  position: absolute;
  content: "";
  z-index: 0;
  background: #939393;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.about__catch {
  position: relative;
  z-index: 1;
  font-size: clamp(2.4rem, 1.8rem + 2.67vw, 5rem);
  font-family: "Montserrat", sans-serif;
  color: white;
  margin: 0;
}

.about__title {
  position: relative;
  z-index: 0;
  font-size: clamp(2.4rem, 1.985rem + 1.85vw, 4.2rem);
  line-height: 1.4;
  font-weight: 800;
  margin-block: 6rem 2.5rem;
}
.about__title::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 160px;
  aspect-ratio: 1/1;
  top: -60px;
  background: linear-gradient(145deg, rgb(79, 79, 232) 0%, rgb(235, 140, 0) 50%);
}
@media screen and (max-width: 960px) {
  .about__title::before {
    width: 100px;
    top: -40px;
  }
}

.about__text {
  position: relative;
  z-index: 0;
  font-size: clamp(1.6rem, 1.508rem + 0.41vw, 2rem);
}
.about__text img {
  margin-top: 1.5rem;
}

.about__item {
  margin-block: 15rem;
}
@media screen and (max-width: 960px) {
  .about__item {
    margin-block: 4rem;
  }
}

.about .layout-b .about__title::before {
  left: -60px;
}
@media screen and (max-width: 960px) {
  .about .layout-b .about__title::before {
    left: -10px;
  }
}
.about .layout-a .about__title::before {
  right: -60px;
}
@media screen and (max-width: 960px) {
  .about .layout-a .about__title::before {
    right: -10px;
  }
}

.youtube_wrap {
  padding-top: 1rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
}
.youtube iframe {
  max-width: 90%;
}
@media screen and (max-width: 960px) {
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

.global__title {
  font-size: clamp(2.6rem, 2.415rem + 0.82vw, 3.4rem);
  text-align: center;
  margin-block: 0 4rem;
}
@media screen and (max-width: 960px) {
  .global__title {
    margin-block: 0 3rem;
  }
}

.product-list {
  display: flex;
  justify-content: center;
  margin-inline: -50px 0;
  margin-block: 0 100px;
}
@media screen and (max-width: 1440px) {
  .product-list {
    margin-inline: -30px 0;
  }
}
@media screen and (max-width: 960px) {
  .product-list {
    flex-direction: column;
    margin-block: 0 30px;
    margin-inline: 0;
  }
}
.product-list li {
  width: calc(50% - 50px);
  margin-inline: 50px 0;
  padding: 6rem 4rem;
  background: white;
  border: 1px solid #EB8C00;
  border-radius: 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .product-list li {
    width: calc(50% - 30px);
    margin-inline: 30px 0;
    padding: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .product-list li {
    width: 100%;
    margin-inline: 0;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
  }
}

.product-list__watt {
  position: absolute;
  left: 20px;
  top: 20px;
  width: min(98px, 8vw);
}
.product-list__watt img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .product-list__watt {
    left: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .product-list__watt {
    top: 3vw;
    left: 3vw;
    width: 17vw;
  }
}

.product-list__img {
  width: min(320px, 30vw);
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .product-list__img {
    width: 55vw;
  }
}

.product-list__title {
  font-size: clamp(2rem, 1.815rem + 0.82vw, 2.8rem);
  margin-block: 3rem 2rem;
}
.product-list__title span {
  display: block;
  font-size: clamp(3rem, 2.908rem + 0.41vw, 3.4rem);
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 800;
  color: #EB8C00;
  margin-block: 1.5rem 0;
}

.product-list__text {
  font-size: clamp(1.6rem, 1.462rem + 0.62vw, 2.2rem);
  margin-bottom: 2rem;
}

.bosai {
  overflow: hidden;
  background: #FFBE00;
  padding-block: 60px;
}
@media screen and (max-width: 960px) {
  .bosai {
    padding-block: 40px 30px;
  }
}
.bosai .lg-inner {
  position: relative;
  z-index: 0;
}

.bosai__title {
  max-width: 80%;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .bosai__title {
    max-width: 65%;
    margin-bottom: 3rem;
  }
  .bosai__title img {
    width: 100%;
  }
}

.bosai-list__item {
  position: absolute;
  z-index: -1;
  width: min(190px, 15vw);
}
@media screen and (max-width: 960px) {
  .bosai-list__item {
    width: min(180px, 30vw);
  }
}
.bosai-list__item._01 {
  top: -10%;
  left: 10%;
}
.bosai-list__item._02 {
  top: 55%;
  transform: translateY(-50%);
  left: max(-5%, -1vw);
}
@media screen and (max-width: 960px) {
  .bosai-list__item._02 {
    top: auto;
    bottom: 0;
    left: -5vw;
  }
}
.bosai-list__item._03 {
  bottom: -20%;
  left: 10%;
}
@media screen and (max-width: 960px) {
  .bosai-list__item._03 {
    left: -8vw;
    top: -2vw;
    width: min(250px, 35vw);
    z-index: -2;
  }
}
.bosai-list__item._04 {
  top: -10%;
  right: 10%;
}
.bosai-list__item._05 {
  top: 50%;
  transform: translateY(-50%);
  right: -3vw;
}
@media screen and (max-width: 960px) {
  .bosai-list__item._05 {
    top: auto;
    bottom: -3vw;
    right: -5vw;
  }
}
.bosai-list__item._06 {
  bottom: -10%;
  right: 10%;
}
@media screen and (max-width: 960px) {
  .bosai-list__item._06 {
    top: 3vw;
    right: -5%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 250px;
  height: 100vh;
  height: 100dvh;
  padding: 3rem 1.5rem 6rem;
  background: white;
  border-right: #939393 solid 1px;
}
.header .head-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.header .logo {
  line-height: 1;
  margin: 0 auto;
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  display: block;
  width: 180px;
  height: auto;
}
.header .toggle {
  display: none;
}
.header .g-nav {
  margin-top: auto;
}
.header .g-nav-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header .g-nav-list .nav-main-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12rem;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .g-nav-list .nav-main-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #1F1F1F;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .g-nav-list .nav-main-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 960px) {
  .header {
    width: 100%;
    height: 70px;
    padding: 0 16px;
    border-right: none;
    background: transparent;
  }
  .header .head-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
  .header .logo {
    display: none;
  }
  .header .toggle {
    display: inline-flex;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 16px;
    margin: -16px;
    touch-action: manipulation;
  }
  .header .toggle .openbtn-area {
    width: 32px;
    height: 12px;
    position: relative;
    z-index: 9999;
    transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .header .toggle .openbtn-area span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1F1F1F;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 240ms ease;
    will-change: transform;
  }
  .header .toggle .openbtn-area span:nth-child(1) {
    top: 0;
  }
  .header .toggle .openbtn-area span:nth-child(2) {
    bottom: 0;
  }
  .header .toggle:active .openbtn-area {
    transform: scale(0.92);
  }
  .header .toggle.active .openbtn-area span {
    background: white;
  }
  .header .toggle.active .openbtn-area span:nth-child(1) {
    transform: translateY(6px) rotate(35deg);
  }
  .header .toggle.active .openbtn-area span:nth-child(2) {
    transform: translateY(-5px) rotate(-35deg);
  }
  .header .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 7rem 3rem 3rem;
    background: #1F1F1F;
  }
  .header .g-nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
  .header .g-nav-list ul {
    gap: 20px;
  }
  .header .g-nav-list .nav-main-link {
    color: white;
    font-size: 1.6rem;
  }
}

.footer {
  background: white;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.logo a {
  display: inline-block;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo a:hover {
  opacity: 0.6;
}

.backtotop.show {
  opacity: 1;
}

.backtotop {
  opacity: 0;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 960px) {
  .backtotop {
    display: none;
  }
}
.backtotop a {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  padding: 17px 15px 15px;
  z-index: 999;
  border-radius: 50%;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  width: 15px;
  aspect-ratio: 15/10;
  transform: rotate(-90deg);
}
.backtotop a:hover {
  background: rgba(31, 31, 31, 0.6);
}

.copy {
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
  margin: 1rem 0 0;
  text-align: center;
}/*# sourceMappingURL=style.css.map */