@charset "UTF-8";
/*color*/
/*add color*/
/*font-family*/
/*add font-family*/
/*text-shadow*/
/*media query break point*/
/*grid settings*/
/* media query */
.dev-panel {
  display: none;
}

/* =========================================================
   STAGE — full-viewport sky background
   ========================================================= */
.stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stage__bg {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
}
.stage__bg img, .stage__bg picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* =========================================================
   HEADER (placeholder for include)
   ========================================================= */
/* .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 96px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
  pointer-events: none; /* children re-enable */
/* .site-header > * { pointer-events: auto; } */
/* .brand {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px;
}
.brand-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #2b6fb3, #1a5fa8 60%, #103e72);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 16px rgba(26,95,168,0.20);
}
.brand-mark::before {
  content: ""; position: absolute; inset: 8px;
  background:
    linear-gradient(150deg, transparent 38%, #fff 38% 46%, transparent 46%),
    linear-gradient(30deg, transparent 38%, #fff 38% 46%, transparent 46%);
}
.brand-word {
  font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 36px;
  letter-spacing: -0.01em; color: #0f2540;
} */
/* .header-actions {
  display: flex; align-items: center; gap: 10px;
}
.h-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 56px; padding: 0 22px;
  border-radius: 100px;
  background: #fff;
  color: $color_dblu;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(20,60,120,0.10);
  border: 1px solid rgba(255,255,255,0.7);
}
.h-btn.primary { background: $color_accpink; color: #fff; box-shadow: 0 6px 16px rgba(231,78,122,0.30); }
.h-btn.navy    { background: $color_mblu; color: #fff; box-shadow: 0 6px 16px rgba(26,95,168,0.30); }
.h-btn .ico { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }
.h-btn .badge {
  width: 38px; height: 38px; border-radius: 50%;
  background: #2D8BD6;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-left: -10px;
}
.menu-btn {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: $color_mblu;
  color: #fff;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 18px rgba(26,95,168,0.30);
}
.menu-btn .bars { display: flex; flex-direction: column; gap: 4px; }
.menu-btn .bars span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; }
.menu-btn small { font-family: "Inter", sans-serif; font-size: 9px; letter-spacing: 0.18em; opacity: 0.95; margin-top: 2px; } */
/* =========================================================
   ISLANDS
   ========================================================= */
.islands {
  position: absolute;
  pointer-events: none;
  transform-origin: center center;
}

.islands > * {
  pointer-events: auto;
}

.island-wrap {
  position: absolute;
  transform-origin: center center;
  will-change: transform, opacity, left, top, bottom, right, width;
  /* スタート→最終位置の補間 (1.6s) */
  pointer-events: all;
  transition: left 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), right 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), top 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), bottom 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), width 1.6s cubic-bezier(0.22, 0.61, 0.36, 1), height 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.island-wrap.no-pointer {
  pointer-events: none;
}

/* layer A: opacity (fade in/out for whole island) */
.island-fade {
  opacity: 1;
  transition: opacity 1.2s ease;
}

.island-wrap.hidden .island-fade {
  opacity: 0;
  pointer-events: none;
}

/* layer B: enter offset (initial→final translate) */
/* layer C: continuous float */
.island-float {
  animation: none;
}

@keyframes float-a {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.4deg);
  }
}
@keyframes float-b {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.5deg);
  }
}
.island-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(20, 40, 70, 0.18));
  transition: filter 0.35s ease;
}

.island-wrap:hover .island-img {
  filter: drop-shadow(0 28px 36px rgba(20, 40, 70, 0.28)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.4));
}

/* =========================================================
   GLASS PILL BUTTONS on islands
   ========================================================= */
.pill {
  position: absolute;
  transform: translate(0);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.island-wrap.pill-shown .pill {
  opacity: 1;
  pointer-events: auto;
}

.pill-body {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  color: #0d2a4a;
  font-size: clamp(16px, 1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(20, 40, 70, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 768px) {
  .pill-body {
    font-size: 14px;
  }
}

/* pill tail (pointing toward island) */
.pill-tail {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1.5px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.85);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .pill-tail {
    width: 8px;
    height: 8px;
    display: none;
  }
}

/* hover glow: stronger when hovering the island as a whole */
.btn {
  position: relative;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 8px 15px rgba(37, 38, 68, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: unset;
  max-width: 16rem;
  max-height: 5rem;
  width: 13vw;
  height: 4vw;
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 11rem;
    height: 3rem;
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .is-buy .btn {
    font-size: 14px;
    width: 11rem;
    height: 4rem;
  }
}
.is-build .btn {
  max-width: 28rem;
  min-width: 23rem;
  width: 16vw;
}
@media only screen and (max-width: 768px) {
  .is-build .btn {
    width: 19rem;
    height: 3rem;
    min-width: unset;
    font-size: 12px;
  }
}
.btn__title {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.btn__bg {
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 105%;
  border-radius: 100px;
  background-color: white;
  box-shadow: 0 0 5px white, 0 0 30px white, 0 0 60px white;
  transition: width 0.3s;
}
@media only screen and (max-width: 768px) {
  .btn__bg {
    width: 100%;
  }
}

.tail-area {
  position: absolute;
  top: 80%;
  width: 10px;
  height: 24px;
  display: flex;
  justify-content: center;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .tail-area {
    top: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .is-buy .tail-area {
    transform: rotate(90deg);
    top: 80%;
    top: 0;
    left: 0;
  }
}

/* パーティクル */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.85);
  animation: fall var(--dur) ease-in var(--delay) infinite;
}

@keyframes fall {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dist)) scale(0.15);
  }
}
.island-wrap:hover .btn__bg {
  width: 100%;
}

