
.introduction {
	height: 400px;
	background: #f8f8f8;
	background-image: url(../img/simulate/header_bg.png);
	background-repeat: no-repeat;
	background-size: auto 280px;
	background-position: top 80px right 100px;
}
@media screen and ( max-width:600px ) {
	.introduction {
		background-position: top 90px center;
	}
}
.introduction_text {
	width: 800px;
	margin: 0 auto;
}
@media screen and ( max-width:880px ) {
	.introduction_text {
		width: 90%;
	}
}

.root {
	width: 800px;
	margin: 0 auto;
}
@media screen and ( max-width:880px ) {
	.root {
		width: 90%;
	}
}

.simulate_base {
	font-size: 0;
	margin-top: 30px;
}
.simulate_left {
	display: inline-block;
	width: 30%;
	vertical-align: top;
	font-size: 18px;
	font-weight: bold;
	padding-top: 10px;
}
.simulate_right {
	display: inline-block;
	width: 69%;
	vertical-align: top;
}
@media screen and ( max-width:600px ) {
	.simulate_left {
		display: block;
		width: 100%;
	}
	.simulate_right {
		display: block;
		width: 100%;
		margin-top: 5px;
	}
}

select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../img/common/arrow_down_gray.png");
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: right 12px center;
    width:100%;
    height:70px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-left: 15px;
    font-size: 16px;
    background-color: #f8f8f8;
}
select:focus {
	outline: none;
	border: 1px solid #008A83;
}

#dialogError {
    width:400px;
}
@media screen and (max-width: 440px) {
    #dialogError {
        width: 90%;
    }
}


.link_button_table {
	height:44px;
	border:1px solid #aaa;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	transition:0.3s all;
}
.link_button_table:hover {
	background: #ccc;
}