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

#cursor {
    position: fixed;
    border: 1px solid #ddd;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.8;
    background-color: whitesmoke; /* 円の色を指定 */
    z-index: 9999; /* 他の要素よりも手前に表示する */
}

a {
    cursor: none;
}

/*スクロールバー*/
/* 全体のスクロールバーのスタイル */
::-webkit-scrollbar {
    width: 5px; /* スクロールバーの幅 */
    height: 0px;
}

/* スクロールバーのトラック部分のスタイル */
::-webkit-scrollbar-track {
    background-color: transparent !important; /* トラックの背景色 */
}

/* スクロールバーのハンドル（つまみ）部分のスタイル */
::-webkit-scrollbar-thumb {
    background-color: #333;
}
/*スクロールバーここまで*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    cursor: none !important;
}
.container {
    position: relative;
    height: 100vh;
}
.main {
    display: flex;
    flex-direction: column;
}
.bg-img {
    position: fixed;
    top: -20px;
    display: table;
    overflow: hidden;
    left: -20px;
    width: 100%;
    height: 100%;
    filter: blur(0);
    z-index: -1;
    transform-origin: center;
    zoom: 1.4;
    transition: all 0.1s;
}
header {
    position: fixed;
    padding: 1em 6%;
    height: 72px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(1em);
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.22);
}
.logo {
    text-decoration: none;
    color: #333;
}
main {
    scroll-margin-top: 60px;
}
.nav {
    display: flex;
    flex-direction: row;
    gap: 7px;
}
.h-link {
    padding: 8px 1em !important;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    color: #333;
    background-color: transparent;
    transition: all 0.3s;
}
.h-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 80px;
    display: inline-block;
    margin-right: 8px;
}
.top {
    height: 100vh;
    justify-content: end;
    display: flex;
    flex-direction: column;
}
.top > .content {
    display: flex;
    flex-direction: row;
    padding: 3em 6%;
}
.top-text {
    margin-left: 1em;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.about {
    display: flex;
    align-items: center;
    padding: 4em;
    justify-content: center;
    min-height: calc(100vh - 72px);
    background-color: #fff;
}
.about > .content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2em;
}
.links {
    display: flex;
    margin-top: 8px;
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex-direction: row;
}
.links > a {
    text-decoration: none;
    color: #333;
}
.download {
    height: 100vh;
    display: flex;
    gap: 2em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.eula {
    width: 500px;
    padding: 1em !important;
    text-align: left;
    overflow: scroll;
    height: 300px;
    border: 1px solid #000;
}
.dl-btn {
    display: inline-block;
    padding: 1em;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    transition: all 0.3s;
    transition-delay: 0.3s;
}
.disabled {
    opacity: 0.2 !important;
    cursor: not-allowed !important;
    transition: all 0.3s;
    transition-delay: 0.3s;
}
.no-select {
    user-select: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.buttons {
    display: flex;
    flex-direction: row;
    gap: 1em;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}
