body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background-color: #F0F4F4;
  color: #0B342D;
  font-size: 16px;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

.inner {
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 749px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* headerのブレイクポイント */
#header .__pc {
  display: block;
}
#header .__sp {
  display: none;
}
@media screen and (max-width: 999px) {
  #header .__pc {
    display: none;
  }
  #header .__sp {
    display: block;
  }
}

.__pc {
  display: block;
}
.__sp {
  display: none;
}
@media screen and (max-width: 749px) {
  .__pc {
    display: none;
  }
  .__sp {
    display: block;
  }
}

/* button */
.btn-green {
  display: block;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: #1F6256;
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.btn-green:hover {
  background: #227D51;
}
a.btn-green:hover {
  opacity: 1;
}
.btn-green:disabled {
  cursor: default;
  background: #C2CECC;
}
@media only screen and (max-width: 749px) {
  .btn-green {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
}

.btn-yellow {
  display: block;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #1F6256;
  background: #E0F0BE;
  border-radius: 10px;
  transition: all 0.3s;
  width: 340px;
  height: 70px;
  line-height: 70px;
  position: relative;
}
.btn-yellow img {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn-yellow:hover {
  background: rgba(224, 240, 190, 0.7);
}
@media only screen and (max-width: 749px) {
  .btn-yellow {
    width: 100%;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
  }
}

.btn-white {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #1F6256;
  background: #FFFFFF;
  border: 1px solid #1F6256;
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.btn-white:hover {
  opacity: 0.7;
}

.btn-red {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #D2004C;
  background: #FFFFFF;
  border: 1px solid #D2004C;
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.btn-red:hover {
  opacity: 0.7;
}

.btn-lightgreen {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #1F6256;
  background: #F0F4F4;
  border: 1px solid #1F6256;
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  height: 70px;
}
.btn-lightgreen:hover {
  opacity: 0.7;
}

/* text link */
.text-link {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-decoration-line: underline;
  color: #08A9CC;
}

/* 下層ページ ヘッダー分下げる */
main {
  padding-top: 140px;
}
@media only screen and (max-width: 749px) {
  main {
    padding-top: 92px;
  }
}
main.top {
  padding-top: 0;
}