:root {
  color-scheme: light;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media (max-width: 1000px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
}

.copyright {
  text-align: center;
  padding: 4px 24px;
  background-color: #000;
  color: #fff;
}

.main-wrapper {
  display: flex;
  height: 100svh;

  @media (max-width: 1000px) {
    flex-direction: column;
  }
}

.hero {
  position: relative;

  .studio-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 30px 20px;

    .studio-name {
      margin: 0;
      font-size: 3vw;
      text-wrap: nowrap;

      @media (max-width: 1000px) {
        font-size: 7vw;
      }
    }

    .studio-about {
      @media (max-width: 1000px) {
        text-wrap: wrap;
        font-size: 14px;
      }
    }
  }
}

.sakuragaoka {
  width: 100%;
  height: 100%;
  background-image: url('../images/rental-studio/sakura-studio.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;

  .studio-box {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
  }
}

.sakuragaoka::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
  transition: backdrop-filter 0.5s ease-in-out;

  @media (max-width: 1000px) {
    backdrop-filter: unset;
  }
}

.sakuragaoka:hover::before {
  backdrop-filter: blur(0px);
}

.thehall {
  width: 100%;
  height: 100%;
  background-image: url('../images/rental-studio/thehall-studio.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;

  .studio-box {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.thehall::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  transition: backdrop-filter 0.5s ease-in-out;

  @media (max-width: 1000px) {
    backdrop-filter: unset;
  }
}

.thehall:hover::before {
  backdrop-filter: blur(0px);
}

.btn-default {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;

  @media (max-width: 1000px) {
    font-size: 14px;
    padding: 8px 24px;
  }
}

.btn-white {
  background-color: #fff !important;
  color: #000 !important;
}
