body {
	font-family: "YakuHanJP", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Verdana", sans-serif;
    color: #333;
}

.l-page__main {
    padding: 10px;
	padding-top: 15px;
    background: #F2F2F2;
	font-weight: bold;
}

h1 {
	font-size: 36px;
	margin-bottom: 12px;
}

h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

/* @SP */
@media all and (max-width: 767px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
		margin-bottom: 15px;
    }
}

/*--------------------------------------------------------------------------
  	shop-panel
---------------------------------------------------------------------------*/

.common-shop-list {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 50px;
	margin-bottom: 80px;
}

.common-shop-list .common-shop-list__panel {
	width: 100%;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0 0 10px #0000001A;
	display: flex;
	align-items: center;
    justify-content: space-between;
	padding: 12px 16px;
	text-decoration: none;
}

.common-shop-list .common-shop-list__panel img {
	width: 16px;
	height: 16px;
}

.common-shop-list .common-shop-list__name {
	font-size: 16px;
	margin-bottom: 4px;
	position: relative;
	padding-left: 28px;
}

.common-shop-list .common-shop-list__distance {
	font-size: 14px;
	margin-bottom: 4px;
	padding-left: 28px;
	letter-spacing: 0;
}

.common-shop-list .common-shop-list__address {
	font-size: 14px;
	font-weight: normal;
	position: relative;
	padding-left: 28px;
}

.common-shop-list .common-shop-list__name::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(/apps/assets/img/menu/panel_icon_name.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 4px;
	left: 0px;
}

.common-shop-list .common-shop-list__address::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(/apps/assets/img/menu/panel_icon_address.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 1px;
	left: 0px;
}

@media all and (max-width: 767px) {
	.common-shop-list {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 15px;
		padding-top: 10px;
		margin-bottom: 40px;
	}

	.common-shop-list .common-shop-list__name {
		font-size: 14px;
		padding-left: 20px;
	}

	.common-shop-list .common-shop-list__distance {
		font-size: 12px;
		padding-left: 20px;
	}

	.common-shop-list .common-shop-list__address {
		font-size: 12px;
		padding-left: 20px;
	}

	.common-shop-list .common-shop-list__name::before {
		width: 16px;
		height: 16px;
		top: 5px;
	}

	.common-shop-list .common-shop-list__address::before {
		width: 16px;
		height: 16px;
		top: 3px;
	}
}

/*--------------------------------------------------------------------------
  	common-tab
---------------------------------------------------------------------------*/

.common-tab {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	font-weight: normal;
	margin-bottom: 20px;
}

.common-tab .common-tab__button {
	width: 100%;
	font-size: 16px;
	border-bottom: 3px solid #CCCCCC;
	text-align: center;
	padding-bottom: 16px;
}

.common-tab .active {
	font-weight: bold;
	color: #B81C22;
	border-bottom: 3px solid #B81C22;
}

@media all and (max-width: 767px) {

	#SearchTab, #ResultTab {
		margin-left: -16px;
		margin-right: -16px;
	}

	.common-tab .common-tab__button {
		font-size: 12px;
		padding-bottom: 8px;
	}

}

/*--------------------------------------------------------------------------
  	common-button
---------------------------------------------------------------------------*/

.common-button {
	display: flex;
    border: none;
    background: #B81C22;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    width: 576px;
    height: 72px;
    color: #FFFFFF;
    font-size: 16px;
    box-shadow: 0 3px 10px #0000001A;
    padding-bottom: 8px;
}

.common-button-outline {
	border: 2px solid #B81C22;
    background: #FFFFFF;
	color: #B81C22;
	height: 52px;
}

.common-form-title {
	font-size: 16px;
	margin-bottom: 30px;
}

.common-form-flexbox {
	display: flex;
	gap: 50px;
}

@media all and (max-width: 767px) {

	.common-button {
		height: 60px;
		font-size: 14px;
		padding-bottom: 4px;
	}

	.common-form-title {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.common-form-flexbox {
		display: flex;
		flex-direction: column;
		gap: 0px;
	}
}

/*--------------------------------------------------------------------------
  	AreaSearch
---------------------------------------------------------------------------*/

#AreaSearch {
	margin: 50px auto 70px;
	text-align: center;
	display: flex;
	align-items: start;
	flex-direction: column;
	flex: 1;
}

@media all and (max-width: 767px) {

	#AreaSearch {
		flex-direction: column;
		margin: 25px auto 0;
		flex: 0;
		width: 100%;
	}

	#AreaSearch .common-button {
		width: 305px;
		height: 60px;
		max-width: 90vw;
		margin: 0 auto;
	}

	#AreaSearch select {
		font-size: 14px;
		width: 345px;
	}
}

#AreaSearch .or {
	font-size: 14px;
	margin: 8px 0;
}

#AreaSearch select {
	width: 472px;
	height: 48px;
	font-size: 16px;
	font-weight: normal;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	padding: 0 16px;
	background: #FFFFFF;
}
/*--------------------------------------------------------------------------
  	KeywordSearch
---------------------------------------------------------------------------*/

