@charset "UTF-8";
.otmcFormChild span.hissu {
  background-color: #CC0000;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  margin-left: 5px;
  padding: 0 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.otmcTitle {
  padding: 5px 10px 10px;
}

.otmcTitle img {
  float: left;
}

.otmcTitle div {
  font-size: 16px;
  color: #300;
  font-weight: bold;
  line-height: 1.2;
  margin: 5px 0 0 93px;
}

#container article.otmcError {
  margin: 0;
}

#otmcLogin {
  position: absolute;
  top: 10px;
  right: 15px;
}

#otmcForm > dt {
  color: #fff;
  background-color: #300;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.otmcFormChild {
  padding: 10px 10px 20px;
  background-color: #f8efe3;
  font-size: 1.4rem;
}

#otmcForm dd .otmcFormChild:nth-child(odd) {
  background-color: #ffffea;
}

.otmcFormChild h1 {
  font-size: 20px;
  color: #310000;
  line-height: 1;
  margin-bottom: 10px;
}

.otmcFormChild p {
  font-size: 15px;
  color: #310000;
  margin-bottom: 10px;
}

.otmcFormChild input:not([type=checkbox]):not([type=radio]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border: 1px solid #b9ab99;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.btn_delete {
  margin-bottom: 20px;
}

#otmcFormMerumaga {
  background-color: #fff;
  border: 1px solid #c00;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

#otmcFormMerumaga img {
  float: left;
}

#otmcFormMerumaga p.point {
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  color: #c00;
  margin-bottom: 5px;
  margin-top: 2px;
}

#otmcFormMerumaga p:last-child {
  font-size: 10px;
  line-height: 1.1;
  color: #000;
  clear: both;
}

.otmcFormChild select {
  font-size: 16px;
}

.otmcFormChild .errormessage {
  color: #f00;
}

.otmcFormButton {
  border-radius: 10px;
  border: 1px solid #333;
  padding: 10px;
  box-shadow: none;
  background: -webkit-linear-gradient(#fff, #ccc);
  background: -o-linear-gradient(#fff, #ccc);
  background: linear-gradient(#fff, #ccc);
}

.btn-box {
  text-align: center;
}

.btn-doui {
  width: 260px;
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 17px 0;
  margin: 0 auto 0 auto;
  background-color: #f75902;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa64e 0%), to(#f75902 50%));
  /*Saf4+, Chrome*/
  background-image: -webkit-linear-gradient(top, #ffa64e 0%, #fd7102 50%, #fc6902 50%, #f75902 100%);
  background-image: -moz-linear-gradient(top, #ffa64e 0%, #fd7102 50%, #fc6902 50%, #f75902 100%);
  background-image: -ms-linear-gradient(top, #ffa64e 0%, #fd7102 50%, #fc6902 50%, #f75902 100%);
  background-image: -o-linear-gradient(top, #ffa64e 0%, #fd7102 50%, #fc6902 50%, #f75902 100%);
  background-image: linear-gradient(top, #ffa64e 0%, #fd7102 50%, #fc6902 50%, #f75902 100%);
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.8);
  border: 1px solid #D6A038;
  border-bottom: 1px solid #5A5A5A;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  cursor: pointer;
}

/*チェックボックス大型化*/
input[type=checkbox] {
  -webkit-appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 8px;
  border: 2px solid #4c4c4c;
  -webkit-box-sizing: border-box;
  width: 28px;
  height: 28px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#d1d1d1));
}

/*チェック時は背景色を変更*/
input[type=checkbox]:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(#353535), to(#8f8f8f));
}

/*チェックの印を:before疑似要素と:after疑似要素を使って作成*/
input[type=checkbox]:checked:before {
  position: absolute;
  left: 1px;
  top: 17px;
  display: block;
  -webkit-box-shadow: 0 1px 1px rgb(0, 0, 0);
  content: "";
  width: 10px;
  height: 4px;
  background: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
}

input[type=checkbox]:checked:after {
  display: block;
  position: absolute;
  left: 9px;
  top: 17px;
  content: "";
  -webkit-box-shadow: 0 1px 1px rgb(0, 0, 0);
  width: 19px;
  height: 4px;
  background: #FFFFFF;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
}

.errormessage {
  font-size: 140%;
  line-height: 140%;
  color: #ff0000;
  padding: 5%;
  margin: 3%;
  border: 1px solid #b9ab99;
  border-radius: 4px;
  box-shadow: 2px 2px 10px rgba(80, 80, 80, 0.3);
}

#customerAddressListArea .INPUT_SUBBLOCK {
  display: table;
  margin-bottom: 10px;
}

#customerAddressListArea .INPUT_SUBBLOCK input[id*=selectAddress-] {
  display: table-cell;
  margin-top: 30px;
}

label[for*=selectAddress-] {
  display: table-cell;
  vertical-align: middle;
  border: solid 1px #f7941d !important;
  border-radius: 5px !important;
  padding: 10px 10px 0 !important;
  width: 100%;
  background-color: #fff;
}

label[for*=selectAddress-] div {
  margin-bottom: 5px;
}

.please-notice {
  margin-top: 20px;
  border-radius: 4px;
  border: 1px solid #b9ab99;
  padding: 10px;
  background: #fff;
}

.please-notice p {
  /*	font-size:1rem;
  	line-height: 1.2rem;*/
}

.please-notice__title {
  font-weight: bold;
  text-align: center;
}

.please-notice__title2 {
  font-weight: bold;
  text-align: left;
}

.please-notice__list {
  margin-bottom: 2rem;
}

.please-notice__notice span {
  /*font-size:0.9rem;*/
  line-height: 1.6rem;
  color: #310000;
}

#register_btn[disabled=disabled] {
  opacity: 0.5;
}

/*コース選択時css*/
#course_select[type=radio] + label,
#course_baby[type=radio] + label,
#course_kit[type=radio] + label,
#course_kitThree[type=radio] + label,
#kitCourseRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 10px auto;
  padding: 5px;
  width: 80%;
  border: 3px solid #c1c1c1;
  border-radius: 7px;
  background-image: #fcfcfc; /*Old browsers*/ /*FF3.6+*/
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fcfcfc), color-stop(100%, #efefef)); /*Chrome,Safari4+*/
  background-image: -webkit-linear-gradient(top, #fcfcfc 50%, #efefef 100%); /*Chrome10+,Safari5.1+*/
  background-image: -o-linear-gradient(top, #fcfcfc 50%, #efefef 100%); /*Opera 11.10+*/
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fcfcfc), to(#efefef));
  background-image: linear-gradient(to bottom, #fcfcfc 50%, #efefef 100%); /*W3C*/
  background-repeat: no-repeat;
  opacity: 0.8;
}

#kitCourseRadio {
  height: 155px;
}

/*
#course_baby[type=radio] + label {background-position: 5px -113px,0 0;}
#course_kit[type=radio] + label {background-position: 5px -231px,0 0;}
#course_kitThree[type=radio] + label{background-position: 5px -352px,0 0;}
*/
#course_select[type=radio]:checked + label,
#course_baby[type=radio]:checked + label,
#course_kit[type=radio]:checked + label,
#course_kitThree[type=radio]:checked + label,
#kitCourseRadio.radio-checked {
  border: 3px solid #f7941d;
  opacity: 1;
}

.otmcFormChild_selectSedId label:before {
  content: " ";
  position: absolute;
  background: #fff;
  margin-left: -42px;
  border: 4px solid #ccc;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.otmcFormChild_selectSedId input[type=radio]:checked + label:before {
  background: #999;
}


