@charset "utf-8";

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

a:link, a:visited {
	text-decoration: none;
	color: #333;
}

/* トップページ用メインビジュアル */
/* -------------------------------------------------- */


#container {
	height: auto;
	background: #fff;
	color: #333;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

#fv {
	width: 100%;
	height: 70vh;
	background: url(../../img/top/fv_pc.jpg?v=20260715) no-repeat center;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 0;
}

#fvCc {
	/* writing-mode: vertical-rl;
	flex-direction: column;
	gap: 0.25em;
	align-items: flex-end;
	position: absolute;
	top: 2em;
	left: 1em;
	filter: drop-shadow(0px 0px 3px #fff); */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	margin-top: 10em;

	& img {
		width: 100%;
	}

	& p {
		color: #000;
		/* color: #fff; */
		font-size: clamp(2.0rem, 2.4vw, 2.8rem);
		font-weight: 700;
		letter-spacing: 0.2em;
		filter: drop-shadow(0px 0px 3px #fff);
		/* filter: drop-shadow(0px 0px 3px #000); */

		& span {
			color: #ca2f2e;
		}
	}

	& p:last-child {
		margin-bottom: -3em;
	}
}

#fvBadge {
	position: absolute;
	width: 20%;
	aspect-ratio: 3 / 5;
	top: 12%;
	right: 2%;

	& img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.fvCcText,
#fvBubbleList {
	display: none;
}

#cautionTxt {
	width: 94%;
	margin: 0 auto;
	padding: 0.5em 0.75em;
	background: #ffeae4;
	color: #ff4713;
	border-radius: 2px;
	text-decoration: underline;
	font-size: clamp(1.0rem, 1.1vw, 1.2rem);
	font-weight: 700;
	line-height: 1.2;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: absolute;
	bottom: -1em;
	z-index: 111111;
}

#cautionTxt:before {
	content: "";
	width: 1em;
	height: 1em;
	background: url(../../img/top/icon_caution.svg) no-repeat center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.areaHead {
	margin-bottom: 40px;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.areaHead::after {
	display: block;
	content: "";
	position: absolute;
	bottom: -1em;
	left: auto;
	width: 70px;
	height: 1px;
	margin-left: auto;
	background-color: #dc5655;
}

.areaLead {
	display: block;
	margin-bottom: 1em;
	color: #ca2f2e;
	font-family: "Roboto", sans-serif;
	font-size: clamp(1.0rem, 1.2vw, 1.4rem);
	line-height: 1;
	letter-spacing: 0.175em;
	text-transform: uppercase;
}

.areaTitle {
	color: #000;
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
}


/* 実績 */
/* -------------------------------------------------- */
#buyList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2%;

	& li {
		width: 32%;

		& a {
			width: 100%;
			height: 100%;
			padding: 0.5em;
			background: #f6f6f6;
			border: 1px solid rgba(233, 233, 233, 0.2);
			display: flex;
			flex-direction: column;
			gap: 0.5em;

			& .buyImg {
				width: 100%;
				height: auto;
				aspect-ratio: 4 / 3;
				overflow: hidden;

				& img {
					width: 100%;
					height: 100%;
					object-fit: cover;
				}
			}

			& .buyCat {
				display: flex;
				flex-wrap: wrap;
				gap: 0.25em;

				& .singleCate {
					padding: 0.1em 0.25em;
					background: #fff;
					color: #ff4713;
					border: 1px solid;
					font-size: clamp(0.8rem, 0.9vw, 1.0rem);
					line-height: 1.2;
				}
			}

			& .buytit {
				height: 4.2em;
				font-size: clamp(1.1rem, 1.2vw, 1.3rem);
				overflow: hidden;
			}
		}
	}
}

.linkArea {
	margin-top: 2em;
}

a.commonLink {
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	max-width: 600px;
	color: #ca2f2e;
	font-size: clamp(1.4rem, 1.5vw, 1.6rem);
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	position: relative;
}

a.commonLink::after {
	content: "";
	width: 1em;
	height: 1px;
	background: #ca2f2e;
	position: absolute;
	right: -0.5em;
}


/* “オーディオ愛好家”に選ばれたい */
/* -------------------------------------------------- */
#choice {
	width: 100%;
	padding: 2em 0 2.5em;
	background: #efefef;
	color: #000000;
	background-size: cover;
	position: relative;
	border-top: dotted 2px #ff4713;
	border-bottom: dotted 2px #ff4713;

	& .secInner {
		position: relative;
		z-index: 11;
	}

	& h2 {
		margin-bottom: 1em;
		color: #ff4713;
		font-size: clamp(1.8rem, 2.0vw, 2.2rem);
		font-weight: 600;
		text-align: center;
		letter-spacing: 0.05em;

		& span {
			margin-right: 0.5em;
			background: linear-gradient(transparent 60%, #fff 30%);
			font-size: clamp(2.0rem, 2.2vw, 2.4rem);
		}
	}

	& p {
		width: 90%;
		margin: 0 auto;
		font-size: clamp(1.4rem, 1.5vw, 1.6rem);
		line-height: 1.8;
		letter-spacing: 0.05em;
	}
}

/* #choice::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
	position: absolute;
	top: 0;
	left: 0;
} */


/* 私たちが買取しているオーディオ機器 */
/* -------------------------------------------------- */
#AudioList {
	width: 100%;
	background-image: url(../../img/top/bg_list_sp.jpg?v=20260715);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-color: #fff;
}

#AudioList #genreList {
	margin-bottom: 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2%;

	& li {
		width: 49%;

		& a {
			width: 100%;
			padding: 1em;
			background: #fff;
			color: #333;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);

			& img {
				width: 100%;
			}

			& p {
				font-size: clamp(1.2rem, 1.4vw, 1.5rem);
			}
		}
	}

}

#AudioListGenre {
	margin-bottom: 30px;
}

#AudioList #brandList {
	margin-bottom: 1em;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 1em 2%;

	& li {
		width: 32%;

		& a {
			width: 100%;

			& img {
				width: 100%;
				box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
			}

		}

		& p {
			margin-top: 0.5em;
			font-size: clamp(1.2rem, 1.4vw, 1.5rem);
		}

	}
}

#AudioList #brandList li:nth-child(n+10) {
	display: none;
}

/* FAQ */
/* -------------------------------------------------- */
#faq {
	margin: 30px auto 50px;
}

.faqToggle {
	border-bottom: 1px solid #000;
}

.faqToggle:first-child {
	border-top: 1px solid #000;
}

.faqQuestion {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.75em;
	background: none;
	border: none;
	padding: 1em 0.5em;
	cursor: pointer;
	text-align: left;
	color: #000;
}

.faqQuestion:hover {
	opacity: 0.75;
}

.faqQ,
.faqA {
	width: 2em;
	height: 2em;
	aspect-ratio: 1 / 1;
	color: #ff4713;
	border: 1px solid;
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faqA {
	background: #ff4713;
	color: #fff;
}


.faqTitle {
	color: #000;
	flex: 1;
	font-size: clamp(1.3rem, 1.4rem, 1.5rem);
	font-weight: 500;
	line-height: 1.2;
}

.faqArrow {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #000;
	transition: transform 0.3s ease;
}

.faqArrow svg {
	width: 100%;
	height: 100%;
	stroke: #000;
	stroke-width: 1;
	fill: none;
}

.faqQuestion[aria-expanded="true"] .faqArrow {
	transform: rotate(180deg);
}

.faqAnswer {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-8px);
	transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.faqAnswer[aria-hidden="false"] {
	max-height: 1000px;
	opacity: 1;
	transform: translateY(0);
}

.faqAnswerInner {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	padding: 0 0.5em 1em;
	color: #000;
}

.faqText {
	flex: 1;
	font-size: clamp(1.2rem, 1.3rem, 1.4rem);
	line-height: 1.5;
	color: #333;
}

.faqText p {
	margin: 0;
	color: #000;
}

.faqEmpty {
	color: #000;
	text-align: center;
}

/* お客様の声 */
/* -------------------------------------------------- */
#voice {
	margin-bottom: 40px;

	& .areaHead {
		margin-bottom: 1em;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		gap: 1em;

		& .areaTitle {
			margin-right: -0.25em;
		}
	}

	& .areaHead::before {
		display: block;
		content: "";
		width: 3em;
		height: 1px;
		background-color: #dc5655;
	}

	& .areaHead::after {
		display: block;
		content: "";
		width: 3em;
		height: 1px;
		background-color: #dc5655;
		position: relative;
		bottom: 0;
		margin: 0;
	}
}

.voiceSlider {
	& .swiper-wrapper {
		gap: 1%;
	}

	& .swiper-slide {
		margin-top: 0.25em;

		& img {
			width: 100%;
			box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
		}
	}
}

/* 矢印ボタン：丸背景 */
.voiceSlider .swiper-button-prev,
.voiceSlider .swiper-button-next {
	width: 2em;
	height: 2em;
	background-color: #ff4712a1;
	border-radius: 50%;
}

/* Swiperデフォルトの矢印を消す */
.voiceSlider .swiper-button-prev::after,
.voiceSlider .swiper-button-next::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/* 次へ：右向き */
.voiceSlider .swiper-button-next::after {
	transform: rotate(45deg);
	margin-right: 2px;
}

/* 前へ：左向き */
.voiceSlider .swiper-button-prev::after {
	transform: rotate(-135deg);
	margin-left: 2px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	position: relative;
	margin-top: 1em;
}

.swiper-pagination-bullet {
	background: #aaa;
}

.swiper-pagination-bullet-active {
	background: #ff4713;
}


/* リンクリスト */
/* -------------------------------------------------- */

