@charset "utf-8";

@font-face{
	font-family: 'TvertSFProDisplay';
	font-style: normal;
	font-weight: normal;
	src: url(../../css2017/fonts/TvertSFProDisplayLight.woff) format('woff');
	font-display: swap;
}
@font-face{
	font-family: 'TvertSFProDisplay';
	font-style: normal;
	font-weight: bold;
	src: url(../../css2017/fonts/TvertSFProDisplaySemibold.woff) format('woff');
	font-display: swap;
}
#main_column{
	position: relative;
	z-index: 1;
}
.layout_side{
	position: relative;
	z-index: 2;
}
#main_column .pankuzu ~ *{
	color: #555;
	font-family: 'TvertSFProDisplay','Yu Gothic',Yugothic,sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.02em;
	line-height: 1;
}
.bold{
	font-weight: bold;
}
sup{
	font-size: 70%;
	font-family: 'Yu Gothic',Yugothic,sans-serif;
	font-weight: normal;
	white-space: nowrap;
}
.ls25{ letter-spacing: .025em; }
.ls50{ letter-spacing: .05em; }
.tr{ text-align: right; }
.tc{ text-align: center; }
.tj{ text-align: justify; }
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
/*-- 追加：　TAM２０２５０８２６ --*/
.flex.swiper-slide{
	display: flex;
}
/*-- ここまで --*/
.flex.nowrap{ flex-wrap: nowrap; white-space: initial; }
.flex.reverse{ flex-direction: row-reverse; }
.flex.reverse > *{ min-height: 0; }
.flex.jc-c{ justify-content: center; }
.flex.jc-s{ justify-content: flex-start; }
.flex.jc-e{ justify-content: flex-end; }
.flex.ai-c{ align-items: center; }
.flex.ai-e{ align-items: flex-end; }
.flex.ai-st{ align-items: stretch; }
.grid {
	display: grid;
}

.secTxt{
	margin-top: 50px;
	font-size: 17px;
	line-height: 2;
}
.notes{
	color: #666;
	font-size: 10px;
	line-height: 2;
	margin-top: 10px;
	box-sizing: border-box;
	padding: 0 30px;
}
.btn button,
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
	height: 42px;
	color: #fff;
	background: #555;
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	gap: 0 20px;
	transition: opacity 200ms ease-in-out;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	cursor: pointer;
}
.btn button:hover,
.btn a:hover {
	opacity: .6;
}
.btn button:after,
.btn a::after {
	content: "";
	display: block;
	width: 8px;
	height: 15px;
	background: currentColor;
	clip-path: polygon(0% 0%, 1px 0%, 100% 50%, 1px 100%, 0% 100%, calc(100% - 1px) 50%);
}

.fi_h span,
.fi_v span{
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}
.fi_h span img{
	display: block;
	transform: translateX(30%);
	opacity: 0;
}
.fi_h.active span img{
	transition: transform 1s ease-in-out,opacity 1.5s ease-in-out;
	transform: translateX(0);
	opacity: 1;
}
.fi_v span img{
	display: block;
	transform: translateY(120%) scaleY(1.4);
	transform-origin: top center;
}
.fi_v.active span img{
	transition: transform .7s ease-in-out;
	transform: translateY(0) scaleY(1);
}
.fi_f{
	opacity: 0;
	filter: blur(5px);
}
.fi_f.active{
	transition: opacity .2s ease-in-out,filter .9s linear;
	opacity: 1;
	filter: blur(0);
}

@-moz-document url-prefix(){
	#main_column{
		line-height: 25.2px;
	}
}



