/*---  お店をさがす  ---*/
.storeSearch{
	text-align: left;
}
.storeSearch h4{
	font-weight: bold;
	font-size: 1.1428571429em;
	line-height: 1.2;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	.storeSearch h4{
		margin-top: 5.1282051282vw;
	}
}
.storeSearch .pink-btn,
.storeSearch form{
	margin-top: 20px;
}
.storeSearch > div + div{
	margin-top: 40px;
}
.storeSearch .pink-btn a{
	display: inline-block;
	padding: .8em 20px;
	border: 1px solid #D84190;
	color: #D84190;
	border-radius: 10em;
	font-size: 1em;
	text-align: center;
}
.storeSearch .bnrArea{
	width: 50%;
}
@media screen and (max-width: 768px) {
	.storeSearch > div + div{
		margin-top: 10.2564102564vw;
	}
	.storeSearch > .pink-btn,
	.storeSearch > form{
		margin-top: 5.1282051282vw;
	}
	.storeSearch .pink-btn a{
		padding: .8em 5.1282051282vw;
	}
	.storeSearch .bnrArea{
		width: 100%;
	}
}
.storeBox{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	gap: 40px;
}
.storeBox li{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.1);
	width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 768px) {
	.storeBox{
		gap: 40px;
	}
	.storeBox li{
		width: calc((100% - 40px) / 2);
	}
}
.storeBox li a{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 25%;
}
@media screen and (max-width: 768px) {
	.storeBox li a{
		padding: 12%;
	}
}
.storeBox li.square a{
	padding: 35%;
}
@media screen and (max-width: 768px) {
	.storeBox li.square a{
		padding: 25%;
	}
}
.storeBox li a img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.storeBox li::before{
	content: "";
    display: block;
    padding-top: 100%;
}


/*---  近隣店舗一覧  ---*/
#locationInfo{
	text-align: right;
	height: 25px;
	margin: 0 20px;
}
#locationInfo a{
	padding: 0 0 0 12px;
	background: url(../../img/mkn_ui_v2/ico_arw_01.png) no-repeat left center;
	color: #202020;
	transition: 0.2s opacity ease-out;
}
#locationInfo a:hover{
	text-decoration: underline;
	opacity: .7;
}
@media screen and (max-width: 768px) {
	#locationInfo{
		font-size: 12px;
		margin: 0 20px 10px;
	}
}

#mapWrap{ 
	position: relative;
	background: #fff;
	margin: 0 0 40px;
}
#map-canvas{
	width: 100%;
	height: 100%;
	background: url(../img/gmap/loader.gif) no-repeat center center  #fff;
	background-size: 64px 64px;
}
#map-canvas > p{
	display: none;
}
@media screen and (max-width: 768px) {
	#mapWrap{ margin: 0 20px 40px; }
	#map-canvas{ display: none;}
}

.map-panel{
	position: absolute;
	box-sizing: border-box;
	top: 20px;
	left: 20px;
	bottom: 20px;
 	background-color: #fff;
	width: 400px;
	max-width: 100%;
	padding: 0 10px 10px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.map-panel{
		position: static;
		-webkit-box-shadow: none;
			box-shadow: none;
		margin: 0;
		width: 100%;
		padding: 0;
	}
}
.map-panel h4{
	font-weight: bold;
	font-size: 1.2857142857em;
	line-height: 1.2;
	margin-top: 20px;
}
.map-panel h4.bdr-btm{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #CFCFD0;
}
@media screen and (max-width: 768px) {
	.map-panel h4{
		margin-top: 5.1282051282vw;
	}
	.map-panel h4.bdr_btm{
		padding-bottom: 5.1282051282vw;
		margin-bottom: 5.1282051282vw;
	}
}
.panelTop {
	position: relative;
	margin-top: 0;
	padding-bottom: 15px;
}
.panelBtm {
	overflow-y: auto;
	height: calc(100% - 260px);
}
@media screen and (max-width: 768px) {
	.panelTop {
		padding-bottom: 15px;
	}
	.panelBtm {
		overflow-y: visible;
		height: auto;
	}
}


