@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Zen+Kaku+Gothic+New:wght@400&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

.page {
  width: 100%;
  margin: 0;
  position: relative;
  background: #ffffff;
}

.float-reserve {
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 14;
  width: 200px;
  box-sizing: border-box;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.float-reserve span {
  display: block;
}

.float-reserve .cta-open-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  flex: 0 0 16px;
  object-fit: contain;
  align-self: center;
}

.float-reserve.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-reserve.is-visible:hover {
  opacity: 0.92;
}

.sec-title {
  position: fixed;
  top: 50%;
  left: 16px;
  z-index: 15;
  transform: translateY(-50%);
  pointer-events: none;
  color: #949494;
}

.sec-title__text {
  display: block;
  font-family: "Cormorant", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.sec-title--afterservice {
  color: #ffffff;
}

.sec-title--afterservice .sec-title__text {
  white-space: normal;
  line-height: 1.25;
}

.hero-scroll-root {
  min-height: calc(100svh + 85vh);
}

.hero-scroll-root + .section {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  html {
    background: #f5f5f5;
  }

  body {
    background: transparent;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #f5f5f5;
    background-image: url("../img/margin-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.03);
  }

  .page {
    width: 430px;
    margin: 0 auto;
    z-index: 1;
  }

  .float-reserve {
    right: calc(50% - 215px + 5px);
  }
}

.logo-header {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 200px;
  z-index: 20;
}

.logo-header__title {
  margin: 0;
  font: inherit;
  line-height: 0;
}

.logo-header__link {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.logo-header__link img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100vh;
  z-index: 2;
  overflow: hidden;
}

.hero > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.hero.is-copy-visible::after {
  opacity: 1;
}

.hero-scroll-cue {
  position: absolute;
  left: 20px;
  bottom: 40px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-cue__line {
  width: 1px;
  height: 56px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  animation: hero-scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.hero-menu {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 25;
  cursor: pointer;
  box-sizing: border-box;
}

.hero-menu span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 26px;
  height: 1px;
  margin: 0;
  background: #000000;
  transform-origin: center center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-menu span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-5px);
}

.hero-menu span:nth-child(2) {
  transform: translate(-50%, -50%) translateY(5px);
}

body.menu-open .hero-menu span {
  background: #949494;
}

body.menu-open .hero-menu span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(22.5deg);
}

body.menu-open .hero-menu span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-22.5deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: #f5f5f5;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-menu__inner {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 32px 48px;
  max-width: 430px;
  margin: 0 auto;
}

.site-menu__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-menu__group {
  margin: 0;
}

.site-menu__label {
  margin: 0 0 10px;
  font-family: "Cormorant", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: #949494;
}

.site-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-menu__link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.site-menu__link:hover {
  opacity: 0.65;
}

.site-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  padding: 18px 20px;
  background: #4d4d4d;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.site-menu__cta:hover {
  opacity: 0.92;
}

@media (min-width: 768px) {
  .logo-header {
    left: calc(50% - 215px + 24px);
  }

  .hero-menu {
    right: calc(50% - 215px + 24px);
  }

  .sec-title {
    left: calc(50% - 215px + 12px);
  }

  .hero-scroll-cue {
    left: calc(50% - 215px + 18px);
  }
}

.hero-copy {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 34px;
  margin-right: 40px;
  width: max-content;
  max-width: calc(100vw - 40px);
  color: #ffffff;
  will-change: transform;
  z-index: 2;
}

.hero-copy h2 {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  white-space: nowrap;
}

.hero-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
}

[id^="section-"] {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-root {
    min-height: 100svh;
  }

  .hero {
    position: relative;
    overflow: visible;
  }

  .hero-copy {
    will-change: auto;
  }

  .hero-scroll-cue__line::after {
    animation: none;
    transform: none;
  }
}

.section {
  padding: 70px 0;
}

.section.white {
  background: #ffffff;
}

.section.gray {
  background: #f5f5f5;
}

.section.after {
  padding: 70px 0 80px;
  background-color: #e8e8e8;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../img/afterservice-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.inner {
  width: 290px;
  margin: 0 auto;
}

.section-head {
  margin-top: 60px;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #949494;
}

.handcraft-section {
  display: flex;
  justify-content: flex-end;
}

