/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/**********
 * style css
 **********/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  /* メインカラムの幅 */
  --white: #fff;

  /* color */
  --content-width: 450px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}

img {
  height: auto;
  width: 100%;
}

.page-bg {
  background: url("../img/page-bg.svg") no-repeat center bottom / cover;
  height: 100vh;
  width: 100%;
}

.page-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.center-contents {
  background: var(--white);
  flex: 0 0 auto;
  overflow: auto;
  position: relative;
  width: min(100%, var(--content-width));
  z-index: 10;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

.center-contents::-webkit-scrollbar {
  display: none;
}

.left-contents,
.right-contents {
  align-items: center;
  display: flex;
  flex: 1 1 0%;
  height: 100vh;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.right-contents .page-navi {
  width: min(100%, 320px);
}

.right-contents .page-navi li {
  margin-bottom: 30px;
  width: 100%;
}

.right-contents .page-navi li a {
  background: #fffbcf;
  border-radius: 25px;
  box-sizing: border-box;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  transition: all 0.3s;
  width: 100%;
}

.right-contents .page-navi li a img {
  height: 20px;
  width: auto;
  margin: 0 15px;
}

.right-contents .page-navi li a::before,
.right-contents .page-navi li a::after {
  background: url(../img/button-icon.svg) no-repeat center center / contain;
  content: "";
  display: block;
  height: 15px;
  transform: rotate(0turn);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 15px;
}

.right-contents .page-navi li a:hover {
  transition: all 0.3s;
}

.right-contents .page-navi li a:hover::before,
.right-contents .page-navi li a:hover::after {
  transform: rotate(0.99turn);
}

.right-contents .page-navi .button01 {
  transform: translate(-20px) rotate(-5deg);
}

.right-contents .page-navi .button02 {
  transform: rotate(-3deg);
}

.right-contents .page-navi .button03 {
  transform: translate(-10px, 5px) rotate(2deg);
}

.right-contents .page-navi .button04 {
  transform: translate(-25px, 5px) rotate(-3deg);
}

.right-contents .page-navi .button05 {
  transform: translate(5px, 10px) rotate(3deg);
}

/* Animation */
@-webkit-keyframes pikopiko {
  0% {
    rotate: -3deg
  }

  50% {
    rotate: 3deg
  }

  to {
    rotate: -3deg
  }
}

@keyframes pikopiko {
  0% {
    rotate: -3deg
  }

  50% {
    rotate: 3deg
  }

  to {
    rotate: -3deg
  }
}

/* =========================
 * campaign style add-on
 * =======================*/
.site-logo-link {
  display: block;
  margin: 0 auto;
  width: min(100%, 220px);
}

.site-logo-image {
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.12));
}

.hero-title-image {
  display: block;
}

.section-title {
  overflow: hidden;
  position: relative;
}

.hero-lottery-text {
  overflow: hidden;
  padding: 0 20px;
  position: relative;
}

.hero-lottery-text img {
  position: relative;
  z-index: 2;
}

.hero-lottery-text::before {
  background: #f39800;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-lottery-text::after,
.prizes-flow-title.section-title::after {
  background: linear-gradient(115deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.85) 48%,
      rgba(255, 255, 255, 0) 66%);
  content: "";
  height: 160%;
  left: -45%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -30%;
  transform: translateX(-140%) rotate(10deg);
  width: 45%;
  z-index: 3;
}

.hero-lottery-text.is-shining::after,
.prizes-flow-title.section-title.is-shining::after {
  animation: lotteryShine 0.9s ease-out 1;
}

.entry-section .prizes-flow-title.section-title.is-shining::after,
.modal-entry-section .prizes-flow-title.section-title.is-shining::after {
  animation-duration: 1.4s;
}

@keyframes lotteryShine {
  0% {
    opacity: 0;
    transform: translateX(-140%) rotate(10deg);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) rotate(10deg);
  }
}

.hero-limit {
  background: #fff;
  padding: 10px 14px 12px;
}

.hero-limit img {
  display: block;
  margin: 0 auto;
}

.prizes-section {
  margin-top: 8px;
  overflow: hidden;
}

.prizes-main {
  border-top: 0;
}

.prizes-main-header {
  background: url("../img/banner-bg.svg") no-repeat center top / contain;
  margin-top: 20px;
  padding-bottom: 24px;
  position: relative;
}

