@charset "utf-8";

body.fixed{
	margin-top: 110px;
}
@media screen and (max-width: 899px) {
	body.fixed{
		margin-top: 0;
	}
}

/*--------------------------------------------------------------------*/
/*個店ヘッダー*/
/*--------------------------------------------------------------------*/
#header_wrap{
	position: relative;
}
#shop_header{
	text-align: center;
	background: #FFFFFF;
	width: 100%;
}
#shop_header.fixed{
	position: fixed;
	z-index: 1001;
	top:0;
	left:0;
}
#shop_header #shop_header_info{
	padding: 15px 0;
	border-bottom: 1px solid #999999;
	position: relative;
}
#shop_header .logo{
	display: none;
	opacity: 0;
	transition: .3s;
	width:60px;
	margin: 0 10px;
}
#shop_header .shopname{
	font-size: 20px;
	margin-bottom: 12px;
	text-align: center;
}
#shop_header .shopinfo{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
}
#shop_header .shopinfo p{
	margin: 0 15px;
	padding-left: 20px;
}
#shop_header .shopinfo .tel{
	background:url("../img/shop/header_icon_tel.png") no-repeat left 5px;
	background-size: 15px auto;
	font-size: 16px;
}
#shop_header .shopinfo .time{
	background:url("../img/shop/header_icon_time.png") no-repeat left 3px;
	background-size: 15px auto;
}
#shop_header .shopinfo .access{
	background:url("../img/shop/header_icon_access.png") no-repeat left 3px;
	background-size: 15px auto;
}
#shop_header .shopinfo .access a{
	display: inline-block;
	vertical-align: middle;
	background: #E4E4E4;
	font-size: 11px;
	border-radius: 2px;
	padding: 2px 8px;
}

#shop_header.fixed .logo{
	display: inline-block;
	vertical-align: middle;
	opacity: 1;
}
#shop_header.fixed .shopname{
	text-align: left;
	font-size: 16px;
	margin-bottom: 0;
}
#shop_header.fixed .shopinfo{
	position: absolute;
}
#shop_header.fixed .shopinfo{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
#shop_header.fixed .shopinfo p{
	margin: 0 10px;
}
#shop_header.fixed .shopinfo .tel{
	font-size: 14px;
}
#shop_header.fixed .shopinfo .time{
	display: none;
}
#shop_header.fixed .shopinfo .access{
	font-size: 12px;
}
#shop_header.fixed .catch-copy{
	display: none;
}

@media screen and (max-width: 899px) {
	#header_wrap{
		position:sticky;
	}
	#shop_header.fixed{
		position: relative;
		z-index: 999;
	}
	#shop_header #shop_header_info{
		padding: 10px 0;
	}
	#shop_header .shopname{
		display: none;
	}
	#shop_header .shopinfo{
		display: block;
	}
	#shop_header .shopinfo p{
		display: inline-block;
	}
	#shop_header.fixed .catch-copy{
		display: block;
	}
}

/*--------------------------------------------------------------------*/
/*個店メニュー（PC）*/
/*--------------------------------------------------------------------*/
#gnav_shop{
	padding: 15px 0;
	border-bottom: 1px solid #E9E9E9;
}
#gnav_shop ul{
	display: flex;
    justify-content: space-around;
    align-items: center;
	font-size: 13px;
}
#gnav_shop ul li{
	flex: auto;
}
#gnav_shop ul li + li{
	border-left: 1px solid #E7E7E7;
}
@media screen and (max-width: 899px) {
	#gnav_shop{
		display: none;
	}
}

/*--------------------------------------------------------------------*/
/*TOPページ：店舗画像*/
/*--------------------------------------------------------------------*/
#shop_top_photoarea{
	margin-top: 20px;
}
#shop_top_photoarea #shop_top_slide li{
	margin: 0 3px;
}

/*--------------------------------------------------------------------*/
/*TOPページ：メインイメージ*/
/*--------------------------------------------------------------------*/
#shop_top_mimg{
	margin-top: 20px;
	margin-bottom: 40px;
	overflow: hidden;
}
#shop_top_mimg #shop_top_slide_mimg li{
	margin: 0 15px;
	width: 100%;
	max-width: 800px;
}
#shop_top_mimg #shop_top_slide_mimg li img{
	margin: 0 auto;
}
#shop_top_mimg #shop_top_slide_mimg button{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .3s;
}
#shop_top_mimg #shop_top_slide_mimg button:hover{
	opacity: 0.7;
}
#shop_top_mimg #shop_top_slide_mimg .slide-arrow {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	z-index: 1;
}
#shop_top_mimg #shop_top_slide_mimg .prev-arrow {
	left: 50%;
	transform: translateX(-425px);
	width: 20px;
	height: 50px;
	background: url("../img/shop/arrow_prev.png") no-repeat;
	background-size: contain;
}
#shop_top_mimg #shop_top_slide_mimg .next-arrow {
	right: 50%;
	transform: translateX(425px);
	width: 20px;
	height: 50px;
	background: url("../img/shop/arrow_next.png") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 899px) {
	#shop_top_mimg{
		margin-bottom: 30px;
	}
	#shop_top_mimg #shop_top_slide_mimg{
		padding: 0 20px;
	}
	#shop_top_mimg #shop_top_slide_mimg .slide-arrow {
		margin-top: -10px;
	}
	#shop_top_mimg #shop_top_slide_mimg .prev-arrow {
		left: 15px;
		transform: translateX(0);
		width: 10px;
		height: 25px;
	}
	#shop_top_mimg #shop_top_slide_mimg .next-arrow {
		right: 15px;
		transform: translateX(0);
		width: 10px;
		height: 25px;
	}
}

/*--------------------------------------------------------------------*/
/*TOPページ：メインコンテンツ*/
/*--------------------------------------------------------------------*/
#shop_top_contents{
	padding-bottom: 30px;
	overflow: hidden;
}
@media screen and (max-width: 899px) {
	#shop_top_contents{
		padding-bottom: 20px;
	}
}

/*サービスメニュー*/
#shop_top_service{
	margin-bottom: 60px;
	overflow: hidden;
}
#shop_top_service #shop_top_slide_service{
	display: flex;
	justify-content: center;
    align-items: flex-start;
	flex-wrap: wrap;
	overflow: hidden;
	margin-right: -5%;
	margin-top: -40px;
}
#shop_top_service #shop_top_slide_service li{
	width: 20%;
	margin-right: 5%;
	margin-top: 40px;
	text-align: center;
	padding-bottom: 20px;
	position: relative;
}
#shop_top_service #shop_top_slide_service li a{
	display: block;
	color: #FFFFFF;
}
#shop_top_service #shop_top_slide_service li .text{
	width: calc(100% - 20px);
	text-align: center;
	background: rgba(69, 69, 69, 0.8);
	position: absolute;
	left: 10px;
	bottom: 0;
	line-height: 1.2;
	font-size: 14px;
	letter-spacing: -0.05em;
	padding: 12px 0;
}
@media screen and (max-width: 899px) {
	#shop_top_service{
		margin-bottom: 40px;
	}
	#shop_top_service #shop_top_slide_service{
		display: block;
		margin: 0;
		position: relative;
		overflow-x: auto;
		padding: 0 19px;
	}
	#shop_top_service #shop_top_slide_service li{
		width: 100%;
		margin: 0 3px;
	}
	#shop_top_service #shop_top_slide_service li .text{
		width: calc(100% - 10px);
		left: 5px;
		font-size: 11px;
		padding: 5px 3px;
		min-height:36px;
		display: flex;
		justify-content: center;
		align-items: center;
}
	#shop_top_service #shop_top_slide_service button{
		margin: 0;
		padding: 0;
		background: none;
		border: none;
		border-radius: 0;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
		transition: .3s;
	}
	#shop_top_service #shop_top_slide_service button:hover{
		opacity: 0.7;
	}
	#shop_top_service #shop_top_slide_service .slide-arrow {
		position: absolute;
		top: 50%;
		margin-top: -10px;
		z-index: 1;
	}
	#shop_top_service #shop_top_slide_service .prev-arrow {
		left: 0;
		width: 10px;
		height: 25px;
		background: url("../img/shop/arrow_prev.png") no-repeat;
		background-size: contain;
	}
	#shop_top_service #shop_top_slide_service .next-arrow {
		right: 0;
		width: 10px;
		height: 25px;
		background: url("../img/shop/arrow_next.png") no-repeat;
		background-size: contain;
	}
}

/*店舗おススメ情報*/
#shop_top_osusume{
	margin-bottom: 60px;
	overflow: hidden;
}
#shop_top_osusume #shop_top_osusume_pickup{
	float: left;
	width: 30%;
	overflow: hidden;
}
#shop_top_osusume #shop_top_osusume_list{
	float: right;
	width: calc(70% - 40px);
}
#shop_top_osusume #shop_top_osusume_pickup .image{
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_osusume #shop_top_osusume_pickup .image img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_osusume #shop_top_osusume_pickup .body{
	margin-top: 10px;
}
#shop_top_osusume #shop_top_osusume_pickup .date{
	font-size: 14px;
	margin-bottom: 5px;
}
#shop_top_osusume #shop_top_osusume_pickup .title{
	font-size: 15px;
	text-decoration: underline;
	margin-bottom: 5px;
	position: relative;
	padding-top: 28px;
}
#shop_top_osusume #shop_top_osusume_pickup .title::before{
	content: "Pickup";
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	font-weight: 700;
	background: #ECECEC;
	border-radius: 20px;
	padding: 2px 15px;
	position: absolute;
	left: 0;
	top: 0;
}
#shop_top_osusume #shop_top_osusume_pickup .link{
	float: right;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	background: #3E3E3E;
	color: #FFFFFF;
	border-radius: 20px;
	padding: 5px 20px;
}
#shop_top_osusume #shop_top_osusume_list ul{
	width: auto;
	overflow-x: scroll;
	display: flex;
	align-items: stretch;
	padding: 0 15px 25px 15px;
}
#shop_top_osusume #shop_top_osusume_list ul li{
	min-width: 180px;
	width: 180px;
	padding-right: 15px;
	border-right:1px solid #DEDEDE;
}
#shop_top_osusume #shop_top_osusume_list ul li + li{
	margin-left: 15px;
}
#shop_top_osusume #shop_top_osusume_list ul li a{
	display: block;
}
#shop_top_osusume #shop_top_osusume_list .image{
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_osusume #shop_top_osusume_list .image img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_osusume #shop_top_osusume_list .body{
	margin-top: 10px;
}
#shop_top_osusume #shop_top_osusume_list .date{
	margin-top: 3px;
	font-size: 14px;
}
#shop_top_osusume #shop_top_osusume_list .title{
	font-size: 15px;
	text-decoration: underline;
}
@media screen and (max-width: 899px) {
	#shop_top_osusume{
		margin-bottom: 40px;
	}
	#shop_top_osusume #shop_top_osusume_pickup{
		float: none;
		width: 100%;
		padding-bottom: 20px;
		border-bottom: 1px solid #CCCCCC;
		margin-bottom: 20px;
	}
	#shop_top_osusume #shop_top_osusume_list{
		float: none;
		width: 100%;
	}
	#shop_top_osusume #shop_top_osusume_pickup .image{
		width: 40%;
		padding-top: 30%;
		float: left;
	}
	#shop_top_osusume #shop_top_osusume_pickup .body{
		width: calc(60% - 20px);
		float: right;
		margin-top: 0;
	}
	#shop_top_osusume #shop_top_osusume_pickup .date{
		font-size: 13px;
	}
	#shop_top_osusume #shop_top_osusume_pickup .date::before{
		font-size: 11px;
		margin-right: 8px;
	}
	#shop_top_osusume #shop_top_osusume_pickup .title{
		font-size: 14px;
	}
	#shop_top_osusume #shop_top_osusume_pickup .link{
		font-size: 11px;
	}
	#shop_top_osusume #shop_top_osusume_list ul li{
		min-width: 155px;
		width: 155px;
	}
	#shop_top_osusume #shop_top_osusume_list ul li + li{
		margin-left: 20px;
	}
	#shop_top_osusume #shop_top_osusume_list .date{
		font-size: 13px;
	}
	#shop_top_osusume #shop_top_osusume_list .title{
		font-size: 14px;
	}
}

