#pc-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  /* background-image: url("/wp-content/themes/favtown/assets/images/00_pc/pc_bg.png");
  background-repeat: no-repeat;
  background-position: center center; */
  /* background-size: cover; */
  display: flex;
  align-items: center;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(253, 224, 75, 0.14),
      transparent 36%
    ),
    radial-gradient(
      circle at 76% 10%,
      rgba(252, 215, 39, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #fdfdfc 0%, #fbfaf7 60%, #ffffff 100%);
}

@media screen and (max-width: 500px) {
  #pc-bg {
    display: none;
  }
}

@media (min-width: 1280px) {
  #pc-bg .nav-link-wrapper,
  #pc-bg .right-side-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: calc((100vw - 500px) / 2);
    z-index: 10;
    pointer-events: auto;
  }
  #pc-bg .nav-link-wrapper {
    left: 0;
  }
  #pc-bg .right-side-wrapper {
    flex-direction: column;
    gap: 32px;
    right: 0;
  }
  #pc-bg .auth {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1920px) {
  #pc-bg .nav-link-wrapper {
    left: auto;
    width: 720px;
    right: calc(50% + 250px);
  }
  #pc-bg .right-side-wrapper {
    right: auto;
    width: 720px;
    left: calc(50% + 250px);
  }
}
#pc-bg .links {
  width: fit-content;
  background-color: var(--color-white);
  border: 4px solid var(--color-primary);
  border-radius: 24px;
  padding: 32px;
}

#pc-bg .links .menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#pc-bg .links .row {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-dark-gray);
}

#pc-bg .links .row.active {
  color: #000000;
}

#pc-bg .links .row svg {
  width: 24px;
  height: 24px;
}

#pc-bg .links .row .icon-disable {
  display: block;
}

#pc-bg .links .row.active .icon-disable {
  display: none;
}

#pc-bg .links .row .icon-enable {
  display: none;
}

#pc-bg .links .row.active .icon-enable {
  display: block;
}
#pc-bg .links .row .line {
  height: 28px;
  background-color: #fff;
  border-radius: 0px 4px 4px 0px;
  width: 5px;
  margin-right: 28px;
}

#pc-bg .links .row.active .line {
  background-color: #000000;
}

#pc-bg .links .row .dot {
  margin-right: 8px;
  background-color: #d9d9d9;
  height: 24px;
  width: 24px;
  border-radius: 12px;
}

#pc-bg .auth .button {
  width: 130px;
  height: 130px;
  border-radius: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

#pc-bg .auth .furusato-gift.button {
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 8px;
  position: relative;
  padding-top: 12px;
}

#pc-bg .auth .button > :is(img, svg) {
  width: 100%;
}

#pc-bg .auth .furusato-gift.button :is(img, svg) {
  position: absolute;
  top: -24px;
  width: 72px;
  animation: sway 1.3s infinite steps(1);
  transform: rotate(0deg);
}

#pc-bg .auth .furusato-gift.button .reception {
  color: #ffffff;
  background-color: rgba(255, 46, 46, 1);
  border-radius: 100px;
  padding: 0 8px;
  line-height: 28px;
}

#pc-bg .auth .register.button {
  background-color: #000000;
  color: #ffffff;
}

#pc-bg .auth .login.button {
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 40px;
}

#pc-bg .auth .login.button :is(img, svg) {
  margin-bottom: 8px;
}

#pc-bg .auth .button .subtext {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  margin-top: 6px;
}

#pc-bg > .socials {
  display: flex;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 16px 24px;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 501px) {
  #pc-bg > .socials {
    width: 252px;
    height: 122px;
    padding: 16px 24px;
    gap: 8px;
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  }
}

#pc-bg > .socials p {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  color: var(--color-black);
}
@media (min-width: 501px) {
  #pc-bg > .socials p {
    width: 204px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.05em;
  }
}
#pc-bg > .socials .icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 501px) {
  #pc-bg > .socials .icons {
    width: 197px;
    height: 54px;
    gap: 16px;
  }
}

#pc-bg > .socials .icons .icon {
  background-color: #f2f4f6;
  height: 54px;
  width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 27px;
  cursor: pointer;
}

.pc-bg-images {
  display: none;
}
@media (min-width: 501px) {
  .pc-bg-images {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 14% 18%,
        rgba(253, 224, 75, 0.14),
        transparent 36%
      ),
      radial-gradient(
        circle at 76% 10%,
        rgba(252, 215, 39, 0.12),
        transparent 30%
      ),
      linear-gradient(135deg, #fdfdfc 0%, #fbfaf7 60%, #ffffff 100%);
  }
  .pc_bg_bg_left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100vw * 500 / 1440);
    height: auto;
  }
  .pc_bg_bg_right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100vw * 540 / 1440);
    height: auto;
  }
  .pc_bg_treat1 {
    position: absolute;
    top: calc(100vh * 73 / 1080);
    left: -41px;
    width: 254px;
    height: 254px;
  }
  .pc_bg_treat2 {
    position: absolute;
    bottom: calc(100vh * 240 / 1080);
    left: calc(100vw * 20 / 1440);
    width: 96px;
    height: 105px;
  }
  .pc_bg_treat3 {
    display: none;
    position: absolute;
    top: calc(100vh * 290 / 1080);
    left: calc(100vw * 324 / 1440);
    width: 100px;
    height: 100px;
  }
  .pc_bg_treat4 {
    display: none;
    position: absolute;
    top: calc(100vh * 564 / 1080);
    right: calc(100vw * 352 / 1440);
    width: 82px;
    height: 82px;
  }
  .pc_bg_treat5 {
    position: absolute;
    bottom: calc(100vh * 200 / 1080);
    right: -60px;
    width: 158px;
    height: 158px;
  }
  .pc_bg_treat6 {
    display: none;
    position: absolute;
    top: -68px;
    right: -14px;
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1441px) {
  .pc_bg_treat3 {
    display: block;
  }
  .pc_bg_treat4 {
    display: block;
    top: calc(100vh * 675 / 1080);
    right: calc(100vw * 465 / 1920);
  }
}
@media (min-width: 1280px) {
  .pc_bg_treat6 {
    display: block;
  }
}
@media (min-width: 1920px) {
  .pc_bg_bg_left {
    width: calc(100vw * 720 / 1920);
  }
  .pc_bg_bg_right {
    width: calc(100vw * 764 / 1920);
  }
  .pc_bg_treat2 {
    bottom: calc(100vh * 260 / 1080);
    left: calc(100vw * 130 / 1920);
  }
  .pc_bg_treat3 {
    top: calc(100vh * 237 / 1080);
    left: calc(100vw * 510 / 1920);
  }
  .pc_bg_treat4 {
    top: calc(100vh * 572 / 1080);
    right: calc(100vw * 552 / 1920);
  }
  .pc_bg_treat5 {
    right: -20px;
    width: 158px;
    height: 158px;
  }
}
@media (min-width: 2560px) {
  .pc_bg_bg_left {
    width: 960px;
  }
  .pc_bg_bg_right {
    width: 1020px;
  }
}
@keyframes PcBackground_fadeIn__EM8hW {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 501px) {
  #content {
    border-left: 1px solid #ced8dd;
    border-right: 1px solid #ced8dd;
  }
}