#topLinkList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;

	& li {
		width: 50%;

		& a {
			& .linkListInner {
				display: flex;
				position: relative;

				& h2 {
					width: auto;
					display: flex;
					align-items: center;
					justify-content: center;
					padding: 0.5em 1em;
					background: #fff;
					color: #000;
					border-bottom: 1px solid #ff4713;
					font-size: clamp(1.2rem, 1.4vw, 1.5rem);
					font-weight: 600;
					line-height: 1;
					letter-spacing: 0.3em;
					/* filter: drop-shadow(0px 0px 3px #fff); */
					z-index: 1;
					position: absolute;
					left: 0;
					bottom: 1.5em;
				}

				/* & h2::after {
					display: inline-block;
					content: "";
					position: absolute;
					bottom: -10px;
					left: 0;
					width: 125px;
					height: 1.5px;
					margin-left: -15px;
					background-color: #93360b;
				} */

				& p {
					position: absolute;
					z-index: 1;
					top: 50%;
					margin-top: 45px;
					left: 5%;
					font-size: 1.3rem;
					line-height: 1.923;
					letter-spacing: 0.175em;
					color: #fff;
				}

				& .linkListImg {
					position: relative;
				}

				& .linkListImg::after {
					display: flex;
					content: "";
					width: 100%;
					height: 100%;
					background: #fff;
					opacity: 0.3;
					position: absolute;
					top: 0px;
					left: 0px;
				}
			}
		}

		& img {
			width: 100%;
			height: 100%;
		}
	}
}

#topLinkList .fontDancing {
	display: none !important;
}

#topLinkList .linkListImg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#topLinkList .linkListImg img {
	opacity: 0;
}

#topLinkList li:nth-child(1) .linkListImg {
	background-image: url(../../img/top/ph_human01.jpg?v=20260715);
}

#topLinkList li:nth-child(2) .linkListImg {
	background-image: url(../../img/top/ph_human02.jpg?v=20260715);
}

#topLinkList li:nth-child(3) .linkListImg {
	background-image: url(../../img/top/ph_human03.jpg?v=20260715);
}

#topLinkList li:nth-child(4) .linkListImg {
	background-image: url(../../img/top/ph_human04.jpg?v=20260715);
}

#topLinkList li a {
	width: 100%;
	height: 100%;
	display: block;
}

#topLinkList li a .linkListInner {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	line-height: 0;
}

#topLinkList li a .linkListInner h2 {
	line-height: 1;
}

#topLinkList .linkListImg {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	line-height: 0;
}

#topLinkList .linkListImg img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 1;
}

/* エリア */
/* -------------------------------------------------- */
#area {
	width: 100%;
	background-image: url(../../img/common/bg_tile.svg);
	padding: 30px 0 15px;
}

#areaMap {
	width: 300px;
	height: 300px;
	margin: 0 auto 20px;
	background-image: url(../../img/top/img_map.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

#areaHead {
	margin-bottom: 0.5em;
	color: #000;
	font-size: clamp(1.8rem, 2.0vw, 2.4rem);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.075em;
	text-align: center;
}

.areaPrefHead {
	display: table-cell;
	width: 70px;
	padding: 0.5em 1.0em 0.5em 0;
	border-right: solid 1px #ca2f2e;
	font-size: clamp(1.3rem, 1.4vw, 1.6rem);
	font-weight: 600;
	text-align: right;
	vertical-align: middle;
	line-height: 1;
	letter-spacing: 0.075em;
	color: #000;
}

#areaPref {
	width: 92%;
	margin: 3em auto 1em;
	display: table;
	border-spacing: 10px;
	padding: 0;
	background: rgba(300, 300, 300, 0.6);

	& ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0.25em 0.65em;
	}
}

.areaPrefList {
	padding-left: 0;
}


.areaPrefList ul li {
	margin-right: 0;
}

.areaPrefList ul li a {
	font-size: clamp(1.2rem, 1.3vw, 1.5rem);
	line-height: 1.5;
	letter-spacing: 0.075em;
	color: #333;
}

/* 買取方法 */
/* -------------------------------------------------- */
#method {
	padding: 30px 0 50px;
	background: #f9f9f9;
}

.panels {
	width: 92%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2em;

	& .panel {
		& .methodImg {
			width: 100%;
			aspect-ratio: 5/3;

			& img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}

		& .tabs {
			width: 100%;
			margin-top: 1em;
			display: flex;
			align-items: stretch;
			justify-content: center;

			& li {
				width: 50%;

				& a {
					padding: 1em 0;
					color: #333;
					border: 1px solid #333;
					display: flex;
					align-items: center;
					justify-content: center;
				}

				& a.on {
					background: #333;
					color: #fff;
				}
			}
		}

		& .methodInner {
			padding: 1em;
			border: 1px solid #333;
			border-top: none;

			& ul {

				& li {
					margin-bottom: 0.5em;
					padding-left: 1em;
					font-size: clamp(1.3rem, 1.4vw, 1.5rem);
					line-height: 1.5;
					letter-spacing: 0.05em;
					text-indent: -1em;
				}

				& li:before {
					content: "■";
					color: #ff4713;
					font-size: 1.2rem;
					margin-right: 0.25em;
					vertical-align: 0.05em;
				}
			}

			& .commonLink {
				background: #fff;
			}
		}
	}
}

/* 買取強化しているオーディオ */
/* -------------------------------------------------- */
#active {
	padding: 30px 0 0;
}

#activeList {
	display: flex;
	flex-direction: column;
	width: 100%;

	& li {
		width: 100%;

		& a {
			width: 100%;
			height: auto;
			aspect-ratio: 3/1;
			background: url(../../img/top/active_img01.jpg)no-repeat;
			background-size: cover;
			color: #ca2f2e;
			font-size: clamp(1.4rem, 1.4vw, 1.5rem);
			font-weight: 600;
			letter-spacing: 0.05em;
			display: flex;
			align-items: center;
			justify-content: center;
			position: relative;

			& span {
				z-index: 11;
				width: 90%;
				height: 60%;
				background: rgb(255 255 255 / 72%);
				border: 1px solid;
				display: flex;
				align-items: center;
				justify-content: center;
				position: relative;
			}

			& span::after {
				content: "";
				width: 1em;
				height: 1px;
				background: #ca2f2e;
				position: absolute;
				right: -0.5em;
			}
		}
	}

	& li:nth-child(2) a {
		background: url(../../img/top/active_img02.jpg)no-repeat;
		background-size: cover;
	}

	& li:nth-child(3) a {
		background: url(../../img/top/active_img03.jpg)no-repeat;
		background-size: cover;
	}

	& li:nth-child(4) a {
		background: url(../../img/top/active_img04.jpg) no-repeat;
		background-size: cover;
	}
}