/*TOP中段バナー*/
#shop_top_infobnr{
	margin-bottom: 60px;
}
#shop_top_infobnr #shop_top_slide_infobnr{
	position: relative;
	padding: 0 10px;
}
#shop_top_infobnr #shop_top_slide_infobnr li{
	padding: 0 10px;
}
#shop_top_infobnr #shop_top_slide_infobnr button{
		margin: 0;
		padding: 0;
		background: none;
		border: none;
		border-radius: 0;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
		transition: .3s;
	}
#shop_top_infobnr #shop_top_slide_infobnr .slide-arrow {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 1;
}
#shop_top_infobnr #shop_top_slide_infobnr .prev-arrow {
	left: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_prev.png") no-repeat;
	background-size: contain;
}
#shop_top_infobnr #shop_top_slide_infobnr .next-arrow {
	right: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_next.png") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 899px) {
	#shop_top_infobnr{
		margin-bottom: 40px;
	}
}

/*営業に関するお知らせ*/
#shop_top_information{
	margin-bottom: 60px;
	overflow: hidden;
}
#shop_top_information ul{
	display: flex;
	margin-right: -3%;
}
#shop_top_information li{
	width: calc(33.333% - 3%);
	margin-right: 3%;
}
#shop_top_information li a{
	display: block;
	overflow: hidden;
}
#shop_top_information li .image{
	float: left;
	width: 120px;
}
#shop_top_information li .image p{
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_information li .image p img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_information li .body{
	float: right;
	width: calc(100% - 135px);
	padding-top: 5px;
}
#shop_top_information li .date{
	margin-bottom: 3px;
	font-size: 14px;
}
#shop_top_information li .title{
	font-size: 15px;
	text-decoration: underline;
}
@media screen and (max-width: 899px) {
	#shop_top_information{
		margin-bottom: 40px;
	}
	#shop_top_information ul{
		display: block;
		margin-right: 0;
	}
	#shop_top_information li{
		width: 100%;
		margin-right: 0;
	}
	#shop_top_information li + li{
		margin-top: 15px;
	}
	#shop_top_information li .date{
		font-size: 13px;
	}
	#shop_top_information li .title{
		font-size: 14px;
	}
}

/*混雑カレンダー、取扱商品・サービス*/
#shop_top_cal_service{
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
    align-items: flex-start;
}
#shop_top_cal{
	width: 380px;
}
#shop_top_cal .note{
	font-size: 14px;
	margin-bottom: 20px;
}
#shop_top_serivce{
	width: 100%;
}
#shop_top_cal + #shop_top_serivce{
	width: calc(100% - 420px);
}
#shop-calendar-container .calendar-header{
	font-size: 14px;
	margin-bottom: 10px;
	text-align: center;
	position: relative;
}
#shop-calendar-container .calendar-header .current{
	font-size: 16px;
	
}
#shop-calendar-container .calendar-header .calendar-act.prev{
	display: block;
	position: absolute;
	left: 50px;
	top: 3px;
}
#shop-calendar-container .calendar-header .calendar-act.next{
	display: block;
	position: absolute;
	right: 50px;
	top: 3px;
}
#shop-calendar-container table.calendar{
	width: 100%;
	font-size: 13px;
	text-align: center;
}
#shop-calendar-container table.calendar th{
	border: 2px solid #FFFFFF;
	background: #CCCCCC;
	padding: 3px 5px;
	text-align: center;
}
#shop-calendar-container table.calendar td{
	border: 2px solid #FFFFFF;
	background: #F6F6F6;
	padding: 4px 5px;
	text-align: center;
}
#shop-calendar-container table.calendar td img{
	width: 20px;
	margin-bottom: 3px;
}
#shop-calendar-container .updated{
	text-align: right;
	font-size: 12px;
	margin-top: 5px;
}
#shop-calendar-container .pit-calendar-note{
	margin-top:10px;
	font-size:12px;
}
#shop-calendar-container .pit-calendar-note p+p{
	margin-top:3px;
}
#shop-calendar-container .pit-calendar-note div{
	display:inline-block;
	vertical-align:top;
}
#shop-calendar-container .pit-calendar-note img{
	width: 20px;
	vertical-align: middle;
}

#shop_top_serivce{
	overflow: hidden;
}
#shop_top_serivce .title{
	font-size: 15px;
	margin-bottom: 10px;
}
#shop_top_serivce ul + .title{
	margin-top: 20px;
}
#shop_top_serivce ul{
	display: flex;
	flex-wrap: wrap;
	margin-right: -1%;
	margin-top: -15px;
}
#shop_top_serivce ul li{
	width: 11.5%;
	margin-right: 1%;
	margin-top: 15px;
	text-align: center;
	font-size: 13px;
}
#shop_top_serivce ul li .icon img{
	width: 80%;
	max-width: 70px;
}
#shop_top_serivce ul li .icon{
	margin-bottom: 5px;
}
@media screen and (max-width: 899px) {
	#shop_top_cal_service{
		margin-bottom: 40px;
		display: block;
	}
	#shop_top_cal{
		width: 100%;
		margin-bottom: 40px;
	}
	#shop_top_cal + #shop_top_serivce{
		width: 100%;
	}
	#shop_top_serivce ul{
		margin-right: -2%;
		margin-top: -10px;
	}
	#shop_top_serivce ul li{
		width: 23%;
		margin-right: 2%;
		margin-top: 10px;
		font-size: 12px;
	}
	#shop_top_serivce ul li .icon img{
		max-width: 60px;
	}
	#shop_top_serivce ul li .icon{
		margin-bottom: 0;
	}
}

/*セール・クーポン情報、Webチラシ*/
#shop_top_sale_flyer{
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
    align-items: flex-start;
}
#shop_top_sale{
	flex:1;
	overflow: hidden;
}
#shop_top_flyer{
	width: 100%;
}
#shop_top_sale + #shop_top_flyer{
	width: 380px;
	margin-left: 40px;
}
#shop_top_sale ul{
	display: flex;
	align-items: flex-start;
	margin-right: -5%;
}
#shop_top_sale ul li{
	width: 45%;
	margin-right: 5%;
}
#shop_top_sale li .image p{
	width: 100%;
	padding-top: 52.4%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_sale li .image p img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_sale li .body{
	padding-top: 5px;
	text-align: center;
}
#shop_top_sale li .date{
	margin-bottom: 3px;
	font-size: 14px;
}
#shop_top_sale li .title{
	font-size: 15px;
	text-decoration: underline;
}
#shop_top_flyer li + li{
	margin-top: 15px;
}
#shop_top_flyer li a{
	display: flex;
	background: #F7F7F7;
	border: 1px solid #E5E5E5;
	border-radius: 7px;
	align-items: center;
}
#shop_top_flyer li .intro{
	font-size: 13px;
	text-align: center;
	width: 85px;
}
#shop_top_flyer li .body{
	flex:1;
	margin: 10px 0;
	padding:0 10px 0 20px;
	border-left:1px solid #000000;
}
#shop_top_flyer li .body .title{
	font-size: 15px;
	margin-bottom: 5px;
}
#shop_top_flyer li .body .date{
	font-size: 13px;
}
@media screen and (max-width: 899px) {
	#shop_top_sale_flyer{
		margin-bottom: 40px;
		display: block;
	}
	#shop_top_sale{
		margin-bottom: 40px;
	}
	#shop_top_sale + #shop_top_flyer{
		width: 100%;
		margin-left: 0;
	}
	#shop_top_sale ul{
		display: block;
		margin-right: 0;
	}
	#shop_top_sale ul li{
		width: 100%;
		margin-left: 0;
	}
	#shop_top_sale ul li + li{
		margin-top:30px;
	}
	#shop_top_sale li .date{
		font-size: 13px;
	}
	#shop_top_sale li .title{
		font-size: 14px;
	}
	#shop_top_flyer li .body .title{
		font-size: 14px;
	}
}

/*各種ボタン*/
#shop_top_linkbtn{
	margin-bottom: 60px;
	padding-top: 20px;
	border-top: 1px solid #CCCCCC;
}
#shop_top_linkbtn ul{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-right: -3%;
}
#shop_top_linkbtn li{
	width: 22%;
	margin-right: 3%;
	text-align: center;
	position: relative;
}
#shop_top_linkbtn li a{
	display: block;
	background: #3E3E3E;
	color: #FFFFFF;
	padding: 15px;
	border-radius: 30px;
}
@media screen and (max-width: 899px) {
	#shop_top_linkbtn{
		margin-bottom: 40px;
	}
	#shop_top_linkbtn ul{
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-right: -5%;
		margin-top: -10px;
	}
	#shop_top_linkbtn li{
		width: 45%;
		margin-right: 5%;
		margin-top: 10px;
	}
	#shop_top_linkbtn li a{
		padding: 10px 15px;
	}
}

/*スタッフ紹介、店舗紹介、リクルート*/
#shop_top_staff_introduce_recruit{
	margin-bottom: 60px;
	display: flex;
    align-items: flex-start;
}
#shop_top_staff_introduce_recruit div.flex_box{
	flex: 1;
}
#shop_top_staff_introduce_recruit div.flex_box + div.flex_box{
	margin-left: 30px;
}
#shop_top_staff #shop_top_slide_staff{
	position: relative;
	padding: 0 10px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
