@charset "UTF-8";
/*--------------------------------------
  パネル
---------------------------------------*/
.panel-body {
	padding: 24px 16px 24px 16px;
	background-color: var(--dark_bg_color);
}
.panel-heading{
	height: 124px;
	padding: 8px 16px 8px 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}
.panel-heading-md {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 35px;
}
.panel-heading-sub {
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	font-size: 14px;
}
.panel_prefectures{
	color: #ffffff;
	display: flex;
	gap: 8px;
	align-items: center;
	width: 48%;
	padding: 8px 16px 8px 16px;
	height: 32px;
	cursor: pointer;
}
.panel_address{
	background: #efefef;
	padding: 8px;
	display: flex;
	gap: 8px;
}
.center_block{
	margin-inline: 0px;
}

/*--------------------------------------
  フォーム
---------------------------------------*/
.form-group {
	margin-bottom : 0px;
}

/*--------------------------------------
  コールアウト
---------------------------------------*/
.callout {
	margin:0px 0px 0px 0px !important;
	background: #ffffff;
	border-radius: 0px;
	border: 0px;
}
.callout:first-child {
	margin-top: 10px;
}
.callout h4 {
	background: #ffffff;
	padding: 0px;
	margin: 0px;
	font-size: 12px;
	color: var(--h4_accent_color);
}
.callout h4:before {
	background-color: var(--h4_accent_color);
}
.region_group > .callout h4 {
	font-weight: normal;
}
.prefectures_name > .callout h4  {
	font-weight: normal;
	text-align: center;
}
.callout_region {
	align-items: center;
	padding: 8px 8px 8px 16px;
	border: 0.5px;
}
.prefectures_name {
	height: 40px;
}
.callout_prefectures {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.callout_store {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	border: 0px;
	cursor: pointer;
	line-height: 14px;
}
.callout_store .triangle {
	flex-shrink: 0;
	position: absolute;
	right: 0px;
	transform: translate(0px, -16px);
	border-bottom: 20px solid transparent;
	border-right: 20px solid var(--accent_color);
}

fieldset {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.region_group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.region_title {
	height: 24px;
}
.region_name {
	font-size: 16px;
	color: #444444;
}
.prefectures_erea{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.prefectures_group{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.prefectures_group > .not-selected {
	background: var(--panel_btn_not_active_color);
}
.prefectures_group > .selected {
	background: var(--panel_btn_active_color);
}
.store_group {
	display: flex;
	gap: 4px;
}
.store_name {
	padding-left: 0px;
	height: 14px;
}
.store_name > h4 {
	height: 100%;
}
.new_icon > img {
	height: 17px;
	margin-top: -4px;
}
.collapse {
	padding-bottom: 8px;
}
.collapse > .form-group {
	margin-bottom: 0px;
}
.address_label {
	min-width: 24px;
}
div.menu_member_wrapper {
    border: solid 1px #ffffff;
}

/*--------------------------------------
  メディアクエリ
---------------------------------------*/
@media(min-width:992px) {
	.center_block{
		margin-inline: 30px;
	}
	.store_group {
		flex-wrap: wrap;
	}
	.store_group > .callout_store {
		width: calc((100% - 4px)/2);
	}
}
@media(max-width:991px) {
	.store_group {
		flex-direction: column;
	}
}