.zen-kaku {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h2.zen-maru {
    font-size: 28px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 4px;
}
#hero {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
.lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
    line-height: 1.7;
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;

    li {
        padding: 5px 0;
        color: color-mix(in srgb, var(--default-color), transparent 0%);
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;

        i {
            color: var(--accent-color);
            font-size: 18px;
        }
    }
}

/* スマホ微調整 */
@media (max-width: 768px) {
    .services-title {
        margin-top: 20px;
    }
}


/* ===== Strive風ベース ===== */
.table-responsive { overflow-x: auto; }
.strive-table {
    font-family: "Zen Maru Gothic", sans-serif;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    font-size: 20px;
}
.strive-table thead th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2b2b2b;
    padding: 14px 18px;
    text-align: center;
    background: #e5f3ff;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.strive-table tbody th {
    background: #fff;
    font-weight: 600;
    color: #2b2b2b;
    text-align: left;
    padding: 14px 18px;
    white-space: nowrap;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.strive-table td {
    text-align: center;
    padding: 14px 18px;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

/* ===== 緑の●（開院）・閉院表示 ===== */
:root {
    --open-dot: #0090ea; /* 画像に近い明るい黄緑 */
    --dot-size: 14px;
}
.schedule-table td.open::before {
    content: "";
    display: inline-block;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 999px;
    background: var(--open-dot);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
    vertical-align: middle;
}
.schedule-table td.closed {
    color: #222;
    font-weight: 600;
}

.schedule-table td.note {
    position: relative;
}
.schedule-table td.note::after {
    content: "※";
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: .85em;
    color: #777;
}

/* 最右列（日曜）とヘッダのボーダー調整 */
.strive-table thead th + th,
.strive-table td + td { border-left: 1px solid #f1f1f1; }

/* 備考 */
.hours-note {
    margin-top: 8px;
    font-size: .9rem;
    color: #555;
}

/* スマホ微調整 */
@media (max-width: 768px) {
    .strive-table { font-size: 0.9rem; }
    :root { --dot-size: 12px; }
    .hours-note { font-size: .85rem; }
}
