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

                レスポンシブ!!
			フォーム共通デザイン用

□□□□□□□□□□□□□□□□□□□□□□□□□□
*/

/*◆◆　共通項目　◆◆*/


.must {
	background-color:#D20B10;
}

/* 任意マーク */
.free {
	background-color:#666;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	font-weight:bold;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
	border-radius: 3px;
}


/*リセット*/
input, button, textarea, {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*テキストエリア系デザイン*/
input[type="text"], input[type="email"],input[type="file"], textarea{
	font-size:1.3em;
	letter-spacing:0.1em;
	color:#666;
	border:solid 1px #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow:2px 2px 2px 0 rgba(200, 200, 200, 0.2) inset;
	-moz-box-shadow:2px 2px 2px 0 rgba(200, 200, 200, 0.2) inset;
	box-shadow:2px 2px 2px 0 rgba(200, 200, 200, 0.2) inset;

}
textarea{
	height:8em;
}
/*送信ボタン*/

input[type="submit"] {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  
  position: relative;
  z-index: 2;
  background-color: #666;
  border: 2px solid #666;
  color: #fff;
  line-height: 50px;
}
input[type="submit"]:hover {
  background-color: #fff;
  border-color: #6187CD;
  color: #6187CD;
}

input[type="submit"]::before,
input[type="submit"]::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #666;
}
input[type="submit"],
input[type="submit"]::before,
input[type="submit"]::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input[type="submit"]::before {
  top: 0;
}
input[type="submit"]::after {
  bottom: 0;
}
input[type="submit"]:hover::before,
input[type="submit"]:hover::after {
  height: 0;
  background-color: #6187CD;
}



/*プライバシーポリシー(iframe)部分*/
.pp_body{
	margin:10px;
}
.pp_iframe{
	border:1px solid #999;
	margin-bottom:10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
dl{
	margin:30px 0;
}

dt{
	border-left:5px solid #6187CD;
	padding-left:12px;
	font-weight:bold;
	margin:15px 0;
}

dd{
	margin-left:20px;
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆PC用◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media only screen and (min-width: 641px) {


/*フォームの長さなんかは各端末で指定*/

/*テキストエリアサイズ*/
input[type="text"], input[type="email"],input[type="file"], textarea{
	width:825px;
	padding:5px;
}

/*送信ボタンサイズ*/
input[type="submit"] {
	font-size:18px;
	width: 825px;
	padding:10px 0;

}
.pp_iframe{
	width:825px;
	height:150px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆↓PC用◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆↑PC用◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆スマホ用◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media only screen and (max-width: 640px) {

/*テキストエリア*/
input[type="text"], input[type="email"],input[type="file"], textarea{
	width:100%;
	box-sizing:border-box;
	padding:5px;
}

/*送信ボタンサイズ*/
input[type="submit"] {
	font-size:1.1em;
	width: 100%;
	padding:7px;
	line-height: 54px;  
}

.pp_iframe{
	width:100%;
	height:150px;
}


/*◆◆◆◆◆◆◆↓スマホ用◆◆◆◆◆◆◆*/    
}
/*◆◆◆◆◆◆◆↑スマホ用◆◆◆◆◆◆◆*/



