@charset "UTF-8";

hr {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-bottom-width: 0;
}

.container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    padding: 40px 20px;
}

.user-type-selection {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.selection-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
    text-transform: none;
    text-align: center;
    width: 100%;
}

.type-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.type-box {
    width: 320px;
    height: 280px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.type-box:hover {
    border-color: #2196F3;
    background-color: #e3f2fd;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
}

.type-box:active {
    transform: translateY(-2px);
}

.box-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box-icon {
    font-size: 80px;
    color: #2196F3;
    transition: all 0.3s ease;
}

.type-box:hover .box-icon {
    transform: scale(1.1);
    color: #1976D2;
}

.box-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.box-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media only screen and (max-width: 768px) {
    .selection-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .type-boxes {
        gap: 30px;
    }

    .type-box {
        width: 280px;
        height: 240px;
        padding: 25px;
    }

    .box-icon {
        font-size: 60px;
    }

    .box-content h3 {
        font-size: 1.3rem;
    }

    .box-content p {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 480px) {
    .type-box {
        width: 100%;
        max-width: 320px;
    }
}