/* =========================================================
   ★ ISLAND VARIANTS — 島ごとの設定はここでまとめて編集

   [スタート位置]      .is-xxx { left/top/bottom/right/width }
   [最終位置]        .is-xxx.arrived { left/top/bottom/right/width }
   [浮遊アニメ]      .is-xxx .island-float.floating { animation }
   [ピル位置]        .is-xxx .pill { top/left }

   ※ スタートと最終は同じアンカープロパティを使うこと
      (top なら top同士、bottom なら bottom同士)
   ========================================================= */
/* 1) 買いたい */
.is-buy {
  left: 2.6%;
  top: 32%;
  width: 38.5%;
}
@media only screen and (max-width: 768px) {
  .is-buy {
    top: unset;
    bottom: 1%;
    width: 94%;
    left: -8%;
  }
}

.is-buy.arrived {
  left: 1vw;
  top: 37vh;
  width: 38vw;
}
@media only screen and (max-width: 768px) {
  .is-buy.arrived {
    top: unset;
    bottom: 4vh;
    width: 90vw;
    left: -9vw;
  }
}

.is-buy .island-float.floating {
  animation: float-a 7.2s ease-in-out 0s infinite;
}

.is-buy .pill {
  bottom: 91%;
  left: 23%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .is-buy .pill {
    bottom: 28%;
    left: 81%;
    transform: translateX(0%);
  }
}

/* 2) 建てたい・リフォーム  */
.is-build {
  left: 38.8%;
  top: 43.3%;
  width: 26.3%;
}
@media only screen and (max-width: 768px) {
  .is-build {
    width: 64%;
    right: -6%;
    left: unset;
    bottom: 30%;
  }
}

.is-build.arrived {
  left: 38vw;
  top: 50vh;
  width: 25.3vw;
}
@media only screen and (max-width: 768px) {
  .is-build.arrived {
    left: unset;
    right: 0%;
    width: 50vw;
    top: unset;
    bottom: 36%;
  }
}

.is-build .island-float.floating {
  animation: float-a 7.6s ease-in-out 0.9s infinite;
}

.is-build .pill {
  bottom: 94%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .is-build .pill {
    bottom: 100%;
    left: 30%;
  }
}

/* 3) 運用したい */
.is-sell {
  left: 26.9%;
  top: 19.3%;
  width: 20%;
}
@media only screen and (max-width: 768px) {
  .is-sell {
    width: 57%;
    bottom: 44%;
    left: -7%;
    top: unset;
  }
}

.is-sell.arrived {
  left: 26.9vw;
  top: 19.3vh;
  width: 20vw;
}
@media only screen and (max-width: 768px) {
  .is-sell.arrived {
    left: -7vw;
    width: 56vw;
    top: unset;
    bottom: 42%;
  }
}

.is-sell .island-float.floating {
  animation: float-a 6.6s ease-in-out 1.2s infinite;
}

.is-sell .pill {
  bottom: 97%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .is-sell .pill {
    left: 40%;
  }
}

/* 4) 売りたい */
.is-manage {
  left: 48.5%;
  top: 4.9%;
  width: 15.3%;
}
@media only screen and (max-width: 768px) {
  .is-manage {
    left: unset;
    width: 43%;
    right: -2%;
    top: 11%;
  }
}

.is-manage.arrived {
  left: 47.8vw;
  top: 10rem;
  width: 15.3vw;
}
@media only screen and (max-width: 1260px) {
  .is-manage.arrived {
    top: 16rem;
  }
}
@media only screen and (max-width: 768px) {
  .is-manage.arrived {
    left: unset;
    right: 0;
    width: 40vw;
    top: 13%;
  }
}

.is-manage .island-float.floating {
  animation: float-b 5.8s ease-in-out 0.3s infinite;
}

.is-manage .pill {
  left: 44%;
  bottom: 97%;
  z-index: 1;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .is-manage .pill {
    left: 32%;
    bottom: 88%;
  }
}

/* 5) つながりたい */
.is-connect {
  left: 14.8%;
  top: 14.4%;
  width: 13.2%;
}
@media only screen and (max-width: 768px) {
  .is-connect {
    width: 40%;
    left: 22%;
    top: 12%;
  }
}

.is-connect.arrived {
  left: 14.8vw;
  top: 15rem;
  width: 13.2vw;
}
@media only screen and (max-width: 1260px) {
  .is-connect.arrived {
    left: 10rem;
    top: 15rem;
  }
}
@media only screen and (max-width: 768px) {
  .is-connect.arrived {
    left: 20vw;
    top: 12vh;
    width: 40vw;
  }
}

