@charset "UTF-8";

/* ==========================================================================
   Variables (変数定義)
   ========================================================================== */
:root {
  --c-pink-main: #ffb1d7;
  --c-pink-light: #ffdced;
  --c-pink-dark: #ff40b4;
  --c-text-pink: #ff66a6;
  --c-white: #ffffff;
  --c-bg-dark: #333;
  --c-text-main: #333;
}

/* ==========================================================================
   Base & Common
   ========================================================================== */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--c-text-main);
}

.bg-wrapper {
  position: relative;
  background: var(--c-pink-main);
}

.lp-container {
  position: relative;
  overflow-x: hidden;
  z-index: 2;
  margin: 0 auto;
  max-width: 650px;
  background-color: var(--c-pink-light);
  width: 100%;
  padding-bottom: 50px;
}

.lp-inner {
  width: 100%;
  margin: auto;
}

.section-wrapper {
  background: var(--c-white);
  border-radius: 25px;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  padding: 50px 0;
}

.section {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  padding: 0 15px;
}

/* --- Section Titles --- */
.sec-title {
  font-size: 2.8rem;
  position: relative;
  padding: 0 15px;
  color: var(--c-text-pink);
  text-align: center;
  font-weight: bold;
  margin-bottom: 35px;
}

.sec-title img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 25px auto;
}

.sec-title p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  color: var(--c-text-pink);
  margin-bottom: 5%;
}

/* HTMLから移行したスタイル */
.text-shadow-light {
  text-shadow: 0 0 3px #e1e1e1;
}

