@charset "UTF-8";
.links  {text-align:right;width:100%;}
.links a {text-decoration:underline;color:#5186ec;font-size:14px;}
.links a:after {content:"＞";display:inline;}
/* .chatform {
  border-radius: 5px;
  box-sizing:border-box;
  background: #fff;
  opacity: 0;
  transition: 0.6s ease;
  position: relative;
  margin: 0 auto;
  padding: 15px 45px 0;
  max-width: 1000px;
}
.chatform form {
  display:block;
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 12px;
  box-sizing: border-box;
}
@media(max-width:414px){
  .chatform {
    padding:5px 10px;
  }
  .chatform form {
    padding:10px 0;
    max-width: 100%;
  }
} */
html{
-webkit-font-smoothing: antialiased;
}
.nextbtn {
  cursor:pointer;
}
/*header.phpに記載
.chatblc:not(:nth-of-type(1) ) {
  display: none;
}*/


.chatblc {
  padding-top: 20px;
}
.chatblc:nth-of-type(1) {
  padding-top:0;
}
.chatmes {
  animation: bounceIn_l 0.4s ease;
	animation-delay:0.5s;
  transform-origin: top left;
  text-align:left;

-webkit-backface-visibility:hidden;
backface-visibility:hidden;
}
.chatblc:not(:nth-of-type(1)) .chatmes {
	animation-delay:0s;
}

.chatmes:after {display:none;}

@keyframes bounceIn_l {
  0% {
    transform: scale(0.6, 0.6);
  }
  100% {
    transform: scale(1.0, 1.0);
  }
}
.pn {
  animation: bounceIn_r 0.8s ease;
	animation-delay:0.5s;
  transform-origin: top right;
  text-align:left;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
}
.chatblc:not(:nth-of-type(1)) .pn  {
	animation-delay:0s;
}
@keyframes bounceIn_r {
  0% {
    transform: scale(0);
  }
  59% {
    transform: scale(0);
  }
  60% {
    transform: scale(0.6, 0.6);
  }
  100% {
    transform: scale(1.0, 1.0);
  }
}
#pn1 .chatmes,
#pn1 .pn{
  animation-duration: 1s;
}

.chatmes{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.chatmes figure{
  margin: 0;
  width: 130px;
  height: 130px;
  box-sizing: border-box;
  overflow: hidden;
}
.chatmes figure img{
  display: block;
  width: auto;
}
.chatmes p{
  background: #fdf0ec;
  width: calc(100% - 150px);
  padding: 16px 24px;
  position: relative;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.chatmes p:before{
  display: block;
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 12px 0;
  border-color: transparent #fdf0ec transparent transparent;
}
.chatmes strong{
  font-family:"ヒラギノ角ゴ Pro W6";
  font-weight: bold;
}
.chatmes strong span{
  font-family:"ヒラギノ角ゴ Pro W6";
  font-weight: bold;
  color: #cc3434;
}

#pn1 .chatmes p{
  font-size:20px;
}
@media(max-width:414px){
	#pn1 .chatmes p{
  font-size:17px;
}
}

@media(max-width:414px){
  .pn{
    padding: 8px 0 0;
  }
  .chatmes{
    margin-bottom: 0;
  }
  .chatmes figure{
    width: 65px;
    height: 65px;
  }
  .chatmes p{
    width: calc(100% - 80px);
    padding: 12px;
    font-size: 14px;
    margin: 0 0 10px;
  }
  .chatmes p:before{
  }
}

/* radio */
.chatform input[type="radio"]{
	display: none;
}

.chatform input[type="text"],
.chatform input[type="email"],
.chatform input[type="tel"],
.chatform input[type="num"],
.chatform textarea{
	border-radius: 5px;
	width:100%;
	max-width:100%;
	box-sizing:border-box;
  border: solid 2px #cccccc;
  box-shadow: 0 0 3px #ccc inset;
  padding: 15px;
  margin-bottom: 16px;
	font-size: 16px;
  outline: 0;
}