/* 検索 */
.searchForm{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	width: 100%;
	clear: both;
}
.searchForm input[type="text"]{
	display: block;
	outline: none;
	border: 1px solid #CFCFD0;
	font-size: 16px;
	border-radius: 0;
	padding: 0.5em;
	width: 100%;
	max-width: 400px;
	height: 40px;
	background: #fff;
}

.searchForm input[type="submit"]{
	width: 125px;
	height: 40px;
	font-size: 1em;
	text-align: center;
	background: #fff;
	color: #D84190;
	border: 1px solid #D84190;
	border-radius: 10em;
}
.searchForm input[type="submit"]:hover {
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.searchForm{
		gap: 3.8461538462vw;
	}
	.searchForm input[type="text"]{
		width: calc( 100% - 32.0512820513vw - 3.8461538462vw );
		height: 10.2564102564vw;
	}
	.searchForm input[type="submit"]{
		width: 32.0512820513vw;
		height: 10.2564102564vw;
	}
}


.conditions{
	margin-bottom: 5px;
}
/* accordion */
.conditions #addMenu,
.conditions #acMenu{
	margin-top: 20px;
	border: 1px solid #CFCFD0;
	border-bottom: none;
}
.conditions #addMenu > dt,
.conditions #acMenu > dt{
	display:flex;
	align-items: center;
	padding: 10px 20px;
	border-bottom: 1px solid #CFCFD0;
	background: #F7F7F7;
	min-height: 60px;
	font-size: 1.2em;
	cursor:pointer;
    position: relative;
	line-height: 1.2;
	font-weight: normal !important;    
}

@media screen and (max-width: 768px) {
	.conditions #addMenu,
	.conditions #acMenu{
		margin-top: 5.1282051282vw;
	}
	.conditions #addMenu > dt,
	.conditions #acMenu > dt{
		padding: 2.5641025641vw 5.1282051282vw;
		width: 100%;
		min-height: 15.3846153846vw;
	}
}
.conditions #addMenu > dt span,
.conditions #acMenu > dt span{
  	content: '';
	position: absolute;
	right: 5%;
    top: 50%;
    display: block;
	width: 0;
	height: 0;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-top: 8px solid #000;
	border-bottom: none;
	transform: translateX(-50%);
	transition: 0.25s;
}
.conditions #addMenu > dt.active span,
.conditions #acMenu > dt.active span{
	top: calc(50% - 4px);
	border-bottom: 8px solid #000;
	border-top: none;
}

.conditions #addMenu > dd,
.conditions #acMenu > dd{
	width:100%;
	height:auto;
	display: block;
	padding: 20px;
	margin: 0;
	/* font-size: 14px; */
	border-bottom: 1px solid #CFCFD0;
}
@media screen and (max-width: 768px) {
	.conditions #addMenu > dd,
	.conditions #acMenu > dd{
		padding: 5.1282051282vw;
	}
}
.conditions ul{ margin-top: 5px;}
.conditions ul li{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 3px 0;
}
.conditions ul li:last-child{ border-bottom: none;}

.conditions .condIcon{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	width: 36px;
	height: 36px;
	margin-right: 10px;
}
.conditions .condIcon img{
	width: 100%;
	height: auto;
	flex-shrink: 0;
}

/* スイッチ */
.conditions .switch {
	line-height: 14px;               
	text-align: center;             
	font-size: 10px;              
	position: relative;    
	min-width: 40px;                 
	width: 40px;    
	margin-left: auto;                  
  }
