@charset "UTF-8";
/* CSS Document */

.seminar_teacher {
    padding: 30px;
    background-color: #E2D9BF;
    color: #000;
}

.seminar_restrant {
    padding: 30px;
    background-color: #654321;
    color: #FFF;
}

.seminar_teacher h3,.seminar_restrant h3  {
    font-size: 20px;
    font-weight: bold;
}
.seminar_teacher dl.seminar_teacher_spec {
    display: flex;
    flex-wrap: wrap;
  padding: 20px 0;
}

.restrant_img {
  padding: 20px 0;
}

.seminar_teacher dl.seminar_teacher_spec dd.timg{
    display: flex;
    flex-wrap: wrap;
   width:30%;
  align-items: end;
}

.seminar_teacher dl.seminar_teacher_spec dd.ttex {
width: 67%;
    margin-left: 3%;
}

.seminar_teacher dl.seminar_teacher_spec dd.ttex h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom:7px;
}

.seminar_teacher dl.seminar_teacher_spec dd.ttex h4 span{
    font-size: 14px;
}

.seminar_teacher .semina_ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}

.seminar_restrant .semina_ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #FFF;
}

.semina_ttl p.time_icon{
background: url(../img/icon_time.svg) no-repeat left;
    background-size: 17px 17px;
    padding-left: 20px;
}

/* 情報テーブル */
.info-table-wrapper {
    margin: 10px 0 40px 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.info-table td {
    color: #000;
}
.info-table th {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 100px; /* 見出しセルの幅を固定 */
}

/* 会場情報カード */
.venue-card {
    background-color: #000;
    color: #fff;
    padding: 20px;
}



.venue-images {
    display: flex;
    gap: 15px; /* 画像とマップの間の隙間 */
    margin-bottom: 25px;
}

.venue-images img,
.venue-images .map-placeholder {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.map-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Googleマップのプレースホルダー色 */
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.venue-details {
    text-align: center;
}

.venue-name {
    font-size: 20px;
    font-weight: bold;
    margin: 7px 0 15px 0;
}

.venue-address {
    font-size: 15px;
    margin: 0 0 25px 0;
}

.details-button {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 200px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.details-button:hover {
    background-color: #fff;
    color: #000;
}

.attinfo {
    margin: 20px auto;
    font-size: 14px;
    line-height: 1.7em;
}

.attinfo h4{
    font-size: 18px;
    font-weight:bold;
    border-bottom: 1px solid #FFF;
    margin: 10px auto;
    padding: 10px 0;
    padding: 10px 0;
}

.attinfo .seminaratt{
    font-size: 14px;
    line-height: 1.7em;
}

.set_form {
    text-align: center;
    border-bottom: none;
    margin: 20px auto;
}
/* スマートフォン向けのレスポンシブ対応 */
@media screen and (max-width:498px){

.seminar_teacher,.seminar_restrant {
padding: 20px 10px;
}
.seminar_teacher dl.seminar_teacher_spec {
    display: block;
}
.seminar_teacher dl.seminar_teacher_spec dd.timg {
    width: 60%;
    margin: 0 auto;
}
.seminar_teacher dl.seminar_teacher_spec dd.ttex {
    width: 100%;
    margin: 10px auto;
}

.venue-images {
    display: block;
            margin: 0 auto;
        text-align: center;
}
.venue-images img {
    width: 100%;
    max-width: 280px;
        margin: 10px auto;
}

.map-placeholder-restrant {
    margin: 0 auto;
    text-align: center;
}

.venue-images .map-placeholder {
    width: 100%;
}

    .info-table th {
        width: 40px;
        font-size: 14px;
    }
    .info-table td {
        font-size: 14px;
        padding: 12px;
    }
    .venue-name {
        font-size: 18px;
    }
    .venue-address {
        font-size: 14px;
    }
.details-button {
    padding: 7px 100px;
}

}