/* -------------------------------------------------- */
/* PC */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {
	.secInner {
		width: min(1120px, 88%);
	}

	#fv {
		height: auto;
		aspect-ratio: 1920 / 800;
		background-position: center center;
		background-size: 100% 100%;
		overflow: hidden;
		z-index: 0;
	}

	#fv::before {
		background-position: center center;
		background-size: 100% 100%;
	}

	#fvCc,
	#fvBubbleList {
		display: none;
	}

	#fvBadge {
		width: min(7vw, 92px);
		top: clamp(12px, 2vw, 26px);
		right: max(3%, calc((100vw - 1240px) / 2));
	}

	#cautionTxt {
		box-sizing: border-box;
		width: 100%;
		margin: 0;
		padding: 0.7em max(5%, calc((100vw - 1180px) / 2));
		border-radius: 0;
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		z-index: 5;
		font-size: 1.3rem;
		align-items: center;
		gap: 0.45em;
		text-align: center;
	}

	.cvSec {
		min-height: auto;
		padding: 52px max(5%, calc((100vw - 800px) / 2)) 48px;
		display: grid;
		grid-template-columns: minmax(240px, 0.65fr) minmax(540px, 1.35fr);
		align-items: center;
		gap: clamp(26px, 4vw, 54px);
	}

	.cvSec::before {
		right: max(-5vw, -80px);
		bottom: -32px;
		width: min(24%, 260px);
		max-height: none;
		opacity: 0.55;
		pointer-events: none;
	}

	.cvTxt {
		grid-column: 1 / -1;
		width: 100%;
		position: relative;
		z-index: 1;
	}

	.cvTxt p {
		width: 100%;
		margin: 0;
		font-size: 1.5rem;
		line-height: 1.8;
	}

	.cvTxtTop {
		box-sizing: border-box;
		width: 100%;
		margin-bottom: 0.75em;
		padding: 0.45em 0.65em;
		font-size: clamp(2.4rem, 2.2vw, 3.2rem);
		line-height: 1.35;
	}

	.cvBtnWrap {
		grid-column: 1 / -1;
		width: 100%;
		max-width: none;
		min-width: 0;
		justify-self: center;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		position: relative;
		z-index: 1;
	}

	.cvBtnRow {
		display: contents;
	}

	.cvBtn {
		height: 80px;
		border-radius: 4px;
		box-shadow: 0 8px 18px rgba(38, 20, 12, 0.14);
	}

	.cvBtnLine {
		order: 1;
	}

	.cvBtnWeb {
		order: 2;
	}

	.cvBtnInner {
		text-align: center;
		line-height: 1.05;
	}

	.cvBtn .btnMain {
		font-size: clamp(2rem, 2.1vw, 2.6rem);
		font-weight: 700;
		white-space: nowrap;
	}

	.cvBtn .btnTxt {
		margin-top: 0.28em;
		display: block;
		font-size: 1.45rem;
		white-space: nowrap;
	}

	.cvBtnTel {
		order: 3;
		width: 100%;
		max-width: none;
		min-width: 0;
		height: 80px;
		border-radius: 4px;
		box-shadow: 0 8px 18px rgba(38, 20, 12, 0.16);
	}

	.cvBtnTel .telInner {
		height: 100%;
		padding: 10px 14px;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
	}

	.cvBtnTel .telTxt {
		width: auto;
		height: auto;
		aspect-ratio: auto;
		margin-left: 0;
		border-right: none;
		border-radius: 0;
		background: transparent;
		font-size: 1.35rem;
		line-height: 1;
		flex-shrink: 0;
		flex-direction: row;
		gap: 0.15em;
	}

	.cvBtnTel .telTxt span {
		font-size: inherit;
	}

	.cvBtnTel .telBodyWrap {
		width: auto;
		flex: 0 1 auto;
		min-width: 0;
		justify-content: center;
	}

	.cvBtnTel .telBody {
		align-items: center;
		text-align: center;
	}

	.telBodyInner {
		gap: 0.35em;
		flex-wrap: nowrap;
	}

	.cvBtnTel .telIcon {
		height: 2.25em;
	}

	.cvBtnTel .telNum {
		font-size: clamp(2.5rem, 2.2vw, 3.1rem);
		line-height: 1;
		white-space: nowrap;
	}

	.cvBtnTel .telHours {
		margin-top: 0.4em;
		display: block;
		font-size: 1.15rem;
		line-height: 1.2;
		white-space: nowrap;
	}

	#works {
		padding: 70px 0 80px;
	}

	#buyList {
		gap: 24px 2%;
	}

	#buyList li {
		width: 23.5%;
	}

	#choice {
		padding: 4.5em 0 5em;
	}

	#choice p {
		width: min(780px, 86%);
	}

	#topLinkList li {
		width: 25%;
	}

	#topLinkList li a .linkListInner h2 {
		width: auto;
		min-height: 0;
		padding: 0.5em 1em;
		writing-mode: horizontal-tb;
		left: 0;
		bottom: 1.5em;
		letter-spacing: 0.3em;
	}

	#area {
		padding: 70px 0 50px;
	}

	#areaInner {
		width: min(1120px, 92%);
		margin: 0 auto;
		display: grid;
		grid-template-columns: 440px minmax(0, 1fr);
		column-gap: clamp(30px, 4vw, 60px);
		align-items: center;
	}

	#areaMap {
		width: 440px;
		height: 460px;
		float: none;
		clear: both;
		margin: 0;
		background-image: url(../../img/top/area_map.webp);
		background-position: right center;
		background-size: 405px 411px;
	}

	#areaMap>div {
		transform: scale(0.88);
		transform-origin: left top;
	}

	#pin01 {
		left: 163px !important;
		top: 0 !important;
	}

	#pin02 {
		left: 200px !important;
		top: 111px !important;
	}

	#pin03 {
		left: 62px !important;
		top: 70px !important;
	}

	#pin04 {
		left: 295px !important;
		top: 132px !important;
	}

	#pin05 {
		left: 290px !important;
		top: 202px !important;
	}

	#pin06 {
		left: 220px !important;
		top: 295px !important;
	}

	#pin07 {
		left: 167px !important;
		top: 352px !important;
	}

	#pin08 {
		left: 79px !important;
		top: 211px !important;
	}

	#pin09 {
		left: 79px !important;
		top: 370px !important;
	}

	#pin10 {
		left: 0 !important;
		top: 229px !important;
	}

	#areaHead {
		grid-column: 1 / -1;
	}

	#areaPref {
		width: 100%;
		margin: 0;
		align-self: center;
	}

	#AudioListInner {
		width: min(1120px, 88%);
		margin: 0 auto;
		padding: clamp(170px, 11vw, 205px) 0 110px;
		text-align: center;
	}

	#AudioList {
		background-image: url(../../img/top/bg_list_pc.jpg?v=20260715);
		background-position: center top;
		background-size: 100% auto;
		height: auto;
		min-height: 0;
		padding: 0;
		overflow: visible;
	}

	#AudioList .areaLead,
	#AudioList .areaTitle {
		color: #fff;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
	}

	#AudioList .areaHead {
		margin-bottom: 64px;
	}

	#AudioList .areaHead::after {
		background-color: #fff;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	}

	#AudioList #genreList li {
		width: 23.5%;
	}

	#AudioListGenre {
		margin-bottom: 64px;
	}

	#AudioList #brandList {
		gap: 24px 2%;
		margin-bottom: 36px;
	}

	#AudioList #brandList li {
		width: 15%;
	}

	#AudioList #brandList li:nth-child(n+10) {
		display: block;
	}

	#faq {
		margin: 70px auto 80px;
	}

	#voice {
		margin-bottom: 70px;
	}

	#method {
		padding: 70px 0 80px;
	}

	.panels {
		width: min(1120px, 88%);
		flex-direction: row;
		align-items: stretch;
		gap: 3%;
	}

	.panels .panel {
		width: 48.5%;
		display: flex;
		flex-direction: column;
	}

	.panels .panel .tabs {
		display: none;
	}

	.methodPanelTitle {
		margin: 0;
		padding: 1em 0;
		background: #333;
		color: #fff;
		font-size: clamp(1.6rem, 1.7vw, 1.9rem);
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.08em;
		text-align: center;
	}

	.panels .panel .methodInner {
		border-top: none;
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.panels .panel .methodInner .linkArea {
		margin-top: auto;
	}

	.panels .panel .methodInner .commonLink {
		height: 64px;
		min-height: 64px;
		padding-top: 0;
		padding-bottom: 0;
	}

	#active {
		padding: 70px 0 0;
	}

	#activeList {
		flex-direction: row;
		flex-wrap: wrap;
	}

	#activeList li {
		width: 50%;
	}

	#activeList li a {
		aspect-ratio: 3.8 / 1;
	}

	#choice,
	#area,
	#AudioList,
	#faq,
	#voice,
	#method,
	#active,
	.cvSec {
		scroll-margin-top: 138px;
	}

	.ap-reveal,
	.ap-reveal-list > li {
		transition-duration: 0.45s;
	}
}


/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.secInner {
		width: 90%;
	}

	#fv {
		height: auto;
		aspect-ratio: 1920 / 800;
		background-position: center center;
		background-size: 100% 100%;
		display: block;
		overflow: hidden;
	}

	#fv::before {
		background-position: center center;
		background-size: 100% 100%;
	}

	#fvCc {
		display: none;
	}

	#fvBadge {
		width: clamp(72px, 11vw, 100px);
		top: clamp(10px, 2vw, 18px);
		right: 3%;
	}

	#cautionTxt {
		box-sizing: border-box;
		width: 100%;
		margin: 0;
		padding: 0.65em 5%;
		border-radius: 0;
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		font-size: 1.2rem;
	}

	.cvSec {
		padding: 2.5em 5% 2em;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2em;
	}

	.cvSec::before {
		right: -14vw;
		width: 34%;
	}

	.cvTxt {
		width: 44%;
	}

	.cvTxt p {
		width: 100%;
	}

	.cvBtnWrap {
		width: 52%;
	}

	#works {
		padding: 55px 0 65px;
	}

	#buyList li {
		width: 32%;
	}

	#choice {
		padding: 3.5em 0 4em;
	}

	#choice p {
		width: 86%;
	}

	#topLinkList li {
		width: 50%;
	}

	#area {
		padding: 55px 0 40px;
	}

	#areaMap {
		width: 360px;
		height: 360px;
	}

	#areaPref {
		width: 90%;
	}

	#AudioListInner {
		padding: 55px 0 65px;
	}

	#AudioList #genreList li {
		width: 23.5%;
	}

	#AudioList #brandList li {
		width: 23.5%;
	}

	#faq {
		margin: 55px auto 65px;
	}

	#voice {
		margin-bottom: 55px;
	}

	#method {
		padding: 55px 0 65px;
	}

	.panels {
		width: 90%;
		flex-direction: row;
		gap: 3%;
	}

	.panels .panel {
		width: 48.5%;
	}

	#active {
		padding: 55px 0 0;
	}

	#activeList {
		flex-direction: row;
		flex-wrap: wrap;
	}

	#activeList li {
		width: 50%;
	}
}


/* フッターTOPボタン */
/* -------------------------------------------------- */
#footerPageTop {
	width: 100%;
	background: #2a2522;
}

#footerPageTop a {
	width: 100%;
	min-height: 58px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75em;
}

#footerPageTop a::after {
	content: "";
	width: 0.6em;
	height: 0.6em;
	margin-top: 0.25em;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
}

#footerPageTop a:hover {
	background: #ca2f2e;
	text-decoration: none;
}

@media screen and (min-width: 768px) {

	.cvBtn,
	a.commonLink,
	.linkSquare,
	.lineSquare,
	.mailSquare,
	#genreList li a,
	#brandList li a,
	#topLinkList li a,
	#activeList li a,
	#footerPageTop a {
		transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background-color 0.22s ease, color 0.22s ease;
		will-change: transform;
	}

	.cvBtn:hover,
	a.commonLink:hover,
	.linkSquare:hover,
	.lineSquare:hover,
	.mailSquare:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 26px rgba(38, 20, 12, 0.18);
		filter: brightness(1.04);
	}

	a.commonLink::after {
		transition: transform 0.22s ease;
	}

	a.commonLink:hover::after {
		transform: translateX(6px);
	}

	#activeList li a:hover {
		transform: translateY(-4px);
		filter: brightness(1.04);
	}

	.cvBtnTel,
	.cvBtnTel:hover,
	.cvBtnTel[aria-disabled="true"],
	.cvBtnTel[aria-disabled="true"]:hover {
		cursor: default;
		pointer-events: none;
		transform: none !important;
		filter: none !important;
	}

	#topLinkList li a,
	#topLinkList li a:hover {
		transform: none !important;
	}

	#topLinkList .linkListImg img {
		transition: transform 0.35s ease;
	}

	#topLinkList li a:hover .linkListImg img {
		transform: scale(1.04);
	}

	#genreList li a,
	#brandList li a {
		overflow: hidden;
	}

	#brandList li a {
		display: block;
	}

	#genreList li a:hover,
	#brandList li a:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 26px rgba(38, 20, 12, 0.18);
		filter: brightness(1.04);
	}

	#genreList li a img,
	#brandList li a img {
		transition: transform 0.35s ease;
	}

	#genreList li a:hover img,
	#brandList li a:hover img {
		transform: scale(1.03);
	}

	#footerPageTop a:hover::after {
		transform: translateY(-3px) rotate(45deg);
	}
}


