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

/*============================
	enqform
============================*/

body {
	background-color: #f3d8e0;
	background-image: url(../images/bg_dot.gif);
}

.pro_content {
	position: relative;
	z-index: 1;
	width: min(90vw, 800px);
	margin: 50px auto 50px;
	padding: 1px;
	font-size: 1rem;
	border-radius: 15px;
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.3); 
}

.sp_box {
	width: 90%;
	margin: 1rem auto 2rem;
	padding-bottom: 50px;
}

#aneamaEnqForm .sp_box > p {
/*	margin-top: 3rem;	*/
	margin-top: 2rem;
	margin-bottom: 1.5rem;
}
#aneamaEnqForm .sp_box > p:before {
	content: "ATTENTION";
	position: absolute;
	top: -1.5em;
	left: 0;
	font-size: 150%;
	font-weight: bold;
	color: #ff48b8;
}
#aneamaEnqForm .sp_box > p > small {
	font-size: 80%;
}

#aneamaEnqThanks .sp_box {
	margin-top: 5rem;
}
#aneamaEnqThanks .sp_box figure {
	margin-bottom: 2rem;
	text-align: center;
}

#aneamaEnqThanks .sp_box > p:before {
	content: "送信が完了しました！";
	position: absolute;
	top: -1.8em;
	left: 0;
	font-size: 150%;
	font-weight: bold;
	color: #ff48b8;
}
.sp_box > p {
	position: relative;
	margin-bottom: 3rem;
	padding: 0.5rem;
	font-size: 0.9rem;
	white-space: pre;
	white-space: pre-line;
	text-align: left;
	border-style: double;
	border-color: #ff48b8;
	border-width: 8px 0;
}
.sp_box small {
	margin: 0.5rem 0 0.2rem;
	font-weight: normal;
}

/*	フォーム
----------------------------*/
.enqBox {
	margin-top: 1rem;
	text-align: left;
}
.enqBox > section { margin-bottom: 2rem; }
/*.enqBox h1 {
	margin-bottom: 0.5rem;
	padding: 0.3rem 0.5rem 0.3rem;
	font-size: 1.2rem;
	color: #fff;
	text-align: left;
}
.enqBox h1::before {
	top: -2px;
}*/
.enqBox h1 {
	position: relative;
	z-index: 199;
	width: auto;
	height: 50px;
	margin: 15px auto;
	color: #fff;
/*	font-size: 1rem;*/
	font-size: clamp(1rem, 0.899rem + 0.51vw, 1.5rem);
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	background-color: #333;
}
.enqBox h2 {
/*	margin: 1.8rem 0 0.5rem;
	font-size: 1.1rem;
	border-width: 0 0 5px 10px;*/
	margin: 1.5vw 0 0.5vw;
	font-size: clamp(1.1rem, 1.019rem + 0.41vw, 1.5rem);
}

.enqBox p {
	width: 100%;
	margin: 0.5rem 0 1rem;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	box-shadow: 4px 4px 0px 0px rgba(200,200,200,0.5);
	background-image: url(images/bg_1.gif);
/*	background-color: #f5f5f5;	*/
}

.qpoint {
/*	padding-bottom: 1.5rem;	*/
	padding-bottom: 1vw;
}

/*▼▼▼セレクトボックス▼▼▼*/
select::-ms-expand {
	display: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: min(100%, 13rem);
	margin-bottom: 0.5rem;
	padding: 5px;
	font-size: 1rem;
	border-radius: 5px;
	border: 1px solid #ff48b8;
	background: url(./selectArrow.gif) no-repeat center right #fff;
	box-shadow: none;
}


/*▼▼▼ラジオボタン▼▼▼*/
.selBtn {
	display: block;
	-js-display: flex;
	-webkit-display: flex;
	display: flex;
}
input[type="radio"] {
	display: none;
}
form#mailformpro input[type="radio"] + label {
	flex: 1;
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 10px;
	background-color: #f3f3f3;
	color: #869198;
	font-size: 16px;
	text-align: center;
	transition: .2s;
}
form#mailformpro input[type="radio"] + label ~ label {
	margin-left: 0.5rem;
}
form#mailformpro input[type="radio"] + label:hover {
	background-color: #fbf6f6;
}

form#mailformpro input[type="radio"]:checked + label {
	color: #666;
	font-weight: bold;
	background-color: #ffff00;
}