.prizes-main-header .section-title {
  padding: 0 10px;
  position: relative;
  top: -15px;
}

.section-description {
  bottom: 25px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 800;
  left: 0;
  line-height: 1.4;
  padding: 2px 4px 12px;
  position: absolute;
  text-align: center;
  width: 100%;
}

.prize-list {
  padding: 10px 15px 0;
}

.prize-item {
  background: url("../img/dot-line.svg") no-repeat center bottom / 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.prize-label {
  display: flex;
}

.prize-label img {
  height: 100%;
  object-fit: contain;
}

.prize-body {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.prize-image img {
  border: 1px solid #ddd;
}

.prize-text {
  flex: 1;
  font-weight: 900;
  line-height: 1.2;
}

.prize-text p {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.prize-text span {
  display: block;
  font-size: 21px;
  margin-top: 6px;
}

.prize-item-a .prize-image {
  width: 60%;
}

.prize-item-a .prize-text {
  width: 40%;
}

.prize-item-a .prize-text p {
  font-size: 27px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  text-align: right;
}

.prize-item-a .prize-text p span {
  font-size: 16px;
  letter-spacing: 0;
}

.prize-item-b .prize-body {
  align-items: center;
}

.prize-item-b .prize-image {
  width: 55%;
}

.prize-item-b .prize-text {
  width: 45%;
}

.prize-item-b .prize-text p {
  font-size: 25px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.prize-item-b .prize-text p span {
  font-size: 16px;
  letter-spacing: 0;
  text-align: right;
}

.prize-item-c .prize-body {
  align-items: center;
}

.prize-item-c .prize-image {
  width: 35%;
}

.prize-item-c .prize-text {
  width: 45%;
}

.prize-item-c .prize-brand,
.prize-item-d .prize-brand {
  text-align: center;
  width: 20%;
}

.prize-item-c .prize-brand span {
  font-size: 16px;
  font-weight: 900;
}

.prize-item-c .prize-text p {
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.prize-item-d .prize-body {
  align-items: center;
}

.prize-item-d .prize-image {
  width: 35%;
}

.prize-item-d .prize-text {
  width: 45%;
}

.prize-item-d .prize-text span {
  font-size: 16px;
  letter-spacing: 0;
  padding-left: 75px;
}

.prize-item-d .prize-brand span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
}

.prize-item.prize-item-a .external-link {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0 3px;
  text-align: right;
  text-decoration: none;
}

.prizes-sub {
  width: 100%;
}

.prizes-sub .quo-trigger {
  cursor: zoom-in;
}

.prizes-sub .quo-illust-source {
  display: none;
}

@media (max-width: 450px) {

  .prize-item-a .prize-text p,
  .prize-item-b .prize-text p,
  .prize-item-c .prize-text p,
  .prize-item-d .prize-text p {
    font-size: 20px;
  }

  .prize-item-a .prize-text p br,
  .prize-item-b .prize-text p br,
  .prize-item-c .prize-text p br,
  .prize-item-d .prize-text p br {
    display: none;
  }

  .prize-item-a .prize-text p {
    text-align: left;
  }

  .prize-item-a .prize-text p span {
    text-align: right;
  }

  .prize-item-d .prize-text span {
    text-align: right;
  }
}

.note-text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5px;
  text-align: center;
}

.entry-section {
  background-color: #fff;
  margin-top: 12px;
  padding: 0 0 18px;
  position: relative;
}

.entry-section::before {
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-top: 60px solid #ec008c;
  content: '';
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
}

.entry-flow-box {
  /* 背景色の設定 */
  background-color: #ffe100;

  /* ドットを描画する設定 */
  background-image: radial-gradient(#f4b52b 28%, transparent 28%),
    radial-gradient(#f4b52b 28%, transparent 28%);

  background-position: 0 0, 8px 8px;

  /* ドットの大きさを設定 */
  background-size: 16px 16px;

  /* 2枚目の背景を半分ずらして互い違いにする */
  clip-path: polygon(0% 0%, 0% 0%, 50% 100px, 100% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 20px;
  position: relative;
}

.entry-section .section-title,
.modal-entry-section .section-title {
  align-items: center;
  background: #fffbc7;
  clip-path: polygon(0% 0%, 0% 5%, 50% 105px, 105% 0%, 100% 0%, 100% 100%, 0% 100%);
  color: #ec008c;
  display: flex;
  font-size: 60px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0;
  padding: 120px 0 22px;
  text-align: center;
  transition: clip-path 0.3s ease;
}

.entry-notes {
  background: #fffbc7;
  font-size: 11px;
  line-height: 1.6;
  padding: 0 20px 20px;
}

.entry-notes .external-link {
  color: #000;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.entry-notes .external-link:hover {
  text-decoration: underline;
}

.entry-note-item {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.entry-note-item::before {
  content: "●";
  left: 0;
  position: absolute;
  top: 0;
}

.entry-note-item span {
  color: #e60012;
  font-weight: 900;
}

.entry-flow-list {
  background: #fffbc7;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 20px;
}

.entry-flow-item span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 4px;
  text-align: center;
}

.magnifying-glass {
  background: #fffbc7;
  padding: 0 20px 20px;
}

.magnifying-glass a {
  background: var(--white);
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 5px;
  border: 2px solid #000;
  border-radius: 5px;
}

.target-products {
  margin-top: 16px;
  padding: 0 20px;
}

.application-sticker {
  margin-top: 10px;
  padding: 0 20px;
}

.download-area {
  margin-top: 10px;
  position: relative;
}

.download-area::before {
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-top: 38px solid #f39a00;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.download-area::after {
  background: #ffe893;
  content: "";
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.download-link-wrap {
  background: url("../img/banner-bg.svg") no-repeat top 48px center / contain;
  padding: 60px 0;
}

.download-link {
  background: #004098;
  border: 6px solid #4fb3ff;
  border-radius: 14px;
  color: #fff;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 340px;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.download-link:hover,
.tel-image-wrap a:hover,
.tel-image-wrap a:focus-visible {
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 #1B85FB;
  }

  70% {
    box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
  }
}

.address-box-wrap {
  padding: 0 12px;
}

.address-box {
  background: #fff;
  border: 4px solid #3b78a9;
  margin: 0 auto;
  padding: 12px 5px;
  position: relative;
  text-align: center;
}

.address-title {
  background: var(--white);
  color: #114b84;
  font-size: 20px;
  font-weight: 900;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.address-body {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 8px;
}

.address-body span {
  font-size: 22px;
  letter-spacing: -0.08em;
}

.tel-image-wrap {
  padding: 12px;
}

.tel-image-wrap a {
  border-radius: 8px;
  display: block;
  overflow: hidden;
}

.tel-image-wrap a img {
  display: block;
}

.page-footer {
  padding: 14px 0 22px;
  text-align: center;
}

.footer-logo {
  display: block;
  margin: 0 auto;
  max-width: 380px;
}

.footer-address {
  color: #0066b2;
  font-size: 10px;
  font-weight: 700;
  margin: 7px auto;
}

.copyright {
  display: block;
  font-size: 9px;
  font-weight: 700;
}

@media (max-width: 1100px) {

  .left-contents,
  .right-contents {
    display: none;
  }

  .center-contents {
    margin: 0 auto;
    width: min(100%, 480px);
  }
}

@media (max-width: 520px) {
  :root {
    --content-width: 100%;
  }

  .center-contents {
    width: 100%;
  }

  .prize-detail {
    grid-template-columns: 110px 1fr;
  }

  .prize-text p {
    font-size: 16px;
  }

  .prize-text span {
    font-size: 14px;
  }

  .entry-section .section-title,
  .modal-entry-section .section-title {
    font-size: 42px;
  }

  .address-title {
    font-size: 20px;
  }

  .address-body {
    font-size: 22px;
  }

  .download-link {
    font-size: 24px;
    max-width: 320px;
  }
}

/* cloud floating animation */
.cloud01,
.cloud02,
.cloud03,
.cloud04,
.cloud05,
.cloud06 {
  pointer-events: none;
  position: absolute;
  will-change: transform;
  z-index: 0;
}

.cloud01 img,
.cloud02 img,
.cloud03 img,
.cloud04 img,
.cloud05 img,
.cloud06 img {
  display: block;
}

/* Consolidated with line 102 */

@keyframes cloudFloatA {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(-1.4deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes cloudFloatB {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, 10px, 0) rotate(1.2deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (max-width: 960px) {
  .cloud01 {
    left: -6%;
    top: 10%;
    width: 90px;
  }

  .cloud02 {
    left: 4%;
    top: 27%;
    width: 64px;
  }

  .cloud03 {
    right: -8%;
    top: 15%;
    width: 102px;
  }

  .cloud04 {
    right: -4%;
    top: 40%;
    width: 80px;
  }

  .cloud05 {
    left: -3%;
    top: 62%;
    width: 74px;
  }

  .cloud06 {
    right: -7%;
    top: 77%;
    width: 95px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .cloud01,
  .cloud02,
  .cloud03,
  .cloud04,
  .cloud05,
  .cloud06,
  .illust01,
  .illust02,
  .illust03,
  .illust04 {
    animation: none;
  }

  .hero-lottery-text.is-shining::after,
  .section-title.is-shining::after {
    animation: none;
  }

  .right-contents .page-navi li a::before,
  .right-contents .page-navi li a::after {
    transition: none;
    transform: rotate(0turn);
  }
}

/* layout tune: cloud / character placement (match reference) */
.cloud01,
.cloud02,
.cloud03,
.cloud04,
.cloud05,
.cloud06,
.illust01,
.illust02,
.illust03,
.illust04 {
  position: absolute;
}

.cloud01,
.cloud02,
.cloud03,
.cloud04,
.cloud05,
.cloud06 {
  z-index: 0;
}

.illust01,
.illust02,
.illust03,
.illust04 {
  transform-origin: center bottom;
  z-index: 2;
}

.cloud01 {
  left: -2.5%;
  top: 18%;
  width: 210px;
}

.cloud02 {
  left: 21.5%;
  top: 3%;
  width: 185px;
}

.cloud03 {
  left: 22%;
  top: 56%;
  width: 170px;
}

.cloud04 {
  right: -5%;
  top: 9%;
  width: 300px;
}

.cloud05 {
  right: 30.5%;
  top: 38%;
  width: 195px;
}

.cloud06 {
  right: -3%;
  top: 58%;
  width: 235px;
}

.illust01 {
  animation: pikopiko 3s linear -0.3s infinite;
  bottom: 6.2%;
  left: 7.2%;
  width: 82px;
}

.illust02 {
  animation: pikopiko 3s linear -1.0s infinite;
  bottom: 4.3%;
  left: 22%;
  width: 96px;
}

.illust03 {
  animation: pikopiko 3s linear -0.6s infinite;
  bottom: 6%;
  right: 26.2%;
  width: 96px;
}

.illust04 {
  animation: pikopiko 3s linear -1.4s infinite;
  bottom: 5.5%;
  right: 6.2%;
  width: 82px;
}

@keyframes mascotFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.4deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 1300px) {
  .cloud01 {
    left: -7%;
    top: 17%;
    width: 150px;
  }

  .cloud02 {
    left: 8%;
    top: 5%;
    width: 132px;
  }

  .cloud03 {
    left: 8%;
    top: 62%;
    width: 120px;
  }

  .cloud04 {
    right: -10%;
    top: 10%;
    width: 212px;
  }

  .cloud05 {
    right: 8%;
    top: 43%;
    width: 140px;
  }

  .cloud06 {
    right: -8%;
    top: 67%;
    width: 168px;
  }

  .illust01 {
    bottom: 3.8%;
    left: 2%;
  }

  .illust02 {
    bottom: 2.6%;
    left: 18%;
  }

  .illust03 {
    bottom: 3.8%;
    right: 18%;
  }

  .illust04 {
    bottom: 3%;
    right: 2%;
  }
}

@media (max-width: 980px) {
  .illust01 {
    bottom: 3.8%;
    left: 4%;
  }

  .illust02 {
    display: none;
  }

  .illust03 {
    bottom: 3.8%;
    right: 4%;
  }

  .illust04 {
    display: none;
  }
}

@media (max-width: 768px) {

  .illust01,
  .illust02,
  .illust03,
  .illust04 {
    display: none;
  }

  .cloud01,
  .cloud02,
  .cloud03,
  .cloud04,
  .cloud05,
  .cloud06 {
    display: none;
  }
}

/* softer fluffy cloud motion */
.cloud01 {
  animation: cloudFluffy01 6.2s ease-in-out -1.2s infinite;
}

.cloud02 {
  animation: cloudFluffy02 8.8s ease-in-out -3.1s infinite;
}

.cloud03 {
  animation: cloudFluffy03 7.5s ease-in-out -2.4s infinite;
}

.cloud04 {
  animation: cloudFluffy04 9.2s ease-in-out -4.2s infinite;
}

.cloud05 {
  animation: cloudFluffy05 7.2s ease-in-out -1.7s infinite;
}

.cloud06 {
  animation: cloudFluffy06 8.4s ease-in-out -3.6s infinite;
}

@keyframes cloudFluffy01 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(22px, -16px, 0) rotate(-0.8deg) scale(1.02);
  }

  55% {
    transform: translate3d(-14px, 15px, 0) rotate(0.6deg) scale(0.99);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes cloudFluffy02 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate3d(-18px, 15px, 0) rotate(0.6deg) scale(1.01);
  }

  62% {
    transform: translate3d(20px, -20px, 0) rotate(-0.9deg) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes cloudFluffy03 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  24% {
    transform: translate3d(24px, -19px, 0) rotate(-0.9deg) scale(1.02);
  }

  58% {
    transform: translate3d(-15px, 12px, 0) rotate(0.5deg) scale(0.99);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes cloudFluffy04 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  28% {
    transform: translate3d(-20px, 16px, 0) rotate(0.7deg) scale(1.01);
  }

  60% {
    transform: translate3d(22px, -16px, 0) rotate(-0.8deg) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes cloudFluffy05 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  22% {
    transform: translate3d(19px, -13px, 0) rotate(-0.7deg) scale(1.02);
  }

  52% {
    transform: translate3d(-12px, 16px, 0) rotate(0.6deg) scale(0.99);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes cloudFluffy06 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  26% {
    transform: translate3d(-16px, 12px, 0) rotate(0.5deg) scale(1.01);
  }

  57% {
    transform: translate3d(23px, -21px, 0) rotate(-0.9deg) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .cloud01,
  .cloud02,
  .cloud03,
  .cloud04,
  .cloud05,
  .cloud06 {
    animation: none;
  }

  .right-contents .page-navi li a::before,
  .right-contents .page-navi li a::after {
    transition: none;
    transform: rotate(0turn);
  }
}

/* Modal Styles */
.prize-image,
.prize-image img {
  cursor: zoom-in;
}

.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-sizing: border-box;
}

.modal.is-open {
  display: flex;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal *,
.modal *::before,
.modal *::after {
  box-sizing: border-box;
}

.modal-content {
  width: min(92vw, 750px);
  position: relative;
  max-height: 90%;
}

.modal-content img {
  display: block;
  max-width: 750px;
  max-height: 90vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 4px solid #fff;
}

.modal-content.is-quo-modal {
  background: #fff;
  border: 4px solid #fff;
  border-radius: 8px;
  padding: 18px;
}

.modal-content.is-quo-modal img {
  border: 0;
  background: #fff;
}

.modal-content img[hidden] {
  display: none;
}

.modal-html {
  background: #fffbc7;
  border-radius: 16px;
  max-height: 90vh;
  overflow: auto;
}

.modal-html[hidden] {
  display: none;
}

.modal-entry-section {
  background: #fffbc7;
  margin-top: 0;
  padding: 0;
}

.modal-entry-section::before {
  display: none;
}

.modal-entry-section .section-title {
  clip-path: none;
}

.modal-html .entry-flow-box {
  background: #fffbc7;
  background-image: none;
  clip-path: none;
  margin: 0;
}

.modal-entry-section .entry-note-item {
  font-size: 14px;
}

.modal-entry-section .entry-notes {
  padding: 0;
}

.modal-entry-section .entry-flow-item span {
  font-size: 13px;
}

.modal-entry-section .entry-flow-list {
  padding: 10px 0;
}

.modal-entry-section .prizes-flow-title.section-title.is-shining {
  padding-top: 40px;
}

.modal-html .magnifying-glass {
  display: none;
}

.modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
  transition: transform 0.2s ease;
}

@media (max-width: 520px) {
  .modal-close {
    top: -15px;
    right: -15px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

.modal-close:hover {
  transform: scale(1.1);
}

body.modal-open {
  overflow: hidden;
}
