@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background: url(../images/back.png);
}

h2 {
  font-size: 80px;
  font-weight: bold;
}
h2 strong {
  color: #0092e5;
}

h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}
h3 strong {
  color: #0092e5;
}

.cord {
  font-size: 14px;
  border: 1px solid #111111;
  border-radius: 5px;
  padding: 2px 10px;
  text-align: center;
}

p {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 30px;
    text-align: left;
  }
}
.btn {
  width: 100%;
  position: relative;
  cursor: pointer;
  display: block;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 5px;
  padding: 20px 40px;
  color: #ffffff;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
  text-decoration: none;
  border-radius: 5px;
  z-index: 1;
}
.btn::after {
  background: #0092e5;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: -1;
  border-radius: 5px;
}
.btn:hover {
  color: #111111;
}
.btn:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btn img {
  width: 60%;
  height: auto;
}

.btn2 {
  width: 100%;
  max-width: 140px;
  position: relative;
  cursor: pointer;
  display: block;
  color: #111111;
  border: 1px solid #222222;
  padding: 8px 10px;
  width: 100%;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 50px;
  z-index: 1;
}
.btn2 a {
  text-decoration: none;
}
.btn2:hover {
  color: #ffffff;
  background-color: #111111;
}
.btn2 img {
  width: 60%;
  height: auto;
}

.btn3 {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 20px;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: opacity 0.5s, transform 0.2s;
  transition: opacity 0.5s, transform 0.2s, -webkit-transform 0.2s;
  color: #222222;
}
.btn3 span {
  font-size: 10px;
}
.btn3 a {
  text-decoration: none;
}
.btn3:hover {
  cursor: pointer;
  opacity: 0.8;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 900;
  font-style: normal;
}

.firstview {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.firstview .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  inset: 20px 20px 20px 20px;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .firstview .inner img {
    width: 100%;
    height: auto;
  }
}

.nav_btn {
  font-size: 12px;
  font-weight: bold;
  position: fixed;
  top: 40px;
  right: -30px;
  border-radius: 30px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  background-color: #ffffff;
  padding: 20px 15px;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 100;
  opacity: 0;
  /* 通常時のhover状態 */
  /* active状態 */
}
.nav_btn_inner {
  position: absolute;
  left: 12px;
  bottom: 12px;
}
.nav_btn:hover {
  background-color: #222222;
  color: #ffffff;
  cursor: pointer;
}
.nav_btn.active {
  background-color: #222222;
  color: #ffffff;
  padding: 20px 15px 80px;
}
.nav_btn.active span {
  background: #ffffff;
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 10px;
}
.nav_btn.active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav_btn.active span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .nav_btn:hover {
    background-color: #ffffff;
    color: #111111;
  }
  .nav_btn.active {
    background-color: #222222;
    color: #ffffff;
  }
}
.animation {
  position: relative;
  display: none;
  opacity: 0;
}

.logo {
  position: relative;
}

.maru,
.sankaku,
.sikaku {
  position: absolute;
}

.sankaku {
  top: 0;
  right: 0;
}

.maru {
  top: 34%;
  left: 19%;
}

.sikaku {
  bottom: 0.5%;
  right: 1.4%;
  z-index: -1;
}

.animation2 {
  position: absolute;
  top: 50%;
  height: 200px;
  width: 100%;
  z-index: -1;
}
.animation2 .maru2,
.animation2 .sankaku2,
.animation2 .sikaku2 {
  height: auto;
}
.animation2 .sankaku2 {
  width: 75px;
}
.animation2 .maru2 {
  width: 80px;
}
.animation2 .sikaku2 {
  width: 140px;
}

.relative {
  position: relative;
  margin-top: -120px;
  width: 100%;
}

.overflow {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 12rem;
  overflow: hidden;
  white-space: nowrap;
  height: 100px;
  padding-bottom: 10px;
}

.catch {
  opacity: 0;
}

.catch2 {
  font-size: 10rem;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px #111111;
  -webkit-animation: scrolltext 155s linear infinite;
          animation: scrolltext 155s linear infinite;
}
.catch2 span {
  color: #111111;
  font-weight: bold;
}

.overflow3 {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 5rem;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  margin-top: 72px;
  margin-bottom: 100px;
}

.catch3 {
  font-size: 3rem;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px #111111;
  -webkit-animation: scrolltext2 220s linear infinite;
          animation: scrolltext2 220s linear infinite;
}
.catch3 span {
  color: #111111;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .relative {
    margin-top: -120px;
    margin-bottom: 100px;
  }
  .overflow {
    min-height: 6rem;
    margin-top: 5px;
  }
  .catch2 {
    font-size: 5rem;
  }
  .overflow3 {
    margin-top: -10px;
  }
}
.slide_maru {
  width: 120px;
  height: auto;
}

.slide_sankaku {
  width: 110px;
  height: auto;
}

.slide_sikaku_wrap {
  position: relative;
}

