#fiace-hikone-page-top {
	display: block;
	position: relative;
	top: -32px; /* 32px分、上に浮かせる */
	visibility: hidden; /* 念のため非表示 */
	pointer-events: none; /* クリックなどの邪魔をしない */
	/* scroll-margin-top: 32px; */
}

.fiace-shop-links {
	width: 100%;
	height: auto;
	padding: 0;
	margin-top: 80px;
	margin-bottom: 0;
}

.fiace-shop-links__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.fiace-shop-links__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fiace-shop-links__item {
	margin: 0;
	padding: 0;
}

.fiace-shop-links__link {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 108px;
	padding: 23px 56px 24px 32px;
	border: 1px solid #8f8f8f;
	background: linear-gradient(135deg, #fffcf770 0%, #fffbf57a 100%);
	color: var(--black);
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition:
		color 0.7s ease,
		border-color 0.7s ease,
		box-shadow 0.7s ease;
	/* 変更：transformをtransitionに追加 */
	transition:
		color 0.7s ease,
		border-color 0.7s ease,
		box-shadow 0.7s ease,
		transform 0.7s ease;
}

.fiace-shop-links__link.no-icon {
	padding: 22px 0 24px;
	text-align: center;
}
.fiace-shop-links__link::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, #fffdf9 100%);
	/* opacity: 0;
	transition: opacity 0.7s ease;
	z-index: 0; */

	/* 追記・変更箇所：ここから */
	z-index: 0;
	opacity: 1; /* opacity 0 から変更 */
	transform: scaleX(0); /* 初期状態は横幅ゼロ */
	transform-origin: left center; /* 左端を起点に設定 */
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* スライドのアニメーション設定 */
	/* 追記・変更箇所：ここまで */
}

.fiace-shop-links__link > * {
	position: relative;
	z-index: 1;
}

.fiace-shop-links__link:hover,
.fiace-shop-links__link:focus-visible {
	color: var(--black);
	border: 1px solid #e0d6c5;
	box-shadow: 0 8px 24px rgb(142 109 84 / 5%);
}

/* 変更箇所：opacity 1 から transform scaleX(1) に変更 */
.fiace-shop-links__link:hover::before,
.fiace-shop-links__link:focus-visible::before {
	transform: scaleX(1); /* ホバー時に横幅いっぱいに広がる */
}

.fiace-shop-links__link:focus-visible {
	outline: 1px solid #d0c5b1;
	outline-offset: 3px;
}

