@charset "utf-8";

/* cardTable */
.cardTable {
	width: 900px;
	margin: 20px auto 0;
	display: flex;
}
.cardTable .cardBox {
	width: 50%;
	border: 1px solid #000;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.cardTable .cardBox + .cardBox {
	border-left: none;
}
.cardTable .cardBox .top {
	padding: 10px;
	flex-grow: 1;
}
.cardTable .cardPicBox {
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.cardTable .cardPic {
	margin-top: 0;
	width: 20%;
}
.cardTable .cardPic.center {
	margin: 0 auto;
}
.cardTable .cardPic img {
	max-width: 100%;
}
.cardTable .cardBox .bottom {
	margin-top: 0;
	padding: 10px;
	background-color: #F2F2F2;
}
@media screen and (max-width: 767px) {
	.cardTable {
		width: 100%;
	}
}

/* use */
.use {
	width: 900px;
	margin: 0 auto;
}
.use .anim {
	position: relative;
	text-align: center;
}
.use .anim video {
	width: 100%;
}
.use .img {
	position: absolute;
	top: 120px;
	left: 45px;
	right: 0;
	margin: auto;
}
.use .img > img {
	width: 856px;
	margin: 0 auto;
}
.use .img > .sp {
	display: none;
}

#anim,
#anim > canvas {
	width: 986px;
	height: 519px;
}

#anim {
	position: absolute;
	top: -15px;
	left: 52px;
	overflow: hidden;
}

#anim video {
	width: 100%;
	margin-left: -5px;
}

#anim img {
	position: absolute;
	top: 95px;
	left: 212px;
	width: 637px;
}

@media screen and (max-width: 767px) {
	.use {
		margin-top: 3.067vw;
		width: 100%;
		padding: 0 8.533vw;
	}
	#anim {
		left: -24vw;
	}
	#anim img {
		top: 11.333vw;
		left: 24.267vw;
	}
	.use .img {
		top: 4vw;
		left: 0;
	}
	.use .img > img {
		width: 100%;
	}
	.use .img > .sp {
		display: block;
	}
	.use .img > .pc {
		display: none;
	}
}