/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {

	#works {
		padding: 30px 0 50px;
	}

	#AudioListInner {
		width: 92%;
		padding: 230px 0 50px;
	}

	#faq {
		margin: 30px auto 50px;
	}

	#footNav {
		padding: 1em 0;
		background: #f7f0ed;
	}

	.footNavColumn {
		width: 92%;
		margin: 0 auto;

		& ul {
			margin-bottom: 1em;
			padding-bottom: 1em;
			border-bottom: 1px solid #ddd;
			display: flex;
			flex-wrap: wrap;
			gap: 0.25em 2%;

			& li {
				width: 49%;

				& a {
					color: #000;
					font-size: clamp(1.1rem, 1.2vw, 1.3rem);
					display: flex;
					align-items: flex-start;
					gap: 0.5em;
				}

				& a:before {
					content: "";
					width: 0.6em;
					height: 0.6em;
					aspect-ratio: 1/1;
					margin-top: 0.5em;
					border-radius: 50%;
					background: #ff4713;
					display: flex;
					align-items: center;
					justify-content: center;
					flex-shrink: 0;
				}
			}
		}
	}

	.footNavColumn:last-child {

		& ul {
			margin: 0;
			padding: 0;
			border: none;
		}
	}

	#footEnd {
		padding: 20px 0 0;
		background: #fff;
		color: #000;
	}


	#footEndLogo {
		text-align: center;
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1em;

		& p {
			font-size: clamp(0.8rem, 1.0vw, 1.0rem);
		}
	}

	#footCopyright {
		background-color: #fff;
		color: #666;
		padding: 10px 0 calc(74px + env(safe-area-inset-bottom, 0px));
		font-size: 1.1rem;
	}

	#footFix {
		width: 100%;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1000;
	}
}

/* -------------------------------------------------- */
/* TOP animation */
/* -------------------------------------------------- */
#fv {
	overflow: hidden;
	isolation: isolate;
	z-index: 0;
}

#fv+.cvSec {
	z-index: 1;
}

#fv::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../../img/top/fv_pc.jpg?v=20260715) no-repeat center;
	background-size: cover;
	position: absolute;
	inset: 0;
	z-index: 0;
	animation: apHeroZoom 9s ease-out both;
	will-change: transform;
}

#fv>* {
	z-index: 1;
}

#fvCc {
	opacity: 0;
	transform: translateY(18px);
	animation: apFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

#fvBadge {
	opacity: 0;
	transform: translate(8px, -8px) scale(0.92) rotate(3deg);
	animation: apBadgeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

#cautionTxt {
	bottom: -0.65em;
	z-index: 5;
	opacity: 0;
	transform: translateY(12px);
	animation: apFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
}

.ap-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.ap-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ap-reveal-list>li {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--ap-delay, 0ms);
	will-change: opacity, transform;
}

.ap-reveal-list.is-visible>li {
	opacity: 1;
	transform: translateY(0);
}

#buyList.ap-reveal-list>li,
#brandList.ap-reveal-list>li,
#genreList.ap-reveal-list>li {
	transform: translateY(20px) scale(0.98);
}

#buyList.ap-reveal-list.is-visible>li,
#brandList.ap-reveal-list.is-visible>li,
#genreList.ap-reveal-list.is-visible>li {
	transform: translateY(0) scale(1);
}

#topLinkList.ap-reveal-list>li {
	transform: translateX(-18px);
}

#topLinkList.ap-reveal-list>li:nth-child(even) {
	transform: translateX(18px);
}

#topLinkList.ap-reveal-list.is-visible>li,
#topLinkList.ap-reveal-list.is-visible>li:nth-child(even) {
	transform: translateX(0);
}

#activeList.ap-reveal-list>li {
	transform: translateX(-20px);
}

#activeList.ap-reveal-list.is-visible>li {
	transform: translateX(0);
}

