@charset "UTF-8";
:root {
  --scrollbar-gutter: auto;
  --min-height: 600px;
  --mobile-header: 60px;
  --scroll25: 250px;
  --scroll30: 300px;
  --scroll35: 350px;
  --scroll40: 400px;
  --scroll-inner: 500px;
}

/* iOS 26（Liquid Glass）のフローティングツールバー対策
   ツールバーの下に入る position: fixed / sticky は、透過バーの裏に描画されず
   クリップされて消える（Apple Developer Forums thread/800798）。
   固定UIをバーのぶん内側へ逃がすためのクリアランス。 */
:root {
  --bar-clearance-top: 0px;
  --bar-clearance-bottom: 0px;
  --safe-top: max(env(safe-area-inset-top, 0px), var(--bar-clearance-top, 0px));
  --safe-bottom: max(
    env(safe-area-inset-bottom, 0px),
    var(--bar-clearance-bottom, 0px)
  );
}

/* Colors */
:root {
  --gray: #919191;
  --yellow: #ffbd40;
  --light-yellow: #ffd940;
  --wine-red-light: #9c3268;
  --wine-red: #4d1933;
  --wine-red-dark: #6c1d45;
  --light-blue: #d9ffff;
  --blue: #001e62;
  --black: #000;
  --link-hover: #e8bb40;
  --dark-green: #002e23;
  --pink: #f266bf;
}

/* Font Families */
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;
}

html {
  overflow-y: initial;
}
html i {
  font-style: italic;
}

html:has(.modal.is-open),
html:has(.modal-video.is-open) {
  scrollbar-gutter: stable;
}
html:has(.modal.is-open) .ly_footer_outer,
html:has(.modal.is-open) #footer,
html:has(.modal-video.is-open) .ly_footer_outer,
html:has(.modal-video.is-open) #footer {
  z-index: 100;
}
html:has(.modal.is-open) .ly_toTop,
html:has(.modal-video.is-open) .ly_toTop {
  opacity: 0;
  visibility: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.InstaxApp,
.CommonApp,
.press__container,
.ly_footer_outer,
#footer {
  position: relative;
  z-index: 100;
}

.InstaxApp {
  font-family: var(--font-family-base);
}
.InstaxApp .InstaxApp__Annotations a {
  color: inherit;
  text-decoration: underline;
}
.InstaxApp .InstaxApp__Annotations a:hover {
  text-decoration: none;
}

#footer {
  margin-top: 0;
}

.ly_footer_outer,
#footer {
  z-index: 120;
}

header {
  background: #fff !important;
}

footer:has(.ly_footerCopy_wrap) {
  background: #fff;
}

#contents {
  background: var(--dark-green);
  overflow: clip;
  font-family: var(--font-family-base);
}
#contents * {
  font-family: inherit;
}
[lang=ja] #contents {
  font-family: var(--font-family-base);
}
[lang=zh-cmn-Hans] #contents {
  font-family: "Noto Sans SC", sans-serif;
}
[lang=zh-cmn-Hant] #contents {
  font-family: "Noto Sans TC", sans-serif;
}
[lang=ko] #contents {
  font-family: "Noto Sans KR", sans-serif;
}

main a,
main button,
main input,
main optgroup,
main select,
main textarea {
  outline: revert;
}

main a:focus {
  outline: revert;
}

.container {
  max-width: 1366px;
  padding-left: clamp(20px, 6.0761346999vw, 83px);
  padding-right: clamp(20px, 6.0761346999vw, 83px);
  margin-inline: auto;
}
.container--md {
  max-width: 996px;
}
.container--lg {
  max-width: 1076px;
}

#contents::before {
  content: "";
  position: fixed;
  display: block;
  inset: 0;
  background: var(--pink);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: opacity 0.3s, visibility 0.3s;
}
.is-scrolling #contents::before {
  opacity: 1;
  visibility: visible;
  transition-duration: 0s;
}

.ff-en {
  font-family: var(--font-family-en) !important;
}

:where(main) {
  line-height: 1.45;
}

:where(#contents img) {
  vertical-align: top;
  height: auto;
}

:where(.text-white) {
  color: var(--light-blue);
}

.sticky-card-stack {
  position: relative;
}

.sticky-card-stack__spacer {
  height: 100vh;
}

.sticky-scroll-section {
  padding-bottom: 100vh;
}

.button-normal {
  background: var(--wine-red-light);
  color: var(--light-blue);
  font-size: calc(0.875 * 1rem);
  line-height: 1.5;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  position: relative;
  border-radius: 100vmax;
}
.button-normal::after {
  display: block;
  content: "";
  width: 5px;
  height: 8px;
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
          mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease-in-out;
}
.button-normal__icon {
  width: 16px;
  aspect-ratio: 1/1;
}

.button-yellow {
  font-weight: 500;
  background: var(--yellow);
  color: var(--dark-green);
  border-radius: 12px;
  position: relative;
  display: block;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  width: fit-content;
  min-width: 165px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
.button-yellow::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light-blue);
  left: 0;
  top: 0;
  transform: translate(-100%, -100%);
  transition: transform 0.3s ease-in-out;
}
.button-yellow::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light-blue);
  right: 0;
  top: 0;
  transform: translate(100%, -100%);
  transition: transform 0.3s ease-in-out;
}
.button-yellow__corner::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light-blue);
  left: 0;
  bottom: 0;
  transform: translate(-100%, 100%);
  transition: transform 0.3s ease-in-out;
}
.button-yellow__corner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light-blue);
  right: 0;
  bottom: 0;
  transform: translate(100%, 100%);
  transition: transform 0.3s ease-in-out;
}
.button-yellow__text {
  position: relative;
  padding: 16px 40px 16px 18px;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.button-yellow__text::after {
  display: block;
  content: "";
  width: 5px;
  height: 8px;
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
          mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  transition: transform 0.3s ease-in-out;
}
.button-yellow--modal .button-yellow__text::before {
  display: block;
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  background: var(--dark-green);
  right: 25px;
  top: calc(50% - 6px);
  transition: transform 0.3s ease-in-out;
}
.button-yellow--modal .button-yellow__text::after {
  width: 11px;
  height: 1px;
  top: calc(50% - 1px);
  background: var(--dark-green);
  -webkit-mask-image: none;
          mask-image: none;
}
.button-yellow--dl .button-yellow__text::after {
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_dl.svg");
          mask-image: url("/link_wide_2/assets/images/icon_dl.svg");
  width: 16px;
  height: 14px;
  top: calc(50% - 7px);
}
.button-yellow--window .button-yellow__text::after {
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_window.svg");
          mask-image: url("/link_wide_2/assets/images/icon_window.svg");
  width: 15px;
  height: 15px;
  top: calc(50% - 7px);
}

.button-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  gap: 20px;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  margin-inline: auto;
  background: rgba(217, 255, 255, 0.2);
  border-radius: 100vmax;
  position: relative;
}
.tab-buttons::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--yellow);
  border-radius: 100vmax;
  left: 0;
  transition: left 0.5s, top 0.5s;
}
.tab-buttons:has(.button-tab[aria-selected=true]:nth-child(2))::before {
  left: 50%;
}

.button-tab {
  font-size: calc(1 * 1rem);
  line-height: 1.5;
  font-weight: 700;
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  color: var(--light-blue);
  position: relative;
  border-radius: 100vmax;
  transition: background 0.3s, color 0.3s;
}
.button-tab[aria-selected=true] {
  color: var(--wine-red-dark);
  pointer-events: none;
}

.button-product {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: 1px solid var(--yellow);
  border-radius: 5px;
  font-size: calc(1 * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--yellow);
  min-width: 120px;
  padding: 2px 16px;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button-product[aria-selected=true] {
  pointer-events: none;
  background: var(--yellow);
  color: var(--dark-green);
  border: none;
}

.list-indent {
  color: var(--dark-green);
  font-size: calc(0.625 * 1rem);
  font-weight: 700;
}
.list-indent--middle {
  font-size: inherit;
  font-weight: inherit;
}
.list-indent__item {
  display: flex;
}
.list-indent__mark {
  flex: 0 0 auto;
}
.list-indent__mark--2em {
  flex: 0 0 2em;
}
.list-indent__text {
  flex: 1 1 auto;
}
.list-indent__text a {
  text-decoration: underline;
}
.list-indent__text a:hover {
  text-decoration: none;
}

.list-language {
  background: #fff;
  overflow-y: auto;
  font-size: calc(0.625 * 1rem);
  font-weight: bold;
  width: fit-content;
  min-width: 106px;
  margin: auto;
  border-radius: 0 0 4px 4px;
}
.list-language__link {
  position: relative;
  display: block;
  text-align: center;
  padding: 5px 20px;
  color: var(--dark-green);
  transition: background 0.3s;
}
.list-language__link[aria-current] {
  background-color: var(--pink);
  pointer-events: none;
}
.list-language__link:hover {
  background-color: var(--light-yellow);
}

.list-frame {
  display: grid;
  gap: 20px 20px;
  grid-template-columns: repeat(4, 1fr);
}

.local-navi {
  background: var(--pink);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: var(--font-family-base);
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 1;
  visibility: visible;
}
html:has(.modal.is-open) .local-navi, html:has(.modal-video.is-open) .local-navi {
  opacity: 0;
  visibility: hidden;
}
.local-navi__inner {
  --can-scroll: center;
  min-height: 40px;
  display: flex;
  justify-content: center;
}
@keyframes detect-scroll {
  from, to {
    --can-scroll: unset;
  }
}
.local-navi__list {
  display: flex;
  justify-content: center;
}
.local-navi__item {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
}
.local-navi__item:has(.local-navi__sublist) .local-navi__link {
  gap: 0 3px;
}
.local-navi__item:has(.local-navi__sublist) .local-navi__link::after {
  display: block;
  content: "";
  width: 7px;
  height: 5px;
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_down.svg");
          mask-image: url("/link_wide_2/assets/images/icon_down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--dark-green);
  margin-top: 2px;
  transform: rotate(0deg);
}
.local-navi__link {
  display: flex;
  align-items: center;
  font-size: calc(1 * 1rem);
  font-weight: 700;
  color: var(--dark-green);
  padding: 0 clamp(1px, 1.7578125vw, 20px);
  transition: background 0.3s;
}
.local-navi__sublink {
  display: block;
  padding: 8px 20px;
  font-size: calc(0.875 * 1rem);
  font-weight: 700;
  color: var(--dark-green);
  transition: background 0.3s;
}
.local-navi__button {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  cursor: pointer;
  color: var(--dark-green);
  background-color: var(--yellow);
  border: none;
  border-radius: 4px;
  font-size: calc(0.625 * 1rem);
  font-weight: 700;
  padding: 3px 22px 3px 18px;
  width: 106px;
  display: block;
  transition: background 0.3s;
}
body:has(.modal-language.is-open) .local-navi__button {
  border-radius: 4px 4px 0 0;
  background: var(--yellow);
  color: var(--dark-green);
}
.local-navi__button::after {
  display: block;
  content: "";
  width: 7px;
  height: 5px;
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_down.svg");
          mask-image: url("/link_wide_2/assets/images/icon_down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
  position: absolute;
  right: 8px;
  top: calc(50% - 2px);
}
body:has(.modal-language.is-open) .local-navi__button::after {
  transform: rotate(180deg);
  top: calc(50% - 3px);
}
.local-navi__toggle {
  aspect-ratio: 1/1;
  width: 13.3333333333vw;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  background: var(--yellow);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: opacity 0.1s, visibility 0.1s;
}
.local-navi__toggle-icon {
  width: 40%;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.local-navi__toggle-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  transition: opacity 0.5s;
}
.is-nav-open .local-navi__toggle-icon::before {
  opacity: 0;
}
.local-navi__toggle-icon .icon {
  width: 100%;
  height: 2px;
  position: relative;
}
.local-navi__toggle-icon .icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  position: absolute;
  transition: transform 0.5s;
}
.is-nav-open .local-navi__toggle-icon .icon::before {
  transform: rotate(-45deg);
}
.local-navi__toggle-icon .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  position: absolute;
  transition: transform 0.5s;
}
.is-nav-open .local-navi__toggle-icon .icon::after {
  transform: rotate(45deg);
}
.local-navi__toggle-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  transition: opacity 0.5s;
}
.is-nav-open .local-navi__toggle-icon::after {
  opacity: 0;
}

.fv {
  --fv-split: 50%;
  --fv-split-sp: 31%;
  --fv-wipe-sp: var(--fv-split-sp);
  --fv-stage-base-h: 656px;
  --fv-stage-min-h: var(--fv-stage-base-h);
  --fv-app-h: 194px;
  --fv-copy-top: 28px;
  --fv-copy-right: 0px;
  --fv-copy-bottom: 20px;
  --fv-fg-gap: 67px;
  --fv-visual-left: 10%;
  --fv-visual-width: 65%;
  --fv-copy-width: calc(100% - var(--fv-visual-width) - var(--fv-fg-gap));
  position: relative;
  background: var(--dark-green);
}

[lang=de] .fv {
  --fv-stage-min-h: 760px;
}

[lang=it] .fv {
  --fv-stage-min-h: 730px;
}

.fv__mv {
  position: relative;
}

.fv__bg {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}

.fv__bg-yellow {
  flex-shrink: 0;
  background: var(--yellow);
  width: var(--fv-split);
}

.fv__bg-green {
  flex: 1;
  min-width: 0;
  background: var(--dark-green);
}

.fv__stage {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.fv__visual-photo {
  position: relative;
  width: 96%;
}
.fv__visual-photo picture,
.fv__visual-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__visual-name {
  position: absolute;
  z-index: 1;
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
  font-size: clamp(12px, 1.0248901903vw, 16px);
  line-height: 1.2;
  color: var(--yellow);
  pointer-events: none;
}

.fv__visual-name--blue {
  right: 7%;
  bottom: 5%;
}

.fv__visual-name--beige {
  right: 28%;
  bottom: 0%;
}

.fv__copy {
  color: var(--yellow);
}

.fv__lead {
  color: var(--yellow);
}

.fv__catch {
  width: fit-content;
  max-width: 100%;
  margin: 15px 0 10px auto;
  font-weight: 600;
  line-height: 1.21;
  text-align: left;
}

:not(:lang(ja)) .fv__catch {
  font-weight: bold;
}

:lang(ja) .fv__catch {
  white-space: nowrap;
}

.fv__catch[data-title-anim-color=pink-to-yellow].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.67s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-pink-to-yellow-color 2.33s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.83s), calc(var(--char-index) / var(--total-chars) * 0.83s + 0.83s);
}

.fv__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 28px auto;
}

:not(:lang(ja)) .fv__product {
  align-items: flex-start;
}

.fv__product-name {
  margin: 0;
  line-height: 0;
  width: 100%;
}
.fv__product-name img {
  display: block;
  width: auto;
  max-width: min(400px, 100%);
  height: auto;
}

.fv__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 2px 0 0;
  font-weight: 700;
  font-size: clamp(14px, 1.1713030747vw, 18px);
  color: var(--pink);
}

.fv__category-icon {
  width: 1.7em;
  height: 1.7em;
  flex-shrink: 0;
}

:not(:lang(ja)) .fv__category-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.fv__features {
  margin: 3px 0 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 100%;
  width: 100%;
  color: var(--yellow);
}
.fv__features li {
  display: grid;
  gap: 2px;
}

.fv__features-title {
  font-weight: 700;
  font-size: clamp(15px, 1.1713030747vw, 16px);
}

.fv__features-text {
  font-weight: 400;
  font-size: clamp(13px, 1.0248901903vw, 14px);
  line-height: 1.5;
}

.fv__tagline {
  margin-top: auto;
  margin-bottom: 10px;
  line-height: 0;
}
.fv__tagline img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-left: auto;
}

.fv__slogan {
  display: none;
}
.fv__slogan img {
  display: block;
  width: 74.6666666667vw;
  max-width: 80%;
  height: auto;
  margin-inline: auto;
}

.fv__app-bar {
  position: relative;
}

.fv__app-bar-inner {
  position: relative;
  z-index: 10;
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 20px;
}

.fv__app-bar--pc {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--fv-split);
  min-height: var(--fv-app-h);
  background: var(--pink);
  display: flex;
  align-items: flex-end;
}

.fv__app-bar--pc .fv__app-bar-inner {
  width: auto;
  max-width: calc(1240px / 2);
  margin-left: max(20px, (100vw - 1240px) / 2 + 20px);
  margin-right: 16px;
  padding: 16px 0 20px;
}

.fv__app-bar--sp {
  display: none;
  background: var(--pink);
}

.fv-app {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon name" "icon stores" "note note";
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
}

.fv-app__icon {
  grid-area: icon;
}
.fv-app__icon img {
  width: 76px;
  height: auto;
  display: block;
}

.fv-app__name {
  grid-area: name;
  align-self: end;
  margin: 0 0 2px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-green);
}
.fv__app-bar--sp .fv-app__name {
  margin: 0 0 0;
  color: var(--dark-green);
}

