/* -------------------- common css  -------------------- */
:root {
    --mainColor: #ffff00;
    --txtColor: #000;
    --black: #000;
    --white: #fff;
    --gray: #777;
    --font_stack: 'Rubik', 'Noto Sans JP', sans-serif;
    --common_border: 1px solid var(--black);
	--font_en: "Rubik", sans-serif;
	--ease: all 0.3s ease;
	
}

/*==================================
　レイアウト
==================================*/
#shop_wrapper {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 260px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 80px;
}
#shop_main {
	width: calc(100% - 80px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
#shop_side {
	width: 200px;
	max-width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
#shop_header {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	justify-content: flex-start;
	z-index: 0;
}
#shop_header::before {
	content: '';
	display: block;
	width: auto;
	height: 100px;
	aspect-ratio: 611 / 151;
	background-image: url(https://teatsui-seitai.com/wp-content/uploads/2024/09/icon-yellow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: -50px;
	transform: translate(0,-50%);
	z-index: -1;
}
#shop_header > em {
	display: block;
	width: 100%;
	font-size: 34px !important;
	font-family: var(--font_stack);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 8.4px;
	color: #000000;
	font-style: normal;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}
#shop_header > h1 {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 3.2px;
	color: #070707;
	padding: 0;
	margin: 0;
	position: relative;
}
@media (max-width: 768px) {
	#shop_wrapper {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 140px 25px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	#shop_main {
		width: calc(100%);
	}
	#shop_side {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
	#shop_header {
		width: 100%;
		padding: 0 0 0 15px;
		margin: 0 auto 40px;
		grid-row-gap: 2px;
	}
	#shop_header::before {
		height: 65px;
		aspect-ratio: 611 / 151;
		left: 0;
	}
	#shop_header > em {
		font-size: 20px !important;
		letter-spacing: 8.4px;
	}
	#shop_header > h1 {
		font-size: 12px;
		letter-spacing: 3.2px;
	}
}


/*==================================
 タイトル
==================================*/
#shop_ttl {
	width: 100%;
	padding: 20px;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#shop_ttl > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
#shop_ttl > h2 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
}
@media (max-width: 768px) {
	#shop_ttl {
		width: 100%;
		padding: 15px 0;
		margin: 0 auto 20px;
		column-gap: 15px;
	}
	#shop_ttl > span {
		font-size: 12px;
	}
	#shop_ttl > h2 {
		font-size: 20px;
	}
}

/*==================================
 画像
==================================*/
/*ギャラリー*/
.gallery-container {
	display: flex;
	gap: 10px;
	width: 100%;
	margin: 0 auto 50px;
	align-items: stretch;
}
.main-swiper {
	flex: 1;
	aspect-ratio: 37 / 23;
	height: auto;
}
.thumb-swiper {
	width: 180px;
	aspect-ratio: 37 / 23;
	height: auto;
}
.thumb-swiper .swiper-slide {
	height: calc((100% - 30px) / 4); /* 4枚 & 10px間隔×3 */
	aspect-ratio: 37 / 23;
	opacity: 0.5;
	cursor: pointer;
}
.thumb-swiper .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 768px) {
	/*ギャラリー*/
	.gallery-container {
		display: flex;
		gap: 10px;
		width: 100%;
		margin: 0 auto;
		align-items: stretch;
		flex-wrap: wrap;
	}
	.main-swiper {
		flex: 1;
		aspect-ratio: 37 / 23;
		height: auto;
		width: 100%;
	}
	.thumb-swiper {
		width: 100%;
		aspect-ratio: unset;
		height: auto;
	}
	.thumb-swiper .swiper-slide {
		width: calc((100% - 30px) / 4); /* 4枚 & 10px間隔×3 */
		height: auto;
		aspect-ratio: 37 / 23;
		opacity: 0.5;
		cursor: pointer;
	}
	.thumb-swiper .swiper-slide-thumb-active {
		opacity: 1;
	}
}