.conditions .switch input[type="checkbox"] {
	display: none;
}
.conditions .switch label {
	display : block; 
	box-sizing : border-box;
	height: 14px;
	background: #999;
	border-radius  : 20px;
}
.conditions .switch input[type="checkbox"]:checked +label {
	background: #ff0000;
}
.conditions .switch label span:after{
	content: "OFF";
	padding: 0 0 0 10px;
	color: #fff;
}
.conditions .switch input[type="checkbox"]:checked + label span:after{
	content: "ON";
	padding: 0 10px 0 0;
	color: #fff;
}
.conditions .switch .swImg {
	position: absolute;           
	width: 10px;                
	height: 10px;                
	background: #fff;
	top: 2px;
	left: 2px;
	border-radius: 16px;
	transition: .2s; 
	z-index: 100;
}
.conditions .switch input[type="checkbox"]:checked ~ .swImg {
	transform: translateX(26px);
}

/* 検索結果 */
#results h4{
	cursor: pointer;
}

/* #results h4{
	background: #4d4d4d;
	color: #fff;
	padding:  5px 25px;
	position: relative;
}
#results h4 span,
#results h4 span::before,
#results h4 span::after{
  	content: '';
    display: block;
    width: 12px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 5px;
    top: 6px;
}
#results h4 span{
	transform: translateY(4px) rotate(45deg);
	transition: 0.25s;
}
#results h4 span::before{
	opacity: 0;
	top: 4px;
	left: 0;
  }
  #results h4 span::after{
	transform: translateY(-8px) rotate(-90deg);
	transition: 0.25s;
	top: 8px;
	left: 0;
  }
#results h4.active span{
	transform: translateY(0) rotate(0);
    transition: 0.25s;
  }
#results h4.active span::before{
	opacity: 1;
}
#results h4.active span::after{
    transform: translateY(0) rotate(0);
    transition: 0.25s;
} */
@media screen and (max-width: 768px) {
	/* #results h4 span,
	#results h4 span::before,
	#results h4 span::after{
		top: 8px;
	}
	#results h4 span{
		transform: translateY(4px) rotate(45deg);
	}
	#results h4 span::before{
		opacity: 0;
		top: 4px;
		left: 0;
	}
	#results h4 span::after{
		transform: translateY(-8px) rotate(-90deg);
		top: 8px;
		left: 0;
	}
	#results h4.active span{
		transform: translateY(0) rotate(0);
	}
	#results h4.active span::after{
		transform: translateY(0) rotate(0);
	} */
}

#results ul.storeList{
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	#results ul.storeList{
		margin-top: 5.1282051282vw;
	}
}
#results ul.storeList > li{
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}
#results .storeInfo{
	display: flex;
	margin-bottom: 10px;
} 
#results .storeInfo > div{
	min-width: 50px;
	width: 50px;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
	#results .storeInfo{
		display: flex;
		margin-bottom: 10px;
	} 
	#results .storeInfo > div{
		width: 50px;
		margin-right: 10px;
	}
}
#results a .storeInfo dl dt{ text-decoration: underline;}
#results a:hover .storeInfo dl dt{ opacity: .7;}
#results a .storeInfo span{ display: inline-block; color: #666; text-decoration: none;}
#results .storeInfo dl{ 
	line-height: 1.2;
}
#results .storeInfo dl dt{
	font-size: 16px;
	min-height: 2em;
	margin: 0;
} 
#results .storeInfo dl dd{
	font-size: 9px;
} 

ul.storeIcon{
	display: flex;
	flex-wrap: wrap;
}
ul.storeIcon li{
	width: calc((100% / 6) - 3px);
	height: auto;
	margin: 0 3px 3px 0;
}
ul.chirashiIcon{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
}
ul.chirashiIcon li{
	border-radius: 100vmax;
	overflow: hidden;
	border: 1px solid #d5d5d5;
	background-color: #eee;
}
ul.chirashiIcon li:has(> a){
	display: block;
	border-radius: 100vmax;
	background: #fff;	
}

@media screen and (min-width: 767.98px) {
	#results .modalOpen{
		pointer-events: none;
	}
}

