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

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

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

body {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  background: #e7e7da;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 20px 30px;
}
@media screen and (max-width: 834px) {
  .site-header {
    padding: 16px 20px;
  }
}
@media screen and (max-width: 480px) {
  .site-header {
    padding: 12px 16px;
  }
}
.site-header__disney {
  width: 100px;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .site-header__disney {
    width: 80px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 870px;
  padding: 2rem 2rem 8.125rem;
  background-color: var(--hero-bg);
}
@media screen and (max-width: 480px) {
  .hero {
    padding: 1rem 0.75rem 4rem;
    height: 100dvh;
    min-height: auto;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./images/7863a4a4b1ad5f112d1513655793d785843f0031.png");
  background-size: 238px 96px;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin: 5.875rem auto 0;
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 50px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 5.375rem;
  }
}
.hero__copy {
  padding-top: 28px;
  color: var(--hero-text);
}
@media screen and (max-width: 1024px) {
  .hero__copy {
    text-align: center;
    padding-top: 0;
  }
}
.hero__logo {
  width: 100%;
  max-width: 620px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .hero__logo {
    margin: 0 auto;
    max-width: min(620px, 100%);
  }
}
@media screen and (max-width: 834px) {
  .hero__logo {
    max-width: min(500px, 90%);
  }
}
.hero__photos {
  position: relative;
  padding-bottom: 118px;
}
@media screen and (max-width: 1024px) {
  .hero__photos {
    margin: 0 auto;
    width: min(750px, 100%);
    padding-left: 30px;
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 480px) {
  .hero__photos {
    padding-left: 0;
    padding-bottom: 80px;
  }
}
.hero__photo {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #ddd;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero__photo--main {
  width: 650px;
  height: 444px;
  border: 5px solid var(--hero-white);
  filter: drop-shadow(0 1px 3px #999);
}
@media screen and (max-width: 1024px) {
  .hero__photo--main {
    width: 100%;
    height: auto;
    aspect-ratio: 650/444;
  }
}
.hero__photo--sub {
  position: absolute;
  left: -56px;
  bottom: 0;
  width: 199px;
  height: 195px;
  border: 3px solid var(--hero-white);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  filter: drop-shadow(0 1px 3px #999);
}
@media screen and (max-width: 1024px) {
  .hero__photo--sub {
    left: 0;
  }
}
@media screen and (max-width: 834px) {
  .hero__photo--sub {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .hero__photo--sub {
    width: 100px;
    height: 100px;
    left: inherit;
    right: 20px;
  }
}
.hero__shop {
  position: fixed;
  top: 26px;
  right: 30px;
  z-index: 40;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid var(--hero-white);
  background: var(--hero-accent);
  color: var(--hero-white);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@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__curve {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("./images/wave-line.png");
  width: 100%;
  height: 200px;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .hero__curve {
    height: 5rem;
  }
}

.features {
  position: relative;
  background: #f9f9f1;
  margin-top: -2px;
  padding: 0px 40px 122px;
}
@media screen and (max-width: 1024px) {
  .features {
    padding: 0 24px 42px;
  }
}
@media screen and (max-width: 834px) {
  .features {
    padding: 0 20px 42px;
  }
}
.features__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.125rem;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .features__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.features__stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.features__star {
  position: absolute;
  width: 34px;
  height: auto;
  display: block;
  opacity: 0.95;
}
.features__star path {
  fill: currentColor;
}
.features__star--pink {
  color: #dea6b5;
}
.features__star--blue {
  color: #20a8c8;
}
.features__star--yellow {
  color: #f1c34f;
}
.features__star--1 {
  top: 72px;
  left: 50%;
  transform: rotate(20deg);
}
@media screen and (max-width: 1024px) {
  .features__star--1 {
    top: 58px;
    left: 56%;
  }
}
@media screen and (max-width: 480px) {
  .features__star--1 {
    top: -30px;
    left: 0;
  }
}
.features__star--2 {
  top: 148px;
  right: 64px;
  width: 26px;
  transform: rotate(15deg);
}
@media screen and (max-width: 1024px) {
  .features__star--2 {
    right: 28px;
  }
}
@media screen and (max-width: 480px) {
  .features__star--2 {
    right: 0px;
  }
}
.features__star--3 {
  right: 44px;
  bottom: 2px;
  width: 38px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 1024px) {
  .features__star--3 {
    width: 30px;
    right: 22px;
    bottom: 94px;
  }
}
@media screen and (max-width: 480px) {
  .features__star--3 {
    right: -10px;
  }
}
.features__star--4 {
  left: -150px;
  bottom: 104px;
  width: 40px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 1024px) {
  .features__star--4 {
    left: auto;
    right: 44%;
    bottom: 88px;
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  .features__star--4 {
    left: 0px;
  }
}
.features__star--5 {
  left: 55%;
  bottom: 20px;
  width: 34px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 480px) {
  .features__star--5 {
    left: 20%;
  }
}
.features__content {
  max-width: 560px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .features__content {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .features__content {
    padding: 0 1rem;
  }
}
.features__lead {
  margin: 0 0 24px;
}
.features__lead-img {
  display: block;
  width: min(25rem, 100%);
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 1024px) {
  .features__lead-img {
    width: min(520px, 100%);
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 834px) {
  .features__lead-img {
    width: min(400px, 100%);
  }
}
.features__title {
  margin: 0 0 3rem;
  color: #ed7c84;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  gap: 20px;
}
.features__title br {
  display: block;
}
@media screen and (max-width: 1200px) {
  .features__title br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .features__title {
    font-size: clamp(2.625rem, 8vw, 4rem);
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 834px) {
  .features__title {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .features__title {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 834px) {
  .features__title img {
    width: auto;
    height: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .features__title img {
    height: 6rem;
  }
}
.features__text {
  margin: 0;
  color: #231815;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .features__text {
    font-size: clamp(1.125rem, 2.8vw, 1.75rem);
    line-height: 1.9;
  }
}
@media screen and (max-width: 834px) {
  .features__text {
    font-size: 1.125rem;
  }
}
.features__visual {
  position: relative;
  height: 450px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .features__visual {
    height: 350px;
  }
}
.features__camera-main {
  position: absolute;
  right: 120px;
  top: 20px;
  width: 500px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 1024px) {
  .features__camera-main {
    right: inherit;
    left: 20px;
    width: min(420px, 74%);
  }
}
@media screen and (max-width: 834px) {
  .features__camera-main {
    width: min(350px, 100%);
  }
}
@media screen and (max-width: 480px) {
  .features__camera-main {
    width: 100%;
    left: 0;
    top: 0;
  }
}
.features__camera-sub {
  position: absolute;
  right: 8px;
  bottom: 68px;
  width: 155px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .features__camera-sub {
    width: min(132px, 25%);
    right: inherit;
    left: 45%;
    bottom: 55px;
  }
}
@media screen and (max-width: 480px) {
  .features__camera-sub {
    width: 40%;
    right: 0;
    bottom: 30px;
  }
}
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #be4f58 0 6px, transparent 7px) 36px 132px/180px 180px no-repeat, radial-gradient(circle, #2f9ab3 0 6px, transparent 7px) 100% 156px/200px 200px no-repeat, radial-gradient(circle, #de9ab3 0 6px, transparent 7px) 96% 74%/170px 170px no-repeat, radial-gradient(circle, #2f9ab3 0 5px, transparent 6px) 14% 0%/220px 220px no-repeat, radial-gradient(circle, #e2b039 0 10px, transparent 11px) 85% 92%/300px 300px no-repeat, radial-gradient(circle, #c95b60 0 10px, transparent 11px) 52% 20%/240px 240px no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .features::before {
    display: none;
  }
}

.youtube {
  position: relative;
  background: #b9d7e8;
  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: radial-gradient(circle at 22px 22px, #b9d7e8 22px, transparent 23px) 0 0/42px 22px repeat-x;
  pointer-events: none;
}
.youtube::before {
  top: -22px;
}
.youtube::after {
  bottom: -22px;
  transform: rotate(180deg);
}
.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: #382e2c;
  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: 480px) {
  .youtube__title {
    text-align: center;
    line-height: 1.6;
  }
}
.youtube__title em {
  color: #ea6852;
  font-style: normal;
}
.youtube__title-icon {
  width: 70px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 480px) {
  .youtube__title-icon {
    width: 50px;
    transform: translateX(1.25rem);
  }
}
.youtube__thumbnail {
  margin: 0 auto;
  width: min(821px, 100%);
  border-radius: 16px;
  overflow: hidden;
}
@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;
}
.youtube__minnie {
  position: absolute;
  right: 30px;
  bottom: -10px;
}
@media screen and (max-width: 834px) {
  .youtube__minnie {
    right: 10px;
    bottom: -100px;
  }
}
@media screen and (max-width: 480px) {
  .youtube__minnie {
    right: 5px;
    bottom: -30px;
  }
}
.youtube__minnie img {
  width: 3.75rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .youtube__minnie img {
    width: 2.5rem;
  }
}

.points {
  background: #e7e7da;
  padding: 100px 34px;
}
@media screen and (max-width: 480px) {
  .points {
    padding: 80px 16px 50px;
  }
}
.points__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) {
  .points__title {
    font-size: 1.875rem;
    padding: 16px 16px 14px;
    margin-bottom: 28px;
    width: min(280px, 100%);
  }
}
.points__title span {
  display: block;
  margin-top: 8px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
.points__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) {
  .points__title-icon {
    width: 3.75rem;
    left: 0;
  }
}

.point-card {
  width: min(1260px, 100%);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 0;
  align-items: center;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .point-card {
    grid-template-columns: 40% 1fr;
    margin: 0 auto;
  }
}
@media screen and (max-width: 834px) {
  .point-card {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .point-card {
    margin-bottom: 36px;
    padding: 0 16px;
  }
}
.point-card__media {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .point-card__media {
    order: 2;
  }
}
.point-card__media > img {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 2px 3px #999);
}
@media screen and (max-width: 834px) {
  .point-card__media > img {
    max-width: 500px;
    margin: -10% auto 0;
  }
}
@media screen and (max-width: 480px) {
  .point-card__media > img {
    margin: 0 auto 0;
  }
}
.point-card__media > img.img-point01 {
  position: relative;
  z-index: 2;
  transform: rotate(-6deg);
}
.point-card__media.strap {
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .point-card__media.strap {
    margin-top: -200px;
    margin-left: 200px;
  }
}
@media screen and (max-width: 480px) {
  .point-card__media.strap {
    margin-top: -100px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .point-card__media.strap > img {
    width: 150%;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .point-card__media.strap > img {
    width: 120%;
    max-width: 120%;
  }
}
.point-card__body {
  position: relative;
  padding: 150px 120px;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .point-card__body {
    padding: 80px 16px 32px;
  }
}
.point-card__body h3 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .point-card__body h3 {
    font-size: 22px;
  }
}
.point-card__body p {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .point-card__body p {
    font-size: 14px;
  }
}
.point-card__body p .strap-detail {
  display: block;
  margin: 20px 0 0;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 480px) {
  .point-card__body p .strap-detail {
    max-width: 12.5rem;
    position: absolute;
    bottom: -50px;
    left: 0;
  }
}
.point-card__num {
  position: absolute !important;
  top: 30px;
  right: 20%;
  font-size: 18px !important;
  line-height: 1 !important;
  color: #111;
  letter-spacing: 0.08em !important;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .point-card__num {
    top: 16px;
    right: 5%;
    left: 5%;
    font-size: 12px !important;
  }
}
.point-card__num .num {
  display: block;
  font-size: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .point-card__num .num {
    font-size: 32px;
  }
}
.point-card__num.left {
  right: inherit;
  top: 30px;
  left: 15%;
}
@media screen and (max-width: 480px) {
  .point-card__num.left {
    left: 5%;
    right: 5%;
  }
}
.point-card--pink .point-card__body {
  position: relative;
}
.point-card--pink .point-card__body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("./images/bg-pink.svg") center/100% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 480px) {
  .point-card--pink .point-card__body::after {
    width: 120%;
    height: 120%;
    transform: translateX(-8%);
  }
}
.point-card--blue .point-card__body {
  background: transparent;
}
.point-card--reverse {
  grid-template-columns: 1fr 560px;
}
@media screen and (max-width: 1024px) {
  .point-card--reverse {
    grid-template-columns: 1fr 40%;
  }
}
@media screen and (max-width: 834px) {
  .point-card--reverse {
    grid-template-columns: 1fr;
  }
}
.point-card--reverse .point-card__media {
  order: 2;
}
.point-card--reverse .point-card__body {
  order: 1;
  width: 100%;
  position: relative;
}
.point-card--reverse .point-card__body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("./images/bg-blue.svg") center/100% 100% no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 480px) {
  .point-card--reverse .point-card__body::after {
    width: 120%;
    height: 120%;
    transform: translateX(8%);
  }
}
.point-card--reverse .point-card__body .img-micky {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 130px;
  height: auto;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .point-card--reverse .point-card__body .img-micky {
    right: 50px;
  }
}
@media screen and (max-width: 480px) {
  .point-card--reverse .point-card__body .img-micky {
    width: 80px;
    height: auto;
    right: -10px;
    top: -10px;
  }
}
.point-card__media--stack {
  min-height: 360px;
}
@media screen and (max-width: 480px) {
  .point-card__media--stack {
    min-height: 220px;
  }
}
.point-card__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: 480px) {
  .point-card__media--stack .sub-a {
    width: 55%;
    left: 30%;
  }
}
.point-card__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: 480px) {
  .point-card__media--stack .sub-b {
    width: 55%;
    left: 10%;
    top: 45%;
  }
}
.point-card--selfie .overlay {
  position: absolute;
  right: -26px;
  bottom: -64px;
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .point-card--selfie .overlay {
    width: 200px;
    right: -16px;
    bottom: -60px;
  }
}
@media screen and (max-width: 480px) {
  .point-card--selfie .overlay {
    width: 120px;
    right: 0;
    bottom: -30px;
  }
}
@media screen and (max-width: 834px) {
  .point-card__media--games {
    max-width: 500px;
    margin: 0 auto;
  }
}
.point-card__media--games .game-main {
  width: 80%;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .point-card__media--games .game-main {
    max-width: 100%;
  }
}
.point-card__media--games .game-sub {
  width: 80%;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.point-card__media--games .game-sub img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

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

.photo-gallery {
  width: min(1260px, 100%);
  margin: 150px auto 0;
  background: #fcfcfd;
  border-radius: 30px;
  padding: 34px 42px 80px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .photo-gallery {
    margin: 5rem 0 0;
    padding: 20px 16px 40px;
    border-radius: 20px;
  }
}
.photo-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/bg-gallery.svg") center/100% auto repeat-y;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  border-radius: 30px;
}
.photo-gallery > * {
  position: relative;
  z-index: 1;
}
.photo-gallery h3 {
  margin: -74px auto 28px;
  width: -moz-fit-content;
  width: fit-content;
  background: #b9d6fc;
  color: #382f2d;
  border-radius: 999px;
  padding: 16px 42px 16px 100px;
  font-size: 30px;
  line-height: 1.1;
  position: relative;
}
@media screen and (max-width: 480px) {
  .photo-gallery h3 {
    font-size: 16px;
    padding: 10px 16px 10px 50px;
    margin: -40px auto 16px;
  }
}
.photo-gallery h3 .icon-gallery {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .photo-gallery h3 .icon-gallery {
    width: 50px;
    top: -18px;
  }
}
.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 800px;
  margin: 80px auto 0;
}
@media screen and (max-width: 480px) {
  .photo-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 30px auto 0;
  }
}
.photo-gallery__grid img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.spec {
  background: #e7e7da;
  padding: 44px 28px 120px;
}
@media screen and (max-width: 480px) {
  .spec {
    padding: 24px 0px 60px;
  }
}
.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;
  }
}
.spec__package img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 2px 3px #999);
}
.spec__bundle-title {
  margin-top: 14px;
  width: 84px;
  text-align: center;
  background: #efb124;
  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;
}
.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: 3px solid #eab74a;
  border-radius: 10px;
  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);
  }
}
.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 {
  background: #e7e7da;
  padding: 28px 0 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .start-day {
    padding: 14px 20px 50px;
  }
}
.start-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .start-day::before {
    transform: translate(-50%, -30px);
  }
}
.start-day__panel {
  width: min(1260px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 0 72px;
  position: relative;
  z-index: 2;
}
@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: 0px auto 40px;
  text-align: center;
  color: #009cb8;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 480px) {
  .start-day__panel h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.start-day__panel p {
  width: min(1320px, 100% - 80px);
  margin: 0 auto;
  color: #231815;
  font-size: 20px;
  line-height: 2.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: 900px;
}
@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: 340px;
  max-width: calc(100% - 40px);
  display: block;
  transform: translateY(-50px);
}
@media screen and (max-width: 480px) {
  .start-day__logo {
    width: 280px;
    margin-top: 20px;
  }
}

