@charset "utf-8";
/*▼cssリセット▼*/
* {
  box-sizing: border-box;
  letter-spacing: 0.5px;
}
html{
  height: 100%;
}
body{
  height: calc(100% - 110px);
}
body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, p, b, s, small, menu, mark {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
  -webkit-text-size-adjust:none;
  word-wrap: break-word;
  background: none;
  color: #333;
  line-height: 1.6;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", Meiryo, Osaka, "MS PGothic", sans-serif;
}
span, dfn {
  margin: 0;
  padding: 0;
  font-style: normal;
}
input, button, textarea, select {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  vertical-align: middle;
  box-shadow: none;
  box-sizing: border-box;
  border-radius: 0;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", Meiryo, Osaka, "MS PGothic", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  color: #333;
}
button:focus,
textarea:focus,
select:focus,
input:focus,
a:focus{
  outline: 0;
}
input::-ms-reveal,
input::-ms-clear {
  visibility:hidden
}
select {
  color: inherit;
}
select::-ms-expand {
  display: none;
}
textarea {
  resize: none;
}
::-webkit-input-placeholder {
  color: #b3b3b3;
}
::-moz-placeholder {
  color: #b3b3b3;
}
:-ms-input-placeholder {
  color: #b3b3b3;
}
button {
  box-shadow: none;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}
li {
  list-style-type: none;
  list-style-position: inside;
}
a {
  text-decoration: none;
  cursor: pointer;
}
table {
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
}
th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
main, section, article, aside, hgroup, header, footer, nav, figure, figcaption, summary, time, address {
  display: block;
  font-style: normal;
  margin: 0;
  padding: 0;
}
span.error{
  color: red;
  margin-top: 5px;
  display: block;
  font-size: 14px;
}
button,a{
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  box-sizing: border-box;
}
input,textarea{
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 1.5;
}
input {
  padding: 7px 15px;
  line-height: 1;
}
.select select{
  width: 135%;
  height: 36px;
  padding: 0 40px 0 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.select{
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border: solid 1px #ddd;
  background: #fff url(../img/common/arrow.png) right 15px center no-repeat;
  background-size: 10px;
  box-sizing: border-box;
  margin: 0;
}
/*▲cssリセット▲*/
/* フォームボタン系（contact form 7用） */
.wpcf7-list-item {
  margin: 0 2em 0 0!important;
}
.wpcf7 .ajax-loader {
  display: none!important;
}
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
}
.checkbox .js-error::before,
.checkbox .js-error::after {
  display: none;
}
.checkbox .js-error {
  padding: 0;
  text-align: center;
}
.checkbox input + span,
.radio input + span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  padding: 2px 0 2px 35px;
  font-size: 16px;
}
.checkbox input + span::before,
.checkbox input + span::after,
.radio input + span::before,
.radio input + span::after {
  position: absolute;
  content: '';
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.checkbox input + span::before,
.radio input + span::before {
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  background: #f0f0f0;
  box-sizing: border-box;
}
.checkbox input + span::after {
  opacity: 0;
  top: 50%;
  left: 4px;
  width: 13px;
  height: 6px;
  margin-top: -7px;
  border-left: solid 3px #fff;
  border-bottom: solid 3px #fff;
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  -o-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
.checkbox input[type="checkbox"]:checked + span::before {
  border: solid 1px #0070e8;
  background: #0070e8;
}
.checkbox input[type="checkbox"]:checked + span::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  -o-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
.radio input + span::before {
  border-radius: 50%;
  cursor: pointer;
}
.radio input + span::after {
  opacity: 0;
  top: 50%;
  left: 7px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #41b55c;
}
.radio input[type="radio"]:checked + span::after {
  opacity: 1;
}
/* .radio input[type="radio"]:checked + span::before {
  border: solid 1px #0070e8;
  background: #0070e8;
} */
a{
  color: #333;
  cursor: pointer;
}
.kome{
  text-indent: -1em;
  padding-left: 1em;
}
.kome:before{
  content: "※";
}

/* スマホサイズ------------------------------- */
@media screen and (max-width:767px) {
.checkbox input + span,
.radio input + span,
input,
textarea {
  font-size: 14px;
}


}