@charset "UTF-8";
.web_font01 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: contain;";
}

.bg_dot {
  display: block;
  content: "";
  background: url("../images/bg_dot.png") center repeat;
  background-size: 6px 9px;
  position: absolute;
  z-index: 20;
  opacity: 0.4;
}

@media screen and (max-width: 736px) {
  .bg_dot {
    background: url("../images/bg_dot.png") center repeat;
    background-size: 4px 6px;
  }
}
.error-message {
  color: #c00;
}

/*------------------------------------------------------------
input
------------------------------------------------------------*/
fieldset {
  border: medium none !important;
  min-width: 100%;
  width: 100%;
}
fieldset.size01 {
  width: 75px;
  min-width: auto;
}
fieldset.size02 {
  width: 300px;
  min-width: auto;
}
fieldset.size03 {
  width: 350px;
  min-width: auto;
}
fieldset.size04 {
  width: 400px;
  min-width: auto;
}

input[type=text], input[type=email], input[type=tel], input[type=url], textarea {
  width: 100%;
  border: none;
  height: 25px;
  padding: 0 2%;
  border-width: 0;
  border-radius: 0;
  font-size: 1.6rem;
  background: none;
  box-sizing: border-box;
  -webkit-appearance: none;
}
input[type=text].size_m, input[type=email].size_m, input[type=tel].size_m, input[type=url].size_m, textarea.size_m {
  width: 26%;
}

input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=url]:focus, textarea:focus {
  border: none;
  outline: 0;
}

textarea {
  height: 250px;
  padding: 2%;
  border: 1px solid #000;
}
textarea:-moz-read-only {
  color: #666;
  cursor: not-allowed;
  font-size: 2rem;
}
textarea:read-only {
  color: #666;
  cursor: not-allowed;
  font-size: 2rem;
}

label, input[type=checkbox] {
  cursor: pointer;
}

button[type=submit], input[type=submit], input[type=button] {
  cursor: pointer;
  width: 160px;
  height: 50px;
  border: 4px solid #000;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 0;
  position: relative;
  color: #333;
  background: none;
  display: block;
  -webkit-appearance: none;
  font-size: 2.2rem;
  margin: 0 auto;
}
button[type=submit]:hover, input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.7;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #CCC;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CCC;
}

input::placeholder, textarea::placeholder {
  color: #CCC;
}

/* IE */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CCC;
}

/* Edge */
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CCC;
}

@media screen and (max-width: 736px) {
  fieldset.size01 {
    width: 37px;
  }
  fieldset.size02 {
    width: 162px;
  }
  fieldset.size03 {
    width: 175px;
  }
  fieldset.size04 {
    width: 100%;
  }
  input[type=text], input[type=email], input[type=tel], input[type=url], textarea {
    height: 20px;
    padding: 0 2%;
    font-size: 1.3rem;
  }
  textarea {
    height: 130px;
    padding: 3%;
  }
  label, input[type=checkbox] {
    cursor: pointer;
  }
  .submit_btn {
    margin: 0 auto;
    width: 180px;
    height: 50px;
    position: relative;
    cursor: pointer;
  }
  .submit_btn:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 1px;
    right: 0;
    top: 50%;
    background: #FFF;
    transition: 0.3s all;
    opacity: 0.7;
    z-index: 50;
  }
  .submit_btn:hover:before {
    width: 0;
  }
  button[type=submit], input[type=submit], input[type=button] {
    width: 80px;
    height: 25px;
    font-size: 1.3rem;
    border: 2px solid #000;
  }
  button[type=submit]:hover, input[type=submit]:hover, input[type=button]:hover {
    opacity: 0.7;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 1.1rem;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 1.1rem;
  }
  input::placeholder, textarea::placeholder {
    font-size: 1.1rem;
  }
  /* IE */
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 1.1rem;
  }
  /* Edge */
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 1.1rem;
  }
}
/*------------------------------------------------------------
//セレクトボックス
------------------------------------------------------------*/
.select {
  text-align: center;
  width: 100%;
  position: relative;
}
.select::before {
  position: absolute;
  top: 0.8em;
  right: 0.4em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  z-index: 40;
}
.select select {
  width: 100%;
  z-index: 20;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 2rem;
  position: relative;
  border: 1px solid #666666;
  border-radius: 0;
  background: #ffffff;
  padding: 8px 18px 8px 8px;
  color: #666666;
}
.select select::-ms-expand {
  display: none;
}

@media screen and (max-width: 736px) {
  .select {
    letter-spacing: 0.08em;
  }
  .select::before {
    top: 12px;
    right: 0.4em;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #666666;
  }
  .select select {
    padding: 5px 12px 5px 2px;
    font-size: 1.1rem;
  }
}
/*------------------------------------------------------------
//ラジオボタン
------------------------------------------------------------*/
.radio-input {
  opacity: 0;
  margin-left: -20px;
}
.radio-input + label {
  padding-left: 35px;
  position: relative;
  letter-spacing: 0.1em;
}
.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  width: 20px;
  height: 20px;
  border: 1px solid #666666;
  border-radius: 50%;
  box-sizing: border-box;
}
.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #369;
  border-radius: 50%;
  box-sizing: border-box;
}

@media screen and (max-width: 736px) {
  .radio-input + label {
    padding-left: 17px;
    letter-spacing: 0.08em;
  }
  .radio-input + label::before {
    margin-top: -7px;
    width: 12px;
    height: 12px;
  }
  .radio-input:checked + label::after {
    margin-top: -4px;
    left: 3px;
    width: 6px;
    height: 6px;
  }
}
/*------------------------------------------------------------
チェックボックス
------------------------------------------------------------*/
.checkbox-input {
  opacity: 0;
  margin: 0;
}
.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../form/images/icon_check.png") left top no-repeat;
  background-size: 27px 22px;
  width: 27px;
  height: 22px;
  top: 50%;
  left: 2px;
  margin-top: -10px;
}

.checkbox-parts {
  padding-left: 50px;
  position: relative;
  margin-right: 20px;
}
.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #666666;
  border-radius: 0;
}

@media screen and (max-width: 736px) {
  .checkbox-input:checked + .checkbox-parts::after {
    background: url("../form/images/icon_check.png") left top no-repeat;
    background-size: 13px 11px;
    width: 13px;
    height: 11px;
    left: 1px;
    margin-top: -7px;
  }
  .checkbox-parts {
    padding-left: 25px;
    margin-right: 10px;
  }
  .checkbox-parts::before {
    margin-top: -9px;
    width: 13px;
    height: 13px;
    border: 1px solid #666666;
  }
}