@charset "utf-8";
html[lang="ja"] {
	font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo',sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
body {
  font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo',sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}

/*------------------------------
	改行
-------------------------------*/
/* スマホだけ改行 */
.br-sp {
    display: none;
}

@media (max-width: 768px) {
    .br-sp {
        display: block;
    }
}

/* PCだけ改行 */
.br-pc {
    display: block;
    
}

@media (max-width: 768px) {
    .br-pc {
        display: none;
    }
}


/*------------------------------
	フォーム
-------------------------------*/
.form-input,
.form-textarea{
  box-sizing: border-box;
  width: 100%;
  padding: 8px 10px;
  margin: 5px 0;
  border: solid 1px #999;
  background-color: #fff;
  outline: 0;
  transition: 0.3s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus{
  border: 1px solid #f4a000;
}


/* ラジオボタン */
.radio-wrap {}
 
.radio-wrap label {
  display: block;
  margin-top: 10px;
}
.radio-wrap label input[type="radio"] {
  opacity:0;
  appearance: none;
  position: absolute;
}
 
.radio-wrap .text {
  display: inline-block;
  position: relative;
  padding-left: 26px;
}
 
.radio-wrap label .text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  background: #fff;
  content: "";
  border-radius: 50%;
}
 
.radio-wrap label .text::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000;
  content: "";
  opacity: 0;
  transition: all 0.3s;
}
 
.radio-wrap label input:focus + span::before {
  box-shadow: 0 0 4px #000;
}
 
.radio-wrap label input:checked + span::after {
  opacity: 1;
}




/* セレクトボタン */
.form-select {
  display: inline-block;
  position: relative;
  border: 1px solid #999;
  vertical-align: middle;
}
.form-select select {
  appearance: none;
  padding: 8px 10px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: #fff;
  cursor: pointer;
}
.form-select::before {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 10px 5px 0 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form-select:focus {
  border: 1px solid #f4a000;
}


/* チェックボックス */
.checkbox {
  margin: auto;
}
 
.checkbox label { }
 
.checkbox input[type="checkbox"] {
  opacity:0;
  appearance: none;
  position: absolute;
}
 
.checkbox .text {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  line-height: 2.2;
}
 
.checkbox .text::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
 
.checkbox .text::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  opacity: 0;
  transition: all 0.3s;
}
 
.checkbox input:focus + span::before {
  box-shadow: 0 0 4px #000;
}
 
.checkbox input:checked + span::after {
  opacity: 1;
}

.checkbox a{text-decoration: underline;}


/* ボタン */
.form_btn{
  margin:30px auto;
}
.form_btn input[type=submit],
.form_btn input[type=button]
{
  display: block;
  width: 320px;
  margin: auto;
  background-color: #2eb6aa;
  color: #fff;
  font-size:22px;
  padding: 10px;
  border: 3px solid #fff;
  transition: 0.5s all;
  cursor: pointer;
}
 
.form_btn input[type=submit]:hover,
.form_btn input[type=button]:hover{
  background-color: #f0eb45;
  color: #000;
}