#shop_top_staff #shop_top_slide_staff li{
	padding: 0 10px;
	text-align: center;
}
#shop_top_staff #shop_top_slide_staff li a{
	display: block;
}
#shop_top_staff #shop_top_slide_staff li .image{
	margin-bottom: 5px;
}
#shop_top_staff #shop_top_slide_staff li .name{
	font-size: 14px;
}
#shop_top_staff #shop_top_slide_staff li .name span{
	display: block;
	font-size: 12px;
}
#shop_top_staff #shop_top_slide_staff button{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .3s;
}
#shop_top_staff #shop_top_slide_staff .slide-arrow {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 1;
}
#shop_top_staff #shop_top_slide_staff .prev-arrow {
	left: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_prev.png") no-repeat;
	background-size: contain;
}
#shop_top_staff #shop_top_slide_staff .next-arrow {
	right: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_next.png") no-repeat;
	background-size: contain;
}

#shop_top_introduce #shop_top_slide_introduce{
	position: relative;
	padding: 0 10px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
#shop_top_introduce #shop_top_slide_introduce li{
	padding: 0 10px;
	text-align: center;
}
#shop_top_introduce #shop_top_slide_introduce li a{
	display: block;
}
#shop_top_introduce #shop_top_slide_introduce li .image{
	margin-bottom: 5px;
}
#shop_top_introduce #shop_top_slide_introduce li .name{
	font-size: 14px;
}
#shop_top_introduce #shop_top_slide_introduce li .name span{
	display: block;
	font-size: 12px;
}
#shop_top_introduce #shop_top_slide_introduce button{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .3s;
}
#shop_top_introduce #shop_top_slide_introduce .slide-arrow {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 1;
}
#shop_top_introduce #shop_top_slide_introduce .prev-arrow {
	left: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_prev.png") no-repeat;
	background-size: contain;
}
#shop_top_introduce #shop_top_slide_introduce .next-arrow {
	right: 0;
	width: 10px;
	height: 25px;
	background: url("../img/shop/arrow_next.png") no-repeat;
	background-size: contain;
}
#shop_top_introduce #shop_top_slide_introduce li{
	padding: 0 10px;
	text-align: center;
}
#shop_top_introduce #shop_top_slide_introduce li a{
	display: block;
}
#shop_top_introduce #shop_top_slide_introduce li .image{
	margin-bottom: 5px;
	width: 100%;
	padding-top: 75%;
	position: relative;
	/*background: #EFEFEF;*/
}
#shop_top_introduce #shop_top_slide_introduce li .image img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/*margin: auto;*/
}
#shop_top_introduce #shop_top_slide_introduce li .name{
	font-size: 14px;
}

#shop_top_recruit{
	font-size: 14px;
	overflow: hidden;
	text-align: center;
}
#shop_top_recruit a{
	display: block;
}
#shop_top_recruit .link{
	margin-top: 20px;
	float: right;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	background: #3E3E3E;
	color: #FFFFFF;
	border-radius: 20px;
	padding: 5px 20px;
}

#shop_top_recruit .image img{
	max-width: 100%;
	margin-bottom: 10px;
}

@media screen and (max-width: 899px) {
	#shop_top_staff_introduce_recruit{
		margin-bottom: 40px;
		display: block;
	}
	#shop_top_staff_introduce_recruit div.flex_box + div.flex_box{
		margin-left: 0;
		margin-top: 40px;
	}
	#shop_top_recruit .link{
		font-size: 11px;
	}
}

/*ニュース*/
#shop_top_news{
	margin-bottom: 60px;
	overflow: hidden;
}
#shop_top_news ul{
	display: flex;
	margin-right: -3%;
}
#shop_top_news li{
	width: calc(33.333% - 3%);
	margin-right: 3%;
}
#shop_top_news li a{
	display: block;
	overflow: hidden;
}
#shop_top_news li .image{
	float: left;
	width: 120px;
}
#shop_top_news li .image p{
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_news li .image p img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_news li .body{
	float: right;
	width: calc(100% - 135px);
	padding-top: 5px;
}
#shop_top_news li .date{
	margin-top: 3px;
	font-size: 14px;
}
#shop_top_news li .title{
	font-size: 15px;
	text-decoration: underline;
}
@media screen and (max-width: 899px) {
	#shop_top_news{
		margin-bottom: 40px;
	}
	#shop_top_news ul{
		display: block;
		margin-right: 0;
	}
	#shop_top_news li{
		width: 100%;
		margin-right: 0;
	}
	#shop_top_news li + li{
		margin-top: 15px;
	}
	#shop_top_news li .date{
		font-size: 13px;
	}
	#shop_top_news li .title{
		font-size: 14px;
	}
}

/*商品情報*/
#shop_top_products{
	margin-bottom: 60px;
}
#shop_top_products ul{
	width: auto;
	overflow-x: scroll;
	display: flex;
	align-items: stretch;
	padding: 0 15px 25px 15px;
}
#shop_top_products ul li{
	min-width: 180px;
	width: 180px;
	padding-right: 15px;
	border-right:1px solid #DEDEDE;
}
#shop_top_products ul li + li{
	margin-left: 15px;
}
#shop_top_products ul li a{
	display: block;
}
#shop_top_products .image{
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: #EFEFEF;
}
#shop_top_products .image img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#shop_top_products .body{
	margin-top: 10px;
}
#shop_top_products .date{
	margin-top: 3px;
	font-size: 14px;
}
#shop_top_products .title{
	font-size: 15px;
	text-decoration: underline;
}
@media screen and (max-width: 899px) {
	#shop_top_products{
		margin-bottom: 40px;
	}
	#shop_top_products ul li{
		min-width: 155px;
		width: 155px;
	}
	#shop_top_products ul li + li{
		margin-left: 20px;
	}
	#shop_top_products .date{
		font-size: 13px;
	}
	#shop_top_products .title{
		font-size: 14px;
	}
}

/*メルマガ*/
#shop_top_newsletter{
	text-align: center;
	margin-bottom: 60px;
}
#shop_top_newsletter .linkbtn a{
    display: inline-block;
	width: 80%;
	max-width: 300px;
    background: #3E3E3E;
	color: #FFFFFF;
    padding: 12px 15px;
    border-radius: 30px;
}
#shop_top_newsletter .linkbtn p + p{
	margin-top: 10px;
}
@media screen and (max-width: 899px) {
	#shop_top_newsletter{
		margin-bottom: 40px;
	}
}

/*--------------------------------------------------------------------*/
/*フッター個店用設定*/
/*--------------------------------------------------------------------*/
#footer_wrap{
	padding-bottom: 0;
}
#footer_wrap .footer_shopinfo{
	margin-bottom: 50px;
}
#footer_wrap .footer_shopinfo .shopinfo .shopname{
	font-size: 18px;
	margin-bottom: 12px;
}
#footer_wrap .footer_shopinfo .shopinfo p{
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
	padding-left: 20px;
	font-size: 13px;
}
#footer_wrap .footer_shopinfo .shopinfo .tel{
	background:url("../img/shop/header_icon_tel.png") no-repeat left 5px;
	background-size: 15px auto;
	font-size: 15px;
}
#footer_wrap .footer_shopinfo .shopinfo .time{
	background:url("../img/shop/header_icon_time.png") no-repeat left 3px;
	background-size: 15px auto;
}
#footer_wrap .footer_shopinfo .shopinfo .access{
	background:url("../img/shop/header_icon_access.png") no-repeat left 3px;
	background-size: 15px auto;
}
#footer_wrap .footer_shopinfo .shopinfo .access a{
	display: inline-block;
	vertical-align: middle;
	background: #E4E4E4;
	font-size: 11px;
	border-radius: 2px;
	padding: 2px 8px;
}
#footer_wrap .footer_shopinfo .caution{
	margin-top: 15px;
}
#footer_wrap .footer_shopinfo .caution img{
	width: 100%;
	max-width: 360px;
}
@media screen and (max-width: 899px) {
	#footer_wrap .footer_shopinfo .shopinfo{
		text-align: center;
	}
	#footer_wrap .footer_shopinfo .shopinfo .shopname{
		margin-bottom: 5px;
	}
}
@media screen and (max-width: 899px) {
	#footer_wrap {
		padding: 30px 0 60px 0;
	}
}

/*--------------------------------------------------------------------*/
/*予約サイドボタン*/
/*--------------------------------------------------------------------*/
#sidebtn_booking{
	position: fixed;
	right: 0;
	top: 150px;
	z-index: 999;
}
#sidebtn_booking ul li + li{
	margin-top: 10px;
}
#sidebtn_booking ul li a{
	display: block;
	background: #3E3E3E;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 10px;
	border-radius: 8px 0 0 8px;
}
#sidebtn_booking .icon_animation{
	display: block;
	vertical-align: middle;
	width: 36px;
	height: 36px;
	margin: 0 auto 5px auto;
}
@media screen and (max-width: 1369px) {
	#sidebtn_booking {
		top: auto;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 60px;
		background: #3E3E3E;
		padding: 10px 10px;
	}
	#sidebtn_booking ul{
		display: flex;
	}
	#sidebtn_booking li{
		flex:1;
	}
	#sidebtn_booking ul li + li{
		margin-left: 8px;
		margin-top: 0;
	}
	#sidebtn_booking ul li a{
		display: block;
		border: 1px solid #FFFFFF;
		border-radius: 4px;
		padding: 8px 3px;
		font-size: 13px;
		letter-spacing: -0.05em;
	}
	#sidebtn_booking .icon_animation{
		display: inline-block;
	    vertical-align: middle;
		width: 20px;
		height: 20px;
		font-size: 0;
		margin: 0 5px 0 0;
	}
}

/*予約ポップアップメニュー*/
#reserve_popup_contents{
	position: fixed;
	right: 120px;
	top: 260px;
	z-index: 1000;
	background: #ECECEC;
	padding: 12px 20px;
	box-shadow: -1px 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0;
	pointer-events: none;
	transition:opacity .5s;
}
#reserve_popup_contents::before{
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid #ECECEC;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: absolute;
	left: 100%;
	top: 12px;
}
#reserve_popup_contents li + li{
	margin-top: 10px;
}
#reserve_popup_contents li{
	padding-left: 18px;
	position: relative;
}
#reserve_popup_contents li::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 8px;
}
#reserve_popup_contents.open{
	opacity: 1;
	pointer-events: auto;
}
@media screen and (max-width: 1369px) {
	#reserve_popup_contents{
		position: fixed;
		right: 0;
		left: 0;
		top: auto !important;
		bottom: 55px;
		padding: 12px 20px;
		width: 90%;
		margin: 0 auto;
	}
	#reserve_popup_contents::before{
		border-top: 10px solid #ECECEC;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: none;
		position: absolute;
		left: 50%;
		top: 100%;
		margin-left: -5px;
	}
	#reserve_popup_contents li{
		font-size: 13px;
	}
}

