@charset "UTF-8";
/* CSS Document */

/*----------------------------
 　　　標準設定
----------------------------*/

@font-face{
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;	
}

html{
	font-size: 62.5%;
}
	
*{
	margin: 0;
}

body{
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #80796a;
/*	background-color: #efece7;*/
}
img{
	max-width: 100%;
	height: auto;
}
	
.form-row{  
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/*----------------------------
 　　　フォームのheader
----------------------------*/
	
.form-header{
	width: 100%;
	padding: 47px 0;
	background-color: #fff;
}
	
.header-logo{
	width: 214px;
}

.playroom-logo{
	width: 170px;
}
	
.flex-logo{
	display: flex;
	justify-content: space-between;
}



/*----------------------------
 　　　フォームの内容
----------------------------*/
.main{
	padding-top: 50px;
	padding-bottom: 100px;
	text-align: center;
	background-color: #efece7;
}	
	
h2 {
	width: 400px;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 20px 0;
}

.flexbox{
	display: flex;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
	
.flex-left{
	width: 70%;
}

.sp-br{
	display: none;
}

input[type=text] {
	width: 40%;
	padding: 15px;
	font-size: 1.8rem;
	border: none;
	border-radius: 3px;
	background: #fff;
}

.element_wrap {
/*	margin-bottom: 20px;*/
	padding: 40px 0;
	border-bottom: 1px solid #ccc;
	text-align: left;
}

label {
	display: inline-block;
/*	margin-bottom: 10px;*/
	font-weight: bold;
	letter-spacing: 0.1em;
	width: 170px;
}

.element_wrap p {
	display: inline-block;
	margin:  0;
	text-align: left;
	color: #000;
}

textarea[name=contact] {
	padding: 15px;
	width: 70%;
	height: 100px;
	font-size: 1.8rem;
	border: none;
	border-radius: 3px;
	background: #fff;
}
	
.error_list {
	padding: 10px 30px;
	color: #ff2e5a;
	font-size: 1.4rem;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}	

/*----------------------------
 　　　フォームのボタン
----------------------------*/
	
button{
	overflow: visible;
	}


button[name=btn_confirm] {
	margin-top: 20px;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	color: #fff;
	cursor: pointer;
	border: none;
	width: 170px;
	height: 200px;
	background: url("../img/form/stamp_check.svg") center center no-repeat;
}
	
button[name=btn_submit] {
	margin-top: 50px;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	color: #fff;
	cursor: pointer;
	border: none;
	width: 170px;
	height: 200px;
	background: url("../img/form/stamp_send.svg") center center no-repeat;
}

button[name=btn_submit]>p{
	margin-top: 110px;
}
	
button[name=btn_back] {
	margin-top: 20px;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	color: #fff;
	cursor: pointer;
	border: none;
	width: 170px;
	height: 200px;
	background: url("../img/form/stamp_check.svg") center center no-repeat;
}

.finish-copy{
	margin-top: 180px;
	margin-bottom: 180px;
	font-size: 2rem;
	letter-spacing: 0.1em;
}

/*----------------------------
 　　　フォームのfooter
----------------------------*/

.form-footer{
	background-color: #fff;
	padding: 55px 0 55px;
}

.copyright{
	text-align: center;
	font-size: 1.3rem;
	line-height: 1;
	font-family: aktiv-grotesk, sans-serif;
	letter-spacing: 0.1em;
	color: #6c6c6c;
}



/*--------------------------------------------------------
 　　　SP用　480px以下の場合
--------------------------------------------------------*/

@media screen and (max-width:479px){
	
/*----------------------------
 　　　フォームのheader
----------------------------*/
	
	.form-header{
		padding: 20px 0;
	}
	
	.header-logo{
		width: 110px;
	}
	
	.playroom-logo{
	width: 90px;
}
	
	.form-row{  
		padding: 0 20px;
		box-sizing: border-box;
	}
	
/*----------------------------
 　　　フォームの内容
----------------------------*/
	
	.main{
	padding-top: 30px;
	padding-bottom: 30px;
}
	
	h2 {
	width: 70%;
	margin-bottom: 20px;
	padding: 0;
}

	.flexbox{
		display: block;
	}
	
	.flex-left{
		width: 100%;
	}
	
	.flex-right{
		width: 100%;
	}
	
	input[type=text] {
	width: 100%;
}
	
.element_wrap {
	padding: 10px 0;
	border-bottom: none;
}
	
.sp-br{
	display: block;
}

label {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
	
.element_wrap>p{
	margin-top: 10px;
}

textarea[name=contact] {
	width: 100%;
	height: 100px;
}
	
.error_list {
	padding: 10px 30px;
	color: #ff2e5a;
	font-size: 1.4rem;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}	
	
/*----------------------------
 　　　フォームのボタン
----------------------------*/
	
button[name=btn_confirm] {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	width: 140px;
	height: 170px;
}
	
	.button-list{
		display: flex;
		justify-content: space-around;
	}
	
button[name=btn_submit] {
	margin-top: 30px;
	font-size: 1.5rem;
	width: 140px;
	height: 170px;
}

button[name=btn_submit]>p{
	margin-top: 110px;
}
	
button[name=btn_back] {
	margin-top: 30px;
	font-size: 1.5rem;
	width: 140px;
	height: 170px;
}
	
/*----------------------------
 　　　フォームのfooter
----------------------------*/

.form-footer{
	padding: 30px 0 30px;
}		
		
}

