.charge_wrapper {
display: flex;
justify-content: center;
align-items: flex-end;
width: 100%;
margin: 0 auto;
}
.item1{
	text-align: right;
	margin-right: 10px;
}
.price-box {
display: flex;
justify-content: center;
text-align: center;
align-items: flex-end;
margin: 0 auto;
}

.price-medium {
    font-size: 2.8em;
    line-height: .45em;
}
.price-large {
    font-size: 3.8em;
    line-height: .8em;
}
.price-small {
    font-size: 1.5em;
}
.price-mSmall {
    font-size: 1.1em;
}
.font-mag-50 {
	font-size: 50%;
}
.font-mag-40 {
	font-size: 40%;
}
.view-sp {
    display: none;
}
.view-pc {
    display: block;
}

@media (max-width: 767px) {
	.charge_wrapper {
	display: inherit;
	width: 100%;
	}
	.item1, .item3 {
	width: 100%;
	text-align: center;
	margin-right: 0;
	}
	.item1 {
	margin-bottom: 10px;
	}
	.item3 {
	margin-top: 10px;
	}
    .view-sp {
    display: block;
    }
    .view-pc {
    display: none;
    }
}

.triangle-box{
width: 100%;
padding: 20px 0 10px 0;
}
.triangle{
border-left: 25px solid #d1d1d1;
border-top: 25px solid transparent;
border-bottom: 25px solid transparent;
margin: 0 auto;
width: 0;
height: 0;
}

@media (max-width: 767px) {
	.triangle{
	border-top: 25px solid #d1d1d1;
	border-right: 25px solid transparent;
	border-left: 25px solid transparent;
	width: 5%;
	margin: 0 auto;
	}
}

.bg-darkgray { background:#494949; }