/*▼▼▼チェックボックス▼▼▼*/
input[type="checkbox"] {
	display: none;
}
form#mailformpro .checkbox {
	-webkit-transition: background-color .2s linear;
	transition: background-color .2s linear;
	position: relative;
	display: block;
	width: auto;
	margin-bottom: 8px;
	padding: 0.5rem 0.5rem 0.5rem 2.8rem;
	font-size: 1rem;
	border-radius: 8px;
	background: #f8eef2;
	vertical-align: middle;
	cursor: pointer;
}
.checkbox:hover {
	background: rgba(255,255,255,0.9);
}
.checkbox:hover:after {
	border-color: #ff82d4;
}
.checkbox:after {
	-webkit-transition: border-color .2s linear;
	transition: border-color .2s linear;
	position: absolute;
	top: 1rem;
	left: 0.8rem;
	display: block;
	margin-top: -10px;
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: "";
}
.checkbox:before {
	content: "";
	-webkit-transition: opacity .2s linear;
	transition: opacity .2s linear;
	position: absolute;
	top: 0.6rem;
	left: 1.3rem;
	display: block;
	width: 0.5rem;
	height: 0.8rem;
	border-right: 3px solid #ff82d4;
	border-bottom: 3px solid #ff82d4;
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type="checkbox"]:checked + .checkbox:before {
	opacity: 1;
}

input.ctxt + label + div {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: .8s;
}
input.ctxt:checked + label + div {
	height: auto;
	opacity: 1;
	transition: .8s;
}

/*▼▼▼テキスト入力欄▼▼▼*/
input[type="text"], textarea {
	display: block;
	width: 100%;
	margin-top: 0.2rem;
	margin-bottom: 1rem;
	padding: 5px 8px;
	font-size: 1em;
	border: none;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-family: 
Verdana, "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	resize: vertical;
}
textarea[maxlength="25"] {
	max-width: 30rem;
	height: 2.5rem;
}
textarea[maxlength="50"] {
	height: 4.3rem;
}
textarea[maxlength="250"] ,
textarea[maxlength="500"] { min-height: 8rem; }
textarea[maxlength="2500"] { min-height: 10rem; }

input[type="text"]:focus, textarea:focus {
	background-color: #fffff0;
}

/*▼▼▼ボタン▼▼▼*/
input[type="submit"] {
	display: none;
}
.button {
	width: 380px;
	margin: 0 auto;
	text-align: center;
}
.mfp_buttons > button,
.btnTop {
	display: inline-block;
	margin: 0 auto 10px;
	padding: 10px 25px;
	cursor: pointer;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: .2s;
	background: -ms-linear-gradient(top, #ffffff 0%, #eee 100%);
	background: -moz-linear-gradient(top, #ffffff 0%, #eee 100%);
	background: -webkit-linear-gradient(top, #ffffff 0%,#eee 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#eee 100%);
}
.mfp_buttons > button:hover,
.btnTop:hover {
	transition: .2s;
	box-shadow: 0 2px 10px 0px rgba(200,200,200,1);
}

/*▼▼▼キャラクターアイコン▼▼▼*/
figure.chara_icon {
	display: block;
	width: 20vw;
	max-width: 300px;
	border-width: 2px;
	border-style: solid;
	border-color: #ecf4ff;
}
figure.chara_icon img {
	display: block;
}


/***************************************/

#mfp_phase_confirm { font-size: 90%; }
#mfp_phase_confirm_inner h4 { margin-bottom: 1rem; }
#mfp_confirm_table { margin-bottom: 1.5rem; }
#mfp_confirm_table th {
	width: 30vw;
	color: #666666;
	text-align: left;
	background-color: #eeeeee;
}
#mfp_confirm_table th,
#mfp_confirm_table td { padding: 0.5rem; }
#mfp_confirm_table tr + tr {
	margin: 0.8rem 0;
}

#mfp_warning { color: #ff0000; }

footer {
	text-align: center;
}

@media screen and (min-width:960px){
/*	PC || 960px ~	*/

	.pro_content {
		border-radius: 30px;
	}
	
	#aneamaEnqForm .sp_box > figure {
		margin-top: 3rem;
	}
	
	#aneamaEnqForm .sp_box > p {
/*		margin-top: 5rem;*/
		margin-top: 3rem;
		font-size: 1.1rem;
	}
	
	.enqBox { font-size: 1.1rem; }
	.enqBox h1 {
		margin: 30px auto;
	}
/*	.enqBox h1, .enqBox h2 {
		font-size: 1.5rem;
	}*/
	.enqBox p { width: 90%; }
		
	.selBtn { max-width: 70%; }
	form#mailformpro input[type="radio"] + label {
		padding: 15px;
		font-size: 1.3rem;
	}
	form#mailformpro .checkbox {
		max-width: 25rem;
	}
	input[type="text"] { max-width: 27rem; }
	textarea { max-width: 90%; }
	textarea[maxlength="500"] { height: 4rem; }
	textarea[maxlength="2500"] { height: 6rem; }

	#mfp_confirm_table th {
		width: 10rem;
	}
	figure.chara_icon {
		max-width: 200px;
		border-width: 3px;
	}
}