#reserve_popup_contents_topbtn{
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	z-index: 1000;
	background: #ECECEC;
	padding: 12px 20px;
	box-shadow: -1px 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0;
	pointer-events: none;
	transition:opacity .5s;
}
#reserve_popup_contents_topbtn::before{
	content: "";
	width: 0;
	height: 0;
	border-bottom: 10px solid #ECECEC;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	position: absolute;
	left: 50%;
	top: -10px;
	margin-left: -10px;
}
#reserve_popup_contents_topbtn ul{
	display: block;
	margin: 0;
}
#reserve_popup_contents_topbtn li{
	width: 100%;
	margin: 0;
}
#reserve_popup_contents_topbtn li + li{
	margin-top: 10px;
}
#reserve_popup_contents_topbtn li{
	padding-left: 18px;
	position: relative;
	text-align: left;
}
#reserve_popup_contents_topbtn li::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 8px;
}
#reserve_popup_contents_topbtn li a{
    background: none;
    color: #333333;
    padding: 0;
    border-radius: 0;
}
#reserve_popup_contents_topbtn.open{
	opacity: 1;
	pointer-events: auto;
}
@media screen and (max-width: 899px) {
	#reserve_popup_contents_topbtn{
		padding: 20px 15px;
	}
	#reserve_popup_contents_topbtn li{
		font-size: 13px;
	}
}

.only-sp{ display: none !important; }
@media screen and (max-width: 899px) {
	.only-sp{ display: block !important; }
	.only-pc{ display: none !important; }
}

/*--------------------------------------------------------------------*/
/*下層ページ大枠*/
/*--------------------------------------------------------------------*/
#shop_main_contents{
	padding-top: 20px;
	padding-bottom:80px;
	min-height: 450px;
}
@media screen and (max-width: 899px) {
	#shop_main_contents{
		padding-top: 15px;
		padding-bottom:60px;
	}
}

#shop_main_wrap{
	display: flex;
	align-items: flex-start;
    justify-content: space-between;
}
#shop_main_wrap #shop_subnavi{
	width: 260px;
	margin-right: 70px;
}
#shop_main_wrap #shop_main{
	flex: 1;
}
@media screen and (max-width: 899px) {
	#shop_main_wrap{
		display: block;
	}
	#shop_main_wrap #shop_subnavi{
		width: auto;
		margin: 0 0 30px 0;
	}
}

/*パンくず*/
.breadcrumblist{
	margin-bottom: 10px;
	overflow: hidden;
}
.breadcrumblist ul{
	float: right;
	font-size: 11px;
	color: #727272;
	display: flex;
	align-items: center;
	gap: 8px;
}
.breadcrumblist li {
	display: flex;
	align-items: center;
}
.breadcrumblist li::after {
	content: '>';
	margin-left: 8px;
}
.breadcrumblist li:last-child:after {
	display: none;
}
.breadcrumblist ul a{
	color: #727272;
}

/*サブナビ*/
#shop_subnavi{
	position: sticky;
	left: 0;
	top: 130px;
}
#shop_subnavi .shop_subnavi_list_value{
	display: none;
}
#shop_subnavi .shop_subnavi_list li{
	font-size: 14px;
	border-bottom: 1px solid #E3E3E3;
}
#shop_subnavi .shop_subnavi_list li:first-child{
	border-top: 1px solid #E3E3E3;
}
#shop_subnavi .shop_subnavi_list li a{
	display: block;
	padding: 18px 20px;
	position: relative;
}
#shop_subnavi .shop_subnavi_list li a::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -2px;
}
@media screen and (max-width: 899px) {
	#shop_subnavi{
		position: relative;
		top: 0;
	}
	#shop_subnavi .shop_subnavi_select {
		position: relative;
		cursor: pointer;
		width: 85%;
		margin: 0 auto;
	}
	#shop_subnavi .shop_subnavi_list_value{
		display: block;
		width: 100%;
		border: 1px solid #333333;
		font-size: 13px;
		padding: 8px 10px;
		position: relative;
	}
	#shop_subnavi .shop_subnavi_list_value::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		margin-top: -3px;
		border: 5px solid transparent;
		border-top: 5px solid #333333;
	}
	#shop_subnavi .shop_subnavi_list{
		margin: 0 15px;
		border:1px solid #333333;
		border-top: none;
		height: 0;
		opacity: 0;
		transition: .3s;
		pointer-events: none;
	}
	#shop_subnavi .shop_subnavi_list li{
		font-size: 13px;
	}
	#shop_subnavi .shop_subnavi_list li:first-child{
		border-top: none;
	}
	#shop_subnavi .shop_subnavi_list li:last-child{
		border-bottom: none;
	}
	#shop_subnavi .shop_subnavi_list li a{
		padding: 10px 15px;
		position: relative;
	}
	#shop_subnavi .shop_subnavi_list li a::before{
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-top: 1px solid #333333;
		border-right: 1px solid #333333;
		transform: rotate(45deg);
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -2px;
	}
	#shop_subnavi .shop_subnavi_select > ul.js_open {
		height: 100%;
		opacity: 1;
	}
	#shop_subnavi .shop_subnavi_select > .shop_subnavi_list.js_open {
		pointer-events: auto;
	}
}

/*サブナビ：固定なし店舗おすすめ情報用*/
#shop_main_wrap #shop_subnavi_bottom{
	width: 260px;
	margin-right: 70px;
	order: 0;
}
#shop_main_wrap #shop_main{
	order: 1;
}
@media screen and (max-width: 899px) {
	#shop_main_wrap #shop_subnavi_bottom{
		width: 100%;
		margin: 50px 0 0 0;
	}
}

/*サブナビ：店舗検索*/
#shop_main_wrap #shop_subnavi_bottom .subnavi_box{
	border-bottom: 1px solid #E3E3E3;
	padding: 20px;
}
#shop_main_wrap #shop_subnavi_bottom .subnavi_box:first-child{
	border-top: 1px solid #E3E3E3;
}
#shop_main_wrap #shop_subnavi_bottom .subnavi_box .title{
	font-size: 14px;
	margin-bottom: 10px;
}
#shop_subnavi_bottom .subnavi_box.subbox_search{
	font-size:14px;
}
#shop_subnavi_bottom .subnavi_box.subbox_search input[type="text"],
#shop_subnavi_bottom .subnavi_box.subbox_search select{
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-bottom: 2px solid #BEBEBE;
	width: 100%;
	font-size: 14px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
#shop_subnavi_bottom .subnavi_box.subbox_search input[type="text"]:hover,
#shop_subnavi_bottom .subnavi_box.subbox_search select:hover{
	background-color: #EEEEEE;
}

#shop_subnavi_bottom .subnavi_box.subbox_search select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	line-height: 1.2;
	padding: 7px 30px 7px 10px;
	background: url("../img/shop/cursor_select.png") no-repeat right 10px center;
	background-size: 12px 5px;
	cursor: pointer;
	color: #666666;
}
#shop_subnavi_bottom .subnavi_box.subbox_search select::-ms-expand {
	display: none;
}
#shop_subnavi_bottom .subnavi_box.subbox_search select.selected {
	color: #000000;
}
#shop_subnavi_bottom .subnavi_box.subbox_search select option{
	color: #000000;
}
#shop_subnavi_bottom .subnavi_box.subbox_search input[type="text"]{
	padding: 7px 10px;
}
#shop_subnavi_bottom .subnavi_box.subbox_search input[type="submit"]{
	display: block;
	background: #ECECEC;
	border: none;
	border-radius: 20px;
	text-align: center;
	padding: 5px 15px;
	font-size: 15px;
	width: 80%;
	max-width: 180px;
	margin: 10px auto 0 auto;
	cursor: pointer;
	transition: .3s;
}
#shop_subnavi_bottom .subnavi_box.subbox_search input[type="submit"]:hover{
	opacity: 0.7;
}

/*サブナビ：カレンダー*/
#shop_subnavi_bottom .subnavi_box.subbox_calendar .calendar-wrapper{
	/* margin: 10px -10px 0 -10px;*/
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar .calendar-header{
	position: relative;
	text-align: center;
	margin-bottom: 5px;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar .calendar-header .calendar-act.prev{
	display: block;
	position: absolute;
	left: 5px;
	top: 2px;
	font-size: 13px;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar .calendar-header .calendar-act.next{
	display: block;
	position: absolute;
	right: 5px;
	top: 2px;
	font-size: 13px;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar table.calendar{
	width: 100%;
	font-size: 13px;
	text-align: center;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar table.calendar th{
	border: 2px solid #FFFFFF;
	background: #EAEAEA;
	padding: 3px 5px;
	text-align: center;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar table.calendar td{
	border: 2px solid #FFFFFF;
	background: #F6F6F6;
	padding: 4px 5px;
	text-align: center;
}
#shop_subnavi_bottom .subnavi_box.subbox_calendar table.calendar a{
	text-decoration: underline;
}
@media screen and (max-width: 899px) {
	#shop_subnavi_bottom .subnavi_box.subbox_calendar .calendar-wrapper{
		margin: 10px 0 0 0;
	}
}

/*サブナビ：最近の投稿*/
#shop_subnavi_bottom .subnavi_box.subbox_recent ul{
	font-size: 13px;
	margin: -10px 0;
}
#shop_subnavi_bottom .subnavi_box.subbox_recent li{
	padding: 10px 0;
}
#shop_subnavi_bottom .subnavi_box.subbox_recent li + li{
	border-top: 1px dotted #CCCCCC;
}

/*サブナビ：カテゴリー*/
#shop_subnavi_bottom .subnavi_box.subbox_category ul{
	font-size: 13px;
}
#shop_subnavi_bottom .subnavi_box.subbox_category li + li{
	margin-top: 10px;
}

/*サブナビ：アーカイブ*/
#shop_subnavi_bottom .subnavi_box.subbox_archive dl{
	font-size: 13px;
}
#shop_subnavi_bottom .subnavi_box.subbox_archive dt{
	cursor: pointer;
}
#shop_subnavi_bottom .subnavi_box.subbox_archive dd + dt{
	margin-top: 10px;
}
#shop_subnavi_bottom .subnavi_box.subbox_archive dd{
	display: none;
	padding-left: 15px;
}
#shop_subnavi_bottom .subnavi_box.subbox_archive dd li{
	position: relative;
	padding-left: 15px;
	margin-top: 5px;
}
#shop_subnavi_bottom .subnavi_box.subbox_archive dd li::before{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