@keyframes apHeroZoom {
	0% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes apFadeUp {
	0% {
		opacity: 0;
		transform: translateY(18px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes apBadgeIn {
	0% {
		opacity: 0;
		transform: translate(8px, -8px) scale(0.92) rotate(3deg);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(0);
	}
}

@keyframes apBandSweep {
	0% {
		transform: translateX(-160%) skewX(-16deg);
	}

	100% {
		transform: translateX(260%) skewX(-16deg);
	}
}

@keyframes apBubbleKnowledgeIn {
	0% {
		opacity: 0;
		transform: translate(-12px, 12px) scale(0.84) rotate(-5deg);
	}

	68% {
		opacity: 1;
		transform: translate(2px, -2px) scale(1.05) rotate(-1deg);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(-1deg);
	}
}

@keyframes apBubblePriceIn {
	0% {
		opacity: 0;
		transform: translate(12px, 12px) scale(0.84) rotate(5deg);
	}

	68% {
		opacity: 1;
		transform: translate(-2px, -2px) scale(1.05) rotate(1deg);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(1deg);
	}
}

@keyframes apBubbleEasyIn {
	0% {
		opacity: 0;
		transform: translate(-50%, 14px) scale(0.84) rotate(-5deg);
	}

	68% {
		opacity: 1;
		transform: translate(-50%, -2px) scale(1.05) rotate(-1deg);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, 0) scale(1) rotate(-1deg);
	}
}

@keyframes apBubbleGlow {
	0%, 100% {
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
	}

	50% {
		box-shadow: 0 5px 14px rgba(255, 71, 19, 0.24);
	}
}

@keyframes apKeywordPulse {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}
}

@keyframes apMvImageIn {
	0% {
		opacity: 0;
		transform: scale(1.018);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@media screen and (min-width: 1025px) {

	body .cvSec {
		min-height: 340px !important;
		padding: 54px max(5%, calc((100vw - 800px) / 2)) 58px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: center !important;
		gap: 14px !important;
		background: #f4f4f4 !important;
		overflow: hidden !important;
	}

	body .cvSec::before {
		right: max(5%, calc((100vw - 840px) / 2)) !important;
		top: 40px !important;
		bottom: 10px !important;
		width: min(42.5%, 340px) !important;
		height: auto !important;
		aspect-ratio: auto !important;
		max-height: none !important;
		background-size: auto 100% !important;
		background-position: right bottom !important;
		opacity: 0.95 !important;
		pointer-events: none !important;
		z-index: 2 !important;
	}

	body .cvSec .cvTxt {
		width: 100% !important;
		max-width: 800px !important;
		grid-column: auto !important;
		position: relative !important;
		z-index: 1 !important;
	}

	body .cvSec .cvTxtTop {
		box-sizing: border-box !important;
		width: 100% !important;
		margin-bottom: 0.55em !important;
		padding: 0.38em 0.58em !important;
		font-size: clamp(2.4rem, 2.4vw, 3.2rem) !important;
		line-height: 1.32 !important;
		position: relative !important;
	}

	body .cvSec .cvTxt p {
		width: min(67.5%, 540px) !important;
		max-width: 540px !important;
		margin: 0 !important;
		font-size: 1.55rem !important;
		line-height: 1.85 !important;
	}

	body .cvSec .cvBtnWrap {
		width: min(67.5%, 540px) !important;
		max-width: 540px !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		grid-column: auto !important;
		justify-self: auto !important;
		position: relative !important;
		z-index: 3 !important;
	}

	body .cvSec .cvBtnRow {
		order: 1 !important;
		width: 100% !important;
		max-width: none !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	body .cvSec .cvBtnLine {
		order: 1 !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnWeb {
		order: 2 !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnTel {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnTel .telInner {
		height: 100% !important;
		padding: 0 !important;
		flex-direction: row !important;
		justify-content: flex-start !important;
		gap: 0 !important;
	}

	body .cvSec .cvBtnTel .telTxt {
		width: 156px !important;
		height: 100% !important;
		aspect-ratio: auto !important;
		margin-left: 0 !important;
		border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
		border-radius: 0 !important;
		background: rgba(160, 30, 0, 0.14) !important;
		font-size: 2.05rem !important;
		line-height: 1.35 !important;
		flex-direction: column !important;
		gap: 0 !important;
	}

	body .cvSec .cvBtnTel .telTxt span {
		font-size: 1.35rem !important;
	}

	body .cvSec .cvBtnTel .telBodyWrap {
		width: auto !important;
		flex: 1 !important;
		min-width: 0 !important;
		justify-content: center !important;
	}

	body .cvSec .cvBtnTel .telBody {
		align-items: center !important;
		text-align: center !important;
	}

	body .cvSec .telBodyInner {
		gap: 0.55em !important;
		flex-wrap: nowrap !important;
	}

	body .cvSec .cvBtnTel .telIcon {
		height: 3.1em !important;
	}

	body .cvSec .cvBtnTel .telNum {
		font-size: clamp(3rem, 3vw, 3.8rem) !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	body .cvSec .cvBtnTel .telHours {
		margin-top: 0.4em !important;
		display: block !important;
		font-size: 1.3rem !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	html body .cvSec {
		padding-right: max(5%, calc((100vw - 800px) / 2)) !important;
		padding-left: max(5%, calc((100vw - 800px) / 2)) !important;
	}

	html body .cvSec::before {
		right: max(5%, calc((100vw - 840px) / 2)) !important;
		top: 40px !important;
		bottom: 10px !important;
		width: min(42.5%, 340px) !important;
		height: auto !important;
		aspect-ratio: auto !important;
		max-height: none !important;
		background-size: auto 100% !important;
		background-position: right bottom !important;
		z-index: 2 !important;
	}

	html body .cvSec .cvTxt {
		width: 100% !important;
		max-width: 800px !important;
	}

	html body .cvSec .cvTxt p,
	html body .cvSec .cvBtnWrap {
		width: min(67.5%, 540px) !important;
		max-width: 540px !important;
	}

	body #topLinkList li a .linkListInner h2 {
		width: auto !important;
		min-height: 0 !important;
		padding: 0.5em 1em !important;
		writing-mode: horizontal-tb !important;
		background: #fff !important;
		color: #000 !important;
		border-bottom: 1px solid #ff4713 !important;
		font-size: clamp(1.2rem, 1.4vw, 1.5rem) !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.3em !important;
		left: 0 !important;
		bottom: 1.5em !important;
	}
}

@media (prefers-reduced-motion: reduce) {

	#fv::before,
	#fvCc,
	#fvBadge,
	#cautionTxt,
	.ap-reveal,
	.ap-reveal-list>li {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.fvBubble,
	.fvBubbleEm,
	.fvCcText::after {
		animation: none !important;
		opacity: 1 !important;
		transition: none !important;
	}
}

@media screen and (min-width: 1025px) {
	#cautionTxt {
		bottom: -0.8em;
		z-index: 5;
	}

	#fv::before {
		background-position: center 38%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	#cautionTxt {
		bottom: -0.75em;
		z-index: 5;
	}

	#fv::before {
		background-position: center top;
	}
}

@media screen and (max-width: 1024px) {

	#container {
		min-width: 0 !important;
		padding-top: 50px !important;
	}

	#header {
		width: 100% !important;
		height: 50px !important;
		background: rgba(255, 255, 255, 0.96) !important;
		display: flex !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		z-index: 222000 !important;
		box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08) !important;
	}

	#headBar.pc,
	nav#headBar_btm.pc {
		display: none !important;
	}

	#headInner.sp {
		width: 100% !important;
		height: 50px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		position: relative !important;
	}

	#headInner #headBarLogo {
		height: 60% !important;
		margin-left: 0 !important;
		display: flex !important;
		align-items: center !important;
	}

	#headInner #headBarLogo a {
		height: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	#headInner #headBarLogo img {
		width: auto !important;
		height: 100% !important;
		display: block !important;
	}

	#headBtn {
		width: 50px !important;
		height: 50px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		position: absolute !important;
		left: 0.5em !important;
		top: 0 !important;
		z-index: 222002 !important;
	}

	.menuBtn {
		width: 40px !important;
		height: 40px !important;
		aspect-ratio: auto !important;
		background: #fff !important;
	}

	.drawer {
		top: 50px !important;
		left: 0.5em !important;
		right: auto !important;
		z-index: 222001 !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

	#fv {
		height: auto !important;
		aspect-ratio: 1920 / 800 !important;
		background-image: url(../../img/top/fv_pc.jpg?v=20260715) !important;
		background-position: center center !important;
		background-size: 100% 100% !important;
		display: block !important;
		overflow: hidden !important;
		z-index: 0 !important;
	}

	#fv::before {
		background-image: url(../../img/top/fv_pc.jpg?v=20260715) !important;
		background-position: center center !important;
		background-size: 100% 100% !important;
		animation: none !important;
		transform: none !important;
	}

	#fvCc,
	#fvBubbleList {
		display: none !important;
	}

	#fvBadge {
		width: clamp(72px, 11vw, 100px) !important;
		top: clamp(10px, 2vw, 18px) !important;
		right: 3% !important;
	}

	#cautionTxt {
		box-sizing: border-box !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0.65em 5% !important;
		border-radius: 0 !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		z-index: 5 !important;
		font-size: 1.2rem !important;
	}

	#choice,
	#area,
	#AudioList,
	#faq,
	#voice,
	#method,
	#active,
	.cvSec {
		scroll-margin-top: 70px !important;
	}

	#topLinkList {
		align-items: stretch !important;
	}

	#topLinkList li {
		width: 50% !important;
		display: flex !important;
	}

	#topLinkList li a,
	#topLinkList li a .linkListInner,
	#topLinkList .linkListImg {
		width: 100% !important;
		height: 100% !important;
	}

	#topLinkList .linkListImg {
		aspect-ratio: 3 / 4 !important;
		background-size: cover !important;
	}

	#topLinkList .linkListImg img {
		width: 100% !important;
		height: 100% !important;
		display: block !important;
		object-fit: cover !important;
		opacity: 1 !important;
	}

	#topLinkList li a .linkListInner h2 {
		max-width: calc(100% - 18px) !important;
		padding: 0.55em 0.85em !important;
		left: 0 !important;
		bottom: 1.1em !important;
		font-size: clamp(1.25rem, 1.8vw, 1.45rem) !important;
		line-height: 1.2 !important;
		letter-spacing: 0.16em !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}

	.cvSec {
		min-height: auto !important;
		padding: 36px 5% 42px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: center !important;
		gap: 14px !important;
		background: #f4f4f4 !important;
		overflow: hidden !important;
	}

	.cvSec::before {
		right: -8vw !important;
		bottom: -34px !important;
		width: min(38%, 290px) !important;
		height: 72% !important;
		max-height: 260px !important;
		opacity: 0.45 !important;
		pointer-events: none !important;
	}

	.cvTxt,
	.cvBtnWrap {
		width: 100% !important;
		max-width: none !important;
		position: relative !important;
		z-index: 1 !important;
	}

	.cvTxtTop {
		box-sizing: border-box !important;
		width: 100% !important;
		margin-bottom: 0.55em !important;
		padding: 0.38em 0.58em !important;
		font-size: clamp(2rem, 3.2vw, 2.8rem) !important;
		line-height: 1.32 !important;
	}

	.cvTxt p {
		width: 100% !important;
		margin: 0 !important;
		font-size: 1.45rem !important;
		line-height: 1.75 !important;
	}

	.cvBtnWrap {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
	}

	.cvBtnRow {
		order: 1 !important;
		width: 100% !important;
		max-width: none !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.cvBtn,
	.cvBtnLine,
	.cvBtnWeb,
	.cvBtnTel {
		height: 80px !important;
		border-radius: 4px !important;
	}

	.cvBtnLine {
		order: 1 !important;
	}

	.cvBtnWeb {
		order: 2 !important;
	}

	.cvBtnTel {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
	}

	.cvBtnInner {
		text-align: center !important;
		line-height: 1.05 !important;
	}

	.cvBtn .btnMain {
		font-size: clamp(1.8rem, 2.7vw, 2.4rem) !important;
		font-weight: 700 !important;
		white-space: nowrap !important;
	}

	.cvBtn .btnTxt {
		margin-top: 0.15em !important;
		display: block !important;
		font-size: 1.2rem !important;
		white-space: nowrap !important;
	}

	.cvBtnTel .telInner {
		height: 100% !important;
		padding: 0 14px !important;
		flex-direction: row !important;
		justify-content: flex-start !important;
		gap: 14px !important;
	}

	.cvBtnTel .telTxt {
		width: 132px !important;
		height: 100% !important;
		aspect-ratio: auto !important;
		margin-left: 0 !important;
		border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
		border-radius: 0 !important;
		background: rgba(160, 30, 0, 0.14) !important;
		font-size: 1.25rem !important;
		line-height: 1.35 !important;
		flex-shrink: 0 !important;
		flex-direction: column !important;
		gap: 0 !important;
	}

	.cvBtnTel .telTxt span {
		font-size: 1.8rem !important;
	}

	.cvBtnTel .telBodyWrap {
		width: auto !important;
		flex: 1 !important;
		min-width: 0 !important;
		justify-content: flex-start !important;
	}

	.cvBtnTel .telBody {
		align-items: flex-start !important;
		text-align: left !important;
	}

	.telBodyInner {
		gap: 0.5em !important;
		flex-wrap: nowrap !important;
	}

	.cvBtnTel .telIcon {
		height: 2.6em !important;
		flex-shrink: 0 !important;
	}

	.cvBtnTel .telNum {
		font-size: clamp(2.3rem, 4vw, 3.2rem) !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	.cvBtnTel .telHours {
		margin-top: 0.35em !important;
		display: block !important;
		font-size: 1.1rem !important;
		line-height: 1.25 !important;
		white-space: normal !important;
	}

	#area {
		padding: 55px 0 44px !important;
	}

	#areaInner {
		width: 90% !important;
		margin: 0 auto !important;
		display: block !important;
	}

	#areaHead {
		margin-bottom: 1.4em !important;
		grid-column: auto !important;
	}

	#areaMap {
		float: none !important;
		clear: both !important;
		width: min(360px, 100%) !important;
		height: 360px !important;
		margin: 0 auto 28px !important;
		background-position: center center !important;
		background-size: contain !important;
	}

	#areaPref {
		float: none !important;
		width: 100% !important;
		margin: 0 auto !important;
	}

	#AudioList {
		background-image: url(../../img/top/bg_list_sp.jpg?v=20260715) !important;
		background-position: center top !important;
		background-repeat: no-repeat !important;
		background-size: 100% auto !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	#AudioListInner {
		width: 90% !important;
		margin: 0 auto !important;
		padding: clamp(120px, 14vw, 430px) 0 70px !important;
		text-align: center !important;
	}

	#AudioList .areaHead {
		margin-bottom: 56px !important;
	}

	#AudioListGenre {
		margin-bottom: 56px !important;
	}

	#AudioList #genreList,
	#AudioList #brandList {
		width: 100% !important;
	}

	#AudioList #genreList li {
		width: 23.5% !important;
	}

	#AudioList #brandList {
		gap: 20px 2% !important;
		margin-bottom: 32px !important;
	}

	#AudioList #brandList li {
		width: 23.5% !important;
	}

	#AudioList #brandList li:nth-child(n+10) {
		display: none !important;
	}

	#method {
		padding: 55px 0 65px !important;
	}

	.panels {
		width: 90% !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 24px !important;
	}

	.panels .panel {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .tabs {
		display: none !important;
	}

	.methodPanelTitle {
		display: block !important;
		margin: 0 !important;
		padding: 1em 0 !important;
		background: #333 !important;
		color: #fff !important;
		font-size: clamp(1.6rem, 2vw, 1.9rem) !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.08em !important;
		text-align: center !important;
	}

	.panels .panel .methodInner {
		border-top: none !important;
		flex: 1 !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .methodInner .linkArea {
		margin-top: auto !important;
	}

	.panels .panel .methodInner .commonLink {
		height: 64px !important;
		min-height: 64px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	#activeList {
		flex-direction: column !important;
	}

	#activeList li {
		width: 100% !important;
	}
}

