@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
}
* {
    user-select: none;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #f7f7f7;
    margin-top: 75px;

    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.topimg {
    width: 70%;
}
.title {
    width: 70%;
    transition: all 0.3s ease;
}
.title h1 {
    background: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px 0 10px 0;
    position: relative;
    z-index: 1000;
    margin: 0;
    font-size: 25px;
}

.sub {
    width: 30%;
    position: fixed;
    right: 10px;
    top: 75px;
    bottom: 0;
    .submenu {
        background: rgb(255, 255, 255);
        position: absolute;
        top: 0;
        left: 15px;
        right: 0;
        height: 200px;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 5px;
        padding: 10px;
    }
}
#hr {
    margin: 0;
    padding: 0 20px;
    width: 70%;
}
hr {
    border: none;
    border-top: 0.05em solid #95a7ff;
    width: 100%;
}

.section {
    padding: 0 10px;
    width: 70%;
}
.section2 {
    width: 70%;
}

@media (max-width: 768px) {
    .topimg {
        width: 100%;
    }
    .sub {
        display: none;
    }
    .title {
        width: 100%;
        transition: all 0.3s ease;
    }
    #hr {
        width: 100%;
    }
    .section , .section2 {
        width: 100%;
    }

}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    margin-top: 10px;
    a {
        background: #fff;
        width: 100%;
        padding: 0 20px;
        height: 90px;
        display: flex;
        align-items: center;
        color: #333;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-weight: 700;
        position: relative;
        border: 1px solid #333;
        overflow: hidden;
        .devt {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 15px;
            font-weight: 500;
            background: #333;
            color: #fff;
            padding: 5px 10px;
            height: 100%;
            writing-mode: vertical-rl;
            text-align: center;
        }
        &:hover {
            transition: all 0.3s ease;
            transform: translateY(-3px);
            box-shadow: 0 5px 1px 0 #333;
            img {
                transition: all 0.3s ease;
                transform: rotate(10deg) scale(1.2);
            }
        }
        &:active {
            transition: all 0.3s ease;
            opacity: 0.5;
            img {
                transition: all 0.3s ease;
                transform: rotate(-10deg) scale(1);
            }
        }
        img {
            position: absolute;
            left: -10px;
            height: 150px;
            width: 150px;
            transform: rotate(10deg);
            transition: all 0.3s ease;
            opacity: 0.4;
            box-shadow: 0 0 10px 0 #000;
        }
        p {
            position: absolute;
            right: 0;
            left: 0;
            bottom: 0;
            margin: 0;
            background: #ffffff7c;
            padding: 10px;
            span {
                margin-left: 3px;
                font-size: 10px;
                letter-spacing: -0.05em;
            }
        }

    }
}

.txtlinkc {
    text-decoration: none;
    border: none;
    transition: all 0.3s;

    &:hover {
        opacity: 0.5;
    }
}
.spoint {
    display: flex;
    gap: 5px;
    *{
        transition: all 0.3s;
        border-radius: 5px;
        &:hover {
            opacity: 0.5;
        }
    }
    input {
        background: #fff;
        border: 1px solid rgb(188, 188, 188);
        height: 40px;
        width: 100%;
        padding: 0 10px;
        &:hover {
            opacity: 0.5;
        }
        &:focus {
            border-bottom: 1px solid #1560BD;
        }
    }
    button {
        background: #333;
        height: 40px;
        color: #fff;
        width: 80px;
        border: 1px solid #333;
    }
}
button {
    cursor: pointer;
}
.mainbtn {
    background: linear-gradient(to right, #65defc, #938aff);
    width: 220px;
    height: 50px;
    box-shadow: 0 0 2px 0px gray;
    border: none;
    border-radius: 5px;
    color: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


