@charset "utf-8";
/* form （base）********************************************************/
/* text */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="postal-code"],
input[type="street-address"],
input[type="organization"],
input[type="username"],
input[type="organization-title"],
textarea {
  vertical-align: middle;
  line-height: 70px;
  height: 70px;
  padding: 1px 1em;
  border: 0px solid #fff;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo,
    "sans-serif";
  font-size: 16px;
  color: #555;
  background: #f1f1f1;
  margin-bottom: 1.5em;
  box-sizing: border-box;
}
input.text_ss {
  width: 20% !important;
  min-width: 85px;
}
input.text_s {
  width: 50% !important;
  min-width: 150px;
}
input.text_m {
  width: 65% !important;
}
input.text_l {
  width: 90% !important;
}
input.text_xl {
  width: 100% !important;
}

/* textarea */
textarea {
  line-height: 1.5;
  font-family: "游ゴシック", "Lucida Sans Unicode", "Lucida Grande", "Arial",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif;
}
textarea.textarea_m {
  max-height: 380px;
  min-height: 200px;
  width: 100% !important;
  line-height: 1.5;
  padding: 2% 2%;
  box-sizing: border-box;
  background: #fff;
  color: #555;
  background: #f1f1f1;
}
textarea.textarea_s {
  min-height: 60px;
  width: 100% !important;
  line-height: 1.5;
  padding: 2% 2%;
  box-sizing: border-box;
  background: #fff;
  font-size: 0.9em;
}

/* select */
.selectdiv {
  position: relative;
  display: inline-block;
}
select::-ms-expand {
  display: none;
}

.selectdiv:after {
  content: "<>";
  font: 20px "Consolas", monospace;
  color: #3e3e3e;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  top: 21px;
  padding: 0 0 4px;
  border-bottom: 1px solid #999;
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: none;
  line-height: 70px;
  height: 70px;
  padding: 1px 4em 1px 1em;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo,
    "sans-serif";
  font-size: 16px;
  color: #555;
  background: #f1f1f1;
  margin-bottom: 1.5em;
  box-sizing: border-box;
  min-width: 250px;
}

/* label */
/* label {
  margin-right: 1em;
} */

/* radioBtn */
input[type="radio"] {
  display: none;
}
label.radio-design01 {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}
label.radio-design01::before,
label.radio-design01::after {
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
label.radio-design01::before {
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f3f3f3;
  border: 1px solid #ccc;
}
label.radio-design01:hover::before {
  background: #fff;
}
label.radio-design01::after {
  opacity: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #0a9f86;
  -webkit-transform: scale(2);
  transform: scale(2);
}
input[type="radio"]:checked + label.radio-design01::before {
  background: #fff;
  border: 1px solid #0a9f86;
}
input[type="radio"]:checked + label.radio-design01::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* radio */
.radio-001 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em 1em;
  border: none;
  margin: 0 0 1.5em;
}

.radio-001 label {
  display: flex;
  align-items: center;
  gap: 0 0.25em;
  position: relative;
  cursor: pointer;
}

.radio-001 label::before,
.radio-001 label:has(:checked)::after {
  border-radius: 50%;
  content: "";
}

.radio-001 label::before {
  width: 18px;
  height: 18px;
  background-color: #e6edf3;
}

.radio-001 label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #2589d0;
  animation: anim-radio-001 0.3s linear;
}

@keyframes anim-radio-001 {
  0% {
    box-shadow: 0 0 0 1px transparent;
  }
  50% {
    box-shadow: 0 0 0 10px #2589d033;
  }
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}

.radio-001 input {
  display: none;
}
/* radio */
/* checkbox */
input[type="checkbox"] {
  display: none;
}
label.checkbox-design01 {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0.25em 1.5em 0.25em 0;
}
label.checkbox-design01::before,
label.checkbox-design01::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
label.checkbox-design01::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
}
label.checkbox-design01::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #2cb1e9;
  border-bottom: 2px solid #2cb1e9;
  -webkit-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5);
}
label.checkbox-design01:hover::before {
  background: #fff;
}
input[type="checkbox"]:checked + label.checkbox-design01::before {
  background: #fff;
  border: 1px solid #2cb1e9;
}
input[type="checkbox"]:checked + label.checkbox-design01::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
/* btn */
input.submitStyleA[type="submit"],
input.submitStyleA[type="reset"],
input.submitStyleA[type="button"] {
  font-family: "游ゴシック", "Lucida Sans Unicode", "Lucida Grande", "Arial",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif;
  display: block;
  background: #1199bc;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: 70px;
  text-align: center;
  min-width: 300px;
  border: none;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
}
input.submitStyleA[type="submit"]:hover,
input.submitStyleA[type="reset"]:hover,
input.submitStyleA[type="button"]:hover {
  cursor: pointer;
  background: #289ff9;
  transition: 0.3s;
}

input.submitStyleB[type="submit"],
input.submitStyleA[type="reset"],
input.submitStyleA[type="button"] {
  background: #e0ff35;
  color: #0a9f86;
  height: 50px;
  text-align: center;
  min-width: 180px;
  border: none;
  margin: 0 10px;
  padding: 0;
}
input.submitStyleB[type="submit"]:hover,
input.submitStyleA[type="reset"]:hover,
input.submitStyleA[type="button"]:hover {
  cursor: pointer;
  background: #b2e023;
  transition: 0.5s;
}