.handcraft-inner {
  width: 290px;
  margin-right: 0;
}

.handcraft-media {
  width: 290px;
  height: 217.9618px;
  overflow: hidden;
}

.handcraft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.handcraft-content {
  margin-top: 60px;
  padding-right: 20px;
}

.handcraft-content .section-head {
  margin-top: 0;
  margin-bottom: 32px;
}

.journey-section {
  display: flex;
  justify-content: flex-end;
  padding-left: 20px;
}

.journey-inner {
  width: 290px;
}

.journey-media-top {
  width: 250px;
  height: 250px;
  overflow: hidden;
}

.journey-media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-media-bottom {
  width: 290px;
  height: 217.9618px;
  margin-top: 20px;
  overflow: hidden;
}

.journey-media-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-content {
  margin-top: 60px;
  padding-right: 20px;
}

.journey-content .section-head {
  margin-top: 0;
  margin-bottom: 32px;
}

.design-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.design-intro {
  width: 270px;
  align-self: flex-end;
}

.design-intro .title {
  width: 176px;
  margin: 0 0 32px;
}

.design-intro .body {
  width: 270px;
  line-height: 23.8px;
}

.design-image-bg {
  width: 350px;
  display: flex;
  justify-content: flex-start;
}

.design-image-bg img {
  width: 289px;
  height: 385px;
  object-fit: cover;
  object-position: 64% center;
}

