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

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

html,body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
}


/*パンくずリスト*/
.breadcrumb{
	margin: 15px 0 15px 10px;
	font-size: 10px;
	overflow: hidden;
}

.breadcrumb li{
	line-height: 1.5;
	float: left;
}

.breadcrumb li:last-child{
	font-weight: bold;
}

.breadcrumb li a{
	color: rgb(100,100,100);
}

.breadcrumb .next::after{
	content: ">";
	margin: 0 10px;
}


#wrapper{
	width:90%;
	margin:0 auto;
}


/*タイトル周り*/
.title_box{
	position: relative;
	width: 100%;
	height: 200px;
	background: url(../images/form-entry_mv.jpg) no-repeat center center;
	background-size: cover;
}

.title_box .float_box{
	position: absolute;
	top: 54px;
	left: 0;
	right: 0;
	width: 247px;
	margin: auto;
}

h1.title{
	padding: 18px 24px;
	font-size: 22px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.28rem;
	background: rgba(255,255,255,0.8);
	border-radius: 4px;	
	float: left;
}

h1.title .small{
	margin: 12px 0 0 0;
	font-size: 14px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.2rem;
	color: rgb(234,109,164);
	font-family: Makinas-Scrap;
	display: block;
}


/*エントリーフォーム*/
#entry{
	width: 100%;
	margin: 0 auto;
}

#entry .step{
	margin: 40px auto 0;
}

#entry .step img {
    width: 100%;
    height: auto;
}

#entry .text{
	margin: 40px auto 20px;
	font-size: 14px;
	line-height: 1.3;
	text-align: center;
}

#entry .last{
	margin: 60px 0 100px;
	text-align: left;
}

.formItems{
	width: 100%;
	border: solid rgb(222,222,222);
	border-width: 0 1px 1px 1px;
	overflow: hidden;
}

.formItems_1{
	border:1px solid rgb(222,222,222);
}

.formItems p.label{
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 14px;
	text-align: center;
	background: rgba(0,184,238,0.2);
	box-sizing: border-box;
}

.formItems .must{
	margin: 0 0 0 5px;
	padding: 1px 2px;
	font-size: 10px;
	color: rgb(255,255,255);
	font-family: Makinas-Scrap;
	background: rgb(230,0,20);
	border: 1px solid rgb(230,0,20);
	border-radius: 2px;
}

.formItems input{
	width: 96%;
	margin: 14px 2%;
	font-size: 16px;
 	transform: scale(0.9);
	box-sizing: border-box;
}

.formItems p{/*確認*/
	margin: 0 auto;
	padding: 10px;
	font-size: 14px;
	text-align: center;
}

.formItems_4 input{
	width: 13px;
	margin: 0 5px 0 0;
}

.formItems_4 label{
	width: 55px;
	margin: 10px auto;
	font-size: 14px;
	display: block;
}

.formItems_9 select{
	width: 96%;
	margin: 18px 2% 17px;
	font-size: 16px;
 	transform: scale(0.9);
}

.formItems_10 label,
.formItems_10 p{
	margin: 20px auto 0;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	display: block;
}

.formItems_10 label{
	width: 80px;
}

.formItems_10 a{
	color:rgb(100,100,100);
	border-bottom: 1px solid rgb(100,100,100);
}

.formItems_10 a:hover{
	color: rgb(230,0,20);
	border-bottom: 1px solid rgb(230,0,4);
}

.formItems_11 {
	text-align: center;
}

input[name=btn_confirm],
input[name=btn_back],
input[name=btn_submit],
.formItems_11 .btn_submit,
.formItems_11 .btn_back{
	width: 250px;
	height: 60px;
	margin: 20px auto 80px;
	padding: 5px 20px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	border: none;
	border-radius: 3px;
	box-shadow: 0 3px 0 rgb(0,146,189);
	background: rgb(0,184,238);
	cursor: pointer;
}

input[name=btn_back],
.formItems_11 .btn_back{
	margin: 20px auto 0;
	box-shadow: 0 3px 0 #777;
	background: #999;
}

.formItems_11 .btn_submit a,
.formItems_11 .btn_back a{
	color: #fff;
}

/*エラーメッセージ*/
ul.error_list {
	width: 100%;
	margin: 0 auto 20px;
	padding: 20px;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
	box-sizing: border-box;
}

ul.error_list li{
	color: #ff2e5a;
	font-size: 12px;
	line-height: 1.5;
}

/* Webkit */
::-webkit-input-placeholder {
	color: rgb(200,200,200);
	opacity: 1;
}
/* Firefox 18 以前 */
:-moz-placeholder {
	color: rgb(200,200,200);
}
/* Firefox 19 以降 */
::-moz-placeholder {
	color: rgb(200,200,200);
/* Firefox 19 以降のデフォルトでは */
/* color ではなく opacity で色合いを調整しているため */
/* 文字色を指定する場合、opacity を 1 にする必要がある */
	opacity: 1;
}
/* IE 10 以降 */
:-ms-input-placeholder {
	color: rgb(200,200,200);
}
/* CSS4では以下のような名前の擬似クラスになるらしい */
/* おそらく今のところ対応ブラウザはない */
:placeholder-shown {
	color: rgb(200,200,200);
}
}

/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {
	
html,body{
	overflow: visible;
}
	
#container{
	margin:0 auto;
	width:100vw;
}


/*パンくずリスト*/
.breadcrumb{
	max-width: 1080px;
	margin: 15px auto;
}

.breadcrumb li a:hover{
	opacity:0.8;
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}


#wrapper{
	width:1080px;
}


/*タイトル周り*/
.title_box{
	width: 1080px;
	height: 310px;
}

.title_box .float_box{
	top: 105px;
	width: 391px;
}

h1.title{
	padding: 18px 40px;
	font-size: 36px;
}

h1.title .small{
	font-size: 20px;
}


/*エントリーフォーム*/
#entry{
	width: 960px;
}

#entry .step{
	width: 768px;
	margin: 60px auto 0;
}

#entry .text{
	margin: 60px auto 20px; 
	line-height: 1.5;
	text-align: left;
}

.formItems p.label{
	width: 200px;
	padding: 20px 25px;
	text-align: left;
	float: left;
}

.formItems .must{
	margin: 0;
	float: right;
}

.formItems p{/*確認*/
	margin: 0 20px;
	padding: 20px 0;
	float: left;
}

.formItems input{
	width: 720px;
	float: left;
	font-size: 14px;
 	transform: scale(1);
}

.formItems_4 input{
	width: 13px;
	margin: 19px 5px 19px 0;
	float: none;
}

.formItems_4 label{
	height: 54px;
	margin: 0 0 0 20px;
	line-height: 54px;
	float: left;
}

.formItems_9 select{
	width: 225px;
	margin: 16px 0 15px 20px;
	font-size: 14px;
 	transform: scale(1);
}

input[name=btn_confirm],
input[name=btn_back],
input[name=btn_submit],
.formItems_11 .btn_submit,
.formItems_11 .btn_back{
	margin: 60px 0 100px 0;
}

input[name=btn_back],
.formItems_11 .btn_back{
	margin: 60px 24px 100px 0;
}

input[name=btn_confirm]:hover,
input[name=btn_back]:hover,
input[name=btn_submit]:hover,
.formItems_11 .btn_submit:hover,
.formItems_11 .btn_back:hover{
	opacity:0.8;
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}

/*エラーメッセージ*/
ul.error_list {
	width: 780px;
}
}


/*=========================================== 
PC向けのレイアウトの指定：1080px〜
===========================================*/
@media only screen and (min-width: 1080px) {

.title_box{
	width: 100vw;
}
}