.slide_sikaku_inner {
  position: absolute;
  top: 35px;
  left: 10px;
  z-index: -1;
}

.slide_sikaku {
  width: 190px;
}

@media screen and (max-width: 768px) {
  .slide_maru {
    width: 60px;
    height: auto;
  }
  .slide_sankaku {
    width: 55px;
    height: auto;
  }
  .slide_sikaku_inner {
    position: absolute;
    top: 17px;
    left: 5px;
    z-index: -1;
  }
  .slide_sikaku {
    width: 95px;
  }
}
@-webkit-keyframes scrolltext {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* テキストを右端の外側から開始 */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* テキストを左端の外側に出るまで移動 */
  }
}
@keyframes scrolltext {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* テキストを右端の外側から開始 */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* テキストを左端の外側に出るまで移動 */
  }
}
@-webkit-keyframes scrolltext2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrolltext2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (max-width: 920px) {
  .firstview {
    padding-bottom: 200px;
  }
  .firstview .inner img.sankaku {
    width: 27%;
    height: auto;
  }
  .firstview .inner img.maru {
    width: 27%;
    height: auto;
    top: 35%;
    left: 20.5%;
  }
  .firstview .inner img.sikaku {
    width: 48%;
    height: auto;
  }
}
.nav_wrapper {
  opacity: 1;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100vw;
  background-color: #111111;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_wrapper.active {
  opacity: 1;
  width: 100%;
  right: 0;
}
.nav_wrapper ul {
  position: relative;
  inset: 100px;
}
.nav_wrapper ul li {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}
.nav_wrapper ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}
.nav_wrapper ul li a:hover {
  opacity: 0.8;
}
.nav_wrapper ul li ul {
  inset: 0;
  margin: 18px;
}
.nav_wrapper ul li ul li {
  font-size: 18px;
}

.nav-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav_wrapper ul {
    inset: 40px;
  }
  .nav_wrapper ul li {
    font-size: 16px;
  }
}
#second-area {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
}
#second-area strong {
  font-weight: 600;
}

#products {
  min-height: 100vh;
  margin-bottom: 100px;
  padding: 100px 0;
}
#products figure {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 1px 1px 3px #d8d8d8;
          box-shadow: 1px 1px 3px #d8d8d8;
}
#products figure:hover {
  -webkit-transform: rotate(-1deg) scale(1.05);
          transform: rotate(-1deg) scale(1.05);
  -webkit-box-shadow: 5px 5px 5px #dddddd;
          box-shadow: 5px 5px 5px #dddddd;
}

.sns_x_white {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 126px;
  right: -50px;
  background-color: #fcfcfc;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.sns_x_white:hover {
  background-color: #e1e1e1;
}
.sns_x_white img {
  width: 13px;
  height: auto;
}

.totop {
  position: fixed;
  z-index: 1;
  bottom: 30px;
  right: 10px;
  width: 60px;
  text-align: center;
}
.totop:hover {
  cursor: pointer;
}
.totop_btn {
  position: relative;
  width: 45px;
  height: 45px;
}
.totop_btn img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
header.page_header {
  min-height: 200px;
  padding-top: 40px;
}
header.page_header-black {
  background-color: #111111;
}

