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

/* 背景-------------*/
.entry-form{
	padding-top: 80px;
	background-image: url("../images/pattern/background1.png");
	background-repeat:repeat;
	background-size: auto;
	background-position: top center;
	background-color: #FFFDF2;
	z-index: -1;
}
/* /背景-------------*/



/* パンくずリスト-------------*/
.entry-form nav.wrapper{
	padding-left: 30px;
	padding-right: 30px;
}

.breadcrumb{
	padding-top: 15px;
}

.breadcrumb ol{
	list-style: none;
}

.breadcrumb ol li{
	display: inline;
	list-style: none;
	font-size: 14px;
}

.breadcrumb ol li:after{
	content: "＞";
	padding: 0 0.2em;
}

.breadcrumb ol li:last-child:after{
	content: "";
}
/* /パンくずリスト-------------*/



/* フォームエリア-------------*/
.form-area{
	padding: 60px 0;
}

.form-area .wrapper{
	padding: 30px;
	border-radius: 10px;
	background-color: #FFFDF2;
}
/* /フォームエリア-------------*/



/* 見出し-------------*/
h2{
	font-size: 2.5rem;
	margin-bottom: 30px;
	font-weight: bold;
	color: #FCAF75;
	border-bottom: 2px solid #FCAF75;
	text-align: center;
}
/* /見出し-------------*/



/*----- ステータス -----*/
.entry-step{
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 0.5rem;
}

.entry-step span{
	display: block;
	width: calc(100% / 3);
	background-color: #FEE6CC;
	text-align: center;
	color: #333333;
	line-height: 38px;
	border-radius: 10px;
}

.entry-step span:not(:last-of-type){
	margin-right: 15px;
}

.entry-step span.active{
	background-color: #FCAF75;
}

.entry-text{
	text-align: justify;
	margin-bottom:60px;
}
/*----- /ステータス -----*/



/*----- 注釈（bootstrap参照） -----*/
.notes{
	font-size:80%;
	color:#dc3545;
}
/*----- /注釈 -----*/



/*----- テーブル -----*/
table {
    border-collapse: collapse;
    width: 100%;
}
 
th {
    width: 25%;
    border: 1px solid #C3C3C3;
    padding: 15px;
    background-color: #FCAF75;
	font-weight: normal;
    text-align: left;
}

td {
    width: 75%;
    border: 1px solid #C3C3C3;
    padding: 15px;
    background-color: #fff;
}
/*----- /テーブル -----*/



/*----- インプット -----*/
input {
    box-sizing: border-box;
    width: 100%;
}
/*----- /インプット -----*/



/*----- form-control（bootstrap参照） -----*/ 
.form-control{
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	color: #333333;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #C3C3C3;
	appearance:none;
	border-radius: 0.25rem;
}
/*----- /form-control（bootstrap参照） -----*/ 



/*----- プレースホルダ  -----*/
.form-control::placeholder {
	color: #C3C3C3;
}
/*----- /プレースホルダ  -----*/



/*----- form-form-select（bootstrap参照） -----*/
.form-select{
	display: block;
	width: 250px;
	padding: 0.375rem 1.75rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	color: #333333;
	vertical-align: middle;
	background-color: #fff;
	background-image:url("../images/icon/arrow-select.svg");/* 矢印はbootstrapで使用していたものをdlして使用（色はテキストカラーに変更した）-------------*/
	background-repeat:no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #C3C3C3;
	border-radius: 0.25rem;
	appearance:none;
}
/*----- /form-form-select（bootstrap参照） -----*/ 



/*----- ボタン -----*/
.btn-area{
	text-align: center;
	margin-top: 30px;
}

.btn-next,
.btn-back{
	display: inline-block;
	width: 250px;
	position: relative;
	margin: 0 10px;
}

.btn-next:after{
	content: "";
	position: absolute;
	top:calc(50% - 5px);
	right: 60px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333333;
	border-left: 1px solid #333333;
	transform: rotate(135deg);
	transition: 0.5s;
}

.btn-back:after{
	content: "";
	position: absolute;
	top:calc(50% - 5px);
	left: 60px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333333;
	border-left: 1px solid #333333;
	transform: rotate(-45deg);
	transition: 0.5s;
}

input[type="submit"]{
	display: inline-block;
	width: 100%;
	background-color: #fff;
	text-align: center;
	border-radius:20px;
	border: 1px solid #333333;
	padding: 5px 0;
	transition: 0.5s;
	color: #333333;
	font-weight: normal;
}

.btn-next:hover:after,
.btn-back:hover:after{
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
}

input[type="submit"]:hover{
	color: #fff;
	background-color: #FFD800;
	border: 1px solid #FFD800;
}

.btn-completearea{
	text-align: center;
	margin-top: 30px;
	padding-bottom: 300px;
}

.btn-backtop{
	display: inline-block;
	width: 250px;
	background-color: #fff;
	text-align: center;
	border-radius:20px;
	border: 1px solid #333333;
	padding: 5px 0;
}

.btn-backtop span{
	padding-left: 15px;
	position: relative;
	display: inline-block;
}

.btn-backtop span:before{
	content: "";
	position: absolute;
	top:calc(50% - 5px);
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333333;
	border-left: 1px solid #333333;
	transform: rotate(-45deg);
	transition: 0.5s;
}

.btn-backtop:hover{
	color: #fff;
	opacity: 1;
	background-color: #FFD800;
	border: 1px solid #FFD800;
}

.btn-backtop:hover span:before{
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
}
/*----- /ボタン -----*/



/*----- リキャプチャ -----*/
.recaptcha-area{
	text-align: center;
	margin-top: 30px;
}

.g-recaptcha {
	margin-right:auto;
	margin-left:auto;
	text-align: center;
	width:300px;
}
/*----- /リキャプチャ -----*/









/* タブレット用（1024px以下）-------------*/
@media screen and (max-width: 1024px) {
/* 背景-------------*/
.entry-form{
	padding-top: 50px;
}
/* /背景-------------*/
}
/* /タブレット用（1024px以下） -------------*/









/* スマホ用（600px以下） -------------*/
@media screen and (max-width: 600px) {
/* パンくずリスト-------------*/
.entry-form nav.wrapper{
	padding-left: 4%;
	padding-right: 4%;
}
/* /パンくずリスト-------------*/



/* フォームエリア-------------*/
.form-area .wrapper{
	padding: 30px 4%;
}
/* /フォームエリア-------------*/



/* 見出し-------------*/
h2{
	font-size: 2rem;
}
/* /見出し-------------*/



/*----- テーブル -----*/
table {
    width: 100%;
}

th,td {
    display: block;
    width: 100%;
}

td {
    margin: -1px 0;
}
/*----- /テーブル -----*/



/*----- form-form-select（bootstrap参照） -----*/
.form-select{
	width: 100%;
}
/*----- /form-form-select（bootstrap参照） -----*/ 



/*----- ボタン -----*/
.btn-back{
	margin-bottom: 15px;
}
/*----- /ボタン -----*/
}
/* /スマホ用（600px以下） -------------*/