@charset "UTF-8";
:root {
  --hero-bg: #ecebd7;
  --hero-text: #5f5f5f;
  --hero-white: #ffffff;
  --hero-accent: #ffe200;
}

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

html {
  font-size: clamp(14px, 1vw, 18px);
}

body {
  margin: 0;
  font-family: "M PLUS 1p", sans-serif;
  background: #d5e7ef;
  overflow-x: hidden;
}

.section-title {
  margin: 0 auto 50px;
  width: min(320px, 100%);
  text-align: center;
  font-size: 3.75rem;
  letter-spacing: 4px;
  line-height: 1;
  font-weight: 700;
  color: #231815;
  background: url("./images/bg-title.svg") center/contain no-repeat;
  padding: 26px 24px 22px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.875rem;
    padding: 16px 16px 14px;
    margin-bottom: 28px;
    width: min(280px, 100%);
  }
}
.section-title span {
  display: block;
  margin-top: 8px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.section-title-icon {
  width: 70px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (max-width: 480px) {
  .section-title-icon {
    width: 3.75rem;
    left: 0;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 480px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
.back-to-top {
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 30;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 32px 230px;
  background-image: url("./images/bg-hero.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .hero {
    min-height: 50%;
  }
}
@media screen and (max-width: 834px) {
  .hero {
    background-image: url("./images/bg-hero-tab.jpg");
    padding: 0px 20px 130px;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    padding: 52px 12px 60px;
    height: auto;
    min-height: 0;
    background-position: center top;
  }
}

.hero-gradient {
  display: block;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 480px) {
  .hero-gradient {
    height: 56px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 50px;
  align-items: start;
}
@media screen and (max-width: 1400px) {
  .hero-inner {
    max-width: 1000px;
    grid-template-columns: 400px 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 350px 1fr;
  }
}
@media screen and (max-width: 834px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 86px;
  }
}
@media screen and (max-width: 480px) {
  .hero-inner {
    gap: 12px;
    margin-top: 30px;
  }
}

.hero-copy {
  padding-top: 28px;
}
@media screen and (max-width: 1024px) {
  .hero-copy {
    text-align: center;
    padding-top: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .hero-copy {
    padding-left: 0px;
  }
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .hero-logo {
    max-width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .hero-logo {
    max-width: min(280px, 78%);
  }
}

.hero-photos {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .hero-photos {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .hero-photos {
    width: min(300px, 100%);
    margin: 0 auto;
    padding-left: 0;
    padding-bottom: 44px;
  }
}

.hero-photo-main {
  width: 100%;
  max-width: 600px;
  margin-top: 50px;
  filter: drop-shadow(0 1px 3px #999);
}
@media screen and (max-width: 1400px) {
  .hero-photo-main {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .hero-photo-main {
    width: 100%;
    height: auto;
    margin-top: 0px;
  }
}
@media screen and (max-width: 834px) {
  .hero-photo-main {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .hero-photo-main {
    width: 82%;
    max-width: 260px;
  }
}

.hero-photo-sub {
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 250px;
  filter: drop-shadow(0 1px 3px #999);
}
@media screen and (max-width: 1024px) {
  .hero-photo-sub {
    width: 160px;
    bottom: -40px;
    right: 0px;
  }
}
@media screen and (max-width: 834px) {
  .hero-photo-sub {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .hero-photo-sub {
    width: 88px;
    bottom: -16px;
    left: inherit;
    right: 8px;
  }
}

.hero-shop {
  position: fixed;
  top: 26px;
  right: 30px;
  z-index: 40;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 100px;
  border: 3px solid #0051a2;
  background: #ffe200;
  color: #0051a2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 834px) {
  .hero-shop {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .hero-shop {
    top: 12px;
    right: 12px;
    padding: 10px 16px;
    font-size: 0.875rem;
  }
}

.hero-shop-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-copyright {
  position: absolute;
  bottom: -110px;
  right: 10px;
  font-size: 12px;
  color: #666;
}
@media screen and (max-width: 480px) {
  .hero-copyright {
    bottom: -32px;
    right: 0;
    font-size: 10px;
  }
}

.features {
  position: relative;
  background-color: #fff;
  padding: 0px 24px 200px;
}
@media screen and (max-width: 1024px) {
  .features {
    padding: 40px 20px 200px;
  }
}
@media screen and (max-width: 834px) {
  .features {
    padding: 40px 20px 100px;
  }
}
@media screen and (max-width: 480px) {
  .features {
    padding: 32px 16px 40px;
  }
}

.features-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(100px, 300px) minmax(0, 1fr) minmax(90px, 260px);
  align-items: start;
  gap: 8px 16px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .features-inner {
    grid-template-columns: minmax(72px, 120px) minmax(0, 1fr) minmax(64px, 110px);
    gap: 8px 12px;
  }
}
@media screen and (max-width: 480px) {
  .features-inner {
    display: block;
  }
}

.features-woody,
.features-buzz {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.features-woody {
  max-width: 240px;
}
@media screen and (max-width: 1024px) {
  .features-woody {
    max-width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .features-woody {
    position: absolute;
    top: -140px;
    left: 0;
    max-width: 100px;
  }
}

.features-buzz {
  max-width: 140px;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .features-buzz {
    max-width: 110px;
  }
}
@media screen and (max-width: 480px) {
  .features-buzz {
    position: absolute;
    top: 200px;
    right: 0;
    width: 24%;
    max-width: 76px;
    margin-top: 0;
    z-index: 1;
  }
}

.features-body {
  position: relative;
  z-index: 3;
  min-height: 420px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .features-body {
    min-height: 360px;
  }
}
@media screen and (max-width: 480px) {
  .features-body {
    min-height: auto;
    padding-bottom: 0;
    width: 100%;
  }
}

.features-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .features-content {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
}

.features-title {
  display: block;
  width: min(770px, 100%);
  margin: 0 auto 28px;
}
@media screen and (max-width: 834px) {
  .features-title {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 5;
    width: 110%;
  }
}
@media screen and (max-width: 480px) {
  .features-title {
    position: static;
    width: 100%;
    margin: 28px auto 20px;
    z-index: 2;
  }
}

.features-text {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 2.4;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .features-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .features-text {
    font-size: 16px;
    line-height: 1.8;
    padding-top: 20px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .features-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.85;
    padding-top: 0;
    padding-left: 0;
  }
}

.features-photo {
  position: absolute;
  right: calc(50% - 100px);
  top: 300px;
  width: 200px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  .features-photo {
    width: min(200px, 48%);
    border-radius: 12px;
  }
}
@media screen and (max-width: 834px) {
  .features-photo {
    position: static;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .features-photo {
    width: 130px;
    margin: 24px auto 0;
    border-radius: 10px;
  }
}

.youtube {
  position: relative;
  background-image: url("images/bg-checker.png");
  background-size: 35px 35px;
  background-repeat: repeat;
  padding: 48px 28px;
}
@media screen and (max-width: 1024px) {
  .youtube {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .youtube {
    padding: 24px 16px;
  }
}
.youtube {
  z-index: 10;
  overflow: visible;
}
.youtube::before, .youtube::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  background-image: url("images/bg-checker.png");
  background-size: 35px 35px;
  background-repeat: repeat;
  background-position: 18px 4px;
  -webkit-mask-image: radial-gradient(circle at 22px 22px, #000 22px, transparent 23px);
  -webkit-mask-size: 42px 22px;
  -webkit-mask-repeat: repeat-x;
  mask-image: radial-gradient(circle at 22px 22px, #000 22px, transparent 23px);
  mask-size: 42px 22px;
  mask-repeat: repeat-x;
  pointer-events: none;
}
.youtube::before {
  top: -22px;
}
.youtube::after {
  bottom: -22px;
  transform: rotate(180deg);
  background-position: 2px 14px;
}

.youtube-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.youtube-title {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #111;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .youtube-title {
    font-size: clamp(1.875rem, 5vw, 3.125rem);
    gap: 8px;
  }
}
@media screen and (max-width: 834px) {
  .youtube-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .youtube-title {
    font-size: 1.4375rem;
    text-align: center;
    line-height: 1.4;
    gap: 8px;
  }
}
.youtube-title em {
  color: #2c68b1;
  font-weight: bold;
  font-style: normal;
}

.youtube-title-br {
  display: none;
}
@media screen and (max-width: 480px) {
  .youtube-title-br {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .youtube-title-text {
    display: inline-block;
    text-align: center;
  }
}

.youtube-title-icon-1,
.youtube-title-icon-2 {
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.youtube-title-icon-1 {
  height: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .youtube-title-icon-1 {
    height: 68px;
  }
}

.youtube-title-icon-2 {
  height: 130px;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .youtube-title-icon-2 {
    height: 68px;
  }
}

.youtube-thumbnail {
  margin: 0 auto;
  width: min(821px, 100%);
  border-radius: 16px;
  overflow: hidden;
  border: solid 5px #fff;
}
@media screen and (max-width: 480px) {
  .youtube-thumbnail {
    border-radius: 0.625rem;
  }
}
.youtube-thumbnail img,
.youtube-thumbnail iframe {
  display: block;
  width: 100%;
  border: 0;
}
.youtube-thumbnail iframe {
  aspect-ratio: 16/9;
  height: auto;
}

.points {
  padding: 100px 0px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .points {
    padding: 100px 0px 50px;
  }
}
@media screen and (max-width: 480px) {
  .points {
    padding: 80px 16px 50px;
  }
}

.point-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 50px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .point-title {
    gap: 12px;
    margin-bottom: 28px;
  }
}

.point-title-img {
  width: min(100px, 20vw);
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .point-title-img {
    width: min(68px, 20vw);
  }
}

.point-title-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.point-title-main {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffe200;
  -webkit-text-stroke: 9px #0051a2;
  paint-order: stroke fill;
}
@media screen and (max-width: 480px) {
  .point-title-main {
    font-size: 3rem;
    -webkit-text-stroke-width: 4px;
  }
}

.point-title-sub {
  display: block;
  margin-top: 20px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #0051a2;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .point-title-sub {
    margin-top: 6px;
    font-size: 1.125rem;
  }
}

.point-card {
  width: min(1260px, 100%);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0;
  align-items: center;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .point-card {
    grid-template-columns: 400px 1fr;
    margin: 0 auto 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 834px) {
  .point-card {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 480px) {
  .point-card {
    margin-bottom: 50px;
    padding: 0;
    width: 100%;
  }
}

.point-media {
  position: relative;
  z-index: 2;
  transform: translateX(50px);
}
@media screen and (max-width: 834px) {
  .point-media {
    order: 2;
  }
}
@media screen and (max-width: 480px) {
  .point-media {
    display: flex;
    justify-content: center;
    transform: translateX(0);
  }
}
.point-media > img {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 2px 3px #333);
}
@media screen and (max-width: 834px) {
  .point-media > img {
    max-width: 500px;
    margin: -10% auto 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 480px) {
  .point-media > img {
    margin: 0 auto;
    border-radius: 6px;
  }
}
.point-media > img.img-point01 {
  position: relative;
  z-index: 2;
  transform: rotate(-6deg);
}
@media screen and (max-width: 480px) {
  .point-media > img.img-point01 {
    display: block;
    max-width: 82%;
    transform: rotate(-6deg);
  }
}
@media screen and (max-width: 834px) {
  .point-media.strap {
    margin-top: -100px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .point-media.strap {
    margin-top: 0px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 1024px) {
  .point-media.strap > img {
    width: 150%;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .point-media.strap > img {
    width: 80%;
    margin: 0 auto;
  }
}
.point-media .txt-chance {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 100%;
  max-width: 200px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .point-media .txt-chance {
    max-width: 150px;
  }
}
@media screen and (max-width: 834px) {
  .point-media .txt-chance {
    max-width: 140px;
    right: 120px;
  }
}
@media screen and (max-width: 480px) {
  .point-media .txt-chance {
    right: 90px;
  }
}

.point-body {
  position: relative;
  padding: 100px 120px 150px;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .point-body {
    padding: 100px 80px 100px;
  }
}
@media screen and (max-width: 480px) {
  .point-body {
    padding: 44px 48px 36px 20px;
  }
}
.point-body h3 {
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .point-body h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .point-body h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
  }
}
.point-body > p:not(.point-num) {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  height: 150px;
}
@media screen and (max-width: 1024px) {
  .point-body > p:not(.point-num) {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .point-body > p:not(.point-num) {
    font-size: 13px;
    height: auto;
    line-height: 1.7;
  }
}
.point-body > p:not(.point-num) .strap-detail {
  display: block;
  margin: 20px 0 0;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .point-body > p:not(.point-num) .strap-detail {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .point-body > p:not(.point-num) .strap-detail {
    max-width: 170px;
    position: absolute;
    bottom: -260px;
    left: inherit;
    right: -40px;
  }
}
.point-body .character {
  position: absolute;
  bottom: 50px;
  right: -50px;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 200px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .point-body .character {
    max-width: 48px;
    max-height: 96px;
    right: -8px;
    bottom: 20px;
  }
}
.point-body .character.left {
  right: inherit;
  left: -20px;
  max-width: 120px;
}
@media screen and (max-width: 480px) {
  .point-body .character.left {
    max-width: 52px;
    max-height: 96px;
    left: inherit;
    right: -8px;
    bottom: 20px;
  }
}

.point-num {
  position: absolute !important;
  top: 10px;
  right: 70px;
  font-size: 18px !important;
  line-height: 1 !important;
  color: #fff;
  letter-spacing: 0.08em !important;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .point-num {
    top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .point-num {
    top: -16px;
    left: 10%;
    right: auto;
    font-size: 12px !important;
  }
}
.point-num .num {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin: 0 auto;
  color: #fff;
  paint-order: stroke fill;
}
@media screen and (max-width: 1024px) {
  .point-num .num {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .point-num .num {
    font-size: 32px;
  }
}
.point-num.left {
  right: inherit;
  top: 10px;
  left: 80px;
}
@media screen and (max-width: 1024px) {
  .point-num.left {
    top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .point-num.left {
    top: -16px;
    left: 10%;
    right: auto;
  }
}

.point-card.pink .point-num .num {
  -webkit-text-stroke: 8px #e83635;
}
@media screen and (max-width: 480px) {
  .point-card.pink .point-num .num {
    -webkit-text-stroke-width: 4px;
  }
}

.point-card.blue .point-num .num {
  -webkit-text-stroke: 8px #0051a2;
}
@media screen and (max-width: 480px) {
  .point-card.blue .point-num .num {
    -webkit-text-stroke-width: 4px;
  }
}

.point-card.pink .point-body {
  position: relative;
}
.point-card.pink .point-body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("./images/bg-red.svg") center/100% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(10px 10px 0px rgb(0, 0, 0));
}
@media screen and (max-width: 480px) {
  .point-card.pink .point-body::after {
    top: 12px;
    height: calc(100% - 12px);
    width: 118%;
    transform: translateX(-9%);
  }
}

@media screen and (max-width: 480px) {
  .point-card.pink .point-num {
    left: 12%;
  }
}

.point-card.blue .point-body {
  background: transparent;
}

.point-card.blue {
  grid-template-columns: 1fr 500px;
}
@media screen and (max-width: 1024px) {
  .point-card.blue {
    grid-template-columns: 1fr 400px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .point-card.blue {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .point-card.blue {
    padding-left: 0;
  }
}
.point-card.blue .point-media {
  order: 2;
  transform: translateX(-50px);
}
@media screen and (max-width: 1024px) {
  .point-card.blue .point-media {
    transform: translateX(0px);
  }
}
@media screen and (max-width: 480px) {
  .point-card.blue .point-media {
    margin-top: 45px;
  }
}
.point-card.blue .point-body {
  order: 1;
  width: 100%;
  position: relative;
}
.point-card.blue .point-body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("./images/bg-blue.svg") center/100% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(10px 10px 0px rgb(0, 0, 0));
}
@media screen and (max-width: 480px) {
  .point-card.blue .point-body::after {
    top: 12px;
    height: 110%;
    width: 118%;
    transform: translateX(-9%);
  }
}

.point-media.stack {
  min-height: 360px;
}
@media screen and (max-width: 834px) {
  .point-media.stack {
    min-height: 0;
  }
}
@media screen and (max-width: 480px) {
  .point-media.stack {
    min-height: 150px;
  }
}
.point-media.stack .sub-a {
  width: 300px;
  max-width: 85%;
  position: absolute;
  top: 0;
  left: 40%;
  border-radius: 0;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 1024px) {
  .point-media.stack .sub-a {
    left: 15%;
    max-width: 75%;
  }
}
@media screen and (max-width: 834px) {
  .point-media.stack .sub-a {
    max-width: 200px;
    left: 0;
    top: -50px;
  }
}
@media screen and (max-width: 480px) {
  .point-media.stack .sub-a {
    width: 55%;
    left: 40%;
    top: 0px;
  }
}
.point-media.stack .sub-b {
  width: 300px;
  max-width: 85%;
  position: absolute;
  left: 20%;
  top: 162px;
  transform: rotate(-6deg);
  border-radius: 0;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 1024px) {
  .point-media.stack .sub-b {
    left: 10%;
    max-width: 75%;
  }
}
@media screen and (max-width: 834px) {
  .point-media.stack .sub-b {
    max-width: 200px;
    left: 20%;
    top: -50px;
  }
}
@media screen and (max-width: 480px) {
  .point-media.stack .sub-b {
    width: 55%;
    left: 5%;
    top: 10px;
  }
}

.point-card.selfie .feat-4-img-2 {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .point-card.selfie .feat-4-img-2 {
    width: 200px;
    right: -16px;
    bottom: -60px;
  }
}
@media screen and (max-width: 480px) {
  .point-card.selfie .feat-4-img-2 {
    width: 120px;
    right: 0;
    bottom: -30px;
  }
}

@media screen and (max-width: 834px) {
  .point-media.games {
    max-width: 400px;
    margin: -150px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .point-media.games {
    max-width: 100%;
    margin: 70px auto 0 !important;
    padding: 0;
    position: relative;
    gap: 10px;
    align-items: flex-start;
    z-index: 3;
  }
}
.point-media.games .game-main {
  width: 80%;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .point-media.games .game-main {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .point-media.games .game-main {
    width: 70%;
  }
}
.point-media.games .game-sub {
  width: 80%;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 480px) {
  .point-media.games .game-sub {
    width: 30%;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }
}
.point-media.games .game-sub img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .point-media.games .game-sub img {
    border-radius: 3px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .point-card.games .point-body {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 480px) and (max-width: 480px) {
  .point-card.games .point-body .character {
    max-width: 72px;
    max-height: 116px;
  }
}

.point-frames {
  width: min(800px, 100%);
  margin: -30px auto 46px;
  background: #fff;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .point-frames {
    margin: 30px auto 46px;
  }
}
@media screen and (max-width: 480px) {
  .point-frames {
    margin: 0px auto 24px;
    padding: 12px;
  }
}
.point-frames img {
  width: 100%;
  display: block;
}

.photo-gallery {
  margin: 150px auto 0;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 480px) {
  .photo-gallery {
    margin: 5rem -16px 0;
    width: calc(100% + 32px);
    max-width: none;
  }
}

.gallery-header {
  position: relative;
  background: #0051a2;
  padding: 18px 0px;
  text-align: center;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .gallery-header {
    padding: 16px 80px;
  }
}
@media screen and (max-width: 480px) {
  .gallery-header {
    padding: 16px 8px;
  }
}

.gallery-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gallery-title {
    font-size: clamp(1.125rem, 3.5vw, 1.875rem);
  }
}
@media screen and (max-width: 480px) {
  .gallery-title {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 20px;
    line-height: 1.4;
    padding: 0 52px 0 46px;
  }
}

.gallery-aliens {
  position: absolute;
  left: -120px;
  bottom: -18px;
  width: 90px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .gallery-aliens {
    width: 40px;
    left: 6px;
    bottom: auto;
    top: 50%;
    transform: translateY(-35%);
  }
}

.gallery-rex {
  position: absolute;
  right: -120px;
  bottom: -20px;
  width: 90px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .gallery-rex {
    width: 44px;
    right: 6px;
    bottom: auto;
    top: 50%;
    transform: translateY(-30%);
  }
}

.gallery-body {
  background-image: url("./images/bg-02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 48px 42px 64px;
}
@media screen and (max-width: 1024px) {
  .gallery-body {
    padding: 40px 28px 52px;
  }
}
@media screen and (max-width: 480px) {
  .gallery-body {
    padding: 20px 8px 32px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .gallery-grid {
    max-width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .gallery-grid {
    max-width: 100%;
    width: 100%;
    gap: 6px;
    padding: 6px;
  }
}

.gallery-item {
  aspect-ratio: 244/186;
  background-image: url("./images/samples.jpg");
  background-size: 300% 400%;
  background-repeat: no-repeat;
}

.gallery-item:nth-child(1) {
  background-position: 0% 0%;
}

.gallery-item:nth-child(2) {
  background-position: 50% 0%;
}

.gallery-item:nth-child(3) {
  background-position: 100% 0%;
}

.gallery-item:nth-child(4) {
  background-position: 0% 33.333333%;
}

.gallery-item:nth-child(5) {
  background-position: 50% 33.333333%;
}

.gallery-item:nth-child(6) {
  background-position: 100% 33.333333%;
}

.gallery-item:nth-child(7) {
  background-position: 0% 66.666667%;
}

.gallery-item:nth-child(8) {
  background-position: 50% 66.666667%;
}

.gallery-item:nth-child(9) {
  background-position: 100% 66.666667%;
}

.gallery-item:nth-child(10) {
  background-position: 0% 100%;
}

.gallery-item:nth-child(11) {
  background-position: 50% 100%;
}

.gallery-item:nth-child(12) {
  background-position: 100% 100%;
}

.spec {
  padding: 0 28px 120px;
}
@media screen and (max-width: 834px) {
  .spec {
    padding: 0 28px 180px;
  }
}
@media screen and (max-width: 480px) {
  .spec {
    padding: 24px 0px 60px;
  }
}
@media screen and (max-width: 834px) {
  .spec .point-title-img {
    width: 80px;
  }
}

.spec-content {
  width: min(1288px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 371px 1fr;
  gap: 30px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .spec-content {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .spec-package {
    width: min(420px, 100%);
    margin: 0 auto;
  }
}
@media screen and (max-width: 834px) {
  .spec-package {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .spec-package {
    width: 80%;
    margin: 0 auto;
  }
}
.spec-package img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 480px) {
  .spec-package img {
    height: auto;
    max-height: none;
  }
}

.spec-bundle-title {
  margin-top: 14px;
  width: 84px;
  text-align: center;
  background: #E83635;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  border-radius: 999px;
  padding: 9px 0;
}

.spec-package ul {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  color: #231815;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .spec-package ul {
    font-size: 13px;
  }
}

.spec-package li::before {
  content: "●";
  margin-right: 4px;
}

.spec-table-wrap {
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 5px solid #0051A2;
  overflow: hidden;
  color: #231815;
}
.spec-table th,
.spec-table td {
  border-bottom: 1px solid #d8d8d8;
  padding: 1.25rem;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .spec-table th,
  .spec-table td {
    font-size: clamp(14px, 2.4vw, 19px);
  }
}
@media screen and (max-width: 834px) {
  .spec-table th,
  .spec-table td {
    font-size: 13px;
  }
}
.spec-table th {
  width: 30%;
  min-width: 90px;
  text-align: left;
  white-space: nowrap;
  padding-left: 40px;
}
@media screen and (max-width: 480px) {
  .spec-table th {
    padding: 0.75rem 12px;
    white-space: normal;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .spec-table td {
    padding: 0.75rem 12px;
    font-size: 12px;
  }
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-notes {
  margin-top: 18px;
  color: #231815;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .spec-notes {
    font-size: 12px;
  }
}

.spec-notes p {
  margin: 0;
}

.start-day {
  padding: 28px 0 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .start-day {
    padding: 14px 20px 50px;
  }
}
@media screen and (max-width: 480px) {
  .start-day {
    padding: 56px 0 60px;
  }
}
.start-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50px);
  border: solid 5px #f4d231;
  width: 350px;
  height: 250px;
  border-radius: 100%;
  background: #f7f2b7;
}
@media screen and (max-width: 1024px) {
  .start-day::before {
    transform: translate(-50%, -30px);
  }
}
@media screen and (max-width: 834px) {
  .start-day::before {
    top: -20px;
  }
}
@media screen and (max-width: 480px) {
  .start-day::before {
    width: 250px;
    height: 150px;
    top: 0;
    transform: translate(-50%, 0);
  }
}
.start-day i {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translate(-50%, -50px);
  width: 342px;
  height: 250px;
  border-radius: 100%;
  background: #f7f2b7;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .start-day i {
    top: -14px;
  }
}
@media screen and (max-width: 480px) {
  .start-day i {
    width: 242px;
    height: 150px;
    top: -8px;
  }
}

.start-day-panel {
  width: min(1260px, 100%);
  margin: 0 auto;
  background: #f7f2b7;
  border-radius: 10px;
  padding: 36px 0 72px;
  position: relative;
  z-index: 4;
  border: solid 5px #f4d231;
}
@media screen and (max-width: 1024px) {
  .start-day-panel {
    border-radius: 16px;
    padding: 26px 0 34px;
  }
}
@media screen and (max-width: 480px) {
  .start-day-panel {
    padding: 20px 0px 28px;
  }
}
.start-day-panel h2 {
  margin: -80px auto 50px;
  border-bottom: solid 3px #111;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 6;
  text-align: center;
  color: #111;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .start-day-panel h2 {
    margin: -100px auto 50px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .start-day-panel h2 {
    font-size: 22px;
    margin: -56px auto 24px;
  }
}
.start-day-panel p {
  width: min(1320px, 100% - 80px);
  margin: 0 auto;
  color: #231815;
  font-size: 18px;
  line-height: 2.1;
  letter-spacing: 0.02em;
  max-width: 860px;
}
@media screen and (max-width: 834px) {
  .start-day-panel p {
    font-size: 16px;
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .start-day-panel p {
    width: calc(100% - 32px);
    font-size: 14px;
    line-height: 1.9;
  }
}
.start-day-panel figure {
  margin: 38px auto 0;
  width: min(1440px, 100% - 120px);
}
@media screen and (max-width: 1024px) {
  .start-day-panel figure {
    width: calc(100% - 34px);
    margin-top: 18px;
  }
}
.start-day-panel figure img {
  width: 100%;
  display: block;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.start-day-logo {
  margin: 0 auto;
  width: 300px;
  display: block;
  position: relative;
  z-index: 8;
  transform: translateY(-140px);
}
@media screen and (max-width: 480px) {
  .start-day-logo {
    width: min(200px, 72%);
    height: auto;
    margin-top: 0;
    transform: translateY(-92px);
  }
}

.cta {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .cta {
    padding: 0 20px 50px;
  }
}

.cta-card {
  width: min(1260px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .cta-card {
    grid-template-columns: 40% 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .cta-card {
    padding: 30px 20px;
  }
}
.cta-card small {
  position: absolute;
  right: 10px;
  bottom: -30px;
  color: #2c2c2c;
  font-size: 0.875rem;
}
@media screen and (max-width: 480px) {
  .cta-card small {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    padding: 12px 0;
    text-align: center;
  }
}

.cta-product {
  width: min(500px, 100%);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 834px) {
  .cta-product {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .cta-product {
    max-width: 80%;
  }
}

.cta-right {
  text-align: center;
  color: #231815;
}

.cta-logo {
  width: min(200px, 100%);
  display: block;
  margin: 8px auto 1.25rem;
}
@media screen and (max-width: 480px) {
  .cta-logo {
    max-width: 100px;
  }
}

.cta-model {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .cta-model {
    font-size: 15px;
  }
}

.cta-shop {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 30px 40px;
  border-radius: 100px;
  background: #f3d924;
  box-shadow: 0 4px 0 #f4b01b;
  color: #231815;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: 0.4s ease;
}
@media screen and (max-width: 834px) {
  .cta-shop {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .cta-shop {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
  }
}
.cta-shop br {
  display: none;
}
@media screen and (max-width: 480px) {
  .cta-shop br {
    display: block;
  }
}
@media (hover: hover) {
  .cta-shop:hover {
    opacity: 0.7;
    box-shadow: 0 0 0 #f4b01b;
    transform: translateY(4px);
  }
}

.cta-shop-icon {
  width: 40px;
  height: 40px;
  display: block;
}
@media screen and (max-width: 480px) {
  .cta-shop-icon {
    width: 24px;
    height: auto;
  }
}

.cta-detail {
  margin-top: 26px;
  display: inline-block;
  color: #00839e;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid #00839e;
  padding-bottom: 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.2s ease;
}
.cta-detail.link {
  font-size: smaller;
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  .cta-detail {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .cta-detail:hover {
    opacity: 0.7;
  }
}

.site-footer {
  text-align: center;
  padding: 18px 0 50px;
  position: relative;
}

.footer-brand {
  width: min(250px, 100% - 20px);
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .footer-brand {
    width: 200px;
  }
}/*# sourceMappingURL=styles.css.map */