@media screen and (max-width: 798px) {
  .fs-l-main {
    padding: 0 0 0px;
}
  .lp-container {
    max-width: 100%;
    padding: 0 0 50px;
  }

  .lp-inner {
    width: 95%;
  }

  .section-wrapper {
    padding: 35px 0;
    margin-top: 50px;
  }

  .sec-title p {
    font-size: 1.6rem;
  }

  .sec-title img {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 498px) {
  .sec-title {
    font-size: 2.2rem;
  }

  .sec-title p {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Animations & GSAP Helpers
   ========================================================================== */
.fade-up,
.fade-up-two,
.fade-left,
.fade-right,
.fade-zoom-in,
.fade-zoom-out,
.fade-blur {
  opacity: 0;
}

.fade-up,
.fade-up-two {
  transform: translateY(50px);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-zoom-in {
  transform: scale(0.92);
  transform-origin: center;
}

.fade-zoom-out {
  transform: scale(1.08);
  transform-origin: center;
}

.fade-blur {
  filter: blur(10px);
}

.js-stagger-zoom img {
  opacity: 0;
  transform: translateY(-150px);
}

.js-scroll-reveal {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   Header & Key Visual
   ========================================================================== */
.header-fix {
  position: relative;
  width: 100%;
  max-width: 850px;
  z-index: 100;
  height: 75px;
  top: 0;
  background-color: var(--c-pink-light);
}

.header-fix img {
  position: absolute;
  width: 100%;
  max-width: 375px;
  left: 35%;
  transform: translateX(-50%);
}

.key-visual {
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.key-visual__images {
  margin-bottom: 165px;
  width: 100%;
}

.key-visual__image {
  display: block;
  width: 100%;
  position: relative;
}

.kv-img {
  box-shadow: 0px 13px 7px -5px rgba(233, 30, 99, 0.25);
}

.key-bottom {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -13%;
  width: 100%;
}

.key-bottom img {
  width: 100%;
  display: block;
  margin: auto;
  max-width: 75%;
}

@media screen and (max-width: 798px) {
  .header-fix {
    height: 95px;
  }

  .header-fix img {
    max-width: 80%;
    left: 5px;
    transform: translateX(0px);
  }

  .key-visual__image {
    margin-bottom: 75px;
  }

  .key-visual__images {
    margin-bottom: 20px;
  }

  .key-bottom {
    bottom: -10%;
  }
}

/* ==========================================================================
   Side Panels (PC Backgrounds)
   ========================================================================== */
.side-panels {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
  width: calc((100% - 650px) / 2);
}

.side-panels__panel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  margin-top: 100px;
}

.side-panels img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 25px;
}

@media screen and (max-width: 798px) {
  .side-panels {
    display: none;
  }
}

/* ==========================================================================
   Buttons & CTA (Call To Action)
   ========================================================================== */
/* 共通ボタンスタイル (PCサイドパネル & 各セクション内リンク) */
.side-panels__panel a,
.twinkle__link a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.side-panels__panel a {
  padding: 10px 40px;
  display: inline-block;
  background: linear-gradient(135deg, #ff57a3, #ffc2f5);
  box-shadow: 0 4px 15px rgba(240, 98, 192, 0.4);
}

.twinkle__link a {
  font-size: 2.4rem;
 padding: 20px 65px;
  margin: 50px auto 75px;
  width: max-content;
  background: linear-gradient(135deg, #ff57a3, #ffa5f0);
  box-shadow: 0 4px 15px rgba(240, 98, 192, 0.4);
}

.side-panels__panel a:hover,
.twinkle__link a:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 20px rgba(240, 98, 192, 0.6);
}

/* キラッと走る光の筋 */
.side-panels__panel a::before,
.twinkle__link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* ★の瞬き */
.side-panels__panel a::after,
.twinkle__link a::after {
  content: "★";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 10px;
  color: #fff;
  opacity: 0;
  animation: star-blink 2s infinite;
}

.twinkle__link img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 25px;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes star-blink {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* SP用固定CTA */
.sp-cta {
  display: none;
}

@media screen and (max-width: 798px) {
  .sp-cta {
    position: fixed;
    bottom: 15px;
    display: flex;
    margin: auto;
    z-index: 999;
    transform: translateX(-50%);
    left: 50%;
  }

  .sp-cta a {
    background: linear-gradient(135deg, #ff57a3, #faa0eb);
    box-shadow: 0 4px 15px rgba(240, 98, 192, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--c-white);
    display: block;
    font-size: 16px;
    padding: 20px 0px 20px 15px;
    border-radius: 25px;
    width: 330px;
    position: relative;
    text-decoration: none;
  }

  .sp-cta a .sp-cta-item {
    position: absolute;
    right: 5px;
    top: 44%;
    transform: translateY(-50%) rotate(64deg);
    width: 70px;
  }
}

@media screen and (max-width: 798px) {
.twinkle__link a {
 padding: 10px 65px;
}
}

/* ==========================================================================
   Sections Contents
   ========================================================================== */

/* --- Lead --- */
.lead {
  margin-bottom: 10%;
}

.tt-lead__inner {
  position: relative;
  padding: 0 15px;
}

.tt-lead__inner p {
  text-align: center;
  margin-bottom: 35px;
  font-size: 21px;
  text-shadow: 0 0 1px;
}

@media screen and (max-width: 798px) {
  .tt-lead__inner {
    padding: 0px;
}
  .tt-lead__inner p {
    font-size: 1.6rem;
  }
}

/* --- Design --- */
.tt-design {
  position: relative;
  padding-bottom: 5%;
}

.tt-design__inner {
  position: relative;
  padding: 15% 0 0;
  text-align: center;
}

.tt-design__inner p {
  text-align: center;
  margin-bottom: 35px;
  font-size: 21px;
  text-shadow: 0 0 1px;
}

.point-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
}

.point-area img {
  width: 100%;
}

.tt-design__img {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

.tt-design__img img {
  width: 100%;
}

.tt-design__star {
    position: absolute;
    right: 0;
    top: 0;
    width: 135px;
    height: 135px;
}

@media screen and (max-width: 798px) {
  .point-area {
    top: -10px;
    width: 125px;
  }

  .tt-design__inner p {
    font-size: 1.6rem;
  }

  .tt-design__star {
    top: -10px;
  }

  .tt-design__star img {
    width: 70px;
  }
}

@media screen and (max-width: 498px) {
  .tt-design__img {
    margin-bottom: 75px;
  }
}



/* --- Customize --- */
.tt-customize__lead {
  position: relative;
  font-size: 4rem !important;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15rem;
  margin: 5% 0 7%;
}

.tt-customize__lead .bg-yellow {
  font-size: 4.6rem;
  background-color: #ffff39;
  color: #ff3b86;
  padding: 0 10px;
}

.tt-customize__lead .under-purple {
  color: #ff2789;
  font-size: 4rem;
  padding: 0 5px;
  background: linear-gradient(transparent 70%, #ffdbed 60%);
}

.tt-customize__lead .bold {
  font-size: 4rem;
}

.tt-customize__img {
  margin: 25px 0;
}

.tt-customize__inner p {
  text-align: center;
  margin-bottom: 10%;
  font-size: 2.4rem;
  text-shadow: 0 0 1px;
}

@media screen and (max-width: 798px) {
  .tt-customize__lead {
    font-size: 2rem !important;
    /*  padding: 0 15px; */
  }

  .tt-customize__inner p {
    font-size: 1.6rem;
  }

  .tt-customize__lead .bg-yellow {
    font-size: 2.8rem;
    padding: 0 5px;
  }
.tt-customize__lead .under-purple {
     font-size: 3rem;
}
  .tt-customize__lead .bold {
    font-size: 2.4rem;
  }
}

/* --- Charm --- */
.tt-charm {
  position: relative;
  padding-top: 10%;
}

.tt-charm__charm {
  position: absolute;
  top: 0;
  left: 5%;
  width: 200px;
}

.tt-charm__inner {
  position: relative;
  padding: 0 5%;
}

/* HTMLのulに対応 */
.tt-charm__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-charm__block {
  margin-bottom: 10%;
}

.tt-charm__block img {
  width: 100%;
}

@media screen and (max-width: 798px) {
  .tt-charm__charm {
    width: 125px;
  }

  .tt-charm__inner {
    padding: 0;
  }
}

/* --- Color Lineup --- */
.tt-color-lineup__inner {
  position: relative;
  padding-bottom: 50px;
}

.tt-color-lineup__lead {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
}

.tt-color-lineup__img {
  padding: 5%;
}

/* HTMLのulに対応 */
.tt-color-lineup__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-color-lineup__block {
  width: 80%;
  margin: 5px auto 75px;
}

.tt-color-lineup__block p {
  text-align: center;
  font-weight: bold;
  padding: 0 7px;
  font-size: 2.4rem;
  width: max-content;
  margin: 0 auto 45px;
  background: linear-gradient(transparent 60%, #ffe9f2 60%);
}

.tt-color-lineup__block img {
  border-radius: 55px;
  border: 2px solid rgba(243, 174, 197, 0.54);
  box-shadow: 0 0 3px 3px rgb(255 182 206 / 48%);
}

@media screen and (max-width: 798px) {
  .tt-color-lineup__inner {
  padding-bottom: 0px;
}
  .tt-color-lineup__lead {
    font-size: 2.4rem;
  }

  .tt-color-lineup__block {
    width: 90%;
    margin: 5px auto 25px;
  }

  .tt-color-lineup__block p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .tt-color-lineup__img {
    padding: 15px 0;
  }

  .tt-color-lineup__block img {
    box-shadow: 0 0 5px rgba(255, 182, 206, 0.82);
  }
}

/* --- Color Select --- */
.tt-color-select__inner {
  position: relative;
}

.tt-color-select__img-sel {
  margin-bottom: 5%;
}

.tt-color-select__inner p {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.4rem;
  text-shadow: 0 0 1px;
}

.tt-color-select__img-use {
  margin: 50px auto;
}

@media screen and (max-width: 798px) {
  .tt-color-select__inner p {
    font-size: 1.6rem;
  }
}

/* --- Case --- */
.tt-case {
  position: relative;
}

.tt-case__inner p {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.4rem;
  text-shadow: 0 0 1px;
}

.tt-case__subtitle {
  text-shadow: 0 0 3px #e1e1e1;
}

.tt-case__subtitle p {
  font-size: 3.4rem;
}

.tt-case__case {
  position: relative;
  width: 100%;
  padding-left: 0px;
}

.tt-case__case img {
  width: 100%;
  max-width: 225px;
}

.tt-case__case-list {
  margin: 15px auto 50px;
  width: 100%;
  max-width: 700px;
}

.tt-case__case-list img {
  width: 100%;
  display: block;
  box-shadow: 3px 3px 6px #ac9f9f;
}

/* HTMLのulに対応 */
.tt-case__case-list-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1%;
  margin: 50px 0;
  padding: 0 15px;
  list-style: none;
}

.tt-case__blocks {
  width: 49%;
  margin-bottom: 15px;
}

.tt-case__blocks img {
  width: 100%;
  display: block;
}

.tt-case__link a {
  width: max-content;
  display: block;
  font-size: 2.4rem;
  margin: 25px auto 50px;
  text-decoration: none;
  padding: 15px 35px;
  background-color: #ff57a3;
  color: var(--c-white);
  font-weight: bold;
  box-shadow: 4px 6px 0px 1px #b2b2b2;
  border-radius: 5px;
  /* 少し角丸を追加（任意） */
}

@media screen and (max-width: 798px) {
  .sec-title.tt-case__subtitle p{
    font-size: 2.2rem;
  }
  .tt-case__inner p {
    font-size: 1.6rem;
  }

  .tt-case__case {
    padding-left: 0;
  }

  .tt-case__case img {
    max-width: 125px;
  }

  .tt-case__case-list {
    margin: 10px auto 50px;
  }

  .tt-case__case-list-contents {
    padding: 0;
    margin-bottom: 0;
  }

  .tt-case__link a {
    box-shadow: 8px 7px 3px 2px #b2b2b2;
  }
}

@media screen and (max-width: 458px) {
  .tt-case__link a {
    font-size: 2rem;
    width: initial;
  }
}

/* --- Cloud --- */
.tt-cloud {
  padding: 50px 0;
}

.tt-cloud__inner {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/cloud-bg.jpg);
  height: 785px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cloud-heading {
  padding-top: 20%;
  margin: auto;
}

.cloud-heading img {
  width: 90%;
  display: block;
  margin: auto;
}

.cloud-list {
  width: 100%;
  max-width: 760px;
  margin: auto;
  padding-left: 5px;
  list-style: none;
  /* HTMLのulに対応 */
}

.cloud-list li {
  display: flex;
  padding-left: 35px;
  gap: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.cloud-list__check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-list li img {
  width: 50px;
}

.cloud-list__text {
  border-bottom: 2px dashed #b9b9b9;
}

@media screen and (max-width: 798px) {
  .tt-cloud__inner {
    height: 500px;
    background-size: cover;
  }

  .cloud-heading {
    padding-top: 30%;
  }

  .cloud-heading img {
    width: 80%;
    display: block;
    margin: auto;
  }

  .cloud-list li {
    gap: 10px;
    padding: 25px 0 15px 10px;
  }

  .cloud-list__text {
    font-size: 1.4rem;
  }

  .cloud-list li img {
    width: 25px;
  }
}

/* --- Flutter --- */
.tt-flutter {
  position: relative;
}

.tt-flutter__inner {
  /*   padding-bottom: 50px; */
}

.tt-flutter__inner .sec-title p {
  font-size: 3.4rem;
}

.tt-flutter__inner p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  /* font-size: 24px; */
  font-size: 2.4rem;
  text-shadow: 0 0 1px;
}

.tt-flutter__img {
  margin: 0 auto 10%;
  width: 90%;
}

.tt-flutter__img img {
  box-shadow: 3px 3px 6px #ac9f9f;
  width: 100%;
  display: block;
}

.tt-flutter__img.tt-flutter__text img {
  box-shadow: none;
}

@media screen and (max-width: 798px) {
  .tt-flutter__inner .sec-title p {
    font-size: 2.6rem;
}
  .tt-flutter__inner p {
    font-size: 1.6rem;
  }

  .tt-flutter__img {
    margin: 0 auto 7%;
  }
}

/* ==========================================================================
   Stars (Animations & Positioning)
   ========================================================================== */
.star-common {
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: image-float 2s infinite ease-in-out;
  will-change: transform, filter;
  z-index: 99;
}

@keyframes image-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* 各星の個別配置設定 */
.star-1 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_01.png);
  top: 35%;
  left: 10%;
  animation-delay: 0s, 0s;
}

.star-2 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_02.png);
  width: 40px;
  height: 40px;
  top: 0%;
  right: 10%;
}

.star-3 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_03.png);
  width: 25px;
  top: 0;
  left: 10%;
  animation-delay: -3.0s, -2.0s;
}

.star-4 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_04.png);
  top: 0;
  right: 0;
  width: 100%;
}

