@charset "utf-8";

.page-content *{
  line-height:1.3;
}

.sub_title, .bw_tab{
  text-align:center;
}
.sub_title h3 {
    margin: 52px 0;
    color: #222;
    line-height: 1;
    font-size:40px;
}

.bw_tab ul {
    margin-bottom: 60px;
    position: relative;
    border-bottom: 1px solid #cdcdcd;
    font-size: 0;
}

.bw_tab ul:before, .bw_tab ul:after {
    width: 100%;
    height: 1px;
    background: #cdcdcd;
    position: absolute;
    bottom: -1px;
    left: 100%;
    content: '';
    display: block;
}

.bw_tab ul li {
    padding: 20px 0 28px;
    position: relative;
    display: inline-block;
}

.bw_tab ul li + li {
    margin-left: 62px;
}

.bw_tab ul li a {
    color: #555;
    font-size: 20px;
}

.bw_tab ul li.current a {
  color: #83a80b;
  font-weight: 700;
}

.bw_tab ul li.current:after {
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: 50%;
    content: '';
    display: block;
    border: 3px solid #83a80b;
    border-radius: 100%;
    transform: translateX(-50%);
    box-sizing: border-box;
}



.bw_tab-inner ul {
    position: relative;
    text-align:center;
    border-bottom: 1px solid var(--color-b);
}

.bw_tab-inner ul li {
    padding: 12px 0 12px;
    position: relative;
    display: inline-block;
}

.bw_tab-inner ul li + li {
    margin-left: 40px;
}

.bw_tab-inner ul li a {
    color: #555;
}

.bw_tab-inner ul li.current a {
  color: #83a80b;
  font-weight: 700;
}

