@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
  text-decoration: none;
  border: 0;
  outline: 0;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-01);
  overflow-x: hidden;
  height: 100%;
  line-height: 1.5;
}

img {
  width: 100%;
}

ul {
  list-style-type: none;
}

ol,
menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  display: block;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* btn */
/* btn の基本スタイル */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  gap: 16px;
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0 auto;
  color: #212121;
}

/* btn--green の装飾 */
.btn--green {
  background: #5adab4;
  border-bottom: 5px solid #c7eee1;
}

.btn--green:hover {
  margin-top: 3px;
  border-bottom: 2px solid #c7eee1;
}

/* btn--l のサイズとレスポンシブ対応 */
.btn--l {
  display: flex;
  width: 300px;
  padding: 20px 24px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.redirect {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 40px;
}
.redirect .redirect__inner {
  max-width: 652px;
  margin: 0 auto;
  text-align: center;
}
.redirect img {
  max-width: 615px;
}
@media screen and (max-width: 767px) {
  .redirect img {
    max-width: 329px;
  }
}
.redirect h1 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 45px;
  white-space: nowrap;
}
.redirect p {
  margin-top: 40px;
  font-weight: 400;
}
.redirect .btn {
  margin-top: 40px;
  font-size: 16px;
}/*# sourceMappingURL=redirect.css.map */