.is-connect .island-float.floating {
  animation: float-b 5.4s ease-in-out 0.6s infinite;
}

.is-connect .pill {
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================================================
   CLOUD FOREGROUND
   ========================================================= */
.cloud-fg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42.8%;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 1.2s ease;
  mix-blend-mode: screen;
}
@media only screen and (max-width: 768px) {
  .cloud-fg {
    width: 100%;
    bottom: 0;
  }
}

.cloud-fg img {
  width: 100%;
  height: auto;
  display: block;
}

.cloud-fg.hidden {
  opacity: 0;
}

/* header fade-in */
.site-header {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   DEV control panel (for demo / wiring of animation API)
   remove when wiring real load animation
   ========================================================= */
.dev-panel {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 100;
  background: rgba(13, 35, 60, 0.94);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  width: 290px;
}

.dev-panel h4 {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8ec5ff;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dev-panel .status {
  font-size: 11px;
  color: #fff;
  background: rgba(45, 139, 214, 0.18);
  border-left: 2px solid #2D8BD6;
  padding: 7px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  min-height: 28px;
  line-height: 1.4;
}

.dev-panel .row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.dev-panel .row.cols {
  flex-direction: column;
}

.dev-panel button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-family: inherit;
  transition: background 0.2s;
  text-align: left;
  flex: 1;
}

.dev-panel button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.dev-panel button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dev-panel button.primary {
  background: #2D8BD6;
  border-color: #2D8BD6;
}

.dev-panel button.primary:hover {
  background: #1a5fa8;
}

.dev-panel button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.dev-panel button .num {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #8ec5ff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  margin-right: 6px;
  font-weight: 700;
}

.dev-panel button.done .num {
  background: #2D8BD6;
  color: #fff;
}

.dev-panel .hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.dev-panel .hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin-top: 6px;
  line-height: 1.5;
}

.dev-panel.collapsed > *:not(.tag) {
  display: none;
}

.dev-panel .tag {
  cursor: pointer;
  user-select: none;
}

/* Fake mp4 backdrop — stand-in until real video is dropped in */
.videowrap {
  width: 100%;
  height: 100%;
}
.videowrap video {
  aspect-ratio: 1920/1080;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: left center;
}
@media only screen and (max-width: 768px) {
  .videowrap video {
    aspect-ratio: 9/16;
  }
}

.mock-video,
.load-video {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease;
  background: radial-gradient(60% 50% at 50% 40%, #6dbce5 0%, #2D8BD6 45%, #134a86 100%);
  overflow: hidden;
}

.mock-video.on, .load-video.on {
  opacity: 1;
}

.mock-video::after, .load-video::after {
  content: "MOCK VIDEO\a(mp4 placeholder)";
  white-space: pre;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.mock-video .pulse, .load-video .pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }
  100% {
    width: 360px;
    height: 360px;
    opacity: 0;
  }
}
/* keep islands above background but below header/nav */
.islands {
  z-index: 4;
  aspect-ratio: 1920/1080;
  flex-shrink: 0;
  transition: 0.3s;
}
@media (min-aspect-ratio: 16/9) {
  .islands {
    width: 100vw;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .islands {
    height: 100dvh;
    width: auto;
  }
}
.islands.arrived {
  aspect-ratio: unset;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .islands {
    aspect-ratio: 9/16;
  }
}
@media only screen and (max-width: 768px) and (min-aspect-ratio: 9/16) {
  .islands {
    height: auto;
    width: 100vw;
  }
}
@media only screen and (max-width: 768px) and (max-aspect-ratio: 9/16) {
  .islands {
    width: auto;
    height: 100dvh;
  }
}

.islands-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ========================================================
SKIP button — ロードアニメ中に表示されるユーザー向けスキップボタン
======================================================== */
.skip-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90; /* 動画(80)より上、devパネル(100)より下 */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  color: #2B5F8C;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 28px rgba(20, 40, 70, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease, box-shadow 0.25s ease;
}
@media only screen and (max-width: 768px) {
  .skip-btn {
    bottom: 3rem;
    right: 3rem;
    padding: 0 0.5rem 0 1rem;
    gap: 5px;
    height: 2.4rem;
  }
}

.skip-btn.visible {
  opacity: 0.6;
  transform: translateY(0);
  pointer-events: auto;
}

.skip-btn:hover {
  background: #fff;
  color: #0071B9;
  transform: translateY(-2px);
}

.skip-btn .skip-ico {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.skip-btn .skip-ico svg {
  width: 100%;
  height: 100%;
}

/* ========================================================
 INITIAL LOADER — 動画が読み込まれるまで、背景や島やUIが
 チラッと見えるのを完全に隠すためのローダー画面。
 インラインスタイルも併用して CSS ロード前から見えるようにしている。
 ======================================================== */
.initial-loader {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: radial-gradient(60% 50% at 50% 40%, #6dbce5 0%, #2D8BD6 45%, #134a86 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.initial-loader.gone {
  opacity: 0;
  pointer-events: none;
}

.initial-loader__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* small a11y helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */