@charset "utf-8";

/****************************
common
****************************/
body{
  width:100%;
  min-width:100%;
}
img{
  max-width:100%;
  height:auto;
}
#cpBox{
  max-width: 100%;
  height: auto;
  width /***/: auto;
  margin: 0 auto;
  background-color: #f7f7f7;
}

#chatboxwrapper {
  background-color: #fff;
}

@-webkit-keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}


/****************************
header
****************************/
header{
  position:fixed;
  z-index:500;
  width:100%;
  height:100px;
  top:0;
  left:0;
  text-align: center;
  background:#fff;
}
header .logowrapper{
  position:relative;
}
header .logowrapper > img{
  width:100%;
  height:auto;
}
header .headMessage{
  position:relative;
}
header .headMessage > a{
  display: block;
  padding: 6px 0px;
  text-decoration: none;
  color: #1c68b9eb;
  background-color: #e6e6e6;
}
header .headMessage > a span{
  text-decoration: underline;
}
header .headMessage > p{
  padding: 6px 0px;
  color: #1c68b9eb;
}

/****************************
main
****************************/
#Main{
  padding-top:130px;
}

@media screen and (max-width: 640px){
    #Main {
        padding-top: 100px;
    }
}


#chatboxwrapper .innerWrapper{
  display:flex;
  flex-direction: column;
  padding:15px 20px 30px;
}

.chatStep{
  position: relative;
  opacity: 0;
  top:50px;
  -webkit-transition: all .4s ease .1s;
  -moz-transition: all .4s ease .1s;
  transition: all .4s ease .1s;
}
.chatStep.hide{
  display:none;
}
.chatStep.show{
  opacity: 1;
  top:0;
}

.fukidashiWrapper{
  position:relative;
  display:flex;
}
.fukidashiWrapper.left{
  justify-content: flex-start;
  padding:40px 10px 0 50px;
}
.fukidashiWrapper.right{
  justify-content: flex-end;
  padding:20px 0 0 0 ;
  display:none;
  opacity:0;
}
.fukidashiWrapper.right.show{
  display:flex;
  opacity:1;
}
.fukidashiWrapper .operatorimg{
  position:absolute;
  width:50px;
  top:0;
  left:-10px;
  border-radius:50%;
}

.fukidashi,
.fukidashi--error{
  position:relative;
  min-height: 20px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f5f4f0;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}  
.fukidashi.right,
.fukidashi--error.right{
  color: #fff;
  background-color: #00e34d;
  word-wrap: break-word;
  word-break: break-all;
  padding: 10px 24px;
}  
.fukidashiWrapper.right.show .fukidashi.right,
.fukidashiWrapper.right.show .fukidashi--error.right{
  -webkit-animation: scaleUp 400ms;
  animation: scaleUp 400ms;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}  
.triangle,
.triangle--error{
  position: absolute;
  overflow: hidden;
  width: 20px;
  height: 20px;
  top: -4px;
}
.triangle.left,
.triangle--error.left {
  left: -8px;
  background-color: #0000;
}
.triangle.right,
.triangle--error.right {
  right: -8px;
  background-color: #0000;
}

/*.triangle:before,
.triangle--error:before {
  content: '';
  position: absolute;
  height: 47px;
  width: 50px;
  border-radius: 70px;
  z-index: -1;
  background-color: #f5f4f0;
  bottom: 0;
}
.triangle.left:before,
.triangle--error.left:before {
  left: 1px;
  background-color: #f5f4f0;
}
.triangle.right:before,
.triangle--error.right:before {
  right: 1px;
  background-color: #00e34d;
}*/