.fv-app__stores {
  grid-area: stores;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.fv-app__store {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.fv-app__store img {
  width: auto;
  height: 52px;
  display: block;
}

.fv-app__note {
  grid-area: note;
  margin: 8px 0 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  font-size: 10px;
  color: var(--dark-green);
}
.fv__app-bar--sp .fv-app__note {
  color: var(--dark-green);
  gap: 8px;
  font-size: clamp(10px, 2.6666666667vw, 11px);
}

.fv-app__note-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--dark-green);
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
}
.fv__app-bar--sp .fv-app__note-label {
  padding: 2px 4px;
  background: var(--dark-green);
  color: var(--yellow);
  font-size: clamp(12px, 3.2vw, 14px);
}

.fv-app__note-text {
  min-width: 0;
  line-height: 1.3;
}
.fv-app__note-text a {
  color: inherit;
  text-decoration: underline;
  color: var(--yellow);
}

.fv[data-kv-anim]:not(.is-kv-done) .fv__visual-photo,
.fv[data-kv-anim]:not(.is-kv-done) .fv__product,
.fv[data-kv-anim]:not(.is-kv-done) .fv__features,
.fv[data-kv-anim]:not(.is-kv-done) .fv__tagline,
.fv[data-kv-anim]:not(.is-kv-done) .fv-app {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fv[data-kv-anim]:not(.is-kv-done) .fv__slogan {
  pointer-events: none;
}
.fv[data-kv-anim]:not(.is-kv-done) .fv__slogan img {
  opacity: 0;
  visibility: hidden;
}
.fv[data-kv-anim]:not(.is-kv-done) .fv__app-bar--pc {
  overflow: hidden;
}

.fv[data-kv-anim][data-kv-step="3"] .fv__visual-photo,
.fv[data-kv-anim][data-kv-step="3"] .fv__product,
.fv[data-kv-anim][data-kv-step="4"] .fv__visual-photo,
.fv[data-kv-anim][data-kv-step="4"] .fv__product {
  pointer-events: auto;
}

.fv[data-kv-anim][data-kv-step="4"] .fv__features,
.fv[data-kv-anim][data-kv-step="4"] .fv__tagline,
.fv[data-kv-anim][data-kv-step="4"] .fv-app,
.fv[data-kv-anim][data-kv-step="4"] .fv__slogan,
.fv[data-kv-anim][data-kv-step="4"] .fv__app-bar--sp {
  pointer-events: auto;
}

.fv[data-kv-anim]:not(.is-kv-done)[data-kv-step="1"] {
  --fv-wipe-sp: 0%;
}
.fv[data-kv-anim]:not(.is-kv-done)[data-kv-step="1"] .fv__bg-yellow {
  transform: scaleX(0);
  transform-origin: left center;
}
.fv[data-kv-anim]:not(.is-kv-done)[data-kv-step="1"] .fv__app-bar--pc {
  transform: scaleY(0);
  transform-origin: center bottom;
}

.information {
  position: relative;
  padding: 40px 20px 106px;
  background-color: var(--pink);
  overflow-x: clip;
}

.information__container {
  max-width: 860px;
  margin-inline: auto;
  position: relative;
  padding: 18px 0 13px;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.information__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "title list button";
  gap: 8px 24px;
  align-items: start;
  position: relative;
}

.information__title {
  grid-area: title;
  display: block;
  margin: 0;
  font-family: var(--font-family-en) !important;
  font-weight: 700;
  color: var(--dark-green);
  font-size: calc(1.125 * 1rem);
  line-height: 1.3;
}
.information__title span {
  display: block;
}

.information__button {
  grid-area: button;
  -webkit-appearance: none;
          appearance: none;
  background: var(--yellow);
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.information__button::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 100vmax;
  background: var(--dark-green);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: transform 0.3s;
}
.information__button::after {
  content: "";
  display: block;
  height: 10px;
  width: 2px;
  border-radius: 100vmax;
  background: var(--dark-green);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: opacity 0.5s, transform 0.3s;
}
.information__button.is-open::after {
  opacity: 0;
}

.information__list {
  font-size: calc(1 * 1rem);
  font-weight: 400;
  color: var(--dark-green);
  display: grid;
  gap: 10px;
}

.information__grid > .information__list {
  grid-area: list;
}

.information__more {
  display: none;
  grid-column: 2;
}

.information__list-link {
  color: inherit;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 16px;
  color: var(--dark-green);
  font-size: calc(0.875 * 1rem);
  line-height: 1.5;
}

.information__list-date {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 400;
}

.information__list-text {
  flex: 1;
  min-width: 0;
}

.information__list-new {
  margin-right: 0.35em;
  color: var(--yellow);
  font-weight: 700;
}

.information__list-description {
  font-weight: 400;
}

.promo-video-wrapper {
  --promo-video-pt: 135px;
  --promo-video-wmax-h: 1100px;
  background: var(--yellow);
  padding: var(--promo-video-pt) 40px 1100px;
  position: sticky;
  top: 0;
  z-index: 5;
}
html:has(.modal-video.is-open) .promo-video-wrapper {
  z-index: auto;
  position: relative;
}

.promo-video {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.promo-video__inner {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  max-width: var(--promo-video-wmax-h);
}

.promo-video__heading {
  margin: 0 auto 40px;
  font-size: max(48px, min(clamp(86px, 7.3206442167vw, 100px), var(--promo-video-wmax-h) * 0.09091));
  font-weight: bold;
  position: absolute;
  top: 28px;
  z-index: 2;
  text-align: center;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.promo-video__embed {
  position: absolute;
  inset: 0;
  border-radius: min(42px, var(--promo-video-wmax-h) * 0.03819);
  overflow: hidden;
}
.promo-video__embed video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.promo-video__button {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: min(42px, var(--promo-video-wmax-h) * 0.03819);
  overflow: hidden;
  cursor: pointer;
}
.promo-video__button::before {
  aspect-ratio: 1/1;
  width: min(80px, var(--promo-video-wmax-h) * 0.07273);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--yellow);
  border-radius: 100vmax;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}
.promo-video__button::after {
  aspect-ratio: 1/1;
  width: min(80px, var(--promo-video-wmax-h) * 0.07273);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: url(/link_wide_2/assets/images/icon_play.svg) no-repeat center center/cover;
  z-index: 2;
}

.promo-video__clips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 30px;
  margin-top: 28px;
  width: 100%;
  max-width: 1100px;
}

.promo-video__clip {
  position: relative;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  background: var(--pink);
  color: var(--dark-green);
  font-family: var(--font-family-en), var(--font-family-base);
  font-weight: 500;
  font-size: calc(0.875 * 1rem);
  line-height: 1.2;
  border-radius: 12px;
  padding: 1.5em 2em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 258px;
  justify-content: center;
}

.promo-video__clip-plus {
  position: absolute;
  right: 17px;
  font-weight: 700;
  line-height: 1;
}

.tutorial-video-wrapper {
  margin: 100px 0 0;
  padding-top: 1em;
  position: relative;
  width: 100%;
  padding-left: clamp(20px, 3.125vw, 40px);
  padding-right: clamp(20px, 3.125vw, 40px);
}

.tutorial-video {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tutorial-video__inner {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  max-width: 1100px;
}

.tutorial-video__heading {
  margin: 0 auto 40px;
  font-size: calc(6.25 * 1rem);
  font-weight: bold;
  position: absolute;
  top: -0.91em;
  z-index: 2;
  text-align: center;
  letter-spacing: -0.02em;
}

.tutorial-video__button {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 42px;
  overflow: hidden;
  cursor: pointer;
}
.tutorial-video__button.is-play {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.tutorial-video__button::before {
  aspect-ratio: 1/1;
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--yellow);
  border-radius: 100vmax;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}
.tutorial-video__button::after {
  aspect-ratio: 1/1;
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: url(/link_wide_2/assets/images/icon_play.svg) no-repeat center center/cover;
  z-index: 2;
}
.tutorial-video__button picture {
  display: block;
  width: 100%;
  height: 100%;
}
.tutorial-video__button img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-design-scroll {
  height: 0;
}

.product-design-wrapper {
  --sticky-offset: 0px;
  position: sticky;
  top: var(--sticky-offset);
  z-index: 10;
}

.product-design-inner {
  border-radius: 64px 64px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--dark-green);
  min-height: 100lvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  padding: 0 50px 230px;
}

.product-design {
  width: 100%;
  padding: 80px 0;
}

.product-design__heading {
  text-align: center;
  margin-bottom: 0px;
  font-size: clamp(86px, 7.3206442167vw, 100px);
  font-weight: bold;
  letter-spacing: -0.02em;
}

.product-design__description {
  text-align: center;
  margin-bottom: 14px;
  font-size: calc(1 * 1rem);
  font-weight: bold;
  color: var(--yellow);
}

.product-design__buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.product-design__buttons .button-product {
  font-weight: 400;
}
.product-design__buttons--col {
  display: none;
}

.product-design__grid {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}

.product-design__cols-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-design__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 35%;
  background: var(--yellow);
  color: var(--dark-green);
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
}
.product-design__arrow:hover {
  opacity: 0.8;
}
.product-design__arrow--prev {
  left: -34px;
}
.product-design__arrow--next {
  right: -34px;
}
.product-design__arrow--col {
  display: none;
}

.product-design__arrow-icon {
  font-size: calc(3.125 * 1rem);
  font-weight: 100;
  line-height: 1;
  display: block;
  transform: translateY(-0.14em);
}

.product-design__col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
}
.product-design__col--beige {
  transform: translateX(-80px);
}
.product-design__col--blue {
  transform: translateX(80px);
}

.product-design__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--pink);
  border-radius: 64px;
}

.product-design__item {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1;
}
.product-design__item picture {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-design__item picture.is-active {
  opacity: 1;
}
.product-design__item picture img {
  position: absolute;
  inset: 0;
  width: 75%;
  height: 75%;
  object-fit: contain;
  margin: auto;
}

.product-design__name {
  position: absolute;
  bottom: 4%;
  left: 7%;
  z-index: 1;
  font-weight: 700;
  font-size: calc(2.375 * 1rem);
  color: var(--dark-green);
}
.product-design__col--blue .product-design__name {
  color: var(--dark-green);
  bottom: auto;
  left: auto;
  right: 8%;
  top: 5%;
}

.feature {
  margin: 0 0 0;
  position: relative;
  z-index: 15;
  background: var(--yellow);
}

.feature-progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-progress-bar.is-visible {
  opacity: 1;
}

.feature-progress-bar__fill {
  width: 100%;
  height: 100%;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.feature__heading-scroll {
  height: 700lvh;
}

.feature__heading-section-container {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0;
}

.feature__heading-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 711px;
}

.feature__heading-image {
  position: relative;
  border-radius: 25px;
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1);
  width: 100%;
}
.feature__heading-image img {
  margin: -64px 0 0;
  max-height: 711px;
  border-radius: 25px 25px 0 0;
  width: 100%;
  object-fit: cover;
  vertical-align: top;
  aspect-ratio: 1366/711;
}

.feature__heading-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1366px;
}

.feature__heading {
  padding: 0 40px;
  position: absolute;
  bottom: -0.5em;
  font-size: calc(6.25 * 1rem);
  text-align: right;
  display: block;
  width: 100%;
  line-height: 1;
  font-weight: bold;
}

.feature-point {
  padding: 80px 0;
  position: sticky;
  top: 0;
  z-index: 6;
  height: 100lvh;
  align-items: center;
}

.feature-point__outer {
  transform: translateX(-100vw);
}

.feature-point__middle {
  padding: 50px 100px;
  max-width: 2000px;
}

.feature-point__inner {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  max-width: 1366px;
}

.feature-point__number {
  width: 6.7349926794vw;
  max-width: 92px;
  min-width: 70px;
  margin-bottom: 10px;
  margin-left: -4px;
}

.feature-point__title {
  margin-top: -10px;
  font-size: clamp(40px, 3.3674963397vw, 46px);
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 0;
}
.feature-point__title sup {
  margin-right: auto;
}

.feature-point__badge {
  display: inline-block;
  flex-shrink: 0;
  width: auto;
  margin-right: 0.28em;
  margin-left: -3%;
  line-height: 0;
  height: 1em;
}
.feature-point__badge img {
  display: block;
  height: 100%;
  width: auto;
}

.feature-point__desc {
  font-size: clamp(16px, 1.4641288433vw, 20px);
  font-weight: 400;
  color: var(--dark-green);
  line-height: 1.8;
  max-width: 460px;
}

:not(:lang(ja)) .feature-point__desc {
  line-height: 1.5;
}

.feature-point__note {
  margin-top: 0.8em;
  font-size: calc(0.75 * 1rem);
  font-weight: 500;
  color: var(--dark-green);
  display: flex;
  align-items: flex-start;
}
.feature-point__note span {
  margin-right: 0.4em;
  border-radius: 5px;
  padding: 0.1em 0.3em;
  background-color: var(--yellow);
  font-size: clamp(12px, 3.2vw, 14px);
  white-space: nowrap;
  flex-shrink: 0;
}
.feature-point__note i {
  max-width: 380px;
  font-style: normal;
  font-size: calc(0.75 * 1rem);
}
.feature-point__note i a {
  color: var(--dark-green);
  text-decoration: underline;
}

:not(:lang(ja)) .feature-point__note {
  line-height: 1.3;
  gap: 5px;
  flex-direction: column;
}

.feature-point__image {
  margin-right: auto;
}
.feature-point__image img {
  width: 100%;
  height: auto;
}