@media screen and (max-width: 767px) {
	#fv {
		height: auto;
		aspect-ratio: 750 / 900;
		background: none;
		background-position: center top;
		display: block;
		overflow: hidden;
	}

	#fv::before {
		background-image: url(../../img/top/fv_sp.jpg?v=20260715);
		background-position: center top;
		background-size: 100% 100%;
		animation: apMvImageIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	#fvCc {
		width: 108%;
		margin-top: 0;
		position: absolute;
		left: -4%;
		/* bottom: clamp(208px, 46vw, 238px); */
		bottom: 30%;
		z-index: 3;
	}

	#fvCc,
	#fvBubbleList {
		display: none;
	}

	#fvBadge {
		display: block;
	}

	#fvCc img {
		display: none;
	}

	.fvCcText {
		width: 100%;
		padding: 0.34em 0.42em 0.42em;
		box-sizing: border-box;
		border: 2px solid rgba(255, 255, 255, 0.88);
		border-radius: 5px;
		background: linear-gradient(180deg, #ff5a1f 0%, #ca2f2e 100%);
		box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
		color: #fff;
		display: flex;
		align-items: baseline;
		justify-content: center;
		position: relative;
		overflow: hidden;
		font-size: clamp(1.55rem, 4.5vw, 2.1rem);
		font-weight: 900;
		line-height: 1;
		letter-spacing: 0;
		white-space: nowrap;
		text-shadow: none;
		transform: rotate(-2deg);
	}

	.fvCcText::after {
		content: "";
		width: 42%;
		height: 100%;
		background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		pointer-events: none;
		transform: translateX(-160%) skewX(-16deg);
		animation: apBandSweep 1.15s ease-out 1.15s forwards;
	}

	.fvCcStrong,
	.fvCcShop {
		color: #fff3a0;
		font-size: 1.1em;
		margin: 0 0.04em;
	}

	.fvCcShop {
		padding: 0.15em 0.28em 0.17em;
		background: #fff;
		color: #ca2f2e;
		border-radius: 2px;
		font-size: 0.92em;
		margin-left: 0.12em;
	}

	#fvBadge {
		width: clamp(54px, 16vw, 70px);
		top: clamp(8px, 2.5vw, 14px);
		right: 3%;
		z-index: 2;
	}

	#fvBubbleList {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
		display: block;
		position: absolute;
		inset: 0;
		z-index: 2;
		pointer-events: none;
	}

	.fvBubble {
		width: clamp(86px, 24vw, 98px);
		aspect-ratio: 1 / 1;
		min-height: auto;
		padding: 2px;
		box-sizing: border-box;
		border: 1px solid rgba(255, 71, 19, 0.45);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
		color: #111;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: absolute;
		opacity: 0;
		text-align: center;
	}

	.fvBubbleTxt {
		position: relative;
		z-index: 1;
		font-size: clamp(1rem, 2.9vw, 1.12rem);
		font-weight: 600;
		line-height: 1.38;
		letter-spacing: 0;
	}

	.fvBubbleEm {
		display: inline-block;
		padding: 0 0.08em;
		background: linear-gradient(transparent 58%, rgba(255, 220, 72, 0.72) 58%);
		color: #e4431f;
		font-size: 1.34em;
		font-weight: 800;
		line-height: 1.04;
		transform-origin: center;
		animation: apKeywordPulse 2.4s ease-in-out 2.1s infinite;
	}

	.fvBubbleKnowledge {
		top: 38%;
		left: 2.5%;
		transform: rotate(-1deg);
		animation: apBubbleKnowledgeIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards, apBubbleGlow 3.2s ease-in-out 1.8s infinite;
	}

	.fvBubblePrice {
		top: 42%;
		right: 2.5%;
		transform: rotate(1deg);
		animation: apBubblePriceIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.98s forwards, apBubbleGlow 3.2s ease-in-out 2s infinite;
	}

	.fvBubbleEasy {
		border: 1px solid rgba(255, 71, 19, 0.55);
		left: 34%;
		bottom: 10%;
		transform: translateX(-50%) rotate(-1deg);
		animation: apBubbleEasyIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) 1.18s forwards, apBubbleGlow 3.2s ease-in-out 2.2s infinite;
	}

	#header .drawer {
		width: min(82vw, 300px);
		overflow: visible;
		max-height: none;
		right: auto;
		left: 0;
	}

	#header .drawer.open {
		max-height: none;
		left: 0.5em;
	}

	#header .drawer nav {
		padding: 8px 0;
		text-align: left;
	}

	#header .drawer nav ul {
		display: block;
	}

	#header .drawer nav ul li a {
		padding: 6px 18px;
		font-size: clamp(1.05rem, 2.8vw, 1.2rem);
		line-height: 1.25;
		text-align: left;
	}

	#fvCc,
	#fvBubbleList {
		display: none;
	}

	#fvBadge {
		display: block;
	}

	#cautionTxt {
		width: 94%;
		font-size: 1.0rem;
	}
}

@media screen and (max-width: 1024px) {
	#cautionTxt {
		box-sizing: border-box !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0.65em 5% !important;
		border-radius: 0 !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		z-index: 5 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}

@media screen and (max-width: 767px) {
	#cautionTxt {
		font-size: clamp(1rem, 2.8vw, 1.15rem) !important;
		line-height: 1.35 !important;
		text-align: left !important;
	}
}

@media (prefers-reduced-motion: reduce) {

	.fvBubble,
	.fvBubbleEm,
	.fvCcText::after {
		animation: none !important;
		opacity: 1 !important;
		transition: none !important;
	}
}

.ap-reduced-motion .fvBubble,
.ap-reduced-motion .fvBubbleEm,
.ap-reduced-motion .fvCcText::after {
	animation: none !important;
	opacity: 1 !important;
	transition: none !important;
}