#results p{
	margin: 0;
	padding: 10px 0 0;
	font-size: 11px;
	text-align: center;
	color: #666;
}
#results p span.sp{
	display: none;
}
#results p span.pc{
	display: inline;
}
@media screen and (max-width: 768px) {
	#results p{
		background: #fff;
		border: 1px solid #ccc;
		border-top: none;
		padding: 8px 0;
	}
	#results p span.sp{
		display: inline;
	}
	#results p span.pc{
		display: none;
	}
}
/*---  店舗詳細  ---*/
.storeSec{
	background: #ffe402;
	padding: 10px;
	width: 1000px;
	margin: 0 auto;
}
.storeName{
	width: 980px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.storeTxt{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.storeName img{ width: 40px;}
.storeName h2{
	font-weight: normal;
	color: #000;
	font-size: 22px;
	margin: 0 0 0 20px;
	padding: 0;
}
.storeName .storeBtn{
	margin-left: auto;
	white-space: nowrap;
}
.storeName .storeBtn a{
	display: block;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	padding: 10px 20px;
	background: #4d4d4d;
	border-radius: 20px;
}
.storeName .storeBtn a:hover{
	background: #999;
	color: #fff;
	transition: 0.3s;
}
@media screen and (max-width: 768px) {
	.storeSec{
		width: 90%;
		margin: 0 auto;
	}
	.storeName{
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.storeName h2{
		font-size: 14px;
		margin: 0 0 0 10px;
		line-height: 1.4;
	}
	.storeName .storeBtn a{
		font-size: 10px;
		letter-spacing: 0;
		padding: 5px 10px;
	}
}

#detailCont {
	padding: 0;
	display: flex;
}

#detailMap{
	width: calc(100% - 360px);
	position: relative;
	background: #999;
}
@media screen and (max-width: 768px) {
	#detailMap{
		display: none;
	}
}
#detailMap .routeNav{
	position: absolute;
	top: 10px;
	left: 10px;
	background: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
	display:  flex;
}

.routeNav input[type="radio"]{
	display: none;
}
.routeNav input[type="radio"] + label img{
	width: 20px;
	height: auto;
	opacity: .3;
}
.routeNav input[type="radio"]:checked + label img{
	opacity: 1;
}

.routeNav .routeSelect{
	margin: 0 0 0 10px;
  }
.routeNav .routeSelect select{
	-moz-appearance: menulist;
	-webkit-appearance: menulist;
	appearance: menulist;
	padding: 0 20px 0 0;
}
.routeNav .routeSelect select::-ms-expand {
    display: block;
}

#detailMap .route-result{
	position: absolute;
	top: 42px;
	left: 30px;
	background: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.3);
	display:  flex;
	align-items: flex-start;
}
.route-result .distance{
	margin-right: 10px;
}
.route-result .duration{
	border-left: 1px solid #ccc;
	padding-left: 10px;
}
.route-result .close{
    color: #999;
    line-height: 1;
    margin-left: 20px;
	vertical-align: top;
}

#detailPanel{
	background: #fff;
	width: 360px;
	padding: 0 20px 20px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	#detailPanel{
		width: 100%;
		padding: 0 0 20px;
	}
}
@media screen and (min-width: 768px) {
	#detailPanel .p-table__box table tbody tr th {
		min-width: 80px;
	}
}


ul.detailIcon li{
	min-height: 20px;
	padding: 0 0 0 25px;
	margin-bottom: 5px;
	line-height: 1.6;
}
ul.detailIcon li.iconZip{
	background: url(../../asset/img/gmap/ico_zip.svg) left top no-repeat;
	background-size: 18px;
}
ul.detailIcon li.iconAdd{
	background: url(../../asset/img/gmap/ico_add.svg) left top no-repeat;
	background-size: 18px;
}
ul.detailIcon li.iconCar{
	background: url(../../asset/img/gmap/ico_car.svg) left top no-repeat;
	background-size: 18px;
}
ul.detailIcon li.iconTel{
	background: url(../../asset/img/gmap/ico_tel.svg) left top no-repeat;
	background-size: 18px;
}
ul.detailIcon li.iconFax{
	background: url(../../asset/img/gmap/ico_fax.svg) left top no-repeat;
	background-size: 18px;
}

