@charset "utf-8";

/*******************
 * PC、スマホ共通
	* タブレット
 * スマホ
*******************/



/* ==================================================================================================================
	 PC、スマホ共通
	 =================================================================================================================== */
.paymentMain {
	max-width: 900px;
	width: 98%;
	border: solid 10px #ff9b26;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	position: relative;
	margin: 0 auto;
	padding: 25px 30px;
	background-color: #fff6e9;
	box-sizing: border-box;
}

/* ttl */
.paymentMain h3 {
	font-size: 38px;
	font-weight: bold;
	color: #b60081;
	line-height: 1.3;
	padding-top: 5px;
	position: relative;
	padding-left: 65px;
	margin-bottom: 25px;
}

.paymentMain h3:before {
	display: block;
	content: "";
	width: 55px;
	height: 55px;
	border-radius: 50%;
	text-align: center;
	background: #b60081;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.6;
	font-size: 36px;
}

.paymentMain h3.ttl01:before {
	content: "1";
}

.paymentMain h3.ttl02:before {
	content: "2";
}

.paymentMain h3.ttl03:before {
	content: "3";
}

.paymentMain h3.-none {
	padding-left: 0;
}

.paymentMain h3.-none:before {
	background: none;
}

.mypageMain {
	box-sizing: border-box;
	max-width: 900px;
	width: 98%;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media only screen and (max-width: 768px) {
	.mypageMain {
		display: block;
	}
}

.mypageMainBox {
	box-sizing: border-box;
	background-color: #fff6e9;
	padding: 20px;
	width: 49%;
	border: solid 2px #009ef0;
	border-radius: 10px;
}
@media only screen and (max-width: 768px) {
	.mypageMainBox {
		width: 100%;
		padding: 3vw;
	}

	.mypageMainBox:nth-of-type(2) {
		margin-top: 3vw;
	}
}

a.btn_mypage {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 360px;
	height: 80px;
	background: #b60081;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	a.btn_mypage {
		max-width: none;
		width: 100%;
		height: 14vw;
		font-size: 18px;
	}
}

a.btn_other {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 360px;
	height: 80px;
	background: #01a76f;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	a.btn_other {
		max-width: none;
		width: 100%;
		height: 14vw;
		font-size: 18px;
	}
}

.paymentTelBox {
	background-color: #ffffff;
	padding: 30px;
	margin: 25px 0;
}

.paymentTel01 {
	font-size: 60px;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	word-break: break-all;
}

@media only screen and (max-width: 768px) {
	.paymentTel01 {
		font-size: 35px;
	}
}

.paymentTel01 span {
	font-size: 25px;
}

@media only screen and (max-width: 768px) {
	.paymentTel01 span {
		display: block;
		margin-bottom: 8px;
		font-size: 20px;
	}
}

.paymentTime {
	font-size: 20px;
}

@media only screen and (max-width: 768px) {
	.paymentTime {
		display: block;
		font-size: 16px;
	}
}

.paymentTelTxt {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.1;
	padding-top: 30px;
	text-align: center;
	word-break: break-all;
}

.paymentTel02 {
	font-size: 60px;
	font-weight: bold;
	line-height: 1.1;
	padding-top: 10px;
	text-align: center;
	word-break: break-all;
	padding-top: 0.5em;
	margin-top: 0.5em;
	border-top: solid 2px #000;
}

@media only screen and (max-width: 768px) {
	.paymentTel02 {
		font-size: 35px;
	}
}

.paymentTel02 span {
	font-size: 25px;
}

@media only screen and (max-width: 768px) {
	.paymentTel02 span {
		display: block;
		margin-bottom: 8px;
		font-size: 20px;
	}
}

.paymentArrow {
	width: 80px;
	margin: 30px auto;
}

.paymentEmp {
	border: solid 2px #000000;
	padding: 25px;
	margin-top: 15px;
}


/* ======================================================================================================================
	 タブレット
	 =================================================================================================================== */
@media print,
screen and (max-width: 1100px) {}



/* ======================================================================================================================
	 スマホ
	 =================================================================================================================== */
@media only screen and (max-width: 768px) {
	.paymentMain {
		border: solid 5px #ff9b26;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		-o-border-radius: 5px;
		-ms-border-radius: 5px;
		padding: 15px;
	}

	/* ttl */
	.paymentMain h3 {
		font-size: 24px;
		line-height: 1.2;
		padding-left: 40px;
		margin-bottom: 15px;
	}

	.paymentMain h3:before {
		width: 34px;
		height: 34px;
		line-height: 1.8;
		font-size: 20px;
	}

	.paymentTelBox {
		background-color: #ffffff;
		padding: 15px;
		margin: 15px 0;
	}



	.paymentTelTxt {
		font-size: 16px;
		line-height: 1.3;
		padding-top: 15px;
	}




	.paymentArrow {
		width: 40px;
		margin: 20px auto;
	}

	.paymentEmp {
		padding: 15px;
	}

}