.page {
  background-color: #fefefe;
  color: #111111;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px #cccccc;
          box-shadow: 0 0 10px #cccccc;
  padding: 60px 40px;
  width: 1140px;
  margin: 0 auto 100px;
}
.page h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}
.page h2,
.page h3,
.page h4,
.page h5 {
  font-size: 30px;
}
.page p {
  margin-bottom: 30px;
}
.page .card {
  padding: 40px 48px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.page .card_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .card_item {
  padding: 0 25px;
}
.page .card_item-1 {
  width: calc(33.33333% - 25px);
  padding: 0 25px 0 0;
}
.page .card_item-2 {
  width: calc(33.33333% + 50px);
  padding: 0 37px 0 25px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.page .card_item-3 {
  width: calc(33.33333% - 25px);
  padding: 0 0 0 25px;
  margin-left: 12px;
}
.page .card .plan {
  font-size: 22px;
  font-weight: bold;
}
.page .card .price_inner {
  margin-bottom: 44px;
}
.page .card .price {
  font-size: 60px;
  font-family: "lato", sans-serif;
  font-weight: bold;
  line-height: 1.2;
}
.page .card .price span {
  font-size: 22px;
}
.page .card .price .taxin {
  font-size: 12px;
}
.page .card .description {
  font-size: 12px;
  margin-bottom: 25px;
}
.page .card .list {
  font-size: 16px;
  height: 7rem;
}
.page .card .btn_price {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  margin-top: 0;
  border: 1px solid #cccccc;
  border-radius: 100px;
  background-color: transparent;
  color: #111111;
}
.page .card .btn_price a {
  text-decoration: none;
  color: #111111;
}
.page .card .btn_price:hover {
  background-color: #111111;
  color: #ffffff;
  cursor: pointer;
}
.page .card .btn_price:hover a {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .page {
    padding: 20px;
    width: 92%;
    margin: 30px auto;
  }
  .page h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page h2,
  .page h3,
  .page h4,
  .page h5 {
    font-size: 20px;
  }
  .page .card {
    padding: 0;
    line-height: 1.7;
    margin-bottom: 40px;
    border: none;
  }
  .page .card_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .page .card_item-1 {
    width: 100%;
    border: 1px solid #cccccc;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .page .card_item-2 {
    width: 100%;
    border: 1px solid #cccccc;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .page .card_item-3 {
    width: 100%;
    border: 1px solid #cccccc;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 10px;
    margin-left: 0;
  }
}
p.qa_q {
  display: block;
  width: 100%;
  padding: 20px 0 10px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin-bottom: 0;
}

p.qa_a {
  display: none;
  margin-bottom: 0;
}
p.qa_a.active {
  display: block;
  padding: 20px 0;
}

.page_black {
  background-color: #111111;
  color: #ffffff;
  padding-bottom: 100px;
}

.table table {
  border-radius: 10px;
  overflow: scroll;
  min-width: 500px;
  line-height: 1.7 !important;
}
.table table tr:first-child td {
  font-weight: bold;
  background-color: #eae7e3;
}
.table table tr:nth-child(2n) td {
  background-color: #f0f0f0;
}
.table table td {
  border: 1px solid #cccccc;
  vertical-align: middle;
  padding: 0.4rem;
}
.table table td:first-child {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffffff;
  border-left: none;
  border-right: none;
}
.table table td:first-child::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.table table td:nth-child(2) {
  border-left: none;
}

@media screen and (max-width: 768px) {
  .table table {
    font-size: 14px;
  }
  .table table tr td:first-child {
    width: 7rem;
  }
}
.contact_btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
.contact_btn svg {
  margin-top: -2px;
  margin-right: 10px;
}
.contact_area {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact_area.active {
  display: block;
  left: 0;
  top: 0;
  background-color: #111111;
  z-index: 100;
  background-color: #111111;
}
.contact_area_span_inner {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
}
.contact_area_span_inner span {
  background: #ffffff;
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 10px;
}
.contact_area_span_inner span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact_area_span_inner span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

form textarea {
  padding: 10px;
  width: 50%;
  min-width: 600px;
  height: 10em;
  margin-bottom: 10px;
  border: #cccccc solid 1px;
}
form input {
  padding: 10px;
  width: 50%;
  margin-bottom: 10px;
  border: #cccccc solid 1px;
}
form input[type=submit] {
  background: #111111;
  color: #ffffff;
  padding: 10px 30px;
  width: auto;
  border: none;
  border-radius: 5px;
  border: #cccccc solid 1px;
  text-align: center;
  margin-top: 10px;
}
form p {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  form textarea {
    width: 100%;
    min-width: 300px;
  }
  form input {
    width: 100%;
  }
  form input[type=submit] {
    padding: 10px 30px;
    min-width: 200px;
  }
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: -99;
  padding-bottom: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, 100%);
  outline: 8px solid #cccccc;
  outline-offset: -8px;
}

.rect2-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  z-index: -101;
  grid-template-columns: repeat(auto-fill, 20px); /* 縦方向にも複数表示 */
}

.rect {
  width: 100%;
  height: 1px;
  display: block;
  background: #cccccc;
}

.rect2 {
  width: 1px;
  height: 100vh;
  display: block;
  background: #cccccc;
  margin-bottom: 30px;
}
.rect2:nth-child(2n) {
  background: #dfdfdf;
}

.wp-block-kevinbatdorf-code-block-pro {
  margin-bottom: 30px;
}

.title {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.title * {
  font-weight: bold;
}

/* 擬似要素でマスク用のレイヤーを作成 */
.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; /* 見出しをマスクする色 */
  z-index: 1; /* 見出しの文字より前に表示 */
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 各文字を独立して制御 */
.title span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

h1.wp-block-heading {
  margin-bottom: 40px;
}

.wp-block-heading {
  margin-bottom: 40px;
}

.wp-block-kevinbatdorf-code-block-pro {
  margin-bottom: 40px;
}

.wp-block-image {
  margin-bottom: 30px;
}
.wp-block-image.size-full {
  text-align: center;
}
.wp-block-image.size-large {
  text-align: center;
}

.wp-block-list {
  line-height: 1.7;
  margin-bottom: 40px;
}

.edd-submit.button.blue {
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 20px;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: opacity 0.5s, transform 0.2s;
  transition: opacity 0.5s, transform 0.2s, -webkit-transform 0.2s;
  background-color: #111111 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 100px;
  padding: 10px 30px;
}
.edd-submit.button.blue a {
  text-decoration: none;
}
.edd-submit.button.blue:hover {
  cursor: pointer;
  opacity: 0.8;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}/*# sourceMappingURL=main.css.map */