<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#article_game {
  overflow-x: hidden;
  max-width: 100vw;
}
#article_game .nextStep.greenbox {
  background-position: right 10px center;
  background-image: url(/images/button/arrow2_next_white.svg);
  padding-right: 26px;
  padding: 4px 46px 4px 13px;
  width: 125px;
}
#article_game .greenbox {
  padding: 4px 10px;
  background-color: #00A59B;
  color: white;
  border-radius: 10px;
  text-align: center;
}
#article_game h2.greenbox {
  text-align: center;
  margin: 30px auto;
}
#article_game .btn_start {
  width: 200px;
  margin: 30px auto 20px auto;
  display: block;
  cursor: pointer;
}
#article_game .prevStep {
  border: 1px solid #00A59B;
  padding-left: inherit;
  padding: 4px 10px;
  color: #00A59B;
  border-radius: 10px;
  text-align: center;
  background-image: none;
  width: 115px;
}
#article_game .btn_group {
  display: flex;
  gap: 10px;
  align-items: center;
}
#article_game .btn_group &gt; * {
  display: inline-block;
}
@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomLoop2 {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
  100% {
    filter: brightness(1);
  }
}
@keyframes eye2 {
  0% {
    filter: brightness(1.5);
  }
  100% {
    filter: brightness(1);
  }
}
#eyePart * {
  -webkit-user-drag: none;
}
#eyePart #eyes {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  position: relative;
}
#eyePart #eyes &gt; * {
  position: absolute;
  top: 0;
  width: 100%;
  user-select: none;
}
#eyePart #eyes.win .eye1 {
  display: none;
}
#eyePart #eyes.win .eye2 {
  display: block;
  animation: eye2 1s forwards;
}
#eyePart .wordbox {
  display: block;
  background-color: #F6921E;
  border-radius: 18px;
  color: white;
  text-align: center;
  padding: 12px 44px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  line-height: 1.2em;
  margin-bottom: 20px;
  user-select: none;
}
#eyePart .wordbox img {
  position: absolute;
}
#eyePart .wordbox .click {
  left: -34px;
  height: 90px;
  bottom: -7px;
}
#eyePart .wordbox .product1 {
  height: 150px;
  right: -10px;
  bottom: -15px;
  cursor: move;
}
#eyePart .wordbox .product1.dragging {
  cursor: move;
}
#eyePart .wordbox .product1:not(.dragging) {
  animation: zoomLoop 0.7s infinite;
}
#eyePart .wordbox .product2 {
  right: -20px;
  height: 185px;
  bottom: -29px;
}
#eyePart .eye2,
#eyePart .wordbox {
  display: none;
}
#eyePart #word1 {
  padding: 14px 44px 14px 32px;
  margin-left: 19px;
}
#eyePart #word2 {
  padding-right: 60px;
  animation: zoomLoop2 1s infinite;
  cursor: pointer;
}
#gamePart {
  max-width: 500px;
  margin: 0 auto;
}
#introText {
  height: 90px;
}
#introText #gameEndText {
  display: none;
  margin: auto;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
}
#introText #gameEndText li {
  list-style: initial;
}
#introText #gameEndText li sup {
  font-size: 9px;
}
#mini_tnc {
  font-size: 6px;
  display: none;
}
#resultPart {
  display: none;
}
#resultPart .result_btn {
  display: block;
  margin: 20px auto;
  color: white;
  background-color: #00A59B;
  border-radius: 18px;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  min-width: 280px;
  text-align: center;
  width: fit-content;
}
</pre></body></html>