@charset "utf-8";
/* CSS Document */



/*==========
MV
==========*/
.mv img {
	width: 100%;
}


/*==========
メッセージ
==========*/
.top_message {
	text-align: center;
}


@media (min-width: 768px) {}


/*==========
特色
==========*/
.features {
	padding: 60px 0 90px;
}

.features_wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 94%;
	margin: 0 auto;
}

.features_wrap .item {
	padding: 30px 18px 36px;
	background-color: var(--bg_color2);
	border: solid 1px var(--border_color);
	border-radius: 9px;
}

.features_wrap .item h3 {
	font-size: 1.7rem;
	font-weight: 600;
	padding: 6px 60px 6px 12px;
	background-color: var(--main_color);
	margin-bottom: 12px;
	transform: skewX(349deg);
	inline-size: fit-content;
}

.features_wrap .item h3 span {
	font-size: 2.4rem;
}

.features_wrap .item p {
	font-size: 1.45rem;
	line-height: 1.6;
	color: var(--font_color2);
}

@media (min-width: 768px) {
	.features {
		padding: 90px 0 120px;
	}

	.features_wrap {
		width: 84%;
		margin: 0 auto;
	}

	.features_wrap .item {
		padding: 36px 24px 42px;
	}

	.features_wrap .item h3 {
		font-size: 2rem;
		margin-bottom: 18px;
	}

	.features_wrap .item h3 span {
		font-size: 2.8rem;
	}

	.features_wrap .item p {
		font-size: 1.7rem;
		line-height: 1.5;
	}
}



/*==========
制作例
==========*/
.works {
	padding: 60px 0 90px;
}

.works_list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

@media (min-width: 768px) {
	.works {
		padding: 90px 0 120px;
	}

	.works_list {
		width: 84%;
		margin: 0 auto;
		gap: 30px;
	}

}


/*==========
料金
==========*/
.price {
	padding: 30px 0px 60px;
}

.price_wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 94%;
	margin: 0 auto;
}

.price_wrap .item {
	padding: 30px 18px;
	background-color: var(--bg_color2);
	border: solid 1px var(--border_color);
	border-radius: 9px;
}

.price_wrap .item h3 {
	font-size: 1.55rem;
	font-weight: 600;
	padding: 5px 9px;
	background-color: var(--main_color);
}

.price_wrap .item h4 {
	font-size: 4.2rem;
	font-weight: 600;
	margin-top: 12px;
}

.price_wrap .item h4 span {
	font-size: 1.6rem;
}

.price_wrap .item ul {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price_wrap .item ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 1.55rem;
	color: var(--font_color2);
}

.price_list {
	width: 94%;
	margin: 0 auto 60px;
	border: solid 1px var(--border_color);
}

.price_list th,
.price_list td {
	padding: 24px 0;
	background-color: var(--bg_color2);
	border-bottom: solid 1px var(--border_color);
	vertical-align: middle;
}

.price_list th {
	color: var(--main_color);
	padding-left: 12px;
}

.price_list td {
	text-align: right;
	padding-right: 12px;
}

.price_list td p {
	font-size: 3rem;
	font-weight: 600;
}

.price_list td p span {
	font-size: 1.3rem;
	font-weight: 400;
	padding-left: 6px;
}

.price_list td p.option {
	font-size: 1.3rem;
	margin-top: 6px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--font_color2);
}






@media (min-width: 768px) {
	.price {
		padding: 90px 0 120px;
	}

	.price_wrap {
		width: 84%;
		margin: 0 auto;
	}

	.price_wrap .item {
		padding: 42px 24px;
	}

	.price_wrap .item h3 {
		font-size: 1.8rem;
		padding: 6px 15px;
	}

	.price_wrap .item h4 {
		font-size: 5.4rem;
	}

	.price_wrap .item h4 span {
		font-size: 1.7rem;
	}

	.price_wrap .item ul {
		margin-top: 15px;
		gap: 18px;
	}

	.price_wrap .item ul li {
		gap: 9px;
		font-size: 1.7rem;
	}

	.price_list {
		width: 84%;
		margin-bottom: 90px;
	}

}