.feature-point--01 {
  position: sticky;
  top: 0;
  z-index: 6;
  height: 100lvh;
  display: flex;
  align-items: center;
}
.feature-point--01 .feature-point__outer {
  margin: 0 0 0;
  width: 100%;
  transform: translateX(-100vw);
  transition: transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01 .feature-point__middle {
  background: var(--pink);
  margin-right: 7.4%;
  border-radius: 0 40px 40px 0;
  min-height: 310px;
}
.feature-point--01 .feature-point__image {
  position: relative;
  opacity: 0;
  max-width: 500px;
}
.feature-point--01 .feature-point__image .feature-point__image-main {
  width: 100%;
  opacity: 0;
}
.feature-point--01 .feature-point__image .feature-point__image-bluetooth {
  position: absolute;
  top: 10%;
  right: 55%;
  width: 10%;
  opacity: 0;
}
.feature-point--01 .feature-point__image .feature-point__image-dot {
  position: absolute;
  top: 25%;
  right: 50%;
  width: 20%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s 0.8s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01.is-phase3 .feature-point__outer {
  z-index: 3;
  transform: translateX(0);
  transition: transform 0.8s 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01.is-phase3 .feature-point__image {
  opacity: 1;
}
.feature-point--01.is-phase3 .feature-point__image-main {
  opacity: 1;
  transition: opacity 0.6s 0.65s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01.is-phase3 .feature-point__image-bluetooth {
  opacity: 1;
  transition: opacity 0.6s 0.65s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01.is-phase3 .feature-point__image-dot {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s 0.8s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01 .feature-point__middle {
  transition: margin-right 0.6s cubic-bezier(0, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0, 0, 0.2, 1), height 0.6s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01 .feature-point__inner {
  transition: opacity 0.4s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--01.is-phase3b .feature-point__inner {
  opacity: 0;
  pointer-events: none;
}
.feature-point--01.is-phase3b .feature-point__image-dot {
  clip-path: inset(0 100% 0 0);
  transition: none;
}
.feature-point--01.is-phase3b .feature-point__middle {
  margin-right: 0;
  border-radius: 0;
}

.feature-point--02 {
  position: sticky;
  top: 0;
  z-index: 7;
  height: 100lvh;
  display: flex;
  align-items: center;
  background-color: var(--yellow);
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--02.is-phase4 {
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1), opacity 0.8s 0.2s cubic-bezier(0, 0, 0.2, 1);
  transform: translateX(0);
  opacity: 1;
}
.feature-point--02.is-phase4-open .feature-point__image-bar-top,
.feature-point--02.is-phase4-open .feature-point__image-bar-bottom {
  height: 0%;
}
.feature-point--02.is-phase4-open .feature-point__image-bar-left,
.feature-point--02.is-phase4-open .feature-point__image-bar-right {
  width: 0%;
}
.feature-point--02.is-phase4-open .feature-point__image .feature-point__image-wide {
  clip-path: inset(0 0% 0 0%);
}
.feature-point--02.is-phase4-open .feature-point__image .feature-point__image-height {
  clip-path: inset(0% 0 0% 0);
}
.feature-point--02 .feature-point02__container {
  width: 100%;
  height: 100lvh;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}
.feature-point--02 .feature-point__inner {
  margin-inline: auto;
  grid-template-columns: 50% 1fr;
  gap: 3%;
  width: 100%;
}
.feature-point--02 .feature-point__text {
  width: 100%;
}
.feature-point--02 .feature-point__image {
  position: relative;
  padding: 10% 0 0 26%;
  display: block;
  width: 100%;
}
.feature-point--02 .feature-point__image .feature-point__image-wide {
  position: absolute;
  top: 7%;
  left: 16%;
  text-align: center;
  width: 94%;
  clip-path: inset(0 50% 0 50%);
  transition: clip-path 0.3s cubic-bezier(0, 0, 0.2, 1) 0.6s;
}
.feature-point--02 .feature-point__image .feature-point__image-wide img {
  height: auto;
  width: 69%;
}
.feature-point--02 .feature-point__image .feature-point__image-height {
  position: absolute;
  bottom: 8.4%;
  left: 21%;
  clip-path: inset(50% 0 50% 0);
  transition: clip-path 0.3s cubic-bezier(0, 0, 0.2, 1) 0.6s;
  width: 5.6%;
}
.feature-point--02 .feature-point__image .feature-point__image-height img {
  aspect-ratio: 34/308;
  height: auto;
  width: 100%;
}
.feature-point--02 .feature-point__image .feature-point__image-picture-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.feature-point--02 .feature-point__image .feature-point__image-picture {
  display: flex;
  justify-content: flex-end;
}
.feature-point--02 [class^=feature-point__image-bar] {
  position: absolute;
  background-color: var(--yellow);
  z-index: 1;
}
.feature-point--02 .feature-point__image-bar-top,
.feature-point--02 .feature-point__image-bar-bottom,
.feature-point--02 .feature-point__image-bar-left,
.feature-point--02 .feature-point__image-bar-right {
  transition: height 0.6s cubic-bezier(0, 0, 0.2, 1), width 0.6s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--02.is-sp-bar-open .feature-point__image-bar-top,
.feature-point--02.is-sp-bar-open .feature-point__image-bar-bottom {
  height: 0% !important;
}
.feature-point--02.is-sp-bar-open .feature-point__image-bar-left,
.feature-point--02.is-sp-bar-open .feature-point__image-bar-right {
  width: 0% !important;
}
.feature-point--02.is-sp-bar-open .feature-point__image .feature-point__image-wide {
  clip-path: inset(0 0% 0 0%);
}
.feature-point--02.is-sp-bar-open .feature-point__image .feature-point__image-height {
  clip-path: inset(0% 0 0% 0);
}
.feature-point--02 .feature-point__image-bar-top,
.feature-point--02 .feature-point__image-bar-bottom {
  left: 0;
  right: 0;
  height: 21%;
  transition: height 0.6s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--02 .feature-point__image-bar-top {
  height: 14%;
  top: 0;
}
.feature-point--02 .feature-point__image-bar-bottom {
  height: 25%;
  bottom: 0;
}
.feature-point--02 .feature-point__image-bar-left,
.feature-point--02 .feature-point__image-bar-right {
  top: 0;
  bottom: 0;
  width: 31%;
  transition: width 0.6s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--02 .feature-point__image-bar-left {
  width: 31%;
  left: 0;
}
.feature-point--02 .feature-point__image-bar-right {
  right: 0;
  width: 31%;
}

.feature-point--03 {
  position: sticky;
  top: 0;
  z-index: 8;
  height: 100svh;
  display: flex;
  align-items: center;
}
.feature-point--03 .feature-point__outer {
  position: relative;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(100vw);
  transition: transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}
.feature-point--03 .feature-point__middle {
  background: var(--pink);
  margin-left: 7.4%;
  width: 100%;
  border-radius: 40px 0 0 40px;
  padding-right: 30px;
}
.feature-point--03 .feature-point__inner {
  margin-inline: auto;
}
.feature-point--03 .feature-point__title {
  margin-left: 10px;
}
.feature-point--03.is-phase6 .feature-point__outer {
  transform: translateX(0);
}

.feature03-steps-scroll {
  position: absolute;
  top: 0;
  left: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100%;
  background-color: var(--pink);
  border-radius: 40px 0 0 40px;
}

.feature03-steps-scroll__track {
  display: flex;
  gap: 0;
  padding: 0 80px;
  align-items: stretch;
  height: 100%;
  will-change: transform;
}
.feature03-steps-scroll__track::before, .feature03-steps-scroll__track::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 180px;
}
.feature03-steps-scroll__track::after {
  width: 600px;
}

.feature03-steps-scroll__item {
  padding: 32px 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: max-content;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  color: var(--dark-green);
}
.feature03-steps-scroll__item:not(:last-child) .feature03-steps-scroll__inner {
  border-right: none;
  position: relative;
}
.feature03-steps-scroll__item:not(:last-child) .feature03-steps-scroll__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-image: radial-gradient(circle, var(--yellow) 2px, transparent 2px);
  background-size: 4px 10px;
  background-repeat: repeat-y;
}

.feature03-steps-scroll__inner {
  padding: 0 50px 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  width: max-content;
  max-height: 100%;
  min-height: 0;
}

.feature03-steps-scroll__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 210px;
  gap: 16px;
}

.feature03-steps-scroll__badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em 1.2em 0.3em;
  background: url("/link_wide_2/assets/images/feature03_step_title_bg.png") center/100% 100% no-repeat;
  color: var(--dark-green);
  font-weight: 400;
  font-size: calc(1.75 * 1rem);
  line-height: 1;
}
.feature03-steps-scroll__badge span {
  display: inline-block;
}
:not(:lang(ja)) .feature03-steps-scroll__badge {
  font-size: calc(1.625 * 1rem);
}

.feature03-steps-scroll__heading {
  margin: 0 -1em 0 0;
  font-weight: 400;
  font-size: calc(1.25 * 1rem);
  line-height: 1.35;
  color: var(--dark-green);
}

.feature03-steps-scroll__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 280px;
  max-width: 100%;
}
.feature03-steps-scroll__photos picture,
.feature03-steps-scroll__photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.feature03-steps-scroll__visual {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  line-height: 0;
}
.feature03-steps-scroll__visual picture {
  display: block;
  max-height: 100%;
}
.feature03-steps-scroll__visual img {
  width: auto;
  height: auto;
  max-height: min(70svh, 100%);
  object-fit: contain;
  display: block;
}

.feature03-steps-scroll__overlay {
  display: block;
  margin: 0 0 0.4em;
  color: var(--dark-green);
  font-weight: 700;
  font-size: clamp(18px, 1.6105417277vw, 26px);
  line-height: 1.2;
  text-align: center;
}

.feature03-steps-scroll__item--step01 .feature03-steps-scroll__visual img {
  height: 40svh;
  max-height: 360px;
}

.feature03-steps-scroll__item--step02 {
  --step02-visual-offset: 0px;
}
.feature03-steps-scroll__item--step02 .feature03-steps-scroll__visual {
  margin-top: var(--step02-visual-offset);
}
.feature03-steps-scroll__item--step02 .feature03-steps-scroll__visual img {
  height: calc(40svh - var(--step02-visual-offset));
  max-height: calc(360px - var(--step02-visual-offset));
}

.feature03-steps-scroll__item--step03 .feature03-steps-scroll__text {
  align-items: center;
}
.feature03-steps-scroll__item--step03 .feature03-steps-scroll__visual img {
  height: 40svh;
  max-height: 360px;
}

.feature03-steps-scroll__item--step04 .feature03-steps-scroll__visual img {
  height: 40svh;
  max-height: 360px;
}

.feature03-steps-scroll__item--step05 .feature03-steps-scroll__visual img {
  height: 40svh;
  max-height: 360px;
}
.feature03-scroll {
  position: relative;
  z-index: 10;
  background: var(--pink);
  height: 100svh;
  overflow: hidden;
  margin-top: -100svh;
}

.feature03-scroll__container {
  display: flex;
  height: 100%;
  align-items: center;
}

.feature03-scroll__left {
  flex-shrink: 0;
  width: 35%;
  padding: 0 0 0 clamp(40px, 5vw, 80px);
}

.feature03-scroll__number {
  margin-bottom: 12px;
}
.feature03-scroll__number img {
  width: clamp(60px, 6vw, 90px);
}

.feature03-scroll__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.feature03-scroll__badge {
  display: inline-block;
  background: var(--dark-green);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.feature03-scroll__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: var(--dark-green);
}

.feature03-scroll__right {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.feature03-scroll__track {
  display: flex;
  gap: 50px;
  padding: 0 80px;
  align-items: flex-start;
  will-change: transform;
}

.feature03-scroll__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 180px;
}
.feature03-scroll__item--last {
  width: 300px;
}

.feature03-scroll__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
}

.feature03-scroll__item-desc {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.5;
}

.feature03-scroll__phone {
  width: 100%;
}
.feature03-scroll__phone img {
  width: 100%;
  height: auto;
  display: block;
}
.feature03-scroll__phone--wide {
  width: 140%;
}

.sticky-overlap-stack {
  margin-top: -124px;
}

.other-features {
  padding: 0 0 80px;
  position: relative;
  z-index: 10;
  border-radius: 64px 64px 0 0;
  background: var(--dark-green);
  overflow: hidden;
}

html:has(.modal.is-open) .other-features {
  z-index: 100000;
  overflow: visible;
}

.other-features__header {
  position: relative;
  aspect-ratio: 16/7.5;
  max-height: 640px;
  width: 100%;
}

.other-features__header-image {
  width: 100%;
  height: 100%;
}
.other-features__header-image picture,
.other-features__header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.other-features__badge {
  position: absolute;
  bottom: -13%;
  left: 0;
  width: 100%;
  z-index: 10;
  font-weight: bold;
  font-size: calc(6.25 * 1rem);
  padding: 0 max(20px, (100vw - 1080px) / 2) 0;
  color: var(--yellow);
}

.other-features__body {
  padding: 60px max(20px, (100vw - 1080px) / 2) 120px;
}

.other-features__grid {
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  list-style: none;
  padding: 0;
  max-width: 960px;
}

.other-features__card {
  padding: 20px 40px 1px;
  background: var(--pink);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.other-features__card.is-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.other-features__card-images {
  width: 100%;
  min-height: 180px;
  padding: 0 25px;
}
.other-features__card-images picture,
.other-features__card-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.other-features__card-images--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-items: center;
}

.other-features__card-images--1col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-features__card-images--1col .other-features__card-image-col {
  width: 68%;
}

.other-features__card-image-col {
  overflow: hidden;
}

.other-features__card-caption {
  font-size: 11px;
  color: var(--dark-green);
  text-align: center;
  font-weight: 700;
  padding: 4px 0;
}

.other-features__card-body {
  padding: 20px 0 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.other-features__card-title {
  font-size: calc(1.25 * 1rem);
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.3;
}

.other-features__card-desc {
  font-size: calc(0.875 * 1rem);
  line-height: 1.7;
  color: var(--dark-green);
  flex: 1;
}

:not(:lang(ja)) .other-features__card-desc {
  line-height: 1.5;
}

.other-features__card-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 4px;
  font-size: calc(0.875 * 1rem);
  font-weight: 600;
  color: var(--dark-green);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
}

.other-features__card-more-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}
.other-features__card-more-icon img {
  width: 5px;
  height: auto;
  transition: transform 0.3s ease;
}

.other-features__card-more:hover .other-features__card-more-icon img {
  transform: translateX(3px);
}

.other-features__compat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 13px;
  color: #fff;
}

.other-features__compat-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: var(--yellow);
  color: var(--dark-green);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.concept {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
  z-index: 11;
  margin-top: -64px;
  border-radius: 64px 64px 64px 64px;
  background: var(--pink);
  padding: 90px 0;
}
.concept.is-overlap-disabled {
  position: relative;
}

.concept__collage {
  position: relative;
  margin: 0 auto;
  height: 100lvh;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  aspect-ratio: 3/2;
  min-height: 900px;
}

.concept__photo {
  position: absolute;
  overflow: hidden;
}
.concept__photo img {
  width: 100%;
  object-fit: cover;
}

.concept__photo--01 {
  top: 1%;
  left: -7%;
  width: 21%;
}

.concept__photo--02 {
  top: 19%;
  left: -3%;
  width: 22%;
}

.concept__photo--03 {
  top: 37%;
  left: -8%;
  width: 20%;
  z-index: 11;
}

.concept__photo--04 {
  bottom: 7%;
  left: -5%;
  width: 20%;
}

.concept__photo--05 {
  top: 21%;
  left: 16%;
  width: 20%;
  z-index: 12;
}

.concept__photo--06 {
  top: 2%;
  left: 12%;
  width: 22%;
}

.concept__photo--07 {
  top: 37%;
  left: 13%;
  width: 22%;
  z-index: 13;
}

.concept__photo--08 {
  bottom: 23%;
  left: 5%;
  width: 19%;
  z-index: 14;
}

.concept__photo--09 {
  bottom: 8%;
  left: 16%;
  width: 22%;
  z-index: 15;
}

.concept__photo--10 {
  top: 3%;
  left: 35%;
  width: 22%;
  z-index: 15;
}

.concept__photo--11 {
  bottom: 17%;
  left: 35%;
  width: 20%;
  z-index: 15;
}

.concept__photo--12 {
  top: 0%;
  right: 30%;
  width: 19%;
  z-index: 16;
}

.concept__photo--13 {
  top: 12%;
  right: 18%;
  width: 20%;
  z-index: 17;
}

.concept__photo--14 {
  top: 31%;
  right: 11%;
  width: 20%;
}

.concept__photo--15 {
  top: -2%;
  right: -10%;
  width: 22%;
}

.concept__photo--16 {
  bottom: 12%;
  right: 34%;
  width: 20%;
}

.concept__photo--17 {
  bottom: 8%;
  right: -7%;
  width: 19%;
}

.concept__photo--18 {
  top: 2%;
  right: 8%;
  width: 22%;
  z-index: 16;
}

.concept__photo--19 {
  bottom: 2%;
  right: 20%;
  width: 22%;
}

.concept__photo--20 {
  top: 23%;
  right: -3%;
  width: 21%;
}

.concept__photo--21 {
  top: 38%;
  right: -11%;
  width: 22%;
}

.concept__photo--22 {
  bottom: 14%;
  right: 2%;
  width: 22%;
}

.concept__photo--23 {
  bottom: 20%;
  right: 17%;
  width: 20%;
}

.concept__badge {
  position: absolute;
  top: 36%;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  line-height: 1.2;
  font-weight: bolder;
  text-align: center;
  font-size: calc(4.25 * 1rem);
  z-index: 100;
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--pink);
  paint-order: stroke fill;
}
.concept__badge.is-anim-done .title-anim__char-wrapper {
  overflow: initial;
}

.concept__sticker {
  position: absolute;
  z-index: 11;
}
.concept__sticker img {
  width: 100%;
  height: auto;
  display: block;
}

.concept__sticker--icecream {
  top: 4%;
  right: 26%;
  width: 8%;
}

.concept__sticker--character {
  top: 35%;
  left: 2%;
  width: 10%;
}

.concept__film {
  margin: 0 auto;
  max-width: 1070px;
}

.concept__film-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.concept__film-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: var(--dark-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.concept__film-subtitle {
  font-size: 14px;
  color: var(--dark-green);
}

.concept__film-title {
  margin-bottom: 32px;
}

.concept__film-card {
  background: var(--dark-green);
  border-radius: 20px;
  padding: 100px 70px 50px;
  margin-bottom: 32px;
}

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

.concept__film-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.concept__film-item-images {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.concept__film-item-images.is-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.concept__film-item-box {
  flex: 1;
}
.concept__film-item-box img {
  width: 100%;
  height: auto;
  display: block;
}

.concept__film-item-sample {
  flex: 1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.concept__film-item-sample img {
  width: 100%;
  height: auto;
  display: block;
}

.concept__film-item-name {
  font-size: clamp(20px, 2.0497803807vw, 34px);
  font-weight: 700;
  color: var(--yellow);
  text-align: center;
}

.concept__film-item-desc {
  font-size: clamp(12px, 1.0248901903vw, 17px);
  color: var(--yellow);
  text-align: center;
  line-height: 1.5;
}

.concept__film-lineup-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.concept__film-lineup {
  margin: 0 auto;
  min-width: 258px;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 40px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-green);
  background-color: var(--yellow);
  text-decoration: none;
}
.concept__film-lineup .concept__film-lineup-arrow {
  transition: transform 0.2s ease;
}
.concept__film-lineup:hover .concept__film-lineup-arrow {
  transform: translateX(4px);
}

.concept__film-lineup-arrow {
  font-size: 18px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

.product-info {
  margin: -64px 0 0;
  position: relative;
  z-index: 10;
  padding: 140px 20px 20px;
  background: var(--dark-green);
}

.product-info__cards {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}

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

.product-info__card {
  background: var(--pink);
  border-radius: 30px;
  text-align: center;
}

.product-info__card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 60px 35px 15px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.product-info__card-link:hover .product-info__card-more-icon {
  padding-left: 4px;
}

.product-info__card-icon {
  width: 34%;
  height: auto;
}
.product-info__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info__card-title {
  font-size: calc(2 * 1rem);
  font-weight: 700;
  color: var(--dark-green);
}

.product-info__card-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-left: auto;
  padding: 0;
  border-radius: 40px;
  color: var(--dark-green);
  font-size: calc(0.875 * 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.product-info__card-more:hover {
  opacity: 0.8;
}

.product-info__card-more-icon {
  font-size: 16px;
  background: var(--yellow);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3em;
  height: 2.3em;
  padding: 0 0 0.1em;
  transition: padding 0.2s ease;
}

.product-info__app {
  margin: 120px auto 95px;
  max-width: 960px;
  text-align: center;
}

.product-info__app-badge {
  display: inline-block;
  padding: 6px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.product-info__app-badge img {
  width: 50%;
  aspect-ratio: 1/1;
}

.product-info__app-title {
  margin-bottom: 34px;
  font-size: calc(2.5 * 1rem);
  font-weight: 700;
  color: var(--pink);
  line-height: 1.3;
}
.product-info__app-title sup {
  font-size: 0.5em;
  vertical-align: super;
}

.product-info__app-buttons {
  display: grid;
  grid-template-columns: 246px 275px;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 10px;
}

.product-info__app-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: opacity 0.2s ease;
}
.product-info__app-btn:hover {
  opacity: 0.8;
}
.product-info__app-btn a {
  display: block;
  margin: 0 0 10px;
}
.product-info__app-btn picture {
  display: block;
}
.product-info__app-btn img {
  height: 82px;
  width: auto;
  display: block;
}

.product-info__app-note {
  font-size: calc(0.625 * 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
  color: var(--yellow);
}
.product-info__app-note a {
  color: var(--pink);
  text-decoration: underline;
}
.product-info__app-note a:hover {
  text-decoration: none;
}

.product-info__shopping {
  position: relative;
  width: 100%;
  z-index: 15;
  background-color: var(--dark-green);
}

.product-info__shopping-inner {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.product-info__shopping-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
  width: 100%;
  padding: 44px 40px;
  background: var(--yellow);
  color: var(--dark-green);
  font-size: calc(1.125 * 1rem);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}
.product-info__shopping-btn:hover .product-info__shopping-arrow {
  transform: translateX(4px);
}

.product-info__shopping-arrow {
  font-size: 22px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
  z-index: 2;
  transition: transform 0.2s ease;
}

.product-info__gallery {
  padding: 100px 0;
  position: relative;
  z-index: 16;
  background-color: var(--dark-green);
  overflow: hidden;
}
.product-info__gallery:empty {
  display: none;
}

.product-info__gallery-slider {
  width: 100%;
  overflow: hidden;
}

.product-info__gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.product-info__gallery-slide {
  flex-shrink: 0;
  width: 80vw;
  max-width: 600px;
  border-radius: 64px;
  overflow: hidden;
}
.product-info__gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info__notes {
  margin: 0 auto 0;
  padding: 0 20px;
  max-width: 1100px;
  list-style: none;
}
.product-info__notes li {
  font-size: clamp(10px, 0.7320644217vw, 12px);
  line-height: 1.7;
  color: var(--yellow);
  text-align: left;
}
.product-info__notes li i {
  font-style: italic;
}
.product-info__notes li::before {
  content: "●";
}

.product-info__banner {
  margin: 50px auto;
  padding: 0 20px;
  display: block;
  width: 100%;
  max-width: 1100px;
}
.product-info__banner img {
  width: 100%;
}

.product-info__banner-photo {
  overflow: hidden;
}

.text-roll {
  display: inline-flex;
  overflow: hidden;
  position: relative;
  vertical-align: baseline;
}

.text-roll__line {
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-roll__line--from {
  position: relative;
}

.text-roll__line--to {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.text-roll__char {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-index) * 0.03s);
}

[data-text-roll]:hover .text-roll__line--from .text-roll__char,
[data-text-roll-trigger]:hover [data-text-roll] .text-roll__line--from .text-roll__char {
  transform: translateY(-100%);
}
[data-text-roll]:hover .text-roll__line--to .text-roll__char,
[data-text-roll-trigger]:hover [data-text-roll] .text-roll__line--to .text-roll__char {
  transform: translateY(-100%);
}

.title-anim__char-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.title-anim__char {
  display: inline-block;
  transform: translateY(120%);
}

[data-title-anim].is-animated .title-anim__char {
  animation: titleAnim-default 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s);
}

@keyframes titleAnim-default {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes titleAnim-slideUp {
  from {
    transform: translateY(120%);
  }
  60% {
    transform: translateY(-8%);
  }
  to {
    transform: translateY(0);
  }
}
[data-title-anim-color=yellow-to-pink].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-yellow-to-pink 1.4s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s), calc(var(--char-index) / var(--total-chars) * 0.5s + 0.5s);
}

@keyframes titleAnim-yellow-to-pink {
  from {
    color: var(--yellow);
  }
  to {
    color: var(--pink);
  }
}
[data-title-anim-color=pink-to-yellow].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-pink-to-yellow-color 1.4s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s), calc(var(--char-index) / var(--total-chars) * 0.5s + 0.5s);
}

@keyframes titleAnim-pink-to-yellow-color {
  from {
    color: var(--pink);
  }
  to {
    color: var(--yellow);
  }
}
[data-title-anim-color=pink-to-dark-green].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-pink-to-dark-green 1.4s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s), calc(var(--char-index) / var(--total-chars) * 0.5s + 0.5s);
}

@keyframes titleAnim-pink-to-dark-green {
  from {
    color: var(--pink);
  }
  to {
    color: var(--dark-green);
  }
}
[data-title-anim-color=dark-green-to-yellow].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-dark-green-to-yellow 1.4s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s), calc(var(--char-index) / var(--total-chars) * 0.5s + 0.5s);
}

