@charset "utf-8";
.t-form {
  background: #EEF3F6;
}
/* ---------------------------------------------------

Input Initilize

--------------------------------------------------- */
input, textarea {
  font-size: 15px;
  padding: 10px;
  margin: 4px 0;
  border: none;
  caret-color: #333;
}
.t-form .contents {
  display: block;
  margin: 0 auto;
}
.t-form article {
  padding: 0 10px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.formBox {
  margin-bottom: 3em !important;
  border: 3px solid #19191B;
}
.form-table, .form-table tbody, .form-table tr, .form-table th, .form-table td {
  display: block;
}
.form-table tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .form-table, .form-table tbody, .form-table tr, .form-table th, .form-table td {
    /* display: initial; */
  }
  .form-table tr {
    flex-direction: row;
  }
}
.formBox__title {
  font-size: 1.2em;
  background: #19191B;
  border-radius: 0;
  color: #FFF;
  padding: 1em;
  text-align: center;
}
.form-table {
  width: 100%;
  height: auto;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}
.form-table p {
  margin: 0 auto 1em !important;
}
.form-table th {
  vertical-align: middle;
  height: auto;
  border-bottom: 1px dotted #ADADAD;
  background-color: #F0F0F0;
  box-sizing: border-box;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  width: 100%;
  border-right: 1px solid #CCC;
  padding: 1.25em;
  font-size: .95em;
  display: flex;
  align-items: baseline;
}
@media screen and (min-width: 1000px) {
  .form-table th {
    text-align: right;
    width: 35%;
    border-right: 1px dotted #ADADAD;
    padding: 2em 1.5em;
    display: block;
    font-size: 1em;
  }
}
.form-table td {
  vertical-align: middle;
  border-right: 1px solid #CCC;
  box-sizing: border-box;
  line-height: 2;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #CCC;
  padding: 1.25em;
}
@media screen and (min-width: 1000px) {
  .form-table td {
    width: 65%;
    height: auto;
    border-bottom: 1px dotted #ADADAD;
    padding: 1.65em 1.5em;
  }
}
.form-table tr:last-child td {
  border-bottom: 1px solid #CCC;
}
.form-table tr:last-child th {
  border-bottom: 1px solid #ADADAD;
}
@media screen and (min-width: 1000px) {
  .form-table tr:last-child th {
    border-bottom: 1px solid #CCC;
  }
}
.form-table fieldset {
  position: relative;
}
.form-table .inputSplit {
  display: flex;
  justify-content: space-between;
  /*width: 100%;*/
}
.form-table .inputSplit > fieldset {
  display: inline-block;
  width: 48%;
}
.form-table input[type="text"], .form-table input[type="tel"], .form-table input[type="email"], .form-table textarea {
  outline: none;
  background: #F2F6FB;
  transition: all .75s;
  font-size: 16px;
  border-radius: 0 !important;
}
@media screen and (min-width: 1000px) {
  .form-table input[type="text"], .form-table input[type="tel"], .form-table input[type="email"], .form-table textarea {
    border-radius: inherit !important;
  }
}
/* Focus*/
.form-table input:focus, .form-table textarea:focus {
  box-shadow: 0 1px 0 0 #004986;
  border-bottom: 1px solid #004986;
  background-color: rgba(238, 238, 238, .2);
}
.form-table .inputSplit .name_tag {
  font-size: .85em;
  margin-right: .25em;
  display: block;
}
.inputSplit .input-w100 {
  width: 98%;
}
.form-table input[type="text"] + label, .form-table input[type="tel"] + label, .form-table input[type="email"] + label, .form-table textarea + label {
  position: absolute;
  top: -2.25em;
  left: .5em;
  font-size: .85em;
  visibility: hidden;
  transition: all .5s;
  opacity: 0;
  color: #19BE8C;
}
.form-table input[type="text"]:focus + label, .form-table input[type="tel"]:focus + label, .form-table input[type="email"]:focus + label, .form-table textarea:focus + label {
  visibility: visible;
  color: #666;
  opacity: 1;
  -webkit-transform: translate3d(0, 85em, 0);
  transform: translate3d(0, .85em, 0);
}
.form-table .inputSplit input[type="text"] + label, .form-table .inputSplit input[type="tel"] + label, .form-table .inputSplit input[type="email"] + label, .form-table .inputSplit textarea + label {
  left: 2.75em;
  top: -.85em;
}
/* Form bg-color
--------------------------------*/
.form-table input.bg-color, .form-table textarea.bg-color, .form-table select.bg-color {
  background-color: rgba(62, 175, 216, 0.1);
}
/* Radio ... Select Circuit
--------------------------------*/
label[for="circuit_hikari"] > .radioTile__value, label[for="circuit_air"] > .radioTile__value {
  margin: .25em auto;
  min-width: 120px;
  height: 40px;
}
@media screen and (min-width: 1000px) {
  label[for="circuit_hikari"] > .radioTile__value, label[for="circuit_air"] > .radioTile__value {
    min-width: 220px;
    height: 50px;
  }
}
label[for="circuit_hikari"] > .radioTile__value {
  background: #FFF url(/img/common/logo_sb-hikari@2x.png) no-repeat center;
  background-size: contain;
}
label[for="circuit_air"] > .radioTile__value {
  background: #FFF url(/img/common/logo_sb-air@2x.png) no-repeat center;
  background-size: contain;
}
/*
* プレースホルダー
*/ :placeholder-shown {
  color: #9E9E9E;
  transition: all .5s;
}
.form-table input:focus:placeholder-shown, .form-table textarea:focus:placeholder-shown {
  color: transparent;
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */ ::-webkit-input-placeholder {
  color: #9E9E9E;
  transition: all .5s;
}
.form-table input:focus::-webkit-input-placeholder, .form-table textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
/* Firefox 18- */ :-moz-placeholder {
  color: #9E9E9E;
  opacity: 1;
  transition: all .5s;
}
.form-table input:focus:-moz-placeholder, .form-table textarea:focus:-moz-placeholder {
  color: transparent;
}
/* Firefox 19+ */ ::-moz-placeholder {
  color: #9E9E9E;
  opacity: 1;
  transition: all .5s;
}
.form-table input:focus::-moz-placeholder, .form-table textarea:focus::-moz-placeholder {
  color: transparent;
}
/* IE 10+ */ :-ms-input-placeholder {
  color: #9E9E9E;
  transition: all .5s;
}
.form-table input:focus:-ms-input-placeholder, .form-table textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.form-table input[type=checkbox], .form-table input[type=radio] {
  display: none;
}
.form-table input[type=checkbox] + label, .form-table input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.8;
  margin-left: .35em;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .form-table input[type=checkbox] + label, .form-table input[type=radio] + label {
    margin-left: 10px;
  }
}
.form-table input[type=checkbox]:checked + label, .form-table input[type=radio]:checked + label {
  color: #19BE8C;
  font-weight: 700;
}
.form-table input[type=checkbox] + label:before, .form-table input[type=radio] + label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #EEF2F8;
  border-radius: 50%;
}
.form-table input[type=checkbox]:checked + label:after, .form-table input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #19BE8C;
}
.req {
  display: block;
  padding: 4px 6px;
  color: #FFF;
  background-color: #FA5858;
  border-radius: 2px;
  font-weight: normal;
  font-size: 1em;
  margin: 8px 0 0 0;
  line-height: 1.4;
  order: -1;
  margin-right: .5em;
  text-align: center;
  order: -1;
}
.opt {
  display: inline-block;
  padding: 2px 6px;
  color: #FFF;
  background-color: #4FC3F7;
  border-radius: 2px;
  font-weight: normal;
  font-size: 1em;
  margin: 8px 0 0 0;
  order: -1;
  margin-right: .5em;
}
@media screen and (min-width: 1000px) {
  .req {
    order: 0;
    margin-right: 0;
    padding: 3px 5px;
    display: inline-block;
  }
  .opt {
    order: 0;
    margin-right: 0;
  }
}
.form-btn {
  text-align: center;
  margin-bottom: 60px;
}
.form-btn {
  text-align: center;
  margin: 0 auto 50px;
}
a.back_btn {
  line-height: 1.2;
  background: transparent;
  text-align: center;
  border-radius: 10px;
  padding: 1em 1.75em;
  text-decoration: none;
  display: block;
  font-size: .75em;
  margin: 1em;
  letter-spacing: .25em;
  font-family: "メイリオ", sans-serif;
  border: 1px solid #CCC;
  cursor: pointer;
  transition: all .5s;
  width: 5em;
  color: #CCC;
}
a.back_btn:hover, a.back_btn:active {
  border-bottom: 1px solid transparent;
  background: #CCC;
  color: #FFF;
}
.confirm_btn {
  cursor: pointer;
  width: 200px;
  height: 54px;
  color: #FFF;
  border: 2px solid #EBEBEB;
  box-shadow: 0 1px #EBEBEB;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  background: #31A200;
  background: linear-gradient(#4BCC13, #4BCC13 15%, #2D8C04 85%, #2D8C04 100%);
  text-align: center;
}
.confirm_btn:hover {
  background: #2B8A02;
}
.confirm_btn.is-active {
  cursor: pointer;
}
/* confirm Hover With Agrryment
--------------------------------*/
#inputSubmit {
  opacity: 0.3 !important;
  cursor: default;
}
#inputSubmit.is-active {
  opacity: 1 !important;
  cursor: pointer;
}
.input-w100 {
  width: 100%;
  box-sizing: border-box;
}
.textarea-w100 {
  width: 100%;
  box-sizing: border-box;
}
/*select {
  font-size: 16px;
  margin-bottom: 30px;
}*/
.img-float {
  float: left;
  margin: 0 0 15px 0;
}
#slide {
  cursor: pointer;
}
#slide i {
  font-size: 17px;
  margin-right: 5px;
}
/*---------------------------------------------------------------------------
 ステップ（お申し込みフォーム）
---------------------------------------------------------------------------*/
.stepNav {
  margin: 1.75em auto;
  padding-right: 2em;
  position: relative;
  z-index: 0;
  display: block;
}
.stepNav::after {
  clear: both;
  content: "";
  display: block;
}
.stepNav li {
  float: left;
  position: relative;
  z-index: 3;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}
