/**
 * 問い合わせ情報入力画面用CSS
 *
**/

/*--------------------------------------*/
/* お問い合わせ店舗の選択（説明）       */
/*--------------------------------------*/
.contact-shop-description {
	margin-top: 20px;
	margin-bottom: 10px;
	border: none;
}
.contact-shop-description > .description-header{
	font-size: 1.2rem;
}
.contact-shop-description > .description-body{
	margin-top: 5px;
	margin-left: 10px;
	font-size:0.9rem;
}
.contact-shop-description > .description-body > div{
	margin-top: 3px;
}

/*--------------------------------------*/
/* お問い合わせ店舗の選択（入力）       */
/*--------------------------------------*/
.list-of-shop header.list-header {
	max-width: 100%;
}
.list-of-shop .list-body {
	padding: 10px;
}
.list-of-shop .list-body .data-area-of-shop {
	margin-top:5px;
	margin-bottom:5px;
	margin-left:10px;
	margin-right:10px;
	border-bottom: 1px dashed #999;
	padding-top:10px;
	padding-bottom:10px;
}
.list-of-shop .list-body .data-area-of-shop:first-child {
	margin-top: 6px;
}
.list-of-shop .list-body .data-area-of-shop:last-child {
	border-bottom: none;
	margin-bottom: 6px;
}
.list-of-shop .list-body .data-area-of-shop .shop-name > input{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	transform: scale(1.5);
	margin-right: 2px;
}
.list-of-shop .list-body .data-area-of-shop .shop-name > label{
	font-weight: bold;
}
.list-of-shop .list-body .data-area-of-shop .shop-name > input:hover,
.list-of-shop .list-body .data-area-of-shop .shop-name > label:hover{
	cursor: pointer;
}
.list-of-shop .list-body .data-area-of-shop .shop-info {
	margin-left: 5px;
	font-size: 0.96rem;
}
.list-of-shop .list-body .data-area-of-shop .shop-info > div{
	margin-top: 2px;
}


/*--------------------------------------*/
/* 個人情報の取り扱い                   */
/*--------------------------------------*/
.privacy-policy-link{
	position: relative;
	padding-top: 20px;
	/* padding-left: 10px; */
	display: flex;
	flex-direction: column;
	width: auto;
	max-width: 810px;
	margin: 0 20px;
}
.privacy-policy-link h3.description {
	font-size: 12px;
	font-weight: initial;
	background-color: initial;
	color: initial;
	border-radius: initial;
	padding: initial;
	text-align: center;
}
.contact-alert-message{
	width: auto;
	max-width: 810px;
	text-align: center;
	color: #aa0000;
}

/* 個人情報保護チェック「必須」の場合 */
#required.privacy-policy-link .link {
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}
#required.privacy-policy-link .description {
	text-align: center; /* テキスト中央揃え */
}
#required.privacy-policy-link .rach label{
	font-size: 16px !important;
}
@media screen and (max-width: 768px){
	#required.privacy-policy-link{
		width: auto;
		max-width: 540px;
	}
}
@media screen and (max-width: 480px){
	#required.privacy-policy-link{
		width: auto;
		max-width: 375px;
	}
}
