*{
	margin:0;
	padding:0;
}

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #393C42;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 5px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 5px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 5px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 5px;
  height: 100vh;
  top: 0;
  left: 0;
}

html{
	color:#393C42;
}

.title h1{
	text-align:center;
	margin:10px 0;
}

.title{
	border-bottom:5px solid #393C42;
}

.contents_wrap{
	justify-content:center;
	display: flex;
	margin-top:100px;
	margin-bottom:50px;
}

.contents{
	width:100%;
	padding:0 10px;
}

.info_txt{
	text-align:center;
	width:100%;
}

.info_txt p,.body_txt p,.check_select li{
	font-size:130%;
}

.body_txt{
	margin-top:100px;
	text-align:center;
}

.body_txt select{
	border:4px solid #393C42;
	padding:8px;
	cursor:pointer;
	font-size:120%;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.input_txt_btn{
	display:flex;
	justify-content:center;
}

.input_txt_btn input,.input_txt_btn button{
	border:4px solid #393C42;
	padding:8px;
	cursor:pointer;
	font-size:120%;
	background-color:#FFF;
}

.input_txt_btn button{
	margin-left:-4px;
}

.input_txt_btn button:hover{
	background-color:#393C42;
	color:#FFF;
}

.input_txt_btn_info{
	margin-top:50px;
}

.body_txt .num{
	text-align:right;
}

.page_move{
	margin-top:100px;
	justify-content:center;
	display: flex;
}

.page_move .btn{
	border:4px solid #393C42;
	text-decoration:none;
	color:#393C42;
	font-weight:bold;
	font-size:110%;
	padding:8px 30px;
	margin:0 5px;
}

.page_move .btn:hover{
	color:#FFF;
	background-color:#393C42;
}

.loading{
	font-size:400%;
}

table.estimate{
	border:5px solid #393C42;
	border-collapse:collapse;
	width:600px;
	margin:40px auto 0 auto;
}

table.estimate td{
	border:5px solid #393C42;
	padding:3px;
}

.estimate_total{
	font-size:200%;
	font-weight:bold;
	border-bottom:5px solid #393C42;
}

.estimate_info{
	font-size:12px;
	font-weight:normal;
}

.estimate_notice{
	width:600px;
	margin:0 auto;
}

.estimate_notice ul{
	text-align:left;
	list-style-type:none;
	font-size:12px;
}

.estimate_notice ul li:before{
	content:"※";
}

@media screen and (max-width:700px) { 
	table.estimate{
		width:100%;
	}
	
	.estimate_notice{
		width:100%;
	}
}