/*メインコンテンツ*/
#shop_main article,
#shop_main section{
	overflow: hidden;
}
#shop_main article + article{
	margin-top: 60px;
}
#shop_main section + section{
	margin-top: 40px;
}
@media screen and (max-width: 899px) {
	#shop_main section{
		font-size: 14px;
	}
	#shop_main article + article{
		margin-top: 40px;
	}
	#shop_main section + section{
		margin-top: 30px;
	}
}


/*--------------------------------------------------------------------*/
/*各種スタイル*/
/*--------------------------------------------------------------------*/
/*見出し*/
#shop_main h3{
	font-size: 16px;
	border-bottom: 1px solid #E3E3E3;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#shop_main h3::after{
	content: "";
	background:#333333;
	width: 30px;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: -5px;
}
#shop_main h4{
	border-bottom: 1px solid #E3E3E3;
	padding-bottom: 5px;
	margin-top: 25px;
	margin-bottom: 12px;
	font-size: 15px;
}
@media screen and (max-width: 899px) {
	#shop_main h4{
		font-size: 14px;
		margin-top: 20px;
		margin-bottom: 8px;
	}
}

#shop_main .body a{
	color: #006699;
	text-decoration: underline;
}

/*段組み*/
.box02{
	display: flex;
	flex-wrap: wrap;
    align-items: flex-start;
	margin-right: -5%;
	margin-top: -20px;
}
.box02 .box{
	width: 45%;
	margin-right: 5%;
	margin-top: 20px;
}
.box03{
	display: flex;
	flex-wrap: wrap;
    align-items: flex-start;
	margin-right: -2%;
	margin-top: -20px;
}
.box03 .box{
	width: 31.333%;
	margin-right: 2%;
	margin-top: 20px;
}
@media screen and (max-width: 899px) {
	.box02, .box03{
		margin-right: -5%;
		margin-top: -15px;
	}
	.box02 .box, .box03 .box{
		width: 45%;
		margin-right: 5%;
		margin-top: 15px;
	}
}

/*動画*/
.videothumbs{
	display: block;
	position: relative;
}
.videothumbs::before{
	display:block;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:1;
	width:48px;
	height:48px;
	margin:auto;
	background:url("../img/shop/icon_movie.png") no-repeat;
	content:"";
}
.videothumbs::after{
	content: "";
	display:block;
	position:absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.6);
}

/*もっと見る*/
.readmore_box{
	margin-top: 30px;
	background: #F6F6F6;
	padding: 20px 20px;
}
.readmore_box .readmore_title{
	font-size: 14px;
	background: url("../img/shop/icon_readmore.png") no-repeat left center;
	padding-left: 30px;
	margin-bottom: 15px;
}
.readmore_box .readmore_list{
	font-size: 13px;
	padding-left: 15px;
}
.readmore_box .readmore_list a{
	text-decoration: underline;
}
.readmore_box .readmore_list li + li{
	margin-top: 5px;
}
.readmore_box .readmore_list li{
	position: relative;
	padding-left: 15px;
}
.readmore_box .readmore_list li::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 8px;
}

/*リンク矢印*/
.link_cursor{
	position: relative;
	padding-left: 15px;
}
.link_cursor::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
}
.link_cursor a{
	text-decoration: underline;
}


/*--------------------------------------------------------------------*/
/*記事一覧リスト*/
/*--------------------------------------------------------------------*/
.news_list ul li{
	border-bottom: 1px solid #EEEEEE;
}
.news_list ul li a{
	padding: 12px 30px 12px 0;
	display: flex;
	align-items: flex-start;
	position: relative;
}
.news_list ul li a::before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
}
.news_list ul li .image{
	width: 30%;
	max-width: 280px;
	margin-right: 30px;
}
.news_list ul li .body{
	flex: 1;
}
.news_list ul li .image p{
	width: 100%;
	padding-top: 75%;
	position: relative;
}
.news_list ul li .image p img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.news_list ul li .body p{
	margin-top: 10px;
}
.news_list ul li .body .date{
	font-size: 15px;
}
.news_list ul li .body .title{
	font-size: 16px;
	margin-top: 5px;
}
.news_list ul li .body .foreword{
	font-size: 14px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
@media screen and (max-width: 899px) {
	.news_list ul li a{
		padding: 10px 20px 10px 0;
	}
	.news_list ul li a::before{
		width: 5px;
		height: 5px;
		right: 10px;
		margin-top: -2px;
	}
	.news_list ul li .image{
		width: 35%;
		margin-right: 15px;
	}
	.news_list ul li .body p{
		margin-top: 3px;
	}
	.news_list ul li .body p:first-child{
		margin-top: 0;
	}
	.news_list ul li .body .date{
		font-size: 13px;
		margin-top: 0;
	}
	.news_list ul li .body .title{
		font-size: 15px;
		margin-top: 2px;
	}
	.news_list ul li .body .foreword{
		font-size: 12px;
	}
}

/*ページャー*/
.pager{
	margin-top: 15px;
}
.pager ul{
	font-size: 12px;
	display: flex;
	justify-content: flex-end;
}
.pager ul li{
	padding: 0 5px;
	text-align: center;
	min-width: 25px;
}
.pager ul li + li{
	border-left:1px solid #CCC;
}
.pager ul li a{
	display: block;
	text-decoration: underline;
}
.pager + .news_list{
	border-top: 1px solid #EEEEEE;
	margin-top: 15px;
}
@media screen and (max-width: 899px) {
	.pager ul{
		float: none;
		margin: 0 auto;
		justify-content: center;
	}
}

/*SNSボタン*/
.news_list.add_social_btn ul li{
	position: relative;
}
.news_list.add_social_btn ul li .body{
	padding-top: 30px;
}
.news_list.add_social_btn ul li .body .pickup span{
	display: inline-block;
	border-radius: 20px;
	background: #ECECEC;
	font-size: 85%;
	padding: 2px 20px;
}
.social-button{
	display: flex;
	position: absolute;
	top: 12px;
	right: 30px;
}
.social-button li + li{
	margin-left:5px;
}
.social-button iframe{ vertical-align:top; }
.twitter-follow-button {
    margin: 0 !important;
}
.fb_iframe_widget > span {
	vertical-align: baseline !important;
}
.detai-social-button{
	display: flex;
	justify-content: flex-end;
}
.detai-social-button li + li{
	margin-left:5px;
}
.detai-social-button iframe{ vertical-align:top; }

@media screen and (max-width: 899px) {
	.social-button{
		position: static;
	}
	.news_list.add_social_btn ul li .body{
		padding-top: 0;
	}
	.detai-social-button{
		justify-content: center;
	}
}

/*記事詳細の戻る進むボタン*/
.pager_detail{
	font-size: 13px;
}
.pager_detail + article{
	margin-top: 25px;
}
article + .pager_detail{
	margin-top: 40px;
}
.pager_detail ul{
	display: flex;
	align-items: flex-start;
    justify-content: flex-end;
}
.pager_detail ul li + li{
	margin-left: 5px;
}
.pager_detail ul li a{
	background: #ECECEC;
	padding: 2px 10px;
}
.pager_detail ul li:first-child a{
	border-radius: 20px 0 0 20px;
}
.pager_detail ul li:last-child a{
	border-radius: 0 20px 20px 0;
}


/*--------------------------------------------------------------------*/
/*店舗情報*/
/*--------------------------------------------------------------------*/
/*店舗外観*/
.about_shopimage .text{
	font-size: 13px;
	margin-top: 8px;
	padding: 0 8px;
}

/*店舗情報：リスト*/
.about_shopinfo_table{
	width: 100%;
}
.about_shopinfo_table th, .about_shopinfo_table td{
	padding: 12px 20px;
	border-top: 1px solid #E3E3E3;
	border-bottom: 1px solid #E3E3E3;
}
.about_shopinfo_table th{
	background:#F6F6F6;
	width: 120px;
}
@media screen and (max-width: 899px) {
	.about_shopinfo_table th, .about_shopinfo_table td{
		padding: 8px 15px;
		font-size: 14px;
	}
	.about_shopinfo_table th{
		width: 90px;
	}
}

/*店舗情報：サービス*/
.about_shopinfo_service .title{
	font-size: 15px;
	margin-bottom: 10px;
}
.about_shopinfo_service ul + .title{
	margin-top: 40px;
}
.about_shopinfo_service ul{
	display: flex;
	flex-wrap: wrap;
	margin-right: -1%;
	margin-top: -15px;
}
.about_shopinfo_service ul li{
	width: 11.5%;
	margin-right: 1%;
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
}
.about_shopinfo_service ul li .icon img{
	width: 70%;
}
.about_shopinfo_service ul li .icon{
	margin-bottom: 5px;
}
@media screen and (max-width: 899px) {
	.about_shopinfo_service ul + .title{
		margin-top: 20px;
	}
	.about_shopinfo_service ul{
		margin-right: -2%;
		margin-top: -10px;
	}
	.about_shopinfo_service ul li{
		width: 23%;
		margin-right: 2%;
		margin-top: 10px;
		font-size: 12px;
	}
	.about_shopinfo_service ul li .icon img{
		max-width: 55px;
	}
	.about_shopinfo_service ul li .icon{
		margin-bottom: 0;
	}
}

/*店舗情報：アクセスマップ*/
.about_map_iframe{
	width:100%;
	height:auto;
	position:relative;
	padding-top:56.25%;
}
.about_map_iframe iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.about_map_note{
	margin-top: 20px;
	font-size: 14px;
}

/*店舗情報：店舗紹介*/
.about_introduction .text{
	margin-top: 10px;
	font-size: 13px;
}
.about_introduction .title{
	font-size: 15px;
	margin-bottom: 8px;
}

.about_introduction .image{
	margin-bottom: 8px;
}

.about_introduction .readmore_box{
	margin-top: 15px;
}
@media screen and (max-width: 899px) {
	.about_introduction .title{
		font-size: 14px;
	}
}

/*店舗紹介：スタッフ紹介*/
.about_staff .box + .box{
	margin-top: 40px;
}
.about_staff .box{
	display: flex;
	align-items: flex-start;
}
.about_staff .box .image{
	width: 180px;
	margin-right: 30px;
}
.about_staff .box .text{
	flex: 1;
	font-size: 14px;
}
.about_staff .box .text .name{
	font-size: 16px;
}
.about_staff .box .text p + p{
	margin-top: 12px;
}
.about_staff hr{
	margin: 20px 0;
}
@media screen and (max-width: 899px) {
	.about_staff .box{
		flex-wrap: wrap;
	}
	.about_staff .box .text{
		flex: 1;
		font-size: 13px;
	}
	.about_staff .box .image{
		width: 30%;
		max-width: 180px;
		margin-right: 20px;
	}
}

/*店舗紹介：リクルート情報*/
.about_recruit_box{
	font-size: 14px;
}
.about_recruit_box .title{
	font-size: 16px;
	margin-bottom: 15px;
}

/*店舗紹介：お問い合わせフォーム*/
.contact_intro{
	font-size: 14px;
	margin-bottom: 30px;
}
.contact_form_area{
	background: #F6F6F6;
	padding: 40px;
}
.contact_form {
	width: 100%;
	font-size: 15px;
}
.contact_form th,
.contact_form td {
	vertical-align: top;
}
.contact_form th {
	width: 160px;
	text-align: right;
	padding: 18px 30px 10px 0;
}
.contact_form td {
	padding: 10px 15px;
	font-size: 0;
	overflow: hidden;
	text-align: right;
}
.contact_form .input-box {
	width: 100%;
	float: left;
	vertical-align: middle;
	font-size: 15px;
	overflow: hidden;
	text-align: left;
}
.contact_form .confirm-box {
	font-size: 15px;
	text-align: left;
	padding: 7px 0 0 15px;
	line-height: 1.6;
}
.contact_form .input-box-content{
	text-align: right;
}
.contact_form .input-box.col-2{
	width: calc(50% - 15px);
}
.contact_form .input-box.col-2:first-child{
	margin-right: 30px;
}
.contact_form .input-box label{
	display: inline-block;
	vertical-align: middle;
	width: 60px;
    text-align: right;
    padding-right: 1em;
	font-size: 14px;
}
.contact_form input,
.contact_form textarea{
	box-sizing: border-box;
	width: calc(100% - 60px - 0.25em);
	border: 1px solid #7E7E7E;
	border-radius: 0;
	font-size: 15px;
	padding: 8px;
}
.contact_form textarea {
	height: 125px;
}
.contact_form .note{
	padding-left: 60px;
	font-size: 13px;
	text-align: left;
	margin:5px 0 10px 0;
}
.contact_form .error{
	font-size: 12px;
	color: #CC0000;
	text-align: right;
	margin-top: 2px;
}
.contact_form_note{
	margin-top: 30px;
	font-size: 13px;
}
.contact_form_note p + p{
	margin-top: 10px;
}
.contact_form_note .title{
	font-size: 14px;
}
.contact_form_submit{
	margin-top: 40px;
	text-align: center;
}
.contact_form_submit button{
	background: #3E3E3E;
	color: #FFFFFF;
	border: none;
	width: 280px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	font-size: 17px;
	cursor: pointer;
	font-weight: 600;
	transition: .3s;
	margin-right: 30px;
}
.contact_form_submit button:hover{
	opacity: 0.7;
}
.contact_form_submit input[type="reset"]{
	background: #ECECEC;
	border: 1px solid #ECECEC;
	border: none;
	width: 160px;
	height: 40px;
	line-height: 40px;
	border-radius: 50px;
	font-size: 15px;
	cursor: pointer;
	transition: .3s;
}
.contact_form_submit input[type="reset"]:hover{
	opacity: 0.7;
}
@media screen and (max-width: 899px) {
	.contact_form_area{
		padding: 20px;
	}
	.contact_form th,
	.contact_form td {
		width:100%;
		display: block;
		text-align: left;
		padding: 0;
	}
	.contact_form th{
		margin-top: 20px;
	}
	.contact_form .input-box-content{
		text-align: left;
	}
	.contact_form .input-box.col-2{
		width: calc(50% - 8px);
	}
	.contact_form .input-box.col-2:first-child{
		margin-right: 16px;
	}
	.contact_form .input-box label{
		display: block;
		width: auto;
		text-align: left;
		padding-right: 0;
	}
	.contact_form input,
	.contact_form textarea{
		width: 100%;
		font-size: 15px;
	}
	.contact_form .note{
		padding-left: 0;
		font-size: 12px;
		margin:5px 0 0 0;
	}
	.contact_form_submit button{
		width: 180px;
		margin-right: 15px;
		font-size: 15px;
	}
	.contact_form_submit input[type="reset"]{
		width: 140px;
		font-size: 14px;
	}
}


/*--------------------------------------------------------------------*/
/*お知らせ*/
/*--------------------------------------------------------------------*/


/*ピット混雑状況*/
.news_calendar .note{
	text-align: center;
	margin-bottom: 30px;
}
.news_calendar #shop-calendar-container .pit-calendar-note{
	margin-bottom: 30px;
	background: #F6F6F6;
	padding: 10px 20px;
}
.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box{
	display: block;
}
.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box br{
	display: none;
}
.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box img{
	margin-left: 20px;
}
.news_calendar #shop-calendar-container{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
@media screen and (max-width: 899px) {
	.news_calendar .note{
		margin-bottom: 20px;
	}
	.news_calendar #shop-calendar-container .pit-calendar-note{
		margin-bottom: 20px;
	}
	.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box{
		display: inline-block;
	}
	.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box br{
		display: block;
	}
	.news_calendar #shop-calendar-container .pit-calendar-note .pit-calendar-note-box img{
		margin-left: 0;
	}
}