.chatform input[type="num"] {
	width:50%;
	max-width:50%;
}
.chatform textarea{
  width: 100%;
  line-height: 1.7em;
  height: 80px;
  margin-bottom: 8px;
}
.chatform select{
  -moz-appearance: none;
  -webkit-appearance: none;
	border-radius: 10px;
	width:100%;
	box-sizing:border-box;
	border:solid 1px rgba(0,0,0,0.2);
	padding:15px 10px;
	font-size:14px;
  background: #fff url(img/arrow2.png) no-repeat 98% center;
  background-size: 24px;
}
.chatform label,
.skipbtn {
	border-radius: 30px;
	border: solid 2px #4286f5;
  display: inline-block;
	padding: 13px 20px;
  margin: 0 0 10px;
  width: 49%;
	text-decoration:none !important;
	color:#1D1D1D !important;
  text-align: center;
  font-size:20px;
}
.chatform label.big,
.skipbtn.big{
	font-weight:bold;
}
::placeholder {
  font-size: 16px;
  font-weight: normal;
  color: #b3b3b3;
}
@media(max-width:414px){
	.pn.flexbox {
		
    align-items: stretch;
	}
  .chatform label,
	.skipbtn{
    padding: 13px 10px;
  margin: 0 0 2%;
  font-size: 16px;
		line-height:1.1;
		
  }
	  .chatform label.big,
	.skipbtn.big{
		font-size:18px;
	}
	#shindan .inner {
		padding:10px;
	}
}
.chatform label:last-of-type,
.chatform label:nth-of-type(even){ margin-right:0;}

.chatform input[type="radio"]:checked + label,
.skipbtn.on,.skipbtn:hover{
	background: #4286f5;
	color:#fff !important;
  font-weight: bold;
}

.esbtn {
	margin-right:0;
}
.skipbtn:before,.skipbtn:after {
	display:none;
}

/* btn */
.nextbtn {
  -webkit-appearance: none;
  border: none;
  width: 80%;
  max-width: 500px;
  margin: 0 auto 10px;
  display: block;
  text-align: center;
  color: #fff!important;
  background: #4286f5 url(../img/arrow1.png) no-repeat 90% center;
  background-size: 7px auto;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50px;
  color: #fff;
}
@media(max-width:414px){
  .nextbtn{
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  #shindan .submit{
    width: 100%;
    padding: 12px;
    font-size: 18px;
  }
}

.submit-block{
  margin-top: 12px;
}
.submit-block .note{
  text-align: center;
}
.submit-block .nextbtn{
  padding: 15px 0;
  font-size: 18px;
}

/* text */
.note {
  color:#999;
  font-size:13px;
  text-align:left;
  line-height:1.1;
  margin-top: 3px;
}
.note a{
  display: inline-block;
  color: #4286f5;
  text-decoration: underline;
}

.er {
  color:#cf5a5d;
  font-size:12px;
  display:block;
  min-height: 1.0em;
}

@media(max-width:414px){
  .note {
    font-size: 12px;
  }
  .er{
    font-size: 11px;
  }
}

/* thanks */
#thanks{
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  width: 94%;
}
#thanks h2{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
#thanks .prev{
  margin-top: 20px;
  font-size: 14px;
}
#thanks .prev a{
  color: #4286f5;
  display: inline-block;
  text-decoration: underline;
}
@media(max-width:414px){
  #thanks h2{
    font-size: 16px;
  }
}

.noteblack {font-size:13px;
text-align:center;
    line-height: 1.6;
}
.linegotxt{
	padding:1em 0;
	font-size:0.9em;
	text-align:left;
}
.linegotxt a{
	text-decoration:underline;
	font-weight:bold;
	color:#0c85e2;
}
.fade {
}
.detail #shindan.fade {
    transition-delay: 0.1s;
	opacity:1;
	transform:translatey(0);
    -moz-transition: all .1s;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    -ms-transition: all .1s;
    transition: all .1s;
	
}