.submitStyleA[type="submit"],
.submitStyleA[type="reset"],
.submitStyleA[type="button"] {
  background: #0a9f86;
  color: #fff;
  height: 50px;
  text-align: center;
  min-width: 180px;
  border: none;
  margin: 0 10px;
  padding: 0;
}
.submitStyleA[type="submit"]:hover,
.submitStyleA[type="reset"]:hover,
.submitStyleA[type="button"]:hover {
  cursor: pointer;
  background: #ccc;
  transition: 0.5s;
}

.must {
  display: block;
  background-color: #054268;
  border: solid 2px #054268;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #fff;
  float: left;
  margin: 0px 5px 0 0;
  border-radius: 2px;
}

/* form （customize）********************************************************/
div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(_images/mfp_loading.gif);
}
div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}
div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}
#mfp_hidden {
  display: none;
}
.mfp_err {
  color: #e30d11 !important;
  margin: 0 0 1em 0;
}
div.formBox {
  width: 90%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}
div.formNotice {
  width: 100%;
  height: auto;
  border-bottom: dotted 1px #ccc;
  padding: 0.5em 0;
  box-sizing: border-box;
}
div.formNotice p {
  line-height: 1.5;
}
div.formInnerBox {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 75px auto;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}
dt.FormDt {
  font-weight: bold;
  padding: 1em 0;
}
.requiredLabel {
  border: solid 1px #d32c32;
  margin: 0 0 0 9px;
  font-size: 13px;
  color: #d32c32;
  padding: 2px 10px;
}
div.PolicyBox {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1.5em 0 4.5em;
  box-sizing: border-box;
}
div.PolicyBox p {
  font-size: 16px;
}
div.PolicyBox a {
  margin: 0 0.25em;
  color: rgb(32, 32, 32);
  border-bottom: solid 1px rgb(32, 32, 32);
}
.policy {
  font-size: 1em;
  line-height: 1.5;
  width: 90%;
  margin: 4em auto 0;
}
::placeholder {
  color: #bbb;
}
/* announce */
.formAnnounce {
  font-size: 0.9em;
  margin: 0.7em 0 0;
}
.textAreaDt {
  margin-top: 1.5em;
}
.textAreaDt span {
  font-weight: normal;
  display: inline-block;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  /* form （base）********************************************************/
  /* text */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="postal-code"],
  input[type="street-address"],
  input[type="organization"],
  input[type="username"],
  input[type="organization-title"],
  textarea {
    line-height: 50px;
    height: 50px;
    font-size: 90%;
  }
  input.text_ss {
    width: 39% !important;
  }
  input.text_s {
    width: 55% !important;
  }
  input.text_m {
    width: 75% !important;
  }
  input.text_l {
    width: 90% !important;
  }
  input.text_xl {
    width: 100% !important;
  }
  /* textarea */
  textarea.chatArea {
    font-size: 0.9em;
  }
  input.submitStyleA[type="submit"],
  input.submitStyleA[type="reset"],
  input.submitStyleA[type="button"] {
    min-width: 100%;
    padding: 0 11px;
  }
  /* select */
  .selectdiv:after {
    top: 12px;
  }
  .selectdiv select {
    line-height: 50px;
    height: 50px;
    font-size: 90%;
  }
  /* radio */
  .radio-001 {
    gap: 0.25rem 0;
  }
  .radio-001 label {
    width: 100%;
    font-size: 0.9rem;
    margin: 0.4rem 0 0;
  }
  /* form （customize）********************************************************/
  div.formBox {
    width: 100%;
  }
  div.formNotice {
    margin: 0 auto;
  }
  div.formInnerBox {
    margin: 35px auto;
    letter-spacing: 0.05em;
  }
  dt.FormDt {
    font-weight: bold;
    padding: 0.5em 0;
    font-size: 0.9em;
  }
  .requiredLabel {
    margin: 0 0 0 10px;
    font-size: 0.8em;
    padding: 2px 15px;
  }
  div.PolicyBox {
    margin: 1.5em 0 3em;
  }
  div.PolicyBox p {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 480px) {
  /* form （base）********************************************************/
  textarea.contact-textarea {
    min-height: 200px;
    width: 96%;
    line-height: 1.5;
    padding: 2% 2%;
  }
  textarea.contact-textarea-s {
    min-height: 70px;
    width: 96%;
    line-height: 1.5;
    padding: 2% 2%;
  }
  textarea.report-textarea {
    min-height: 200px;
    min-width: 96%;
    width: 96%;
    line-height: 1.5;
    padding: 2% 2%;
  }
  textarea.message-textarea {
    min-height: 5em;
    min-width: 96%;
    width: 96%;
    line-height: 1.5;
    padding: 2% 2%;
  }
  textarea.regist-textarea {
    min-height: 200px;
    min-width: 96%;
    width: 96%;
    line-height: 1.5;
    padding: 2% 2%;
  }
}