.triangle:after,
.triangle--error:after {
  /*content: '';
  position: absolute;
  height: 52px;
  width: 100px;
  border-radius: 50px;
  z-index: -1;
  background-color: #fff;
  bottom: 11px;*/
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px; 
  left: -19px;
  border: 8px solid transparent;
  border-right: 18px solid #edf1ee;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
.triangle.left:after,
.triangle--error.left:after {
  left: -9px;
}
.triangle.right:after,
.triangle--error.right:after {
  top: 0px; 
  right: 0px;
  border: 8px solid transparent;
  border-left: 18px solid #00e34d;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  left: 0;
}

.edit{
  padding-top:10px;
  padding-right:5px;
  text-align:right;
  color:#666;
  font-size:10px;
}

.edit span:first-child:before {
  content: "";
  position: relative;
  display: inline-block;
  height: 14px;
  width: 14px;
  top:-2px;
  vertical-align: middle;
  margin-right:3px;
  background-image: url(../img/img_pencilicon.png);
  background-size: contain;
}

.edit span{
  border: 1px solid #999;
  border-radius: 8px;
  padding: 3px 8px;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  margin-top: 0px;
  display: inline-block;
  cursor: pointer;
}

.square_manu_list,
.square_displacement_list {
  position:relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  justify-content: flex-start;
}
.answered .square_manu_list:after,
.answered .square_displacement_list:after,
.unclickable .square_manu_list:after,
.unclickable .square_displacement_list:after {
  content:'';
  position:absolute;
  z-index:100;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0);
}
.square_displacement_list {
  padding-top:20px;
}
.square_manu_list li,
.square_displacement_list li {
  margin-bottom: 10px;
  width: 31.33333%;
  display: inline-block;
  height: 50px;
  text-align: center;
  color: #666;
  background-color: #fff;
  padding: 12px 2%;
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 1.2em;
  font-weight: bold;
  overflow-wrap: break-word;
  vertical-align: middle;
  word-break: break-word;
  margin-right: 2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  cursor: pointer;
}

.square_manu_list li label,
.square_displacement_list li label {
  cursor: pointer;
}

.square_manu_list li.selected,
.square_displacement_list li.selected,
.square_displacement_list li.selected_disp {
  color: #fff;
  border-color: #02b53f;
  background-color: #00e34d;
}
.square_manu_list li span,
.square_displacement_list li span {
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex;
}

.anket_p {
  letter-spacing: normal;
  font-weight: bold;
  font-size: 15px;
  font-family: sans-serif;
  margin: 15px 0 0;
}
#Main .cmCol2Wrap {
  width: auto;
  text-align: left;
  margin: -10px 0 20px -14px;
}
.cmCol2Wrap > .cmColBlock {
  margin: 14px 0 0 20px;
  width: auto;
  line-height:24px;
  text-align: left;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  font-size:15px;
  box-sizing: border-box;
}
.cmFormList > li > .cmFormTxt {
  display: block;
  width: auto;
  margin-top:1em;
}
.cmFormList > li .cmIptCheck {
  display: inline-block;
  margin-top: 0px;
}
.cmIptCheck input,
.cmIptRadio input {
  display: none;
}
#step6 .cmIptCheck > span{
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 1px;
  zoom: 1;
  position: relative;
  cursor: pointer;
}
#step6 .cmFormList > li .cmIptCheck span {
  padding: 5px 12px 5px 35px;
  border: 2px solid #e4e4e4;
  background-color: #fdfdfd;
  border-radius: 10px;
}
#step6 .cmIptCheck input + span:before {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 2px solid #dadada;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#step6 .cmIptCheck input + span:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: none;
}
#step6 .cmIptCheck input:checked + span:after {
  display: block;
  left: 12px;
  top: 0;
  width: 16px;
  height: 8px;
  margin-top: 7px;
  border-left: 3px solid #0caf5d;
  border-bottom: 3px solid #0caf5d;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cmSlct.jsSlct {
  display:block;
  width:100%;
}
.cmSlct.jsSlct select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.01;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 10;
}
.cmFormHasLabel .cmSlct.jsSlct .jsSlctBtn {
  position:relative;
  display:block;
  line-height:50px;
  height:50px;
  box-sizing: border-box;
  width:100%;
  padding: 0 30px;
  font-size: 130%;
  text-align: center;
  border:2px solid #e57575;
  background:#e3b7b7;
}