@keyframes titleAnim-dark-green-to-yellow {
  from {
    color: var(--dark-green);
  }
  to {
    color: var(--yellow);
  }
}
[data-title-anim-color=yellow-to-dark-green].is-animated .title-anim__char {
  animation: titleAnim-slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both, titleAnim-yellow-to-dark-green 1.4s ease both;
  animation-delay: calc(var(--char-index) / var(--total-chars) * 0.5s), calc(var(--char-index) / var(--total-chars) * 0.5s + 0.5s);
}

@keyframes titleAnim-yellow-to-dark-green {
  from {
    color: var(--yellow);
  }
  to {
    color: var(--dark-green);
  }
}
.modal {
  --duration: 0.5s;
  display: none;
  color: var(--dark-green);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut var(--duration) cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn var(--duration) cubic-bezier(0, 0, 0.2, 1);
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  padding-left: 40px;
}
.modal__scroller {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
  height: 100dvh;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.modal__container {
  border-radius: 64px 0 0 64px;
  width: clamp(700px, 74.0117130307vw, 1011px);
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: clamp(40px, 8.0527086384vw, 110px);
  padding-right: clamp(20px, 4.0263543192vw, 55px);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}
.modal__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--pink);
  border-radius: 100vmax 0 0 100vmax;
  transform-origin: right center;
}
[aria-hidden=true] .modal__bg {
  animation: mmbgOut var(--duration) ease-in forwards;
}
[aria-hidden=false] .modal__bg {
  animation: mmbgIn var(--duration) ease-in-out forwards;
}
.modal__inner {
  max-width: 685px;
}
[aria-hidden=true] .modal__inner {
  animation: mmSlideOut var(--duration) ease-in forwards;
}
[aria-hidden=false] .modal__inner {
  animation: mmSlideIn var(--duration) ease-out forwards;
}
.modal__close {
  font-size: calc(0.875 * 1rem);
  color: inherit;
  font-weight: 700;
  font-family: var(--font-family-en) !important;
  display: flex;
  align-items: center;
  gap: 0 8px;
  position: absolute;
  top: 48px;
  right: clamp(36px, 5.8565153734vw, 88px);
  background: none;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 0 48px 0 0;
}
.modal__close-button {
  aspect-ratio: 1/1;
  width: 40px;
  border-radius: 100vmax;
  background: var(--yellow);
  position: absolute;
  right: 0;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  transform: rotate(45deg);
  transition: width 0.3s, right 0.3s;
}
.modal__close-button::before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: transform 0.3s;
}
.modal__close-button::after {
  content: "";
  display: block;
  height: 11px;
  width: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: transform 0.3s;
}
.modal__close-text {
  color: var(--dark-green);
}
[aria-hidden=true] .modal__close-text {
  animation: mmSlideOut var(--duration) ease-in forwards;
}
[aria-hidden=false] .modal__close-text {
  animation: mmSlideIn var(--duration) ease-out forwards;
}
.modal__heading {
  display: inline-flex;
  margin-bottom: 10px;
  position: relative;
}
.modal__heading h4 {
  display: inline-block;
  font-weight: 700;
  padding: 1em 1em;
  font-size: calc(1.125 * 1rem);
  color: var(--dark-green);
  background-image: url("/link_wide_2/assets/images/modal_title_bg.svg");
  background-size: 100% 100%;
  background-position: left center;
  background-repeat: no-repeat;
}
.modal__contents {
  border-radius: 24px;
  padding: 30px 40px;
  position: relative;
}
.modal__contents::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: var(--yellow);
  z-index: -1;
  border-radius: 24px;
  transform-origin: right center;
}
[aria-hidden=true] .modal__contents::before {
  animation: mmInnerOut var(--duration) ease-in forwards;
}
[aria-hidden=false] .modal__contents::before {
  animation: mmInnerIn var(--duration) ease-out forwards;
}
.modal__desc {
  font-size: calc(1 * 1rem);
  line-height: 1.6875;
  margin-top: 10px;
}
.modal__desc .fz-sm {
  font-size: calc(0.875 * 1rem);
}
.modal__caution {
  margin-top: 8px;
  font-size: calc(0.75 * 1rem);
}
.modal__mb-md {
  margin-bottom: 20px;
}
.modal__grid {
  display: grid;
  gap: 30px 24px;
}
.modal__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.modal__grid-title {
  font-size: calc(1.125 * 1rem);
  font-weight: 700;
  line-height: 1.3888888889;
  margin: 10px 0;
}
.modal__grid-title:last-child {
  margin-bottom: 0;
}
.modal__grid--flow .modal__grid-col {
  padding-right: 8px;
  position: relative;
}
.modal__grid--flow .modal__grid-col:last-child .modal__grid-image::after {
  display: none;
}
.modal__grid--flow .modal__grid-image {
  display: block;
  position: relative;
}
.modal__grid--flow .modal__grid-image img {
  border-radius: 40px;
}
.modal__grid--flow .modal__grid-image::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 10px;
  -webkit-mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
          mask-image: url("/link_wide_2/assets/images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--light-blue);
  position: absolute;
  top: calc(50% - 5px);
  right: -18px;
}
.modal__grid img {
  vertical-align: top;
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmbgOut {
  from {
    transform: scale(1) translateX(0);
    border-radius: 120px 0 0 120px;
  }
  to {
    transform: scale(0.1) translateX(50%);
    border-radius: 100vmax 0 0 100vmax;
  }
}
@keyframes mmbgOutSP {
  from {
    transform: scale(1) translateY(0);
    border-radius: 0 0 0 0;
  }
  to {
    transform: scale(0.1) translateY(50%);
    border-radius: 100vmax 100vmax 0 0;
  }
}
@keyframes mmbgIn {
  from {
    transform: scale(0.1) translateX(50%);
    border-radius: 100vmax 0 0 100vmax;
  }
  to {
    transform: scale(1) translateX(0);
    border-radius: 120px 0 0 120px;
  }
}
@keyframes mmbgInSP {
  from {
    transform: scale(0.1) translateY(50%);
    border-radius: 100vmax 100vmax 0 0;
  }
  to {
    transform: scale(1) translateY(0);
    border-radius: 0 0 0 0;
  }
}
@keyframes mmSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20%);
  }
}
@keyframes mmSlideIn {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mmInnerOut {
  from {
    opacity: 1;
    transform: scaleX(1);
  }
  to {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes mmInnerIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes mmLanIn {
  from {
    grid-template-rows: 0fr;
  }
  to {
    grid-template-rows: 1fr;
  }
}
@keyframes mmLanOut {
  from {
    grid-template-rows: 1fr;
  }
  to {
    grid-template-rows: 0fr;
  }
}
.modal-video {
  display: none;
}
.modal-video[aria-hidden=true] .modal-video__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal-video[aria-hidden=false] .modal-video__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal-video.is-open {
  display: block;
}
.modal-video__overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  padding: 0 40px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: white transparent;
  scroll-behavior: smooth;
}
.modal-video__overlay::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.modal-video__overlay::-webkit-scrollbar-track {
  background: transparent;
}
.modal-video__overlay::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 2px;
}
.modal-video__container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: auto;
  padding: 60px 0;
}
.modal-video__container iframe,
.modal-video__container video {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 42px;
  inset: 0;
  background: #000;
}
.modal-video__close {
  font-size: calc(0.875 * 1rem);
  color: var(--light-blue);
  font-weight: 700;
  font-family: var(--font-family-en) !important;
  display: flex;
  align-items: center;
  gap: 0 8px;
  position: absolute;
  top: 10px;
  right: 0;
  background: none;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 0 48px 0 0;
}
.modal-video__close-button {
  aspect-ratio: 1/1;
  width: 40px;
  border-radius: 100vmax;
  background: var(--yellow);
  position: absolute;
  right: 0;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  transform: rotate(45deg);
  transition: width 0.3s, right 0.3s;
}
.modal-video__close-button::before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: transform 0.3s;
}
.modal-video__close-button::after {
  content: "";
  display: block;
  height: 11px;
  width: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: transform 0.3s;
}

.modal-language {
  display: none;
}
.modal-language[aria-hidden=true] .modal-language__overlay {
  animation: mmLanOut 0.4s cubic-bezier(0, 0, 0.2, 1);
}
.modal-language[aria-hidden=false] .modal-language__overlay {
  animation: mmLanIn 0.4s cubic-bezier(0, 0, 0.2, 1);
}
.modal-language.is-open {
  display: block;
}
.modal-language__overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  display: grid;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 999;
  padding: 0;
  overflow: hidden;
}
.modal-language__container {
  max-width: 1200px;
  position: relative;
  margin: auto;
  padding: 0;
  overflow: hidden;
}
.modal-language__close {
  font-size: calc(0.875 * 1rem);
  color: var(--light-blue);
  font-weight: 700;
  font-family: var(--font-family-en) !important;
  display: flex;
  align-items: center;
  gap: 0 8px;
  position: absolute;
  top: 10px;
  right: 0;
  background: none;
  -webkit-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.modal-language__close-button {
  aspect-ratio: 1/1;
  width: 40px;
  border-radius: 100vmax;
  background: var(--yellow);
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  transform: rotate(45deg);
}
.modal-language__close-button::before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
}
.modal-language__close-button::after {
  content: "";
  display: block;
  height: 11px;
  width: 1px;
  border-radius: 100vmax;
  background: var(--wine-red-dark);
  grid-column: 1/2;
  grid-row: 1/2;
}
.modal-language__fixed-close {
  position: fixed;
  inset: 0;
}

.modal--qr .modal__container {
  width: clamp(760px, 92.2401171303vw, 1400px);
  padding: 0;
  overflow: hidden;
}
.modal--qr .modal__inner {
  max-width: none;
}
.modal--qr .modal__close {
  z-index: 3;
  top: 24px;
  right: 24px;
}
.modal--qr .modal__close-text {
  color: #fff;
}

.qr-print {
  color: var(--dark-green);
}

.qr-print__header {
  display: grid;
  grid-template-areas: "intro kv";
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.qr-print__kv {
  grid-area: kv;
  background: var(--dark-green);
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.qr-print__kv picture,
.qr-print__kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.qr-print__kv img {
  min-height: 295px;
}

.qr-print__intro {
  display: flex;
  padding: 55px 25px 24px 102px;
  align-items: center;
  gap: 30px;
}

.qr-print__icon {
  width: 10.980966325vw;
  margin-bottom: 12px;
}
.qr-print__icon picture,
.qr-print__icon img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
}

.qr-print__title {
  margin: 0 0 12px;
  font-size: clamp(40px, 3.074670571vw, 48px);
  font-weight: 700;
  line-height: 1.15;
}

.qr-print__lead {
  margin: 0;
  font-size: calc(1.125 * 1rem);
  font-weight: 700;
  line-height: 1.7;
}
.qr-print__lead span {
  display: block;
  font-size: 10px;
}

.qr-print__body {
  padding: 6.7% 8% 3%;
}

.qr-print__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 88px;
}

.qr-print__nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  background: var(--yellow);
  border-radius: 33px;
  padding: 29px 40px 57px;
  min-height: 100%;
  transition: transform 0.2s;
}

.qr-print__nav-icon {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.qr-print__nav-icon picture,
.qr-print__nav-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-print__nav-title {
  margin-bottom: 10px;
  display: block;
  font-size: calc(1.3125 * 1rem);
  font-weight: 700;
  line-height: 1.4;
}

.qr-print__nav-desc {
  display: block;
  margin-top: 4px;
  font-size: calc(0.9375 * 1rem);
  line-height: 1.45;
  font-weight: 500;
}

.qr-print__nav-arrow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  transform: translate(-50%, 50%);
}
.qr-print__nav-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--dark-green);
  border-bottom: 1px solid var(--dark-green);
  transform: translate(-50%, -60%) rotate(45deg);
}

.qr-print__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 40px;
}

.qr-print__detail {
  scroll-margin-top: 24px;
}

.qr-print__detail-badge {
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 16px;
  background: var(--yellow);
  border-radius: 5px;
  font-size: calc(1.75 * 1rem);
  font-weight: 700;
  text-align: center;
}

.qr-print__detail-heading {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dark-green);
  font-size: calc(1.25 * 1rem);
  font-weight: 700;
  line-height: 1.4;
}

.qr-print__detail-text {
  margin: 12px 0 20px;
  font-size: calc(0.875 * 1rem);
  line-height: 1.7;
  font-weight: 500;
}

.qr-print__detail-visual picture,
.qr-print__detail-visual img {
  width: 93%;
  height: auto;
  display: block;
}

