.animate .fadein {
  opacity: 0;
  transform-style: preserve-3d;
  transition-property: opacity;
  transition-duration: 2000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .fadein {
  opacity: 1;
}
.animate .slidein_left {
  opacity: 0;
  transform: translateX(-100px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate .slidein_right {
  opacity: 0;
  transform: translateX(100px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .slidein_left, .animate.show .slidein_right {
  opacity: 1;
  transform: translateX(0);
}
.animate .slidein_top {
  opacity: 0;
  transform: translateY(-20px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate .slidein_bottom {
  opacity: 0;
  transform: translateY(20px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .slidein_top, .animate.show .slidein_bottom {
  opacity: 1;
  transform: translateY(0);
}
.animate .zoomin {
  opacity: 0;
  transform: scale(1.5, 1.5);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-delay: 0ms;
}
.animate .zoomout {
  opacity: 0;
  transform: scale(0.5, 0.5);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-delay: 0ms;
}
.animate.show .zoomin, .animate.show .zoomout {
  opacity: 1;
  transform: scale(1, 1);
}
.animate .d1 {
  transition-delay: 100ms;
}
.animate .d2 {
  transition-delay: 200ms;
}
.animate .d3 {
  transition-delay: 300ms;
}
.animate .d4 {
  transition-delay: 400ms;
}
.animate .d5 {
  transition-delay: 500ms;
}
.animate .d6 {
  transition-delay: 600ms;
}
.animate .d7 {
  transition-delay: 700ms;
}
.animate .d8 {
  transition-delay: 800ms;
}
.animate .d9 {
  transition-delay: 900ms;
}
.animate .d10 {
  transition-delay: 1000ms;
}
.animate .d11 {
  transition-delay: 1100ms;
}
.animate .d12 {
  transition-delay: 1200ms;
}
.animate .d13 {
  transition-delay: 1300ms;
}
.animate .d14 {
  transition-delay: 1400ms;
}
.animate .d15 {
  transition-delay: 1500ms;
}
.animate .d16 {
  transition-delay: 1600ms;
}
.animate .d17 {
  transition-delay: 1700ms;
}
.animate .d18 {
  transition-delay: 1800ms;
}
.animate .d19 {
  transition-delay: 1900ms;
}
.animate .d20 {
  transition-delay: 2000ms;
}

@keyframes scroll_line {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (min-width: 1200px) {
  #main main.teemo article section.hero {
    padding: 150px 0;
  }
  #main main.teemo article section.hero .text_area {
    width: 70%;
    position: relative;
  }
  #main main.teemo article section.hero .text_area:before {
    content: "";
    width: 150%;
    height: 150%;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    filter: blur(100px);
  }
  #main main.teemo article section.hero .text_area h1 {
    margin: 0 0 44px 0;
    width: 100%;
    max-width: 581px;
    position: relative;
    z-index: 1;
  }
  #main main.teemo article section.hero .text_area h1 .kv_title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 24px 20px;
  }
  #main main.teemo article section.hero .text_area h1 img {
    width: 100%;
    height: auto;
  }
  #main main.teemo article section.hero .text_area .kv_text {
    max-width: 513px;
    position: relative;
  }
  #main main.teemo article section.hero .text_area .kv_text img {
    width: 100%;
  }
  #main main.teemo article section.hero .text_area dl {
    padding-left: 110px;
    min-height: 154px;
    position: relative;
    z-index: 1;
  }
  #main main.teemo article section.hero .text_area dl:before {
    content: "";
    width: 166px;
    height: 180px;
    display: block;
    background: url("../image/img_hero_charge.png") no-repeat left center/166px 180px;
    position: absolute;
    left: -68px;
    top: 0;
  }
  #main main.teemo article section.hero .text_area dl dt {
    margin-bottom: 14px;
    line-height: 40px;
    font-size: 28px;
    font-weight: bold;
    color: #4D4D4D;
  }
  #main main.teemo article section.hero .text_area dl dd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost {
    width: 250px;
    display: block;
    position: relative;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost span, #main main.teemo article section.hero .text_area dl dd span.cost small {
    display: block;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost small {
    padding-top: 2px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 25px;
    font-size: 17px;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost span {
    line-height: 64px;
    font-size: 38px;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost strong {
    font-family: "Roboto";
    font-size: 94px;
  }
  #main main.teemo article section.hero .text_area dl dd ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  #main main.teemo article section.hero .text_area dl dd ul li {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #41C3E1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
  }
  #main main.teemo article section.hero .text_area dl dd ul li span, #main main.teemo article section.hero .text_area dl dd ul li small {
    display: block;
  }
  #main main.teemo article section.hero .text_area dl dd ul li small {
    font-size: 15px;
  }
  #main main.teemo article section.hero .text_area dl dd ul li span {
    font-size: 22px;
    letter-spacing: calc(-100em / 1000);
  }
  #main main.teemo article section.hero .text_area dl dd ul li:nth-child(3) small {
    line-height: 16px;
    font-size: 12px;
  }
  #main main.teemo article section.hero .icons {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  #main main.teemo article section.hero .icons .charge_icon {
    position: absolute;
    width: 41px;
    height: 58px;
  }
  #main main.teemo article section.hero .icons .charge_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon1 {
    top: 3%;
    left: 74%;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon2 {
    top: 8%;
    left: 37%;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon3 {
    left: 94%;
    bottom: 65%;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon4 {
    bottom: 38%;
    left: 62%;
  }
  #main main.teemo article section.hero p.scroll {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 1;
  }
  #main main.teemo article section.hero p.scroll:after {
    content: "";
    width: 1px;
    height: 100px;
    display: block;
    background: #41C3E1;
    position: absolute;
    left: 50%;
    bottom: 0;
    animation: scroll_line 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  }
  #main main.teemo article section.hero p.scroll span {
    width: 200px;
    display: block;
    transform: rotate(90deg);
    position: relative;
    top: -58px;
    line-height: 20px;
    font-size: 15px;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.about .text h2 {
    font-family: "Roboto";
  }
  #main main.teemo article section.about .large_image {
    width: 50%;
  }
  #main main.teemo article section.about .large_image p.img {
    width: calc(100% + 55px);
    aspect-ratio: 4/3;
    line-height: 0;
  }
  #main main.teemo article section.about .large_image p.img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #main main.teemo article section.point4 .text h2 strong {
    color: #41C3E1;
  }
  #main main.teemo article section.point4 .text dl dt sup {
    font-size: 30%;
    transform: translateY(-7px);
    display: inline-block;
  }
  #main main.teemo article section.point4 .text dl dt small {
    margin-bottom: 48px;
    display: block;
  }
  #main main.teemo article section.point4 .text dl dt small span {
    display: inline-block;
    border-bottom: 5px solid #41C3E1;
    line-height: 32px;
    font-family: "Roboto";
    font-size: 24px;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.point4 .bnr {
    margin-top: 92px;
    padding: 0 50px;
  }
  #main main.teemo article section.point4 .bnr a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
  }
  #main main.teemo article section.point4 .bnr img {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  #main main.teemo article section.hero {
    height: calc(100svh - 170px);
  }
  #main main.teemo article section.hero .inner {
    min-height: calc(100% - 120px);
    max-width: 700px;
  }
  #main main.teemo article section.hero .text_area {
    position: relative;
    margin: 50px 20px;
    z-index: 1;
  }
  #main main.teemo article section.hero .text_area:before {
    content: "";
    width: 150%;
    height: 150%;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    filter: blur(100px);
  }
  #main main.teemo article section.hero .text_area h1 {
    margin: 0 auto 4px auto;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #main main.teemo article section.hero .text_area h1 .kv_title {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
  }
  #main main.teemo article section.hero .text_area h1 img {
    width: 100%;
    height: auto;
  }
  #main main.teemo article section.hero .text_area .kv_text {
    max-width: 100%;
    margin: 40px auto 0 auto;
    position: relative;
  }
  #main main.teemo article section.hero .text_area .kv_text img {
    width: 100%;
  }
  #main main.teemo article section.hero .text_area dl {
    position: relative;
    z-index: 1;
  }
  #main main.teemo article section.hero .text_area dl dt {
    margin-bottom: 18px;
    text-align: center;
    line-height: 26px;
    font-size: 18px;
    font-weight: bold;
    color: #4D4D4D;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost {
    margin: 0 auto 8px auto;
    width: 206px;
    display: block;
    position: relative;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost span, #main main.teemo article section.hero .text_area dl dd span.cost small {
    display: block;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost small {
    padding-top: 2px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 24px;
    font-size: 14px;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost span {
    line-height: 64px;
    font-size: 32px;
  }
  #main main.teemo article section.hero .text_area dl dd span.cost strong {
    font-size: 70px;
  }
  #main main.teemo article section.hero .text_area dl dd ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  #main main.teemo article section.hero .text_area dl dd ul:before {
    content: "";
    width: 83px;
    height: 90px;
    display: block;
    background: url("../image/img_hero_charge.png") no-repeat left center/83px 90px;
  }
  #main main.teemo article section.hero .text_area dl dd ul li {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #41C3E1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 18px;
    text-align: center;
    color: #ffffff;
  }
  #main main.teemo article section.hero .text_area dl dd ul li span, #main main.teemo article section.hero .text_area dl dd ul li small {
    display: block;
  }
  #main main.teemo article section.hero .text_area dl dd ul li small {
    font-size: 12px;
  }
  #main main.teemo article section.hero .text_area dl dd ul li span {
    font-size: 14px;
    letter-spacing: calc(-100em / 1000);
  }
  #main main.teemo article section.hero .text_area dl dd ul li:nth-child(3) small {
    line-height: 14px;
    font-size: 10px;
  }
  #main main.teemo article section.hero .icons {
    width: 70%;
    height: 70px;
    position: absolute;
    bottom: 0;
    left: 15%;
  }
  #main main.teemo article section.hero .icons .charge_icon {
    position: absolute;
    width: 20.5px;
    height: 29px;
  }
  #main main.teemo article section.hero .icons .charge_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon1 {
    bottom: 0;
    right: 0;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon2 {
    bottom: 0;
    left: 0;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon3 {
    top: 0;
    right: 80px;
  }
  #main main.teemo article section.hero .icons .charge_icon.icon4 {
    display: none;
  }
  #main main.teemo article section.hero p.scroll {
    position: absolute;
    right: -70px;
    bottom: 0;
    z-index: 1;
  }
  #main main.teemo article section.hero p.scroll:after {
    content: "";
    width: 1px;
    height: 60px;
    display: block;
    background: #41C3E1;
    position: absolute;
    left: 50%;
    bottom: 0;
    animation: scroll_line 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  }
  #main main.teemo article section.hero p.scroll span {
    width: 200px;
    display: block;
    transform: rotate(90deg);
    position: relative;
    top: -10px;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.about .large_image {
    width: 100%;
  }
  #main main.teemo article section.about .large_image p.img {
    width: 100%;
    aspect-ratio: 4/3;
    line-height: 0;
  }
  #main main.teemo article section.about .large_image p.img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #main main.teemo article section.point4 .row {
    margin-bottom: 84px;
  }
  #main main.teemo article section.point4 div.text {
    padding-top: 0;
  }
  #main main.teemo article section.point4 .text h2 strong {
    color: #41C3E1;
  }
  #main main.teemo article section.point4 .text dl dt small {
    margin-bottom: 23px;
    display: block;
  }
  #main main.teemo article section.point4 .text dl dt small span {
    display: inline-block;
    border-bottom: 3px solid #41C3E1;
    line-height: 30px;
    font-family: "Roboto";
    font-size: 23px;
    font-weight: bold;
    color: #41C3E1;
  }
  #main main.teemo article section.point4 .bnr {
    margin-top: 46px;
  }
  #main main.teemo article section.point4 .bnr a {
    margin: 0 auto;
    max-width: 500px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
  }
  #main main.teemo article section.point4 .bnr img {
    width: 100%;
  }
  #main main.teemo article section.point4 .cv_btn {
    margin-top: 28px !important;
  }
}