@charset "utf-8";

/**
 *
 *  メニュー共通css
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/

#Content{
	padding-bottom: 82px;
}

#Page {
	font-weight: bold;
}

/* @SP */
@media all and (max-width: 767px) {
	#Content{
		padding-bottom: 15px;
	}
}


/*--------------------------------------------------------------------------
  	page-ttl　アレルギー/原産地共通ページタイトル
---------------------------------------------------------------------------*/

.page-ttl .sp{
	display: none;
}

/* @SP */
@media all and (max-width: 767px) {
	.page-ttl .sp{
		display: inline;
	}
}


/*--------------------------------------------------------------------------
  	nav-tab　アレルギー/原産地共通サイドナビ
---------------------------------------------------------------------------*/

/* @SP */
@media all and (max-width: 767px) {
	.nav-tab{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
	}
	.nav-tab ul{
		overflow: hidden;
		padding: 0 7px;
	}
	.nav-tab li{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 50%;
		padding: 0 5px;
	}
	.nav-tab li a,
	.nav-tab li.active .inner{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-border-radius: 2px 2px 0 0;
		border-radius: 2px 2px 0 0;
		display: block;
		padding: 8px 9px 7px;
		font-size: 14px;
		border-bottom: none;
		text-decoration: none;
		text-align: center;
	}
	.nav-tab li a{
		color: #FFF;
		background: #000;
	}
	.nav-tab li a:hover,
	.nav-tab li.active .inner{
		width: 100%;
		color: #000;
		background: #E6E4DD;
	}
	/* tp
	-----------------------------------------------------------------*/
	.nav-tab._tp{
		padding-top: 18px;
	}
	/* bt
	-----------------------------------------------------------------*/
	.nav-tab._bt{
		padding-bottom: 10px;
	}
	.nav-tab._bt li a,
	.nav-tab._bt li.active .inner{
		-webkit-border-radius: 0 0 2px 2px;
		border-radius: 0 0 2px 2px;
	}
}

/*--------------------------------------------------------------------------
  	btn-back  アレルギー/原産地共通メニューへ戻るボタン
---------------------------------------------------------------------------*/

#Main .btn-back{
	margin-top: 30px;
}

/* @SP */
@media all and (max-width: 767px) {
	#Main .btn-back{
		margin-top: 15px;
		padding-bottom: 0;
	}
	#Main .btn-back a{
		background: #A9151A;
		border-color: #A9151A;
		color: #FFF;
	}
	#Main .btn-back a span{
		padding-left: 19px;
		background: url(/shared/images/ico_arw02.png) no-repeat 0 50%;
		background-size: 7px auto;
	}
}


/*--------------------------------------------------------------------------
  	tab-cont-sp アレルギー/原産地共通タブ
---------------------------------------------------------------------------*/

/* @SP */
@media all and (max-width: 767px) {
	.tab-cont-sp{
		padding: 6px 0;
		background: #E6E4DD;
	}
	.tab-cont-inner{
		padding-bottom: 15px;
		background: #F7F7F5;
	}
}


/*--------------------------------------------------------------------------
  	Side　アレルギー/原産地共通サイドナビ
---------------------------------------------------------------------------*/

/* bnr
-----------------------------------------------------------------*/
#Side .bnr-wrap{
	margin-top: 30px;
}

/* @SP */
@media all and (max-width: 767px) {
	#Side{
		margin-top: 0;
	}
	/* bnr
	-----------------------------------------------------------------*/
	#Side .bnr-wrap{
		width: 100%;
		max-width: 375px;
		margin: 0 auto;
	}
	#Side .bnr-wrap{
		overflow: hidden;
	}
	#Side .bnr{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		margin: 9px auto 0;
	}
	#Side .bnr:nth-child(odd){
		padding-right: 4px;
	}
	#Side .bnr:nth-child(even){
		padding-left: 4px;
	}
	#Side .bnr img{
		width: 100%;
		height: auto;
	}
}

/*--------------------------------------------------------------------------
  	店舗選択ページ
---------------------------------------------------------------------------*/
.sec-shop-select {
	margin-top: -50px;
}

.shop-select__ttl {
	text-align: center;
	font-size: 21px;
	margin-bottom: 5px;
	color: #131313;
}

.shop-select__txt {
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	color: #131313;
}