.fiace-shop-links__label {
	display: block;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.fiace-shop-links__sub {
	display: block;
	margin-top: 6px;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.fiace-shop-links__icon {
	position: absolute;
	top: 50%;
	right: 28px;
	width: 22px;
	height: 22px;
	transform: translateY(-50%);
}

.fiace-shop-links__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
/* fiaceページ用ボタン色 start*/
.fiace-hero .fiace-shop-links__link,
.concept .fiace-shop-links__link {
	border: 1px solid #e9e3d8;
	background: linear-gradient(135deg, #efe9df 0%, #efeae1 100%);
}

.fiace-hero .fiace-shop-links__link::before,
.concept .fiace-shop-links__link::before {
	background: #fff;
	opacity: 1; /* 追記 */
}
.fiace-hero .fiace-shop-links__link:hover,
.fiace-hero .fiace-shop-links__link:focus-visible,
.concept .fiace-shop-links__link:hover,
.concept .fiace-shop-links__link:focus-visible {
	border: 1px solid #d0c5b1;
}
/* fiaceページ用ボタン色 end*/

/* Conceptページ用スタイル start*/

.concept .fiace-shop-links__inner {
	max-width: unset;
}
.concept .fiace-shop-links {
	margin-bottom: 50px;
}
/* .concept .fiace-shop-links {
	margin-top: 0;
	margin-bottom: 0;
} */
.concept .fiace-shop-links__inner ul.fiace-shop-links__list {
	margin: 0 auto !important;
	width: 100% !important;
}

/* Conceptページ用スタイル end*/

@media (max-width: 1380px) {
	.fiace-shop-links {
		margin-top: 80px;
		margin-bottom: 10px;
	}
}
@media (max-width: 1330px) {
	.fiace-shop-links {
		margin-top: 40px;
		margin-bottom: 10px;
	}
	.concept .fiace-shop-links {
		margin-top: 60px;
	}
}

@media (max-width: 1280px) {
	.fiace-shop-links {
		margin-top: 80px;
		margin-bottom: 0;
	}

	.fiace-shop-links__label {
		font-size: 20px;
	}
	.fiace-shop-links__link {
		padding: 20px 40px 24px 20px;
	}
	.fiace-shop-links__icon {
		right: 20px;
	}
}
@media (max-width: 1200px) {
	.fiace-shop-links {
		margin-top: 40px;
	}
	.fiace-shop-links__label {
		font-size: 18px;
	}
	.fiace-shop-links__link {
		min-height: 96px;
		padding: 20px 36px 20px 16px;
	}
	.fiace-shop-links__icon {
		right: 18px;
	}
}
@media (max-width: 1120px) {
	.fiace-shop-links {
		margin-top: 20px;
	}
}
@media screen and (min-width: 1112px) {
	/* fiace page 1112px以上 */
	.fiace-hero .fiace-shop-links__label {
		font-size: 20px;
	}
}
@media (max-width: 1024px) {
	.fiace-shop-links__list {
		gap: 20px;
	}
	.fiace-shop-links__link {
		min-height: 96px;
		padding: 15px 20px 16px 12px;
	}
	.fiace-shop-links__link.no-icon {
		padding: 14px 24px 16px;
	}
	.fiace-shop-links__sub {
		font-size: 14px;
	}

	.fiace-shop-links__icon {
		right: 12px;
		width: 20px;
		height: 20px;
	}
}
@media (max-width: 960px) {
	.fiace-shop-links {
		margin-top: 40px;
	}
	.concept .fiace-shop-links {
		margin-top: 40px;
		margin-bottom: 0;
	}

	.fiace-shop-links__label {
		font-size: 17px;
	}
	.fiace-shop-links__link {
		min-height: 88px;
		padding: 13px 16px 14px 8px;
	}
	.fiace-shop-links__link.no-icon {
		padding: 12px 20px 14px;
	}
	.fiace-shop-links__icon {
		right: 8px;
	}
}
@media (max-width: 910px) {
	.fiace-shop-links {
		margin-top: 0;
		order: 3;
	}
	.concept .fiace-shop-links {
		margin-top: 48px;
	}
}

@media (max-width: 864px) {
	.fiace-shop-links__label {
		font-size: 16px;
	}
	.fiace-shop-links__link {
		min-height: 84px;
		padding: 13px 22px 14px 2px;
	}
	.fiace-shop-links__link.no-icon {
		padding: 12px 12px 14px;
	}
	.fiace-shop-links__icon {
		right: 4px;
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 767px) {
	#fiace-hikone-page-top {
		top: 40px;
	}
	.fiace-shop-links {
		padding: 0 15%;
	}
	.concept .fiace-shop-links {
		margin-top: 0;
	}
	.fiace-shop-links__list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fiace-shop-links__link {
		min-height: 88px;
		padding: 14px 32px 16px 8px;
	}
	.fiace-shop-links__link.no-icon {
		padding: 14px 16px 16px;
	}

	.fiace-shop-links__label {
		font-size: 22px;
	}

	.fiace-shop-links__sub {
		font-size: 16px;
	}

	.fiace-shop-links__icon {
		right: 24px;
		width: 24px;
		height: 24px;
	}
}
@media (max-width: 667px) {
	.fiace-shop-links {
		padding: 0 8%;
	}
	.fiace-shop-links__label {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.fiace-shop-links {
		padding: 0 4%;
	}
	.fiace-shop-links__label {
		font-size: 18px;
	}
}
@media (max-width: 400px) {
	.frontpage section.fiace-area {
		padding: 60px 0 80px;
	}
	.fiace-shop-links__link {
		min-height: 88px;
		padding: 14px 24px 16px 8px;
	}
	.fiace-shop-links__icon {
		right: 16px;
		width: 22px;
		height: 22px;
	}
}
