@charset "UTF-8";

 /*装飾関係*/
 .sat_blue {
  /*color:#808080;*/
  color: #6B95C4;
}
.sun_red {
  color: #cc0c0c;
}
.link__shop__color a {
  color: initial;
  text-decoration: underline;
  font-size: 12px;
  color: #232323;
  padding-bottom: 5px;
}
/*全体*/
.content_index {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
/*カレンダー*/
.calendar {
  width: 55%;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.calendar:last-child {
  width: 55%;
  margin: 0 auto;
  padding: 10px 0 50px;
}
.calendar__flex {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #E0E0E0;
  position: relative;
  /* 擬似要素のために必要 */
  /*padding-left: 20px;  丸のスペース */
}
.calendar__flex.vertical-line-box:has(.flex__conten__event ul li:nth-child(2)) {
  align-items: flex-start;
}
.calendar__flex::after {
  /*content: ""; 横線の丸の表示権限*/
  position: absolute;
  left: 0;
  bottom: -5px;
  /* 下線にかぶせる調整値。必要に応じて調整 */
  width: 7px;
  height: 7px;
  background-color: white;
  border: 1px solid #232323;
  border-radius: 50%;
}
.empty-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #E0E0E0;
  position: relative;
  padding: 15px 0;
  background-color: #f6f6f6;
}
.empty-content::after {
  /*content: "";/*イベントなしの横丸の表示権限*/
  position: absolute;
  left: 0;
  bottom: -5px;
  /* 下線にかぶせる調整値。必要に応じて調整 */
  width: 7px;
  height: 7px;
  background-color: white;
  border: 1px solid #232323;
  border-radius: 50%;
}
.bg_color_ccc {
  width: 100%;
  padding: 5px 0;
  background-color: #e9e9e9;
  z-index: 0;
}
.flex__conten__date {
  white-space: nowrap;
  /* テキスト折り返し防止（任意） */
  margin: 0 auto;
  margin-right: 1em;
  margin-left: 1em;
  /* 日付と内容の間に余白を追加（任意） */
  width: 75px;
}
.flex__conten__event {
  flex: 1;
  /* 残りのスペースすべてを使う */
  text-align: left;
}
/* タグ */
.content__event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
}
/*縦線。*/
/*縦線。*/
.vertical-line-box {
  position: relative;
}
.vertical-line-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 107px;
  /*線の位置　ここ修正*/
  /* 縦線の位置 */
  width: 1px;
  background-color: #E0E0E0;
  top: 54px;
  /* ← 上に22px余白 */
  bottom: 30px;
  /* ← 下に22px余白 */
}
.vertical-line-box__empty {
  position: relative;
}
.vertical-line-box__empty::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 107px;
  /*線の位置　ここ修正*/
  /* 縦線の位置 */
  width: 1px;
  background-color: #E0E0E0;
  top: 30px;
  /* ← 上に22px余白 */
  bottom: 30px;
  /* ← 下に22px余白 */
}
/*liの丸*/
/*liの丸*/
.event_content {
  list-style: none;
  /* デフォルトのマーカーを消す */
  padding-left: 0;
}
.event_content li {
  position: relative;
  padding-left: 60px;
}
.event_content li:first-child {
  padding-top: 40px;
  padding-bottom: 40px;
}
.event_content li:not(:first-child) {
  padding-bottom: 40px;
}
.event_content li:only-child {
  padding-top: 40px;
  padding-bottom: 40px;
}
.event_content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  /* 丸のy軸を調整 */
  width: 7px;
  height: 7px;
  border: 1px solid #999;
  /* 外枠だけの白丸 */
  border-radius: 50%;
  background-color: white;
  /* 白抜きにしたいなら */
}
.event_content li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45px;
  /* 丸のy軸を調整 */
  width: 7px;
  height: 7px;
  border: 1px solid #999;
  /* 外枠だけの白丸 */
  border-radius: 50%;
  background-color: white;
  /* 白抜きにしたいなら */
}
/*テキスト関係*/
/*テキスト関係*/
/*テキスト関係*/
.title__h1 {
  margin: 0 auto;
  padding: 0;
  padding: 30px 0 0;
}
.title__month {
  font-size: 50px;
  margin: 0;
  padding: 0;
  padding: 30px 0 0 0;
}
.text__date {
  font-size: 32px;
  /*30*/
  margin: 0;
  font-weight: bold;
}
.text__weekday {
  font-size: 14px;
  /*24*/
  margin: 0;
  font-weight: bold;
}
.event_content li {
  padding-bottom: 10px;
}
.event_content li p {
  font-size: 16px;
  margin: 0;
  /*display: inline;テキスト分だけにする。余白をなくす*/
}
.title__event {
  font-size: 20px !important;
  font-weight: bold;
  margin: 0;
}
.title__event a {
  border-bottom: solid 1px black;
}
.inner__event-tag {
  /*background-color: #f6f6f6;*/
  background-color: #142635;
  padding: 3.3px 12px 2px;
  border-radius: 12px;
  font-size: 12px;
  /*color: rgb(0, 0, 0);*/
  color: #ffffff;
  font-weight: 500;
  margin-left: -2px;
  height: 25px;
}
.calendar__flex .flex__conten__date {
  padding-top: 37px;
  padding-bottom: 37px;
}
.calendar__flex {
  position: relative;
  /* sticky の基準となる親要素 */
  overflow: visible;
  /* コンテンツ内でスクロールを可能にする */
}
.flex__conten__date {
  position: sticky;
  top: 50px;
  /* コンテンツの上部で固定 */
  z-index: 10;
}
@media screen and (max-width:1024px) {
  .calendar {
    width: 90%;
    margin: 0 auto;
  }
  .calendar,
  .calendar:last-child {
    width: 90%;
    margin: 0 auto;
  }
  /*これ上のと別に指定しないと、翌月分のがwidht反応しない*/
  .flex__conten__date {
    width: 75px;
  }
  /*縦線*/
  .vertical-line-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 107px;
    /*線の位置　ここ修正*/
    /* 縦線の位置 */
    width: 1px;
    background-color: #E0E0E0;
    top: 50px;
    /* ← 上に22px余白 */
    bottom: 40px;
    /* ← 下に22px余白 */
  }
  /*縦線*/
  .vertical-line-box__empty::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 107px;
    /*線の位置　ここ修正*/
    /* 縦線の位置 */
    width: 1px;
    background-color: #E0E0E0;
    top: 50px;
    /* ← 上に22px余白 */
    bottom: 40px;
    /* ← 下に22px余白 */
  }
  /*テキスト関係*/
  .title__h1 {
    margin: 0;
    padding: 0;
    padding: 28px 0 0;
    font-size: 28px;
  }
  .title__month {
    font-size: 34px;
    margin: 0;
    padding: 0;
    padding: 30px 0 0 0;
  }
  .text__date {
    font-size: 20px;
  }
  .text__weekday {
    font-size: 12px;
  }
  .title__event {
    font-size: 16px !important;
  }
  .event_content li p {
    font-size: 14px;
  }
}
@media screen and (max-width:640px) {
  .flex__conten__date {
    width: 30px;
  }
  /*縦線*/
  .vertical-line-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 62px;
    /*線の位置　ここ修正*/
    /* 縦線の位置 */
    width: 1px;
    background-color: #E0E0E0;
    top: 50px;
    /* ← 上に22px余白 */
    bottom: 40px;
    /* ← 下に22px余白 */
  }
  .vertical-line-box__empty::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 62px;
    /*線の位置　ここ修正*/
    /* 縦線の位置 */
    width: 1px;
    background-color: #E0E0E0;
    top: 50px;
    /* ← 上に22px余白 */
    bottom: 40px;
    /* ← 下に22px余白 */
  }
  .title__h1 {
    margin: 0;
    padding: 0;
    padding: 28px 0 0;
    font-size: 20px;
  }
  .title__month {
    padding: 15px 0 0 0;
    font-size: 34px;
  }
  .event_content li {
    padding-left: 30px;
  }
  .calendar__flex {
    align-items: flex-start;
  }
  .event_content li:first-child::before {
    top: 48px;
    /* 丸のy軸を調整 */
  }
  .title__h1__sub {
    display: block;
    margin: 6px 0 0;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-family: Roboto;
    color: #a6a6a6;
  }
}
.title__month.is-second {
  padding: 150px 0 0;
}