/* ===================================================
   Ozuwashi Reservation Calendar - Unified style.css
   Author: [Your Name or Team]
   Last Updated: 2025-03-24
   Description: Combined and cleaned-up CSS from style1.css and style2.css
=================================================== */

@charset "UTF-8";

/* ------------------------------
   BASE STYLES (Mobile First)
------------------------------ */
body {
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif,'Marcellus', serif,'Ysabeau Infant', sans-serif;
  margin: 0 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  background: url("../main_bg.jpg");
}

.wrapper {
  width: 100%;
  max-width: 952px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}

.calendar-tittle {
  width: 100%;
  margin-top: 60px;
}

.calendar-tittle-box {
  font-size: 18px;
  font-weight: 600;
}

.calendar-en-tittle-box {
  margin-bottom: 5px;
}

.calendar-month {
  width: 100%;
}

.calendar-month-box {
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.btn {
  text-decoration: none;
  width: 16px;
  height: 16px;
  margin: 0 20px;
  padding: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background-color: #000;
  transition: 0.7s;
  line-height: 1.4;
}

a.btn:hover {
  color: #fff;
  background: #A6262E;
}

.calendar-en-month-box {
  font-size: 20px;
}

.calendar-month-select {
  width: 75%;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 40px auto;
  line-height: 0;
   /* 月のアンダーバー */
  border-bottom: 1px solid #ccc; /* グレーの線 */
  padding-bottom: 10px; /* 文字と線の間に余白 */
}

.calendar-month-select p {
  padding: 0 12px;
}

.calendar-month-select a {
  color: #000;
  transition: 0.3s;
}

.calendar-month-select a:hover {
  color: #A6262E;
  font-weight: 600;
}

.calendar-week-box {
  width: 100%;
  display: block;
}
.calendar-week-box2 {
  width: 100%;
  display: block;
  height: 300px;
}

.calendar-day-box {
  width: 85%;
  margin: 0 auto;
}

.calendar-week,
.calendar-week-sunday {
  border: 1px solid #9FA0A0;
  padding: 10px 0;
  line-height: 1;
  color: #fff;
}

.calendar-week {
  background-color: #A6262E;
}

.calendar-week-sunday {
  background-color: #000;
}

.calendar-day {
  border: 1px solid #9FA0A0;
  background-color: #fff;
  font-size: 20px;
  padding: 8px 0;
  line-height: 1;
  font-weight: 600;
}

.calendar-time {
  height: 184px;
  border: 1px solid #9FA0A0;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  letter-spacing: -0.02em;
}

.calendar-time p {
  margin: 12px 0;
  line-height: 2;
}

.calendar-time-holiday {
  line-height: 1.5;
  padding: 52px 0;
}


/* ------------------------------
   Notes Section (Under Calendar)
------------------------------ */

.calendar-notes {
  width: 85%;
  text-align: justify;
  margin: 14px auto 60px auto;
}

.calendar-notes-mark {
  display: block;
  margin-top: 30px;
  text-align: left;
}

.calendar-notes-mark h4 {
  margin: 0;
  padding-bottom: 4px;
}

.calendar-notes-mark p,
.calendar-notes-mark ul,
.calendar-notes-mark ol {
  margin-top: 0;
  padding-top: 0;
}

.calendar-notes-mark p {
  font-size: inherit;
  padding-right: 20px;
  margin-bottom: 20px;
}

.calendar-notes-mark ul {
  list-style-type: none;
  padding: 0;
}

.calendar-notes-mark ul li {
  margin-bottom: 6px;
}

.calendar-notes-mark ol {
  padding-left: 18px;
}

.calendar-notes a {
  text-decoration: none;
  color: #A6262E;
}

.calendar-notes a:visited {
  color: #812F00;
}

.calendar-notes a:hover {
  color: rgba(177, 93, 44, 1);
}

/* ラベル感のある更新日時スタイル */
.label-heading {
    border-left: 4px solid #A6262E;
    background-color: #fdfbf5; /* さらに少しだけ明るめの生成紙風カラー */
    padding: 0.5em 1em;
    margin-bottom: 1em;
    display: inline-block;
    font-weight: bold;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03); /* ほんのり影 */
  }
/* グレーlineのシンプルな更新日時スタイル */
.update-heading {
  font-size: 0.95em;
  color: #333;
  margin: 1.5em 0 1em 0;
  padding-left: 0.5em;
  border-left: 3px solid #ccc;
  line-height: 1.5;
}

/* ------------------------------
   Reservation Symbol Styles
------------------------------ */

.full {
  color: #000;
}

.number {
  color: #000;
  font-weight: bold;
}

.red-number {
  color: #A6262E;
  font-weight: bold;
}

.reservation-table td {
  vertical-align: top;
  padding: 8px;
}

.label-cell {
  text-align: center;
  width: 60px;
}

.content-cell {
  padding-left: 3%;
  vertical-align: top;
}
.reservation-table tr:last-child td {
    padding-bottom: 1em;
  }

/* ------------------------------
   Desktop Layout Adjustments
------------------------------ */
@media screen and (min-width: 1000px) {
  .calendar-week-box {
    width: 966px;
    display: flex;
  }
    .calendar-week-box2 {
    width: 966px;
    display: flex;
    height: 300px;
  }

  .calendar-day-box {
    width: 138px;
    margin: 0 auto;
  }

  .calendar-notes {
    width: 100%;
    margin-bottom: 80px;
  }

  /* Main Copy Styling (移植 from base.css) */
.main-copy {
  font-size: 1em;
  line-height: 1.6em;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  background-image: url(../image/common/main_copy_bg.jpg);
  margin-top: 20px;
  text-align: justify;
}
hr {
  height: 0px;
  border: none;
  border-top: 3px double #af272f;
}

  
}