/*お知らせ_詳細*/
.news_detail .box{
	display: flex;
}

.news_detail .date{
	width: 100%;
    text-align: right;
    margin-bottom: 10px;
}

.news_detail .box .image {
    width: 30%;
	padding-right: 5%;
}

.news_detail .box .image img {
    margin-bottom: 15px;
}

.news_detail .box .body{
    flex:1;
}

@media screen and (max-width: 899px) {
	.news_detail .box{
		display: block;
	}
    .news_detail .box .image {
    	width:100%;
		margin-bottom: 15px;
    } 
    .news_detail .box .body{
    	width: 100%;
    }
    
}

/*--------------------------------------------------------------------*/
/*セール・クーポン情報*/
/*--------------------------------------------------------------------*/

/*セール情報*/
.sale{}

.sale .box .period{
    text-align: center;
	background: #ECECEC;
    width: 420px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	font-size: 15px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.sale .box .image {
    float: left;
    width: 30%;
}

.sale .box .image img {
    margin-bottom: 15px;
}

.sale .box .body{
    float: right;
    width: 65%;
}

.sale .box .recommend{
    margin: 30px 0;
}
.sale .box .recommend_title{
    font-size: 16px;
	background: url("../img/shop/icon_sale_recommend.png") no-repeat left center;
	padding-left: 23px;
	margin-bottom: 15px;
}

.sale .box .recommend .recommend-image {
    float: left;
    width: 30%;
}
.sale .box .recommend .recommend-body {
    float: right;
    width: 65%;
}
.sale .box .recommend .recommend-body .title{
    border-bottom: 1px solid #E3E3E3;
	padding-bottom: 5px;
	margin-top: 0px;
	margin-bottom: 12px;
	font-size: 15px;
}

@media screen and (max-width: 899px) {
    .sale .box .period{
    width: 100%;
    }
    
    .sale .box .image {
    float:none;
    width:100%;
    } 
    .sale .box .body{
    float: none;
    width: 100%;
    }
    
}

/*クーポン情報*/
.coupon{
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.coupon .box {
    width:50%;
    height:auto;
    float: left;
    padding: 0 3%;
    margin-bottom: 50px;
}

.coupon .box .period{
    text-align: center;
	background: #ECECEC;
    width: 420px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	font-size: 15px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.coupon .box .image {
    padding-bottom: 20px;
    text-align: center;
}

.coupon .box .body {
    background: #F6F6F6;
    padding: 15px;
}

@media screen and (max-width: 899px) {
    .coupon .box {
    width:100%;
    height:auto;
    float: left;
    padding: 0 3%;
    margin-bottom: 50px;
    } 
    .coupon .box .period{
    width: 100%;
    }
}

/*--------------------------------------------------------------------*/
/*Webチラシ*/
/*--------------------------------------------------------------------*/

.web-flyer{}

.web-flyer .date{
	background: #ECECEC;
    display: inline-block;
    padding: 15px 40px;
	line-height: 150%;
	border-radius: 45px;
	font-size: 15px;
    margin-bottom: 10px;
}

/*スマホ時のみ改行*/
.br-sp {
    display: none;
}

@media (max-width: 899px) {
    .br-sp {
        display: block;
    }
}


/*--------------------------------------------------------------------*/
/*商品情報*/
/*--------------------------------------------------------------------*/

.page-intro{margin-bottom: 30px;}

.products_button a { display: block;
    background: #3E3E3E;
    color: #FFFFFF;
    padding: 15px;
    border-radius: 30px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
 }


.products{}

.products .box .date{
    text-align: right;
    margin-bottom: 10px;
}

.products .box .image {
    float: left;
    width: 30%;
}

.products .box .image img {
    margin-bottom: 15px;
}

.products .box .body{
    float: right;
    width: 65%;
}

@media screen and (max-width: 899px) {
    .products .box .image {
    float:none;
    width:100%;
    } 
    .products .box .body{
    float: none;
    width: 100%;
    }
    
}

/*商品情報カテゴリー*/
.product-category .product_category_title{
    font-size: 20px;
	background: url("../img/_dummy/shop12.png") no-repeat left center;
    background-size: 37px 43px;
	padding:5px 0 5px 45px;
	margin-bottom: 15px;
}

.product-anchor ul{
	margin: 20px 0;
	display: flex;
    flex-wrap: wrap;
}
.product-anchor ul li{
	border-bottom: 1px solid #EEEEEE;
    width: 48%;
    margin: 0 1%;
}

.product-anchor ul li a{
	padding: 12px 30px 12px 10px;
	display: flex;
	height: 100%;
	align-items: center;
	position: relative;
}
.product-anchor ul li a::before{
	content: "";
	display: block;
    width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
}

@media screen and (max-width: 899px) {
    .product-anchor ul li{
    width: 100%;
    margin: 0;
    }
    
}

/*--------------------------------------------------------------------*/
/*関連link*/
/*--------------------------------------------------------------------*/
.links_list ul{margin: 20px 0;}
.links_list ul li{
	border-bottom: 1px solid #EEEEEE;
    width: 48%;
    float: left;
    margin: 0 1%;
}

.links_list ul li a{
	padding: 20px 30px 20px 0;
	display: flex;
	align-items: flex-start;
	position: relative;
}
.links_list ul li a::before{
	content: "";
	display: block;
    width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
}

.links_list ul li .image{
    margin-right: 15px;
	width: 220px;
}
.links_list ul li .body{
	flex: 1;
}
.links_list ul li .body .title{
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width: 899px) {
    .links_list ul li{
    width: 100%;
    margin: 0;
    }
    .links_list ul li .image{
		width: 150px;
	}
}


/*--------------------------------------------------------------------*/
/*店舗おすすめ情報*/
/*--------------------------------------------------------------------*/
/*店舗おすすめ情報　日記、事例フッター*/
.diary_info{
	margin-top: 30px;
	font-size: 13px;
	border-top: 1px solid #E3E3E3;
	padding-top: 20px;
}
.diary_info p + p{
	margin-top: 8px;
}
.diary_info .shopname{
	font-size: 14px;
}
.diary_info a{
	text-decoration: underline;
}
.diary_detail .date{
	text-align: right;
	margin-bottom: 20px;
}


/*--------------------------------------------------------------------*/
/*サービスメニュー*/
/*--------------------------------------------------------------------*/
/*サービス一覧*/
#service_list_box{
	display: flex;
	justify-content: space-between;
    align-items: flex-start;
}
#service_list_box .service_list_area{
	width: 48%;
}
#service_list_box .page-service-list + .page-service-list{
	margin-top: 40px;
}
#service_list_box .page-service-list h3{
    text-align: left;
    font-size: 16px;
    border: none;
	margin: 0;
	padding: 10px 0;
}
#service_list_box .page-service-list h3::after{
	display: none;
}
#service_list_box .page-service-list h3::before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
}
#service_list_box .page-service-list h3,
#service_list_box .page-service-list .section-image{
	cursor: pointer;
	transition: .3s;
}
#service_list_box .service_accordion dt:hover h3,
#service_list_box .service_accordion dt:hover .section-image{
	opacity: 0.7;
}
#service_list_box .service_accordion dd{
	display: none;
	overflow: hiden;
}
#service_list_box .service_accordion dd ul{
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	padding-top: 20px;
	margin-right: -5%;
}
#service_list_box .service_accordion dd li{
	width: 45%;
	margin-right: 5%;
	margin-top: -1px;
}
#service_list_box .service_accordion dd li.link-group{
	width: 100%;
}
#service_list_box .service_accordion dd li + li.link-group{
	margin-top: 20px;
}
#service_list_box .service_accordion dd li a{
	height: 100%;
	position: relative;
	padding: 15px 20px 15px 10px;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	line-height: 1.2;
    display: flex;
    align-items: center;
}
#service_list_box .service_accordion dd li a::before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -2px;
}
#service_list_box .service_accordion dd li.link-group a{
	border: none;
}
#service_list_box .service_accordion dd li.link-group a::before{
	display: none;
}
@media screen and (max-width: 899px) {
	.service_list_area{
		display: none;
	}
	#service_list_box .service_accordion dd li{
		width: 100%;
	}
}