.Width {
  margin-right: auto;
  margin-left: auto;
}
.InstaxApp {
  background-color: #d9ffff;
}
.InstaxApp img {
  height: auto;
}
.InstaxApp__Main {
  display: grid;
  justify-content: center;
}
.InstaxApp__Image {
  justify-self: center;
}
.InstaxApp__Title {
  font-weight: 700;
  text-align: center;
}
.InstaxApp__Link {
  display: flex;
  max-width: 410px;
}

.InstaxApp__Link a {
  display: block;
}

.InstaxApp__Link a:nth-of-type(2) {
  margin-left: 20px;
}

.InstaxApp__Annotations {
  display: grid;
  font-size: 11px;
  line-height: 1.63;
}
.InstaxApp__Annotations li {
  display: flex;
}

:lang(ja) .InstaxApp__Annotations li::before {
  content: "※";
}

:not(:lang(ja)) .InstaxApp__Annotations li::before {
  content: "*";
}

.InstaxApp__Product {
  border-top: 1px solid #999999;
}

.concept-feature-sp--01 {
  height: 100lvh;
}
.concept-feature-sp--02 {
  height: 200px;
}
.concept-feature-sp--03 {
  height: 200px;
}
.concept-feature-sp--04 {
  height: 100lvh;
}
.concept-feature-sp--05 {
  height: 400px;
}
.concept-feature-sp--06 {
  height: 400px;
}
.features-point__screen-fixed .features-layered__image .is-screen__base {
  opacity: 1;
}

.features-point--selfie .inner-grid .tab-buttons {
  opacity: 1;
  visibility: visible;
}

#contents:has(.features-point-full--hybrid.is-complete) .product__heading {
  visibility: hidden;
}

.intro {
  --intro-devices-bottom: 10vh;
  --intro-devices-w: min(100%, 1200px);
  --intro-gap: 16px;
  --intro-tile: min(
    calc((100vh - var(--intro-gap) * 2) / 3),
    calc((100vw - var(--intro-gap) * 4) / 5)
  );
  --intro-tile-outer: var(--intro-tile);
  --intro-phase3-h: min(
    var(--intro-tile),
    calc((100vw - 80px) / 3 * 520 / 650)
  );
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--pink);
  height: 100vh;
}

.intro-scroll {
  height: 300lvh;
}

.intro__masonry {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--intro-gap);
  height: 100%;
  margin: 0 auto;
}

.intro__row {
  overflow: hidden;
  white-space: nowrap;
}

.intro__row--top {
  margin-top: auto;
}

.intro__row--middle {
  flex-shrink: 0;
}

.intro__row--bottom {
  margin-bottom: auto;
}

.intro__row-track {
  display: flex;
  gap: var(--intro-gap);
  will-change: transform;
}
.intro__row-track picture {
  flex-shrink: 0;
  width: var(--intro-tile);
  height: var(--intro-tile);
}
.intro__row-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__row--top .intro__row-track picture,
.intro__row--bottom .intro__row-track picture {
  width: var(--intro-tile-outer);
  height: var(--intro-tile-outer);
}

.intro__row--top .intro__row-track {
  transform: translateX(300px);
}

.intro__row--middle .intro__row-track {
  transform: translateX(-300px);
}

.intro__row--bottom .intro__row-track {
  transform: translateX(300px);
}

.intro__phase2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.intro__photo-mixer-title {
  position: absolute;
  left: 50%;
  font-family: "Roboto", var(--font-family-en), sans-serif;
  font-size: clamp(6rem, min(10.4vw, 14vh), 9rem);
  font-weight: 900;
  color: var(--yellow);
  white-space: nowrap;
  z-index: -1;
  opacity: 0;
}
.intro__photo-mixer-title sup {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  overflow: visible;
  font-size: 1em;
  vertical-align: baseline;
}
.intro__photo-mixer-title sup .title-anim__char-wrapper {
  position: absolute;
  left: 0.1em;
  top: -1.3em;
  overflow: visible;
  font-size: 0.6em;
  line-height: 1;
}

.intro__cuts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: var(--intro-gap);
  width: 100%;
  justify-content: center;
}
.intro__cuts picture {
  flex-shrink: 0;
  width: var(--intro-tile);
  height: var(--intro-tile);
}
.intro__cuts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__devices {
  position: absolute;
  bottom: var(--intro-devices-bottom);
  left: 50%;
  transform: translateX(-50%);
  width: var(--intro-devices-w);
  aspect-ratio: 16/9;
  z-index: 1;
  overflow: visible;
}

.intro__smartphone {
  position: absolute;
  bottom: -110%;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: bottom center;
  width: 29%;
}
.intro__smartphone .intro__smartphone-after {
  width: 100%;
  height: auto;
}

.intro__bluetooth {
  position: absolute;
  left: 30.5%;
  width: 11%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 3;
}

.intro__instax-wrap {
  position: absolute;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  width: 34%;
}
.intro__instax-wrap .intro__instax-before,
.intro__instax-wrap .intro__instax-after,
.intro__instax-wrap .intro__instax-photo {
  width: 100%;
  height: auto;
}
.intro__instax-wrap .intro__instax-before,
.intro__instax-wrap .intro__instax-after {
  position: relative;
  z-index: 2;
}
.intro__instax-wrap .intro__instax-after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.intro__instax-wrap .intro__instax-photo {
  position: absolute;
  bottom: 0;
  left: 13%;
  z-index: 1;
  width: 80%;
}

.intro__phase3 {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--intro-gap);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.intro__phase3-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.intro__phase3-row picture {
  flex-shrink: 0;
  height: var(--intro-phase3-h);
  width: calc(var(--intro-phase3-h) * 650 / 520);
  position: relative;
  z-index: 1;
}
.intro__phase3-row picture:has(img[src*=after02]) {
  z-index: 10;
}
.intro__phase3-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.intro__phase3-row img[src*=after03] {
  z-index: 10;
}

.intro__phase3-text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  color: var(--pink);
  white-space: nowrap;
}

.container:has(.page-main-title) {
  padding-top: 60px;
  padding-bottom: 100px;
}

:where(.container:has(.page-main-title)) {
  line-height: 1.8;
}

.page-main-title {
  text-align: center;
  font-size: calc(2.25 * 1rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 50px;
}
.page-main-title + * {
  margin-top: 0 !important;
}

.page-section-title {
  color: var(--dark-green);
  font-size: calc(1.5 * 1rem);
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 80px;
}

.page-section-title:nth-child(1) {
  margin-top: 0;
}

.support-grid {
  background: var(--pink);
  border-radius: 20px;
  padding: 100px 40px;
}
.support-grid__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}
[lang=es] .support-grid__inner {
  max-width: unset;
}
.support-grid__col {
  width: 258px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
[lang=es] .support-grid__col {
  width: auto;
}
.support-grid__icon {
  width: 85px;
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
}
.support-grid__title {
  font-size: calc(1.5 * 1rem);
  font-weight: bold;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.4;
}
.support-grid__button.button-yellow {
  margin-inline: auto;
  margin-top: auto;
  width: 100%;
}
.support-grid__button.button-yellow .button-yellow__text {
  justify-content: center;
}

.support-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 50px 40px;
  max-width: 468px;
  margin-inline: auto;
  margin-top: 80px;
}
.support-sub-grid__col {
  width: 100%;
}
.support-sub-grid__title {
  text-align: center;
  font-size: calc(1.75 * 1rem);
  font-weight: bold;
  color: var(--pink);
  margin-bottom: 30px;
}
.support-sub-grid__button {
  margin-inline: auto;
  width: 100%;
}
.support-sub-grid__button .button-yellow__text {
  justify-content: center;
}
.support-sub-grid__list {
  font-size: calc(1 * 1rem);
  display: grid;
  gap: 20px;
}
.support-sub-grid__list-link {
  color: var(--yellow);
  text-decoration: underline;
}
.support-sub-grid__list-link:hover {
  text-decoration: none;
}

.spec-list {
  display: grid;
  gap: 8px 0;
  color: var(--dark-green);
  line-height: 1.5;
}
.spec-list__heading {
  font-weight: 700;
}
.spec-list__desc {
  border-bottom: 1px solid currentColor;
  padding-bottom: 20px;
}
.spec-list__desc a {
  color: inherit;
  text-decoration: underline;
}
.spec-list__desc a:hover {
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 20px;
}
.faq-list__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.faq-list__heading {
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  background: var(--yellow);
  border: none;
  border-radius: 10px 10px 0 0;
  text-align: left;
  font-size: calc(1 * 1rem);
  font-weight: 700;
  color: var(--dark-green);
  display: grid;
  grid-template-columns: auto 1fr 14px;
  align-items: baseline;
  gap: 10px;
  padding: 12px 20px 19px;
  transition: background 0.3s;
}
.faq-list__heading::before {
  content: "Q.";
  font-size: calc(1.75 * 1rem);
  font-family: var(--font-family-en) !important;
  transform: translateY(3px);
}
.faq-list__heading-icon {
  width: 14px;
  aspect-ratio: 1/1;
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  transform: translateY(-4px);
  transition: transform 0.3s;
}
.faq-list__heading-icon::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: var(--dark-green);
  grid-column: 1/2;
  grid-row: 1/2;
}
.faq-list__heading-icon::after {
  content: "";
  display: block;
  height: 14px;
  width: 2px;
  background: var(--dark-green);
  grid-column: 1/2;
  grid-row: 1/2;
  transition: opacity 0.3s;
}
[aria-expanded=true] .faq-list__heading-icon::after {
  opacity: 0;
}
.faq-list__contents {
  display: none;
  font-size: calc(1 * 1rem);
  line-height: 1.8;
  color: var(--yellow);
}
.faq-list__contents a {
  color: var(--pink);
  text-decoration: underline;
}
.faq-list__contents a:hover {
  text-decoration: none;
}
.faq-list__contents .list-indent__item {
  color: var(--yellow);
}
.faq-list__contents-inner {
  background: #0e4034;
  border-radius: 0 0 10px 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 12px 30px 30px 20px;
  font-weight: 500;
}
.faq-list__contents-inner a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-list__contents-inner::before {
  content: "A.";
  font-weight: 700;
  font-size: calc(1.75 * 1rem);
  font-family: var(--font-family-en) !important;
  transform: translateY(3px);
}
.faq-list__indent {
  margin-left: -37px;
}

.faq-icon-gear {
  margin: 0.3em 0.1em 0;
  width: 1em;
}

.faq-icon-switch {
  margin: 0.3em 0.1em 0;
  width: 2em;
}

.faq-icon-return {
  margin: 0.3em 0.1em 0;
  width: 1em;
}

.faq-icon-check {
  margin: 0.3em 0.1em 0;
  width: 1em;
}

.faq-image {
  margin: 20px 0;
}

.faq-steps {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  margin-bottom: 1em;
}

.faq-example-title {
  margin: 1.5em 0 0.8em;
}

.faq-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}
.faq-image-grid__col img {
  width: 100%;
}

.faq-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
}
.faq-text-grid__col {
  display: flex;
}
.faq-text-grid .list-indent {
  display: flex;
}
.faq-text-grid .list-indent__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-text-grid .list-indent__text picture {
  margin-top: auto;
  margin-bottom: 0;
}

.common-table {
  width: 100%;
  background: var(--yellow);
  color: var(--dark-green);
  font-size: calc(0.875 * 1rem);
  border-collapse: collapse;
}
.common-table th {
  border: 1px solid var(--dark-green);
  padding: 10px;
  vertical-align: middle;
}
.common-table td {
  border: 1px solid var(--dark-green);
  background: #fff;
  padding: 10px;
  vertical-align: middle;
}

#faq_q14 .common-table td,
#faq_q15 .common-table td {
  text-align: center;
}

.manuals-list {
  font-size: calc(0.875 * 1rem);
  line-height: 1.4285714286;
  font-weight: 700;
  display: grid;
  gap: 40px 54px;
  grid-template-columns: repeat(auto-fit, minmax(73px, 1fr));
  color: var(--pink);
  max-width: 910px;
  margin-inline: auto;
}
.manuals-list__link {
  color: inherit;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.manuals-list__link:hover {
  color: var(--yellow);
}
.manuals-list__icon {
  aspect-ratio: 1/1;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.manuals-list__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  -webkit-mask-image: url('data:image/svg+xml;charset=utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 45 57"><path d="M38.1,6.6L31.3,0H0v57h45V13.2L38.1,6.6z M41.8,12.9H31.6V3.1l5.2,5L41.8,12.9z M2,55V2h27.6v12.9H43V55H2z"/></svg>');
          mask-image: url('data:image/svg+xml;charset=utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 45 57"><path d="M38.1,6.6L31.3,0H0v57h45V13.2L38.1,6.6z M41.8,12.9H31.6V3.1l5.2,5L41.8,12.9z M2,55V2h27.6v12.9H43V55H2z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
  -webkit-mask-position: center center;
          mask-position: center center;
}

.firmware-update {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  color: var(--light-yellow);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 20px 0;
  font-weight: 500;
  margin-bottom: 30px;
}
.firmware-update__heading {
  font-size: calc(1.25 * 1rem);
  font-weight: 700;
}
.firmware-update__contents .version {
  font-weight: 700;
  font-size: calc(1.25 * 1rem);
}
.firmware-update__contents .version + * {
  margin-top: 8px;
}

.firmware-box {
  background: #882657;
  padding: 26px 26px 30px;
  margin: 30px 0 46px;
}
.firmware-box p {
  word-break: break-all;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 50px 40px;
  margin-top: 30px;
}
.step-grid__col {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0 0;
  grid-row: span 3;
}
.step-grid__heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px 20px;
}
.step-grid__heading .step {
  width: fit-content;
  background: var(--light-yellow);
  color: var(--wine-red-dark);
  font-size: calc(1.25 * 1rem);
  font-weight: bold;
  border-radius: 100vmax;
  padding: 0 16px;
  flex-shrink: 0;
}
.step-grid__heading .title {
  color: var(--light-blue);
  font-size: calc(1.25 * 1rem);
  font-weight: bold;
}
.step-grid__image {
  margin-top: 20px;
}

.spec#contents {
  background: var(--dark-green);
}
.spec .spec-contents {
  background: var(--yellow);
  padding: 40px;
  border-radius: 32px;
}

.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}