.cmSlct.jsSlct .jsSlctBtn:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -5px;
  height: 6px;
  width: 6px;
  border: 2px solid #383838;
  border-left-width: 0;
  border-top-width: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.fixedActionArea {
  position:fixed;
  z-index:700;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width:100%;
  bottom:-100%;
  left:0;
  padding:10px 10px 5px;
  background:#e3b7b7;/*#fdd*/
  -webkit-transition:bottom 0.4s ease 0s;
  -moz-transition:bottom 0.4s ease 0s;
  transition:bottom 0.4s ease 0s;
}
.cmFormHasLabel{
  position:fixed;
  z-index:700;
  width:100%;
  bottom:-100%;
  left:0;
  -webkit-transition:bottom 0.4s ease 0s;
  -moz-transition:bottom 0.4s ease 0s;
  transition:bottom 0.4s ease 0s;
}
.active .fixedActionArea,
.active .cmFormHasLabel {
  bottom:0px;
  max-width: 630px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.fixedActionArea .cmFormTit.cmTxtL{
  font-size:16px;
}
.fixedActionArea .cmFormCol2{
  display:flex;
  justify-content: space-between;
  padding-top:10px;
}
.fixedActionArea .cmFormCol2 .cmIptTxt.cmFormColItem{
  width:36.7%;
  margin-right:3.3%;
  padding:0 20px;
  font-size:16px;
  border-radius:3px;
  border:2px solid #e6e6e6;
  background:#fff;
}
.fixedActionArea .cmFormCol2 #namenext {
  width: 20%;
  position: relative;
  line-height: 50px;
  text-align:center;
  font-size: 15px;
  color: #fff;
  background-color: #30e34c;
  border: 1px solid #fff;
  border-radius: 5px;
  letter-spacing: 0px;
  cursor: pointer;
}
.fixedActionArea .cmFormCol3Tel{
  display:flex;
  justify-content: space-between;
  padding-top:10px;
}
.fixedActionArea .cmFormCol3Tel .cmIptTxt.cmFormColItem{
  width:76.7%;
  margin-right:3.3%;
  padding:0 20px;
  font-size:16px;
  border-radius:3px;
  border:2px solid #e6e6e6;
  background:#fff;
}
.fixedActionArea .cmFormCol3Tel #phonenext {
  width: 20%;
  position: relative;
  line-height: 50px;
  text-align:center;
  font-size: 15px;
  color: #fff;
  background-color: #30e34c;
  border: 1px solid #fff;
  border-radius: 5px;
  letter-spacing: 0px;
  cursor: pointer;
}

label.cmIptTxt input,
label.cmTxtArea textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #333333;
  width: 100%;
  line-height: 44px;
  padding: 0px 0;
  font-size:16px;
  background: none;
  outline: none;
}
#FormAssist_submit {
  display: block;
  width:60%;
  max-width: 450px;
  margin:auto;
  color: #fff;
  font-size: 1.5em;
  padding: 11px 20px 12px;
  background: linear-gradient(to bottom, #30e34c 0%,#39d652 100%);
  border: 1px solid #fff;
  border-radius: 5px;
  min-width: 0px !important;
  cursor: pointer;
}
/****************************
footer
****************************/
footer{
  padding:6px 0;
  padding-top:100px;
  text-align:center;
  background:#fff;
}
footer .innerWrapper li{
  color:#c5c5c5;
}
footer .innerWrapper li a{
  display:inline-block;
  text-decoration: none;
}

/****************************
layer
****************************/
#prBalloon{
  position:fixed;
  overflow:hidden;
  z-index:100;
  width:60px;
  height:60px;
  left:15px;
  bottom: 100px;
  text-align:center;
  color:#fff;
  font-size:12px;
  border-radius:50%;
  background:rgba(0,0,0,.7);
}
#prBalloon .pro{
  padding-top:10px;
}
#prBalloon .epi{
  padding-top:2px;
}
#prBalloon .epi em{
  padding-right:1px;
  font-size:24px;
  font-weight:700;
  font-style:normal;
}
#prBalloon .epi em:before,
#prBalloon.left5 .epi em:before{
  content:'5';
}
#prBalloon.left4 .epi em:before{
  content:'4';
}
#prBalloon.left3 .epi em:before{
  content:'3';
}
#prBalloon.left2 .epi em:before{
  content:'2';
}
#prBalloon.left1 .epi em:before{
  content:'1';
}
#prBalloon.left0 .epi em:before{
  content:'0';
}

