@charset "utf-8";
/* CSS Document */
#newclndr-wrapper{
  max-width: 380px;
  margin: 0 auto;
  font-family: "Helvetica Neue","Hiragino Sans","Meiryo",sans-serif;
  color:#333;
}

#newclndr-container{background: #FFF; padding:8px;}
#newclndr-note{background: #FFF; padding:8px;}

.newclndr-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:10px 0 6px;
}

.newclndr-nav{
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
  padding:4px 6px;
  color:#666;
  line-height:1;
}

.newclndr-table{
  width:100%;
  border-collapse:collapse;
  text-align:center;
  table-layout:fixed;
  font-size:14px;
}

.newclndr-table th{
  padding:5px 0;
  font-weight:bold;
  color:#444;
  font-size:13px;
  border-bottom:1px solid #e0e0e0;
}

.newclndr-table td{
  padding:4px 0;
  color:#333;
  position:relative;
  border-bottom:1px solid transparent;
}

.newclndr-inactive{ color:#bbb; }

/* ▼ 日付（セルいっぱい） */
.newclndr-day{
 text-align: center;
  display:block;
  width:100%;
  padding:2px 0;
  box-sizing:border-box;
}

/* ▼ 休日（角丸ロジック対応） */
.newclndr-day-holiday{
  background:#ffe5eb;
}

.newclndr-day-holiday.start{ border-radius:6px 0 0 6px; }
.newclndr-day-holiday.end{ border-radius:0 6px 6px 0; }
.newclndr-day-holiday.single{ border-radius:6px; }

/* ▼ 本日（休日幅に沿う枠） */
.newclndr-day-today{
  border:2px solid #BDD4D2;
  border-radius:6px;
  font-weight:bold;
}

/* ▼ キャンペーン線 */
td.newclndr-promo{
  border-bottom:5px solid #c6e5e2 !important;
}

/* ▼ 凡例 */
.newclndr-note{
  margin-top:4px;
  font-size:13px;
  color:#555;
  line-height:1.7;
}
.newclndr-note-line{ white-space:nowrap; }

.newclndr-note span{
  display:inline-block;
  width:12px;
  height:12px;
  margin-right:6px;
  border-radius:2px;
  vertical-align:middle;
}

.newclndr-color-promo{ background:#c6e5e2; }
.newclndr-color-off { background:#ffe5eb; }

@media(max-width:480px){
  .newclndr-table th,.newclndr-table td{
    padding:4px;
    font-size:12px;
  }
}