.design-group {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.design-group h3 {
  width: 270px;
  margin: 0;
  font-size: 16px;
  line-height: 27.2px;
  font-weight: 400;
}

.design-grid {
  width: 270px;
  display: grid;
}

.design-grid.two {
  grid-template-columns: repeat(2, 129px);
  gap: 12px;
}

.design-card {
  width: 129px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.design-thumb {
  width: 129px;
  height: 76px;
  overflow: hidden;
}

.design-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.design-card p {
  width: 129px;
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
}

.design-grid.compact {
  gap: 13px 12px;
}

.design-card.compact {
  gap: 0;
}

.gallery-section {
  padding: 150px 20px;
  background: #ffffff;
}

.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-tile {
  width: 100%;
  overflow: hidden;
}

.gallery-tile.h302 {
  height: 302px;
}

.gallery-tile.h300 {
  height: 300px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.flow-intro {
  width: 350px;
  display: flex;
  justify-content: flex-end;
}

.flow-intro-content {
  width: 270px;
  padding-right: 20px;
}

.flow-intro .title {
  width: 80px;
  margin: 0 0 32px;
}

.flow-intro .body {
  width: 250px;
}

.flow-steps {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.flow-step {
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-step img {
  width: 270px;
  object-fit: contain;
}

.flow-copy {
  width: 270px;
}

.flow-number {
  width: 270px;
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: #949494;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.flow-number span {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
}

.flow-copy h3 {
  width: 270px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 23.8px;
  font-weight: 400;
}

.flow-copy p {
  width: 270px;
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
}

.flow-steps hr {
  width: 270px;
  margin: 0;
  border: 0;
  border-top: 1px solid #949494;
}

.price-section {
  display: flex;
  justify-content: flex-end;
}

.price-inner {
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.price-media {
  width: 290px;
  height: 218px;
  overflow: hidden;
}

.price-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-content {
  width: 290px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.price-intro .title {
  margin: 0 0 32px;
}

.price-summary {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.price-block {
  width: 270px;
  height: 51px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d0d0d0;
  padding: 0 16px;
}

.price-block .label {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}

.price-block .value {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-block .value span {
  font-size: 12px;
  line-height: 18px;
}

.price-summary .plus {
  margin: 0;
  color: #949494;
  font-size: 16px;
  line-height: 24px;
}

.price-example-slider {
  width: 270px;
}

.price-example-slider__viewport {
  overflow: hidden;
}

.price-example-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.price-example {
  flex: 0 0 100%;
  width: 270px;
  box-sizing: border-box;
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-example-slider__controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.price-example-slider__arrow {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #949494;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.price-example-slider__dots {
  display: flex;
  gap: 8px;
}

.price-example-slider__dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d0d0d0;
  cursor: pointer;
}

.price-example-slider__dot.is-active {
  background: #949494;
}

.example-label {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}

.example-spec {
  width: 230px;
  display: flex;
  gap: 16px;
}

.example-spec img {
  width: 88px;
  height: 88px;
}

.example-spec dl {
  width: 126px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-spec dl div {
  display: flex;
  width: 126px;
  min-height: 24px;
  border-bottom: 1px solid #d0d0d0;
  font-size: 14px;
  line-height: 21px;
  align-items: center;
  padding: 2px 0;
}

.example-spec dt {
  width: 60px;
}

.example-spec dd {
  width: 70px;
  margin: 0;
}

.example-total {
  width: 230px;
  border: 1px solid #d0d0d0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-total p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 21px;
}

.example-total .example-total-title {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 18px;
  color: #949494;
}

.example-total strong {
  font-weight: 400;
}

.example-total strong .tax {
  font-size: 12px;
  line-height: 1;
}

.example-total hr {
  width: 182px;
  margin: 0;
  border: 0;
  border-top: 1px solid #d0d0d0;
}

.title {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.body {
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
}

.option-group {
  margin-top: 40px;
}

.option-group h3 {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 27.2px;
  font-weight: 400;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 8px;
  font-size: 16px;
  line-height: 27.2px;
}

.chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.chips li {
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 23.8px;
}

.steps {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #949494;
}

.steps li:last-child {
  border-bottom: 1px solid #949494;
}

.steps img {
  width: 100px;
  height: 100px;
}

.step-no {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.step-no span {
  font-size: 12px;
}

.steps h3 {
  margin: 2px 0 8px;
  font-size: 14px;
  line-height: 25.5px;
  font-weight: 400;
}

.steps p {
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
}

.price-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row p {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}

.price {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
}

.price span {
  font-size: 12px;
}

.plus {
  color: #949494;
  font-size: 16px;
}

.price-card {
  margin-top: 32px;
  background: #f5f5f5;
  padding: 20px;
}

.card-label {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 18px;
}

.specs {
  display: flex;
  gap: 14px;
}

.specs img {
  width: 80px;
  height: 80px;
}

.specs dl {
  margin: 0;
  width: 100%;
}

.specs div {
  display: flex;
  border-bottom: 1px solid #d0d0d0;
  font-size: 14px;
  line-height: 23.8px;
}

.specs dt {
  width: 60px;
}

.specs dd {
  margin: 0;
}

.totals {
  margin-top: 24px;
  border: 1px solid #d0d0d0;
  padding: 24px;
}

.totals p {
  margin: 0 0 8px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 21px;
}

.totals hr {
  border: 0;
  border-top: 1px solid #d0d0d0;
  margin: 8px 0;
}

.totals p span {
  font-size: 14px;
}

.after-inner {
  width: 290px;
  margin-left: auto;
  margin-right: 20px;
}

.after-hero {
  text-align: left;
}

.after-kicker {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 23.8px;
  font-weight: 400;
  color: #ffffff;
}

.after-heading {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.after-lead {
  margin: 0 0 40px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
}

.after-panel {
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 20px 32px;
  border-radius: 0;
}

.after-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.after-panel-list li {
  padding: 20px 0;
}

.after-panel-list li:first-child {
  padding-top: 0;
}

.after-panel-list li:not(:last-child) {
  border-bottom: 1px solid #d0d0d0;
}

.after-panel-list h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 27.2px;
  font-weight: 500;
  color: #000000;
}

.after-panel-list p {
  margin: 0;
  font-size: 14px;
  line-height: 23.8px;
  color: #000000;
}

.shop-section {
  display: flex;
  justify-content: flex-end;
  padding-left: 20px;
}

.shop-inner {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-head,
.shop-meta {
  align-self: stretch;
}

.shop-head {
  padding-right: 20px;
}

.shop-head .title {
  margin-top: 0;
  margin-bottom: 32px;
}

.shop-media {
  margin: 0;
  display: block;
  background: #f5f5f5;
}

.shop-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.shop-media--primary {
  align-self: stretch;
  width: auto;
  aspect-ratio: 3 / 2;
}

.shop-media--secondary {
  width: 250px;
  aspect-ratio: 3 / 2;
  margin-top: 20px;
}

.shop-meta {
  margin-top: 32px;
  padding-right: 20px;
}

.shop-open {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 23.8px;
}

.shop-open span {
  display: inline-block;
  width: 3.5em;
  margin-right: 8px;
  font-family: "Inter", sans-serif;
}

.shop-open a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  padding: 24px 20px 40px;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: start;
  row-gap: 16px;
  column-gap: 16px;
}

.footer-logo {
  grid-column: 1;
  justify-self: start;
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.footer-logo img {
  width: 200px;
  max-width: 100%;
  height: 16px;
  display: block;
}

.footer-instagram {
  grid-column: 2;
  justify-self: end;
  display: block;
  line-height: 0;
  text-decoration: none;
  color: #000000;
}

.footer-instagram:hover {
  opacity: 0.65;
}

.footer-instagram img {
  width: 24px;
  height: auto;
  display: block;
}

.footer-copy {
  grid-column: 1 / -1;
  justify-self: start;
  margin: 0;
  font-size: 10px;
  line-height: 17px;
  color: #949494;
}
.iphone-13-14-2 {
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  font-size: 16px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.iphone-13-14-2 .handcraft {
  position: relative;
  letter-spacing: 0.1em;
  line-height: 150%;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #949494;
}
.iphone-13-14-2 .div {
  position: relative;
  font-size: 16px;
  line-height: 150%;
}
.iphone-13-14-2-inner, .iphone-13-14-2-child, .iphone-13-14-2-inner3, .iphone-13-14-2-inner4 {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  padding: 70px 0;
  flex-shrink: 0;
}
.iphone-13-14-2-inner, .iphone-13-14-2-inner3, .iphone-13-14-2-inner4 {
  justify-content: flex-end;
}
.iphone-13-14-2-child {
  justify-content: flex-end;
  padding-left: 20px;
  z-index: 2;
}
.iphone-13-14-2 .mask-group-icon {
  width: 390px;
  height: 846px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  flex-shrink: 0;
}
.iphone-13-14-2 .mask-group-parent {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
}
.iphone-13-14-2 .handcraft-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding-right: 20px;
}
.iphone-13-14-2 .frame-group, .iphone-13-14-2 .iphone-13-14-2-inner2 {
  width: 390px;
  background-color: #f5f5f5;
  padding: 70px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  z-index: 3;
  flex-shrink: 0;
}
.iphone-13-14-2 .parent12 {
  width: 270px;
  background-color: #f5f5f5;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.iphone-13-14-2 .frame-parent37 {
  align-self: stretch;
  border: 1px solid #d0d0d0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.iphone-13-14-2 .parent14 {
  align-self: stretch;
  height: 24px;
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  align-items: center;
}
.iphone-13-14-2 .parent14 .div36 {
  width: 60px;
}
.iphone-13-14-2 .parent14 .k1010 {
  width: 70px;
}
.iphone-13-14-2 .icon4 {
  width: 200px;
  position: absolute;
  margin: 0 !important;
  top: 22px;
  left: 19px;
  z-index: 10;
}
.iphone-13-14-2 .rectangle-div {
  width: 1011px;
  height: 390px;
  position: absolute;
  margin: 0 !important;
  top: 8477px;
  left: calc(50% + 196px);
  background-color: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
  transform-origin: 0 0;
  z-index: 12;
}
.iphone-13-14-2 .span4 {
  font-size: 12px;
}
.iphone-13-14-2 .div35 {
  font-size: 12px;
  line-height: 150%;
}
.iphone-13-14-2 .line-div, .iphone-13-14-2 .frame-child14, .iphone-13-14-2 .frame-child15 {
  align-self: stretch;
  height: 1px;
  border-top: 1px solid #949494;
  box-sizing: border-box;
}
.iphone-13-14-2 .line-div.frame-child14, .iphone-13-14-2 .frame-child14.frame-child14, .iphone-13-14-2 .frame-child15.frame-child14 {
  border-color: #d0d0d0;
}
.iphone-13-14-2 img.mask-group-icon3 {
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.iphone-13-14-2 img.rectangle-icon {
  width: 114px;
  height: 68px;
  -o-object-fit: cover;
     object-fit: cover;
}
.iphone-13-14-2 img.z20ggv-icon {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.iphone-13-14-2 img.frame7-image {
  width: 290px;
  height: 217.9618px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}/*# sourceMappingURL=style.css.map */
.cta-open-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  display: block;
  flex: 0 0 16px;
  object-fit: contain;
  align-self: center;
}