.detailBtn{ margin: 3px 0 5px;}
.detailBtn a{
	font-size: 12px;
	display: inline-block;

	color: #D84190;
	padding: 0.4em;
	border: 1px solid #D84190;
	border-radius: 10em;
}

#detailPanel dl{
	margin-top: 20px;
}
#detailPanel dl dt{
	margin: 20px 0 0;
	border-bottom: 1px solid #cfcfd0;
	padding-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
#detailPanel dl dt h3{
	font-size: 16px;
	font-weight: bold;
}
#detailPanel dl dt span{
	font-weight: normal;
	letter-spacing: normal;
	padding-left: 20px;
	font-size: 13.333px;
	position: relative;
}
#detailPanel dl dt span::before{
	position: absolute;
    top: 0;
    bottom: 0;
	left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1px solid #4d4d4d;
    border-right: 1px solid #4d4d4d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#detailPanel dl dt span:hover{
	color: #999;
	cursor: pointer;
}
#detailPanel dl dd{
	line-height: 1.2;
	padding: 20px 0px;
}
#detailPanel dl dd > * + *{
	padding-top: 40px;
}
#detailPanel dl dd a{
	text-decoration: underline;
}
#detailPanel dl dd .detailBtn{ margin: 5px 0 5px; padding-top: 0;}
#detailPanel dl dd .detailBtn a{
	line-height: 1.6;
	padding: 0.4em;
	text-decoration: none;
}
#detailPanel dl dd .detailBtn + * {
	padding-top: 10px;
}
#detailPanel dl dd table{
	line-height: 1;
}
@media screen and (max-width: 768px) {
	#detailPanel dl dt{
		margin: 5.1282051282vw 0 0;
		padding-bottom: 2.5641025641vw;
	}
	#detailPanel dl dt h3{
		font-size: 3.5897435897vw;
	}
	#detailPanel dl dt span{
		font-size: smaller;
		padding-left: 5.1282051282vw;
	}
	#detailPanel dl dt span::before{
		width: 2.0512820513vw;
		height: 2.0512820513vw;
	}
	#detailPanel dl dd{
		padding: 5.1282051282vw 0vw;
	}
	#detailPanel dl dd > * + *{
		padding-top: 10.2564102564vw;
	}
}


.jobArea{
	margin: 10px 0 0;
	background: #f9f9f9;
	padding: 10px;
}
@media screen and (max-width: 768px) {
	.jobArea{
		margin: 20px 0 0;
		background: #ffffff;
		border: 1px solid #ccc;
	}
}
#detailPanel .jobArea dl dt{
	margin: 0;
	padding: 0;
	color: #e72a29;
	font-weight: normal;
	border-bottom: none;
}
#detailPanel .jobArea dl dd{
	margin: 10px 0 0;
}
.bnrArea{
	margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
	.bnrArea{
		margin: 30px 0 0;
	}
}
.saleInfo{
	border:1px solid #ccc;
	width:320px;
	padding: 10px;
	margin-bottom: 10px;
	background: #fff;
}
@media screen and (max-width: 768px) {
	.saleInfo{
		width:100%;
		margin-bottom: 20px;
	}
}
.saleInfo span{ display: block; margin: 0 0 10px;}
.saleInfo ul.chirashi{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
}
.saleInfo ul.chirashi li{
	border-radius: 100vmax;
	overflow: hidden;
	border: 1px solid #d5d5d5;
	background-color: #eee;
}
.saleInfo ul.chirashi li:has(> a){
	display: block;
	border-radius: 100vmax;
	background: #fff;	
}

