@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;700&family=Noto+Sans+JP:wght@300;400;700&family=Noto+Serif+JP:wght@300;400;700&display=swap');

html {
  /* ページ内スクロールをスムーズにする*/
  scroll-behavior: smooth;
  /*  フォントの色  */
  color: #333333;
  /* 横にはみ出すと非表示 */
  /* overflow-x: hidden; */
  /* /////"UD新ゴNT M" は お名前ドットコム を利用"UD新ゴNT M","UD新ゴコンデンス 90 Ｍ",*/
  font-family: "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", 'Noto Sans JP', "Arial", "Yu Gothic", "Roboto", "Droid Sans", "YuGothic", "Verdana", "Meiryo", "M+ 1p", "sans-serif";
  /* フォントのサイズは1rem=10～16pxでレスポンシブ  */
  font-size: calc(100vw / 70);
  line-height: 2;
}

@media screen and (min-width:2100px) {
  html {
    font-size: calc(2100px / 70);
    line-height: 2;
  }
}

@media screen and (max-width:700px) {
  html {
    font-size: calc(700px / 70);
    line-height: 2;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0 0;
}

html {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.header {
  position: relative;
  width: 100%;
  height: 2rem;
  padding: 8px 2rem 8px 2rem;
  background-color: #AEEA00;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0px 3px 3px 0px #a8a8a8cc;
  z-index: 2;
}

#count_meter {
  width: 6px;
  height: 6px;
  background-color: #ea7d00;
  border-radius: 3px;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.footer {
  position: relative;
  width: 100%;
  height: 2rem;
  padding: 6px 1rem 6px 1rem;
  background-color: #AEEA00;
  line-height: 1;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px -3px 3px 0px #a8a8a8cc;
  z-index: 2;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.mainspace {
  position: relative;
  width: 100%;
  height: calc(100% - 4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  background-image:
    repeating-linear-gradient(-45deg,
      #dddddd, #dddddd 7.5px,
      transparent 0, transparent 15px);
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.fl_row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fl_col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fl_wrap {
  flex-wrap: wrap;
}

.fl_row.left,
.fl_col.top {
  justify-content: flex-start;
}

.fl_row.right,
.fl_col.bottom {
  justify-content: flex-end;
}

.fl_row.top,
.fl_col.left {
  align-items: flex-start;
}

.fl_row.bottom,
.fl_col.right {
  align-items: flex-end;
}

.fl_row.x_stretch,
.fl_col.y_stretch {
  justify-content: stretch;
}

.fl_row.y_stretch,
.fl_col.x_stretch {
  align-items: stretch;
}

.pad_2 {
  padding: 2px;
}

.pad_3 {
  padding: 3px;
}

.pad_4 {
  padding: 4px;
}

.pad_5 {
  padding: 5px;
}

.mar_2 {
  margin: 2px;
}

.mar_3 {
  margin: 3px;
}

.mar_5 {
  margin: 5px;
}

.bttn {
  text-decoration: none;
  transition: all ease 300ms;
  cursor: pointer;
}

.bttn.flm {
  border-radius: 4px;
  border: 1px solid;
}

.posi_re {
  position: relative;
}

.posi_ab {
  position: absolute;
}

.rad_maru {
  border-radius: 50%;
}

.f_gosi {
  font-family: 'Noto Sans JP';
}

.f_mint {
  font-family: 'Noto Serif JP';
}

.f_marug {
  font-family: 'M PLUS Rounded 1c';
}