<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*簡単積立計算式 formula
========================================================*/
/*入力エリア*/
.formulaarea {
	margin: 20px 2.0rem 0;
}
#formula {
	float: left;
	width:313px;
}
#formula-inner {
	border: 1px solid #57462c;
	padding: 15px 20px 20px 20px;
}
#formula-inner dl {
	margin: 10px 0 15px;
}
#formula-inner dt {
	font-weight: bold;
	margin: 10px 0 5px;
}
#submit-btn {
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	padding: 15px 0;
	border-radius: 5px;
	cursor: pointer;
	background: #f15b64;
	color: #fff;
}
#submit-btn:hover {
	background: #ee3a46;
	position: relative;
}
#submit-btn:not(:target) {
	filter: none\9;
}
#formula-inner select {
	color: #000;
	padding: 5px;
	width: 100%;
	border: solid 1px #383838;
	background: url(/company/lp/lp38/img/arrow.jpg) right 50% no-repeat;
	background-color: #fff
}
#formula-inner input.inputtxt {
	background: #fff;
	width: 150px;
	color: #000;
	padding: 5px;
	border: solid 1px #383838;
	text-align: right;
}
/*グラフ*/
#formula-graph {
	float: right;
	width: 600px;
	height: 410px;
	background: url(/company/lp/lp38/img/formula-bg.png) no-repeat;
	position: relative;
}
.bar {
	position: absolute;
	bottom: 47px;
	left: 48px;
	z-index:9999;
}
.bar span {
	cursor: pointer;
	display: block;
	min-height: 10px;
	min-width: 5px;
}
#formula-graph #bar-x {
	position: absolute;
	bottom: 0;
	left: 48px;
	width: 700px;
	z-index: 1;
}
#formula-graph #bar-x span {
	float: left;
	display: block;
	width: 18px;
	text-align: center;
	z-index: 10;
	margin-right: 110px;
}
#formula-graph #bar-y {
	position: absolute;
	bottom: 17px;
	right: 0px;
	width: 620px;
	padding: 0;
	margin: 0;
	z-index: 1;
}
#formula-graph #bar-y span {
	display: block;
	text-align: right;
	padding-right: 570px;
	background: url(/company/lp/lp38/img/formula-line.png) no-repeat center right;
	z-index: 10;
	margin-top: 20px;
}
#formula-graph #bar-y span.zero {
	background: none;
}
.baloon {
	display: none;
	position: absolute;
	width: 270px;
	top: -130px;
	margin-left: -115px;
	padding: 15px;
	border-radius: 10px;
	background: #fafafa;
	border: 2px solid #dfaf49;
	z-index: 99999;
}
.baloon:after, .baloon:before {
	position: absolute;
	left: 47%;
	top: 100%;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	border-width: 14px;
	margin: 0 0 0 -14px;
}
.baloon:after {
	margin: 0 0 0 -14px;
	border-top-color: #dfaf49;
}
.baloon:before {
	margin-left: -14px;
	border-top-color: #dfaf49;
}
.baloon li {
	color: #1b1b1b;
}
.bar span:hover + .baloon {
	display: block;
}
.bar span img {
	display: block;
}
.bar h3 {
	font-weight: bold;
	color: #dfaf49;
}
.f-item {
	float: left;
	width: 100px;
}
.f-price {
	float: right;
	width: 130px;
	text-align:right;
}
* html #bar li {
	zoom: 1;
}
*+html #bar li {
	zoom: 1;
}
#bar li:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
/*計算結果*/
#formula-result {
	border: 1px solid #57462c;
	margin: 2.0rem;
	padding: 25px;
	text-align: center;
}
#formula-result p {
	font-size: 1.10em;
}
#formula-result strong {
	font-size: 1.40em;
	font-weihgt: bold;
	color: #e6ab45;
}
#formula-result strong#total {
	font-size: 1.80em;
}

</pre></body></html>