.stepNav li:first-child {
  border-radius: 5px 0 0 5px;
}
.stepNav li:nth-child(2) {
  z-index: 1;
}
.stepNav li:nth-child(3) {
  z-index: 0;
}
/* different widths */
.stepNav.twoWide li {
  width: 50%;
}
.stepNav.threeWide li {
  width: 33.33%;
}
/* step span */
.stepNav span {
  width: 100%;
  padding: .5em;
  padding-left: 1.75em;
  text-align: center;
  text-shadow: 0 1px 0 #FFF;
  border: 1px solid #CBCBCB;
  text-decoration: none;
  border-top-color: #DDD;
  border-right: 0;
  background-color: #FBFBFB;
  background-image: linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
  float: left;
  position: relative;
  box-sizing: border-box;
  font-size: .85em;
  letter-spacing: .2em;
  line-height: 1.4;
}
.stepNav li:first-child span {
  border-radius: 5px 0 0 5px;
}
.stepNav span:before {
  content: "";
  width: 31px;
  height: 31px;
  background: #FBFBFB;
  background-image: linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
  display: block;
  position: absolute;
  top: 6px;
  right: -16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: -1;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #CBCBCB;
}
@media screen and (min-width: 1000px) {
  .stepNav span:before {
    width: 33px;
    height: 33px;
    border-bottom: 1px solid #DDD;
    right: calc(-1 * (35px / 2));
  }
}
.stepNav li small {
  font-size: .8em;
  letter-spacing: 0.1em;
}
/* selected */
.stepNav li.selected {}
.stepNav li.selected span, .stepNav li.selected span:before {
  background: #EBEBEB;
}
.stepNav li.selected span {
  -moz-box-shadow: inset 2px 1px 2px rgba(0, 0, 0, 0.12);
  background: #19BE8C;
  color: #FFF;
  text-shadow: none;
}
.stepNav li.selected span:before {
  border-right: 1px solid #BEBEBE;
  border-bottom: 1px solid #CBCBCB;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.1);
  background: #19BE8C;
}
/*---------------------------------------------------------------------------
 SSLシール
---------------------------------------------------------------------------*/
.sslSeal {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .85em;
  margin: -10px auto 3em;
  background: #F3F8FF;
  border-radius: 0;
  /* -webkit-transform: scale(.85); */
  /* transform: scale(.85); */
  box-shadow: 0 0 1px #CCC;
}
@media screen and (min-width: 1000px) {
  .sslSeal {
    display: inline-block;
    font-size: small;
    background: #FFF;
    border-radius: 1em;
    padding: 1em;
    position: absolute;
    top: -5em;
    right: -2.5em;
  }
}
.sslSeal_img {
  text-align: center;
  margin-left: -1em;
  /* margin-bottom: .5em; */
  -webkit-transform: scale(.85);
  transform: scale(.85);
  flex-basis: 45%;
}
.sslSeal_lead {
  word-wrap: break-word;
  text-align: left;
  font-size: .8em;
  color: #19BE8C;
  line-height: 1.6;
}
@media screen and (min-width: 1000px) {
  .sslSeal_lead {
    text-align: center;
  }
}
/*---------------------------------------------------------------------------
 Radio TIle
---------------------------------------------------------------------------*/
.radioTile {
  padding: .2em;
}
.radioTile__lead {
  color: #333;
  font-size: .85em;
  text-align: center;
  margin-bottom: 1em;
}
.radioTile__att {
  font-size: .5em;
  color: #6B6B6B;
  display: inherit;
  margin-top: -.25em;
  /* background: linear-gradient(transparent 87%, #cee1ff 87%); */
  padding-right: .2em;
  padding-left: .2em;
}
.radioTile__input:checked + .radioTile__button .radioTile__att {
  color: #ffffff;
}
.radioTile__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
.radioTile__inputWrap {
  flex-basis: 45%;
}
.radioTile__input {
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radioTile__button {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #EEE;
  border-radius: 5px;
  padding: 1rem;
  position: relative;
  border-radius: 3px;
}
.radioTile__button:hover, .radioTile__button:focus {
  transition-duration: cubic-bezier(0.6, 4, 0.3, 0.8);
  -webkit-animation: gelatine .5s 1;
  animation: gelatine .5s 1;
}
.radioTile__button .fa {
  color: #19BE8C;
  display: block;
  text-align: center;
  margin: .25em auto;
}
.radioTile__button .fa-lg {
  font-size: 2.25em;
}
.radioTile__button .radioTile__value {
  color: #111;
}
.radioTile__input:checked + .radioTile__button {
  background-color: #19BE8C;
  border: 2px solid #19BE8C;
  color: #FFF;
  /* -webkit-transform: scale(1.05); */
  /* transform: scale(1.05); */
}
.radioTile__input:checked + .radioTile__button .fa {
  color: #FFF;
}
.radioTile__input:checked + .radioTile__button .radioTile__value {
  color: #FFF;
}
.radioTile--circuit .radioTile input[type=radio] + label {
  border-color: #EEE;
}
.radioTile--circuit .radioTile__input + .radioTile__button img {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  padding: 1em;
  margin-left: -1em;
  opacity: .75;
  max-width: 200px;
}
.radioTile--circuit .radioTile__input:checked + .radioTile__button img {
  background: rgba(255, 255, 255, 0.98);
  opacity: 1;
}
.radioTile--division .radioTile__inputWrap {
  height: 5.5rem;
}
.radioTile--division .radioTile__inputWrap:first-child {
  -webkit-flex-basis: 95%;
  -ms-flex-preferred-size: 95%;
  flex-basis: 95%;
  margin-bottom: 1.25em;
}
.radioTile--carrier .radioTile__inputWrap {
  height: 5rem;
  margin-bottom: 1em;
}
.radioTile--place .radioTile__inputWrap {
  height: 7.5rem;
}
.radioTile input[type=radio] + label {
  position: inherit !important;
  padding: inherit !important;
  border-radius: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin: inherit !important;
}
.radioTile input[type=radio] + label:before {
  display: none;
}
.radioTile input[type=radio] + label:after {
  display: none;
}
@-webkit-keyframes gelatine {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes gelatine {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/*---------------------------------------------------------------------------
 Form Select Box
---------------------------------------------------------------------------*/
.formSelect__lead {
  color: #666;
  font-size: .85em;
  text-align: center;
  margin-bottom: 1em;
  color: #333;
}
.formSelect__selectBox {
  position: relative;
}
.formSelect__selectBox::before {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
.formSelect select {
  width: 100%;
  font-size: 16px;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  border: 1px solid #333;
  background: #FFF;
  padding: 8px 38px 8px 10px;
  color: #333;
}
.formSelect select::-ms-expand {
  display: none;
}
/* BirthDay
--------------------------------*/
.birthDayInput {
  font-size: 16px;
  height: 45px;
  box-sizing: border-box;
  padding: .5em .5em;
}
/* MoveDate
--------------------------------*/
.moveDateInput {
  font-size: 16px;
  height: 45px;
  box-sizing: border-box;
  padding: .5em .5em;
}
/* Before Service Name
--------------------------------*/
.beforeServiceNameInput {
  font-size: 16px;
  height: 45px;
  box-sizing: border-box;
  padding: .5em .5em;
  width: 100%;
}
/* formServiceBox
--------------------------------*/
.formServiceBox {
  border: 1px solid #D9EAFF;
  padding: 1em;
  background: #F2F6FB;
  border-radius: 5px;
}
.formServiceBox__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  line-height: 2;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: .75em;
}
.formServiceBox__title {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #19BE8C;
  font-size: 1.1em;
}
.formServiceBox__link {
  margin: 0;
  padding: 0;
  font-size: .9em;
}
.formServiceBox__body {
  margin-bottom: 1.25em;
}
.formServiceBox__body > p {
  font-size: .95em;
  margin: 0;
  line-height: 1.8;
}
.formServiceBox__body > ul {
  margin-top: .75em;
}
.formServiceBox__body > ul > li {
  font-size: .85em;
  color: #666;
  line-height: 1.8;
}
.formServiceBox__body > ul > li:before {
  content: "-";
  margin-right: .5em
}
.formServiceBox__footer {
  padding: .5em .75em;
  background: #FFF;
}
/* TEL Group
--------------------------------*/
.telGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.telGroup__item {
  position: relative;
}
.telGroup__item > input {
  width: 3.25em;
  padding-top: .6em;
  padding-bottom: .6em;
  margin: .25em auto;
}
.telGroup__haihun {
  margin-left: .25em;
  margin-right: .25em;
}
/* ZIP Group
--------------------------------*/
.zipGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.zipGroup__item {
  position: relative;
}
.zipGroup__item > input {
  width: 3.25em;
  padding-top: .6em;
  padding-bottom: .6em;
  margin: .25em auto;
}
.zipGroup__haihun {
  margin-left: .25em;
  margin-right: .25em;
}
.radioTile__button .icon-home, .radioTile__button .icon-building {
  color: #19BE8C;
  display: block;
  text-align: center;
  margin: .25em auto;
  font-size: 2.25em;
}
.radioTile__input:checked + .radioTile__button .icon-home, .radioTile__input:checked + .radioTile__button .icon-building {
  color: #FFF;
}
/* ---------------------------------------------------

 Privacy Box

--------------------------------------------------- */
.privacyBox {
  margin: 1em auto 2em;
  padding: 1.25em 1em;
  background: #fbfbfb;
  color: #333;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 2.5em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.privacyBox__pmark {
  margin-bottom: 6px;
}
.privacyBox__pmark > img {
  width: 50px;
  height: 50px;
}
@media (min-width: 1000px) {
  .privacyBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .privacyBox__pmark {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .privacyBox__pmark > img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
}
/* ---------------------------------------------------

 プライバシーマーク

--------------------------------------------------- */
.pmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background: #f0f9ff;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pmark＿img {
  min-width: 75px;
  margin-right: 10px;
  text-align: center;
}
.pmark＿img > img {
  width: 80px;
  height: 80px;
}
.pmark＿lead {
  font-size: 12px;
  margin-top: 5px !important;
}
@media (min-width: 1000px) {
  .pmark {
    border: 3px solid #bfdbff;
  }
  .pmark＿img {
    margin-right: 10px;
  }
  .pmark＿lead {
    font-size: 13px;
  }
}
/* CheckBox
--------------------------------*/
input[class*="agreementCheckBox"] {
  display: none;
}
input[class*="agreementCheckBox"] + label {
  text-align: left;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-left: -1em;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 1000px) {
  input[class*="agreementCheckBox"] + label {
    cursor: pointer;
    display: inline-block;
    position: relative;
  }
}
input[class*="agreementCheckBox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  margin-top: -12px;
  left: 10px;
  top: 50%;
  border: 2px solid;
  border-color: #666666;
  background-color: #FFFFFF;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
@media (min-width: 1000px) {
  input[class*="agreementCheckBox"] + label::before {
    margin-top: -11px;
  }
}
input[class*="agreementCheckBox"]:checked + label::before {
  border-color: #4887de;
  background-color: #4887de;
}
input[class*="agreementCheckBox"]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 15px;
  height: 10px;
  margin-top: -8px;
  top: 50%;
  left: 14px;
  -webkit-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
  transform: rotate(-50deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #FFFFFF;
}
input[class*="agreementCheckBox"]:checked + label {
  font-weight: 400;
  color: #333;
}
.form-top-text {
  text-align: justify;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: .05rem;
  padding: 10px 0 12px;
  margin: 0 15px 25px;
  color: #eb0000;
}
@media (min-width: 1000px) {
  .form-top-text {
    font-size: 1.4rem;
    letter-spacing: .1rem;
    padding: 10px 0 12px;
    margin-bottom: 0;
  }
}
.form-top-text span {
  display: block;
  font-weight: bold;
}
.form-top-text span:first-child {
  margin-bottom: 8px;
}
@media (min-width: 1000px) {
  .form-top-text span:first-child {
    margin-bottom: 4px;
  }
}