@charset "utf-8";

#breadcrumbs.seminar {
    margin-top: 100px;
}
.tab {
    display: flex;
}
.tab li {
    font-size: 14px;
    color: #fff;
    padding: 2px 8px 0;
    background: #6f6f6f;
    cursor: pointer;
}
.search {
    background: #ebebeb;
    border-radius: 10px;
    margin: 24px 0 80px;
    padding: 2%;
}
.search_form {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}
.search_box {
    display: flex;
    flex-direction: column;
}
input[type="search"] {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}
.search_btn {
    text-align: center;
}
.search_btn button {
    font-size: 14px;
    color: #fff;
    background: #333;
    border-radius: 5px;
    padding: 4px 32px 6px;
    transition: all .3s;
}
.search_btn button:hover {
    background: #888;
}
.detail {
    margin: 24px 0;
}
.detail h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 8px;
}
.detail.flex {
    flex-wrap: nowrap;
    border: 1px solid #ddd;
    margin-top: 0;
    padding: 16px;
}
.detail_item {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.flex-2 {
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 768px) {
    .detail_item {
        width: 100%;
    }
}