
#body {
    font-family: Meiryo;
    background-repeat: repeat;
    background-color: #a2ec64;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235bda44' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.header {
    background-color: #e6bcd4;
}

.header_title {
    font-size: 40px;
    font-weight: bolder;
    color: rgb(230, 28, 79);
}

.header_button {
    margin-top: 10px;
}

#main {
    display: flex;
    width: 100%;
    font-size: 15px;
}

#left {
    width: 25%;
}

#right {
    width: 70%
}

.card-body {
    margin: 15px;  
}

.card-search-body {
    height: 400px;
    overflow-y: auto;
}

.card-header {
    background-color: white;
    font-size: 20px;
}

.search_exec {
    display: flex;
}

#clear_button {
    margin-left: 10px;
}

.card-text {
    margin: 10px;
}

label {
    cursor: pointer;
}

.search_input {
    margin-left: 8px;
    cursor: pointer;
}

#search_button {
    float: right;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.decompound {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 5px;
}

.result_list {
    display: flex;
    flex-wrap: wrap;
}

.card_result {
    text-align: center;
    align-items: center;
    width: 200px;
    height: 270px;
    margin: 15px;
}

.card_result_list {
    text-align: center;
    align-items: center;
    width: 200px;
    margin: 15px;
}

.card_result_list .card-body {
    margin: 0px;
}

#search_words {
    display: flex;
    flex-wrap: nowrap; /* 折り返しを防止 */
    width: 70%;
    height: 30px;
    margin: 5px 0px 10px 25px;
}

#input_search_words {
    width: 50%;
    font-size: 13px;
}

#search_family {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap; /* 折り返しを防止 */
    width: 70%;
    height: 30px;
    margin: 5px 0px 10px 25px;
}

#input_search_family {
    width: 50%;
    font-size: 13px;
}

.result_head_area {
    display: flex;
}

.display_area {
    margin-left: auto;
    align-items: center;
}

.limit {
    align-items: center;
}

#limit_key {
    font-size: 12px;
    width: 50px;
    height: 25px;
    margin-left: 5px;
}

#display_key {
    width: 100px;
    height: 30px;
    margin: 5px;
}

.order {
    display: flex;
    margin-right: 15px;
}

.image_size {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-link {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .header_title {
        font-size: 20px !important;
    }
    .header_button {
        flex-wrap: wrap;
    }
    .header_button_name {
        font-size: 10px !important;
    }
    .search_area {
        display: flex;
    }
    #main {
        font-size: 10px !important;
    }
    .result_head_area {
        display: block !important;
    }
    #limit_key {
        font-size: 10px !important;
        height: 20px !important;
    }
    #display_key {
        font-size: 12px !important;
        width: 70px !important;
        height: 25px !important;
    }
    #order {
        margin-top: 5px !important;
    }
}