div.shufoo-vertical .shufoo-shopList .shufoo-item{
	box-sizing: content-box;
}
@media screen and (max-width: 768px) {
	.mkrnw-responsive .shufoo-item img {
		width: auto;
	}
	div.shufoo-main-wrap {
		min-width:100% !important;
	}
}





/* モーダルウィンドウ */
body.fixed {
	position: fixed;
	left:0;
	right: 10px; /* scroll bar */
}
.modalOpen:hover{
	cursor: pointer;
	text-decoration: none;
}
span.modalOpen{
	text-decoration: underline;
}
.modalWrap{
	display: none;
	position: fixed;
	height: 100vh;
	width: 100%;
	top: 0;
	z-index: 200;
}
.overlay{
	background: rgba(0, 0, 0, 0.8);
	height: 100vh;
	width: 100%;
}
.modalCont{
	background: #fff;
	color: #999;
	border-radius: 20px;
	padding: 20px 10px 20px 20px;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 880px;
	text-align: left;
}
.modalCont p{
	color: #0b4d9e;
	margin: 0 0 .6em!important;
}
.modalCont .modalInner{
	height: 50vh;
	overflow-y: scroll;
}
.modalCont .modalTtl{
	background: #0b4d9e;
	color:#fff;
	padding: 2px 5px;
	margin-right: 10px;
}
.modalCont ul{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
.modalCont ul li{
	width: calc(100% / 3);
	display: flex;
	align-items: center;
	margin: 0 0 10px 0;
}
.modalCont .modalIcon{
	display: inline-block;
	margin-right: 10px;
	width: 70px;
	min-width: 70px;
}
.modalCont .closeBtn{
	font-size: 24px;
	line-height: 1;
	position: absolute;
	top: 5px;
	right: 15px;
}
@media screen and (max-width: 768px) {
	.modalCont{
		top: 50%;
		border-radius: 10px;
		padding: 25px 10px 15px;
		width: 90%;
		font-size: 11px;
	}
	.modalInner{
		height: 70vh;
		overflow-y: scroll;
	}
	.modalCont ul li{
		width: 50%;
	}
	.modalCont span.modalIcon{
		min-width: 25%;
		max-width: 25%;
	}
	.modalCont .closeBtn{
		position: absolute;
		top: 0;
		right: 10px;
	}
}

br.spBr{ display: none;}
@media screen and (max-width: 768px) {
	br.spBr{ display: block;}
}

#location_button{
	position: absolute;
	bottom: 20px;
	right: 8px;
	width: 50px;
	height: 50px;
	background: url(../../asset/img/gmap/location_btn.svg) no-repeat center center;
}
#location_button:hover{
	cursor: pointer;
	background: url(../../asset/img/gmap/location_btn_ov.svg) no-repeat center center;
}
#location_center{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	transform: translate(-50%, -50%);
	background: url(../../asset/img/gmap/ico_center.svg) no-repeat center center;
}


.modalCont ::-webkit-scrollbar {
    width: 6px;
}
/*スクロールバーの軌道*/
.modalCont ::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
/*スクロールバーの動く部分*/
.modalCont ::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

/* アイコン吹き出し */