.shop-select__list {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.shop-select__item select {
	width: 346px;
	color: #131313;
	border: 2px solid #757575;
	border-radius: 6px;
	padding: 22px;
	font-size: 18px;
	background-color: #fff;
	cursor: pointer;
}

.shop-select__select__wrap {
	position: relative;
	transition: all 0.3s ease-in;
}

.shop-select__select__wrap::before {
	content: '';
	display: block;
	width: 14px;
	height: 10px;
	background: url(../images/common/select_arrow.png) no-repeat;
	position: absolute;
	right: 20px;
	top: 35px;
}

.shop-select__item .menu-link {
	width: 346px;
	display: inline-block;
	border-radius: 6px;
	text-align: center;
	padding: 22px 10px;
	font-size: 18px;
	background-color: #a9151a;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-in;
}

.shop-select__item .menu-link.is-disabled {
	opacity: 0.6;
	pointer-events: none;
}

.shop-select__item .menu-link:hover,
.shop-select__item .shop-select__select__wrap:hover {
	transition: all 0.3s ease-in;
	opacity: 0.7;
}

/* @SP */
@media all and (max-width: 767px) {
	.sec-shop-select {
		margin-top: 10px;
	}
	.shop-select__ttl {
		text-align: center;
		font-size: 16px;
		margin-bottom: 3px;
	}

	.shop-select__txt {
		text-align: center;
		font-size: 12px;
	}
	.shop-select__list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 20px;
	}
	.shop-select__item {
		margin-bottom: 20px;
	}
	.shop-select__item select {
		width: 350px;
		font-size: 13px;
		padding: 10px;
		border-width: 1px;
		border-radius: 3px;
	}
	.shop-select__select__wrap::before {
		top: 20px;
		right: 10px;
		width: 11px;
		height: 8px;
		background-image: url(../images/common/select_arrow_sp.png);
		background-size: contain;
	}
	.shop-select__item .menu-link {
		width: 350px;
		font-size: 13px;
		padding: 15px;
		border-radius: 3px;
	}
	.shop-select__item .menu-link:hover,
	.shop-select__item .shop-select__select__wrap:hover {
		opacity:1;
	}
}
/*--------------------------------------------------------------------------
  	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;
}

@media all and (min-width: 768px) {
	.common-shop-list .common-shop-list__panel {
		transition: opacity .3s cubic-bezier(.39,.575,.565,1);
	}

	.common-shop-list .common-shop-list__panel:hover {
		opacity: 0.75;
	}
}

.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(../images/common/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(../images/common/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 .common-tab__button:not(.active) {
	cursor: pointer;
}

@media all and (min-width: 768px) {
	.common-tab .common-tab__button {
		transition: opacity .3s cubic-bezier(.39,.575,.565,1);
	}

	.common-tab .common-tab__button:not(.active):hover {
		opacity: 0.75;
	}
}

.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;
	transition: opacity .3s cubic-bezier(.39,.575,.565,1);
	padding-bottom: 8px;
}

.common-button:hover {
	opacity: 0.75;
}

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

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

	.common-button:hover {
		opacity: 1;
	}
}

.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-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: 11px;
    right: 12px;
	border: none;
	background: none;
	padding: 0;
	transition: opacity .3s cubic-bezier(.39,.575,.565,1);
}

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

.input-wrapper button:hover {
	opacity: 0.75;
}

@media all and (max-width: 767px) {
	.input-wrapper button {
		width: 16px;
		height: 16px;
		position: absolute;
		top: 11px;
		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;
	}

	.input-wrapper button:hover {
		opacity: 1;
	}
}

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

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

	.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(../images/common/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;
}

#Result .common-shop-list {
	margin-bottom: 0;
}

@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;
	}
}

@media all and (min-width: 768px) {
	#Content a:hover {
		text-decoration: none;
	}
}

/* @SP */
@media all and (max-width: 767px) {
	.content-inner {
		padding: 0 16px !important;
		margin-bottom: 0;
	}
}

.menu-title {
	line-height: 1;
	margin-bottom: 24px;
}

.c-bredcrumb-list {
	margin: 16px 0 20px;
	line-height: 0;
	align-items: center;
	margin: 10px 0 30px;
}

.c-bredcrumb-list__item__text {
	padding: 0 0 3px;
}

@media all and (max-width: 767px) {
	.c-bredcrumb-list {
		margin: 10px 0 8px;
	}

	.c-bredcrumb-list__item {
		line-height: 14px;
		margin-right: 4px;
	}

	.c-bredcrumb-list__item__text {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

.c-bredcrumb-list__item a {
	border-bottom: none;
	color: #B81C22;
	margin: 0;
	white-space: nowrap;
	text-decoration: underline;
}

.c-bredcrumb-list__item img {
	margin-bottom: 3px;
}
