* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
}

section, footer {
  display: flex;
  justify-content: center;
}
section .wrapper, footer .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content, footer .wrapper .content {
  display: flex;
  width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  font-family: "Inter";
  padding: 30px;
}
header .logo-c svg {
  max-width: 180px;
}
header nav a {
  text-decoration: none;
  color: #fff;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.first-view {
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
  font-family: "Noto Sans JP";
  height: 100dvh;
  justify-content: center;
  align-items: center;
}
.first-view .vid-c {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.first-view .vid-c video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.first-view .vid-c .blur-mask {
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 42, 0.33);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.first-view img {
  position: absolute;
  max-width: 450px;
  right: 0;
  bottom: 0;
}
.first-view .txt-bot {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 3.75rem;
  font-family: "Poppins";
  font-weight: 700;
  font-style: italic;
  padding: 0 30px;
  z-index: 10;
}
.first-view .txt-bot span {
  -webkit-text-stroke: 0.5px #FF6600;
  color: transparent;
}
.first-view .copyright {
  position: absolute;
  color: #fff;
  letter-spacing: 1px;
  right: -80px;
  transform: rotate(90deg);
  font-size: 0.7rem;
}
.first-view .content {
  flex-direction: column;
  z-index: 10;
}
.first-view .content h1 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 3.5rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.first-view .content h1 .smaller {
  font-size: 2.75rem;
}
.first-view .content h1 .orange {
  color: #FF6600;
}
.first-view .content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.first-view .content .ipt-group {
  display: flex;
  align-items: center;
  max-width: 580px;
  gap: 18px;
}
.first-view .content .ipt-group input {
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 14px;
  flex-grow: 1;
  border: none;
}
.first-view .content .ipt-group input::placeholder {
  color: #94A3B8;
}
.first-view .content .ipt-group input:focus {
  outline: none;
}
.first-view .content .ipt-group .btn {
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: #FF6600;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 100%;
  letter-spacing: 2px;
  cursor: pointer;
}

.thankyou-popup {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  font-family: "Noto Sans JP";
  z-index: 99;
  padding: 20px;
}
.thankyou-popup.active {
  display: flex;
}
.thankyou-popup .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  z-index: 100;
  position: relative;
}
.thankyou-popup .content .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background-color: rgba(39, 39, 42, 0.5019607843);
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  padding: 2px;
}
.thankyou-popup .content .close svg {
  width: 16px;
  height: 16px;
}
.thankyou-popup .content .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.thankyou-popup .content .desc {
  font-size: 0.7rem;
  color: #27272A;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
}
.thankyou-popup .content .gmail-btn {
  width: 100%;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 40px;
  background-color: #FF6600;
  letter-spacing: 1px;
  font-size: 0.8rem;
  cursor: pointer;
}

@media screen and (max-width: 1130px) {
  .first-view img {
    opacity: 30%;
  }
}
@media screen and (max-width: 800px) {
  .first-view .txt-bot {
    display: flex;
    justify-content: center;
    font-size: 1.875rem;
  }
  .first-view .copyright {
    display: none;
  }
  .first-view .content {
    align-items: center;
  }
  .first-view .content h1 {
    font-size: 1.75rem;
    text-align: center;
  }
  .first-view .content h1 .smaller {
    font-size: inherit;
  }
  .first-view .content p {
    font-size: 0.8rem;
    text-align: center;
  }
  .first-view .content .ipt-group {
    flex-direction: column;
    width: 100%;
  }
  .first-view .content .ipt-group input {
    font-size: 0.8rem;
    flex-grow: unset;
    width: 100%;
  }
  .first-view .content .ipt-group .btn {
    font-size: 0.875rem;
    height: 42.5px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 460px) {
  header {
    padding: 20px;
  }
  header .logo-c svg {
    width: 160px;
  }
  .first-view {
    padding: 60px 20px;
  }
  .first-view .txt-bot {
    padding: 0;
    text-align: center;
  }
  .first-view img {
    right: -90px;
    opacity: 25%;
  }
  .first-view .content p br {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
