/* Scss Document */

#mail .fc-form .form-row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background: #fff;
  justify-content: space-between;
  padding: 0px 0px 0px 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  align-items: center;
  position: relative;
  border: 1px solid #D5D5D5;
}
#mail .fc-form .form-row.is-error{
  margin-bottom: 15px;
}
#mail .fc-form .form-row .form-caption {
  width: 161px;
  font-size: 13px;
  position: absolute;
  pointer-events: none;
  z-index: 5;
  transition: all 0.3s;
}
#mail .fc-form .form-row.is-error .form-caption{
font-weight: 500
}
#mail .fc-form .form-row.focused .form-caption,#mail .fc-form .form-row.form-textbox-entered .form-caption{
  position: absolute;
  top: 2px;
  left: 15px;
  z-index: 5;
  font-size: 10px;
  color: rgb(110,110,115);
  font-weight: 400
}
#mail .fc-form .form-row .form-caption .caption--askerisk {
  color: #DF0000;
}
#mail .fc-form .form-row .form-value {
  width: 100%;
}
#mail .fc-form .form-row .form-value input {
  border: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  padding-left: 120px; 
  transition: all 0.1s;
  
}

#mail .fc-form .form-row .form-value input::placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
#mail .fc-form .form-row .form-value select {
  border: 0;
  font-size: 12px;
  background: rgba(0,0,0,0) url(../img/shared/icon_arrow_down.svg) no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 10px;
  background-position: right 14px top 20px;
  width: calc(100% + 20px);
  height: 55px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-left: -20px;
  padding-left: 140px;
  color: #09254B;
}

#mail .fc-form .form-row.focused input, #mail .fc-form .form-row.form-textbox-entered input{
  padding-top: 15px;
  padding-left: 0 !important;
}
#mail .fc-form .form-row.focused select{
  padding-top: 15px;
  padding-left: 20px ;
}
#mail .fc-form .form-row.form-textbox-entered select{
  padding-top: 15px;
  padding-left: 20px;
}
#mail .fc-form .form-row .form-value select::placeholder {
  color: #C5CCD1;
}
#mail .fc-form .form-row .form-value select:required:invalid {
  color: #C5CCD1;
}
#mail .fc-form .form-row .form-value option[value=""][disabled] {
  display: none;
}
#mail .fc-form .form-row .form-value option {
  color: black;
}
#mail .fc-form .form-row.message {
  flex-direction: column;
  padding: 13px 17px;
  margin-bottom: 10px;
}
#mail .fc-form .form-row.message .form-value {
  width: 100%;
}
#mail .fc-form .form-row.message .form-caption {
  margin-bottom: 7px;
  width: 100%;
    position: static;
}
#mail .fc-form .form-row textarea{
  resize: none !important;
}
#mail .fc-form .form-row.message textarea {
  border: 0;
  width: 100%;
  min-height: 54px;
  max-width: 100%;
  position: relative;
  min-width: 100%;
  font-size: 16px;
  line-height: 18px;
  padding-right: 10px;
  resize: none !important;
 
}
#mail .fc-form .form-row.message textarea::placeholder {
  color: #C5CCD1;
  font-size: 12px;
}
#mail .fc-form .form-row.message .pull-tab:after {
  content: "";
  border-top: 1px solid #A7AFB5;
  width: 16px;
  transform: rotate(-181deg);
  background: transparent;
  position: absolute;
  right: -2px;
  bottom: 4px;
  pointer-events: none;
  border-radius: 25%;
}
#mail .fc-form .form-row.message .pull-tab {
  border-top: 1px solid #A7AFB5;
  width: 10px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 13px;
  right: 1px;
  pointer-events: none;
  border-radius: 25%;
  z-index: 5;
}
#mail .fc-form .form-row.message ::-webkit-resizer {
  display: none;
}
#mail .fc-form .privacy_text {
  text-align: center;
  font-size: 8px;
  line-height: 15px;
  margin-bottom: 13px;
}
#mail .fc-form #privacy_checkbox_box {
  margin-bottom: 31px;
}
#mail .fc-form .privacy_text a {
  text-decoration: underline;
}
#mail .fc-form .privacy_text a:hover{
  text-decoration: none;
}
#mail .fc-form #privacy_checkbox {
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 12px;
}
#mail .fc-form #privacy_checkbox input{
  opacity: 0;
  visibility: hidden;
}
#mail .fc-form #privacy_checkbox .text {
  position: relative;
  padding-left: 14px;
}
#mail .fc-form #privacy_checkbox .text .checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FAFAFA;
  border: 1px solid #A7AFB5;
  border-radius: 2px;
}
#mail .fc-form #privacy_checkbox .text .container:hover input ~ .checkmark {
  background-color: #ccc;
}
#mail .fc-form #privacy_checkbox .text input:checked ~ .checkmark {
  background-color: #2196F3;
}
#mail .fc-form #privacy_checkbox .text .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#mail .fc-form #privacy_checkbox .text input:checked ~ .checkmark:after {
  display: block;
}
#mail .fc-form #privacy_checkbox .text .checkmark:after {
  left: 8px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mail .fc-form .form-submit {
  font-weight: 700;
  padding: 10px 15px;
  text-align: center;
  background: #c01b20;
  border-radius: 25px;
  border: none;
  font-size: 21px;
  line-height: 38px;
  color: #fff;
  display: block;
  max-width: 290px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#mail .fc-form .form-submit:before{
  position: absolute;
  content: '';
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
  animation: nyainy-btn 2.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
#mail .g-btn {
  margin: 18px auto 20px;
}
#mail .g-btn .btn-cus2 {
  width: 48%;
}
#mail .fc-confirm .form-row{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
#mail .fc-confirm .submit-confirm{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
#mail .fc-confirm .submit-confirm .form-block{
  width: 48%;
}
#mail .fc-confirm button{
  font-weight: bold;
  padding: 15px;
  text-align: center;
  background: #09254B;
  font-size: 13px;
  color: #fff;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: none;
  cursor: pointer;
}
#mail #privacy_checkbox_box [class^="error"]{
  left: 45px;
}
#mail .form-row.focused{
  border: 1px solid rgb(0,113,227) !important;
  -webkit-box-shadow: 0 0 0 4px rgba(0,125,250,0.6);
  box-shadow: 0 0 0 4px rgba(0,125,250,0.6);
  outline: none;
  border-radius: 12px;
  box-sizing: border-box;
}
#mail .form-row.focused input, #mail .form-row.focused select{
  border-radius: 12px;
}
#mail .keyboard-icon {
  position: absolute;
  right: 10px;
  top: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  display: none; 
  font-size: 18px;
}