@media screen and (min-width: 1025px) {

	#fv {
		height: auto !important;
		aspect-ratio: 1920 / 800 !important;
		background-position: center center !important;
		background-size: 100% 100% !important;
		overflow: hidden !important;
		z-index: 0 !important;
	}

	#fv::before {
		background-position: center center !important;
		background-size: 100% 100% !important;
	}

	#fvCc {
		display: none !important;
	}

	#fvBadge {
		width: min(7vw, 92px) !important;
		top: clamp(12px, 2vw, 26px) !important;
		right: max(3%, calc((100vw - 1240px) / 2)) !important;
	}

	#cautionTxt {
		box-sizing: border-box !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0.7em max(5%, calc((100vw - 1180px) / 2)) !important;
		border-radius: 0 !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		z-index: 5 !important;
		font-size: 1.3rem !important;
		align-items: center !important;
		gap: 0.45em !important;
		text-align: center !important;
	}

	#areaInner {
		grid-template-columns: 440px minmax(0, 1fr) !important;
	}

	#areaMap {
		width: 440px !important;
		height: 460px !important;
		background-size: 405px 411px !important;
	}

	#areaMap>div {
		transform: scale(0.88) !important;
		transform-origin: left top !important;
	}

	#pin01 {
		left: 163px !important;
		top: 0 !important;
	}

	#pin02 {
		left: 200px !important;
		top: 111px !important;
	}

	#pin03 {
		left: 62px !important;
		top: 70px !important;
	}

	#pin04 {
		left: 295px !important;
		top: 132px !important;
	}

	#pin05 {
		left: 290px !important;
		top: 202px !important;
	}

	#pin06 {
		left: 220px !important;
		top: 295px !important;
	}

	#pin07 {
		left: 167px !important;
		top: 352px !important;
	}

	#pin08 {
		left: 79px !important;
		top: 211px !important;
	}

	#pin09 {
		left: 79px !important;
		top: 370px !important;
	}

	#pin10 {
		left: 0 !important;
		top: 229px !important;
	}

	#AudioList {
		background-image: url(../../img/top/bg_list_pc.jpg?v=20260715) !important;
		background-position: center top !important;
		background-repeat: no-repeat !important;
		background-size: 100% auto !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	#AudioListInner {
		padding: clamp(170px, 11vw, 205px) 0 110px !important;
	}

	#AudioList .areaLead,
	#AudioList .areaTitle {
		color: #fff !important;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
	}

	#AudioList .areaHead {
		margin-bottom: 64px !important;
	}

	#AudioList .areaHead::after {
		background-color: #fff !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
	}

	#AudioListGenre {
		margin-bottom: 64px !important;
	}

	#AudioList #brandList {
		margin-bottom: 36px !important;
	}

	#AudioList #brandList li:nth-child(n+10) {
		display: block !important;
	}

	.panels .panel {
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .methodInner {
		flex: 1 !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .methodInner .linkArea {
		margin-top: auto !important;
	}

	.panels .panel .methodInner .commonLink {
		height: 64px !important;
		min-height: 64px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

	body .cvSec {
		min-height: 340px !important;
		padding: 54px max(5%, calc((100vw - 800px) / 2)) 58px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: center !important;
		gap: 14px !important;
		background: #f4f4f4 !important;
		overflow: hidden !important;
	}

	body .cvSec::before {
		right: max(5%, calc((100vw - 840px) / 2)) !important;
		top: 40px !important;
		bottom: 10px !important;
		width: min(42.5%, 340px) !important;
		height: auto !important;
		aspect-ratio: auto !important;
		max-height: none !important;
		background-size: auto 100% !important;
		background-position: right bottom !important;
		opacity: 0.95 !important;
		pointer-events: none !important;
		z-index: 2 !important;
	}

	body .cvSec .cvTxt {
		width: 100% !important;
		max-width: 800px !important;
		grid-column: auto !important;
		position: relative !important;
		z-index: 1 !important;
	}

	body .cvSec .cvTxtTop {
		box-sizing: border-box !important;
		width: 100% !important;
		margin-bottom: 0.55em !important;
		padding: 0.38em 0.58em !important;
		font-size: clamp(2.4rem, 2.4vw, 3.2rem) !important;
		line-height: 1.32 !important;
		position: relative !important;
	}

	body .cvSec .cvTxt p {
		width: min(67.5%, 540px) !important;
		max-width: 540px !important;
		margin: 0 !important;
		font-size: 1.55rem !important;
		line-height: 1.85 !important;
	}

	body .cvSec .cvBtnWrap {
		width: min(67.5%, 540px) !important;
		max-width: 540px !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		grid-column: auto !important;
		justify-self: auto !important;
		position: relative !important;
		z-index: 3 !important;
	}

	body .cvSec .cvBtnRow {
		order: 1 !important;
		width: 100% !important;
		max-width: none !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	body .cvSec .cvBtnLine {
		order: 1 !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnWeb {
		order: 2 !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnTel {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
		height: 80px !important;
	}

	body .cvSec .cvBtnTel .telInner {
		height: 100% !important;
		padding: 0 !important;
		flex-direction: row !important;
		justify-content: flex-start !important;
		gap: 0 !important;
	}

	body .cvSec .cvBtnTel .telTxt {
		width: 156px !important;
		height: 100% !important;
		aspect-ratio: auto !important;
		margin-left: 0 !important;
		border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
		border-radius: 0 !important;
		background: rgba(160, 30, 0, 0.14) !important;
		font-size: 2.05rem !important;
		line-height: 1.35 !important;
		flex-direction: column !important;
		gap: 0 !important;
	}

	body .cvSec .cvBtnTel .telTxt span {
		font-size: 1.35rem !important;
	}

	body .cvSec .cvBtnTel .telBodyWrap {
		width: auto !important;
		flex: 1 !important;
		min-width: 0 !important;
		justify-content: center !important;
	}

	body .cvSec .cvBtnTel .telBody {
		align-items: center !important;
		text-align: center !important;
	}

	body .cvSec .telBodyInner {
		gap: 0.55em !important;
		flex-wrap: nowrap !important;
	}

	body .cvSec .cvBtnTel .telIcon {
		height: 3.1em !important;
	}

	body .cvSec .cvBtnTel .telNum {
		font-size: clamp(3rem, 3vw, 3.8rem) !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	body .cvSec .cvBtnTel .telHours {
		margin-top: 0.4em !important;
		display: block !important;
		font-size: 1.3rem !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	#areaInner {
		width: min(1000px, 92%) !important;
		margin: 0 auto !important;
		display: grid !important;
		grid-template-columns: minmax(300px, 36%) minmax(0, 1fr) !important;
		column-gap: clamp(24px, 4vw, 44px) !important;
		row-gap: 24px !important;
		align-items: center !important;
	}

	#areaHead {
		grid-column: 1 / -1 !important;
		margin-bottom: 0.8em !important;
	}

	#areaMap {
		float: none !important;
		clear: both !important;
		width: min(330px, 100%) !important;
		height: 350px !important;
		margin: 0 !important;
		background-image: url(../../img/top/area_map.webp) !important;
		background-position: right center !important;
		background-repeat: no-repeat !important;
		background-size: 310px 315px !important;
	}

	#areaMap>div {
		transform: scale(0.74) !important;
		transform-origin: left top !important;
	}

	#pin01 { left: 125px !important; top: 0 !important; }
	#pin02 { left: 154px !important; top: 85px !important; }
	#pin03 { left: 48px !important; top: 54px !important; }
	#pin04 { left: 227px !important; top: 102px !important; }
	#pin05 { left: 223px !important; top: 155px !important; }
	#pin06 { left: 169px !important; top: 227px !important; }
	#pin07 { left: 129px !important; top: 271px !important; }
	#pin08 { left: 61px !important; top: 162px !important; }
	#pin09 { left: 61px !important; top: 285px !important; }
	#pin10 { left: 0 !important; top: 176px !important; }

	#areaPref {
		box-sizing: border-box !important;
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 1em !important;
		display: block !important;
		border-spacing: 0 !important;
		align-self: center !important;
	}

	.areaPrefWrap {
		display: grid !important;
		grid-template-columns: 72px minmax(0, 1fr) !important;
		gap: 10px !important;
		align-items: center !important;
		margin-bottom: 8px !important;
	}

	.areaPrefHead {
		width: auto !important;
		display: flex !important;
		justify-content: flex-end !important;
	}

	#AudioList {
		background-image: url(../../img/top/bg_list_pc.jpg?v=20260715) !important;
		background-position: center top !important;
		background-repeat: no-repeat !important;
		background-size: 100% auto !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	#AudioListInner {
		width: min(1120px, 90%) !important;
		margin: 0 auto !important;
		padding: clamp(120px, 14vw, 430px) 0 70px !important;
		text-align: center !important;
	}

	#AudioList .areaLead,
	#AudioList .areaTitle {
		color: #fff !important;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
	}

	#AudioList .areaHead {
		margin-bottom: 56px !important;
	}

	#AudioList .areaHead::after {
		background-color: #fff !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
	}

	#AudioListGenre {
		margin-bottom: 56px !important;
	}

	#AudioList #genreList li {
		width: 23.5% !important;
	}

	#AudioList #brandList {
		gap: 20px 2% !important;
		margin-bottom: 32px !important;
	}

	#AudioList #brandList li {
		width: 15% !important;
	}

	#AudioList #brandList li:nth-child(n+10) {
		display: block !important;
	}

	.panels {
		width: 90% !important;
		flex-direction: row !important;
		align-items: stretch !important;
		gap: 3% !important;
	}

	.panels .panel {
		width: 48.5% !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .methodImg {
		width: 100% !important;
		aspect-ratio: 5 / 3 !important;
		overflow: hidden !important;
	}

	.panels .panel .methodImg img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.panels .panel .tabs {
		display: none !important;
	}

	.methodPanelTitle {
		display: block !important;
		margin: 0 !important;
		padding: 1em 0 !important;
		background: #333 !important;
		color: #fff !important;
		font-size: clamp(1.6rem, 2vw, 1.9rem) !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.08em !important;
		text-align: center !important;
	}

	.panels .panel .methodInner {
		border-top: none !important;
		flex: 1 !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.panels .panel .methodInner .linkArea {
		margin-top: auto !important;
	}

	.panels .panel .methodInner .commonLink {
		height: 64px !important;
		min-height: 64px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	#activeList {
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}

	#activeList li {
		width: 50% !important;
	}

	#activeList li a {
		aspect-ratio: 3.8 / 1 !important;
	}

	#footNav {
		width: 100% !important;
		padding: 34px 0 !important;
		background: #f7f0ed !important;
		border-top: 1px solid #eaded8 !important;
	}

	#footNavInner {
		width: min(1120px, 92%) !important;
		margin: 0 auto !important;
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: space-between !important;
		align-items: flex-start !important;
		gap: 24px clamp(24px, 4vw, 56px) !important;
	}

	#footNav .footNavColumn {
		float: none !important;
		width: auto !important;
		flex: 0 1 auto !important;
		padding: 0 !important;
	}

	#footNav ul {
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
		display: grid !important;
		gap: 8px !important;
	}

	#footNav ul li {
		margin: 0 !important;
		padding: 0 !important;
	}

	#footNav ul li a {
		color: #2a2522 !important;
		font-family: "Noto Sans JP", sans-serif !important;
		font-size: 1.3rem !important;
		font-weight: 500 !important;
		line-height: 1.45 !important;
		letter-spacing: 0 !important;
		display: flex !important;
		align-items: flex-start !important;
		gap: 0.55em !important;
		transition: color 0.2s ease !important;
	}

	#footNav ul li a::before {
		content: "" !important;
		width: 0.48em !important;
		height: 0.48em !important;
		margin-top: 0.48em !important;
		border-radius: 50% !important;
		background: #ff4713 !important;
		flex-shrink: 0 !important;
	}

	#footEnd {
		width: 100% !important;
		padding: 28px 0 14px !important;
		background: #fff !important;
		color: #2a2522 !important;
		border-top: 1px solid #eaded8 !important;
		font-family: "Noto Sans JP", sans-serif !important;
		font-size: 1.3rem !important;
		line-height: 1.6 !important;
		letter-spacing: 0 !important;
	}

	#footEndInner {
		width: min(1120px, 92%) !important;
		margin: 0 auto !important;
	}

	#footEndLogo {
		margin-bottom: 0 !important;
		text-align: center !important;
	}

	#footEndLogo img {
		width: 190px !important;
		height: auto !important;
		margin: 0 auto 10px !important;
		display: block !important;
	}

	#footEndLogo p {
		margin: 0 !important;
		color: #666 !important;
		font-size: 1.2rem !important;
		line-height: 1.6 !important;
		letter-spacing: 0 !important;
	}

	#footCopyright {
		padding: 10px 0 24px !important;
		background: #fff !important;
		color: #777 !important;
		border-top: 1px solid #f2e9e5 !important;
		font-family: "Roboto", "Noto Sans JP", sans-serif !important;
		font-size: 1.2rem !important;
		line-height: 1 !important;
		letter-spacing: 0 !important;
	}
}