.css-cancel {
  display: inline-block;
  margin: 0 20px 0 7px;
  padding: 0;
  width: 2px;
  height: 30px;
  background: #4e4e4e;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  right: 2px;
  z-index: 1000;
}
.css-cancel:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 30px;
    height: 2px;
    margin-top: -2px;
    background: #4e4e4e;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

#bikeSelectModal{
  position:fixed;
  z-index:10000;
  display:none;
  top:0;
  left:0;
  width:100%;
  height:100%;
  padding:50px 30px;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  background:rgba(0,0,0,.7);
}
#bikeSelectModal .bsmWrapper{
  position:relative;
  height:100%;
}
#bikeSelectModal .bsmWrapper #bsmCloseModal{
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  border: 2px solid #4e4e4e;
  padding: 0;
  border-radius: 50px;
  top: -19px;
  right: -19px;
  background: #fff;
  opacity: 1;
  z-index:120;
}
#bikeSelectModal .bsmWrapper .bsmContents{
  overflow:hidden;
  overflow-y: scroll;
  position:relative;
  height:100%;
  border-radius:10px;
  background:#fff;
}
#bikeSelectModal .bsmWrapper .bsmHead{
  padding:20px 0 10px;
  text-align:center;
  font-size:16px;
  font-weight:bold;
  /* border-bottom:1px solid #999; */
}
#bikeSelectModal .bsmWrapper .bsmBody{
  overflow-y:scroll;
  padding:0 10px 10px 10px;
}
#bikeSelectModal .bsmWrapper .bsmBody ul{
  display:flex;
  flex-direction: column;
  align-items:center;
  align-content:center;
}
#bikeSelectModal .bsmWrapper .bsmBody li{
  order:0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 10px;
  font-size:14px;
  border-bottom:1px solid #999;
  cursor: pointer;
}
#bikeSelectModal .bsmWrapper .bsmBody li.lastItem{
  order:10;
}
#bikeSelectModal .bsmWrapper .bsmBody li.index{
  font-size:16px;
  font-weight:bold;
  background:#ededed;
}

#bikeSelectTrigger{
  position:absolute;
  z-index:100;
  display:block;
  top:0;
  left:0;
  width:100%;
  height:100%;
  cursor: pointer;
}

.black-background{
  z-index:110 !important;
}
.popup-inner{
  z-index:120 !important;
}
.popup-box .cmTxtL:not(.cmFormTit) {
  padding: 20px 24px;
  font-size: 116.7%;
  line-height: 1.714 /* 24px */;
}
.popup-box .cmFormList > li{
  letter-spacing: normal !important;
}
.popup-box .cmFormList > li > .cmFormTit{
  display:inline-block;
  text-align: left;
  font-size:16px;
}

.popup-box .cmFormList > li > .cmFormIco01,
.popup-box .cmFormList > li > .cmFormIco02{
  display:inline-block;
  background-color: #e91937;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}

.popup-box .cmSlct.jsSlct{
  position:relative;
  margin-top:13px;
}
.popup-box .cmSlct.jsSlct .jsSlctBtn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  border: solid 2px #e6e6e6;
  border-radius: 3px;
  min-width: 230px;
  height:50px;
  line-height: 25px;
  padding: 11px 30px 9px 30px;
  text-align:center;
  font-size: 130%;
  -webkit-transition: all .3s;
  transition: all .3s;
  vertical-align: top;
  background:#fff !important;
}

.popup-box button.cmBtn01S {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 150px;
  min-width: 150px;
  padding:10px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  background: #4a4a4a;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4a4a4a), color-stop(100%,#000000));
  background: -webkit-linear-gradient(top, #4a4a4a 0%,#000000 100%);
  background: -ms-linear-gradient(top, #4a4a4a 0%,#000000 100%);
  background: linear-gradient(to bottom, #4a4a4a 0%,#000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a4a4a', endColorstr='#000000',GradientType=0 );
  border: solid 1px #000;
  border-radius: 3px;
  font-weight: bold;
  -webkit-box-shadow: rgb(0 0 0 / 18%) 3px 3px 3px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.18) 3px 3px 3px 0px;
  box-shadow: rgb(0 0 0 / 18%) 3px 3px 3px 0px;
}