@charset "UTF-8";

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; /*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  width: 80%;
  font-size: 1.6rem;
  margin: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #60c5ba;
  border: 3px solid #60c5ba;
  border-radius: 0;
  background: #f2f2f2;
}

a.btn:hover {
  color: #fff;
  background: #60c5ba;
  opacity: 1;
}

.mass .btn,
.mass a.btn,
.mass button.btn {
  color: #f3969a;
  border: 3px solid #f3969a;
  background: #f2f2f2;
}

.mass a.btn:hover {
  color: #fff;
  background: #f3969a;
  opacity: 1;
}

.top_img h2 {
  margin: 0 auto 100px;
}

.top_img h2 img {
  width: 100%;
}

.top_img h2::before,
.top_img h2::after {
  content: none;
}

.list_wrap {
  list-style: none; /* デフォルトのアイコンを消す */
  counter-reset: li_count; /* カウンタをセット */
  margin: 0; /* デフォルト指定上書き */
  padding: 0; /* デフォルト指定上書き */
  text-align: left;
}

.event {
  padding: 1rem; /* 余白指定 */
}

.event:before {
  counter-increment: li_count; /* カウンタの値を計算していく */
  content: counter(li_count) "."; /* 数字出力 */
  color: #60c5ba; /* 文字色指定 */
  margin-right: 1rem; /* 余白指定 */
  font-size: 1.3rem;
  font-weight: bold;
}

.caution {
  color: #60c5ba;
  margin-bottom: 2rem;
}

/* カレンダー */
.cal {
  text-align: center;
}

.cal img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 5rem 0;
}
