@charset "utf-8";

body {
  box-sizing: border-box;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", YuMincho,
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "リュウミン R-KL", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 15px;
  color: #525263;
  line-height: 1.8;
  letter-spacing: 0.2em;
  background: #fff;
}

body * {
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}
/* responsive CSS */

@media only screen and (max-width: 519px) {
  body {
    font-size: 14px;
  }
}
/* Bootstrapに設定されているfocusの青枠を削除 */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
.form-inline .form-control {
  width: 100%;
}
input.form-control.user_input-half {
  width: 50%;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 1rem;
}

p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

h2 + hr {
  margin-top: 0.5rem;
}

a {
  color: #141414;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: #141414;
  opacity: 0.6;
}

ol {
  margin: 0;
}
ul {
  list-style-type: none;
  padding: 0;
}

/* BootstrapCSSに追加 */
.mt-6 {
  margin-top: 6rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.my-6 {
  margin: 6rem 0;
}
.pt-6 {
  padding-top: 6rem;
}
.pt-8 {
  padding-top: 8rem;
}
.pb-6 {
  padding-bottom: 6rem;
}
.pagination {
  justify-content: center;
}
ul.pagination li:first-child a,
ul.pagination li:last-child a {
  width: 80px;
  border-radius: 0;
}
ul.pagination li {
  display: inline-block;
  border: solid 1px #ddd;
  float: none;
  width: 3.125rem;
  height: 2.625rem;
  margin: 0 0.125rem;
  padding: 0;
  text-align: center;
  border-radius: 0;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: bold;
}
.navbar-toggler{
  border: none;
}
.navbar-toggler:active{
  outline: none;
}
/* recaptchav2用 */
.g-recaptcha {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 300px;
}



input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
}

input[type="radio"] {
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
}

input[type="number"] {
  font-size: 1.2rem;
  width: 4rem;
  height: 2.4rem;
}