.fw-bold {
  font-weight: bold !important;
}
.text-start {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mb-xs {
  margin-bottom: 4px !important;
}

.mt-xs {
  margin-top: 4px !important;
}
.mb-sm {
  margin-bottom: 8px !important;
}

.mt-sm {
  margin-top: 8px !important;
}
.mb-md {
  margin-bottom: 16px !important;
}

.mt-md {
  margin-top: 16px !important;
}
.mb-lg {
  margin-bottom: 24px !important;
}

.mt-lg {
  margin-top: 24px !important;
}
.mb-xl {
  margin-bottom: 40px !important;
}

.mt-xl {
  margin-top: 40px !important;
}
.mb-xxl {
  margin-bottom: 64px !important;
}

.mt-xxl {
  margin-top: 64px !important;
}
.mb-xxxl {
  margin-bottom: 144px !important;
}

.mt-xxxl {
  margin-top: 144px !important;
}
.m-inline-auto {
  margin-inline: auto !important;
}

.m-inline-inherit {
  margin-inline: inherit !important;
}

@media (any-hover: hover) and (min-width: 768px){
  .information__button:hover {
    transform: scale(1.12);
  }
}

@media (min-width: 768px){
  .sp-only {
    display: none !important;
  }
  .local-navi__link {
    height: 100%;
  }
  .local-navi__sublist {
    background: var(--yellow);
    position: absolute;
    top: 100%;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
  }
  .local-navi__item:hover .local-navi__sublist, .local-navi__item:focus-within .local-navi__sublist {
    opacity: 1;
    visibility: visible;
  }
  .local-navi__language {
    position: absolute;
    right: 20px;
    align-self: center;
  }
  .local-navi__toggle {
    display: none;
  }
  .fv__bg {
    bottom: var(--fv-app-h);
  }
  .fv__stage {
    position: relative;
    min-height: var(--fv-stage-min-h);
  }
  .fv__fg {
    position: absolute;
    inset: 0 20px;
    z-index: 4;
  }
  .fv__visual {
    position: absolute;
    left: var(--fv-visual-left);
    bottom: calc(var(--fv-app-h) - var(--fv-stage-base-h) * 0.2);
    width: var(--fv-visual-width);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  .fv__copy {
    position: absolute;
    top: var(--fv-copy-top);
    right: var(--fv-copy-right);
    bottom: var(--fv-copy-bottom);
    width: calc(var(--fv-copy-width) + 2px);
    container-type: inline-size;
    container-name: fv-copy;
    display: flex;
    flex-direction: column;
    z-index: 4;
  }
  .fv__lead {
    width: 100%;
    max-width: 100%;
  }
  .fv__catch {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: calc((100cqw - 2px) / 7);
  }
  .fv__product {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .fv__product-name img {
    width: 100%;
    max-width: none;
  }
  .fv__features {
    padding-left: 11%;
  }
  .promo-video-wrapper {
    --promo-video-pt: max(56px, min(135px, (100lvh - 127px) * 0.17914));
    --promo-video-wmax-h: max(
      240px,
      min(1100px, (100lvh - 127px - var(--promo-video-pt)) * 1.77778)
    );
  }
  .feature03-steps-scroll__item--step02 {
    --step02-visual-offset: 24px;
  }
  [lang=de] .other-features__badge {
    font-size: calc(min(1080px, 100vw - 40px) / 12);
  }
  .qr-print__kv {
    border-radius: 0;
    margin-right: 100px;
    border-radius: 0 0 32px 32px;
  }
  .concept-feature-sp--01 {
    display: none;
  }
  .concept-feature-sp--02 {
    display: none;
  }
  .concept-feature-sp--03 {
    display: none;
  }
  .concept-feature-sp--04 {
    display: none;
  }
  .concept-feature-sp--05 {
    display: none;
  }
  .concept-feature-sp--06 {
    display: none;
  }
  .features-point__screen-fixed .features-selfie__image {
    display: none;
  }
  .features-selfie .features-point__heading {
    display: none;
  }
  .features-layered .features-point__heading {
    display: none;
  }
  .features-layered .features-point__heading {
    display: none;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid .inner-deco {
    top: -18px;
  }
  [lang=ja] .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid .inner-deco {
    top: -30px;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid .inner-deco::before {
    left: -50px;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid .inner-deco--bottom {
    top: auto;
    bottom: -16px;
  }
  .features-wrapper:has(.features-point--selfie .features-point__screen.is-inner-animated) .is-center .features-selfie__image {
    transition: visibility 0.8s, opacity 0.8s, top 0.8s, right 0.8s, transform 0.8s cubic-bezier(0.37, 0.12, 0.18, 1);
  }
  .features-wrapper:has(.features-point--selfie .features-point__screen.is-hidden) .is-center .features-selfie__image {
    opacity: 0;
    transform: translate(44%, calc(-200% + 20px)) scale(0.962) !important;
  }
  .intro__row--top .intro__row-track,
  .intro__row--bottom .intro__row-track {
    margin-left: calc(-2 * (var(--intro-tile-outer) + var(--intro-gap)));
  }
  [lang=es] .support-grid__inner {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .spec-list {
    gap: 20px 0;
    grid-template-columns: 210px 1fr;
  }
  [lang=de] .spec-list {
    grid-template-columns: 240px 1fr;
  }
  .spec-list__heading {
    border-bottom: 1px solid currentColor;
    padding-bottom: 20px;
    padding-right: 30px;
  }
  .faq-list__heading::before {
    transform: translateY(2px);
  }
  .faq-list__contents-inner::before {
    transform: translateY(2px);
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .fw-md-bold {
    font-weight: bold !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-nowrap {
    white-space: nowrap !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-xs {
    margin-bottom: 4px !important;
  }
  .mt-md-xs {
    margin-top: 4px !important;
  }
  .mb-md-sm {
    margin-bottom: 8px !important;
  }
  .mt-md-sm {
    margin-top: 8px !important;
  }
  .mb-md-md {
    margin-bottom: 16px !important;
  }
  .mt-md-md {
    margin-top: 16px !important;
  }
  .mb-md-lg {
    margin-bottom: 24px !important;
  }
  .mt-md-lg {
    margin-top: 24px !important;
  }
  .mb-md-xl {
    margin-bottom: 40px !important;
  }
  .mt-md-xl {
    margin-top: 40px !important;
  }
  .mb-md-xxl {
    margin-bottom: 64px !important;
  }
  .mt-md-xxl {
    margin-top: 64px !important;
  }
  .mb-md-xxxl {
    margin-bottom: 144px !important;
  }
  .mt-md-xxxl {
    margin-top: 144px !important;
  }
  .m-inline-md-auto {
    margin-inline: auto !important;
  }
  .m-inline-md-inherit {
    margin-inline: inherit !important;
  }
}

@media (min-width: 768px) and (max-aspect-ratio: 1/1){
  .intro {
    --intro-tile: min(
      calc((100vh - var(--intro-gap) * 2) / 3),
      calc((100vw - var(--intro-gap) * 2) / 3)
    );
    --intro-tile-outer: var(--intro-tile);
  }
  .intro .intro__cut--01,
  .intro .intro__cut--05 {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1040px){
  .fv-app__store img {
    height: 41.6px;
  }
}

@media (min-width: 768px) and (max-width: 1070px){
  .concept__film {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1240px){
  .fv {
    --fv-visual-width: 70%;
    --fv-fg-gap: 1px;
  }
  .fv__visual {
    left: 0;
    bottom: var(--fv-app-h);
    height: calc(var(--fv-stage-base-h) * 0.86 - var(--fv-app-h));
  }
}

@media (min-width: 768px) and (max-width: 1279.98px){
  .features-wrapper:has(.features-point--selfie .features-point__screen.is-hidden) .is-center .features-selfie__image {
    transform: translate(44%, calc(-230% + 20px)) scale(0.962) !important;
  }
}

@media (min-width: 768px) and (min-aspect-ratio: 1/1){
  .intro {
    --intro-devices-w: min(90%, 1400px, calc(75vh * 16 / 9));
  }
}

@media (min-width: 1024px){
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .fw-lg-bold {
    font-weight: bold !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-xs {
    margin-bottom: 4px !important;
  }
  .mt-lg-xs {
    margin-top: 4px !important;
  }
  .mb-lg-sm {
    margin-bottom: 8px !important;
  }
  .mt-lg-sm {
    margin-top: 8px !important;
  }
  .mb-lg-md {
    margin-bottom: 16px !important;
  }
  .mt-lg-md {
    margin-top: 16px !important;
  }
  .mb-lg-lg {
    margin-bottom: 24px !important;
  }
  .mt-lg-lg {
    margin-top: 24px !important;
  }
  .mb-lg-xl {
    margin-bottom: 40px !important;
  }
  .mt-lg-xl {
    margin-top: 40px !important;
  }
  .mb-lg-xxl {
    margin-bottom: 64px !important;
  }
  .mt-lg-xxl {
    margin-top: 64px !important;
  }
  .mb-lg-xxxl {
    margin-bottom: 144px !important;
  }
  .mt-lg-xxxl {
    margin-top: 144px !important;
  }
  .m-inline-lg-auto {
    margin-inline: auto !important;
  }
  .m-inline-lg-inherit {
    margin-inline: inherit !important;
  }
}

@media (min-width: 1800px){
  .feature-point__middle {
    padding: 50px 3%;
  }
  .feature-point__inner {
    margin: 0 0 0 auto;
  }
  .feature-point--03 .feature-point__inner {
    margin: 0 auto 0 0;
  }
}

@media (max-width: 1279.98px){
  .container {
    padding-left: clamp(20px, 3.125vw, 40px);
    padding-right: clamp(20px, 3.125vw, 40px);
  }
}

@media (max-width: 1100px){
  .qr-print__intro {
    flex-direction: column;
  }
  .qr-print__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023.98px){
  .local-navi__inner {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px){
  .Width {
    width: 90%;
  }
  .InstaxApp__Inner {
    padding-top: 40px;
  }
  .InstaxApp__Main {
    row-gap: 24px;
  }
  .InstaxApp__Image {
    width: 100px;
  }
  .InstaxApp__Title {
    font-size: 20px;
  }
  .InstaxApp__Annotations {
    margin-top: 46px;
  }
  .InstaxApp__Product {
    margin-top: 34px;
  }
}

@media (max-width: 767.98px){
  .pc-only {
    display: none !important;
  }
  html:has(.modal.is-open) header:has(.ly_SPheader),
  html:has(.modal-video.is-open) header:has(.ly_SPheader) {
    opacity: 0;
    visibility: hidden;
  }
  .el_btn_pageTop {
    transition: opacity 0.3s, visibility 0.3s;
  }
  body {
    padding-top: 0 !important;
  }
  body:not(.is-other-hidden):has(.features-point--sound .is-inner-animated) .el_btn_pageTop {
    opacity: 0;
    visibility: 0;
  }
  header {
    position: relative !important;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .button-wrapper {
    gap: 8px;
  }
  .tab-buttons {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .tab-buttons::before {
    width: 100%;
    height: 50%;
    bottom: auto;
  }
  .tab-buttons:has(.button-tab[aria-selected=true]:nth-child(2))::before {
    left: auto;
    top: 50%;
  }
  .button-tab {
    min-width: 100px;
    padding: 5px 8px;
    font-size: calc(0.6875 * 1rem);
    min-height: 38px;
  }
  .button-product {
    padding: 2px 12px;
    min-width: 80px;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
  }
  [lang=fr] .button-product, [lang=es] .button-product, [lang=pt] .button-product {
    font-size: calc(0.75 * 1rem);
    padding: 2px 8px;
  }
  [lang=de] .button-product {
    font-size: calc(0.625 * 1rem);
    padding: 2px 8px;
  }
  .list-language {
    border-radius: 4px 4px 0 0;
  }
  .list-language__link {
    padding: 9px 10px;
  }
  .list-frame {
    gap: 30px 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .local-navi {
    position: fixed;
    bottom: var(--safe-bottom, 0px);
    top: auto;
    z-index: 100001;
  }
  .is-nav-hidden .local-navi {
    opacity: 0;
    visibility: hidden;
  }
  .local-navi__inner {
    min-height: inherit;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: var(--can-scroll);
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    padding: calc(40px + var(--safe-top, 0px)) 20px calc(40px + var(--safe-bottom, 0px));
    background: var(--dark-green);
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    animation: detect-scroll;
    animation-timeline: scroll(self);
  }
  .is-nav-open .local-navi__inner {
    opacity: 1;
    visibility: visible;
  }
  .local-navi__inner::before {
    content: "";
    display: block;
    height: 40px;
    width: 100%;
    flex-shrink: 0;
  }
  .local-navi__list {
    flex-direction: column;
    width: 200px;
    border-bottom: 1px solid var(--yellow);
  }
  .local-navi__item {
    height: auto;
    width: 100%;
    border-top: 1px solid var(--yellow);
  }
  .local-navi__item:has(.local-navi__sublist) .local-navi__link::after {
    background-color: currentColor;
  }
  .local-navi__item:has(.is-open) + .local-navi__item {
    margin-top: 20px;
  }
  .local-navi__link {
    font-size: calc(0.875 * 1rem);
    color: var(--yellow);
    padding: 20px 0;
    width: 100%;
    justify-content: space-between;
  }
  .local-navi__link::after {
    display: block;
    content: "";
    width: 7px;
    height: 5px;
    -webkit-mask-image: url("/link_wide_2/assets/images/icon_down.svg");
            mask-image: url("/link_wide_2/assets/images/icon_down.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: currentColor;
    margin-top: 2px;
    transform: rotate(-90deg);
  }
  .local-navi__link.is-open::after {
    margin-top: 1px !important;
    transform: rotate(180deg) !important;
  }
  .local-navi__sublist {
    display: none;
  }
  .local-navi__sublink {
    color: var(--yellow);
    padding: 12px 20px;
  }
  body:has(.modal-language.is-open) .local-navi__button {
    border-radius: 0 0 4px 4px;
  }
  .local-navi__button {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark-green);
    width: 106px;
    padding: 7px 22px 7px 18px;
  }
  .local-navi__language {
    position: relative;
    margin-top: 30px;
  }
  .fv__mv {
    background: linear-gradient(to right, var(--yellow) var(--fv-wipe-sp), var(--dark-green) var(--fv-wipe-sp));
  }
  .fv__bg {
    display: none;
  }
  .fv__bg-yellow {
    width: var(--fv-split-sp);
  }
  .fv__stage {
    padding: 20px 0 20px;
  }
  .fv__fg {
    padding-inline: 20px 15px;
  }
  .fv__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 8px;
  }
  .fv__visual-photo {
    margin-left: -10px;
    width: calc(100% + 20px);
    max-width: calc(110% + 20px);
    aspect-ratio: 742/638;
  }
  .fv__visual-name {
    font-size: clamp(10px, 3.2vw, 14px);
  }
  .fv__visual-name--blue {
    bottom: 3%;
  }
  .fv__visual-name--beige {
    bottom: -2%;
  }
  .fv__copy {
    display: none;
  }
  .fv__lead {
    box-sizing: border-box;
    width: calc(100% - var(--fv-split-sp));
    margin-left: auto;
    margin-bottom: 0;
    padding-right: 5px;
  }
  .fv__catch {
    box-sizing: border-box;
    width: 57.3333333333vw;
    max-width: min(320px, 100%);
    margin: 8px 0 10px auto;
    font-size: min(57.3333333333vw / 7, 40px);
  }
  .fv__product {
    width: 57.3333333333vw;
    max-width: min(320px, 100%);
    margin-bottom: 0;
  }
  .fv__product-name img {
    width: 57.3333333333vw;
    max-width: 320px;
  }
  .fv__category {
    margin: 2px 0 0;
    font-size: clamp(10px, 2.9333333333vw, 13px);
  }
  .fv__category-icon {
    width: 1.4em;
    height: 1.4em;
  }
  :not(:lang(ja)) .fv__category-icon {
    width: 1.1em;
    height: 1.1em;
  }
  .fv__features {
    display: none;
  }
  .fv__tagline {
    display: none;
  }
  .fv__slogan {
    display: block;
    box-sizing: border-box;
    width: calc(100% - var(--fv-split-sp));
    margin-left: var(--fv-split-sp);
    padding: 6.5% 16px 6%;
    background: var(--pink);
    text-align: center;
    line-height: 0;
  }
  .fv__app-bar-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-width: 0;
    box-sizing: border-box;
  }
  .fv__app-bar--pc {
    display: none;
  }
  .fv__app-bar--sp {
    display: block;
  }
  .fv-app {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 11px;
    min-width: 0;
    max-width: 100%;
  }
  .fv-app__icon img {
    width: 16vw;
    max-width: 70px;
  }
  .fv-app__stores {
    min-width: 0;
    justify-content: flex-start;
  }
  .fv-app__store {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(50% - 4px);
  }
  .fv-app__store picture {
    display: block;
    max-width: 100%;
  }
  .fv-app__store img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 10.6666666667vw;
  }
  .fv-app__note-text a {
    color: var(--yellow);
  }
  .fv[data-kv-anim]:not(.is-kv-done) .fv__app-bar--sp .fv-app {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .fv[data-kv-anim]:not(.is-kv-done) .fv__slogan {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
  .information {
    padding: 15px 20px 104px;
  }
  .information__container {
    padding: 27px 0 24px;
  }
  .information__grid {
    grid-template-columns: 1fr auto;
    grid-template-areas: "title button" "list list";
    gap: 10px 12px;
    align-items: start;
  }
  .information__title {
    font-size: clamp(15px, 4vw, 17px);
  }
  .information__button {
    width: clamp(26px, 6.9333333333vw, 30px);
  }
  .information__button::before {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
  }
  .information__button::after {
    height: 2.6666666667vw;
    width: 0.5333333333vw;
  }
  .information__list {
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .information__more {
    grid-column: 1/-1;
    padding-left: 0;
  }
  .information__list-link {
    display: grid;
    gap: 0;
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .information__list-new {
    margin-right: 0.5em;
  }
  .promo-video-wrapper {
    padding: 26.6666666667vw 20px 60px;
  }
  .promo-video__heading {
    top: 1.4em;
    font-size: clamp(40px, 10.6666666667vw, 60px);
  }
  .promo-video__embed {
    border-radius: 30px;
  }
  .promo-video__button {
    border-radius: 30px;
  }
  .promo-video__button::before {
    width: 50px;
  }
  .promo-video__button::after {
    width: 50px;
  }
  .promo-video__clips {
    margin-top: 30px;
    gap: 20px 0;
  }
  .promo-video__clip {
    font-size: calc(0.875 * 1rem);
    padding: 1.5em 2em;
    width: 100%;
    min-width: 200px;
    max-width: 400px;
  }
  .tutorial-video-wrapper {
    margin: 30px 0 0;
    padding: 0;
  }
  .tutorial-video__heading {
    top: -1.2em;
    font-size: clamp(40px, 10.6666666667vw, 60px);
  }
  .tutorial-video__button {
    border-radius: 30px;
  }
  .tutorial-video__button::before {
    width: 50px;
  }
  .tutorial-video__button::after {
    width: 50px;
  }
  .product-design-inner {
    border-radius: 34px;
    margin: 90px 0 0;
    border-radius: 30px;
    padding: 0 20px 140px;
  }
  .product-design {
    padding: 60px 0;
  }
  .product-design .container {
    padding: 0;
  }
  .product-design__heading {
    font-size: clamp(40px, 10.6666666667vw, 60px);
  }
  .product-design__description {
    font-size: clamp(16px, 4.2666666667vw, 20px);
  }
  .product-design__buttons--pc {
    display: none;
  }
  .product-design__buttons--col {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    gap: 1%;
    margin: 24px 0 0;
    padding: 0 12px;
  }
  .product-design__buttons--col .button-product {
    width: 30%;
    min-width: 0;
    margin-bottom: 0;
    min-height: 28px;
    font-size: clamp(14px, 3.7333333333vw, 18px);
  }
  [lang=de] .product-design__buttons--col .button-product, [lang=es] .product-design__buttons--col .button-product {
    font-weight: bold;
    font-size: clamp(10px, 2.6666666667vw, 13px);
  }
  .product-design__grid {
    max-width: 100%;
  }
  .product-design__cols-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
  }
  .product-design__col {
    width: 100%;
    flex-shrink: 0;
  }
  .product-design__arrow {
    width: 50px;
    height: 50px;
  }
  .product-design__arrow--prev {
    left: -15px;
  }
  .product-design__arrow--next {
    right: -15px;
  }
  .product-design__arrow--grid {
    display: none;
  }
  .product-design__arrow--col {
    display: flex;
  }
  .product-design__bg {
    border-radius: 32px;
    inset: 0;
  }
  .product-design__item picture img {
    width: 80%;
    height: 80%;
    transform: translateY(-8%);
  }
  .product-design__name {
    left: 5%;
    bottom: 3%;
    font-size: clamp(30px, 8vw, 40px);
  }
  .product-design__col--blue .product-design__name {
    top: auto;
    right: 5%;
    bottom: 3%;
  }
  .feature {
    margin-top: 0;
    padding: 0 0 50px;
  }
  .feature__heading-scroll {
    height: auto;
  }
  .feature__heading-stage {
    height: auto;
  }
  .feature__heading-image img {
    min-height: 55lvh;
  }
  .feature__heading {
    padding: 0 20px;
    font-size: clamp(40px, 10.6666666667vw, 60px);
    bottom: -0.5em;
    text-align: left;
  }
  .feature-point {
    padding: 67px 0;
    transform: translate(0, 0);
  }
  .feature-point__middle {
    padding: 13.3333333333vw 5.3333333333vw;
  }
  .feature-point__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: start;
    justify-content: start;
  }
  .feature-point__number {
    margin-left: -1.8666666667vw;
    margin-bottom: 3.2vw;
    width: 18.6666666667vw;
  }
  .feature-point__title {
    font-size: clamp(28px, 7.4666666667vw, 48px);
  }
  .feature-point__desc {
    max-width: auto;
    font-size: clamp(16px, 4.2666666667vw, 22px);
  }
  .feature-point__note i {
    max-width: auto;
  }
  :not(:lang(ja)) .feature-point__note {
    flex-direction: column;
  }
  .feature-point__image {
    display: block;
  }
  .feature-point--01 {
    position: relative;
    height: auto;
  }
  .feature-point--01 .feature-point__outer {
    transform: translateX(0);
  }
  .feature-point--01 .feature-point__middle {
    margin-right: 0;
    max-width: 500px;
    min-height: auto;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--01 .feature-point__inner {
    padding: 5.3333333333vw 0 5.3333333333vw;
    translate: 0 0;
    gap: 45px;
  }
  .feature-point--01 .feature-point__image {
    opacity: 0;
    padding: 0 5.3333333333vw 0;
    transition: opacity 0.6s 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--01 .feature-point__image .feature-point__image-main {
    width: 100%;
    opacity: 1;
  }
  .feature-point--01 .feature-point__image .feature-point__image-bluetooth {
    width: 11%;
    top: 0%;
    right: 53%;
    opacity: 1;
  }
  .feature-point--01 .feature-point__image .feature-point__image-dot {
    top: 21%;
    right: 48%;
    width: 20%;
  }
  .feature-point--01 .feature-point__text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.3s cubic-bezier(0, 0, 0.2, 1), transform 0.6s 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--01.is-sp-visible .feature-point__middle {
    transform: translateX(0);
    opacity: 1;
  }
  .feature-point--01.is-sp-visible .feature-point__text {
    opacity: 1;
    transform: translateY(0);
  }
  .feature-point--01.is-sp-visible .feature-point__image {
    opacity: 1;
  }
  .feature-point--01.is-sp-visible .feature-point__image-dot {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s 1.5s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--02 {
    padding: 0;
    position: relative;
    height: auto;
    opacity: 1;
  }
  .feature-point--02 .feature-point02__container {
    height: auto;
  }
  .feature-point--02 .feature-point__inner {
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 500px;
    padding: 0 5.3333333333vw 10.6666666667vw 8vw;
  }
  .feature-point--02 .feature-point__text {
    width: 100%;
    order: 1;
  }
  .feature-point--02 .feature-point__image {
    order: 2;
    padding: 0 20px;
  }
  .feature-point--02 .feature-point__image .feature-point__image-wide {
    top: -7%;
    left: -8%;
    width: 116%;
  }
  .feature-point--02 .feature-point__image .feature-point__image-height {
    bottom: 8%;
    left: 0%;
    clip-path: inset(50% 0 50% 0);
    transition: clip-path 0.3s cubic-bezier(0, 0, 0.2, 1) 0.6s;
    width: 6.8%;
  }
  .feature-point--02 .feature-point__image .feature-point__image-picture {
    justify-content: flex-start;
  }
  .feature-point--03 {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding: var(--safe-top, 0px) 0 calc(44px + var(--safe-bottom, 0px));
    position: relative;
    height: auto;
    align-items: flex-start;
  }
  .feature-point--03 .feature-point__outer {
    height: auto;
    transform: translateX(0);
    justify-content: flex-start;
  }
  .feature-point--03 .feature-point__middle {
    margin-left: 0;
    max-width: 500px;
    transform: translateX(100%);
    opacity: 0;
    padding-right: 20px;
    padding-left: 25px;
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--03 .feature-point__inner {
    padding: 0;
  }
  .feature-point--03 .feature-point__title {
    margin-left: 5px;
  }
  .feature-point--03 .feature-point__text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.3s cubic-bezier(0, 0, 0.2, 1), transform 0.6s 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--03 .feature-point__image {
    opacity: 0;
    transition: opacity 0.6s 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  .feature-point--03 .feature-point__image img {
    width: 94%;
  }
  .feature-point--03.is-sp-visible .feature-point__middle {
    transform: translateX(0);
    opacity: 1;
  }
  .feature-point--03.is-sp-visible .feature-point__text {
    opacity: 1;
    transform: translateY(0);
  }
  .feature-point--03.is-sp-visible .feature-point__image {
    opacity: 1;
  }
  .feature03-steps-scroll {
    position: absolute;
    left: 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    padding: 0;
    align-items: flex-start;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    scroll-behavior: smooth;
    border-radius: 64px 0 0 64px;
  }
  .feature03-steps-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .feature03-steps-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .feature03-steps-scroll::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 2px;
  }
  .feature03-steps-scroll__track {
    padding: 120px 5.3333333333vw 50px;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    align-items: center;
    box-sizing: border-box;
  }
  .feature03-steps-scroll__track::before, .feature03-steps-scroll__track::after {
    display: none;
  }
  .feature03-steps-scroll__item:not(:last-child) .feature03-steps-scroll__inner::after {
    padding: 0;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: radial-gradient(circle, var(--yellow) 2px, transparent 2px);
    background-size: 10px 4px;
    background-repeat: repeat-x;
  }
  .feature03-steps-scroll__item {
    padding: 15px 0 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .feature03-steps-scroll__inner {
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 10px 0 40px;
    max-height: none;
    box-sizing: border-box;
    text-align: center;
  }
  .feature03-steps-scroll__text {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 50%;
    max-width: 400px;
    align-items: flex-start;
    text-align: left;
  }
  .feature03-steps-scroll__badge {
    font-size: clamp(22px, 1.6105417277vw, 24px);
  }
  :not(:lang(ja)) .feature03-steps-scroll__badge {
    font-size: clamp(20px, 1.4641288433vw, 22px);
  }
  .feature03-steps-scroll__heading {
    font-size: clamp(16px, 1.1713030747vw, 18px);
  }
  .feature03-steps-scroll__photos {
    width: 100%;
  }
  .feature03-steps-scroll__visual {
    flex: 1 1 0;
    max-width: 50%;
  }
  .feature03-steps-scroll__visual picture {
    width: 100%;
    max-height: none;
  }
  .feature03-steps-scroll__visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
  .feature03-steps-scroll__item--step03 .feature03-steps-scroll__text {
    align-items: flex-start;
    text-align: left;
  }
  .feature03-steps-scroll__item .feature03-steps-scroll__visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
  .feature03-scroll {
    height: auto;
    overflow: visible;
    margin-top: 0;
  }
  .feature03-scroll__container {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .feature03-scroll__left {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .feature03-scroll__number img {
    width: 21.3333333333vw;
  }
  .feature03-scroll__title {
    font-size: clamp(24px, 7.4666666667vw, 34px);
  }
  .feature03-scroll__desc {
    font-size: clamp(14px, 3.7333333333vw, 18px);
  }
  .feature03-scroll__right {
    width: 100%;
    height: auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    scroll-behavior: smooth;
  }
  .feature03-scroll__right::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .feature03-scroll__right::-webkit-scrollbar-track {
    background: transparent;
  }
  .feature03-scroll__right::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 2px;
  }
  .feature03-scroll__track {
    gap: 30px;
    padding: 0;
  }
  .feature03-scroll__item {
    width: 150px;
  }
  .feature03-scroll__item--last {
    width: 240px;
  }
  .sticky-overlap-stack {
    margin-top: 0;
  }
  .other-features {
    padding: 0 0 145px;
    border-radius: 27px 27px 0 0;
  }
  .other-features__header {
    aspect-ratio: 375/175;
  }
  .other-features__header-image {
    min-height: 55lvh;
  }
  .other-features__badge {
    width: 100%;
    bottom: -0.75em;
    left: 0;
    font-size: clamp(40px, 10.6666666667vw, 60px);
  }
  .other-features__body {
    padding: 40px 20px;
  }
  .other-features__grid {
    margin: 40px auto 24px;
    gap: 23px;
    grid-template-columns: 1fr;
  }
  .other-features__card {
    margin: 0 auto;
    max-width: 450px;
    padding: 31px 30px 21px;
  }
  .other-features__card:nth-child(2) {
    padding: 50px 30px 21px;
  }
  .other-features__card:nth-child(3) {
    padding: 50px 30px 5px;
  }
  .other-features__card:nth-child(4) {
    padding: 40px 30px 21px;
  }
  .other-features__card-images {
    min-height: auto;
    padding: 0 12px;
  }
  .other-features__card-images--2col {
    align-items: start;
  }
  .other-features__card-images--1col .other-features__card-image-col {
    width: 78%;
  }
  .other-features__card-title {
    margin-bottom: 7px;
    font-size: clamp(20px, 5.3333333333vw, 26px);
  }
  .other-features__card-desc {
    line-height: 1.8;
    font-size: clamp(14px, 3.7333333333vw, 2px);
  }
  .other-features__compat {
    margin-top: 0px;
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .other-features__compat-badge {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .concept {
    border-radius: 34px;
    padding: 20px 0 20px;
  }
  .concept__collage {
    min-height: auto;
    height: 90lvh;
    aspect-ratio: auto;
  }
  .concept__photo--01 {
    top: 7%;
    left: -7%;
    width: 37%;
  }
  .concept__photo--02 {
    top: 1%;
    left: -3%;
    width: 37%;
  }
  .concept__photo--03 {
    top: 0%;
    left: 58%;
    width: 40%;
  }
  .concept__photo--04 {
    bottom: 2%;
    left: -5%;
    width: 37%;
  }
  .concept__photo--05 {
    top: 38%;
    left: -5%;
    width: 37%;
  }
  .concept__photo--06 {
    top: 24%;
    left: -19%;
    width: 37%;
  }
  .concept__photo--07 {
    top: 44%;
    left: -15%;
    width: 39%;
  }
  .concept__photo--08 {
    bottom: 28%;
    left: -5%;
    width: 37%;
  }
  .concept__photo--09 {
    bottom: 14%;
    left: -10%;
    width: 37%;
  }
  .concept__photo--10 {
    top: 20%;
    left: 25%;
    width: 37%;
  }
  .concept__photo--11 {
    bottom: 24%;
    left: 25%;
    width: 38%;
  }
  .concept__photo--12 {
    top: 16%;
    right: 13%;
    width: 37%;
  }
  .concept__photo--13 {
    top: 12%;
    right: 40%;
    width: 37%;
  }
  .concept__photo--14 {
    top: 44%;
    right: -19%;
    width: 37%;
  }
  .concept__photo--15 {
    top: 58%;
    right: -18%;
    width: 37%;
  }
  .concept__photo--16 {
    bottom: 22%;
    right: 14%;
    width: 37%;
  }
  .concept__photo--17 {
    bottom: 44%;
    right: -7%;
    width: 37%;
  }
  .concept__photo--18 {
    top: 26%;
    right: -23%;
    width: 37%;
  }
  .concept__photo--19 {
    bottom: 14%;
    right: 1%;
    width: 37%;
  }
  .concept__photo--20 {
    top: 19%;
    right: -5%;
    width: 37%;
  }
  .concept__photo--21 {
    top: auto;
    bottom: 0%;
    right: 11%;
    width: 37%;
  }
  .concept__photo--22 {
    bottom: 4%;
    right: -14%;
    width: 37%;
  }
  .concept__photo--23 {
    bottom: 10%;
    right: 38%;
    width: 37%;
  }
  .concept__badge {
    top: 0;
    right: 0;
    bottom: 10%;
    left: 0;
    margin: auto;
    height: fit-content;
    font-size: 7.2vw;
  }
  .concept__sticker--icecream {
    top: 3%;
    right: 22%;
    width: 12%;
  }
  .concept__sticker--character {
    top: 32%;
    left: 0%;
    width: 16%;
  }
  .concept__film {
    padding: 87px 20px 20px;
    max-width: 550px;
  }
  .concept__film-tag {
    padding: 3px 20px;
    font-size: clamp(16px, 4.2666666667vw, 20px);
  }
  .concept__film-subtitle {
    font-size: clamp(16px, 4.2666666667vw, 20px);
  }
  .concept__film-title {
    margin-bottom: 40px;
  }
  .concept__film-card {
    padding: 60px 30px;
  }
  .concept__film-grid {
    gap: 51px;
    grid-template-columns: repeat(1, 1fr);
  }
  .concept__film-item {
    gap: 0;
  }
  .concept__film-item-images {
    margin-bottom: 24px;
  }
  .concept__film-item-name {
    margin-bottom: 8px;
    font-size: clamp(24px, 6.4vw, 30px);
  }
  .concept__film-item-desc {
    font-size: clamp(14px, 3.7333333333vw, 19px);
  }
  .product-info {
    padding: 50px 20px 20px;
  }
  .product-info__cards {
    max-width: 500px;
    padding: 75px 0 33px;
  }
  .product-info__card-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .product-info__card {
    border-radius: 24px;
  }
  .product-info__card-link {
    gap: 0;
    padding: 35px 35px 20px;
  }
  .product-info__card-icon {
    margin-bottom: 20px;
    width: 26.6666666667vw;
    height: auto;
    max-width: 120px;
  }
  .product-info__card-title {
    font-size: clamp(20px, 5.3333333333vw, 28px);
  }
  .product-info__card-more {
    font-weight: 500;
    font-size: clamp(9px, 2.4vw, 12px);
  }
  .product-info__app {
    margin: 0 auto;
    padding: 40px 0 10px;
  }
  .product-info__app-badge {
    margin-bottom: 20px;
  }
  .product-info__app-title {
    margin-bottom: 27px;
    width: 100%;
    font-size: clamp(28px, 7.4666666667vw, 32px);
  }
  .product-info__app-buttons {
    grid-template-columns: minmax(0, 246fr) minmax(0, 275fr);
    margin-bottom: 12px;
    gap: 6%;
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
  }
  .product-info__app-btn {
    width: 100%;
    min-width: 0;
  }
  .product-info__app-btn a {
    width: 100%;
  }
  .product-info__app-btn picture {
    max-width: 100%;
  }
  .product-info__app-btn img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .product-info__app-note {
    font-size: clamp(10px, 2.6666666667vw, 12px);
  }
  .product-info__shopping-inner {
    padding: 0 20px 5px;
  }
  .product-info__shopping-btn {
    font-size: calc(1 * 1rem);
    padding: 16px 24px;
  }
  .product-info__shopping-arrow {
    right: 24px;
  }
  .product-info__gallery {
    padding: 50px 0;
  }
  .product-info__gallery-slide {
    width: 280px;
    border-radius: 12px;
  }
  .product-info__notes {
    max-width: 500px;
  }
  .product-info__notes li {
    font-size: clamp(10px, 2.6666666667vw, 12px);
  }
  .product-info__banner {
    margin: 30px auto 30px;
    padding: 0 20px;
    max-width: 500px;
  }
  .modal__overlay {
    padding-left: 0;
  }
  .modal__container {
    width: 100%;
    padding: 80px 20px;
    border-radius: 0;
  }
  [aria-hidden=true] .modal__bg {
    animation: mmbgOutSP var(--duration) ease-in forwards;
  }
  [aria-hidden=false] .modal__bg {
    animation: mmbgInSP var(--duration) ease-in-out forwards;
  }
  .modal__bg {
    border-radius: 0;
    transform-origin: center bottom;
    border-radius: 100vmax 100vmax 0 0;
  }
  .modal__close {
    top: calc(20px + var(--safe-top, 0px));
    right: 20px;
  }
  .modal__contents {
    padding: 24px;
  }
  .modal__grid {
    gap: 20px;
  }
  .modal__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal__grid-title {
    font-size: calc(1 * 1rem);
  }
  .modal-video__overlay {
    padding: 0 20px;
  }
  .modal-video__container iframe,
  .modal-video__container video {
    border-radius: 30px;
  }
  .modal-language__overlay {
    bottom: auto;
    top: 0;
    transform: translateY(-100%);
  }
  .modal--qr .modal__container {
    width: 100%;
    border-radius: 0;
  }
  .modal--qr .modal__close-button {
    width: 55px;
  }
  .modal--qr .modal__close {
    padding-right: 62px;
    top: 50px;
    right: 16px;
  }
  .modal--qr .modal__close-text {
    font-size: 130%;
  }
  .qr-print__header {
    grid-template-areas: "kv" "intro";
    grid-template-columns: 1fr;
  }
  .qr-print__kv img {
    min-height: 200px;
    aspect-ratio: 375/205;
  }
  .qr-print__intro {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px 8px;
  }
  .qr-print__icon {
    margin-bottom: 0px;
    width: 22.4657534247vw;
  }
  .qr-print__title {
    margin: 0 0 8px;
    line-height: 1.5;
    font-size: clamp(32px, 9.8630136986vw, 38px);
  }
  .qr-print__lead {
    font-size: calc(0.9375 * 1rem);
  }
  .qr-print__body {
    padding: 30px 20px 64px;
  }
  .qr-print__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 50px;
  }
  .qr-print__nav-item {
    border-radius: 25px;
    padding: 16px 24px 50px;
  }
  .qr-print__nav-title {
    margin-bottom: 2px;
    font-size: 4.1095890411vw;
  }
  .qr-print__nav-desc {
    font-size: 2.7397260274vw;
  }
  .qr-print__nav-arrow {
    width: 24px;
    height: 24px;
    bottom: 9%;
  }
  .qr-print__details {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qr-print__detail-badge {
    margin: 0 0 30px;
    padding: 9px 16px;
    min-height: 42px;
    font-size: 5.4794520548vw;
  }
  .qr-print__detail-heading {
    padding-bottom: 15px;
    font-size: calc(1.125 * 1rem);
  }
  .qr-print__detail-text {
    font-size: calc(0.75 * 1rem);
  }
  .qr-print__detail-visual picture,
  .qr-print__detail-visual img {
    width: 100%;
  }
  .concept-full {
    position: relative;
  }
  .concept-full .screen-transition {
    display: none;
  }
  .concept-full__container {
    padding-top: 25lvh;
    height: unset;
    min-height: 100lvh;
    position: relative;
  }
  .concept-full__screen {
    width: 100% !important;
    position: static;
    transform: none !important;
    padding-bottom: 0;
  }
  .concept-full__screen-inner {
    position: sticky;
    top: 25lvh;
    margin-inline: auto;
    width: 46.1333333333%;
    transition: top 1s ease-in-out, width 1s ease-in-out, transform 1s ease-in-out;
    z-index: 1;
  }
  .concept-full__screen-inner::before {
    content: "";
    display: block;
    position: absolute;
    left: -50vw;
    right: -50vw;
    background: linear-gradient(180deg, rgb(108, 29, 69) 0%, rgb(108, 29, 69) 80%, rgba(108, 29, 69, 0) 100%);
    top: -25lvh;
    bottom: 0;
    z-index: -10;
    opacity: 0;
  }
  .concept-feature--anime01 .concept-full__screen-inner {
    width: min(210px, 56vw);
    top: 90px;
    aspect-ratio: 77/114;
  }
  .concept-feature--anime02 .concept-full__screen-inner::before {
    opacity: 1;
    transition: opacity 1s;
  }
  .concept-full__text {
    position: relative !important;
    left: auto !important;
    right: auto !important;
  }
  .concept-full__text.concept-full__text--sound {
    min-height: 90lvh;
    justify-content: flex-start;
  }
  .concept-full__desc,
  .concept-full__heading {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .concept-feature__01,
  .concept-feature__02,
  .concept-feature__03,
  .concept-feature__04,
  .concept-feature__05,
  .concept-feature__06,
  .concept-feature__07 {
    display: none;
  }
  .promotion-wrapper {
    top: unset;
    opacity: 1 !important;
    transform: none !important;
  }
  .product__item--detail {
    position: relative;
    height: auto;
    pointer-events: unset;
  }
  .product__grid {
    grid-template-columns: 1fr;
  }
  .product__grid::before {
    display: none;
  }
  .product__grid::after {
    display: none;
  }
  .product__grid-col {
    min-height: 100lvh;
    transform: none !important;
    opacity: unset !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .product__grid-col:nth-child(1) {
    background: #bdb6b3;
  }
  .product__grid-col:nth-child(2) {
    background: #2b3447;
  }
  .product__scroller {
    max-height: unset;
    padding-bottom: 0;
    padding-top: 0;
  }
  .product__grid-buttons {
    position: static;
    order: 0;
  }
  .product__grid-item {
    order: 1;
  }
  .product__grid-caption {
    order: 2;
  }
  .product__item--blank {
    display: none;
  }
  .product:has(.product__grid-col:nth-child(1).is-visible) .product__heading span {
    color: #9b8c83;
  }
  .product:has(.product__grid-col:nth-child(2).is-visible) .product__heading span {
    color: #4d5c7e !important;
  }
  .product__heading {
    font-size: min(3.75 * 1rem, 16vw);
  }
  [lang=it-IT] .product__heading {
    font-size: min(3.5 * 1rem, 14.9333333333vw);
  }
  .tutorial-wrapper {
    min-height: unset;
    position: relative;
  }
  .features-heading__image {
    background: var(--wine-red-dark);
  }
  .features-point__screen-fixed {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .features-point__screen-fixed .features-selfie__image {
    position: absolute;
    transform: translate(0, -100%) scale(0.962);
    top: -56px;
    left: auto;
    right: 0;
  }
  .features-point__screen-fixed .features-selfie__image {
    position: absolute;
    transform: translate(0, -100%) scale(0.962);
    top: -56px;
    left: auto;
    right: 0;
  }
  .features-point__screen-fixed .features-layered__image {
    position: relative;
    transform: none !important;
    top: unset;
    left: unset;
    right: unset;
    margin-inline: auto;
    margin-bottom: 48px;
  }
  .features-point__screen-fixed .features-point__screen-inner {
    display: flex;
    flex-direction: column;
  }
  .features-point__screen-fixed .button-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid;
    position: relative !important;
    grid-template-columns: 1fr;
    width: fit-content !important;
    margin-inline: auto !important;
    transform: none;
    order: 99;
    margin-bottom: 0 !important;
  }
  .features-point__screen-fixed .button-wrapper .button-yellow {
    width: 100%;
  }
  .features-point--layered .inner-grid {
    padding-top: 178px;
  }
  .container:has(.features-point__screen-fixed) {
    padding-left: 0;
    padding-right: 0;
  }
  .features-point__heading {
    position: relative;
    top: unset !important;
    margin-bottom: -158px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .features-point--hybrid,
  .features-point--selfie,
  .features-point--layered {
    padding-top: 36px;
    background: var(--wine-red-dark);
  }
  .features-point-full {
    background: var(--wine-red-dark);
    opacity: 1 !important;
  }
  .features-point-full::before {
    display: none;
  }
  .features-point-full--hybrid {
    background: none;
  }
  .features-point-full--selfie, .features-point-full--layered {
    height: 1px !important;
  }
  .features-point-full--sound {
    height: 100px !important;
  }
  .features-selfie-bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100lvh;
    background: var(--wine-red-dark);
    z-index: -1;
    pointer-events: none;
  }
  .features-point--selfie,
  .features-point--layered {
    padding-bottom: 0;
  }
  .features-selfie-scroller,
  .features-layered-scroller {
    min-height: 200px;
  }
  .features-selfie .features-point__heading {
    gap: 4px;
    position: absolute;
    top: min(580px, 71.0784313725svh) !important;
  }
  .features-selfie .features-point__heading .point {
    position: static;
    transform: none !important;
  }
  .features-selfie .features-point__heading .heading {
    position: static;
    transform: none !important;
  }
  .features-selfie .features-selfie__image {
    transition: transform 0.5s ease-in-out, top 0.5s ease-in-out, right 0.5s ease-in-out, opacity 0.5s;
  }
  .features-selfie .features-selfie__image .is-base {
    opacity: 1 !important;
  }
  .features-selfie .features-selfie__image .is-front {
    opacity: 0 !important;
  }
  .features-selfie .is-effect {
    display: none;
  }
  .is-center .features-selfie__image {
    transform: translate(50%, 0px) scale(1) !important;
    top: min(275px, 33.7009803922svh) !important;
    transition: opacity 0.3s linear 0.3s;
    position: fixed;
  }
  .features-layered .features-layered__image {
    transition: transform 0.5s ease-in-out, top 0.5s ease-in-out, right 0.5s ease-in-out, opacity 0.5s;
  }
  .is-center .features-layered__image {
    transform: translate(50%, 0px) scale(1) !important;
    top: min(275px, 33.7009803922svh) !important;
    opacity: 0 !important;
    transition: opacity 0.3s linear 0.3s;
  }
  .features-point--sound .inner-grid {
    padding-bottom: 20px !important;
  }
  .features-point--sound {
    background: var(--wine-red-dark);
  }
  .features-point--sound .features-point__screen:last-child .inner-grid {
    padding-bottom: 60px !important;
  }
  .features-point__heading--unique .bg,
  .features-point__heading--unique .point,
  .features-point__heading--unique .heading {
    transition: none !important;
  }
  .features-heading__image picture,
  .other-heading__image picture {
    position: sticky;
    display: block;
    width: 100vw;
    height: 100lvh;
  }
  .features-heading__image img,
  .other-heading__image img {
    transform: none !important;
  }
  .features-layered-action--01 {
    height: 400px;
  }
  .features-layered-action--02 {
    height: 532px;
  }
  .features-layered-action--04 {
    height: 668px;
  }
  .features-point--sound .button-wrapper--mobile {
    display: none !important;
  }
  .features-point .inner-grid {
    width: 100%;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(1) .inner-grid {
    padding-bottom: 20px;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(1) .inner-grid::before {
    border-radius: 30px 30px 0 0;
    border-bottom: none;
    bottom: 0;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid {
    padding-top: 70px;
  }
  .features-point--selfie.features-point .features-point__screen:nth-child(2) .inner-grid::before {
    top: 0;
    border-radius: 0 0 30px 30px;
    border-top: none;
  }
  .features-point__screen {
    min-height: inherit;
  }
  .intro {
    height: 100dvh;
    --intro-devices-bottom: 21dvh;
    --intro-devices-w: 80%;
    --intro-gap: 10px;
    --intro-tile: min(
      calc((100dvh - var(--intro-gap) * 2) / 3),
      calc((100dvw - var(--intro-gap) * 2) / 2)
    );
    --intro-tile-outer: var(--intro-tile);
    --intro-phase3-h: min(
      calc((100dvh - var(--intro-gap) * 4 - 6em) / 4),
      calc((100dvw - var(--intro-gap)) / 2 * 520 / 650)
    );
  }
  .intro-scroll {
    height: 400lvh;
  }
  .intro__row--top .intro__row-track {
    transform: translateX(var(--intro-top-offset, 0px));
  }
  .intro__row--middle .intro__row-track {
    transform: translateX(0);
  }
  .intro__row--bottom .intro__row-track {
    transform: translateX(var(--intro-bottom-offset, 0px));
  }
  .intro__photo-mixer-title {
    font-size: clamp(3rem, 8vw, 7rem);
  }
  [lang=fr] .intro__photo-mixer-title, [lang=es] .intro__photo-mixer-title {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
  }
  [lang=pt] .intro__photo-mixer-title {
    font-size: clamp(2rem, 6vw, 5.2rem);
  }
  [lang=de] .intro__photo-mixer-title {
    font-size: clamp(1.6rem, 6vw, 5.2rem);
  }
  .intro__smartphone {
    width: 50%;
    bottom: -80dvh;
  }
  .intro__bluetooth {
    left: 26%;
    width: 20%;
  }
  .intro__instax-wrap {
    left: 66%;
    width: 66%;
  }
  .intro__phase3 {
    width: 100dvw;
  }
  .intro__phase3-row {
    gap: var(--intro-gap);
  }
  [lang=fr] .intro__phase3-text, [lang=es] .intro__phase3-text {
    font-size: clamp(2.2rem, 6vw, 5rem);
  }
  [lang=pt] .intro__phase3-text {
    font-size: clamp(2rem, 6vw, 5.2rem);
  }
  [lang=de] .intro__phase3-text {
    font-size: clamp(1.6rem, 6vw, 5.2rem);
  }
  .container:has(.page-main-title) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .page-main-title {
    font-size: calc(2 * 1rem);
    margin-bottom: 25px;
  }
  .page-section-title {
    font-size: calc(1.25 * 1rem);
    margin-top: 60px;
  }
  .support-grid {
    padding: 40px;
  }
  .support-grid__inner {
    width: fit-content;
    flex-direction: column;
  }
  .support-grid__title {
    font-size: calc(1.25 * 1rem);
    margin-bottom: 20px;
  }
  .support-sub-grid {
    grid-template-columns: 1fr;
    width: 80%;
    margin-top: 60px;
  }
  .support-sub-grid__title {
    font-size: calc(1.5 * 1rem);
  }
  .spec-list__desc {
    margin-bottom: 12px;
  }
  .spec-list__desc:last-child {
    margin-bottom: 0;
  }
  .faq-list__contents-inner {
    padding: 8px 20px 16px 20px;
  }
  .faq-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-text-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .common-table--head-fit thead th {
    overflow-wrap: anywhere;
  }
  .common-table--head-fit tbody th {
    padding-inline: 5px;
    min-width: calc(5em + 12px);
  }
  .manuals-list {
    gap: 40px 30px;
  }
  .firmware-update {
    gap: 0 20px;
  }
  .firmware-update__heading {
    font-size: calc(1.125 * 1rem);
  }
  .firmware-update__contents {
    display: contents;
  }
  .firmware-update__contents .version {
    font-size: calc(1.125 * 1rem);
    text-align: right;
  }
  .firmware-update__contents .version + * {
    grid-column: span 2;
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .step-grid__heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .spec .spec-contents {
    padding: 20px 12px;
    border-radius: 16px;
  }
  .fz-sm {
    font-size: calc(0.875 * 1rem) !important;
  }
}

@media (any-hover: hover){
  .button-normal:hover::after {
    transform: translateX(6px);
  }
  .button-yellow:hover::before {
    transform: translate(-50%, -50%);
  }
  .button-yellow:hover::after {
    transform: translate(50%, -50%);
  }
  .button-yellow:hover .button-yellow__corner::before {
    transform: translate(-50%, 50%);
  }
  .button-yellow:hover .button-yellow__corner::after {
    transform: translate(50%, 50%);
  }
  .button-yellow:hover .button-yellow__text::after {
    transform: translateX(6px);
  }
  .button-yellow--modal:hover .button-yellow__text::after {
    transform: translateX(0) rotate(90deg);
  }
  .button-yellow--modal:hover .button-yellow__text::before {
    transform: rotate(90deg);
  }
  .button-yellow--dl:hover .button-yellow__text::after {
    transform: translateX(0) translateY(6px);
  }
  .button-yellow--window:hover .button-yellow__text::after {
    transform: translateX(6px) translateY(0);
  }
  .button-tab:hover {
    color: var(--link-hover);
  }
  .local-navi__item:has(.local-navi__sublist):hover .local-navi__link::after, .local-navi__item:has(.local-navi__sublist):focus-within .local-navi__link::after {
    margin-top: 1px;
    transform: rotate(180deg);
  }
  .local-navi__link:hover {
    background-color: var(--link-hover);
  }
  .local-navi__sublink:hover {
    background: var(--link-hover);
  }
  .local-navi__button:hover {
    color: var(--pink);
    background: var(--dark-green);
  }
  .information__button:not([aria-expanded=true]):hover::before, .information__button:not([aria-expanded=true]):hover::after {
    transform: rotate(90deg);
  }
  .promo-video__button:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
  }
  .promo-video__clip:hover {
    filter: brightness(0.97);
  }
  .tutorial-video__button:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
  }
  .modal__close:hover .modal__close-button {
    width: 50px;
    right: -5px;
  }
  .modal__close:hover .modal__close-button::before, .modal__close:hover .modal__close-button::after {
    transform: rotate(90deg);
  }
  .modal-video__close:hover .modal-video__close-button {
    width: 50px;
    right: -5px;
  }
  .modal-video__close:hover .modal-video__close-button::before, .modal-video__close:hover .modal-video__close-button::after {
    transform: rotate(90deg);
  }
  .qr-print__nav-item:hover {
    transform: translateY(-2px);
  }
  .faq-list__heading:not([aria-expanded=true]):hover {
    background: var(--link-hover);
  }
  .faq-list__heading:not([aria-expanded=true]):hover .faq-list__heading-icon {
    transform: translateY(-4px) rotate(90deg);
  }
}

@media screen and (min-width: 768.02px), print{
  .Width {
    width: calc(100% - 60px);
    max-width: 1160px;
    max-width: clamp(1160px, 80.5555555556vw, 1392px);
  }
  .Width.Width--narrow {
    max-width: 962px;
    max-width: clamp(962px, 66.8055555556vw, 1154.4px);
  }
  .InstaxApp__Inner {
    padding-top: 80px;
  }
  .InstaxApp__Main {
    row-gap: 28px;
  }
  .InstaxApp__Image {
    width: 170px;
  }
  .InstaxApp__Title {
    font-size: 24px;
  }
  .InstaxApp__Annotations {
    margin-top: 58px;
  }
  .InstaxApp__Product {
    margin-top: 78px;
  }
}
