@charset "UTF-8";

.hm-event-calendar table {
    margin: 0;
}

.hm-event-calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .55);
    transition: all .2s ease-in-out;
}

.hm-event-calendar-modal:not(.is-visible) {
    pointer-events: none;
    opacity: 0;
}

.hm-event-calendar-detail {
    width: 94%;
    max-height: 72%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    background-color: #fff;
    border-radius: .5rem;
    overflow: auto;
}

.hm-event-calendar-detail-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
}

.hm-event-calendar-detail-content {
    flex: 1;
}

.hm-event-calendar-detail-header {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    background-color: #f7f7f7;
    border-bottom: solid 1px #eee;
}

.hm-event-calendar-detail-header p {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.hm-event-calendar-detail-headline {
    padding: 1rem 1.5rem .5rem;
}

.hm-event-calendar-detail-headline .hm-event-calendar-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-weight: bold;
    text-align: center;
    border-bottom: dotted 2px #888;
}

.hm-event-calendar-contents {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.hm-event-calendar-contents>* {
    margin-bottom: .5rem;
}

.hm-event-calendar-contents>*:last-child {
    margin-bottom: 0;
}

.hm-event-calendar-detail-list {
    padding: .5rem 1.5rem 1rem;
}

.hm-event-calendar-detail-list dd {
    margin: 0;
}

.hm-event-calendar-detail-list dd:not(:last-of-type) {
    padding-bottom: .5rem;
    margin: 0 0 .5rem;
    border-bottom: solid 1px #eee;
}

.hm-event-calendar-detail-link {
    text-align: center;
    border-top: solid 1px #eee;
}

.hm-event-calendar-detail-link a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #f7f7f7;
}

@media (min-width: 768px) {
    .hm-event-calendar-detail {
        width: 40rem;
    }
}

.hm-event-calendar.fc .fc-daygrid-day-number {
    color: #999;
}

.hm-event-calendar.fc .fc-col-header-cell-cushion {
    color: #3a3a3a;
}

.hm-event-calendar.fc .fc-col-header-cell-cushion:hover {
    color: #3a3a3a;
}

@media (max-width: 767px) {
    .hm-event-calendar.fc .fc-daygrid-day-number {
        font-size: .75em;
    }

    .hm-event-calendar.fc .fc-toolbar-title {
        font-size: 1.375em;
    }
}

/* Fullcalendar */
.hm-event-calendar.fc .fc-daygrid-event-harness {
    cursor: pointer;
}

/* イベント情報テーブル */
.hm-event-detail-table {}

.hm-event-detail-table table,
.hm-event-detail-table th,
.hm-event-detail-table td {
    border: solid 1px rgba(0, 0, 0, .1);
    border-collapse: collapse;
}

.hm-event-detail-table h3 {
    /* font-size :f¥ */
}

.hm-event-detail-table th {
    background-color: #f7f7f7;
}

.hm-event-detail-table td {
    background-color: #fff;
}

.hm-event-detail-table-dates {
    padding: 0 0 0 1.5em;
    margin: 0;
}

.hm-event-detail-table-dates dd {
    margin: 0;
}

.hm-event-detail-table-contents>*:first-child {
    margin-top: 0;
}

.hm-event-detail-table-contents>*:last-child {
    margin-bottom: 0;
}