img {
    max-width: 100%;
}

.seminar {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}
.seminar .list {
    margin: 15px 0;
    width: 48%;
    border-radius: 5px;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    transition: all 0.2s linear;
}
.seminar .list:hover {
    border: 1px solid #65b8f4;
}
.seminar .list a {
    display: block;
    padding: 15px 20px;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}
.seminar .list a:hover {
    text-decoration: none;
}
.seminar .list a h2 {
    font-size: 16px;
    margin: auto;
    color: #004ea0;
    min-height: 2.7rem;
}
.seminar .list a figure {
    margin: 10px auto;
    text-align: center;
}
.seminar .list a figure img {
    border-radius: 6px;
    max-height: 220px;
}

.enquete {
    margin: 0 0 30px 0;
    text-align: center;
}
.enquete .col-2 {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.enquete .col-2 > * {
    margin: 0 20px;
}

.btn-area {
    padding: 30px 0 0 0;
    margin: 30px auto;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-sizing: border-box;
    border-top: 1px solid #eee;
}
.btn-area li {
    width: 46%;
    margin: 10px auto;
}

a.btn {
    background-color: #0168b5;
    color: #ffff;
    padding: 15px 20px;
    border-radius: 8px;
    display: block;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 3px 0 #004584;
    transition: all 0.2s linear;
}
a.btn:hover {
    text-decoration: none;
    background-color: #0084c5;
    transform: translateY(3px);
    box-shadow: 0 0 0 #004584;
}
a.btn small {
    font-weight: normal;
}

.seminar-detail {
    padding: 10px 0;
}
.seminar-detail h2 {
    font-size: 18px;
    color: #004ea0;
}
.seminar-detail iframe {
    margin: 0 10px;
}