/*==================================
　共通
==================================*/
.shopSec {
	width: 100%;
	padding: 80px 50px;
	margin: 0 auto;
	position: relative;
}
.shopSec::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-size: 11px 3px;
	background-repeat: repeat-x;
	background-image: radial-gradient(circle, #000 1.5px, transparent 1.5px);
}
.shopSec > header {
	width: 100%;
	padding: 0 0 0 60px;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
.shopSec > header::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 56px;
	background-image: url('../../img/svg/reserve/symbol-mark.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.shopSec > header > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	text-align: left;
}
.shopSec > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
}
@media (max-width: 768px) {
	.shopSec {
		width: 100%;
		padding: 50px 0;
	}
	.shopSec > header {
		width: 100%;
		padding: 0 0 0 40px;
		margin: 0 auto 20px;
		grid-row-gap: 5px;
	}
	.shopSec > header::before {
		content: '';
		position: absolute;
		width: auto;
		height: 42px;
		aspect-ratio: 314 / 508;
	}
	.shopSec > header > span {
		font-size: 12px;
	}
	.shopSec > header > h2 {
		font-size: 20px;
	}
}

/*==================================
スケジュール 予約
==================================*/
#shop_information.shopSec::after {
	display: none;
}
.shop_info_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
}
/*スケジュール*/
.shop_infoleft {
	width: calc(100% - 50px - 180px);
	padding: 0;
	margin: 0;
	position: relative;
}
.shop_schedule {
	width: 100%;
	table-layout: auto;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	border-spacing: 0;
}
.shop_schedule th {
	padding: 15px;
	margin: 0;
	border: none;
	background: none;
	border-bottom: 1px solid #c8c8c8;
	font-size: 16px;
	line-height: 1em;
	font-weight: 600;
	text-align: left;
}
.shop_schedule td {
	padding: 15px;
	margin: 0;
	border: none;
	background: none;
	border-bottom: 1px solid #c8c8c8;
	font-size: 16px;
	line-height: 1em;
	font-weight: 500;
	vertical-align: middle;
	text-align: center;
}
/*ボタン*/
.shop_btn {
	width: 180px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.shop_btn > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.shop_btn > li > a {
	background-color: var(--mainColor);
	border-radius: 43px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	transition: var(--ease):
}
.shop_btn > li > a:hover {
	opacity: 0.8;
	transition: var(--ease):
}
.shop_btn > li.tel > a::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background-image: url('https://teatsui-seitai.com/wp-content/themes/teatsui/page_assets_for_all_code/img/svg/reserve/phone-icon.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.shop_btn > li.line > a::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background-image: url('https://teatsui-seitai.com/wp-content/themes/teatsui/page_assets_for_all_code/img/svg/reserve/line-icon.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media (max-width: 768px) {
	#shop_information {
		padding-bottom: 0;
	}
	#shop_information.shopSec::after {
		display: none;
	}
	.shop_info_wrap {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 30px;
		flex-wrap: wrap;
	}
	/*スケジュール*/
	.shop_infoleft {
		width: calc(100%);
	}
	.shop_schedule th {
		padding: 10px;
		font-size: 12px;
	}
	.shop_schedule td {
		padding: 10px;
		font-size: 12px;
	}
	/*ボタン*/
	.shop_btn {
		width: 100%;
		display: flex;
		flex-direction: unset;
		justify-content: space-between;
		column-gap: 10px;
		grid-row-gap: 0;
	}
	.shop_btn > li {
		width: calc(100% / 2 - 5px);
	}
	.shop_btn > li > a {
		border-radius: 43px;
		gap: 10px;
		padding: 13px;
		font-size: 16px;
	}
}

/*==================================
　ナビゲーション
==================================*/
#shop_navigation {
	padding: 0;
	margin: 0 auto;
}
#shop_navigation > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#shop_navigation > ul > li {
	width: calc((100% - 60px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
}
#shop_navigation > ul > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 8px;
	width: 100%;
	height: 100%;
	padding: 15px;
	margin: 0;
	background: var(--mainColor);
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	border-radius: 65px;
	transition: var(--ease);
}
#shop_navigation > ul > li a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border: none;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: rotate(-45deg);
}
#shop_navigation > ul > li a:hover {
	opacity: 0.8;
	transform: translateY(3px);
	transition: var(--ease);
}
@media (max-width: 768px) {
	#shop_navigation > ul {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
		justify-content: flex-start;
	}
	#shop_navigation > ul > li {
		width: calc((100% - 20px) / 3);
	}
	#shop_navigation > ul > li a {
		grid-row-gap: 3px;
		width: 100%;
		height: 100%;
		padding: 12px 10px;
		font-size: 14px;
		border-radius: 32px;
	}
	#shop_navigation > ul > li a::after {
		display: none;
	}
}

