* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#app {
    height: 100vh;
    width: 100%;
    font-family: 'Catamaran';
    font-weight: 400;
}

#hero {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.hero-left, .hero-right {
    width: 50%;
}

.hero-left {
    display: flex;
    position: relative;
    align-items: center;
    padding: 0 8rem;
}

#canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.canvas-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(./../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 30%;
    background-size: cover;
}

.text {
    animation: slideUp 1s 
}

.btn {
    text-decoration: none;
    border: 2px solid black;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.btn span {
    vertical-align: middle;
}
.btn svg {
    margin-botom: -10px;
}
.text .big-text {
    font-size: clamp(2rem,5vw,10rem);
    letter-spacing: 1rem;

    background: -webkit-linear-gradient(225deg,#fbd3e9, #bb377d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}
.text .kanji {
    font-size: 4rem;
    font-family: 'Noto Sans JP';
    color: white;
    padding-left: 3px;
}
.text .kanji span {
    background: linear-gradient(130deg,#bb377d, #fbd3e9);
    -webkit-background-clip: text;
    -webkit-text-stroke: 5px transparent;
    padding: .5rem;
}
.text p {
    font-weight: 300;
    font-size: 1.3rem;
    opacity: .9;
    color:rgb(176, 144, 166);
    width: min(700px, 100%);
}
.hiragana {
    width: clamp(2rem,6vw,5rem);
    text-align: center;
    padding: 1rem;
    font-size: clamp(1rem,4vw,3rem);
    position: absolute;
    background-color: #fbd3e9;
    color: white;
    top: 20%;
    right: 100px;
    opacity: 0;
    animation: slideDown 1s cubic-bezier(0, 0.55, 0.45, 1) .6s forwards;
}
.mb-5 {
    margin-bottom: 2rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-3rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(5rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .hero-left {
        padding: 0 3rem;
    }
    .hiragana {
        padding: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .hero-left {
        padding: 0 3rem;
        width: 100%;
        order: 1;
    }
    .hero-right {
        width: 1000%;
        height: 300px;
    }
    .hiragana {
        padding: .5rem;
    }
}

@media screen and (max-width: 480px) {
    .hiragana {
        right: 10%;
    }
}