@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
/*/
  font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
/*/
/*/
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  /*/
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.75;
  text-align: center;
}
body,
input,textarea{
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}

h2,h3,h4{
  font-weight: 500;
}

.module-fadein {
	opacity: 0;
	transition: 0.8s;
	position: relative;
	bottom: -50px;
}

.module-fadein.is-active {
	opacity: 1;
	bottom: 0;
}