.star-5 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_05.png);
  top: 0%;
  left: 0%;
  width: 100px;
  height: 100px;
  animation-delay: -0.2s, -0.8s;
}

.star-6 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_06.png);
  bottom: -55px;
  left: 0;
}

.star-7 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_07.png);
  bottom: -15px;
  right: 15%;
}

.star-8 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_06.png);
  left: 5%;
  top: 6%;
}

.star-9 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_02.png);
  right: 10%;
  top: -5%;
  width: 30px;
  height: 30px;
}

.star-10 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_10.png);
  right: 12%;
  top: -3%;
  width: 55px;
  height: 55px;
}

.star-11 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_02.png);
  left: 5%;
  top: 30%;
}

.star-12 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_08.png);
  left: 10%;
  top: 32%;
  width: 100px;
  height: 100px;
  transform: rotate(316deg) !important;
  animation: none;
}

.star-13 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_07.png);
  right: 7%;
  top: 55%;
  width: 60px;
  height: 60px;
}

.star-14 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_06.png);
  left: 5%;
  width: 65px;
  height: 65px;
}

.star-15 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_08.png);
  right: 5%;
  top: -1%;
  transform: rotate(110deg) !important;
  animation: none;
  width: 100px;
  height: 100px;
}

.star-16 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_03.png);
  right: 10%;
  top: 5%;
  width: 30px;
  height: 30px;
}

