@charset "utf-8";
/*----------------------------
[注意]
PC/スマホ表示は、1つのHTMLファイルに、
部分的にsp.cssに追記することで
表示させています。

基本フォントサイズ：PC 0.16rem(16px)/SP 0.13rem(13px)
--------------------------- */

/*----------------
フォーム
・お問い合わせ
・保険資料請求
----------------*/
.form_img{
  background: #92a192;
  /*background: linear-gradient(170deg, #92a192 0%, #cbd6cb 100%);*/
}

/*override*/
h2.h_txt{
  padding-top: 30px;
  padding-bottom: 30px;
}
h2.h_txt .tl{
  font-size: 0.34rem;
  font-weight: normal;
  line-height: 0.44rem;
  text-shadow: 1px 1px 2px #2e3b2e;
}

/*override*/
.main h5{
  color: #fff;
  background-color: #5c695c;
  margin-top: 0.1rem;
  margin-bottom: 0rem;
}
.main .inner p, 
.main .inner ul{
  margin-left: 0;
}

/*見出しにlabel含む場合、見出しの文字サイズに揃える*/
.main h3 label{
  font-size: 0.26rem;
}
.main h4 label{
  font-size: 0.2rem;
}
.main h5 label{
  font-size: 0.18rem;
}


/*------------
フォームのステップ表示*/
.form_step{
  text-align: center;
  width: 300px;
  margin: 60px auto;
  display: block;
  position: relative;
}
.form_step::before{
  content: "";
  display: block;
  width: 200px;
  height: 0;
  border-top: 4px dotted #92a192;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
/*pc*/
@media (min-width: 321px){
  .form_step + p{
    text-align: center;
  }
}

.form_step div{
  text-align: center;
  width: 33%;
  display: inline-block;
  float: left;
}
.form_step div span{
  color: #92a192;
  font-size: 0.13rem;
  display: block;
  padding-top: 43px;/*38+5*/
  position: relative;
}
.form_step div span:before{
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 4px solid #92a192;
  border-radius: 50%;
  display:block;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  margin: 0 auto; 
}
/*アクティブ*/
.form_step div span.on{
  color: #018701;
  font-weight: bold;
}
.form_step div span.on::before{
  border-color: #018701;
}
.form_step div span.on::after{
  content: "";
  width: 20px;
  height: 20px;
  background-color: #018701;
  border-radius: 50%;
  display:block;
  position: absolute;
  top:9px;
  left: 0;
  right: 0;
  margin: 0 auto;  
}

/*------------
送信完了アイコン表示*/
.finish{
  content: "";
  width: 200px;
  height: 200px;
  border: 14px solid #b9e4a4;
  border-radius: 50%;
  margin: 60px auto 0 auto;
  position: relative;
}
.finish::after{
  content: "";
  width: 70%;
  height: 70%;
  margin: auto;
  position: absolute;
  top: 7%;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/other/icon_finish.png") no-repeat center center / cover;
}

/*------------
Formカスタマイズ*/
label, 
input, 
textarea, 
select{
  color: inherit;
  font-size: 0.16rem;
}
input[type="text"], 
input[type="tel"], 
input[type="email"]{
  padding: 0 10px;
}
input[type="number"]{
  padding-left: 10px;
}
input[type="text"], 
input[type="tel"], 
input[type="email"], 
input[type="number"], 
textarea{
  border: 1px solid #b9c9b9;
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
}
input[type="text"], 
input[type="tel"], 
input[type="email"], 
input[type="number"]{
  line-height: 0.30rem;
  height: 0.30rem;
}
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea{
  padding: 10px;
  line-height: 1.2em;
}

select{
  line-height: 30px;
  height: 30px;
  background: url("../img/other/icon_select.png") no-repeat right center #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 1.5em 0 10px;
  border: 1px solid #b9c9b9;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
/*IE用*/
select::-ms-expand {
  display: none;
}

/*------------
form部分 囲みbox*/
.form_box{
  width: 100%;
  margin: 30px 0 0 0;
}
.form_box label{
  display: block;
}

.form_box dl dd{
  padding: 0.14rem 0.1rem 0.1rem;;
}
.form_box dl {
  border-color: #5c695c;
}
.form_box dl dt{
  color: #2e3b2e;
  background-color: #cbd6cb;
}
.form_box dl dd{
  border-color: #cbd6cb;
}
.form_box dt span{
  font-size: 0.13rem;
  padding-top: 0.03rem;
  display: inline-block;
}


/*必須アイコン*/
.form_box dl dt.rqd{
  position: relative;
}
.form_box dl dt.rqd::after{
  content: "必須";
  color: #fff;
  font-size: 0.11rem;
  text-align: center;
  letter-spacing: 0.01rem;
  line-height: 0.11rem;
  height: 0.11rem;
  background-color: #ff3030;
  border-radius: 9px;
  padding: 2px 8px 3px 8px;
  display: inline-block;
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  margin: auto 0;
}

/*エラー表示*/
.form_box .error {
  margin-top: 0.2em;
  color: red;
}

/*.form_box select{
  width: 100%;
}*/

/*月日select*/
/*.form_box .date ul{
  display: table;
}
.form_box .date li{
  display: table-cell;
  vertical-align: bottom;
  padding-right: 8px;
}*/

/*.form_box textarea{
  height: 280px;
}*/


/*------------
フォーム(確認) readonly用*/
.form_confirm input, 
.form_confirm textarea{
  outline: none;
  border: 1px none #fff!important;
}
/* 折り返し */
.form_confirm dl dd {
    overflow-wrap: break-word;
    word-break: break-word;
    padding-left: 0.16rem;
    padding-right: 0.16rem;
}

/*---------
送信ボタンエリア*/
.btn_box{
  text-align: center;
  width: 100%;
  position: relative;
  margin-top: 40px;
}
.btn_box input{
  color: #fff;
  line-height: 300%;
  padding: 0 1.5em;
  background-color: #5c695c;
  border: 1px none transparent;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(31,44,31,0.4);
}

/*決定ボタン*/
.btn_box .btn_smt input{
  font-size: 0.2rem;
  letter-spacing: 0.04rem;
  min-width:30%;
  background-color: #018701;
}

/*pc*/
@media (min-width: 321px){
  .btn_box input:hover{
    opacity: 0.7;
  }
}

/* reCAPTCHA */
.g-recaptcha {
    margin-top: 40px;
}
.g-recaptcha > * { margin: 0 auto; }
.btn_confirm .g-recaptcha > div:first-of-type {
    margin: 3.0em auto 2.0em;
}

/*---------
送信ボタンとクリアボタンset*/
.btn_confirm div{}

/*決定ボタン*/
.btn_confirm div.btn_smt{}
/*リセットボタン*/
.btn_confirm div.btn_rst{
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn_confirm div.btn_rst input{
  color: #2e3b2e;
  background-color: #cbd6cb;
}

/*サブボタン右*/
.btn_confirm div.btn_r{
  position: absolute;
  bottom: 0;
  right: 0;
}

/*サブボタン左*/
.btn_confirm div.btn_l{
  position: absolute;
  bottom: 0;
  left: 0;
}
/*戻る矢印アイコン*/
.btn_confirm div.btn_l input[type="button"],
.btn_confirm div.btn_l input[type="submit"]{
  /*padding-left: 40px;*/
  padding-left: 40px;
  padding-right: 20px;
}
.btn_confirm div.btn_l::after{
  content:"";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  margin: auto 0;
  transform: rotate(-45deg);
  border-top:1px solid #fff;
  border-left:1px solid #fff;
}


/*---------
横並びset 1行共通(radio/checkbox)*/
.radio_box{
  width: 100%;
  display: table;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.radio_box span{
  text-align: center;
  line-height: 0.3rem;
  display: table-cell;
  box-sizing: border-box;
  padding: 0 1em;
  vertical-align: middle;
  position: relative;
}

/*ラジオボタン・チェックボックス*/
.radio_box input[type="radio"]{
  display: none;
}
.radio_box label{
  line-height: 0.3rem;
  width: 100%;
  padding-left: 18px;
  position:relative;
  cursor: pointer;
}
.radio_box input[type="radio"] + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.radio_box input[type="radio"]:checked + label{
  color: #018701;
}
.radio_box input[type="radio"]:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto 0;
  width: 12px;
  height: 12px;
  background: #018701;
  border-radius: 50%;
}


/*---------
横並び2項目set(radio/checkbox)*/
.rdo2 span{
  width: 50%;
}
.rdo2 span:first-of-type{
  border-right: 1px solid #ccc;
}

/*---------
横並び6項目set(radio/checkbox)*/
.rdo6 {
  width: 100%;
  font-size: 0;
}
.rdo6 span{
  text-align: center;
  line-height: 0.3rem;
  font-size: 0.16rem;
  word-spacing: 0.1em;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
}
.rdo6 span{
  width: 34%;
}
.rdo6 span:nth-of-type(3n){
  width: 32%;
}
.rdo6 span:nth-of-type(-n+3){
  border-bottom: 1px solid #ccc;
}
.rdo6 span:not(:nth-of-type(3n)){
  border-right: 1px solid #ccc;
}

/*---------
横並びset(その他)*/

/*年齢*/
.other_box{
  width: 100%;
}
.other_box span, 
.other_box input[type="text"], 
.other_box input[type="tel"], 
.other_box input[type="email"], 
.other_box input[type="number"], 
.other_box select, 
.other_box label{
  width: auto;
  display: inline-block;
  margin-right: 2px;
}

.other_box span.pr10{
  padding-right: 10px;
}

/*住所*/
dd.adr > div:first-of-type span{
  margin-right: 20px;
}





/*override*/
dd .txt_sub{

}

/*label用*/
dd .txt_ttl{
  display: block;
  margin-bottom: 0.05rem;
}
dd .txt_ttl span{
  font-size: 0.13rem;
  padding-top: 0.03rem;
  display: inline-block;
}



/* ----------- 追加/変更箇所[2019.09] ---------- */
/*      -[フォーム]FireFox表示調整
        -[フォーム:入力画面]textareaのpadding調整
        -[フォーム:確認画面]折り返し
        -[フォーム:確認画面]reCAPTCHA設置
   --------------------------------------------- */
