@charset "UTF-8";
input,
textarea,
select {
  border: 1px solid #c2c2c2;
  padding: 4px 8px;
  border-radius: 2px;
  background-color: transparent;
}

input:focus, textarea:focus {
  border-color: #009f85;
}

textarea {
  min-height: 120px;
}

input,
textarea,
button,
select {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "MS Pゴシック", "MS P Gothic", sans-serif;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

*::-webkit-input-placeholder {
  color: #c2c2c2;
}

*:-ms-input-placeholder {
  color: #c2c2c2;
}

*::-moz-placeholder {
  color: #c2c2c2;
}

input[type="search"]::-webkit-search-decoration {
  display: none;
}

/************************************
          MINIMALECT 0.9
  A minimalistic select replacement

 jQuery 1.7+ required.
 Developed by @groenroos
 http://www.groenroos.fi

 Github: http://git.io/Xedg9w

 Licensed under the MIT license.

************************************/
.minict_wrapper {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "MS Pゴシック", "MS P Gothic", sans-serif;
  color: #333;
  background: #fff;
  position: relative;
  width: 320px;
  height: 36px;
  height: 3.6rem;
  border: 1px solid #c2c2c2;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.minict_wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.minict_wrapper.disabled {
  background: #f5f5f5;
  text-shadow: 0 1px 0 #fff;
}

.minict_wrapper.disabled span {
  color: #bbb !important;
}

.minict_wrapper:after {
  content: "\25BC";
  display: block;
  position: absolute;
  width: 3.3rem;
  top: 50%;
  right: 0;
  font-size: 1rem;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: #555;
}

.minict_wrapper.active {
  border-color: #009f85;
}

.minict_wrapper.active:after {
  content: "\25B2";
}

.minict_wrapper.disabled:after {
  color: #bbb;
}

.minict_wrapper span {
  display: block;
  border: 0;
  outline: none;
  background: none;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  height: 32px;
  height: 3.2rem;
  line-height: 23px;
  line-height: 2.3rem;
  padding: 7px 30px 0 8px;
  padding: .7rem 3rem 0 .8rem;
  cursor: default;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.minict_wrapper span:empty:before {
  content: attr(data-placeholder);
  color: #c2c2c2;
  line-height: 23px;
  line-height: 2.3rem;
}

.minict_wrapper ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 1px -1px 0;
  position: absolute;
  width: 100%;
  width: -webkit-calc(100% + 2px);
  width: -moz-calc(100% + 2px);
  width: calc(100% + 2px);
  border: 1px solid #c2c2c2;
  border-top: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  top: 34px;
  top: 3.4rem;
  left: 0;
  max-height: 350px;
  max-height: 35rem;
  overflow-y: auto;
  z-index: 999999;
}

.minict_wrapper ul li {
  list-style: none;
  font-size: 1.4rem;
  padding: 0 10px;
  padding: 0 1rem;
  cursor: pointer;
  background: #fff;
  height: 35px;
  height: 3.5rem;
  line-height: 32px;
  line-height: 3.2rem;
}

.minict_wrapper ul li:hover {
  background: #f2f2f2;
  color: #111;
}

.minict_wrapper ul li.minict_group {
  color: #444;
  background: #f6f6f6;
  font-weight: bold;
  cursor: default;
}

.minict_wrapper ul li.minict_empty {
  display: none;
  background: #fff !important;
  color: #bbb;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  height: 55px;
  height: 5.5rem;
  line-height: 50px;
  line-height: 5rem;
}

.minict_wrapper ul li.disabled {
  cursor: default;
  background: #fff !important;
  color: #bbb;
}

.minict_wrapper ul li.selected {
  color: #03816D;
  background: #f2f2f2;
}

.minict_wrapper ul li.highlighted {
  color: #fff;
  background: #819a9a;
}

.minict_wrapper ul li.hidden {
  display: none;
}

.minict_wrapper .minict_reset {
  color: #A9A9A9;
  bottom: 0;
  display: none;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  line-height: 3rem;
  position: absolute;
  right: 35px;
  right: 3.5rem;
  text-align: center;
  top: 0;
  text-decoration: none;
  width: 20px;
  width: 2rem;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.minict_wrapper .minict_reset:hover {
  color: #e0e0e0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.minict_wrapper .minict_reset:active {
  color: #636363;
}

.minict_wrapper.disabled .minict_reset {
  display: none;
}

select:-moz-ui-invalid + .minict_wrapper {
  background-color: #FFF2F3;
}

.formContent {
  padding-bottom: 16px;
}
.formContent ul {
  margin: 0;
}
.formContent > p {
  margin: 24px 0;
}
.formContent *:focus {
  outline: none;
}

.formHeader > * {
  padding: 0 15px;
}
.formHeader > p {
  margin-bottom: 20px;
}
.formHeader .pagetitle {
  border-bottom: 1px solid #eee;
  padding: 8px 15px 20px;
  margin-bottom: 20px;
margin-top:0;

}

.form_notice {
  padding: 16px 20px;
  margin: 20px 0;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.form_note {
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
}
.form_note li {
  text-indent: -1em;
  margin: 4px 0 12px 1em;
  font-size: 14px;
}
.form_note li:before {
  content: '・';
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.form_note li:last-child {
  margin-bottom: 4px;
}
.form_address .form_note {
  margin-bottom: 12px;
}

.form_table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  table-layout: fixed;
}
.form_table caption, .form_table th, .form_table td {
  font-weight: normal;
  text-align: left;
}
.form_table th,
.form_table td {
  line-height: 1.2;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  vertical-align: top;
}
.form_table th {
  width: 220px;
  padding: 24px 14px;
  background-color: #f5f5f5;
}

.form_table th.participants {
  padding: 10px;
  font-weight: bold;
  color: #333333;
  background-color: #ccffcc;
}

.form_table th.required:after {
  content: '必須';
  color: #fff;
  background-color: #DD1D1D;
  margin-left: 6px;
  display: inline-block;
  border-radius: 3px;
  line-height: 1;
  padding: 3px 4px;
  font-size: 10px;
  vertical-align: top;
  position: relative;
  top: 1px;
}
.form_table th span {
  display: inline-block;
}
.form_table th.participant {
  font-weight: bold;
  padding: 10px 14px;
  background-color: #ccccff;
}
.form_table td {
  padding: 14px;
  background-color: #fff;
  vertical-align: middle;
}

.form_table td > div {
  margin-bottom: 12px;
}
.form_table ol, .form_table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form_table p {
  font-size: 13px;
}
.form_table p:last-child {
  margin-bottom: 0;
}
.form_table .error {
  color: #DD1D1D;
  margin: 0;
  display: flex;
}
.form_table .error:before {
  content: '*';
  display: block;
  width: 10px;
}
.form_table input {
  width: 320px;
  height: 36px;
  border-radius: 3px;
  font-size: 16px;
}
.form_table .form_check,
.form_table .form_radio {
  margin-right: 16px !important;
  cursor: pointer;
  font-weight: normal;
}
.form_table .form_check input,
.form_table .form_radio input {
  width: auto;
  height: auto;
  margin-right: 6px;
}
.form_table .form_check input:checked + span,
.form_table .form_radio input:checked + span {
  font-weight: bold;
}
.form_table textarea {
  width: 100%;
  border-radius: 3px;
  font-size: 16px;
  padding-top: 10px;
}
.form_table .form_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -3px 8px;
}
.form_table .form_row:last-child {
  margin-bottom: 0;
}
.form_table .form_row > * {
  margin: 3px;
}
.form_table .form_row > *:first-child {
  padding-left: 0;
}
.form_table .form_address input {
  width: 480px;
}
.form_table .form_address .form_row > *:first-child {
  width: 62px;
  padding: 0;
}
.form_table .form_address .form_row > *:first-child span {
  display: inline-block;
}
.form_table .form_address .form_row p + div {
  width: calc(100% - 62px - 12px);
}
.form_table .form_address .minict_wrapper {
  width: 170px;
}
.form_table .form_address .minict_wrapper span {
  font-size: 16px;
}
.form_table .form_age input {
  width: 100px;
}
.form_table .form_shoesize input {
  width: 100px;
}
.form_table .form_postcode.form_row > div:first-child {
  width: auto;
}
.form_table .form_postcode.form_row input {
  width: 100px;
}
.form_table .form_mail input {
  width: 480px;
}
.form_table .form_mail .form_row > *:first-child {
  width: 46px;
  padding: 0;
}
.form_table .postcode_btn {
  width: 108px;
  height: 36px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  border-radius: 3px;
  font-size: 14px;
}
.form_table .postcode_btn:hover {
  background-color: #e7e7e7;
}
.form_table .postcode_btn:active {
  background-color: #d6d6d6;
}
.form_table.confirm p {
  color: #999;
}
.form_table.confirm .form_address .form_row > *:first-child {
  width: auto;
}
.form_table.confirm .form_textarea {
  line-height: 1.5;
}
.form_table.confirm td {
  vertical-align: middle;
}
.form_table.confirm td > div:last-child {
  margin-bottom: 0;
}

.form_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px auto;
  padding: 0 12px;
}

.form_submit {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 4px;
  background-color: #03816D;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_submit:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 0 2px 0 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 20px;
  color: #fff;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_submit:hover {
  background-color: #005f50;
}
.form_submit:active:before {
  right: 16px;
}
.form_submit .btn-submit {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 1;
  padding: 0 12px 0 0;
  border: none;
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-size: 18px;
  border-radius: 6px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_submit .btn-submit:active {
  padding-left: 12px;
}
.form_submit .btn-submit[disabled], .form_submit .btn-submit:disabled {
  background-color: #e7e7e7;
  color: #999;
  cursor: default;
  border-radius: 6px;
  padding: 0;
}
.form_submit .btn-submit[disabled]:active, .form_submit .btn-submit:disabled:active {
  padding: 0;
}

.form_reset {
  width: 100%;
  max-width: 240px;
  margin: 4px;
  background-color: #d3e7ea;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_reset:hover {
  background-color: #bedce0;
}
.form_reset:active {
  background-color: #aad0d6;
}
.form_reset .btn-reset {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 1;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #03816D;
  text-align: center;
  font-size: 18px;
  border-radius: 6px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.form_back {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 4px;
  background-color: #d3e7ea;
  border-radius: 6px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_back:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 0 2px 0 0;
  border-top: 2px solid #03816D;
  border-right: 2px solid #03816D;
  transform: rotate(-135deg);
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_back:hover {
  background-color: #bedce0;
}
.form_back:active {
  background-color: #aad0d6;
}
.form_back:active:before {
  left: 16px;
}
.form_back .btn-back {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  font-size: 18px;
  color: #03816D;
  text-align: center;
  position: relative;
  line-height: 1;
  border-radius: 12px;
  padding-left: 12px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form_back .btn-back:hover {
  text-decoration: none;
}
.form_back .btn-back:active {
  padding-right: 12px;
}

.form_info {
  display: flex;
  align-items: center;
  width: calc(100% + 16px);
  border-bottom: 1px solid #ddd;
  padding: 0 12px 12px;
  margin: 18px -8px;
}
.form_info .name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px;
  padding: 0;
  line-height: 1;
}
.form_info .heading {
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 4px;
  padding: 0;
}
.form_info p {
  font-size: 15px;
  line-height: 1.5;
}
.form_info p:last-child {
  margin-bottom: 0;
}
.form_info .img {
  max-width: 112px;
  margin: 0 auto;
}
.form_info img {
  width: 100%;
  hanging-punctuation: auto;
}
.form_info .telLink,
.form_info .hour {
  letter-spacing: .1em;
}

.form_agreement .agreement_check {
  margin: auto;
}

.container {
  min-height: calc(100vh - 36px);
}

.form_footer {
  padding: 0;
  height: 36px;
}
.form_footer .copyright {
  font-size: 11px;
}

.form_complete {
  display: flex;
  flex-direction: column;
  align-items: center;
/*
  justify-content: center;
*/
}

.form_complete_content {
  max-width: 640px;
  margin-bottom: 24px;
}
.form_complete_content .pagetitle {
  margin-bottom: 24px;
}
.form_complete_content .form_submit {
  width: 200px;
  margin: 24px 0;
}
.form_complete_content .form_submit:before {
  width: 12px;
  height: 12px;
  top: calc(50% - 7px);
}
.form_complete_content .btn-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 48px;
  font-size: 14px;
  text-decoration: none;
}

section.form_error {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 4px;
  border: 1px solid #f33;
  background-color: #fff5f5;
}
ul.form_error li {
  color: #f33;
}

@media (max-width: 991px) {
  .form_table .form_check,
  .form_table .form_radio {
    display: flex;
/*
    padding: 12px 0;
*/
    padding: auto 0;
  }
}
@media (max-width: 767px) {
  .formHeader .pagetitle {
    font-size: 24px;
  }

  .form_complete_content .pagetitle {
    font-size: 24px;
  }

  .form_notice {
    width: calc(100% - 24px);
    margin: 20px auto;
    padding: 16px;
  }

  .form_table {
    display: block;
    width: 100%;
    border-right: none;
  }
  .form_table tbody,
  .form_table tr,
  .form_table th,
  .form_table td {
    display: block;
    width: 100%;
    border-left: none;
  }
  .form_table th {
    padding: 8px 12px;
  }
  .form_table th.participant {
    padding: 10px 14px;
    background-color: #ccccff;
  }
  .form_table .form_name .form_row p {
    width: 26px;
  }
  .form_table .form_name .form_row div {
    width: calc(100% - 38px);
  }
  .form_table .form_name input {
    width: 100%;
  }

  .form_table.confirm .form_name .form_row div {
    width: auto;
  }

  .form_table input{
    width: 100%;
  }

  .form_table .form_address input {
/*    width: 530px;*/
  }

  .form_info {
    display: block;
    padding: 24px 12px 0;
  }

  .form_agreement .agreement_check {
    margin: 18px 0 0px 8px;
  }

  .form_btns {
    flex-wrap: wrap;
  }
  .form_btns .form_reset,
  .form_btns .form_submit,
  .form_btns .form_back {
    max-width: 320px;
  }
  .form_btns .btn-reset,
  .form_btns .btn-submit,
  .form_btns .btn-back {
    height: 52px;
  }
}

/*************************************************
Additional CSS
**************************************************/
/* ご利用中のお客様用リンクボタン */
.btn_customers_inuse {
    width		: 100%;
    font-size		: 1.6rem;
    font-weight		: 700;
    line-height		: 1.5;
    position		: relative;
    display		: inline-block;
    padding		: 1rem 2rem;
    cursor		: pointer;
/*
    -webkit-user-select	: none;
    -moz-user-select	: none;
    -ms-user-select	: none;
    user-select		: none;
    -webkit-transition	: all 0.3s;
*/
    transition		: all 0.3s;
    text-align		: center;
    vertical-align	: middle;
    text-decoration	: none;
    letter-spacing	: 0.1em;
    border-radius	: 0.5rem;
    border 		: 1px solid #7a7aff;

    margin		: 1em 0 3em 0;
    color		: #fff;
    background-color	: #7a7aff;
}

.btn_customers_inuse:hover {
    background-color	: #eeeeee;
    border 		: 1px solid #999999;
    border-radius	: 0.5rem;
}

/* パンくずリスト */
.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_breadcrumb {
	overflow: hidden;
	width: 100%;
	margin: 1em auto;
	padding: 0;
	list-style: none;
}
.cp_breadcrumb li {
	display: inline-block;
	padding: 0;
	margin: 0 0 0.5em 0;
width:calc(98% / 3);
}
.cp_breadcrumb span {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0.7em 1em 0.7em 2em;
	text-decoration: none;
	color: #ffffff;
	background-color: #aecbe3;
width:100%;
}

.cp_breadcrumb li:first-child span {
	padding-left: 1em;
	border-radius: 5px 0 0 5px;
}
.cp_breadcrumb span::after,
.cp_breadcrumb span::before {
	position: absolute;
	top: 50%;
	right: -1.45em;
	margin-top: -1.48em;
	content: '';
	border-top: 1.48em solid transparent;
	border-bottom: 1.48em solid transparent;
	border-left: 1.5em solid;
}
.cp_breadcrumb span::after {
	z-index: 2;
	border-left-color: #aecbe3;
}
.cp_breadcrumb span::before {
	z-index: 1;
	right: -1.70em;
	border-left-color: #ffffff;
}

.cp_breadcrumb li:last-child span {
	cursor: default;
	pointer-events: none;
	color: white;
	background:        #aecbe3;
	border-radius: 0 5px 5px 0;
}
.cp_breadcrumb li:last-child span::before,
.cp_breadcrumb li:last-child span::after {
	content: normal;
}

.current{
}

/* Current Position */
.cp_breadcrumb span.current::after {
	z-index: 3;
	border-left-color: #3949ab;
}
.cp_breadcrumb span.current {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0.7em 1em 0.7em 2em;
	text-decoration: none;
	color: #ffffff;
	background-color: #3949ab;
}

.cp_breadcrumb li:last-child span.current{
	background:        #3949ab;
}

/* logo */
.logo {
    margin:1em 0 0 0;
}

@media (max-width: 767px) {
    /* パンくずリスト */
    .cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
    	-webkit-box-sizing: border-box;
    	        box-sizing: border-box;
    }
    .cp_breadcrumb {
    	overflow: hidden;
    	width: 100%;
    	margin: 1em auto;
    	padding: 0;
    	list-style: none;
    }
    .cp_breadcrumb li {
    	display: inline-block;
    	padding: 0;
    	margin: 0 0 0.5em 0;
        width:calc(97% / 3);
        font-size:0.7em;
    }
    .cp_breadcrumb span {
    	position: relative;
    	display: inline-block;
    	margin: 0;
    	padding: 0.7em 1em 0.7em 2em;
    	text-decoration: none;
    	color: #ffffff;
    	background-color: #aecbe3;
        width:100%;
    }
    
    .cp_breadcrumb li:first-child span {
    	padding-left: 1em;
    	border-radius: 5px 0 0 5px;
    }
    .cp_breadcrumb span::after,
    .cp_breadcrumb span::before {
    	position: absolute;
    	top: 50%;
    	right: -1.50em;
    	margin-top: -1.48em;
    	content: '';
    	border-top: 1.6em solid transparent;
    	border-bottom: 1.48em solid transparent;
    	border-left: 1.6em solid;
    }
    
    .cp_breadcrumb span::after {
    	z-index: 2;
    	border-left-color: #aecbe3;
/*    	border-left-color: #ff0000;*/
    }
    .cp_breadcrumb span::before {
    	z-index: 1;
    	right: -1.70em;
    	border-left-color: #ffffff;
    }
    .cp_breadcrumb li:last-child span::before,
    .cp_breadcrumb li:last-child span::after {
    	content: normal;
    }
    
    .current{
    }
    
    /* Current Position */
    .cp_breadcrumb span.current::after {
    	z-index: 3;
    	border-left-color:#3949ab;
    }
    .cp_breadcrumb span.current {
    	position: relative;
    	display: inline-block;
    	margin: 0;
    	padding: 0.7em 1em 0.7em 2em;
    	text-decoration: none;
    	color: #ffffff;
    	background-color: #3949ab;
    }
    
    /* logo */
    .logo {
        width:30%;
    }

}

/*.grecaptcha-badge { visibility: hidden; }*/