/*==================================
 駐車場情報
==================================*/
/*情報*/
.shop_data {
	width: 100%;
	table-layout: auto;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	border-spacing: 0;
	border-top: 1px solid #c8c8c8;
}
.shop_data th {
	padding: 20px;
	margin: 0;
	border: none;
	background: none;
	border-bottom: 1px solid #c8c8c8;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	text-align: left;
}
.shop_data td {
	padding: 20px;
	margin: 0;
	border: none;
	background: none;
	border-bottom: 1px solid #c8c8c8;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
	vertical-align: middle;
	text-align: left;
}
.shop_data td a {
	color: #4169e1;
}
.shop_data td a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	/*情報*/
	.shop_data th {
		padding: 10px;
		font-size: 12px;
	}
	.shop_data td {
		padding: 10px;
		font-size: 12px;
	}
}

/*==================================
 アクセスマップ
==================================*/
.shop_map {
	width: 100%;
	height: 500px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}
.shop_map iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	.shop_map {
		width: 100%;
		height: 200px;
	}
}

/*==================================
　ご挨拶
==================================*/
.shop_greeting_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.shop_greeting_wrap > figure {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.shop_greeting_txt {
	width: calc(100% - 50px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
.shop_greeting_txt > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
	line-height: 1.7em;
}
.shop_greeting_txt > p:last-of-type {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.shop_greeting_wrap {
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.shop_greeting_wrap > figure {
		width: 100%;
	}
	.shop_greeting_txt {
		width: calc(100%);
		order: 1;
	}
	.shop_greeting_txt > p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 16px;
		line-height: 1.7em;
	}
}

/*==================================
 お客様の声
==================================*/
#shop_voice.shopSec {
	width: 100%;
	padding: 80px 30px;
	margin: 0 auto;
	position: relative;
}
#shop_voice.shopSec > header {
	width: calc(100% - 40px);
}
.voiceSwiper {
	width: 100%;
	padding: 0 20px !important;
	margin: 0 auto;
	position: relative;
}
.voiceSwiper .swiper-slide {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	position: relative;
}
.voiceItem {
	background: #fff;
	border: 1px solid #000;
	border-radius: 40px;
	padding: 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
}
.voiceItem > header {
	width: calc(100% - 30px - 120px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	grid-row-gap: 10px;
}
.voiceItem > header > h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	text-align: left;
}
.voiceItem > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	text-align: left;
}
.voiceItem > figure {
	width: 120px;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.voiceItem > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.voiceItem > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.voiceItem > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
	line-height: 1.7em;
}
.voiceItem > p:last-of-type {
	margin-bottom: 0;
}
/*矢印*/
.voiceSwiper .swiper-button-prev,
.voiceSwiper .swiper-button-next {
	width: 40px;
	height: 40px;
	background: var(--mainColor); /* 半透明の黒背景 */
	border-radius: 50%;
	position: absolute;
	top: calc(50% + 20px);
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--ease);
}
.voiceSwiper .swiper-button-prev:hover,
.voiceSwiper .swiper-button-next:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.voiceSwiper .swiper-button-prev::after,
.voiceSwiper .swiper-button-next::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}
/* 左矢印 */
.voiceSwiper .swiper-button-prev {
	left: 0;
}
.voiceSwiper .swiper-button-prev::after {
	position: relative;
	transform: rotate(-135deg);
	left: 3px;
}
/* 右矢印 */
.voiceSwiper .swiper-button-next {
	right: 0;
}
.voiceSwiper .swiper-button-next::after {
	position: relative;
	transform: rotate(45deg);
	right: 3px;
}
@media (max-width: 768px) {
	#shop_voice.shopSec {
		width: 100%;
		padding: 50px 0;
	}
	#shop_voice.shopSec > header {
		width: calc(100%);
	}
	.voiceSwiper {
		width: 100%;
		padding: 0 10px !important;
		margin: 0 auto;
		position: relative;
	}
	.voiceSwiper .swiper-slide {
		box-sizing: border-box;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.voiceItem {
		border-radius: 20px;
		padding: 20px;
		gap: 15px;
	}
	.voiceItem > header {
		width: calc(100% - 20px - 80px);
	}
	.voiceItem > header > h3 {
		width: 100%;
		font-size: 12px;
	}
	.voiceItem > header > h2 {
		width: 100%;
		font-size: 16px;
		font-weight: 600;
	}
	.voiceItem > figure {
		width: 80px;
	}
	.voiceItem > p {
		font-size: 12px;
		line-height: 1.5em;
	}
	/*矢印*/
	.voiceSwiper .swiper-button-prev,
	.voiceSwiper .swiper-button-next {
		width: 20px;
		height: 20px;
		background: var(--mainColor); /* 半透明の黒背景 */
		border-radius: 50%;
		position: absolute;
		top: calc(50% + 20px);
		transform: translateY(-50%);
		z-index: 10;
	}
	.voiceSwiper .swiper-button-prev::after,
	.voiceSwiper .swiper-button-next::after {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
	}
	/* 左矢印 */
	.voiceSwiper .swiper-button-prev {
		left: 0;
	}
	.voiceSwiper .swiper-button-prev::after {
		position: relative;
		transform: rotate(-135deg);
		left: 2px;
	}
	/* 右矢印 */
	.voiceSwiper .swiper-button-next {
		right: 0;
	}
	.voiceSwiper .swiper-button-next::after {
		position: relative;
		transform: rotate(45deg);
		right: 2px;
	}
}