/* TOP only: keep the header transparent on SP, white on PC */
@media screen and (min-width: 1025px) {
	html body #container {
		padding-top: 118px !important;
	}

	html body #header {
		height: 118px !important;
		background: #fff !important;
		box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08) !important;
	}

	html body nav#headBar_btm.pc {
		background: #fff !important;
		border-top: 1px solid #f3e8e2 !important;
		border-bottom: 1px solid #efe2dc !important;
		box-shadow: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	html body #container {
		padding-top: 50px !important;
	}

	html body #header {
		background: rgba(255, 255, 255, 0.96) !important;
		box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08) !important;
	}
}

@media screen and (max-width: 767px) {
	html body #container {
		padding-top: 0 !important;
	}

	html body #header {
		background: transparent !important;
		box-shadow: none !important;
	}
}

/* Legacy top_pc/top_sp carry-over: current TOP selectors only */
#AudioListBrand {
	width: 100%;
	margin-top: 0;
	text-align: center;
}

#AudioListGenre .commonLink,
#AudioListBrand .commonLink {
	box-sizing: border-box;
}

/* TOP area layout is owned here so map/list sizing stays in sync */
@media screen and (min-width: 1025px) {
	#areaInner {
		width: min(1120px, 92%) !important;
		margin: 0 auto !important;
		display: grid !important;
		grid-template-columns: 440px minmax(0, 1fr) !important;
		column-gap: clamp(30px, 4vw, 60px) !important;
		align-items: center !important;
	}

	#areaHead {
		grid-column: 1 / -1 !important;
		margin-bottom: 1.2em !important;
	}

	#areaMap {
		float: none !important;
		clear: both !important;
		width: 440px !important;
		height: 460px !important;
		margin: 0 !important;
		background-image: url(../../img/top/area_map.webp) !important;
		background-position: right center !important;
		background-repeat: no-repeat !important;
		background-size: 405px 411px !important;
	}

	#areaMap>div {
		transform: scale(0.88) !important;
		transform-origin: left top !important;
	}

	#pin01 { left: 163px !important; top: 0 !important; }
	#pin02 { left: 200px !important; top: 111px !important; }
	#pin03 { left: 62px !important; top: 70px !important; }
	#pin04 { left: 295px !important; top: 132px !important; }
	#pin05 { left: 290px !important; top: 202px !important; }
	#pin06 { left: 220px !important; top: 295px !important; }
	#pin07 { left: 167px !important; top: 352px !important; }
	#pin08 { left: 79px !important; top: 211px !important; }
	#pin09 { left: 79px !important; top: 370px !important; }
	#pin10 { left: 0 !important; top: 229px !important; }

	#areaPref {
		box-sizing: border-box !important;
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 1em !important;
		display: block !important;
		border-spacing: 0 !important;
		align-self: center !important;
	}

	.areaPrefWrap {
		display: grid !important;
		grid-template-columns: 78px minmax(0, 1fr) !important;
		gap: 12px !important;
		align-items: center !important;
		margin-bottom: 10px !important;
	}

	.areaPrefHead {
		width: auto !important;
		display: flex !important;
		justify-content: flex-end !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	#areaInner {
		width: min(1000px, 92%) !important;
		margin: 0 auto !important;
		display: grid !important;
		grid-template-columns: minmax(300px, 36%) minmax(0, 1fr) !important;
		column-gap: clamp(24px, 4vw, 44px) !important;
		row-gap: 24px !important;
		align-items: center !important;
	}

	#areaHead {
		grid-column: 1 / -1 !important;
		margin-bottom: 0.8em !important;
	}

	#areaMap {
		float: none !important;
		clear: both !important;
		width: min(330px, 100%) !important;
		height: 350px !important;
		margin: 0 !important;
		background-image: url(../../img/top/area_map.webp) !important;
		background-position: right center !important;
		background-repeat: no-repeat !important;
		background-size: 310px 315px !important;
	}

	#areaMap>div {
		transform: scale(0.74) !important;
		transform-origin: left top !important;
	}

	#pin01 { left: 125px !important; top: 0 !important; }
	#pin02 { left: 154px !important; top: 85px !important; }
	#pin03 { left: 48px !important; top: 54px !important; }
	#pin04 { left: 227px !important; top: 102px !important; }
	#pin05 { left: 223px !important; top: 155px !important; }
	#pin06 { left: 169px !important; top: 227px !important; }
	#pin07 { left: 129px !important; top: 271px !important; }
	#pin08 { left: 61px !important; top: 162px !important; }
	#pin09 { left: 61px !important; top: 285px !important; }
	#pin10 { left: 0 !important; top: 176px !important; }

	#areaPref {
		box-sizing: border-box !important;
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 1em !important;
		display: block !important;
		border-spacing: 0 !important;
		align-self: center !important;
	}

	.areaPrefWrap {
		display: grid !important;
		grid-template-columns: 72px minmax(0, 1fr) !important;
		gap: 10px !important;
		align-items: center !important;
		margin-bottom: 8px !important;
	}

	.areaPrefHead {
		width: auto !important;
		display: flex !important;
		justify-content: flex-end !important;
	}
}

@media screen and (max-width: 767px) {
	#method .methodPanelTitle.pc {
		display: none !important;
	}

	#method .panels .panel .tabs {
		display: flex !important;
	}

	#area {
		width: 100% !important;
		background-image: url(../../img/common/bg_tile.svg) !important;
		padding: 30px 0 15px !important;
		overflow: visible !important;
	}

	#areaInner {
		width: 100% !important;
		margin: 0 auto !important;
		display: block !important;
	}

	#areaHead {
		margin-bottom: 0.5em !important;
		color: #000 !important;
		font-size: clamp(1.8rem, 5.3vw, 2.2rem) !important;
		font-weight: 600 !important;
		line-height: 1.4 !important;
		letter-spacing: 0.075em !important;
		text-align: center !important;
	}

	#areaMap {
		float: none !important;
		clear: both !important;
		width: 300px !important;
		height: 300px !important;
		margin: 0 auto 20px !important;
		background-image: url(../../img/top/img_map.svg) !important;
		background-position: right center !important;
		background-repeat: no-repeat !important;
		background-size: contain !important;
		position: relative !important;
	}

	#areaMap img {
		width: 60% !important;
		height: auto !important;
		display: block !important;
	}

	#areaMap>div {
		transform: none !important;
		transform-origin: left top !important;
	}

	#pin01 { top: 0 !important; left: 110px !important; }
	#pin02 { top: 70px !important; left: 130px !important; }
	#pin03 { top: 50px !important; left: 40px !important; }
	#pin04 { top: 90px !important; left: 150px !important; text-align: right !important; }
	#pin05 { top: 140px !important; left: 140px !important; text-align: right !important; }
	#pin06 { top: 210px !important; left: 130px !important; }
	#pin07 { top: 240px !important; left: 100px !important; }
	#pin08 { top: 140px !important; left: 50px !important; }
	#pin09 { top: 260px !important; left: 30px !important; }
	#pin10 { top: 180px !important; left: 0 !important; }

	#areaPref {
		float: none !important;
		width: 92% !important;
		margin: 3em auto 1em !important;
		padding: 0 !important;
		display: table !important;
		border-spacing: 10px !important;
		border-radius: 0 !important;
		background: rgba(255, 255, 255, 0.6) !important;
	}

	.areaPrefWrap {
		width: 100% !important;
		margin: 0 !important;
		display: table-row !important;
	}

	.areaPrefHead {
		width: 70px !important;
		padding: 0.5em 1em 0.5em 0 !important;
		display: table-cell !important;
		border-right: solid 1px #ca2f2e !important;
		color: #000 !important;
		font-size: clamp(1.3rem, 1.4vw, 1.6rem) !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.075em !important;
		text-align: right !important;
		vertical-align: middle !important;
	}

	.areaPrefList {
		width: calc(100% - 70px) !important;
		padding-left: 10px !important;
		display: table-cell !important;
		vertical-align: middle !important;
	}

	.areaPrefList ul {
		margin: 0 !important;
		padding: 0 !important;
		display: block !important;
		list-style: none !important;
		letter-spacing: -.4em !important;
	}

	.areaPrefList ul li {
		margin: 0 20px 0 0 !important;
		padding: 0 !important;
		display: inline-block !important;
		letter-spacing: normal !important;
	}

	.areaPrefList ul li a {
		font-size: 1.2rem !important;
		line-height: 1.857 !important;
		letter-spacing: 0.075em !important;
		color: #333 !important;
		white-space: nowrap !important;
	}
}

/* area map pins */
#areaMap div {
	position: absolute;
	opacity: 0;
}

@keyframes bounceIn {
	0%, 20%, 40%, 60%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		-ms-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		-ms-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	60% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		-ms-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		-ms-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1;
	}
}

#pin01.active,
#pin02.active,
#pin03.active,
#pin04.active,
#pin05.active,
#pin06.active,
#pin07.active,
#pin08.active,
#pin09.active,
#pin10.active {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	opacity: 1;
}