.infoBoxContent {
	width: 370px;
	box-sizing: border-box;
	padding: 3px 0 3px 3px;
}
.infoBoxContent .name a:hover{ text-decoration: underline;}
.infoBoxContent .address{ font-size: 10px;}
.infoBoxContent ul.icons{
	margin: 10px 0 0 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.infoBoxContent ul.icons li{
	width: calc((100% / 8) - 3px);
	margin: 0 3px 3px 0;
}

.infoBoxContent ul.chirashi{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
  	gap: 3px;
	margin-top: 5px;
}
.infoBoxContent ul.chirashi li{
	border-radius: 100vmax;
	overflow: hidden;
	border: 1px solid #d5d5d5;
	background-color: #eee;
}
.infoBoxContent ul.chirashi li img{
	width: 80%;
	height: auto;
	margin-inline: auto;
}
.infoBoxContent ul.chirashi li:has(> a){
	display: block;
	border-radius: 100vmax;
	background: #fff;	
}









/* ------------------------------------------------
　　位置情報が出ない方へ
--------------------------------------------------*/

.ank-btn{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	margin: 0 0 60px !important;
}
.ank-btn li{
	border: 1px solid #ccc;
	border-radius: 8px;
	width: 40%;
	font-size: 16px;
}
.ank-btn li:not(:nth-last-child(-n+2)){
	margin-bottom: 20px;
}
.ank-btn li a{
	display: block;
	text-align: center;
	padding: 16px 24px;
	background: url(../../asset/img/location/arrow_ank.png) no-repeat center right 10px;
	color: #0b4d9e;
	font-weight: bold;
}

@media screen and (max-width: 896px){
	.ank-btn{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		width: 100%;
		margin: 0 0 30px;
	}
	.ank-btn li{
		width: 100%;
	}
	.ank-btn li:not(:last-child){
		margin-bottom: 20px;
	}
	
}



#location h3{
	display: inline-block;
	font-weight: 200;
	line-height: 1.5;
	letter-spacing: .1em;
	color: #202020;
	font-size: 18px;
	margin: 0 0 20px;
	padding: 4px 8px;
	background-color: #ffe300;
}
#location p{
	font-size: 16px;
	margin: 0;
	padding: 0;
}

#location img{
	width: 100%;
	height: auto;
}

#location .setting{
	margin: 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.setting li{
	position: relative;
	width: 30%;
	margin-bottom: 60px;
}
.setting li:nth-child(2n+1){
	margin-right: 10%;
}
.setting.col3 li{
	margin-right: 5%;
}
.setting.col3 li:last-child{
	margin-right: 0;
}

.setting li:not(:last-child):after{
	position: absolute;
	content: "";
	top: 40%;
	right: -18%;
	width: 24px;
	height: 24px;
	border-top: 4px solid #e72a29;
	border-right: 4px solid #e72a29;
	transform: rotate(45deg);
}
.setting.col3 li:not(:last-child):after{
	right: -10%;
}


.setting li div{
	margin-bottom: 16px;
}
#location .setting li p{
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width: 896px){
	.setting li{
		width: 40%;
		margin-bottom: 60px;
	}
	.setting.col3 li{
		margin-right: 0;
	}
	.setting.col3 li:first-child{
		margin-right: 10%;
	}
	.setting.col3 li:last-child{
		width: 60%;
	}
	#location .setting.col3 li:last-child img{
		display: block;
		width: 64%;
		margin: 0 auto;
	}

	.setting li:not(:last-child):after{
		top: 35%;
		right: -14%;
		width: 16px;
		height: 16px;
		border-top: 3px solid #e72a29;
		border-right: 3px solid #e72a29;
	}
	.setting.col3 li:not(:last-child):after{
		right: -14%;
	}
}

#location .browser{
	margin: 40px 0 40px;
	text-align: center;
}
.browser li{
	position: relative;
	width: 60%;
	margin: 0 auto 60px;
}
.browser li:not(:last-child):after{
	position: absolute;
	content: "";
	bottom: -30px;
	left: 50%;
	width: 24px;
	height: 24px;
	border-top: 4px solid #e72a29;
	border-right: 4px solid #e72a29;
	transform: rotate(135deg) translateX(50%);
}
.browser li div{
	margin-bottom: 16px;
}
#location .browser li p{
	font-size: 14px;
}

@media screen and (max-width: 896px){
	.browser li{
		width: 90%;
	}

}

.txt-s{
	font-size: .8em;
}

.flyer-box{
	position: relative;
	padding: 20px;
}
.flyer-box > p{
	margin-bottom: .5em;
}
@media screen and (max-width: 768px){
	.flyer-box{
		padding: 5.1282051282vw;
	}
}