/*サービス情報詳細*/
.service_detail_title{
	font-size: 18px;
}
.service_detail_title img{
	vertical-align: middle;
	width: 50px;
	margin-right: 5px;
}
#shop_main .service_detail h4{
	border-bottom: none;
}
.service_detail_list{
	display: flex;
	flex-wrap: wrap;
    align-items: flex-start;
	margin-right: -5%;
	margin-top: -40px;
}
.service_detail_list .box{
	width: 45%;
	margin-right: 5%;
	margin-top: 40px;
}
.service_detail_list .box .service_detail_header{
	background: #ECECEC;
	padding: 8px 20px;
}
.service_detail_list .box .service_detail_content{
	font-size: 13px;
}
.service_detail_list .box .service_detail_content div + div{
	margin-top: 10px;
}
.service_detail_list .box .service_detail_content .info-work{
	margin-top: 10px;
}
.service_detail_list .box .service_detail_content .info-work p{
	padding: 3px 0 3px 35px;
	font-size: 16px;
}
.service_detail_list .box .service_detail_content .info-work p.time{
	background:url("../img/shop/service_icon_time.png") no-repeat left top 2px;
	background-size: 20px auto;
}
.service_detail_list .box .service_detail_content .info-work p.price{
	background:url("../img/shop/service_icon_price.png") no-repeat left top 6px;
	background-size: 20px auto;
}
.service_detail_list .box .service_detail_content .info-reservation-btn{
	text-align: center;
	margin-top: 20px;
}
.service_detail_list .box .service_detail_content .info-reservation-btn a{
	display: inline-block;
	color: #FFFFFF;
	background: #3E3E3E;
	font-size: 16px;
	padding: 10px 20px;
	min-width: 200px;
	border-radius: 50px;
}
@media screen and (max-width: 899px) {
	.service_detail_list{
		display: block;
		margin-right: 0;
		margin-top: -30px;
	}
	.service_detail_list .box{
		width: 100%;
		margin-right: 0;
		margin-top: 30px;
	}
}

/*--------------------------------------------------------------------*/
/*サイトマップ*/
/*--------------------------------------------------------------------*/

.sitemap{}

.sitemap ul li{
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 0;
}

.sitemap ul li a{
    display: inline-block;
	align-items: flex-start;
	position: relative;
    padding: 10px 40px 10px 20px;
}


.sitemap  ul li a::before{
	content: "";
	display: block;
    width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
    right: 20px;
	top: 50%;
	margin-top: -4px;
}

.sitemap  ul li div{
    font-size: 17px;
}

.sitemap ul li ul li{
    border-bottom:none;
    display: inline-block;
}


/*--------------------------------------------------------------------*/
/*サイトポリシー・プライバシーポリシー*/
/*--------------------------------------------------------------------*/

#site-policy h3{
    margin-top: 50px;
}
#site-policy p{
    margin-bottom: 20px;
}

#privacy-policy h3{
    margin-top: 50px;
}

#privacy-policy p{
    margin-bottom: 10px;
}

#privacy-policy a{
    display: inline-block;
	align-items: flex-start;
	position: relative;
    padding: 10px 40px 10px 20px;
}

#privacy-policy a::before{
	content: "";
	display: block;
    width: 5px;
	height: 5px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
	position: absolute;
    right: 20px;
	top: 50%;
	margin-top: -4px;
}


/*--------------------------------------------------------------------*/
/*メールマガジン*/
/*--------------------------------------------------------------------*/
.magazine_rule{
	border: 1px solid #DDDDDD;
	padding: 0 25px 30px 25px;
	height: 300px;
	overflow: auto;
	margin-bottom: 40px;
	font-size: 13px;
}


/*--------------------------------------------------------------------*/
/*記事検索*/
/*--------------------------------------------------------------------*/
.search_pager{
	display: flex;
	justify-content: space-between;
}
.result-search-box{
	font-size: 0;
	overflow: hidden;
}
.result-search-box .search-condition{
	margin-right: -10px;
}
.result-search-box input[type="text"],
.result-search-box select{
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-bottom: 2px solid #BEBEBE;
	width: 100%;
	font-size: 14px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.result-search-box input[type="text"]:hover,
.result-search-box select:hover{
	background-color: #EEEEEE;
}

.result-search-box select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	line-height: 1.2;
	padding: 7px 30px 7px 10px;
	background: url("../img/shop/cursor_select.png") no-repeat right 10px center;
	background-size: 12px 5px;
	cursor: pointer;
	color: #666666;
	width: calc(33.333% - 10px);
	margin-right: 10px;
}
.result-search-box select::-ms-expand {
	display: none;
}
.result-search-box select.selected {
	color: #000000;
}
.result-search-box select option{
	color: #000000;
}
.result-search-box input[type="text"]{
	padding: 7px 10px;
}
.result-search-box input[type="submit"]{
	display: block;
	background: #ECECEC;
	border: none;
	border-radius: 20px;
	text-align: center;
	padding: 5px 15px;
	font-size: 15px;
	width: 80%;
	max-width: 180px;
	margin: 10px auto 0 auto;
	cursor: pointer;
	transition: .3s;
}
.result-search-box input[type="submit"]:hover{
	opacity: 0.7;
}
@media screen and (max-width: 899px) {
	.search_pager{
		display: block;
	}
	.search_pager p{
		margin-bottom: 10px;
	}
	.result-search-box .search-condition{
		margin-right: 0;
	}
	.result-search-box select{
		width: 100%;
		margin-right: 0;
	}
}