.mv{
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.search__area__heading {
    margin-top: 70px;
}
	.search__area__heading img {
	    height: 32px;
	}

.area__list {
    margin-top: 40px;
}
	.area__name {
	    border-bottom: 1px solid #999999;
	    padding: 12px 10px;
	    font-size: 20px;
	    font-weight: bold;
	    color: #333;
	    position: relative;
		z-index: 1;
		cursor: pointer;
		transition: background .3s ease-in-out;
	}
	.area__name:hover {
	    background: #f8f8f8;
	}

	.area__name::before,
	.area__name::after {
		content: "";
		position: absolute;
		z-index: 1;
		top: 50%;
		right: 10px;
	  margin-top: -7px;
		width: 14px;
		height: 14px;
		transition: transform .3s ease-in-out;
	}
	.area__name::before {
		background: linear-gradient(0deg, #999, #999) no-repeat center/1px 100%;
	}
	.area__name::after {
		background: linear-gradient(0deg, #999, #999) no-repeat center/100% 1px;
	}
	.area__list__item--active .area__name::before {
		transform: scaleY(0);
		transform-origin: center;
	}

.shop__list {
	transition:all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	max-height:0;
	padding: 0 0;
	overflow: hidden;
}
.area__list__item--active .shop__list {
	max-height: 30000px;
	visibility: visible;
	opacity: 1;
	padding: 15px 0;
}

	.shop__list__item {
	    padding: 40px 0;
	    margin: auto 30px;
	}
	.shop__list__item + .shop__list__item {
	    border-top: 1px dashed #dddddd;
	}

		.shop__info__thumb {
			width: 120px;
		}

		.shop__info__detail {
		    flex-grow: 1;
		    padding-left: 30px;
		}

			.shop__info__name {
			    font-size: 17px;
			    color: #333;
			    font-weight: bold;
			}
			
			.shop__info__detail div[class^="shop__info__"] {
			    max-width: 470px;
			}
			.shop__info__address {
				margin-top: 10px;
			    font-size: 15px;
			    line-height: 1.7333;
			}
			.shop__info__open {
				margin-top: 5px;
			    font-size: 15px;
			    line-height: 1.7333;
			}
			.shop__info__tel {
				margin-top: 5px;
			    font-size: 15px;
			    line-height: 1.7333;
			}

			.shop__info__map {
			    margin-top: 33px;
			    padding-left: 20px;
			}
				a.map__btn {
			    width: 60px;
			    line-height: 30px;
			    background: #666666;
			    color: #fff;
			    display: block;
			    text-align: center;
					font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial,'Yu Gothic',Yugothic, Meiryo, sans-serif;
					font-size: 16px;
					font-weight: 400;
				}
				a.map__btn:hover {
				    color: #fff;
				}

	.product__info {
		margin-top: 20px;
	    background: #f8f8f8;
	    padding: 40px;
	}
		.product__info h6 {
		    font-size: 17px;
		    color: #333;
		    font-weight: bold;

		}

		.product__list.flex {
		    margin-top: 10px;
		}
			.product__list li {
				width: 50%;
			  line-height: 1.755555;
			}
			.product__list li::before {
				content: '・';
			}


.animated {
	animation-duration: .5s;
	animation-fill-mode: both;
}
/* fade in */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fadeIn { animation-name: fadeIn; animation-fill-mode:both; animation-duration:1s; visibility: visible !important; opacity: 0;}

/* fade in up */
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 20px, 0); } to { opacity: 1; transform: none; }}
.fadeInUp { animation-name: fadeInUp; animation-fill-mode:both; animation-duration:1.5s; visibility: visible !important; opacity: 0;}

/* fade in down */
@keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -20px, 0); } to { opacity: 1; transform: none; }}
.fadeInDown { animation-name: fadeInDown; animation-fill-mode:both; animation-duration:1.5s; visibility: visible !important; opacity: 0;}

/* fade in right */
@keyframes fadeInRight { from { opacity: 0; transform: translate(30px,0); } to { opacity: 1; transform: none; } }
.fadeInRight { animation-name: fadeInRight; animation-fill-mode:both; animation-duration:1.5s; visibility: visible !important; opacity: 0;}

/* fade in left */
@keyframes fadeInLeft {
from { opacity: 0; transform: translate(-30px,0); }to { opacity: 1; transform: none; }}
.fadeInLeft { animation-name: fadeInLeft; animation-fill-mode:both; animation-duration:1.5s; visibility: visible !important; opacity: 0;}

/* fade out */
@keyframes fadeOut { from { opacity: 1; }  to { opacity: 0; }}
.fadeOut { animation-name: fadeOut; }