.bw_tab-inner ul li.current:after {
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: 50%;
    content: '';
    display: block;
    border: 3px solid #83a80b;
    border-radius: 100%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.bw-btn-tap{

}

.bw-btn-tap li{
  background-color: #f7f7f4;
  position: relative;
}

.bw-btn-tap li label{
  padding: 12px 0px;
  display: block;
  text-align: center;
  border: 1px solid #eee;
  border-bottom: 1px solid #83a80b;
  border-left: none;
}

.bw-btn-tap li input[type="radio"]:checked + label{
  margin-left: 0;
  color: #83a80b;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #83a80b;
  border-bottom: 1px solid #fff;
}

.bw-btn-tap li input[type=radio]{
  display:none!important;
}

.bw-btn-tap li label:before{
  display:none!important;
}

.bw-input{
  font-size:12px;
  border:1px solid var(--color-b);
  outline: 0!important;
}

input.bw-input{
  height:40px;
  font-size:12px;
  padding:0px 15px;
}

textarea.bw-input{
  font-size:12px;
  padding:10px 15px;
}

.bw-input:focus, .bw-input:hover{
  border-color:var(--color-c1);
  outline: 0!important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bw-btn{
  width:240px;
  height:50px;
  line-height:50px;
  text-align:center;
  background-color:var(--color-c1);
  color:#fff;
  font-weight:700;
}

.bw-check-list{
  position:relative;
  padding-left:13px;
  line-height:18px;
}
.bw-check-list:before{
  content: '';
  width:8px;
  height:8px;
  background-color:var(--color-c1);
  position:absolute;
  left:0;
  top:5px;
}

/* flex */
.tr-fx,
.tr-fx-c > *,
.tr-fx-cc > * > * {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tr-fx-nw,
.tr-fx-nw-c > *,
.tr-fx-nw-cc > * > * {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tr-fxt,
.tr-fxt-c > *,
.tr-fxt-cc > * > * {
  align-items: flex-start;
}

.tr-fxb,
.tr-fxb-c > *,
.tr-fxb-cc > * > * {
  align-items: flex-end;
}

.tr-fxstr,
.tr-fxstr-c > *,
.tr-fxstr-cc > * > * {
  align-items: stretch;
}

.tr-fxs,
.tr-fxs-c > *,
.tr-fxs-cc > * > * {
  justify-content: flex-start;
}

.tr-fxe,
.tr-fxe-c > *,
.tr-fxe-cc > * > * {
  justify-content: flex-end;
}

.tr-fxsa,
.tr-fxsa-c > *,
.tr-fxsa-cc > * > * {
  justify-content: space-around;
}

.tr-fxsb,
.tr-fxsb-c > *,
.tr-fxsb-cc > * > * {
  justify-content: space-between;
}

.tr-fxc,
.tr-fxc-c > *,
.tr-fxc-cc > * > * {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.tr-fxc-rv,
.tr-fxc-c-rv > *,
.tr-fxc-cc-rv > * > * {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.tr-els-1,
.tr-els-2,
.tr-els-3,
.tr-els-4 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.tr-els-2 {
  -webkit-line-clamp: 2;
}
.tr-els-3 {
  -webkit-line-clamp: 3;
}
.tr-els-4 {
  -webkit-line-clamp: 4;
}

.f-1{font-size: 40px;}
.f-2{font-size: 34px;}
.f-3{font-size: 24px;}
.f-4{font-size: 20px;}
.f-5{font-size: 18px;}
.f-6{font-size: 16px;}
.f-7{font-size: 14px;}
.f-8{font-size: 12px;}

b, .bold{font-weight:600;}
strong, .strong{font-weight:800;}

.m-b5,
.m-b5-c > *,
.m-b5-cl > *:not(:last-child) {
  margin-bottom: 5px;
}
.m-b10,
.m-b10-c > *,
.m-b10-cl > *:not(:last-child) {
  margin-bottom: 10px;
}
.m-b15,
.m-b15-c > *,
.m-b15-cl > *:not(:last-child) {
  margin-bottom: 15px;
}
.m-b20,
.m-b20-c > *,
.m-b20-cl > *:not(:last-child) {
  margin-bottom: 20px;
}
.m-b25,
.m-b25-c > *,
.m-b25-cl > *:not(:last-child) {
  margin-bottom: 25px;
}
.m-b30,
.m-b30-c > *,
.m-b30-cl > *:not(:last-child) {
  margin-bottom: 30px;
}
.m-b40,
.m-b40-c > *,
.m-b40-cl > *:not(:last-child) {
  margin-bottom: 40px;
}
.m-b50,
.m-b50-c > *,
.m-b50-cl > *:not(:last-child) {
  margin-bottom: 50px;
}
.m-b60,
.m-b60-c > *,
.m-b60-cl > *:not(:last-child) {
  margin-bottom: 60px;
}
.m-b90,
.m-b90-c > *,
.m-b90-cl > *:not(:last-child) {
  margin-bottom:90px;
}

.m-r5,
.m-r5-c > *,
.m-r5-cl > *:not(:last-child) {
  margin-right: 5px;
}
.m-r10,
.m-r10-c > *,
.m-r10-cl > *:not(:last-child) {
  margin-right: 10px;
}
.m-r20,
.m-r20-c > *,
.m-r20-cl > *:not(:last-child) {
  margin-right: 20px;
}

.p-10,
.p-10-c > *,
.p-10-cc > * > * {
  padding: 10px;
}

.p-15,
.p-15-c > *,
.p-15-cc > * > * {
  padding: 15px;
}

.p-20,
.p-20-c > *,
.p-20-cc > * > * {
  padding: 20px;
}

input[type="checkbox"].bw-checkbox {
  display: none;
}

input[type="checkbox"].bw-checkbox+label:before {
  content: '';
  background-image:url(../img/ic-check.svg);
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 16px;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  background-color:#fff;
  -webkit-box-shadow: inset 0 0px 0px 1px var(--color-b);
  -moz-box-shadow: 0 0px 0px 1px inset var(--color-b);
  box-shadow: 0 0px 0px 1px inset var(--color-b);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"].bw-checkbox+label {
  line-height: 25px;
  position: relative;
  padding-left: 36px;
  display:inline-block;
}

input[type="checkbox"].bw-checkbox:checked+label:before {
  background-image:url(../img/ic-checked.svg);
  background-color:var(--color-c1);
  -webkit-box-shadow: inset 0 0px 0px 1px var(--color-c1);
  -moz-box-shadow: 0 0px 0px 1px var(--color-c1);
  box-shadow: 0 0px 0px 1px var(--color-c1);
}

.btn-checkbox{display:none;}
.btn-checkbox[disabled] + label{opacity:.3;}
.btn-checkbox + label{height:40px;line-height:38px;text-align:center;color:var(--color-gr3);border:1px solid var(--color-b);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-checkbox:checked + label{color:var(--color-c1);border-color:var(--color-c1);}

button[type=submit]{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="radio"].bw-radio {
  display: none;
}

input[type="radio"].bw-radio+label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-box-shadow: inset 0 0px 0px 1px var(--color-b);
  -moz-box-shadow: 0 0px 0px 1px inset var(--color-b);
  box-shadow: 0 0px 0px 1px inset var(--color-b);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="radio"].bw-radio+label {
  line-height: 25px;
  position: relative;
  padding-left: 36px;
  display:inline-block;
}

input[type="radio"].bw-radio:checked+label:before {
  color: #fff;
  -webkit-box-shadow: inset 0 0px 0px 6px var(--color-c1);
  -moz-box-shadow: 0 0px 0px 6px inset var(--color-c1);
  box-shadow: 0 0px 0px 6px inset var(--color-c1);
}

.b-1,
.b-1-c>*,
.b-1-cc>*>* {
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-b);
}

.bw-steps .bw-1v1{
  -webkit-box-shadow:0 10px 20px rgba(0,0,0,.1);
  -moz-box-shadow:0 10px 20px rgba(0,0,0,.1);
  -o-box-shadow:0 10px 20px rgba(0,0,0,.1);
  box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.bw-steps .bw-1v1 .p-h15{
  margin-top:-20px;
}

.bw-steps .bw-1v1 .bw-img-c{
  bottom: -10%;
  top: unset;
  width: 70%;
  height: 70%;
}

.bw-steps{padding-left:40px;}
.bw-steps > *:nth-child(1){z-index:4;}
.bw-steps > *:nth-child(2){left:-10px;z-index:3;}
.bw-steps > *:nth-child(3){left:-30px;z-index:2;}
.bw-steps > *:nth-child(4){left:-40px;z-index:1;}

.bw-check-left{width:100px;}
.bw-check-right{width:calc(100% - 110px);}

.bw-w80{width:80px;}
.bw-w90c{width:calc(100% - 90px);}
.bw-h90{height:90px;}

section.page-content {
  margin-top: 91px;
}

.btn-file{height:50px;border:1px solid #222;text-align:center;line-height:48px!important;font-weight:bold;}
.file-wrapper > *{padding:8px 0;border-bottom:1px dotted var(--color-b);}
.m-l10{margin-left:10px;}
.m-t10{margin-top:10px;}
.btn-remove{
  width:20px;height:20px;
  border:1px solid var(--color-b);
  border-radius: 2px;
}

@media screen and (max-width: 1400px){
  section.page-content {
      margin-top: 111px;
  }
}

@media screen and (max-width: 1240px){
  section.page-content {
    margin-top: 91px;
  }
}

@media screen and (max-width: 900px){
  section.page-content {
      margin-top: 91px;
  }
}

@media screen and (max-width: 768px){
  section.page-content {
      margin-top: 90px;
  }
}

@media screen and (max-width: 767px){
  section.page-content {
      margin-top: 71px;
  }
}

@media screen and (max-width: 1199px){
  .f-1{font-size: 28px;}
  .f-2{font-size: 24px;}
  .f-3{font-size: 22px;}
  .f-4{font-size: 18px;}
  .f-5{font-size: 16px;}
  .f-6{font-size: 15px;}
  .f-7{font-size: 13px;}
  .f-8{font-size: 12px;}
}

@media screen and (max-width: 767px){
  .bw-steps{padding-left:10px;}
  .bw-steps > *:nth-child(2){left:-10px;}
  .bw-steps > *:nth-child(3){left:0px;top:-10px;}
  .bw-steps > *:nth-child(4){left:-10px;top:-10px;}

  .sub_title h3 {
      margin: 20px 0;
      font-size: 28px;
  }

  .bw_tab ul{
    margin-bottom:40px;
  }

  .bw_tab ul li {
      padding: 10px 0 15px;
      position: relative;
      display: inline-block;
  }

  .bw_tab ul li + li {
      margin-left: 30px;
  }

  .bw_tab ul li a{
    font-size:12px;
  }

  .bw-btn-tap li label{
    padding: 10px 0px;
  }

  .bw-input{
    font-size:11px;
  }

  .bw-steps .bw-1v1 .p-h15{
    margin-top:-5px;
  }

  .m-b5-sm,
  .m-b5-c-sm > *,
  .m-b5-cl-sm > *:not(:last-child) {
    margin-bottom: 5px;
  }
  .m-b10-sm,
  .m-b10-c-sm > *,
  .m-b10-cl-sm > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .m-b15-sm,
  .m-b15-c-sm > *,
  .m-b15-cl-sm > *:not(:last-child) {
    margin-bottom: 15px;
  }
  .m-b20-sm,
  .m-b20-c-sm > *,
  .m-b20-cl-sm > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .m-b25-sm,
  .m-b25-c-sm > *,
  .m-b25-cl-sm > *:not(:last-child) {
    margin-bottom: 25px;
  }
  .m-b30-sm,
  .m-b30-c-sm > *,
  .m-b30-cl-sm > *:not(:last-child) {
    margin-bottom: 30px;
  }
  .m-b40-sm,
  .m-b40-c-sm > *,
  .m-b40-cl-sm > *:not(:last-child) {
    margin-bottom: 40px;
  }
  .m-b50-sm,
  .m-b50-c-sm > *,
  .m-b50-cl-sm > *:not(:last-child) {
    margin-bottom: 50px;
  }
  .m-b60-sm,
  .m-b60-c-sm > *,
  .m-b60-cl-sm > *:not(:last-child) {
    margin-bottom: 60px;
  }

  .bw-check-left{width:90px;}
  .bw-check-right{width:calc(100% - 100px);}
}
