@charset "UTF-8";/* テーブル全体のスタイル *//* テーブル全体のスタイル */
.rentalratetable {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 4px solid #17a2b8;
    border-radius: 15px;
    overflow: hidden;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ヘッダー行（曜日） */
.rentalratetable th {
    background-color: #ffffff;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 3px dotted #999;
}

/* 「月」と「金」を大きく */
.day-highlight {
    font-size: 32px;
}

/* データセル共通 */
.rentalratetable td {
    text-align: center;
    padding: 30px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
}

/* 縦の区切り線 */
.rentalratetable td {
    border-right: 3px dotted #999;
}

.rentalratetable td:last-child {
    border-right: none;
}

/* 料金の数字部分（大きく） */
.price-large {
    font-size: 42px;
    font-weight: bold;
}

/* 料金の「円」部分（少し小さく） */
.price-yen {
    font-size: 30px;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .rentalratetable {
        max-width: 100%;
        border: 3px solid #17a2b8;
    }
    
    .rentalratetable th {
        font-size: 18px;
        padding: 15px 10px;
    }
    
    .day-highlight {
        font-size: 24px;
    }
    
    .rentalratetable td {
        font-size: 16px;
        padding: 20px 10px;
    }
    
    .price-large {
        font-size: 32px;
    }
    
    .price-yen {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .rentalratetable th {
        font-size: 14px;
        padding: 12px 8px;
    }
    
    .day-highlight {
        font-size: 18px;
    }
    
    .rentalratetable td {
        font-size: 13px;
        padding: 15px 8px;
    }
    
    .price-large {
        font-size: 24px;
    }
    
    .price-yen {
        font-size: 18px;
    }
}