/* simulation */
.simulation {
	width: 900px;
	margin: 0 auto;
}
.simulation .simulationTxt {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.simulation .simulationTxt + .simulationTxt {
	margin-top: 10px;
}
.simulation .lead {
	margin-top: 30px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}
.simulation .btn {
	margin: 30px auto 0;
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	border-radius: 10px;
	background: #e50012;
	cursor: pointer;
}
.simulation .btn.btnSimulation {
	padding: 20px 15px;
	width: 700px;
	box-shadow: 5px 5px 0px 0px rgba(198,198,198,1);
	transition: .3s ease-in-out;
}
.simulation .btn.btnSimulation:hover {
	box-shadow:none;
	transform: translateX(3px) translateY(2px);
}
.simulation .btn.btnSimulation > span {
	display: block;
	position: relative;
}
.simulation .btn.btnSimulation > span::before,
.simulation .btn.btnSimulation > span::after {
	display: block;
	content: "";
	width: 23px;
	height: 23px;
	border-left: solid 2px #fff;
	position: absolute;
	top: calc(50% - 11px);
	right: 0;
	transition: .3s ease;
}
.simulation .btn.btnSimulation > span::after {
	transform: rotate(90deg);
	top: 50%;
	right: 11px;
}
.simulation .btn.btnSimulation.open > span::before {
	transform: rotate(90deg);
	top: 50%;
	right: 11px;
}
.simulation .btn.btnSimulation .icon {
	padding-left: 40px;
	font-weight: bold;
	position: relative;
}
.simulation .btn.btnSimulation .icon::before {
	display: block;
	content: "";
	width: 26px;
	height: 36px;
	background: url(/card/privilege/useful/public_charges/images/icon_calculator.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 18px);
	left: 0;
}
.simulation .btn.btnResult {
	width: 400px;
	transition: .3s ease;
}
.simulation .btn.btnResult:hover {
	opacity: 0.7;
}
.simulation .btn.btnResult.noClick {
	background: #666;
	pointer-events: none;
}
@media screen and (max-width: 767px) {
	.simulation {
		margin-top: 13.333vw;
		width: 100%;
		padding: 0 8.533vw;
	}
	.simulation .simulationTxt {
		font-size: 2.8vw;
	}
	.simulation .simulationTxt + .simulationTxt {
		margin-top: 2.667vw;
	}
	.simulation .lead {
		font-size: 3.6vw;
	}
	.simulation .btn {
		margin: 4vw auto 0;
		padding: 2vw;
		font-size: 3.733vw;
		border-radius: 1.333vw;
	}
	.simulation .btn.btnSimulation {
		padding: 4vw 2vw;
		width: 100%;
	}
	.simulation .btn.btnSimulation > span::before,
	.simulation .btn.btnSimulation > span::after {
		width: 3.067vw;
		height: 3.067vw;
		top: calc(50% - 1.467vw);
	}
	.simulation .btn.btnSimulation > span::after {
		top: 50%;
		right: 1.467vw;
	}
	.simulation .btn.btnSimulation.open > span::before {
		top: 50%;
		right: 1.467vw;
	}
	.simulation .btn.btnSimulation .icon {
		padding-left: 8vw;
	}
	.simulation .btn.btnSimulation .icon::before {
		width: 4.8vw;
		height: 6.667vw;
		top: calc(50% - 3.333vw);
	}
	.simulation .btn.btnResult {
		margin-top: 6.667vw;
		padding: 2.667vw 2vw;
		width: 80%;
	}
}

/* cost */
.simulation .cost {
	display: none;
	margin-top: 50px;
	padding: 65px 85px;
	background: #fff8d9;
	position: relative;
}
.simulation .cost::before {
	display: block;
	content: "";
	width: 62px;
	height: 27px;
	background-image: url(/card/privilege/useful/public_charges/images/arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -14px;
	left: calc(50% - 31px);
}
.simulation .cost .ttl {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
.simulation .cost .ttl span {
	display: inline-block;
	font-weight: bold;
	background: linear-gradient(transparent 60%, #ffec8d 60%, #ffec8d 80%, transparent 95%);
}
.simulation .cost .costList {
	margin-top: 15px;
	padding: 14px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: dotted 2px #d1b88b;
	border-radius: 5px;
	background: #fff;
}
.simulation .cost .costList:nth-of-type(1) {
	margin-top: 45px;
}
.simulation .cost .costList p:nth-child(1) {
	padding-left: 70px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}
.simulation .cost .costList p:nth-child(1)::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	background-repeat: no-repeat;
	background-size: contain;
}
.simulation .cost .costList p.electric::before {
	left: 14px;
	width: 29px;
	height: 50px;
	margin-top: -25px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_electric.png);
}
.simulation .cost .costList p.gas::before {
	left: 14px;
	width: 35px;
	height: 53px;
	margin-top: -27px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_gas.png);
}
.simulation .cost .costList p.water::before {
	left: 14px;
	width: 34px;
	height: 50px;
	margin-top: -25px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_water.png);
}
.simulation .cost .costList p.phone::before {
	width: 58px;
	height: 34px;
	margin-top: -17px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_phone.png);
}
.simulation .cost .costList p.internet::before {
	width: 54px;
	height: 57px;
	margin-top: -24px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_internet.png);
}
.simulation .cost .costList p.hoken::before {
	width: 60px;
	height: 43px;
	margin-top: -22px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_hoken.png);
}
.simulation .cost .costList p.tv::before {
	width: 60px;
	height: 51px;
	margin-top: -26px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_tv.png);
}
.simulation .cost .costList p.others::before {
	width: 58px;
	height: 50px;
	margin-top: -25px;
	background-image: url(/card/privilege/useful/public_charges/images/icon_others.png);
}
.simulation .cost .costList p:nth-child(2) {
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.simulation .cost .costList p:nth-child(2) .month {
	font-size: 17px;
}
.simulation .cost .costList p:nth-child(2) input {
	margin: 0 7px 0 10px;
	padding: 6px;
	background: none;
	outline: none;
	appearance: none;
	width: 100px;
	height: 52px;
	border: solid 3px #e50012;
	border-radius: 5px;
	font-size: 26px;
	font-weight: bold;
	text-align: right;
	font-family: inherit;
}
.simulation .cost .costList p:nth-child(2) .yen {
	font-size: 26px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.simulation .cost {
		margin: 8vw -8.533vw 0;
		padding: 10.667vw 5.333vw;
	}
	.simulation .cost::before {
		width: 10vw;
		height: 4.4vw;
		top: -2.4vw;
		left: calc(50% - 5.067vw);
	}
	.simulation .cost .ttl {
		font-size: 3.733vw;
	}
	.simulation .cost .costList {
		margin-top: 2.667vw;
		padding: 2.133vw 4vw 2.133vw 2.133vw;
	}
	.simulation .cost .costList p:nth-child(1) {
		padding-left: 10vw;
		font-size: 3.333vw;
		line-height: 1.3;
	}
	.simulation .cost .costList p.electric::before {
		left: 1.867vw;
		width: 3.867vw;
		height: 6.667vw;
		margin-top: -3.333vw;
	}
	.simulation .cost .costList p.gas::before {
		left: 1.867vw;
		width: 4.667vw;
		height: 7.067vw;
		margin-top: -3.6vw;
	}
	.simulation .cost .costList p.water::before {
		left: 1.867vw;
		width: 4.533vw;
		height: 6.667vw;
		margin-top: -3.333vw;
	}
	.simulation .cost .costList p.phone::before {
		width: 7.733vw;
		height: 4.533vw;
		margin-top: -2.267vw;
	}
	.simulation .cost .costList p.internet::before {
		width: 7.2vw;
		height: 7.6vw;
		margin-top: -3.2vw;
	}
	.simulation .cost .costList p.hoken::before {
		width: 8vw;
		height: 5.733vw;
		margin-top: -2.933vw;
	}
	.simulation .cost .costList p.tv::before {
		width: 8vw;
		height: 6.8vw;
		margin-top: -3.467vw;
	}
	.simulation .cost .costList p.others::before {
		width: 7.733vw;
		height: 6.667vw;
		margin-top: -3.333vw;
	}
	.simulation .cost .costList p:nth-child(2) {
		font-size: 3.467vw;
	}
	.simulation .cost .costList p:nth-child(2) .month {
		font-size: 2.933vw;
	}
	.simulation .cost .costList p:nth-child(2) input {
		width: 16.667vw;
		height: 9.067vw;
		font-size: 4.533vw;
	}
	.simulation .cost .costList p:nth-child(2) .yen {
		font-size: 4.533vw;
	}
}

/* result */
.simulation .result {
	display: none;
	margin-top: 70px;
	border: solid 3px #d3c89b;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	position: relative;
}
.simulation .result::before {
	display: block;
	content: "";
	width: 62px;
	height: 27px;
	background-image: url(/card/privilege/useful/public_charges/images/arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -45px;
	left: calc(50% - 31px);
}
.simulation .result > div {
	padding: 30px 20px;
}
.simulation .result > div + div {
	border-top: solid 3px #d3c89b;
}
.simulation .result .subTtl {
	padding: 2px;
	border-radius: 5px;
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.simulation .result .gold .subTtl {
	background: #8a6f1b;
}
.simulation .result .tcard .subTtl {
	background: #bf0008;
}
.simulation .result .txt {
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;
}
.simulation .result .txt span {
	padding-right: 5px;
	font-size: 37px;
	font-weight: bold;
}
.simulation .result .gold .txt {
	color: #8a6f1b;
}
.simulation .result .tcard .txt {
	color: #bf0008;
}
.simulation .result .point {
	font-size: 25px;
	line-height: 1;
	display: inline-flex;
	align-items: end;
}
.simulation .result .point .pic {
	margin-right: 20px;
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.simulation .result .point .pic p {
	width: 72px;
}
.simulation .result .point .pic p img {
	max-width: 100%;
}
.simulation .result .point .pointTxt {
	display: inline-block;
	background: linear-gradient(transparent 60%, #ffec8d 60%);
}
.simulation .result .point .num {
	padding: 0 5px;
	font-size: 50px;
	font-weight: bold;
	color: #e50012;
}
.simulation .result .point .yen {
	font-size: 30px;
	font-weight: bold;
}
.simulation .result .pointList {
	margin-top: 25px;
	padding: 17px 20px 20px;
	background: #fffcd7;
	border-radius: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px 27px;
}
.simulation .result .pointList:empty {
	margin: 0;
	padding: 0;
	background: none;
}
.simulation .result .pointList li {
	width: 90px;
}
.simulation .result .note {
	padding: 20px;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	.simulation .result {
		margin-top: 13.333vw;
	}
	.simulation .result::before {
		width: 10vw;
		height: 4.4vw;
		top: -8.667vw;
		left: calc(50% - 5.067vw);
	}
	.simulation .result .subTtl {
		font-size: 3.2vw;
	}
	.simulation .result .txt {
		font-size: 3.467vw;
	}
	.simulation .result .txt span {
		font-size: 6vw;
	}
	.simulation .result .point {
		margin-top: 1.333vw;
		font-size: 4.4vw;
	}
	.simulation .result .point .pic {
		margin-right: 2.667vw;
		width: 12vw;
	}
	.simulation .result .point .num {
		font-size: 9.333vw;
	}
	.simulation .result .point .yen {
		font-size: 5.2vw;
	}
	.simulation .result .pointList {
		margin-top: 4vw;
	}
	.simulation .result .note {
		font-size: 2.4vw;
	}
}

/* howto */
.simulation .howto {
	margin-top: 60px;
	text-align: center;
}
.simulation .howto .subTtl {
	font-size: 21px;
}
.simulation .howto .subTtl span {
	font-weight: bold;
	position: relative;
}
.simulation .howto .subTtl span::before,
.simulation .howto .subTtl span::after {
	display: block;
	content: "";
	height: 25px;
	width: 2px;
	background: #000;
	position: absolute;
	top: 0;
}
.simulation .howto .subTtl span::before {
	left: -20px;
	transform: rotate(-30deg);
}
.simulation .howto .subTtl span::after {
	right: -20px;
	transform: rotate(30deg);
}
.simulation .howto .btnHowto {
	margin: 40px auto 0;
	width: 380px;
}
.simulation .howto .btnHowto a {
	display: block;
	padding: 10px;
	background: #fff;
	border: solid 2px #e50012;
	color: #e50012;
	font-size: 16px;
	font-weight: bold;
	border-radius: 30px;
	position: relative;
	transition: .3s ease;
}
.simulation .howto .btnHowto a::after {
	display: block;
	content: "";
	height: 10px;
	width: 10px;
	border-right: solid 2px #e50012;
	border-bottom: solid 2px #e50012;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
}
.simulation .howto .btnHowto a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.simulation .howto ul {
	position: relative;
}
.simulation .howto ul li:nth-child(1){
	position: absolute;
	top: -70px;
	left: 80px;
	width: 65px;
}
.simulation .howto ul li:nth-child(2),
.simulation .howto ul li:nth-child(3) {
	display: none;
}
.simulation .howto ul li:nth-child(4){
	position: absolute;
	top: -70px;
	right: 70px;
	width: 66px;
}
.simulation .howto ul li img {
	max-width: 100%;
}
@media screen and (max-width: 767px) {
	.simulation .howto {
		margin-top: 10.667vw;
	}
	.simulation .howto .subTtl {
		font-size: 4vw;
	}
	.simulation .howto .subTtl span {
		display: inline-block;
	}
	.simulation .howto .subTtl span .sp {
		display: inline-block;
	}
	.simulation .howto .subTtl span::before,
	.simulation .howto .subTtl span::after {
		height: 4vw;
		top: auto;
		bottom: 1.067vw;
	}
	.simulation .howto .subTtl span::before {
		left: -4vw;
	}
	.simulation .howto .subTtl span::after {
		right: -4vw;
	}
	.simulation .howto .btnHowto {
		margin: 5.333vw auto 0;
		width: 90%;
	}
	.simulation .howto .btnHowto a {
		padding: 2vw;
		border-radius: 5.333vw;
		font-size: 3.2vw;
	}
	.simulation .howto .btnHowto a::after {
		height: 2vw;
		width: 2vw;
		top: calc(50% - 0.933vw);
		right: 2.667vw;
	}
	.simulation .howto ul {
		margin: 4.667vw auto 0;
		width: 92%;
		position: static;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.simulation .howto ul li:nth-child(1){
		position: static;
		width: 12.267vw;
	}
	.simulation .howto ul li:nth-child(2) {
		display: block;
		width: 23.467vw;
	}
	.simulation .howto ul li:nth-child(3) {
		display: block;
		margin-bottom: 1.333vw;
		width: 8.933vw;
	}
	.simulation .howto ul li:nth-child(4){
		position: static;
		width: 12.4vw;
	}
}

.noNavi .targetCol {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
}
.noNavi .targetCol > .box {
	width: 23%;
	display: flex;
	flex-direction: column;
}
.noNavi .targetCol > .box a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	font-weight: bold;
	text-align: center;
	color: #333;
	border: solid 1px #333;
	border-radius: 10px;
	padding: 10px;
	position: relative;
}
.noNavi .targetCol > .box a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%) rotate(45deg);
}
.noNavi .borderT {
	padding-top: 20px;
	border-top: solid 1px #cccccc;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.noNavi .targetCol {
		display: block;
	}
	.noNavi .targetCol > .box {
		width: 100%;
	}
}