@charset "UTF-8";
/* アンカーリンク3カラム */
.p-anc3colList_ul {
	width: 100%;
	max-width: 700px;
	margin: 0 auto 56px;
	display: grid;
	grid-auto-flow: column;
	gap: 12px;
}
@media only screen and (max-width: 768px) {
	.p-anc3colList_ul {
		max-width: 320px;
		margin: 0 auto 40px;
		grid-auto-flow: row;
		grid-template-columns: repeat(2, 1fr);
	}
}
.p-anc3colList_ul__li {
	padding: 12px;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.p-anc3colList_ul__li {
		text-align: left;
	}
}


/* その他のお問い合わせ方法 */
.p-otherInquiryList_ul {
	width: 100%;
	margin: 0 auto 56px;
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 28px;
}
@media only screen and (max-width: 768px) {
	.p-otherInquiryList_ul {
		max-width: 640px;
		grid-template-columns: 1fr;
		gap: 20px;
		}
}
.p-otherInquiryList_ul__li {
	background-color: #fff;
	border-radius: 24px;
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
	position: relative;
}
.p-otherInquiryList_ul__li a {
	display: flex;
	padding: 36px 100px 36px 36px;
	align-items: center;
	color: #333;
	text-decoration: none;
	border-radius: 24px;
}
@media only screen and (max-width: 768px) {
	.p-otherInquiryList_ul__li a {
		padding: 28px 56px 28px 20px;
	}
}
.p-otherInquiryList_ul__li::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    vertical-align: middle;
    background: url(/st/common/images/icon-arrow02-black.svg) no-repeat center center;
    background-size: cover;
    transform: rotate(180deg);
}
@media only screen and (max-width: 768px) {
	.p-otherInquiryList_ul__li::after {
		right: 20px;
	}
}
.p-otherInquiryList_ul__li__txt {
	margin-left: 28px;
	font-size: 2rem;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.p-otherInquiryList_ul__li__txt {
		margin-left: 16px;
		font-size: 1.6rem;
	}
}
.p-otherInquiryList_ul__li__icon {
	width: 40px;
}
@media only screen and (max-width: 768px) {
	.p-otherInquiryList_ul__li__icon {
		width: 24px;
	}
}


/* カード別お問い合わせ先 */
.p-cardInquiryList_ul {
	margin: 0 -18px;
}
.p-cardInquiryList_ul__li {
	width: 100%;
	position: relative;
}
.p-cardInquiryList_ul__li__a {
	display: flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	padding: 10px 38px 10px 20px;
}
.p-cardInquiryList_ul__li__a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	display: inline-block;
	vertical-align: middle;
	background-size: cover;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background: url(/st/common/images/icon-arrow02-black.svg) no-repeat center center;
	transform: rotate(180deg);
}
.p-cardInquiryList_txt {
	color: #333;
	font-size: 1.4rem;
	font-weight: bold;
	margin-left: 20px;
}


/* モーダル */
.p-confirmationModal02-title {
	background-color: #cc0033;
}
.p-confirmationModal02-body {
	padding: 32px 32px 44px;
}
@media only screen and (max-width: 768px) {
	.p-confirmationModal02-body {
		padding: 20px 20px 36px;
	}
}
.p-confirmationModal02-inner .p-otherInquiryList_ul {
	grid-template-columns: 1fr;
	gap: 20;
}
@media only screen and (max-width: 768px) {
	.p-confirmationModal02-inner .p-otherInquiryList_ul {
		max-width: 360px;
	}
	.p-confirmationModal02-inner .p-otherInquiryList_ul__li__txt {
		font-size: 1.4rem;
	}
	.p-confirmationModal02-inner .p-otherInquiryList_ul__li::after {
		width: 20px;
		height: 20px;
	}
}