/* 教科カード */
.box-design {
    --main-color: #000; /* デフォルト値 */
    --main-width: 200px;
    --height: 50px;
    --padding: 20px;

    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 3px -3px var(--main-color);
    width: var(--main-width);
    height: var(--height);
    padding: var(--padding);

    max-width: 90%;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
}

/* 質問カード */
.outer-box {
    border: 2px solid #bbb;
    padding: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

.inner-box {
    border: 1px solid #ccc;
    background-color: white;
    padding: 16px;
}

.link-underline {
    text-decoration: underline !important;
}