.cta {
  background: #e7e7da;
  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: 5px solid #eab74a;
  border-radius: 15px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}
@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;
  }
}
.cta__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .cta__badges {
    gap: 8px;
  }
}
.cta__badges img {
  width: 6.875rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .cta__badges img {
    width: 4rem;
  }
}
.cta__product {
  width: min(500px, 100%);
  display: block;
  margin: 0 auto;
}
.cta__right {
  text-align: center;
  color: #231815;
}
.cta__logo {
  width: min(400px, 100%);
  display: block;
  margin: 8px auto 1.25rem;
}
.cta__model {
  margin: 0 0 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
}
.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: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 834px) {
  .cta__shop {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .cta__shop {
    padding: 18px 24px;
    font-size: 1.3rem;
  }
}
.cta__shop br {
  display: none;
}
@media screen and (max-width: 480px) {
  .cta__shop br {
    display: block;
  }
}
.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: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 2px solid #66b9c9;
  padding-bottom: 8px;
}
@media screen and (max-width: 480px) {
  .cta__detail {
    font-size: 1rem;
  }
}

.site-footer {
  background: #e7e7da;
  text-align: center;
  padding: 18px 0 0;
  position: relative;
}
.site-footer__brand {
  width: min(250px, 100% - 20px);
  display: block;
  margin: 0 auto;
}
.site-footer__characters {
  margin: 24px auto -20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 480px) {
  .site-footer__characters {
    width: 80%;
  }
}
.site-footer__characters img {
  width: 100%;
  display: block;
}
.site-footer__stripe {
  height: 40px;
  background-image: url("./images/stripe.svg");
  background-size: contain;
  background-repeat: repeat-x;
}
@media screen and (max-width: 480px) {
  .site-footer__stripe {
    background-size: cover;
  }
}
.site-footer small {
  position: absolute;
  right: 12%;
  bottom: 44px;
  color: #2c2c2c;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .site-footer small {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    padding: 12px 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: #ea6852;
  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);
}/*# sourceMappingURL=styles.css.map */