@charset "UTF-8";
/* 背景（既存） */
body {
  margin: 0;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/media/images/top/rosebud.jpg") center / cover no-repeat;
  z-index: -2;
}
/* ロゴ文字 */
body::after {
  content: "miyagi819.com";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(7.5vw);
  z-index: -1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: clamp(14px, 2.4vw, 32px);
  letter-spacing: 0.08em;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  /* うっすら馴染ませる（任意） */
}
/* スマホは背景差し替え（既存の続き） */
@media (max-width: 768px) {
  body::before {
    background: url("/media/images/top/rosebud_sp.jpg") center / cover no-repeat;
    background-position: 70% center;
  }
  body::after {
    transform: translate(-50%, -50%) translateX(25vw);
    color: rgba(255, 255, 255, 0.3);
    font-size: clamp(21px, 3.6vw, 48px);
    letter-spacing: 0;
  }
}
/*# sourceMappingURL=./tmp.css.map */