@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

@keyframes scroll-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -100%;
  }
}
@keyframes scroll-bg-x {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -200% center;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scale-up-circle {
  0% {
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: scale(1.05) translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
}
@keyframes scale-up-sb {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-up-sb-2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade-in-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* CSS Document */
html {
  overflow-x: hidden;
  font-size: 100%;
}

ul {
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

.hidden {
  display: none;
}

body {
  scrollbar-gutter: stable;
  background-color: #393939;
  background-image: url(../img/common/bg_ptn.svg);
  background-repeat: repeat;
  background-size: 80px 80px;
  width: 100dvw;
  margin: 0;
  height: 100%;
  overflow-x: hidden;
  font-size: 100%;
  font-family: "Zen Kaku Gothic New", Montserrat, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body header {
  width: 100%;
  position: fixed !important;
  padding-bottom: 22px;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
body header .header-wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
body header .header-wrapper .header-left {
  margin: 22px 0 0 22px;
  pointer-events: auto;
}
body header .header-wrapper .header-left img {
  width: 180px;
}
body header .header-wrapper .header-right {
  margin: 22px 22px 0 0;
  display: flex;
  align-items: center;
}
body header .header-wrapper .header-right .contact {
  position: relative;
  height: 36px;
  width: 158px;
  background-color: #ff6868;
  border-radius: 6px;
  border-width: 0;
  margin-right: 10px;
  pointer-events: auto;
}
body header .header-wrapper .header-right .contact::before {
  content: "";
  background-image: url(../img/header/contact.svg);
  height: 13px;
  width: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 16px;
}
body header .header-wrapper .header-right .contact span {
  width: 1px;
  height: 20px;
  position: absolute;
  background-color: #f2f2f2;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 40px;
  opacity: 0.5;
}
body header .header-wrapper .header-right .contact p {
  position: absolute;
  margin: auto 0 auto 48px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05rem;
  line-height: 12px;
  color: #f2f2f2;
  top: 50%;
  transform: translateY(-50%);
}
body header .header-wrapper .header-right .hamburger {
  position: relative;
  height: 36px;
  width: 36px;
  margin: auto;
  border-radius: 6px;
  border-width: 0;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  background: #fff;
}
body header .header-wrapper .header-right .hamburger span.line {
  position: absolute;
  content: "";
  background-color: #393939;
  width: 14px;
  height: 1px;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: 0.3s;
}
body header .header-wrapper .header-right .hamburger span.line:nth-child(1) {
  top: 15px;
}
body header .header-wrapper .header-right .hamburger span.line:nth-child(2) {
  bottom: 15px;
}
body header .header-wrapper .header-right .hamburger.active span.line:nth-child(1) {
  left: 37.5%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body header .header-wrapper .header-right .hamburger.active span.line:nth-child(2) {
  left: 37.5%;
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
body header .header-wrapper .header-right .hamburger .header-nav {
  position: absolute;
  width: 204px;
  right: 0;
  top: 40px;
  border-radius: 6px;
  background-color: rgba(46, 46, 46, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
body header .header-wrapper .header-right .hamburger .header-nav ul {
  padding: 20px 24px;
  margin: 0;
}
body header .header-wrapper .header-right .hamburger .header-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f2f2f2;
  text-align: start;
}
body header .header-wrapper .header-right .hamburger .header-nav ul li a p {
  margin: 8px 0;
  font-size: 16px;
  color: #f2f2f2;
}
body header .header-wrapper .header-right .hamburger .header-nav ul li a span {
  font-size: 9px;
  font-weight: 500;
  font-weight: 500;
  color: #b9b6b6;
}
body header .header-wrapper .header-right .hamburger .header-nav.display {
  opacity: 1;
  pointer-events: auto;
}
body main {
  height: 100%;
  width: 100%;
  position: relative;
}
body main section {
  position: relative;
  display: block;
  z-index: 2;
}
body main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 25px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 1px, transparent 1px, transparent 100px) right/80% auto no-repeat, repeating-linear-gradient(to bottom, #ccc 0, #ccc 1px, transparent 1px, transparent 10px) right/50% auto no-repeat;
  background-repeat: repeat-y;
  background-color: transparent;
}
body main .top-btn {
  position: fixed;
  width: 88px;
  height: 55px;
  z-index: 3;
  background-color: transparent;
  bottom: 0;
  right: 0;
}
body main .top-btn p {
  margin-left: 16px;
  font-size: 14px;
  color: #0099ff;
  font-weight: 700;
}
body main .top-btn img {
  position: absolute;
}
body main section.limited-width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
body main section.kv {
  position: relative;
  margin-top: 96px;
  width: 100%;
  aspect-ratio: 2/1;
  display: grid;
  grid-template-columns: 13.203125% 8.125% 65.9375% 8.125% 4.609375%;
}
body main section.kv h2.l-shape-abs {
  font-weight: 900;
  margin: 0;
  overflow: visible;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-size: 10vw;
  color: #f2f2f2;
  font-weight: 900;
}
body main section.kv h2.l-shape-abs .kv-title {
  position: absolute;
  bottom: -10%;
  left: 16%;
  width: 28.359375%;
}
body main section.kv h2.l-shape-abs .kv-title img {
  width: 100%;
}
body main section.kv h2.l-shape-abs .kv-text {
  background-color: #00b976;
  font-size: max(22px, 2vw);
  letter-spacing: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  overflow: visible;
  font-weight: 700;
  display: flex;
  align-items: center;
}
body main section.kv h2.l-shape-abs .kv-text img {
  width: 100%;
  margin: auto;
  padding: 6px 8px;
}
body main section.kv h2.l-shape-abs .kv-text.kv-text-1 {
  position: absolute;
  bottom: 0%;
  left: 47.109375%;
  width: 18.75%;
}
body main section.kv h2.l-shape-abs .kv-text.kv-text-2 {
  position: absolute;
  bottom: -5vw;
  left: 47.109375%;
  width: 23.828125%;
}
body main section.kv .kv-movie {
  width: 100%;
  padding-top: 66.8246445498%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
body main section.kv .kv-movie.kv-movie-center {
  position: relative;
  grid-column: 3;
  grid-row: 1;
}
body main section.kv .kv-movie.kv-movie-center video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transform-origin: right top;
}
body main section.kv .kv-movie.kv-movie-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-self: end;
  overflow: hidden;
}
body main section.kv .kv-movie.kv-movie-left video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transform-origin: right center;
}
body main section.kv .kv-movie.kv-movie-right {
  grid-column: 5;
  grid-row: 1;
  overflow: hidden;
}
body main section.kv .kv-movie.kv-movie-right video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transform-origin: center center;
}
body main section.kv .scroll {
  position: absolute;
  width: 9.765625%;
  max-width: 125px;
  height: 0;
  padding-top: 9.765625%;
  z-index: 3;
  background-color: transparent;
  bottom: 3.9007092199%;
  right: 7.421875%;
}
body main section.kv .scroll img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
body main section.kv .scroll .arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 22%;
}
body main section.kv .scroll .rotate-text {
  display: inline-block;
  animation: spin 40s linear infinite;
}
body main section.overview {
  margin-top: 100px;
  width: 100%;
  height: 0;
  padding-top: 64.609375%;
  position: relative;
  display: block;
}
@media screen and (min-width: 1280px) {
  body main section.overview {
    padding-top: 827px;
  }
}
body main section.overview .img-area-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 49.375%;
  height: 50%;
  display: block;
}
body main section.overview .img-area-1 .img-1 {
  position: absolute;
  bottom: 16.9286577993%;
  left: 0;
  width: 83.7025316456%;
}
body main section.overview .img-area-1 .img-2 {
  position: absolute;
  top: 0;
  right: 7.9113924051%;
  width: 33.2278481013%;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  body main section.overview .text-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 50.625%;
    height: 100%;
  }
}
body main section.overview .text-area .overview-text {
  position: relative;
  font-weight: 700;
  margin-top: 16.4449818622%;
  font-size: min(2.6vw, 28px);
  line-height: 50px;
  letter-spacing: 0.2rem;
  color: #f2f2f2;
  width: 83.487654321%;
}
body main section.overview .text-area .overview-text .overview-title {
  width: 100%;
}
body main section.overview .text-area .overview-text .circle {
  position: absolute;
  top: 18%;
  left: 0;
  width: 39.5%;
}
body main section.overview .text-area .overview-text .circle svg {
  width: 100%;
  height: auto;
}
body main section.overview .text-area .overview-text .circle svg .svg-anim {
  opacity: 0;
  stroke: #00B976;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: var(--dash, 0);
  stroke-dashoffset: var(--dash, 0);
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 0.8s ease;
}
body main section.overview .text-area .overview-text .circle svg .svg-anim.active {
  opacity: 1;
  animation: draw-line 1s ease forwards;
  animation-delay: 0.5s;
}
body main section.overview .text-area .overview-explain {
  font-weight: 500;
  margin-top: min(30px, 2.5vw);
  margin-right: 16px;
  font-size: min(16px, 1.25vw);
  line-height: min(32px, 2.5vw);
  letter-spacing: 0.1rem;
  color: #f2f2f2;
}
body main section.overview .img-area-2 {
  display: block;
}
@media screen and (min-width: 768px) {
  body main section.overview .img-area-2 {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 37%;
  }
}
body main section.overview .img-area-2 img {
  opacity: 0;
  transition: all 0.5s;
}
body main section.overview .img-area-2 img.active {
  opacity: 1;
}
body main section.overview .img-area-2 .img-3 {
  position: absolute;
  top: -16.9286577993%;
  left: 5.234375%;
  width: 15.078125%;
}
body main section.overview .img-area-2 .img-4 {
  position: absolute;
  top: -10.8827085852%;
  left: 24.140625%;
  width: 13.28125%;
  border-radius: 6px;
}
body main section.overview .img-area-2 .img-5 {
  position: absolute;
  top: 10.8827085852%;
  right: 7.8125%;
  width: 26.796875%;
  border-radius: 6px;
  z-index: 2;
}
body main section.overview .img-area-2 .img-6 {
  position: absolute;
  top: 10.8827085852%;
  right: 39.84375%;
  width: 13.515625%;
  border-radius: 6px;
}
body main section.overview .img-area-2 .img-7 {
  position: absolute;
  top: 78.5973397823%;
  left: 20.3125%;
  width: 8.203125%;
  border-radius: 6px;
}
body main section.overview .img-area-2 .img-8 {
  position: absolute;
  top: 67.7146311971%;
  right: 25%;
  width: 18.515625%;
  border-radius: 6px;
  z-index: 1;
}
body main section.effective {
  margin-top: 100px;
}
body main section.effective .effective-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
body main section.effective .effective-wrapper .effective-title {
  width: 45.078125%;
  margin: 0 auto;
}
body main section.effective .effective-wrapper .effective-title img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-intro {
  width: 38.984375%;
  margin: 46px auto 0;
}
body main section.effective .effective-wrapper .effective-intro img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-list {
  margin: 20px 100px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
body main section.effective .effective-wrapper .effective-list .effective-item {
  width: calc(100% - 24px);
  height: 0;
  padding-top: calc(100% - 24px);
  margin: 12px;
  color: #f2f2f2;
  background-color: #464646;
  border-radius: 50%;
  position: relative;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .item-explain {
  font-weight: 700;
  font-size: min(16px, 1.3vw);
  line-height: min(20px, 1.7vw);
  text-align: center;
  margin-top: 6.4516129032%;
  letter-spacing: 0.1rem;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list {
  padding: 0;
  margin-top: 6.4516129032%;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list .ad-tool-item {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  border-color: white;
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
  padding: 0px 8px;
  font-size: min(14px, 1.1vw);
  line-height: min(28px, 2.3vw);
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-1 .ad-tool-item {
  margin: 4px auto;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6.4516129032%;
}
body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-2 .ad-tool-item {
  font-size: min(14px, 1.1vw);
  line-height: min(28px, 2.3vw);
  white-space: pre;
  margin: 4px;
}
body main section.effective .effective-wrapper .effective-list .effective-item .item-img {
  position: absolute;
}
body main section.effective .effective-wrapper .effective-list .effective-item .item-img img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-title {
  width: 25.1612903226%;
  margin: 0 auto;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-title img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-img {
  bottom: 7%;
  left: -10%;
  width: 42.2580645161%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-title {
  width: 61.2903225806%;
  margin: 0 auto;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-title img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-img {
  top: -6%;
  right: -17%;
  width: 45.8064516129%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-title {
  width: 80.6451612903%;
  margin: 12px auto 0;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-title img {
  width: 100%;
}
body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-img {
  bottom: -12%;
  right: -20%;
  width: 51.6129032258%;
}
body main section.effective .effective-wrapper .arrow-area {
  margin-top: 8px;
  display: flex;
  position: relative;
}
body main section.effective .effective-wrapper .arrow-area svg {
  margin: 0 auto;
  height: 130px;
}
body main section.effective .effective-wrapper .arrow-area svg .svg-anim {
  stroke: #00B976;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: var(--dash, 0);
  stroke-dashoffset: var(--dash, 0);
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 0.8s ease;
}
body main section.effective .effective-wrapper .arrow-area svg .svg-anim.active {
  animation: draw-line 1s ease forwards;
}
body main section.effective .effective-wrapper .arrow-area .arrow-area-text {
  position: absolute;
  left: 53%;
  transform: translateY(-50%);
  top: 50%;
  color: #f2f2f2;
  font-weight: 700;
}
body main section.effective .effective-result {
  margin-top: 16px;
  position: relative;
  background-image: url(../img/effective/effective-bg.svg);
  background-position: center center;
  background-size: 66.6666666667%;
  background-repeat: repeat-x;
  animation: scroll-bg-x 20s linear infinite;
}
body main section.effective .effective-result .result-img {
  width: 43.515625%;
  max-width: 557px;
  height: 0;
  padding-top: 43.515625%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1280px) {
  body main section.effective .effective-result .result-img {
    padding-top: 557px;
  }
}
body main section.effective .effective-result .result-img > * {
  opacity: 0;
  position: absolute;
}
body main section.effective .effective-result .result-img .bg1 {
  transform-origin: left top;
  left: 50%;
  top: 50%;
  width: 95.1526032316%;
}
body main section.effective .effective-result .result-img .bg1.active {
  animation: scale-up-circle 0.5s ease forwards;
}
body main section.effective .effective-result .result-img .bg2 {
  transform-origin: left top;
  left: 50%;
  top: 50%;
  width: 80.78994614%;
}
body main section.effective .effective-result .result-img .bg2.active {
  animation: scale-up-circle 0.5s ease forwards;
  animation-delay: 0.3s;
}
body main section.effective .effective-result .result-img .bg3 {
  transform-origin: left top;
  left: 50%;
  top: 50%;
  width: 66.4272890485%;
}
body main section.effective .effective-result .result-img .bg3.active {
  animation: scale-up-circle 0.5s ease forwards;
  animation-delay: 0.6s;
}
body main section.effective .effective-result .result-img .result-main-img {
  transform: translateX(-50%);
  left: 50%;
  top: 28.7253141831%;
  width: 77.0197486535%;
}
body main section.effective .effective-result .result-img .result-main-img.active {
  animation: fade-in-anim 0.5s ease forwards;
  animation-delay: 1s;
}
body main section.effective .effective-result .result-img .result-text {
  color: #f2f2f2;
  font-weight: 700;
  top: 75%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  body main section.effective .effective-result .result-img .result-text p {
    font-size: 16px;
    line-height: 28px;
  }
}
body main section.effective .effective-result .result-img .result-text.active {
  animation: fade-in-anim 0.5s ease forwards;
  animation-delay: 1.3s;
}
body main section.effective .effective-result .result-img .sb1 {
  transform-origin: center bottom;
  left: 8.9766606822%;
  top: 8.9766606822%;
  width: 41.8312387792%;
}
body main section.effective .effective-result .result-img .sb1.active {
  animation: scale-up-sb 0.5s ease 1.7s forwards, scale-up-sb-2 0.5s ease 3s forwards;
}
body main section.effective .effective-result .result-img .sb2 {
  transform-origin: center bottom;
  left: 41.4721723519%;
  top: 18.8509874327%;
  width: 48.473967684%;
}
body main section.effective .effective-result .result-img .sb2.active {
  animation: scale-up-sb 0.5s ease 1.9s forwards, scale-up-sb-2 0.5s ease 3s forwards;
}
body main section.effective .effective-result .result-img .sb3 {
  transform-origin: center bottom;
  left: 0;
  top: 28.7253141831%;
  width: 32.6750448833%;
}
body main section.effective .effective-result .result-img .sb3.active {
  animation: scale-up-sb 0.5s ease 2.1s forwards, scale-up-sb-2 0.5s ease 3s forwards;
}
body main section.effective .effective-result .result-img .sb4 {
  transform-origin: center bottom;
  right: 0;
  top: 32.315978456%;
  width: 33.7522441652%;
}
body main section.effective .effective-result .result-img .sb4.active {
  animation: scale-up-sb 0.5s ease 2.3s forwards, scale-up-sb-2 0.5s ease 3s forwards;
}
body main section.point {
  margin-top: 120px;
}
body main section.point .point-title {
  margin-left: 80px;
  width: 37.109375%;
}
body main section.point .point-title img {
  width: 100%;
}
body main section.point .point-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}
body main section.point .point-wrapper .scroll-area {
  width: 100%;
  grid-column: 1;
}
body main section.point .point-wrapper .scroll-area .point-list {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s, transform 0.6s;
  color: #f2f2f2;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .number {
  font-weight: 700;
  position: absolute;
  font-size: 150px;
  line-height: 100px;
  -webkit-text-stroke: 5px #4b4b4b;
  color: #393939;
  top: -20px;
  z-index: 1;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point {
  position: relative;
  display: block;
  font-weight: 700;
  z-index: 2;
  font-size: min(28px, 2.3vw);
  line-height: min(48px, 4vw);
  letter-spacing: 0.1rem;
  padding: 10% 0 0 40px;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave {
  position: absolute;
  bottom: -20px;
  left: 40px;
  z-index: 2;
  width: min(170px, 14vw);
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave svg {
  width: 100%;
  height: auto;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave svg .svg-anim {
  stroke: #00B976;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: var(--dash, 0);
  stroke-dashoffset: var(--dash, 0);
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 0.8s ease;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave svg .svg-anim.active {
  animation: draw-line 1s ease forwards;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item .point-explain {
  position: relative;
  display: block;
  font-weight: 500;
  z-index: 2;
  font-size: min(16px, 1.3vw);
  line-height: min(28px, 2.3vw);
  padding: 16px 0 0 40px;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave {
  bottom: -20px;
  left: 40px;
  z-index: 2;
  width: min(170px, 14vw);
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave svg {
  width: 100%;
  height: auto;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave svg .svg-anim {
  stroke: #00B976;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: var(--dash, 0);
  stroke-dashoffset: var(--dash, 0);
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 0.8s ease;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave svg .svg-anim.active {
  animation: draw-line 1s ease forwards;
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .point .wave {
  bottom: min(28px, 2.3vw);
  left: 40px;
  width: min(160px, 13vw);
}
body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .point .wave img {
  width: 100%;
}
body main section.point .point-wrapper .point-movie {
  border-radius: 6px;
  overflow: hidden;
}
body main section.point .point-wrapper .point-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main section.works {
  background-color: #f6f6f6;
  margin-top: 120px;
  margin-right: 48px;
  border-radius: 0 10px 10px 0;
  background-image: url(../img/works/bgimg.svg);
  background-repeat: repeat-y;
  animation: scroll-bg 60s linear infinite;
}
body main section.works .works-wrapper {
  padding: 9.375%;
}
body main section.works .works-wrapper .works-top {
  display: flex;
  justify-content: space-between;
}
body main section.works .works-wrapper .works-top .works-title {
  width: 35.15625%;
}
body main section.works .works-wrapper .works-top .works-title img {
  width: 100%;
}
body main section.works .works-wrapper .works-top .filter-group {
  margin-top: 12px;
  display: flex;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box {
  display: inline-block;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button {
  position: relative;
  margin: 0 0 4px 4px;
  display: inline-block;
  vertical-align: top;
  border: 1px solid transparent;
  padding: 6px 12px;
  background-color: #bbbbbb;
  border-radius: 100px;
  color: #f2f2f2;
  font-weight: 700;
  font-size: min(1.2vw, 14px);
  line-height: 1;
  transition: border-color 0.3s, background-color 0.3s;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button span.corner {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border: 1px solid #0099ff;
  opacity: 0;
  transition: opacity 0.3s;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button span.tl {
  top: -4px;
  left: -4px;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button span.tr {
  top: -4px;
  right: -4px;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button span.bl {
  bottom: -4px;
  left: -4px;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button span.br {
  bottom: -4px;
  right: -4px;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button.active {
  padding: 0;
  border-color: #0099ff;
  border-radius: 0;
  background-color: transparent;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button.active div {
  padding: 6px 12px;
  height: 100%;
  width: 100%;
  background-color: #00b976;
  color: #f2f2f2;
  border-radius: 100px;
  overflow: hidden;
}
body main section.works .works-wrapper .works-top .filter-group .filter-button-box .filter-button.active span.corner {
  opacity: 1;
}
body main section.works .works-wrapper .works-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 0;
  margin-top: 48px;
}
body main section.works .works-wrapper .works-list .works-item {
  width: 31.5%;
  cursor: pointer;
  margin-bottom: 2rem;
}
body main section.works .works-wrapper .works-list .works-item .works-modal {
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  display: block;
}
body main section.works .works-wrapper .works-list .works-item .works-modal span.corner {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border: 1px solid #0099ff;
  opacity: 0;
  transition: opacity 0.3s;
}
body main section.works .works-wrapper .works-list .works-item .works-modal span.tl {
  top: -4px;
  left: -4px;
}
body main section.works .works-wrapper .works-list .works-item .works-modal span.tr {
  top: -4px;
  right: -4px;
}
body main section.works .works-wrapper .works-list .works-item .works-modal span.bl {
  bottom: -4px;
  left: -4px;
}
body main section.works .works-wrapper .works-list .works-item .works-modal span.br {
  bottom: -4px;
  right: -4px;
}
body main section.works .works-wrapper .works-list .works-item .works-modal:hover {
  border-color: #0099ff;
}
body main section.works .works-wrapper .works-list .works-item .works-modal:hover span.corner {
  opacity: 1;
}
body main section.works .works-wrapper .works-list .works-item:nth-child(n+13) {
  margin-bottom: 0rem;
}
body main section.works .works-wrapper .works-list .works-item .works-img {
  border-radius: 6px;
  overflow: hidden;
}
body main section.works .works-wrapper .works-list .works-item .works-img img {
  display: block;
  width: 100%;
}
body main section.works .works-wrapper .works-list .works-item .works-text {
  margin: 8px 0 0 0;
  font-weight: 700;
}
body main section.works .works-wrapper .works-list .works-item .works-tag p {
  margin: 8px 0 0;
  font-weight: 500;
  color: #8e8e8e;
  font-size: 12px;
}
body main section.works .works-wrapper .works-list .works-item a {
  color: #2e2e2e;
}
body main section.works .works-wrapper .works-list::after {
  content: "";
  display: block;
  width: 31.5%;
}
body main section.price {
  margin-top: 120px;
}
body main section.price .price-title {
  width: 27.8125%;
  margin: 0 auto;
}
body main section.price .price-title img {
  width: 100%;
}
body main section.price .price-wrapper {
  margin-top: 80px;
}
body main section.price .price-wrapper .price-list {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
}
body main section.price .price-wrapper .price-list .price-item {
  padding: 0 16px;
  position: relative;
}
body main section.price .price-wrapper .price-list .price-item .text-area {
  font-size: min(3.7vw, 40px);
  color: #f2f2f2;
  font-weight: 900;
}
body main section.price .price-wrapper .price-list .price-item .text-area .first-letter {
  color: #393939;
  -webkit-text-stroke: 1px #f2f2f2;
}
body main section.price .price-wrapper .price-list .price-item .price-img {
  width: 86.4864864865%;
}
body main section.price .price-wrapper .price-list .price-item .price-img img {
  width: 100%;
}
body main section.price .price-wrapper .price-list .price-item .price-detail {
  font-size: 16px;
  color: #f2f2f2;
  font-weight: 700;
  text-align: end;
  margin-right: 48px;
  letter-spacing: 0.15rem;
}
body main section.price .price-wrapper .price-list .price-item .price-detail span {
  font-weight: 700;
  font-size: 36px;
}
body main section.price .price-wrapper .price-list .price-item.video-editing .text-area {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  right: 0%;
  margin: 0;
}
body main section.price .price-wrapper .price-list .price-item.video-editing .text-area img {
  position: absolute;
  top: -12%;
  right: 6%;
  width: 21.25%;
}
body main section.price .price-wrapper .price-list .price-item.animation {
  margin-top: 60px;
}
body main section.price .price-wrapper .price-list .price-item.animation .text-area img {
  position: absolute;
  top: -14%;
  right: 6%;
  width: 30.3125%;
}
body main section.price .price-wrapper .price-list .price-item.full-animation {
  margin-top: 120px;
}
body main section.price .price-wrapper .price-list .price-item.full-animation .text-area img {
  position: absolute;
  top: -16%;
  right: 6%;
  width: 30.3125%;
}
body main section.price .price-wrapper .price-list .price-item.full-animation .price-detail span {
  font-weight: 500;
  font-size: 28px;
}
body main section.price .price-wrapper .live-action-video {
  margin: 30px auto 0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f2f2f2;
  background-color: transparent;
  height: 52px;
  width: 320px;
  border-color: #f2f2f2;
  border-width: 1px;
  border-style: solid;
  border-radius: 26px;
  transition: background-color 0.3s;
}
body main section.price .price-wrapper .live-action-video:hover {
  background-color: #00b976;
}
body main section.faq {
  margin: 120px auto 0;
}
body main section.faq .faq-wrapper {
  max-width: 1056px;
  margin: 0 28px;
  display: grid;
  grid-template-columns: 34.3% 65.7%;
}
body main section.faq .faq-wrapper .faq-title {
  width: 79.5918367347%;
}
body main section.faq .faq-wrapper .faq-title img {
  width: 100%;
}
body main section.faq .faq-wrapper .faq-list {
  margin: 0;
  padding: 0;
  grid-column: 2;
}
body main section.faq .faq-wrapper .faq-list .faq-item {
  margin-top: 50px;
}
body main section.faq .faq-wrapper .faq-list .faq-item .question, body main section.faq .faq-wrapper .faq-list .faq-item .answer {
  transition: all 0.5s ease;
}
body main section.faq .faq-wrapper .faq-list .faq-item .question {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
body main section.faq .faq-wrapper .faq-list .faq-item .question.active p {
  display: block;
}
body main section.faq .faq-wrapper .faq-list .faq-item .question.active p::before {
  width: 100%;
}
body main section.faq .faq-wrapper .faq-list .faq-item .question.active p span {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
body main section.faq .faq-wrapper .faq-list .faq-item p {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  color: #2e2e2e;
  overflow: hidden;
}
body main section.faq .faq-wrapper .faq-list .faq-item p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f2f2f2;
  z-index: 1;
  transition: width 0.8s ease;
}
body main section.faq .faq-wrapper .faq-list .faq-item p span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 6px;
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  -webkit-mask-position: left;
  transition: -webkit-mask-size 0.8s ease;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  mask-position: left;
}
body main section.faq .faq-wrapper .faq-list .faq-item .answer {
  opacity: 0;
  font-size: 16px;
  line-height: 28px;
  margin-top: 24px;
  transform: translateY(20px);
}
body main section.faq .faq-wrapper .faq-list .faq-item .answer p {
  font-size: 16px;
  font-weight: 300;
  color: #f2f2f2;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.12rem;
  padding: 0;
  margin: 0;
}
body main section.faq .faq-wrapper .faq-list .faq-item .answer.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s; /* 少し遅れて出る */
}
body main section.faq .faq-wrapper .faq-list :nth-child(1) {
  margin-top: 0;
}
body main section.contact {
  margin-top: 120px;
  background-color: #f2f2f2;
}
body main section.contact .contact-wrapper {
  padding: 120px 0;
}
body main section.contact .contact-wrapper .contact-title {
  width: 80%;
  margin: 0 auto 60px;
}
body main section.contact .contact-wrapper .contact-title img {
  width: 100%;
}
body main section.contact .contact-wrapper .contact-contents {
  max-width: 1000px;
  margin: 0 auto;
}
body footer {
  width: 100%;
  height: 148px;
  background-color: #2e2e2e;
  padding: 40px;
}
body footer .footer-wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
  height: 100%;
}
body footer .footer-wrapper .footer-logo {
  display: flex;
  align-items: center;
  width: 265px;
}
body footer .footer-wrapper .footer-logo img {
  width: 100%;
}
body footer .footer-wrapper .footer-SNS {
  display: flex;
  gap: 20px;
}
body footer .footer-wrapper .footer-SNS a {
  width: 36px;
  height: 36px;
}
body footer .footer-wrapper .footer-SNS a.X {
  width: 28px;
  height: 28px;
  margin-top: 4px;
}
body footer .footer-wrapper .footer-SNS a img {
  width: 100%;
}
body footer .footer-wrapper .copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 300;
  color: #f2f2f2;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  body header {
    width: 100%;
    position: fixed !important;
    padding-bottom: 22px;
    top: 0;
    z-index: 100;
  }
  body header .header-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
  }
  body header .header-wrapper .header-left {
    margin: 18px 0 0 18px;
  }
  body header .header-wrapper .header-left img {
    width: 120px;
  }
  body header .header-wrapper .header-right {
    margin: 18px 18px 0 0;
    display: flex;
    align-items: center;
  }
  body main {
    height: 100%;
    width: 100%;
    position: relative;
  }
  body main section {
    position: relative;
    display: block;
    z-index: 2;
  }
  body main::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 25px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 1px, transparent 1px, transparent 100px) right/50% auto no-repeat, repeating-linear-gradient(to bottom, #ccc 0, #ccc 1px, transparent 1px, transparent 10px) right/20% auto no-repeat;
    background-repeat: repeat-y;
    background-color: transparent;
  }
  body main section.limited-width {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  body main section.kv {
    position: relative;
    margin-top: 74px;
    width: 100%;
    overflow: visible;
    aspect-ratio: 375/568;
    display: grid;
    grid-template-columns: 14.6666666667% 85.3333333333%;
  }
  body main section.kv h2.l-shape-abs {
    grid-column: 1/3;
    position: absolute;
    top: -29%;
    left: -5%;
    width: 58%;
  }
  body main section.kv h2.l-shape-abs .kv-title {
    position: absolute;
    bottom: -25%;
    left: 16%;
    width: 28.359375%;
  }
  body main section.kv h2.l-shape-abs .kv-title img {
    width: 100%;
  }
  body main section.kv h2.l-shape-abs img {
    width: 100%;
  }
  body main section.kv h2.l-shape-abs .kv-text {
    background-color: #00b976;
    font-size: max(22px, 2vw);
    letter-spacing: 0.25rem;
    padding: 0 2px;
    overflow: visible;
    font-weight: 900;
  }
  body main section.kv h2.l-shape-abs .kv-text p {
    margin: 0;
  }
  body main section.kv h2.l-shape-abs .kv-text.kv-text-1 {
    width: 84%;
    position: absolute;
    bottom: -20%;
    left: 51.2%;
  }
  body main section.kv h2.l-shape-abs .kv-text.kv-text-2 {
    width: 104.5333333333%;
    position: absolute;
    bottom: -28%;
    left: 51.2%;
  }
  body main section.kv .kv-movie {
    width: 100%;
    height: 0;
    padding-top: 162.8125%;
    position: relative;
    border-radius: 10px 0 0 10px;
  }
  body main section.kv .kv-movie.kv-movie-center {
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    grid-column: 2;
    grid-row: 1;
    position: relative;
  }
  body main section.kv .kv-movie.kv-movie-center video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1.5);
    transform-origin: 70% 30%;
  }
  body main section.kv .scroll {
    position: absolute;
    width: 125px;
    height: 125px;
    z-index: 0;
    background-color: transparent;
    bottom: -20px;
    right: -21px;
  }
  body main section.kv .scroll img {
    position: absolute;
  }
  body main section.kv .scroll .arrow {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
  body main section.kv .scroll .rotate-text {
    display: inline-block;
    animation: spin 40s linear infinite;
  }
  body main section.overview {
    margin-top: 60px;
    display: block;
    grid-template-columns: none;
    height: auto;
    padding-top: 0;
  }
  body main section.overview .img-area-1 {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  body main section.overview .img-area-1 .img-1 {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 72.8%;
  }
  body main section.overview .img-area-1 .img-2 {
    position: absolute;
    bottom: -15%;
    right: 19.4666666667%;
    width: 34.9333333333%;
    border-radius: 6px;
  }
  body main section.overview .text-area {
    position: relative;
    width: 100%;
  }
  body main section.overview .text-area .overview-text {
    margin: 0 24px;
    font-weight: 700;
    margin-top: 50px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.15rem;
    color: #f2f2f2;
  }
  body main section.overview .text-area .overview-explain {
    margin: 0 24px;
    font-weight: 500;
    margin-top: 18px;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.1rem;
    color: #f2f2f2;
  }
  body main section.overview .text-area .circle {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 130px;
  }
  body main section.overview .text-area .circle svg {
    width: 100%;
    height: auto;
  }
  body main section.overview .text-area .img-area {
    margin-top: 40px;
    width: 100%;
  }
  body main section.overview .text-area .img-area img {
    width: 100%;
  }
  body main section.overview .img-area-2 {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 40px;
    height: 0;
    padding-top: 106.4%;
  }
  body main section.overview .img-area-2 .img-4 {
    position: absolute;
    top: 0;
    left: initial;
    right: 0;
    width: 32.8%;
    border-radius: 6px;
  }
  body main section.overview .img-area-2 .img-3 {
    position: absolute;
    top: 8.2666666667%;
    left: 5.6%;
    width: 46.4%;
  }
  body main section.overview .img-area-2 .img-7 {
    position: absolute;
    top: 40.5333333333%;
    left: initial;
    right: 23.4666666667%;
    width: 28.2666666667%;
  }
  body main section.overview .img-area-2 .img-5 {
    position: absolute;
    top: initial;
    bottom: 10%;
    left: 0;
    width: 57.3333333333%;
  }
  body main section.effective {
    margin-top: 100px;
  }
  body main section.effective .effective-wrapper {
    max-width: 1280px;
    margin: 0 auto;
  }
  body main section.effective .effective-wrapper .effective-title {
    width: 80.2666666667%;
    margin: 0 auto;
  }
  body main section.effective .effective-wrapper .effective-title img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-intro {
    width: 80.2666666667%;
    margin: 18px auto;
  }
  body main section.effective .effective-wrapper .effective-intro img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-list {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 0;
    padding-top: 186.66667%;
    position: relative;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item {
    width: 72%;
    height: 0;
    padding-top: 72%;
    color: #f2f2f2;
    background-color: #464646;
    border-radius: 50%;
    position: absolute;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .item-title {
    font-weight: 900;
    font-size: max(22px, 6vw);
    text-align: center;
    letter-spacing: 0rem;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .item-explain {
    font-weight: 700;
    font-size: max(16px, 3vw);
    line-height: max(24px, 4.5vw);
    text-align: center;
    margin-top: 4.8387096774%;
    letter-spacing: 0;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list {
    padding: 0;
    margin-top: 6.4516129032%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list .ad-tool-item {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 500;
    border-color: #f2f2f2;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    padding: 2px 12px;
    font-size: max(12px, 2vw);
    line-height: max(16px, 3vw);
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-1 .ad-tool-item {
    margin: 4px auto;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6.4516129032%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .effective-item-wrapper .ad-tool-list.ad-tool-list-2 .ad-tool-item {
    font-size: max(12px, 2vw);
    line-height: max(16px, 3vw);
    margin: 4px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .item-img {
    position: absolute;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item .item-img img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 {
    top: 0;
    left: -32px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-title {
    width: 75px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-title img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-1 .item-img {
    top: 8%;
    right: -10%;
    bottom: initial;
    left: initial;
    width: 37.037037037%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 {
    top: 0;
    margin-top: 56%;
    right: -32px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-title {
    width: 170px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-title img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-2 .item-img {
    top: 25%;
    left: -37%;
    right: initial;
    width: 47.4074074074%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 {
    top: 0;
    margin-top: 112%;
    left: -32px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-title {
    width: 210px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-title img {
    width: 100%;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .ad-tool-list {
    margin-top: 16px;
  }
  body main section.effective .effective-wrapper .effective-list .effective-item.effective-item-3 .item-img {
    bottom: 20%;
    right: -33%;
    width: 50.3703703704%;
  }
  body main section.effective .effective-wrapper .arrow-area {
    margin-top: 24px;
    display: flex;
    position: relative;
  }
  body main section.effective .effective-wrapper .arrow-area svg {
    margin-left: 25%;
    height: 130px;
  }
  body main section.effective .effective-wrapper .arrow-area svg .svg-anim {
    stroke: #00B976;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: var(--dash, 0);
    stroke-dashoffset: var(--dash, 0);
    will-change: stroke-dashoffset;
    transition: stroke-dashoffset 0.8s ease;
  }
  body main section.effective .effective-wrapper .arrow-area svg .svg-anim.active {
    animation: draw-line 1s ease forwards;
  }
  body main section.effective .effective-wrapper .arrow-area .arrow-area-text {
    position: absolute;
    left: 37.3333333333%;
    transform: translateY(-50%);
    top: 50%;
    color: #f2f2f2;
    font-weight: 700;
    font-size: 14px;
  }
  body main section.effective .effective-result {
    background: none;
    margin: 32px 0 16px;
    position: relative;
    width: 141.3333333333%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  body main section.effective .effective-result .result-img {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    position: relative;
    height: 0;
    padding-top: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 557px) {
  body main section.effective .effective-result .result-img {
    padding-top: 660px;
  }
}
@media screen and (max-width: 768px) {
  body main section.effective .effective-result .result-img > div, body main section.effective .effective-result .result-img > img, body main section.effective .effective-result .result-img .result-text, body main section.effective .effective-result .result-img .result-main-img, body main section.effective .effective-result .result-img [class^=sb] {
    position: absolute;
  }
  body main section.effective .effective-result .result-img .result-text {
    top: 80%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
  }
  body main section.effective .effective-result .result-img .result-text p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px !important;
  }
  body main section.effective .effective-result .result-img .result-main-img {
    top: 37.7019748654%;
    left: 50%;
    transform: translateX(-50%);
    width: 62.8366247756%;
  }
  body main section.effective .effective-result .result-img .sb1 {
    left: 21.5439856373%;
    top: 8.9766606822%;
    width: 35.1885098743%;
  }
  body main section.effective .effective-result .result-img .sb2 {
    left: initial;
    right: 18.8509874327%;
    top: 18.8509874327%;
    width: 40.5745062837%;
  }
  body main section.effective .effective-result .result-img .sb3 {
    left: 17.9533213645%;
    top: 28.7253141831%;
    width: 28.0071813285%;
  }
  body main section.effective .effective-result .result-img .sb4 {
    right: 20.1077199282%;
    top: 32.315978456%;
    width: 28.5457809695%;
  }
  body main section.point {
    padding-top: 80px;
  }
  body main section.point .point-title {
    width: 80.2666666667%;
    margin-left: 24px;
  }
  body main section.point .point-title img {
    width: 100%;
  }
  body main section.point .point-wrapper {
    width: 100%;
    display: block;
  }
  body main section.point .point-wrapper .scroll-area {
    width: 100%;
    grid-column: 1;
  }
  body main section.point .point-wrapper .scroll-area .point-list {
    position: relative;
    padding: 0;
    margin: 0;
    height: 320px;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item {
    position: absolute;
    color: #f2f2f2;
    height: 300px;
    margin-top: 16px;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .number {
    width: 37.8666666667%;
    max-width: 200px;
    top: 0;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .number img {
    width: 100%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .point {
    position: relative;
    display: block;
    font-weight: 700;
    z-index: 2;
    font-size: min(24px, 5.6vw);
    line-height: min(36px, 8.4vw);
    letter-spacing: 0.1rem;
    padding: min(15%, 70px) 0 0 24px;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave {
    bottom: -12px;
    left: 24px;
    z-index: 2;
    width: min(150px, 35vw);
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .point .wave img {
    width: 100%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item .point-explain {
    position: relative;
    display: block;
    font-weight: 500;
    z-index: 2;
    font-size: min(16px, 4.5vw);
    line-height: min(36px, 8vw);
    padding: 16px 24px 30px 24px;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .number {
    width: 48%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .number img {
    width: 100%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave {
    bottom: -12px;
    left: 24px;
    width: min(150px, 35vw);
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-2 .point .wave img {
    width: 100%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .number {
    width: 48%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .number img {
    width: 100%;
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .point .wave {
    bottom: min(24px, 5.6vw);
    left: 24px;
    width: min(144px, 33.6vw);
  }
  body main section.point .point-wrapper .scroll-area .point-list .point-item.point-item-3 .point .wave img {
    width: 100%;
  }
  body main section.point .point-wrapper .point-movie {
    border-radius: 0;
    overflow: hidden;
  }
  body main section.point .point-wrapper .point-movie video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body main section.works {
    background-color: #f6f6f6;
    margin-top: 144px;
    margin-right: 30px;
    border-radius: 0 10px 10px 0;
    background-image: initial;
  }
  body main section.works .works-wrapper {
    padding: 60px 24px;
  }
  body main section.works .works-wrapper .works-top {
    display: block;
  }
  body main section.works .works-wrapper .works-top .works-title {
    width: 42.3728813559%;
    margin-left: 0px;
  }
  body main section.works .works-wrapper .works-top .works-title img {
    width: 100%;
  }
  body main section.works .works-wrapper .works-top .filter-button-box {
    display: inline-block;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button {
    position: relative;
    margin: 0 0 4px 4px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid transparent;
    padding: 6px 12px;
    background-color: #bbbbbb;
    border-radius: 100px;
    color: #f2f2f2;
    font-weight: 700;
    font-size: initial;
    line-height: 1;
    transition: border-color 0.3s, background-color 0.3s;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button div {
    font-size: 14px;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button span.corner {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border: 1px solid #0099ff;
    opacity: 0;
    transition: opacity 0.3s;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button span.tl {
    top: -4px;
    left: -4px;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button span.tr {
    top: -4px;
    right: -4px;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button span.bl {
    bottom: -4px;
    left: -4px;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button span.br {
    bottom: -4px;
    right: -4px;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button.active {
    padding: 0;
    border-color: #0099ff;
    border-radius: 0;
    background-color: transparent;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button.active div {
    padding: 6px 12px;
    height: 100%;
    width: 100%;
    background-color: #00b976;
    color: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
  }
  body main section.works .works-wrapper .works-top .filter-button-box .filter-button.active span.corner {
    opacity: 1;
  }
  body main section.works .works-wrapper .works-list {
    display: block;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 0;
    margin-top: 30px;
  }
  body main section.works .works-wrapper .works-list .works-item {
    width: 100%;
    cursor: pointer;
    margin-bottom: 30px;
  }
  body main section.works .works-wrapper .works-list .works-item:nth-child(n+13) {
    margin-bottom: 30px;
  }
  body main section.works .works-wrapper .works-list .works-item .works-img {
    border-radius: 6px;
    overflow: hidden;
  }
  body main section.works .works-wrapper .works-list .works-item .works-img img {
    display: block;
    width: 100%;
  }
  body main section.works .works-wrapper .works-list .works-item .works-text {
    font-weight: 700;
    margin-top: 8px;
  }
  body main section.works .works-wrapper .works-list .works-item .works-tag p {
    margin-top: 8px;
    font-weight: 500;
    color: #8e8e8e;
    font-size: 10px;
  }
  body main section.works .works-wrapper .works-list .works-item a {
    color: #2e2e2e;
  }
  body main section.works .works-wrapper .view-more {
    width: 144px;
    height: 38px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  body main section.works .works-wrapper .view-more {
    /* display: none !important; */
  }
}
@media screen and (max-width: 768px) {
  body main section.works .works-wrapper .view-more .view-more-btn {
    width: 100%;
    height: 100%;
    font-weight: 500;
    text-align: start;
    font-size: 16px;
    border-width: 0;
    background-color: transparent;
    background-image: url(../img/works/view-more.svg);
    background-repeat: no-repeat;
    background-size: 36px;
    background-position: center right;
    color: #2e2e2e;
  }
  body main section.price {
    margin-top: 60px;
  }
  body main section.price .price-title {
    width: 59.7333333333%;
    margin: 0 auto;
  }
  body main section.price .price-title img {
    width: 100%;
  }
  body main section.price .price-wrapper {
    margin-top: 40px;
  }
  body main section.price .price-wrapper .price-list {
    padding: 0 16px 0 0;
    display: block;
  }
  body main section.price .price-wrapper .price-list .price-item {
    padding: 0 16px 0 24px;
    position: relative;
  }
  body main section.price .price-wrapper .price-list .price-item .text-area {
    font-size: max(28px, 7.6vw);
    color: #f2f2f2;
    font-weight: 900;
  }
  body main section.price .price-wrapper .price-list .price-item .text-area .first-letter {
    color: #393939;
    -webkit-text-stroke: 1px #f2f2f2;
  }
  body main section.price .price-wrapper .price-list .price-item .price-img {
    width: 88.4012539185%;
  }
  body main section.price .price-wrapper .price-list .price-item .price-img img {
    width: 100%;
  }
  body main section.price .price-wrapper .price-list .price-item .price-detail {
    font-size: 16px;
    color: #f2f2f2;
    font-weight: 700;
    text-align: end;
    margin-right: 48px;
    letter-spacing: 0.15rem;
  }
  body main section.price .price-wrapper .price-list .price-item .price-detail span {
    font-weight: 700;
    font-size: 36px;
  }
  body main section.price .price-wrapper .price-list .price-item.video-editing {
    margin-top: 76px;
  }
  body main section.price .price-wrapper .price-list .price-item.video-editing .text-area img {
    position: absolute;
    top: -15%;
    right: 5%;
    width: 17.5%;
  }
  body main section.price .price-wrapper .price-list .price-item.animation {
    margin-top: 20vw;
  }
  body main section.price .price-wrapper .price-list .price-item.animation .text-area img {
    position: absolute;
    top: -15%;
    right: 5%;
    width: 25%;
  }
  body main section.price .price-wrapper .price-list .price-item.full-animation {
    margin-top: 20vw;
  }
  body main section.price .price-wrapper .price-list .price-item.full-animation .text-area img {
    position: absolute;
    top: -15%;
    right: 5%;
    width: 25%;
  }
  body main section.price .price-wrapper .price-list .price-item.full-animation .price-detail span {
    font-weight: 500;
    font-size: 28px;
  }
  body main section.price .price-wrapper .live-action-video {
    margin: 30px auto 0;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f2f2f2;
    background-color: transparent;
    height: 52px;
    width: 280px;
    border-color: #f2f2f2;
    border-width: 1px;
    border-style: solid;
    border-radius: 26px;
  }
  body main section.faq {
    margin: 120px auto 0;
  }
  body main section.faq .faq-wrapper {
    max-width: 1056px;
    margin: 0 28px;
    display: block;
  }
  body main section.faq .faq-wrapper .faq-title {
    width: 54.5454545455%;
  }
  body main section.faq .faq-wrapper .faq-title img {
    width: 100%;
  }
  body main section.faq .faq-wrapper .faq-list .faq-item .question p span {
    font-size: 18px;
  }
  body main section.faq .faq-wrapper .faq-list .faq-item .answer p {
    font-size: 16px;
  }
  body main section.contact {
    margin-top: 60px;
    background-color: #f2f2f2;
  }
  body main section.contact .contact-wrapper {
    padding: 60px 24px;
  }
  body main section.contact .contact-wrapper .contact-title {
    width: 87.2%;
    margin: 0 auto 44px;
  }
  body main section.contact .contact-wrapper .contact-title img {
    width: 100%;
  }
  body main section.contact .contact-wrapper .contact-contents {
    max-width: 1000px;
    margin: 0 auto;
  }
  body footer {
    width: 100%;
    height: 213px;
    background-color: #2e2e2e;
    padding: 40px;
    position: initial;
  }
  body footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  body footer .footer-wrapper .footer-logo {
    display: flex;
    align-items: center;
    width: 265px;
  }
  body footer .footer-wrapper .footer-logo img {
    width: 100%;
  }
  body footer .footer-wrapper .footer-SNS {
    margin: 18px 0;
    display: flex;
    gap: 20px;
  }
  body footer .footer-wrapper .footer-SNS a {
    width: 36px;
    height: 36px;
  }
  body footer .footer-wrapper .footer-SNS a img {
    width: 100%;
  }
  body footer .footer-wrapper .copyright {
    position: initial;
    font-weight: 300;
    color: #f2f2f2;
    font-size: 12px;
  }
}
/* ==================================
 modal
  ================================== */
/* base */
.modal {
  position: fixed;
  display: none;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-wrap {
  position: relative;
}

/* custom */
.modal {
  background: rgba(0, 0, 0, 0.7);
}

.modal-bg {
  background: transparent;
}

.modal-wrap {
  margin: 0 auto;
  width: 70.3125%;
  color: #fff;
  height: 100%;
}

.modal-container {
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .modal-wrap {
    width: 81%;
  }
  .modal-inner {
    padding: 16rem 0 10rem;
  }
}
/* ==================================
 modal-head
  ================================== */
/* base*/
.modal-close {
  position: absolute;
  pointer-events: all;
  border-width: 0;
}

.modal-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.modal-line span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  transform-origin: top;
  top: 50%;
}
.modal-line span:first-child {
  transform: rotate(-45deg) translateY(-50%);
}
.modal-line span:last-child {
  transform: rotate(45deg) translateY(-50%);
}

/* custom*/
.modal-close {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: #fff;
  right: 0;
  top: -8px;
  transform: translate(100%, -100%);
}

.modal-line {
  width: 45%;
  height: 2rem;
}

.modal-line span {
  background: #11151D;
  height: 1px;
}

@media screen and (max-width: 767px) {
  .modal-close {
    width: 34px;
    height: 34px;
    top: -13px;
    right: 34px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
.fade-in {
  opacity: 0;
  transition: all 0.5s;
}
.fade-in.active {
  opacity: 1;
}
.fade-in.delay-500 {
  transition-delay: 0.5s;
}

.fade-in-parent > * {
  opacity: 0;
  transition: all 0.5s;
}
.fade-in-parent > *.active {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */