/* Irie Online Course Table Widget Styles */

.irie-online-table-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    /* iOS で慣性スクロールを効かせる */
    -webkit-overflow-scrolling: touch;
}

/* display:flex + justify-content:center は、内容がはみ出したときに
   左端が見切れてスクロールで戻れなくなるため使わない。
   中央寄せはテーブル側の margin: 0 auto で行う
   （「Irie コース一覧（絞り込み付き）」と同じ方式に揃えた） */

.irie-online-table {
    width: 100%;
    max-width: 800px;
    /* スマホ・タブレットでは縮めずに横スクロールで見せる。
       コース説明が長いため、幅を詰めると読めなくなる */
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    border: 2px solid #c84b31;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 75, 49, 0.08);
    font-family: inherit;
    margin: 0 auto;
}

.irie-online-table thead tr {
    background-color: #a01212;
}

.irie-online-table th {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 10px;
    text-align: center;
    border-top: none !important;
    border-left: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid #c84b31;
    box-sizing: border-box;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.irie-online-table th:last-child {
    border-right: none !important;
}

.irie-online-table td {
    padding: 14px 12px;
    border-top: none !important;
    border-left: none !important;
    border-right: 1px solid #c84b31;
    border-bottom: 1px solid #c84b31;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
    vertical-align: middle;
}

.irie-online-table tr:last-child td {
    border-bottom: none !important;
}

.irie-online-table td:last-child {
    border-right: none !important;
}

.irie-online-table .irie-col-name {
    width: 22%;
    text-align: center;
    font-weight: 700;
    color: #333333;
}

.irie-online-table .irie-col-time {
    width: 15%;
    text-align: center;
    color: #333333;
}

.irie-online-table .irie-col-price {
    width: 18%;
    text-align: center;
    font-weight: 700;
    color: #a01212;
}

.irie-online-table .irie-col-desc {
    width: 45%;
    text-align: left;
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
}

/* 見出しは他の列と揃えて中央寄せにする。
   .irie-col-desc は th / td の両方に付いており、本文の左寄せは維持したいため
   th だけを対象に上書きする */
.irie-online-table th.irie-col-desc {
    text-align: center;
}

.irie-online-table-empty {
    padding: 20px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}
