/*countdown*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
.timer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: sticky;
  /*position: fixed;*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  }
.timer .countdown__shoulder {
  font-size: clamp(17px, 4vw, 29px);
  letter-spacing: 0.1rem;
  font-weight: bold;
  background: #69001e;
  color: #fff;
  text-align: center;
  padding: .3em 0 .2em; }
.timer .countdown {
  text-align: center;
  background-color: #860037;
  color: #FFF;
  padding: calc(5 / 750 * 100%) calc(15 / 750 * 100%) calc(15 / 750 * 100%); }
  .timer .countdown__timer {
    font-size: clamp(20px, 6vw, 45px);
    line-height: 1; }
    .timer .countdown__timer .num {
      font-family: "Shippori Mincho", serif;
      padding: 0 .05em;
      font-size: 160%; }
    .timer .countdown__timer .num_millisec {
      font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
      text-align: left;
      display: inline-block;
      font-size: 120%; }