#KeywordSearch {
	margin: 50px auto 70px;
	display: flex;
	align-items: start;
	flex-direction: column;
	flex: 1;
}

@media all and (max-width: 767px) {

	#KeywordSearch {
		margin: 30px auto 0;
		flex: 0;
	}
}

.common-keyword-area {
    border-radius: 10px;
}

.common-keyword-area input {
	width: 100%;
	height: 48px;
	font-size: 16px;
	font-weight: normal;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	padding: 0 16px;
	background: #FFFFFF;
}

.common-keyword-area .common-keyword-area__detail {
	font-size: 12px;
	font-weight: normal;
	margin-top: 10px;
}

.input-wrapper {
	position: relative;
}

.input-wrapper button {
	width: 24px;
	height: 24px;
	position: absolute;
    top: 13px;
    right: 12px;
	border: none;
	background: none;
	padding: 0;
}

#KeywordSearch .common-button {
	margin: 0 auto;
}

@media all and (max-width: 767px) {
	.input-wrapper button {
		width: 16px;
		height: 16px;
		position: absolute;
		top: 13px;
		right: 12px;
		border: none;
		background: none;
		padding: 0;
		transition: opacity .3s cubic-bezier(.39,.575,.565,1);
	}

	.input-wrapper button img {
		width: 16px;
		height: 16px;
	}

	.common-keyword-area input {
		font-size: 14px;
		padding: 0 14px;
	}

	.common-keyword-area {
		padding: 0 0;
	}

	#KeywordSearch .common-button {
		width: 305px;
		max-width: 90vw;
		height: 60px;
	}
}

/*--------------------------------------------------------------------------
  	ServiceSearch
---------------------------------------------------------------------------*/

#ServiceSearch {
	margin: 0 auto 0;
}

.common-service-area {
    border-radius: 10px;
    padding: 24px 0;
    margin-bottom: 20px;
}

.common-service-area .common-service-area__title {
	font-size: 16px;
    margin-top: 8px;
	margin-bottom: 16px;
}

.common-service-list {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px 48px;
}

.common-service-list .common-service-list__button {
	width: 100%;
	font-size: 16px;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	height: 48px;
	padding: 0 16px;
	background: #FFFFFF;
}

.common-service-list .active {
	border: 2px solid #B81C22;
	background: #FDF0F1;
	padding: 0 15px;
}

.common-service-list .common-service-list__button .common-service-list__radio {
	display: block;
	margin-right: 8px;
}

.common-service-list .common-service-list__button .common-service-list__radioinner {
	display: none;
	margin-right: 8px;
}

.common-service-list .active .common-service-list__radio {
	display: none;
}

.common-service-list .active .common-service-list__radioinner {
	display: block;
}

.common-service-list .common-service-list__button .common-service-list__img {
	margin-left: auto;
}

.common-service-list .active .common-service-list__img {
	filter: invert(18%) sepia(60%) saturate(7486%) hue-rotate(347deg) brightness(70%) contrast(94%);
}

.common-service-list .common-service-list__button br {
	display: none;
}

#ServiceSearch select {
	width: 100%;
	height: 48px;
	font-size: 16px;
	font-weight: normal;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	padding: 0 16px;
	background: #FFFFFF;
}

#ServiceSearch .common-button {
	margin: 40px auto 0;
}

.select-wrapper {
	position: relative;
}

.select-wrapper::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(/apps/assets/img/menu/icon_pulldown.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
    top: 16px;
    right: 8px;
}

@media all and (max-width: 767px) {

	#ServiceSearch {
        margin: 30px auto 0;
	}

	.common-service-area {
		padding: 16px 0;
	}

	.common-service-area .common-service-area__title {
		font-size: 14px;
	}

	.common-service-list {
		grid-template-columns: 1fr 1fr;
		gap: 16px 16px;
	}

	.common-service-list .common-service-list__button {
		font-size: 12px;
		margin-top: 0;
		line-height: 14px;
	}

	.common-service-list .common-service-list__button br {
		display: block;
	}

	#ServiceSearch select {
		font-size: 14px;
		width: 100%;
	}

	#ServiceSearch .common-button {
		width: 305px;
		max-width: 90vw;
		margin: 28px auto 0;
	}
}

#map {
	width: 100%;
	aspect-ratio: 16 / 9;
}

@media all and (max-width: 767px) {
	#map {
		aspect-ratio: 1 / 1;
	}
}

#Result {
	border-top: 1px solid #CCCCCC;
	margin-top: 80px;
	padding-top: 40px;
}

.result-count {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 20px;
}

.result-count .result-count__num {
	font-weight: bold;
}

@media all and (max-width: 767px) {

	#Result {
		margin-left: -16px;
		margin-right: -16px;
		padding: 40px 16px 0;
		margin-top: 60px;
	}

	.result-count {
		font-size: 14px;
		margin-bottom: 25px;
	}
}

p {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 80px;
}

/* @SP */
@media all and (max-width: 767px) {
	p {
		font-size: 14px;
		margin-bottom: 40px;
	}
}

.l-page {
	padding: 0 10px;
}
