/*=======================================

  Reset

========================================*/

/* A Modern CSS Reset */

*,*::before,*::after{
  padding: 0;
  margin: 0;
  box-sizing:border-box
}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{
    margin:0
}
ul[role="list"],ol[role="list"]{
  list-style:none
}
html:focus-within{
  scroll-behavior:smooth
}
body{
  min-height:100vh;
  text-rendering:optimizeSpeed;
  line-height:1.5
}
a:not([class]){
  text-decoration-skip-ink:auto
}
img,picture{
  max-width:100%;
  display:block
}
input,button,textarea,select{
  font:inherit
}
@media(prefers-reduced-motion:reduce){
  html:focus-within{
      scroll-behavior:auto
  }
  *,*::before,*::after{
      animation-duration:.01ms !important;
      animation-iteration-count:1 !important;
      transition-duration:.01ms !important;
      scroll-behavior:auto !important
  }
}

a {
  color: #FFFEF6;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: transparent;
}

@media (hover: hover) {
  a:any-link:hover {
    color: #FFFEF6;
    background: linear-gradient(-45deg, #1a1a1a, #d0d0d0, #FFFEF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

ul {
  padding: 3rem 0;
  list-style: none;
}
li {
  padding-bottom: 1rem;
}
/*=======================================

  custom

========================================*/
@font-face {
  font-family: "Neue-Montreal-L";
  src: url('/assets/font-neue-montreal/NeueMontreal-Light.otf') format('opentype');
}

.canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100% !important;
  height: 100vh !important;
}

.box {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: transparent;
}
.space {
  height: 25vh;
}
.space2 {
  height: 30vh;
}

.h-fit {
  height: fit-content;
}

.wrapper {
  position: relative;
}
p {
  color: #FFFEF6;
  letter-spacing: 0.1;
  line-height: 1.75rem;
}

body {
  font-family: "droid-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@keyframes scrolldown {
  0%{
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100%{
    background-position: 0 60px;
  }
}

.c-scrolldown {
  width: 1px;
  height: 60px;
  position: absolute;
  top: 60vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}

.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

.text-align-c {
  text-align: center;
}

.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.w-100 {
  width: 100%;
}

.txt-p-head {
  top: 26%;
  left: 0;
  right: 0;
}

.name {
  font-size: 2.5rem;
  font-family: "Neue-Montreal-L", sans-serif;
}

.business {
  font-family: "Neue-Montreal-L", sans-serif;
  font-size: 1rem;
}

.container {
  padding: 5rem 1rem;
  max-width: 430px;
  margin-inline: auto;
}

.height100 {
  height: 100%;
}

.mb-30 {
  margin-bottom: 30px;
}

.bg-BL {
  background-color: #1a1a1a;
}

.txt-spa-1 {
  letter-spacing: 0.01rem;
}

.font-Neue {
  font-family: "Neue-Montreal-L", sans-serif;
}

.sub-txt {
  display: block;
  font-size: 1rem;
  color: #FFFEF6;
}

.font-2 {
  font-size: 2rem;
}

.text-align-r {
  text-align: right;
}

.line-h {
  line-height: 1.45rem;
}

.d-flex {
  display: flex;
}

.sns-icon {
  width: 35px;
  height: 35px;
  transition: .3s all;
}

.icon-inst {
  background: url(/assets/icon-insta.svg) no-repeat center / cover;
}

.icon-x {
  background: url(/assets/icon-x.svg) no-repeat center / cover;
}


.gap-30 {
  gap: 30px;
}

.justify-cen {
  justify-content: center;
}

.align-cen {
  align-items: center;
}

.mt-3r {
  margin-top: 3rem;
}

.contact-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-50 {
  padding-top: 20px;
}
.pt-100 {
  padding-top: 100px;
}
