@charset "utf-8";

#ctt h3 {
	font-size:5.2rem;
	margin-bottom:5rem;
}
#ctt h4 {
	font-size:3.7rem; 
	font-weight:bold;
	margin-bottom:4rem;
}
#ctt .calcbox .wrap{
	display:grid;
	grid-template-columns:230px 1fr;
	border-bottom:1px solid #ddd;
	align-items:center;
}
#ctt .calcbox .wrap.bdtop {
	border-top:3px solid #333;
}
#ctt .calcbox .wrap b {
	font-weight:600;
	font-size:1.8rem;
}
#ctt .calcbox .wrap .inputbox {
	display:flex;
	gap:1rem;
	font-size:1.8rem;
	align-items:center;
	padding:2.5rem 0;
}
#ctt .calcbox select, #ctt .calcbox input {
	width:100%;
	max-width:470px;
	line-height:5.5rem;
	height:5.5rem;
	border:0;
	background-color:#f3f3ff;
	padding:0 2rem;
}
#ctt .calcbox select {
    appearance:none;
	background-image:url('/theme/basic/img/select_arrow_tri.png');
	background-repeat:no-repeat;
	background-position:right 2rem center;
}
#ctt .calcbox .total {
	padding:5px;
	background: linear-gradient(90deg, rgba(0, 175, 236, 1) 0%, rgba(0, 5, 165, 1) 100%);
	margin-top:5rem;
}
#ctt .calcbox .total > div {
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:3rem 5rem;
	font-size:1.8rem;
	background:#fff;
}
#ctt .calcbox .total > div b {
	font-size:2.2rem;
}
#ctt .calcbox .total > div .inputbox {
	width:330px;
}
#ctt .calcbox .total > div .inputbox input{
	max-width:300px;
}

#ctt .tbwrap {
	margin-top:10rem;
}
#ctt .tbwrap .table {
	overflow:auto;
	font-size:1.8rem;
}
#ctt .tbwrap .table table {
	width:100%;
	min-width:980px;
	border-top:2px solid #333;
}
#ctt .tbwrap .table tr {
	border-bottom:1px solid #ddd;
}
#ctt .tbwrap .table th {
	background:#f3f3ff;
	font-weight:600;
}
#ctt .tbwrap .table th, #ctt .tbwrap .table td {
	padding:2rem 3rem;
}
#ctt .tbwrap .table td .dot {
	padding-left:2rem;
	position:relative;
	margin-bottom:1rem;
}
#ctt .tbwrap .table td .dot:last-child {
	margin:0;
}
#ctt .tbwrap .table td .dot:after {
	content:'';
	position:absolute;
	width:5px;
	top:50%;
	left:0;
	translate:0 -50%;
	height:5px;
	background:#00afec;
	border-radius:50%;
}
#ctt .tbwrap .table td span{
	text-decoration: underline;
}


@media all and (max-width:780px){
	#ctt .calcbox .wrap {
		padding-top:2rem;
		grid-template-columns: 1fr;
	}
	#ctt .calcbox .total > div {
		display:block;
		padding:3rem;
	}
	#ctt .calcbox .total > div .inputbox {
		margin-top:2rem;
	}
	#ctt .calcbox select, #ctt .calcbox input {
		max-width:100%;
	}
	#ctt .calcbox .total > div .inputbox input {
		max-width:60%;
	}
}