@charset "UTF-8";

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

h1{
    font-size: 50px;
}

h2{
    font-size: 30px;
}

p{
    font-size: 20px;
}

.wrapper {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo{
    width: 50%;
}

.big-img{
    width: 50%;
    max-height: 25vh; /* 少し小さくしました */
    margin: 10px 0; /* 上下のマージンを調整 */
}

.big-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a.game-link {
    display: block;
    width: 200px;
    margin: 10px auto; /* 上下のマージンを調整 */
    padding: 15px;
    background-color: #ff9900;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

a.game-link:hover {
    transform: scale(1.05);
}
/* JeS[ZNṼX^C */
.category-section {
    margin: 30px 0;
    width: 100%;
}

h3 {
    font-size: 24px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* {^m̊Ԋu */
}

/* fÑX^CiFj */
a.bbs-link {
    display: block;
    width: 200px;
    padding: 15px;
    background-color: #4a90e2; /* F */
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

a.bbs-link:hover {
    transform: scale(1.05);
    background-color: #357abd;
}