#mail .dl_file_form_key img {
  width: 100%;
  height: auto;
}

#mail .dl_file_form h2 {
  font-size: 33px;
  letter-spacing: 0.13em;
  margin-bottom: 50px !important;
}
#mail .dl_file_form h2 img {
  margin-right: 5px;
  width: auto;
  height: auto;
  position: relative;
  top: -6px;
}

#mail .helpfull-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#mail .helpfull-group img {
  width: 100%;
  height: auto;
  border: #ff7800 1px solid;
}
#mail .helpfull-group .item-list {
  width: calc((100% - 60px) / 3);
  text-align: center;
}
#mail .helpfull-group dt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.12em;
  padding: 15px 0;
}
#mail .helpfull-group dd a {
  display: block;
  color: #fff;
  background-color: #ff7800;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 66px;
  text-align: center;
}
#mail .helpfull-group dd a:hover {
  opacity: 0.8;
}
#mail .fc-form .form-button{
  margin: 1.5vw 0 2.4vw;
}
@media screen and (max-width: 767px) {
  #mail .helpfull-group .item-list {
    width: 100%;
    margin-bottom: 50px;
  }
  #mail .helpfull-group dt {
    font-size: 16px;
  }
  #mail .helpfull-group dd a {
    font-size: 16px;
    line-height: 50px;
  }
  #mail section {
    margin-top: 0;
    padding-top: 8vw;
  }
  #mail section:before {
    height: 20vw;
  }
  #mail .dl_file_form h2 {
    font-size: 5vw;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 14vw !important;
  }
  #mail .dl_file_form h2 img {
    width: 6vw;
    top: -0.2vw;
    margin-right: 2vw;
  }
  #mail .fc-form .form-button{
    margin: 30px 0;
  }
}


#mail [class^="error"] {
  color: #fff;
  background-color: #ff9900;
  font-size: 10px;
  line-height: 2.2;
  position: absolute;
  z-index: 2;
  padding: 0 12px;
  border-radius: 2px;
  max-width: 300px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 95%;
  background: none;
  color: rgb(252, 21, 32);
  left: -11px;
  font-weight: normal;
}
#mail [class^="error"]::before {
  content: "";
  background: url("../img/shared/icon_error.png") no-repeat;
  width: 14px;
  height: 15px;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.cont-rule{
  border: 1px solid #d5d5d5;
  font-size: 12px;
  line-height: 20px;
  background: #fff;
  margin: -7px 0 0;
  border-radius: 5px;
}
.cont-rule h3{
  font-size: 14px;
  position: relative;
  padding: 12px;
  font-weight: bold;
  margin-top: 0 !important;
  text-align: center;
}
.cont-rule h3:before,
.cont-rule h3:after{
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000;
}
.cont-rule h3:before{
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
  transition: 0.3s all ease;
}
.cont-rule h3:after{
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
  transition: 0.3s all ease;
}
.cont-rule.active h3:before{
  transform: rotate(45deg);
}
.cont-rule.active h3:after{
  transform: rotate(135deg);
}
.cont-rule p{
  font-weight: 400;
  padding: 0px 15px 25px;
}
.cont-rule a{
  color: #E13714;
  text-decoration: underline;
}
.cont-rule a:hover{
  text-decoration: none;
}
@media screen and (max-width: 767px) {
	#mail [class^="error"]{
		left: -12px;
	}
	#mail [class^="error"]::before{
		margin-top: -1px;
	}
}

@media screen and (min-width: 768px){
  #mail .fc-form .form-row .form-value select,
  #mail .fc-form .form-row .form-value input{
    height: 46px;
    padding-left: 130px;
  }
  #mail .fc-form .form-row .form-caption{
    font-size: 16px;
  }
  #mail .fc-form .form-row.message textarea{
    min-height: 46px;
  }
  #mail .fc-form .privacy_text{
    font-size: 10px;
    line-height: 14px;
    margin: 10px 0;
  }
  #mail .fc-form #privacy_checkbox_box{
    margin-bottom: 20px;
  }
  #mail .fc-form .form-row.message .form-caption{
    margin-bottom: 0;
  }
  .cont-rule{
    font-size: 14px;
    line-height: 23px;
    margin: 0;
  }
  .cont-rule h3{
    font-size: 14px;
    padding: 11px;
    transition: 0.3s all ease-in-out;
  }
  .cont-rule h3:before{
    left: 14px;
  }
  .cont-rule h3:after{
    left: 14px;
  }
  .cont-rule h3:hover{
    opacity: 0.8;
  }
  .cont-rule p{
    padding: 0px 14px 20px;
  }
  #mail .fc-form .form-button{
    margin: 30px 0;
  }
  #mail .fc-form .form-submit:hover{
    opacity: 0.8;
  }
}