/*--------------------------------------------------------------------*/
/*相談予約*/
/*--------------------------------------------------------------------*/
.reservation_wraper {}
.reservation_wraper h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 12px 15px;
    background: #ECECEC;
	border: none;
	margin-bottom: 0;
}
@media screen and (max-width: 899px) {
    .reservation_wraper h2 {
        font-size: 16px;
    }
}
.reservation_wraper h3 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 1rem .5rem;
    margin-bottom: 1rem;
}
.reservation_wraper h4 {
    font-size: 22px;
    font-weight: bold;
    padding: 1rem 0 .5rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid #454545;
}
.reservation_wraper p {
    font-size: 16px;
    padding: .3rem 1rem;
}
.reservation_main_block {
    background: #FFF;
}
.flexbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
}
.noteline {
    font-size: 90%;
    color: red;
    margin-left: 1rem;
}
.noteline:before {
    margin-left: -1rem;
    content: "●";
}
.mainVixual {
    padding-bottom: 1rem;
}
.mainVixual figure {
    margin: 0;
    padding: 0 0 10px;
}
.mainVixual p {
    font-size: 26px;
    font-weight: bold;
    font-feature-settings: "palt" 1;
    text-align: center;
    padding: 2rem .5rem;
}
@media screen and (max-width: 899px) {
	.reservation_wraper p{
		font-size: 14px;
	}
    .mainVixual p {
        font-size: 16px;
		padding: 1.5rem .5rem;
    }
}
.mainVixual ul {
    -webkit-align-items: strech;
    -moz-align-items: strech;
    -ms-align-items: strech;
    align-items: strech;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.mainVixual ul li {
    width: calc(100%/3);
}
.mainVixual ul li a {
    text-decoration: none;
    text-align: center;
}
.mainVixual ul li a img {
    -webkit-transition: all .3s;
    transition: all .3s;
    max-width: 100%;
    height: auto;
}
.mainVixual ul li a span {
    display: block;
    margin: auto;
    font-weight: bold;
    color: #454545;
}
.mainVixual ul li a:hover img, .mainVixual ul li a:focus img, .mainVixual ul li a:active img {
    opacity: 0.75;
    filter: alpha(opacity=75);
}
.linkBoxBtn a {
    padding: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 5px;
    display: block;
    text-decoration: none;
    background: #454545;
	border-radius: 10px;
}
.triangle {
    width: 0;
    height: 0;
    border-width: 36px 0 36px 16px;
    border-color: transparent transparent transparent #ECECEC;
    border-style: solid;
}
@media screen and (max-width: 899px) {
    .triangle {
        border-width: 16px 36px 0 36px;
        border-color: #ECECEC transparent transparent transparent;
    }
}
.contBlock {
    padding-bottom: 2rem;
}
.contBlock h5{
	text-align: center;
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 10px;
}
@media screen and (max-width: 899px) {
	.contBlock h5{
		font-size: 16px;
	}
}
.contBlock h5 span {
    font-size: 12px;
    color: red;
    display: inline-block;
}
.contBlock dd, .contBlock dt {
    padding: 0;
    margin: 0;
}
.contBlock .boxWrapper {
    width: 100%;
    padding: 0 0 1rem;
    -webkit-align-items: strech;
    -moz-align-items: strech;
    -ms-align-items: strech;
    align-items: strech;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper {
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }
}
.contBlock .boxWrapper.linkLine {
    padding-top: 1rem;
}
.contBlock .boxWrapper .linkBox {
    width: calc(100%/3);
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .linkBox {
        width: 100%;
        margin-bottom: 1rem;
    }
}
.contBlock .boxWrapper .linkBox dl {
    width: 95%;
    margin: 0 auto .5rem;
    border: 3px solid #eeeeee;
}
.contBlock .boxWrapper .linkBox dl dt {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 1rem .5rem 0;
    position: relative;
}
.contBlock .boxWrapper .linkBox dl dt span.subTit {
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: red;
    font-size: 14px;
}
.contBlock .boxWrapper .linkBox dl dt span.subTit span {
    display: inline-block;
    margin: auto;
    background: #FFF;
    padding: .2rem .6rem;
}
.contBlock .boxWrapper .linkBox dl dd {
    padding: .5rem 1rem 1rem;
    min-height: 4rem;
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .linkBox dl dd {
        min-height: auto;
    }
}
.contBlock .boxWrapper .linkBox dl dd > ul {
    padding: 0 1rem .5rem;
}
.contBlock .boxWrapper .pointBox {
    width: calc(100%/3);
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .pointBox {
        width: 100%;
    }
}
.contBlock .boxWrapper .pointBox dl {
    margin: .5rem;
}
.contBlock .boxWrapper .pointBox dl dt {
    padding: 1rem 1rem .5rem;
    font-size: 15px;
    font-weight: bold;
    color: #454545;
    text-align: center;
    border-bottom: 1px solid #454545;
}
.contBlock .boxWrapper .pointBox dl dd {
    padding: 1rem;
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .pointBox dl dd {
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }
}
.contBlock .boxWrapper .pointBox dl dd .txtBox p {
    padding: .5rem;
}
.contBlock .boxWrapper .pointBox dl dd img {
    width: 140px;
    margin-left: .5rem;
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .pointBox dl dd img {
        width: 90px;
    }
}
.contBlock .boxWrapper .triWrap {
    width: 3%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.contBlock .boxWrapper .flowBox {
    width: 23%;
    background: #ECECEC;
}
.contBlock .boxWrapper .flowBox dl {
    padding: .8rem;
}
.contBlock .boxWrapper .flowBox dl dt {
    padding-top: 0rem;
    min-height: 5rem;
    font-size: 18px;
    font-weight: bold;
}
.contBlock .boxWrapper .flowBox dl dt span {
    font-weight: normal;
    font-size: 12px;
    padding-bottom: .6rem;
}
.contBlock .boxWrapper .flowBox dl dd {
    padding-top: .5rem;
    padding-bottom: 1rem;
    font-size: 14px;
    min-height: 5rem;
}
.contBlock .boxWrapper .flowBox dl dd span {
    font-size: 12px;
}
.contBlock .boxWrapper .goalFlow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 19%;
}
.contBlock .boxWrapper .goalFlow dl {
    padding: .3rem;
    border: 3px solid #999999;
}
.contBlock .boxWrapper .goalFlow dl dt {
    font-size: 16px;
    color: #454545;
    font-weight: bold;
    line-height: 110%;
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.contBlock .boxWrapper .goalFlow dl dd {
    text-align: center;
    margin: auto;
}
.contBlock .boxWrapper .goalFlow dl dd figure {
    padding: 0;
    margin: 0 .5rem;
}
.contBlock .boxWrapper .goalFlow dl dd figure figcaption {
    font-size: 12px;
    line-height: 110%;
}
@media screen and (max-width: 899px) {
    .contBlock .boxWrapper .triWrap, .contBlock .boxWrapper .flowBox, .contBlock .boxWrapper .goalFlow {
        width: 100%;
    }
    .contBlock .boxWrapper .flowBox {
        text-align: center;
    }
    .contBlock .boxWrapper .flowBox dl {
        padding-top: 0;
    }
    .contBlock .boxWrapper .flowBox dl dt {
        min-height: auto;
    }
    .contBlock .boxWrapper .flowBox dl dd {
        padding-top: 0;
        padding-bottom: .5rem;
        min-height: auto;
    }
    .contBlock .boxWrapper .triWrap {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        padding-bottom: .5rem;
    }
    .contBlock .boxWrapper .goalFlow dl {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        -js-display: flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        width: 100%;
    }
    .contBlock .boxWrapper .goalFlow dl dt {
        padding-bottom: 0;
        width: 50%;
    }
    .contBlock .boxWrapper .goalFlow dl dd {
        width: 50%;
    }
    .contBlock .boxWrapper .goalFlow dl dd figure {
        max-width: 240px;
    }
}
.contBlock .multiLIne {
    -webkit-align-items: strech;
    -moz-align-items: strech;
    -ms-align-items: strech;
    align-items: strech;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contBlock .multiLIne .step_1 {
    width: 38%;
    padding-right: 2%;
}
.contBlock .multiLIne .step_1 .flowBox {
    width: 60%;
}
.contBlock .multiLIne .step_1 .goalFlow {
    width: 32%;
}
.contBlock .multiLIne .step_1 .triWrap {
    width: 8%;
}
@media screen and (max-width: 899px) {
    .contBlock .multiLIne .step_1 {
        padding-right: 0%;
        width: 100%;
    }
    .contBlock .multiLIne .step_1 .triWrap, .contBlock .multiLIne .step_1 .flowBox, .contBlock .multiLIne .step_1 .goalFlow {
        width: 100%;
    }
}
.contBlock .multiLIne .step_2 {
    width: 60%;
}
.contBlock .multiLIne .step_2 .flowBox {
    width: 33%;
}
.contBlock .multiLIne .step_2 .goalFlow {
    width: 20%;
}
.contBlock .multiLIne .step_2 .triWrap {
    width: 6%;
}
@media screen and (max-width: 899px) {
    .contBlock .multiLIne .step_2 {
        width: 100%;
    }
    .contBlock .multiLIne .step_2 .triWrap, .contBlock .multiLIne .step_2 .flowBox, .contBlock .multiLIne .step_2 .goalFlow {
        width: 100%;
    }
}
.contBlock p.leadPline {
    font-size: 20px;
}
@media screen and (max-width: 899px) {
    .contBlock p.leadPline {
        font-size: 16px;
    }
}
.noteBlock {
    border: 4px solid #fff;
    padding: 1rem;
	background: #F6F6F6;
}
.noteBlock > dl {
    padding-top: 1rem;
}
.noteBlock > dl > dt {
    font-weight: bold;
    font-size: 14px;
}
.noteBlock > dl > dd {
    padding: 0 1rem;
    font-size: 14px;
}
.noteBlock > dl > dd.noteLine {
    padding: 0 1rem;
    color: red;
}
.noteBlock > dl > dd > ul > li {
    margin-left: 1rem;
}
.noteBlock > dl > dd > ul > li:before {
    margin-left: -1rem;
    content: "●";
}
.noteBlock > dl > dd > dl {
    margin-bottom: 1rem;
}
.noteBlock > dl > dd > dl > dt {
    margin-left: 1rem;
}
.noteBlock > dl > dd > dl > dt:before {
    margin-left: -1rem;
    content: "●";
}
.noteBlock > dl > dd > dl > dd > ul {
    padding-bottom: 1rem;
    padding-left: 1rem;
    font-size: 12px;
}
.noteBlock > dl > dd > dl > dd > ul > li {
    margin-left: 1rem;
}
.noteBlock > dl > dd > dl > dd > ul > li:before {
    margin-left: -1.4rem;
    content: "・";
    vertical-align: top;
}
.noteBlock > dl > dd > dl > dd > ul > li a {
    padding: 0 .5rem;
    font-size: 12px;
}
.noteBlock > dl > dd > dl > dd > ul > li dl {
    display: inline-block;
}
.noteBlock > dl > dd > dl > dd > ul dd {
    font-size: 12px;
}
@media all and (-ms-high-contrast: none) {
    .mainVixual {
        width: 100%;
    }
    .mainVixual ul.flexbox {
        width: 100%;
    }
    .mainVixual ul.flexbox li {
        max-width: 33%;
    }
    img {
        flex-shrink: 0;
    }
    .contBlock {
        width: 100%;
    }
    .contBlock .flexbox.boxWrapper {
        width: 100%;
    }
    .contBlock .flexbox.boxWrapper .pointBox {
        max-width: 33%;
    }
    .contBlock .flexbox.boxWrapper .pointBox dd img {
        width: 70px;
        height: auto;
    }
    .contBlock .flexbox.boxWrapper .flowBox dl, .contBlock .flexbox.boxWrapper .goalFlow dl {
        max-width: 90%;
    }
    .contBlock .flexbox.boxWrapper .flowBox dl dd img, .contBlock .flexbox.boxWrapper .goalFlow dl dd img {
        width: 100%;
    }
    .contBlock .flexbox.boxWrapper .linkBox {
        max-width: 33%;
    }
}


/*--------------------------------------------------------------------*/
/*テキストエディタ用見出し*/
/*--------------------------------------------------------------------*/
/*H1*/
#shop_main .body h4{
    font-size: 100%;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #ECECEC;
}
/*H2*/
#shop_main .body h5{
    font-size: 100%;
    font-weight: bold;
    padding: 3px 10px;
    border-bottom: 1px dotted #E3E3E3;
	margin-bottom: 10px;
}
#shop_main .body h6 {
    font-size: 100%;
    font-weight: bold;
    padding: 0 8px;
    border-left: 5px solid #E3E3E3;
	margin-bottom: 10px;
}

/*--------------------------------------------------------------------*/
/*FAQ用
/*--------------------------------------------------------------------*/

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

/* 質問 */
.faq-item dt {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  padding-right: 20px;
}

/* 三角 */
.faq-item dt::after {
  content: "▶";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform 0.3s;
}

.faq-item.open dt::after {
  transform: rotate(90deg);
}

/* 答え（アニメーション用） */
.faq-item dd {
  margin: 10px 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
