/* 満月・新月カレンダー専用スタイル */

.pt-moon-panel {
    position: relative;
    margin: 1.5rem 0;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, #eef1fc 0%, #e6eafa 60%, #dde3f6 100%);
    border: 1px solid #d7ddf2;
    box-shadow: 0 0.3rem 1rem rgba(63, 79, 140, 0.08);
}

.pt-moon-today {
    padding: 0 0.25rem 0.75rem;
    color: #2d3a63;
}

.pt-moon-today p {
    margin: 0.25rem 0;
}

.pt-moon-badge {
    display: inline-block;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    background: #dde3f6;
    color: #3f4f8c;
    font-weight: 700;
}

.pt-moon-nav {
    margin: 0.5rem 0 1rem;
    background: #fff;
    border: 1px solid #e0e4e8;
    box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.04);
}

.pt-moon-nav .pt-rokuyo-nav__current {
    background: linear-gradient(90deg, #6f7fd6, #9aa8ff);
    color: #fff;
}

.pt-moon-calendar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.35rem;
    table-layout: fixed;
}

.pt-moon-calendar th {
    padding: 0.3rem 0.25rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #6b76a3;
    text-align: center;
}

.pt-moon-calendar th.is-sun {
    color: #d0342c;
}

.pt-moon-calendar th.is-sat {
    color: #3f4f8c;
}

.pt-moon-cell {
    height: 4.7rem;
    padding: 0.35rem 0.2rem;
    text-align: center;
    vertical-align: top;
    background: #fff;
    border: 1px solid #e0e4f2;
    border-radius: 0.7rem;
}

.pt-moon-cell.is-outside {
    background: #f7f8fd;
    opacity: 0.5;
}

.pt-moon-cell.is-today {
    border-color: #6f7fd6;
    box-shadow: 0 0 0 1px rgba(111, 127, 214, 0.4);
}

.pt-moon-cell.is-full-moon {
    background: #fff6d9;
    border-color: #f0c419;
}

.pt-moon-cell.is-new-moon {
    background: #eef0f8;
    border-color: #7a86ab;
}

.pt-moon-cell__day {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #444;
}

.pt-moon-cell__icon {
    display: block;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-top: 0.1rem;
}

.pt-moon-cell__label {
    display: inline-block;
    margin: 0.2rem auto 0;
    padding: 0.05rem 0.5rem;
    border-radius: 999px;
    background: #eef0f8;
    font-size: 0.68rem;
    font-weight: 700;
    color: #5a6291;
}

.pt-moon-cell.is-full-moon .pt-moon-cell__label {
    background: #ffe6a8;
    color: #8a5a00;
}

.pt-moon-cell.is-new-moon .pt-moon-cell__label {
    background: #dde1f0;
    color: #2f3b66;
}

@media (max-width: 30rem) {
    .pt-moon-calendar {
        border-spacing: 0.2rem;
    }

    .pt-moon-cell {
        height: 4rem;
        padding: 0.25rem 0.1rem;
    }

    .pt-moon-cell__icon {
        font-size: 1.1rem;
    }

    .pt-moon-cell__label {
        font-size: 0.6rem;
    }
}
