@charset "UTF-8";

#k3form_embed {
  
}

body#K3_body {
  font-size: 16px;
  background-color: #fff;
}

@media (max-width: 768px) {
  body#K3_body {
    font-size: 14px;
  }
}

#K3_body #K3_content > h3,
#K3_body #K3_content > p {
  text-align: center;
}

/* フォームタイトル */
#K3_body div.form-headline {
  margin: 0;
}

#K3_body div.form-headline h2 {
  line-height: 1.75;
  margin-block-start: 0;
  margin-block-end: 0;
  background: #0098D8;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
}

@media (max-width: 768px) {
  #K3_body div.form-headline h2 {
    font-size: 16px;
    padding: 10px;
  }
}

#K3_body hr {
  display: none;
}

#K3_body .k3-customer-registration-form {
  background: #fff;
  padding: 40px 70px;
}

@media (max-width: 768px) {
  #K3_body .k3-customer-registration-form {
    padding: 15px;
  }
}

/* 各項目とinputの親要素 */
#K3_body div.control-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  #K3_body div.control-group {
    padding: 15px 0 20px;
  }
}

#K3_body div.control-group:last-child {
  border-bottom: 0;
}

/* 項目と必須 */
#K3_body label.control-label {
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  #K3_body label.control-label {
    width: 100%;
  }
}

/* input */
#K3_body .controls {
  width: calc(100% - 300px - 60px);
}

@media (max-width: 768px) {
  #K3_body .controls {
    width: 100%;
  }
}

#K3_body .form-control {
  height: 45px;
  font-size: 16px;
  border: 1px solid #eee;
  background: #F8F8F8;
  border-radius: 2px;
}

#K3_body textarea.form-control {
  height: 90px;
}

/* 必須 */
#K3_body .label-fit {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  padding: 0 5px;
  background: red;
  color: #fff;
  border-radius: 20px;
  line-height: 1.75;
  order: 1;
  margin-left: 10px;
}

#K3_body .text-top {
  order: 1;
}

/* 任意 */
#K3_body .label-fit.label-warning {
  background: #777;
}

/* ラジオボタン */
#K3_body div.radio {
  width: 100%;
  padding-left: 360px;
}

@media (max-width: 768px) {
  #K3_body div.radio {
    padding-left: 0;
  }
}

/* チェックボックス */
#K3_body div.checkbox {
  width: 100%;
  padding-left: 360px;
}

@media (max-width: 768px) {
  #K3_body div.checkbox {
    padding-left: 0;
  }
}

#K3_body textarea.form-control {
  resize: vertical;
}


/* ラジオボタン・チェックボックスの大きさ */
#K3_body input[type="radio"],
#K3_body input[type="checkbox"] {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  #K3_body input[type="radio"],
  #K3_body input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }
}

#K3_body div.radio:not(:last-child),
#K3_body div.checkbox:not(:last-child) {
  margin-bottom: 10px;
}

/* 送信ボタン */
#K3_body #K3_control_btn.control-group .controls {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ボタンのpadding */
#K3_body .btn {
  padding: 20px;
  border-radius: 37px;
  font-size: 16px !important;
  font-weight: bold;
  width: 360px;
}

@media (max-width: 768px) {
  #K3_body .btn {
    padding: 15px;
    font-size: 14px !important;
    width: 85%;
  }
}

#K3_body .btn.btn-default {
  width: 400px;
  border-color: transparent;
}

@media (max-width: 768px) {
  #K3_body .btn.btn-default {
    width: 85%;
  }
}

/* ボタンの色 */
#K3_body .btn-primary {
  display: block;
  width: 400px;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 17px;
	background: #FFCC00;
	position: relative;
  border-radius: 50px;
  margin: 0 auto;
}

#K3_body .btn-primary:disabled {
  background: #ccc;
}

@media (max-width: 768px) {
  #K3_body .btn-primary {
    width: 85%;
  }
}

#K3_body  .btn-primary {
  border-color: transparent;
}

#K3_body input[name="form_confirmed"].btn-primary {
  margin: 0;
}

#K3_body .btn-primary:hover {
  opacity: 0.7;
}

#K3_body #K3_control_btn {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0 100px;
}

@media (max-width: 768px) {
  #K3_body #K3_control_btn {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }
}

body#K3_body span.form-error {
  position: absolute;
  left: 120%;
  bottom: -25px;
  width: 100%;
  margin-left: 0;
}

@media (max-width: 768px) {
  body#K3_body span.form-error {
    left: 0;
    bottom: -70px;
  }
}

body#K3_body label[for="input11"] span.form-error {
  top: 130px;
}

#K3_body div.form-description {
  margin: 0;
}

body#K3_body .table.table-bordered {
  max-width: 90%;
  margin: 0 auto;
}

body#K3_body .table-bordered,
body#K3_body .table-bordered > tbody > tr > th,
body#K3_body .table-bordered > tbody > tr > td {
  border: 0
}

body#K3_body .table-bordered > tbody > tr > th,
body#K3_body .table-bordered > tbody > tr > td {
  padding: 30px 0;
}

@media (max-width: 768px) {
  body#K3_body .table-bordered > tbody > tr > th,
  body#K3_body .table-bordered > tbody > tr > td {
    padding: 15px 0;
  }
}

body#K3_body .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}

body#K3_body .table-striped > tbody > tr {
  border-bottom: 1px solid #eee;
}

body#K3_body .table-bordered > tbody > tr > td {
  font-weight: bold;
  line-break: anywhere;
}

body#K3_body .table-hover > tbody > tr:hover {
  background: transparent;
}

body#K3_body .table-bordered > tbody > tr > th {
  background: #f5f5f5;
}