/*==========
注文方法
==========*/
.flow {
	padding: 60px 0px 90px;
	background-color: var(--bg_color2);
}

.flow_list {
	width: 72%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 42px;
	margin: 0 auto 60px;
}

.flow_list .item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	position: relative;
}

.flow_list .item:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: -35px;
	left: 11px;
	transform: translateX(-50%);
	width: 2px;
	height: 30px;
	/* 縦線の長さ */
	background-color: var(--border_color);
}

@media (min-width: 768px) {
	.flow {
		padding: 90px 0 120px;
	}

	.flow_list {
		width: 60%;
		gap: 60px;
	}

	.flow_list .item img {
		width: 36px;
	}

	.flow_list .item span {
		font-size: 1.85rem;
	}

	.flow_list .item:not(:last-child)::after {
		content: "";
		position: absolute;
		bottom: -48px;
		left: 11px;
		transform: translateX(-50%);
		width: 2px;
		height: 36px;
		/* 縦線の長さ */
		background-color: var(--border_color);
	}
}



/*==========
よくある質問
==========*/
.faq {
	padding: 60px 0px 90px;
}

.faq_wrap {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 48px;
}

.faq_item {
	border: solid 1px var(--border_color);
	background-color: var(--bg_color2);
	border-radius: 9px;
	margin-bottom: 12px;
}

.accordion_button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
	padding: 24px 15px;
	/* background: none; */
	/* border: none; */
}

.accordion_button .text {
	font-size: 1.5rem;
	/* flex: 1; */
	/* text-align: left; */
}

.icon {
	transition: transform 0.3s ease;
}

.icon.open {
	transform: rotate(180deg);
}

.accordion_content {
	display: none;
	padding: 0 15px 24px 15px;
	line-height: 1.55;
}


@media (min-width: 768px) {
	.faq {
		padding: 90px 0 0 0;
	}

	.faq_wrap {
		width: 78%;
		gap: 9px;
		margin-bottom: 60px;
	}

	.accordion_button {
		padding: 24px 18px;
	}

	.accordion_button .text {
		font-size: 1.7rem;
	}
}


/*==========
店舗情報
==========*/
.shop {
	padding: 60px 0 90px;
}

.shop .googlemap {
	width: 100%;
	height: 50vh;
}

.shop dl {
	width: 90%;
	margin: 3rem auto 0;
}

.shop dt {
	margin-bottom: 3px;
	font-weight: 400;
}

.shop dd {
	line-height: 1.55;
	margin-bottom: 18px;
	padding: 6px 6px 12px;
	border-bottom: solid 1px var(--border_color);
}

@media (min-width: 768px) {
	.shop {
		padding: 90px 0 180px;
	}

	.shop dl {
		margin: 5rem auto 0;
	}

	.shop dt {
		margin-bottom: 6px;
		font-weight: 400;
	}

	.shop dd {
		line-height: 1.6;
		margin-bottom: 24px;
		padding: 6px 6px 24px;
		border-bottom: solid 1px var(--border_color);
	}

}



/* ==========
特商法ページ
========== */
.tokusho {
	padding: 60px 0 90px;
}

.tokusho h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
}

.tokusho_table {
	border: solid 1px var(--border_color);
	border-collapse: collapse;
	width: 96%;
	margin: 0 auto;
}

.tokusho_table th,
.tokusho_table td {
	font-size: 1.4rem;
	line-height: 1.55;
	padding: 24px 9px;
	border: solid 1px var(--border_color);
}

.tokusho_table th {
	width: 30%;
	background-color: var(--bg_color);
	font-weight: 400;
}

.tokusho_table td {}

@media (min-width: 768px) {
	.tokusho_table {
		width: 480px;
	}

}