/*==================================
　よくある質問
==================================*/
/*リスト*/
.faqList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
}
.faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	padding: 20px 60px 20px 70px;
	margin: 0 auto;
	background: var(--mainColor);
	border-radius: 60px;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: #000;
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
.faqList > dl > dt:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.faqList > dl > dt.active {
	opacity: 0.8;
	transition: var(--ease);
}
.faqList > dl > dt::before {
	content: 'Q';
	width: 20px;
	height: 20px;
	display: inline-block;
	font-family: var(--font_stack);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: #000;
	position: absolute;
	top: 47%;
	left: 40px;
	transform: translate(0, -50%);
}
.faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	border-radius: 3px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	border-radius: 3px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 0 auto;
	padding: 30px 40px;
	background: none;
	font-size: 16px;
	line-height: 1.7em;
	font-weight: 500;
}
.faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 16px;
	line-height: 1.7em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
@media (max-width: 768px) {
	/*リスト*/
	.faqList {
		width: 100%;
	}
	.faqList > dl > dt {
		width: 100%;
		padding: 10px 50px 10px 40px;
		border-radius: 36px;
		font-size: 16px;
	}
	.faqList > dl > dt::before {
		content: 'Q';
		width: 16px;
		height: 16px;
		font-size: 16px;
		top: 47%;
		left: 20px;
		transform: translate(0, -50%);
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
		right: 20px;
	}
	.faqList > dl > dt span::before {
		width: 10px;
		height: 2px;
		border-radius: 2px;
	}
	.faqList > dl > dt span::after {
		width: 10px;
		height: 2px;
		border-radius: 2px;
	}
	.faqList > dl > dd {
		margin: 0 auto;
		padding: 20px 20px;
		background: none;
		font-size: 16px;
		line-height: 1.7em;
		font-weight: 500;
	}
	.faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 16px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}

/*==================================
 サイドバー
==================================*/
#shop_side > nav {
	display: block;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
}
#shop_side > nav > h2 {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	z-index: 0;
	text-align: center;
	font-family: var(--font_stack);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 3px;
}
#shop_side > nav > h2::after {
	content: '';
	display: block;
	width: 100%;
	height: 30px;
	background-image: url(https://teatsui-seitai.com/wp-content/uploads/2024/09/icon-yellow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#shop_side > nav > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #000;
}
#shop_side > nav > ul > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #000;
}
#shop_side > nav > ul > li a {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 20px;
	margin: 0;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	color: #000;
	text-decoration: none;
	transition: var(--ease);
}
#shop_side > nav > ul > li a:hover {
	background: var(--mainColor);
	transition: var(--ease);
}
#shop_side > nav > ul > li a::after {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background-image: url('http://teatsui-seitai.com/wp-content/uploads/2024/09/arrow-icon.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}