.star-17 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_08.png);
  right: 5%;
  bottom: 15px;
  transform: rotate(120deg) !important;
  animation: none;
  width: 100px;
  height: 100px;
}

.star-18 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_01.png);
  right: 5%;
  bottom: 40%;
}

.star-19 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_06.png);
  left: 5%;
  top: 0%;
}

.star-20 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_07.png);
  right: 10%;
  top: 0%;
}

.star-21 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_10.png);
  right: 15%;
  top: 0%;
  width: 30px;
  height: 30px;
}

.star-22 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_03.png);
  left: 15%;
  width: 30px;
  height: 30px;
  bottom: -50px;
}

.star-23 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_06.png);
  left: 5%;
  top: 1%;
}

.star-24 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_08.png);
  right: 5%;
  top: 0;
}

.star-25 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_10.png);
  left: 7%;
  bottom: 15%;
  width: 30px;
  height: 30px;
}

.star-26 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_03.png);
  right: 8%;
  bottom: 18%;
  width: 25px;
  height: 25px;
}

.star-27 {
  background-image: url(https://foula.itembox.cloud/item/images/lp/img/twinkle_tweezer/stars_07.png);
  right: 5%;
  bottom: 15%;
  width: 35px;
  height: 35px;
}

@media screen and (max-width: 798px) {
  .star-1 {
    left: 3%;
    width: 30px;
    height: 30px;
  }

  .star-2 {
    width: 25px;
    height: 25px;
    right: 5%;
  }

  .star-3 {
    left: 5%;
  }

  .star-5 {
    left: 5%;
    width: 60px;
    height: 60px;
  }

  .star-6 {
    bottom: -75px;
    width: 25px;
    height: 25px;
    left: 5%;
  }

  .star-7 {
    bottom: 0;
    right: 3%;
    width: 25px;
    height: 25px;
  }

  .star-8 {
    width: 20px;
    height: 20px;
  }

  .star-9 {
    right: 5%;
    top: -5%;
    width: 15px;
    height: 15px;
  }

  .star-10 {
    right: 8%;
    top: -3%;
    width: 30px;
    height: 30px;
  }

  .star-11 {
    left: 3%;
    top: 25%;
    width: 20px;
    height: 20px;
  }

  .star-12 {
    left: 8%;
    top: 26%;
    width: 60px;
    height: 60px;
  }

  .star-13 {
    right: 5%;
    top: 55%;
    width: 30px;
    height: 30px;
  }

  .star-14 {
    left: 3%;
    width: 30px;
    height: 30px;
  }

  .star-15 {
    right: 0;
    top: -2%;
    transform: rotate(120deg) !important;
    width: 50px;
    height: 50px;
  }

  .star-16 {
    right: 3%;
    top: 6%;
    width: 25px;
    height: 25px;
  }

  .star-17 {
    width: 55px;
    height: 55px;
  }

  .star-18 {
    bottom: 45%;
    width: 25px;
    height: 25px;
  }

  .star-19 {
    left: 7%;
    width: 30px;
    height: 30px;
  }

  .star-20 {
    right: 0;
    width: 35px;
    height: 35px;
  }

  .star-21 {
    right: 0;
  }

  .star-22 {
    left: 0;
    width: 25px;
    height: 25px;
    bottom: -40px;
  }

  .star-23 {
    top: -2%;
    width: 20px;
    height: 20px;
  }

  .star-24 {
    top: -5%;
  }

  .star-25 {
    left: 5%;
    bottom: 15%;
    width: 25px;
    height: 25px;
  }

  .star-26 {
    right: 10%;
    bottom: 22%;
    width: 15px;
    height: 15px;
  }

  .star-27 {
    bottom: 18%;
    width: 30px;
    height: 30px;
  }
}