@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .tablet {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in, transform 1s ease-out;
  transition-delay: 0.3s;
}
.fade-in.scroll-in {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.fade-in-text {
  transition: opacity 0.5s ease-in, transform 0.5s ease-out;
  transition-delay: 0.3s;
}
.fade-in.fade-in-quickly {
  transition: opacity 0.5s ease-in, transform 0.5s ease-out;
  transition-delay: 0.3s;
}

.fade-in-up {
  animation: fade-in-up 1s ease-in-out forwards;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior: none;
}

body .pc-back-container {
  position: fixed;
  top: 10%;
  left: -4%;
  width: 40%;
}
body .pc-back-container .product-img {
  width: 300px;
}
@media screen and (min-width: 1440px) {
  body .pc-back-container .product-img {
    width: 330px;
  }
}
@media screen and (min-width: 1920px) {
  body .pc-back-container .product-img {
    width: 350px;
  }
}
body .pc-back-container p {
  text-align: center;
  font-size: 14px;
  margin-top: 5%;
}
@media screen and (min-width: 1440px) {
  body .pc-back-container p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .pc-back-container p {
    font-size: 18px;
  }
}
body .pc-back-container p span {
  border: 1px solid #000000;
  padding: 0 4px;
}
body .pc-back-container .point-img {
  width: 250px;
  margin-top: 5%;
}
@media screen and (min-width: 1440px) {
  body .pc-back-container .point-img {
    width: 280px;
  }
}
@media screen and (min-width: 1920px) {
  body .pc-back-container .point-img {
    width: 300px;
  }
}
body .pc-back-container img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body {
    position: relative;
    min-height: 100vh;
    background-image: url("./img/pc_bg@3x.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  body::before, body::after {
    content: "";
    position: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
}
body .wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body .wrapper {
    border-left: 5px solid white;
    border-right: 5px solid white;
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper {
    width: 450px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper {
    width: 750px;
  }
}
@media screen and (min-width: 768px) {
  body .wrapper::before, body .wrapper::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 5px;
    background: white;
    z-index: 1000;
  }
}
@media screen and (min-width: 768px) {
  body .wrapper::before {
    left: calc(50% - 200px);
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper::before {
    left: calc(50% - 225px);
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper::before {
    left: calc(50% - 375px);
  }
}
@media screen and (min-width: 768px) {
  body .wrapper::after {
    right: calc(50% - 200px);
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper::after {
    right: calc(50% - 225px);
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper::after {
    right: calc(50% - 375px);
  }
}
body .wrapper img {
  width: 100%;
}
body .wrapper header {
  position: relative;
  z-index: 1001;
  background: white;
}
@media screen and (min-width: 768px) {
  body .wrapper header {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
body .wrapper header .header-container {
  padding: 1% 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}
@media screen and (min-width: 768px) {
  body .wrapper header .header-container {
    padding: 0.5% 8%;
    width: 90%;
    margin: 0 auto;
  }
}
body .wrapper header .header-container .header-logo,
body .wrapper header .header-container .header-logo2 {
  height: auto;
  display: block;
}
body .wrapper header .header-container .header-logo {
  width: 88%;
}
@media screen and (min-width: 768px) {
  body .wrapper header .header-container .header-logo {
    width: 92%;
  }
}
body .wrapper header .header-container .header-logo2 {
  width: 90%;
  margin-left: 8%;
}
@media screen and (min-width: 768px) {
  body .wrapper header .header-container .header-logo2 {
    width: 85%;
  }
}
body .wrapper main .kv {
  z-index: 5;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
body .wrapper main .kv.hide-sticky {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
}
body .wrapper main .kv .swiper-slide {
  position: relative;
}
body .wrapper main .kv .swiper-slide p {
  position: absolute;
  bottom: 30%;
  left: 4%;
  color: #000000;
  font-size: 3vw;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  body .wrapper main .kv .swiper-slide p {
    font-size: 12px;
  }
}
body .wrapper main .kv .swiper-slide p span {
  border: 1px solid #000000;
  padding: 0 4px;
}
body .wrapper main .kv .swiper-slide .color-white {
  color: #ffffff;
}
body .wrapper main .kv .swiper-slide .color-white span {
  border: 1px solid #ffffff;
}
body .wrapper main .kv .swiper-slide .kv-circle-container {
  position: absolute;
  z-index: 100;
  top: 42%;
  left: 24%;
  width: 17%;
  height: 15%;
}
body .wrapper main .kv .swiper-slide[data-swiper-slide-index="0"] .kv-circle-container {
  top: 42%;
  left: 24%;
}
body .wrapper main .kv .swiper-slide[data-swiper-slide-index="1"] .kv-circle-container {
  top: 56%;
  left: 60%;
}
body .wrapper main .kv .swiper-slide[data-swiper-slide-index="2"] .kv-circle-container {
  top: 45%;
  left: 33%;
}
body .wrapper main .kv .swiper-slide[data-swiper-slide-index="3"] .kv-circle-container {
  top: 40%;
  left: 53%;
}
body .wrapper main .kv .swiper-slide[data-swiper-slide-index="4"] .kv-circle-container {
  top: 44%;
  left: 43%;
}
body .wrapper main .kv .title-img {
  z-index: 6;
  background: #009be1 url(./img/about_bg_pattern_2@3x.png);
  background-size: 118% 100%;
}
body .wrapper main .kv .title-img img {
  opacity: 0;
  width: 90%;
  margin: 2% 10% 0%;
  padding-top: 5%;
}
body .wrapper main .assignment-section {
  z-index: 7;
  margin-top: -1px;
  background-color: #009be1;
  background-image: url(./img/about_bg_pattern@3x.png), url(./img/about_bg_pattern@3x.png), url(./img/about_bg_pattern@3x.png);
}
@media screen and (min-width: 768px) {
  body .wrapper main .assignment-section {
    background-size: 115% 61%, 115% 61%, 115% 61%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 0 0, 0 98%, 0 176.5%;
  }
}
@media screen and (max-width: 767px) {
  body .wrapper main .assignment-section {
    background-size: 115% 61%, 115% 61%, 115% 61%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 0 0, 0 98%, 0 176.5%;
  }
}
body .wrapper main .assignment-section .about-title-section {
  padding-top: 22%;
}
body .wrapper main .assignment-section .about-title-section .about-title-img {
  width: 78%;
  margin: 2% auto 0;
  display: block;
}
body .wrapper main .assignment-section .about-title-section .text-img {
  width: 88%;
  margin: 5% auto 0;
  padding-bottom: 25%;
  display: block;
}
body .wrapper main .assignment-section .about-scenes-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5% 2.5%;
  margin-top: -14%;
  padding: 0 3% 55% 3%;
  min-height: calc(100vh - 200px);
}
body .wrapper main .assignment-section .about-scenes-section span {
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 4.2vw;
  text-align: center;
  margin-top: 5%;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  body .wrapper main .assignment-section .about-scenes-section span {
    font-size: 16px;
  }
}
body .wrapper main .product-section {
  z-index: 8;
  padding: 2% 0 24%;
  background-color: #004da0;
}
body .wrapper main .product-section .bg-deco {
  padding: 16% 0 24%;
  background: url(./img/nobisaro_bg_pattern_prod@3x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .wrapper main .product-section .bg-deco .product-img {
  margin: 5% 8%;
  display: block;
}
body .wrapper main .product-section .bg-deco .product-container {
  margin-top: -20%;
}
body .wrapper main .product-section .bg-deco .product-container .pharmaceuticals-title {
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.5vw;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-section .bg-deco .product-container .pharmaceuticals-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-section .bg-deco .product-container .pharmaceuticals-title {
    font-size: 24px;
  }
}
body .wrapper main .product-section .bg-deco .product-container .pharmaceuticals-title span {
  border: 1px solid #ffffff;
  padding: 1px 3px;
}
body .wrapper main .product-section .bg-deco .features-img {
  width: 95%;
  margin: 14% auto 0;
  display: block;
}
body .wrapper main .product-section .features-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10% 2%;
  margin-top: -14%;
  padding: 0 3%;
}
body .wrapper main .product-section .features-img-grid span {
  display: block;
  font-weight: 500;
  font-size: 4.2vw;
  line-height: 1.8;
  text-align: center;
  margin-top: 8%;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-section .features-img-grid span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-section .features-img-grid span {
    font-size: 26px;
  }
}
body .wrapper main .product-section .annotation {
  display: block;
  font-size: 2.8vw;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  text-align: right;
  margin: 17% 4% -17% 0;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-section .annotation {
    font-size: 10px;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .product-section .annotation {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-section .annotation {
    font-size: 20px;
  }
}
body .wrapper main .product-section .features-img-list {
  margin-top: 20%;
}
body .wrapper main .product-section .features-img-list .feature-item {
  position: relative;
}
body .wrapper main .product-section .features-img-list .feature-item:nth-child(1), body .wrapper main .product-section .features-img-list .feature-item:nth-child(3) {
  background: url(./img/nobisaro_bg_pattern_prod@3x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 10%;
}
body .wrapper main .product-section .features-img-list .feature-item:nth-child(3) {
  margin-top: -10%;
  z-index: -1;
}
body .wrapper main .product-section .features-img-list .feature-item:nth-child(5)::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  bottom: 66%;
  background: url(./img/nobisaro_bg_pattern_prod@3x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
body .wrapper main .product-section .features-img-list .feature-item img {
  display: block;
  width: 95%;
  margin-left: 8%;
}
body .wrapper main .product-section .features-img-list .feature-item p {
  position: absolute;
  bottom: 14%;
  text-align: center;
  font-size: 4vw;
  line-height: 1.8;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-section .features-img-list .feature-item p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-section .features-img-list .feature-item p {
    font-size: 26px;
  }
}
body .wrapper main .product-section .features-img-list .feature-item:nth-child(4) p {
  bottom: 10%;
}
body .wrapper main .product-section .features-img-list .feature-item:nth-child(5) p {
  bottom: 10%;
}
body .wrapper main .product-section .features-img-list::after {
  content: "";
  position: absolute;
  top: 97%;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(./img/nobisaro_bg_pattern_prod@3x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
body .wrapper main .product-advantages-section {
  z-index: 9;
  padding: 8% 0 0;
}
body .wrapper main .product-advantages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: url(./img/package_bg@3x.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-advantages-section::before {
    width: 392px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .product-advantages-section::before {
    width: 442px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-advantages-section::before {
    width: 745px;
  }
}
body .wrapper main .product-advantages-section.sticky-active::before {
  position: fixed;
  top: -2px;
  z-index: 1;
}
body .wrapper main .product-advantages-section > * {
  position: relative;
  z-index: 2;
}
body .wrapper main .product-advantages-section .section-title-img {
  display: block;
  width: 90%;
  margin: 8% auto 0;
}
body .wrapper main .product-advantages-section .product-container-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 6%;
}
body .wrapper main .product-advantages-section .product-container-flex .package-img {
  position: relative;
  flex-grow: 1;
  margin-right: -15%;
  margin: 0 -22% 0 6%;
  z-index: 1;
  width: 68%;
}
body .wrapper main .product-advantages-section .product-container-flex .column {
  position: relative;
  flex-grow: 2;
  flex-direction: column;
  width: 60%;
  z-index: 2;
  margin-top: -14%;
  padding: 0 4%;
}
body .wrapper main .product-advantages-section .product-container-flex .column .eco-block,
body .wrapper main .product-advantages-section .product-container-flex .column .award-block {
  width: 100%;
}
body .wrapper main .product-advantages-section .product-container-flex .column .eco-block {
  text-align: left;
}
body .wrapper main .product-advantages-section .product-container-flex .column .award-block {
  margin-top: 8%;
}
body .wrapper main .product-advantages-section .product-container-flex .column .eco-text {
  width: 72%;
}
body .wrapper main .product-advantages-section .product-container-flex .column .eco-text {
  font-size: 2.8vw;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .eco-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .eco-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .eco-text {
    font-size: 20px;
  }
}
body .wrapper main .product-advantages-section .product-container-flex .column .good-design-text {
  padding: 8% 2%;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .good-design-text {
    font-size: 9px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .good-design-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-advantages-section .product-container-flex .column .good-design-text {
    font-size: 20px;
  }
}
body .wrapper main .product-advantages-section .product-improvement {
  background-color: #009944;
  padding: 8% 3% 12%;
}
body .wrapper main .product-advantages-section .product-improvement:nth-child(4) {
  margin-top: 20%;
}
body .wrapper main .product-advantages-section .product-improvement:nth-child(5) {
  margin: 20% 0;
}
body .wrapper main .product-advantages-section .product-improvement .package-text-img {
  position: absolute;
  top: 22%;
  right: 13%;
  width: 32%;
}
body .wrapper main .product-advantages-section .product-improvement .package-title-img {
  display: block;
  width: 85%;
  margin: 0 auto;
}
body .wrapper main .product-advantages-section .product-improvement .package-img {
  width: 88%;
  margin: 8% auto 0;
  display: block;
}
body .wrapper main .product-advantages-section .product-improvement .compact-img {
  width: 70%;
}
body .wrapper main .product-advantages-section .product-improvement p {
  color: #ffffff;
  font-size: 4.2vw;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1vw;
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-advantages-section .product-improvement p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-advantages-section .product-improvement p {
    font-size: 26px;
  }
}
body .wrapper main .product-lineup-section {
  position: relative;
  z-index: 10;
  padding: 18% 3% 0;
  background-color: #ffffff;
}
body .wrapper main .product-lineup-section .product-logo-img {
  width: 98%;
  margin: 0 auto;
  display: block;
}
body .wrapper main .product-lineup-section .product-img-flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
body .wrapper main .product-lineup-section .product-img-flex .product-img {
  width: 32%;
}
body .wrapper main .product-lineup-section .product-img-flex .product-img p {
  text-align: center;
  margin-top: 15%;
  font-size: 5vw;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-lineup-section .product-img-flex .product-img p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-lineup-section .product-img-flex .product-img p {
    font-size: 24px;
  }
}
body .wrapper main .product-lineup-section .product-text {
  font-size: 3.4vw;
  text-align: center;
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-lineup-section .product-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-lineup-section .product-text {
    font-size: 24px;
  }
}
body .wrapper main .product-lineup-section .product-text span {
  border: 1px solid #000;
  margin-left: 1%;
}
body .wrapper main .product-lineup-section .product-text img {
  width: 18%;
  vertical-align: middle;
}
body .wrapper main .product-lineup-section .product-point-img {
  width: 85%;
  margin: 5% auto 12%;
  display: block;
}
body .wrapper main .product-lineup-section .brand-site-text {
  font-size: 3.8vw;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-lineup-section .brand-site-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-lineup-section .brand-site-text {
    font-size: 24px;
  }
}
body .wrapper main .product-lineup-section .information-text {
  font-family: "M PLUS 1p", sans-serif;
}
body .wrapper main .product-lineup-section button {
  display: block;
  margin: 5% auto 25%;
  padding: 7% 9%;
  background-color: #009be1;
  color: #ffffff;
  font-size: 5vw;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-lineup-section button {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .product-lineup-section button {
    font-size: 28px;
  }
}
body .wrapper main .product-lineup-section hr {
  border: none;
  border-bottom: 1.5px solid #8a8b8a;
  width: 100vw;
  margin-top: 18%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  body .wrapper main .product-lineup-section hr {
    width: 106%;
    margin-left: -3%;
    margin-right: -3%;
  }
}
body .wrapper main .features-container {
  margin-top: 5%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3%;
}
body .wrapper main .features-container .eco-block {
  color: #ffffff;
  width: 47%;
  display: block;
  text-align: center;
}
body .wrapper main .features-container .eco-block .hello-logo-img {
  width: 68%;
}
body .wrapper main .features-container .eco-block .eco-text {
  display: inline-block;
  line-height: 1.3;
  text-align: left;
  width: 64%;
  margin: 2% 0 0 0%;
  font-size: 2.8vw;
}
@media screen and (min-width: 768px) {
  body .wrapper main .features-container .eco-block .eco-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .features-container .eco-block .eco-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .features-container .eco-block .eco-text {
    font-size: 20px;
  }
}
body .wrapper main .features-container .award-block {
  display: flex;
  width: 45%;
  background-color: #ffffff;
}
body .wrapper main .features-container .award-block .award-logo-img {
  width: 45%;
  height: 95%;
  margin: 0 auto;
  padding: 5%;
}
body .wrapper main .features-container .award-block .good-design-text {
  padding: 8% 3.1%;
  margin-right: 2%;
  font-size: 2.4vw;
  line-height: 1.6;
  width: 55%;
}
@media screen and (min-width: 768px) {
  body .wrapper main .features-container .award-block .good-design-text {
    font-size: 9px;
  }
}
@media screen and (min-width: 1440px) {
  body .wrapper main .features-container .award-block .good-design-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper main .features-container .award-block .good-design-text {
    font-size: 20px;
  }
}
body .wrapper main .features-container .award-block .good-design-text span {
  letter-spacing: 2px;
}
body .wrapper footer {
  position: relative;
  z-index: 11;
  padding: 25% 15% 30%;
  background-color: #ffffff;
  text-align: center;
}
body .wrapper footer .footer-links:not(:first-child) {
  margin-top: 5%;
}
body .wrapper footer .footer-links a {
  font-size: 3.8vw;
  color: #004da0;
  display: block;
  margin-top: 5%;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  body .wrapper footer .footer-links a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper footer .footer-links a {
    font-size: 24px;
  }
}
body .wrapper footer .footer-links a:first-child {
  margin-top: 0;
}
body .wrapper footer .footer-links a:hover {
  text-decoration: underline;
}
body .wrapper footer img {
  display: block;
  margin: 8% auto 0;
  width: 62%;
}
body .wrapper footer .footer-company-copy {
  color: #727171;
  display: block;
  margin-top: 10%;
  line-height: 1.6;
  font-size: 2.4vw;
}
@media screen and (min-width: 768px) {
  body .wrapper footer .footer-company-copy {
    font-size: 12px;
  }
}
@media screen and (min-width: 1920px) {
  body .wrapper footer .footer-company-copy {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  body .wrapper .link-click-btn {
    font-family: "M PLUS 1p", sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #009be1;
    display: flex;
    z-index: 100;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  body .wrapper .link-click-btn.fade-in-up {
    opacity: 1;
    transform: translateY(0);
  }
  body .wrapper .link-click-btn.fade-out-down {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease-in, transform 0.6s ease-in;
  }
  body .wrapper .link-click-btn .product-info-text,
  body .wrapper .link-click-btn .purchase-text {
    padding: 5% 3%;
    width: 50%;
    flex: 1;
    font-size: 4.4vw;
    text-align: center;
  }
  body .wrapper .link-click-btn .product-info-text {
    background-color: #ffffff;
  }
  body .wrapper .link-click-btn .purchase-text {
    background-color: #fff100;
  }
}
@media screen and (min-width: 768px) {
  body .wrapper .purchase-btn {
    position: fixed;
    bottom: auto;
    right: 0;
    top: 138px;
    width: 64px;
  }
  body .wrapper .purchase-box {
    padding: 0;
    position: fixed;
    border: 4px solid #fff;
    border-radius: 10px 0 0 10px;
    bottom: auto;
    right: -4px;
    top: 138px;
    transform: translate(120%);
    width: 372px;
    z-index: 100;
  }
  body .wrapper .purchase-box.show {
    transform: translate(0);
    animation: slide-in 0.3s ease forwards;
  }
  body .wrapper .purchase-box.hide {
    transform: translate(120%);
    right: 0;
    animation: slide-out 0.3s ease forwards;
  }
  body .wrapper .purchase-box .purchase-box-inner {
    background-color: #004da0;
    border-radius: 5px 0 0 5px;
    padding: 20px 0 20px 20px;
  }
  body .wrapper .purchase-box .purchase-box-inner .purchase-box-contents {
    background-color: #ffffff;
    border-radius: 5px 0 0 5px;
    padding: 29px 29px 38px 30px;
  }
  body .wrapper .purchase-box .purchase-box-inner .purchase-box-contents .purchase-box-txt {
    margin-bottom: 27px;
    margin-left: auto;
    margin-right: auto;
    width: 256px;
  }
  body .wrapper .purchase-box .purchase-close {
    position: absolute;
    align-items: center;
    background-color: #005ba8;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    height: 34px;
    left: -17px;
    top: -17px;
    width: 34px;
    z-index: 100;
  }
  body .wrapper .purchase-box .purchase-close::before, body .wrapper .purchase-box .purchase-close::after {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    height: 2px;
    width: 18px;
    background-color: #fff;
    transform: rotate(45deg);
  }
  body .wrapper .purchase-box .purchase-close::before {
    transform: rotate(45deg);
  }
  body .wrapper .purchase-box .purchase-close::after {
    transform: rotate(-45deg);
  }
}

.kv-circle-container svg {
  width: 100%;
  height: 100%;
}
.kv-circle-container .circle-path {
  opacity: 0;
}
.kv-circle-container .dot-1,
.kv-circle-container .dot-2,
.kv-circle-container .dot-3,
.kv-circle-container .dot-4,
.kv-circle-container .dot-5,
.kv-circle-container .dot-6,
.kv-circle-container .dot-7,
.kv-circle-container .dot-8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.kv-circle-container .dot-1 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-188.4" stroke-linecap="round" /></svg>') center/contain no-repeat;
  opacity: 0;
}
.kv-circle-container .dot-2 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-219.8" stroke-linecap="round" /></svg>') center/contain no-repeat;
  opacity: 0;
}
.kv-circle-container .dot-3 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-251.2" stroke-linecap="round" /></svg>') center/contain no-repeat;
}
.kv-circle-container .dot-4 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-282.6" stroke-linecap="round" /></svg>') center/contain no-repeat;
}
.kv-circle-container .dot-5 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-314" stroke-linecap="round" /></svg>') center/contain no-repeat;
}
.kv-circle-container .dot-6 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-345.4" stroke-linecap="round" /></svg>') center/contain no-repeat;
}
.kv-circle-container .dot-7 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-376.8" stroke-linecap="round" /></svg>') center/contain no-repeat;
}
.kv-circle-container .dot-8 {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFF100" stroke-width="7" stroke-dasharray="18 233.2" stroke-dashoffset="-408.2" stroke-linecap="round" /></svg>') center/contain no-repeat;
}

.swiper-slide-active .kv-circle-container .dot-1 {
  animation: fade-in 0.2s ease-out 0s forwards;
}
.swiper-slide-active .kv-circle-container .dot-2 {
  animation: fade-in 0.2s ease-out 0.4s forwards;
}
.swiper-slide-active .kv-circle-container .dot-3 {
  animation: fade-in 0.2s ease-out 0.6s forwards;
}
.swiper-slide-active .kv-circle-container .dot-4 {
  animation: fade-in 0.2s ease-out 0.8s forwards;
}
.swiper-slide-active .kv-circle-container .dot-5 {
  animation: fade-in 0.2s ease-out 1s forwards;
}
.swiper-slide-active .kv-circle-container .dot-6 {
  animation: fade-in 0.2s ease-out 1.2s forwards;
}
.swiper-slide-active .kv-circle-container .dot-7 {
  animation: fade-in 0.2s ease-out 1.4s forwards;
}
.swiper-slide-active .kv-circle-container .dot-8 {
  animation: fade-in 0.2s ease-out 1.6s forwards;
}

.js-scroll-overlap:not(.is-disabled) {
  position: sticky;
  top: calc(var(--sticky-offset) + 30px);
  transition: top 0.8s ease-out;
}
.js-scroll-overlap:not(.is-disabled).delayed-sticky {
  top: var(--sticky-offset);
}

.relative {
  position: relative;
}