@charset "UTF-8";

/********************************
chat
*********************************/
.chat_wrapper {
  width: auto;
  max-width: 800px;
  margin: 30px auto;
  padding: 0 10px;
  opacity: 0;
  transition: 0.6s ease;
}
.chat_box:not(#no01){display: none;}
.left_container {
  opacity: 0;
  animation: bounceIn_l 0.4s ease;
  animation-fill-mode: forwards;
  transform-origin: top left;
}
.right_container {
  opacity: 0;
  animation: bounceIn_r 0.8s ease;
  animation-fill-mode: forwards;
  transform-origin: top right;
}
@keyframes bounceIn_l {
0% {
  opacity: 1; 
  transform: scale(0.6, 0.6);
}
100% {
  opacity: 1; 
  transform: scale(1.0, 1.0);
}
}
@keyframes bounceIn_r {
0% {
  opacity: 1; 
  transform: scale(0);
}
59% {
  opacity: 1; 
  transform: scale(0);
}
60% {
  opacity: 1; 
  transform: scale(0.6, 0.6);
}
100% {
  opacity: 1; 
  transform: scale(1.0, 1.0);
}
}
.a02 {animation-delay: 0.8s;}
.a03 {animation-delay: 1.2s;}
.a04 {animation-delay: 1.6s;}
.left_container dl {
  width: 500px;
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.left_container dl dt {width: 80px;}
.left_container dl dt img {
  width: 100%;
  border-radius: 40px;
  border: 1px solid #cecece;
}
.left_container dl dd {
  width: calc(100% - 120px);
  position: relative;
  background: #ffffff;
  border: 1px solid #cecece;
  padding: 15px;
  margin-left: 25px;
  border-radius: 6px;
}
.left_container dl dd:before, .left_container dl dd:after{
  right: 100%;
  top: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.left_container dl dd:after{
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #ffffff;
  border-width: 12px;
  margin-top: -12px;
}
.left_container dl dd:before {
  border-color: rgba(206, 206, 206, 0);
  border-right-color: #cecece;
  border-width: 13px;
  margin-top: -13px;
}
.right_container {
  margin-bottom: 20px;
  display: flex;
  flex-flow: row-reverse wrap;
}
.input_area {
  padding: 20px;
  border-radius: 6px;
  background-color: #eef7fc;
}
.input_area div {text-align: center;}
a.input_btn {
  display: block;
  transition: 0.2s;
  width: 270px;
  max-width: 100%;
  padding: 10px 0;
  margin: 20px auto 0 auto;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border: 1px solid #8bcaec;
  border-radius: 6px;
  background-color: #8bcaec;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
}
a.input_btn .input_sub{
  display: block;
  font-size: 12px;
}
a.input_btn:hover {opacity: 0.7;}
a.submit {
  border: 1px solid #db6782;
  background-color: #db6782;
}
a.disable {
  background-color: #ffffff;
  border: 1px solid #cecece;
  color: #5a5a5a;
  pointer-events: none;
}
a.done {
  transform: translateY(3px);
  border: 1px solid #cecece;
  background-color: #cecece;
  color: #5a5a5a;
  box-shadow: none;
  pointer-events: none;
}
/* modal */
#lean_overlay {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
}
.modal {
  display: none;
  width: 80%;
  max-width: 500px;
  top: 50%!important;
  transform: translateY(-50%);
  border-radius: 6px;
  background: #FFF;
}
.modal_inner {
  padding: 30px 40px;
  position: relative;
  text-align: left;
}
.modal_inner img {width: 100%;}
.cancel {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(0,0,0,0.8);
}
.cancel::before,
.cancel::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 4%;
  margin: -2% 0 0 -20%;
  background-color: #fff;
}
.cancel::before {transform: rotate(-45deg);}
.cancel::after {transform: rotate(45deg);}
.ul_point {
  max-width: 85%;
  margin: 30px auto;
}
.ul_point li {
  font-size: 24px;
  color: #5a5a5a;
  line-height: 2.5rem;
}
.ul_point li .large_txt {
  font-size: 120%;
  font-weight: bold;
}
.ul_point li:before {
  color: #8ca0af;
  padding-right: 8px;
  font-size: 40px;
}
.ul_point li:first-child:before {content: "\002776";}
.ul_point li:nth-child(2):before {content: "\002777";}
.ul_point li:nth-child(3):before {content: "\002778";}
.continue {
  max-width: 75%;
  color: #fff;
  font-size: 24px;
  padding: 10px 0;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s linear;
  border-radius: 6px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
  background-color: #f8a244;
}
.popup_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.popup_03 dl {width: 60%;}
.popup_03 dl dt {margin-bottom: 5px;}
.popup_03 dl dd {
  padding: 3%;
  margin: 1%;
  border: 1px solid #cecece;
  float: left;
  width: 40%;
  max-width: 100px;
}
.modal_emb {
  width: 40%;
  padding-right: 20px;
}
.popup_03_02 {padding: 20px 0;}
.popup_03_02 dl {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popup_03_02 dl dt {
  width: 100%;
  margin: 15px 0 5px 0;
  text-align: center;
}
.popup_03_02 dl dd {
  padding: 1%;
  margin: 1%;
  border: 1px solid #cecece;
  width: 28%;
  max-width: 100px;
}
.modal_emb_02 {
  width: 55%;
  margin: 0 auto;
}
.continue:hover {opacity: 0.7;}
.inner01 p.caution_txt{
  text-align: center;
  font-size: 15px;
  margin: 20px auto;
}
.bottom_txt {
  font-size: 80%;
  text-align: center;
  margin-top: 16px;
}
.input_example{
  margin: 10px 0 0 10px;
  text-align: left;
}
.error_msg {
  display: none;
  color: #db6782;
  margin: 10px 0 0;
  font-size: 80%;
  text-align: center;
}
strong {
  color: #db6782;
  font-weight: bold;
}
.all_show {
  margin-top: 10px;
  text-align: right;
  font-size: 70%;
  cursor: pointer;
}

@media (max-width: 600px) {
.input_area {width: 100%;}
.modal_inner {padding: 15px;}
.left_container {font-size: 16px;}
.input_btn {font-size: 16px;}
.cancel {
  width: 30px;
  height: 30px;
  top: -10px;
  right: -10px;
}
.ul_point {
  max-width: 100%;
  margin: 20px auto;
}
.ul_point li {
  font-size: 14px;
  line-height: 1.8rem;
}
.ul_point li:before {
  padding-right: 5px;
  font-size: 24px;
}
.continue {
  font-size: 16px;
  padding: 10px 0;
}
}