@charset "utf-8";
/* CSS Document */


/*-------------------------------
    pay/お支払い
-------------------------------*/
.payCont .payBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-bottom: 50px;
}

.payCont .payBox > dl{
	width: 435px;
	margin-bottom: 15px;
	padding: 15px;
	border: 3px solid #dcdcdc;
}
.payCont .payBox > dl > dt{
	margin-bottom: 10px;
	padding: 3px 0;
    padding-left: 30px;
	font-size: 20px;
	font-weight: bold;
	border-bottom: 3px solid #cee0ea;
    position: relative;
}
.payCont .payBox > dl > dt:before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: #005d93;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
}

.payCont .payBox > dl.longBox{
    width: 100%;
}

.payCont .payBox > dl.longBox table{
	margin: 10px auto;
	border-spacing: 10px;
	border-bottom: none;
}
.payCont .payBox > dl.longBox table th{
	background: #c5e6f9;
	width: 15%;
	padding: 10px;
	font-weight: bold;
	border-top: none;
}
.payCont .payBox > dl.longBox table td{
	width: 35%;
	padding: 10px;
	border-top: none;
	line-height: 2.0em;
}


@media screen and (max-width: 768px) {
	.payCont .payBox > dl,
	.payCont .payBox > dl.longBox{
		width: 95%;
		margin: 0 auto 15px;
    }
	.payCont .payBox > dl.longBox dd img{
        width: auto;
    }
    .payCont .payBox > dl.longBox .tableNormal{
        width: 100%;
    }
    .payCont .payBox > dl.longBox table{
        border-spacing: 0;
    }
    .payCont .payBox > dl.longBox table th,
	.payCont .payBox > dl.longBox table td{
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.payCont .payBox > dl.longBox dd img{
        width: 90%;
    }
}

