@charset "utf-8";

/* ------------------------------
 病院見学会、説明会のお知らせ（PC）
------------------------------ */
/* タイムスケジュール */
.table-time table:not(.simple table, .table-head table) {
    border-radius: 0;
}
.table-time table:not(.simple table, .table-head table) th,
.table-time table:not(.simple table, .table-head table) td {
    padding: 0;
    background: none !important;
    border: none !important;
}
.table-time table:not(.simple table, .table-head table) th {
    padding-right: 15px;
    color: var(--green-color);
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
}
.table-time table:not(.simple table, .table-head table) td {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.table-time table tr th::before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--green-color);
}
.table-time table tr:first-child th::before {
    top: calc(5px + 0.8em);
}
.table-time table tr:last-child th::before {
    bottom: calc(100% - (5px + 0.8em));
}
.table-time table tr th::after {
    content: "";
    position: absolute;
    top: calc(5px + 0.6em);
    right: -2px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--green-color);
}

/* 吹き出しキャラ */
.text-speech-deco {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.text-speech-deco img {
    width: 92px;
}
.text-speech-deco .cms_caption_t {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--green-color);
    text-align: center;
    width: 100%;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    border: solid 2px var(--green-color);
    position: relative;
    margin-bottom: 0;
}

.text-speech-deco .cms_caption_t::before,
.text-speech-deco .cms_caption_t::after {
    content: "";
    position: absolute;
    left: 100%;
    clip-path: polygon(0 0, 98% 0, 100% 8%, 98% 10%, 0 100%);
}
.text-speech-deco .cms_caption_t::before {
    width: 16px;
    height: 16px;
    bottom: 22px;
    border-radius: 1px;
    background-color: var(--green-color);
}
.text-speech-deco .cms_caption_t::after {
    width: 12px;
    height: 12px;
    bottom: 24px;
    background-color: #fff;
}
@media print, screen and (min-width: 768px) {
    .text-speech-deco {
        width: 331px !important;
        position: absolute;
        right: 30px;
        bottom: 15px;
    }
}
