@charset "UTF-8";
/*------------------------------------------------
 ブリヂストン タイヤオンラインストアとは
------------------------------------------------*/
/*------------------------------------------------
	スクロール用
------------------------------------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

/*------------------------------------------------
	BTOS > Base
------------------------------------------------*/
#maincontent {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: normal;
}

@media only screen and (max-width: 768px) {
	#maincontent {
		font-size: 0.938rem;
		line-height: 1.6;
	}
}

#maincontent .container {
	overflow: visible;
}

@media (min-width: 1025px) {
	#maincontent .container {
		max-width: 1110px;
	}
}

#maincontent ::before, #maincontent ::after {
	pointer-events: none;
}

#maincontent a, #maincontent button {
	-webkit-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	-webkit-transition-property: opacity, color, background-color, border-color, outline-color, -webkit-transform;
	transition-property: opacity, color, background-color, border-color, outline-color, -webkit-transform;
	transition-property: opacity, color, background-color, border-color, outline-color, transform;
	transition-property: opacity, color, background-color, border-color, outline-color, transform, -webkit-transform;
}

#maincontent a:hover img, #maincontent button:hover img {
	opacity: 1;
}

@media (max-width: 1199px) {
	#maincontent img, #maincontent video {
		max-width: 100%;
		height: auto;
	}
}

#maincontent em, #maincontent strong, #maincontent b {
	font-weight: bold;
	font-style: normal;
}

#maincontent small {
	font-weight: inherit;
}

#maincontent sup, #maincontent sub {
	font-size: 0.6em;
}

#maincontent sup.online, #maincontent sub.online {
	display: inline-block;
	width: 0;
	white-space: nowrap;
}

#maincontent i, #maincontent dfn {
	font-style: normal;
}

#maincontent .en {
	font-family: Arial, "Helvetica Neue", Helvetica, Verdana, Roboto, sans-serif;
}

#maincontent .en-heading {
	font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
}

#maincontent .note {
	display: block;
	margin-top: 0.3em;
}

#maincontent caption {
	color: inherit;
}

@media only screen and (max-width: 543px) {
	#maincontent .aos-animate[data-aos-delay] {
		-webkit-transition-delay: 0s;
		        transition-delay: 0s;
	}
}

#maincontent .disabled {
	pointer-events: none;
	cursor: default;
}

#maincontent summary.disabled {
	color: inherit;
	list-style: none;
}

#maincontent summary.disabled::-webkit-details-marker {
	display: none;
}

/* [SP] 文字サイズ指定 */
@media only screen and (max-width: 768px) {
	#custom .m-sp-textXXL {
		font-size: 1.75rem !important;
	}
	#custom .m-sp-textXL {
		font-size: 1.625rem !important;
	}
	#custom .m-sp-textLL {
		font-size: 1.375rem !important;
	}
	#custom .m-sp-textL {
		font-size: 1.125rem !important;
	}
	#custom .m-sp-textM {
		font-size: 1rem !important;
	}
	#custom .m-sp-textS {
		font-size: .875rem !important;
	}
	#custom .m-sp-textSS {
		font-size: .75rem !important;
	}
	#custom .m-sp-textSSS {
		font-size: .625rem !important;
	}
}

/*------------------------------------------------
	BTOS > 見出し
------------------------------------------------*/
#maincontent :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.6;
}

#maincontent h2, #maincontent .h2 {
	font-size: 1.563rem;
	margin-bottom: 1.6em;
	text-align: center;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#maincontent h2, #maincontent .h2 {
		font-size: 1.313rem;
	}
}

#maincontent h2 em, #maincontent h2 strong, #maincontent .h2 em, #maincontent .h2 strong {
	color: #f00;
}

#maincontent h2 i, #maincontent .h2 i {
	display: inline-block;
	margin: 0 0.3em;
	font-family: Arial, "Helvetica Neue", Helvetica, Verdana, Roboto, sans-serif;
	font-size: 3rem;
	line-height: 1;
	font-style: normal;
	font-weight: bold;
	color: #f00;
	vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
	#maincontent h2 i, #maincontent .h2 i {
		font-size: 2.375rem;
	}
}

#maincontent h3, #maincontent .h3 {
	font-size: 1.125rem;
	margin-bottom: 1em;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#maincontent h3, #maincontent .h3 {
		font-size: 1rem;
	}
}

#maincontent :is(h4, h5, h6),
#maincontent :is(.h4, .h5, .h6) {
	font-size: 1rem;
	font-weight: bold;
}

/* AOS アニメーション中の操作を無効 */
.aos-init:where(:not([data-aos=""])) {
	pointer-events: none;
}

.aos-animate:where(:not([data-aos=""])) {
	pointer-events: auto;
}

/* フェードイン */
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* フェードアウト */
@-webkit-keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* フェードイン→アウト */
@-webkit-keyframes fade-in-out {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}
@keyframes fade-in-out {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}

/* フェードアウト→イン */
@-webkit-keyframes fade-out-in {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
@keyframes fade-out-in {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

/* ズームイン */
@-webkit-keyframes zoom-in {
	0% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes zoom-in {
	0% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

/* ズームアウト */
@-webkit-keyframes zoom-out {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}
@keyframes zoom-out {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}

/* ズームイン→アウト */
@-webkit-keyframes zoom-in-out {
	0%, 100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes zoom-in-out {
	0%, 100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

/* ズームアウト→イン */
@-webkit-keyframes zoom-out-in {
	0%, 100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}
@keyframes zoom-out-in {
	0%, 100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}

/* 背景がポワンと光るアニメーション */
.anime-bg-shining {
	position: relative;
	overflow: hidden;
}

.anime-bg-shining::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10%;
	height: 100%;
	background: -webkit-radial-gradient(#fff7, #fff0);
	background: radial-gradient(#fff7, #fff0);
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	opacity: 0;
	-webkit-animation: bg-shining 5.0s ease-in-out infinite;
	        animation: bg-shining 5.0s ease-in-out infinite;
}

@-webkit-keyframes bg-shining {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
	}
	84% {
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
	}
	86% {
		-webkit-transform: scale(6);
		        transform: scale(6);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50);
		        transform: scale(50);
		opacity: 0;
	}
}

@keyframes bg-shining {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
	}
	84% {
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
	}
	86% {
		-webkit-transform: scale(6);
		        transform: scale(6);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50);
		        transform: scale(50);
		opacity: 0;
	}
}

/* 背景がキラッと光るアニメーション */
.anime-bg-linear-shining {
	position: relative;
	overflow: hidden;
}

.anime-bg-linear-shining::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	left: 0;
	width: 30%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(#fff0), to(#fff7));
	background: -webkit-linear-gradient(left, #fff0, #fff7);
	background: linear-gradient(to right, #fff0, #fff7);
	-webkit-transform: skewX(-80deg);
	    -ms-transform: skewX(-80deg);
	        transform: skewX(-80deg);
	-webkit-animation: bg-linear-shining 5.0s ease-in-out infinite;
	        animation: bg-linear-shining 5.0s ease-in-out infinite;
}

@-webkit-keyframes bg-linear-shining {
	0% {
		left: -50%;
	}
	84% {
		left: -50%;
	}
	100% {
		left: 150%;
	}
}

@keyframes bg-linear-shining {
	0% {
		left: -50%;
	}
	84% {
		left: -50%;
	}
	100% {
		left: 150%;
	}
}

/* hover 時のアニメーション */
@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotation {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@-webkit-keyframes rotation-reverse {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-360deg);
		        transform: rotate(-360deg);
	}
}

@keyframes rotation-reverse {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-360deg);
		        transform: rotate(-360deg);
	}
}

@-webkit-keyframes rotation-x {
	0% {
		-webkit-transform: rotateX(0);
		        transform: rotateX(0);
	}
	100% {
		-webkit-transform: rotateX(360deg);
		        transform: rotateX(360deg);
	}
}

@keyframes rotation-x {
	0% {
		-webkit-transform: rotateX(0);
		        transform: rotateX(0);
	}
	100% {
		-webkit-transform: rotateX(360deg);
		        transform: rotateX(360deg);
	}
}

@-webkit-keyframes rotation-y {
	0% {
		-webkit-transform: rotateY(0);
		        transform: rotateY(0);
	}
	100% {
		-webkit-transform: rotateY(360deg);
		        transform: rotateY(360deg);
	}
}

@keyframes rotation-y {
	0% {
		-webkit-transform: rotateY(0);
		        transform: rotateY(0);
	}
	100% {
		-webkit-transform: rotateY(360deg);
		        transform: rotateY(360deg);
	}
}

@-webkit-keyframes shaking {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	10% {
		-webkit-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}
	20% {
		-webkit-transform: rotate(8deg);
		        transform: rotate(8deg);
	}
	30% {
		-webkit-transform: rotate(-5deg);
		        transform: rotate(-5deg);
	}
	40% {
		-webkit-transform: rotate(4deg);
		        transform: rotate(4deg);
	}
	50% {
		-webkit-transform: rotate(-3deg);
		        transform: rotate(-3deg);
	}
	60% {
		-webkit-transform: rotate(2deg);
		        transform: rotate(2deg);
	}
	70% {
		-webkit-transform: rotate(-2deg);
		        transform: rotate(-2deg);
	}
	80% {
		-webkit-transform: rotate(1deg);
		        transform: rotate(1deg);
	}
	90% {
		-webkit-transform: rotate(-1deg);
		        transform: rotate(-1deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}

@keyframes shaking {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	10% {
		-webkit-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}
	20% {
		-webkit-transform: rotate(8deg);
		        transform: rotate(8deg);
	}
	30% {
		-webkit-transform: rotate(-5deg);
		        transform: rotate(-5deg);
	}
	40% {
		-webkit-transform: rotate(4deg);
		        transform: rotate(4deg);
	}
	50% {
		-webkit-transform: rotate(-3deg);
		        transform: rotate(-3deg);
	}
	60% {
		-webkit-transform: rotate(2deg);
		        transform: rotate(2deg);
	}
	70% {
		-webkit-transform: rotate(-2deg);
		        transform: rotate(-2deg);
	}
	80% {
		-webkit-transform: rotate(1deg);
		        transform: rotate(1deg);
	}
	90% {
		-webkit-transform: rotate(-1deg);
		        transform: rotate(-1deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}

@-webkit-keyframes bounding {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	60% {
		-webkit-transform: translateY(-12px);
		        transform: translateY(-12px);
	}
	82% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	94% {
		-webkit-transform: translateY(-3px);
		        transform: translateY(-3px);
	}
	100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

@keyframes bounding {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	60% {
		-webkit-transform: translateY(-12px);
		        transform: translateY(-12px);
	}
	82% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	94% {
		-webkit-transform: translateY(-3px);
		        transform: translateY(-3px);
	}
	100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

/* SVG のフェードイン→アウト */
@-webkit-keyframes svg-fade-in-out {
	0%, 100% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
	50% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
}
@keyframes svg-fade-in-out {
	0%, 100% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
	50% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
}

/* SVG のフェードアウト→イン */
@-webkit-keyframes svg-fade-out-in {
	0%, 100% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
	50% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
}
@keyframes svg-fade-out-in {
	0%, 100% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
	50% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
}

/* SVG の点滅 */
@-webkit-keyframes svg-blink {
	0%, 49.9%, 100% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
	50%, 99.9% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
}
@keyframes svg-blink {
	0%, 49.9%, 100% {
		stroke-opacity: 1;
		fill-opacity: 1;
	}
	50%, 99.9% {
		stroke-opacity: 0;
		fill-opacity: 0;
	}
}

/* SVG のストローク */
@-webkit-keyframes svg-stroke-100 {
	0% {
		stroke-dashoffset: 100;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}
@keyframes svg-stroke-100 {
	0% {
		stroke-dashoffset: 100;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@-webkit-keyframes svg-stroke-200 {
	0% {
		stroke-dashoffset: 200;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@keyframes svg-stroke-200 {
	0% {
		stroke-dashoffset: 200;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@-webkit-keyframes svg-stroke-300 {
	0% {
		stroke-dashoffset: 300;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@keyframes svg-stroke-300 {
	0% {
		stroke-dashoffset: 300;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@-webkit-keyframes svg-stroke-500 {
	0% {
		stroke-dashoffset: 500;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@keyframes svg-stroke-500 {
	0% {
		stroke-dashoffset: 500;
		fill-opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@-webkit-keyframes svg-stroke-1000 {
	0% {
		stroke-width: 1;
		stroke-dashoffset: 1000;
		fill-opacity: 0;
	}
	75% {
		stroke-width: 1;
		stroke-dashoffset: 0;
		fill-opacity: 0;
	}
	100% {
		stroke-width: 0;
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

@keyframes svg-stroke-1000 {
	0% {
		stroke-width: 1;
		stroke-dashoffset: 1000;
		fill-opacity: 0;
	}
	75% {
		stroke-width: 1;
		stroke-dashoffset: 0;
		fill-opacity: 0;
	}
	100% {
		stroke-width: 0;
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

/* [default] SVG animation */
.svg-stroke {
	stroke-dasharray: 300;
	stroke-dashoffset: 0;
	fill-opacity: 0;
}

.svg-stroke:not([stroke-width]) {
	stroke-width: 1;
}

.svg-stroke:not([stroke]) {
	stroke: #333;
}

.svg-stroke-100 .svg-stroke {
	stroke-dasharray: 100;
	-webkit-animation: svg-stroke-100 1.5s linear infinite;
	        animation: svg-stroke-100 1.5s linear infinite;
}

.svg-stroke-200 .svg-stroke {
	stroke-dasharray: 200;
	-webkit-animation: svg-stroke-200 1.5s linear infinite;
	        animation: svg-stroke-200 1.5s linear infinite;
}

.svg-stroke-300 .svg-stroke {
	stroke-dasharray: 300;
	-webkit-animation: svg-stroke-300 1.5s linear infinite;
	        animation: svg-stroke-300 1.5s linear infinite;
}

.svg-stroke-500 .svg-stroke {
	stroke-dasharray: 500;
	-webkit-animation: svg-stroke-500 1.5s linear infinite;
	        animation: svg-stroke-500 1.5s linear infinite;
}

.svg-stroke-1000 .svg-stroke {
	stroke-dasharray: 1000;
	-webkit-animation: svg-stroke-1000 1.5s linear infinite;
	        animation: svg-stroke-1000 1.5s linear infinite;
}

.svg-fade-in-out .svg-color {
	-webkit-animation: svg-fade-in-out 1s ease-in-out infinite;
	        animation: svg-fade-in-out 1s ease-in-out infinite;
}

.svg-fade-out-in .svg-color {
	-webkit-animation: svg-fade-out-in 1s ease-in-out infinite;
	        animation: svg-fade-out-in 1s ease-in-out infinite;
}

.svg-blink .svg-color {
	-webkit-animation: svg-blink 1s ease-in-out infinite;
	        animation: svg-blink 1s ease-in-out infinite;
}

.anime-shaking:hover svg, .anime-shaking:hover .anime, .anime-shaking:hover.anime {
	-webkit-animation: shaking 0.6s ease-in-out;
	        animation: shaking 0.6s ease-in-out;
}

.anime-bounding:hover svg, .anime-bounding:hover .anime, .anime-bounding:hover.anime {
	-webkit-animation: bounding 0.6s ease-in-out;
	        animation: bounding 0.6s ease-in-out;
}

.anime-rotation:hover svg, .anime-rotation:hover .anime, .anime-rotation:hover.anime {
	-webkit-animation: rotation 0.6s ease-in-out;
	        animation: rotation 0.6s ease-in-out;
}

.anime-rotation-reverse:hover svg, .anime-rotation-reverse:hover .anime, .anime-rotation-reverse:hover.anime {
	-webkit-animation: rotation-reverse 0.6s ease-in-out;
	        animation: rotation-reverse 0.6s ease-in-out;
}

.anime-rotation-x:hover svg, .anime-rotation-x:hover .anime, .anime-rotation-x:hover.anime {
	-webkit-animation: rotation-x 0.6s ease-in-out;
	        animation: rotation-x 0.6s ease-in-out;
}

.anime-rotation-y:hover svg, .anime-rotation-y:hover .anime, .anime-rotation-y:hover.anime {
	-webkit-animation: rotation-y 0.6s ease-in-out;
	        animation: rotation-y 0.6s ease-in-out;
}

/* ボタンのアニメーション */
/* 疑似要素で枠線を準備する (req: .btn > u || .btn > u > u) */
.btn {
	position: relative;
	z-index: 1;
}

.btn u::before, .btn u::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	background-color: #f00;
	-webkit-transition-property: width, height;
	transition-property: width, height;
	-webkit-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-in-out;
	        transition-timing-function: ease-in-out;
}

.btn:disabled u::before, .btn:disabled u::after {
	content: none;
	display: none;
}

/* hover時、既定の枠線を透過する */
.hover-border-clear.btn:where(:hover, :focus), .hover-border-clear .btn:where(:hover, :focus) {
	border-color: transparent !important;
}

/* 既定の hover時の透過を上書き */
#custom :is(
.anime-border-run,
.anime-border-run-4,
.anime-border-2-lane,
.anime-border-in,
.anime-border-flashing).btn:where(:hover, :focus), #custom :is(
.anime-border-run,
.anime-border-run-4,
.anime-border-2-lane,
.anime-border-in,
.anime-border-flashing) .btn:where(:hover, :focus) {
	opacity: 1;
}

/* 上下左右で同時に枠線が走る (req: .btn > u > u) */
.anime-border-run-4.btn > u::before, .anime-border-run-4 .btn > u::before {
	top: -2px;
	left: -2px;
	height: 2px;
}

.anime-border-run-4.btn > u::after, .anime-border-run-4 .btn > u::after {
	bottom: -2px;
	right: -2px;
	height: 2px;
}

.anime-border-run-4.btn > u > u::before, .anime-border-run-4 .btn > u > u::before {
	top: -2px;
	right: -2px;
	width: 2px;
}

.anime-border-run-4.btn > u > u::after, .anime-border-run-4 .btn > u > u::after {
	bottom: -2px;
	left: -2px;
	width: 2px;
}

.anime-border-run-4.btn:where(:hover, :focus) > u::before, .anime-border-run-4 .btn:where(:hover, :focus) > u::before {
	width: calc(100% + 4px);
}

.anime-border-run-4.btn:where(:hover, :focus) > u::after, .anime-border-run-4 .btn:where(:hover, :focus) > u::after {
	width: calc(100% + 4px);
}

.anime-border-run-4.btn:where(:hover, :focus) > u > u::before, .anime-border-run-4 .btn:where(:hover, :focus) > u > u::before {
	height: calc(100% + 4px);
}

.anime-border-run-4.btn:where(:hover, :focus) > u > u::after, .anime-border-run-4 .btn:where(:hover, :focus) > u > u::after {
	height: calc(100% + 4px);
}

/* 左上から時計回りに枠線が走る (req: .btn > u > u) */
.anime-border-run.btn > u::before, .anime-border-run .btn > u::before {
	top: -2px;
	left: -2px;
	height: 2px;
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

.anime-border-run.btn > u::after, .anime-border-run .btn > u::after {
	bottom: -2px;
	right: -2px;
	height: 2px;
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
	-webkit-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}

.anime-border-run.btn > u > u::before, .anime-border-run .btn > u > u::before {
	top: -2px;
	right: -2px;
	width: 2px;
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
	-webkit-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}

.anime-border-run.btn > u > u::after, .anime-border-run .btn > u > u::after {
	bottom: -2px;
	left: -2px;
	width: 2px;
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-run.btn:where(:hover, :focus) > u::before, .anime-border-run .btn:where(:hover, :focus) > u::before {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-run.btn:where(:hover, :focus) > u::after, .anime-border-run .btn:where(:hover, :focus) > u::after {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}

.anime-border-run.btn:where(:hover, :focus) > u > u::before, .anime-border-run .btn:where(:hover, :focus) > u > u::before {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}

.anime-border-run.btn:where(:hover, :focus) > u > u::after, .anime-border-run .btn:where(:hover, :focus) > u > u::after {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

.anime-border-run--radius.btn:where(:hover, :focus) > u::before,
.anime-border-run--radius .btn:where(:hover, :focus) > u::before {
	left: -1px;
	width: calc(100% + 2px);
}

.anime-border-run--radius.btn:where(:hover, :focus) > u::after,
.anime-border-run--radius .btn:where(:hover, :focus) > u::after {
	right: -1px;
	width: calc(100% + 2px);
}

.anime-border-run--radius.btn:where(:hover, :focus) > u > u::before,
.anime-border-run--radius .btn:where(:hover, :focus) > u > u::before {
	top: -1px;
	height: calc(100% + 2px);
}

.anime-border-run--radius.btn:where(:hover, :focus) > u > u::after,
.anime-border-run--radius .btn:where(:hover, :focus) > u > u::after {
	bottom: -1px;
	height: calc(100% + 2px);
}

/* 上下と左右でそれぞれ同時に枠線が走る (req: .btn > u > u) */
.anime-border-2-lane.btn > u::before, .anime-border-2-lane .btn > u::before {
	top: -2px;
	left: -2px;
	height: 2px;
}

.anime-border-2-lane.btn > u::after, .anime-border-2-lane .btn > u::after {
	bottom: -2px;
	left: -2px;
	height: 2px;
}

.anime-border-2-lane.btn > u > u::before, .anime-border-2-lane .btn > u > u::before {
	top: -2px;
	right: -2px;
	width: 2px;
}

.anime-border-2-lane.btn > u > u::after, .anime-border-2-lane .btn > u > u::after {
	top: -2px;
	left: -2px;
	width: 2px;
}

.anime-border-2-lane.btn:where(:hover, :focus) > u::before, .anime-border-2-lane .btn:where(:hover, :focus) > u::before {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-2-lane.btn:where(:hover, :focus) > u::after, .anime-border-2-lane .btn:where(:hover, :focus) > u::after {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-2-lane.btn:where(:hover, :focus) > u > u::before, .anime-border-2-lane .btn:where(:hover, :focus) > u > u::before {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}

.anime-border-2-lane.btn:where(:hover, :focus) > u > u::after, .anime-border-2-lane .btn:where(:hover, :focus) > u > u::after {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}

/* 外側から枠線をつける (req: .btn > u) */
.anime-border-in.btn > u::before, .anime-border-in .btn > u::before {
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: 3px solid #f00;
	background: none;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
	opacity: 0;
}

.anime-border-in.btn:where(:hover, :focus) > u::before, .anime-border-in .btn:where(:hover, :focus) > u::before {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	opacity: 1;
}

.anime-border-in.btn > u::after, .anime-border-in.btn > u > u::before, .anime-border-in.btn > u > u::after, .anime-border-in .btn > u::after, .anime-border-in .btn > u > u::before, .anime-border-in .btn > u > u::after {
	content: none;
}

/* パッシングのように光を放つ (req: .btn > u > u) */
.anime-border-flashing.btn > u::before, .anime-border-flashing .btn > u::before {
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: none;
	outline: 0 solid #f00;
	outline-offset: 2px;
}

.anime-border-flashing.btn:where(:hover, :focus) > u::before, .anime-border-flashing .btn:where(:hover, :focus) > u::before {
	outline-width: 2px;
	-webkit-animation: anime-outline-flashing 0.8s ease infinite;
	        animation: anime-outline-flashing 0.8s ease infinite;
}

.anime-border-flashing.btn > u::after, .anime-border-flashing.btn > u > u::before, .anime-border-flashing.btn > u > u::after, .anime-border-flashing .btn > u::after, .anime-border-flashing .btn > u > u::before, .anime-border-flashing .btn > u > u::after {
	content: none;
}

@-webkit-keyframes anime-outline-flashing {
	100% {
		outline-color: transparent;
		outline-offset: 12px;
	}
}

@keyframes anime-outline-flashing {
	100% {
		outline-color: transparent;
		outline-offset: 12px;
	}
}

/* 折りたたみ要素のアニメーション */
details.anime-details-slide-down,
.anime-details-slide-down details {
	overflow: hidden;
}

details.anime-details-slide-down[open] > :not(summary),
.anime-details-slide-down details[open] > :not(summary) {
	-webkit-animation: details-slide-down 0.4s ease-in-out;
	        animation: details-slide-down 0.4s ease-in-out;
}

@-webkit-keyframes details-slide-down {
	from {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
		opacity: 0;
		margin-bottom: -100px;
	}
	to {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 1;
		margin-bottom: 0;
	}
}

@keyframes details-slide-down {
	from {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
		opacity: 0;
		margin-bottom: -100px;
	}
	to {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 1;
		margin-bottom: 0;
	}
}

/* テキストの折り返し設定 */
.wrap,
.wrap2,
.wrap3 {
	word-break: keep-all !important;
}

.wrap .nowrap,
.wrap2 .nowrap,
.wrap3 .nowrap {
	display: inline-block;
}

.wrap wbr + .nowrap, .wrap .wbr + .nowrap, .wrap .nowrap:first-child,
.wrap2 wbr + .nowrap,
.wrap2 .wbr + .nowrap,
.wrap2 .nowrap:first-child,
.wrap3 wbr + .nowrap,
.wrap3 .wbr + .nowrap,
.wrap3 .nowrap:first-child {
	display: inline;
}

.wrap wbr, .wrap .wbr,
.wrap2 wbr,
.wrap2 .wbr,
.wrap3 wbr,
.wrap3 .wbr {
	display: inline-block;
}

a.wrap {
	display: inline-block;
}

.nowrap {
	white-space: nowrap;
}

.unwrap {
	word-break: normal !important;
	white-space: normal !important;
}

@media only screen and (max-width: 768px) {
	.wrap2,
	.unwrap_sp,
	html[lang="en"] .wrap {
		word-break: normal !important;
		white-space: normal !important;
	}
	.wrap2 .nowrap,
	.unwrap_sp .nowrap,
	html[lang="en"] .wrap .nowrap {
		display: inline !important;
		white-space: normal !important;
	}
}

@media only screen and (max-width: 543px) {
	.wrap3,
	.unwrap_mini {
		word-break: normal !important;
		white-space: normal !important;
	}
	.wrap3 .nowrap,
	.unwrap_mini .nowrap {
		display: inline !important;
		white-space: normal !important;
	}
}

@media (max-width: 1199px) {
	.unwrap_tab {
		word-break: normal !important;
		white-space: normal !important;
	}
	.unwrap_tab .nowrap {
		display: inline !important;
		white-space: normal !important;
	}
}

/* 注意・注釈 */
#custom .m-note {
	display: block;
	margin: 0.75rem 0;
	padding-left: 1.3em;
	text-indent: -1.3em;
	text-align: left;
	font-size: 0.875em;
}

#custom .m-note:last-child {
	margin-bottom: 0 !important;
}

#custom .m-note--center {
	display: table;
	margin-left: auto !important;
	margin-right: auto !important;
}

#custom .m-note--left {
	display: table;
	margin-right: auto !important;
}

#custom .m-note--right {
	display: table;
	margin-left: auto !important;
}

#custom .m-note--num {
	padding-left: 1.85em;
	text-indent: -1.85em;
}

#custom .m-note--normal {
	font-size: 100%;
}

#custom .m-note small {
	font-size: 100%;
}

#custom .m-note .small {
	font-size: 0.858em;
}

#custom .m-note small.small {
	display: block;
	line-height: 1.5;
}

#custom .m-note + .m-note {
	margin-top: 1em;
}

#custom .m-note li + li {
	margin-top: 0.3em;
}

#custom .m-note--inline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 0 3.3em;
}

#custom .m-note--inline li + li {
	margin-top: 0;
}

#custom .image .m-note--on-image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 16px 8px 2.4em;
}

#custom .image .m-note--left {
	right: auto !important;
}

#custom .image .m-note--right {
	left: auto !important;
}

/* 丸型チェックマーク付きのリスト */
#custom .m-list--check-circle {
	font-weight: bold;
}

#custom .m-list--check-circle em {
	color: #f00;
}

#custom .m-list--check-circle > :is(li, dt)::before {
	background-image: url("../../../images/asset/common/ico/ico-check-circle.svg");
	top: 0.8em;
	-webkit-transform: translateY(-13px);
	    -ms-transform: translateY(-13px);
	        transform: translateY(-13px);
}

/* 画像リスト */
#custom .images a {
	display: block;
	overflow: hidden;
	opacity: 1;
}

#custom .images a img {
	opacity: 1;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
}

#custom .images a[href]:hover img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	opacity: 1;
}

@media (max-width: 1199px) {
	#custom .images a img {
		max-width: 100%;
		height: auto;
	}
}

#custom .img-fit {
	-o-object-fit: cover;
	   object-fit: cover;
}

#custom .img-fit-center {
	-o-object-position: center center !important;
	   object-position: center center !important;
}

#custom .img-fit-top {
	-o-object-position: center top !important;
	   object-position: center top !important;
}

#custom .img-fit-bottom {
	-o-object-position: center bottom !important;
	   object-position: center bottom !important;
}

#custom .img-fit-left {
	-o-object-position: left center !important;
	   object-position: left center !important;
}

#custom .img-fit-right {
	-o-object-position: right center !important;
	   object-position: right center !important;
}

#custom .img-fit-1-3 {
	-o-object-position: 33.3% center !important;
	   object-position: 33.3% center !important;
}

#custom .img-fit-2-3 {
	-o-object-position: 66.7% center !important;
	   object-position: 66.7% center !important;
}

#custom .img-fit-1-4 {
	-o-object-position: 25% center !important;
	   object-position: 25% center !important;
}

#custom .img-fit-3-4 {
	-o-object-position: 75% center !important;
	   object-position: 75% center !important;
}

#custom .img-fit-left-top {
	-o-object-position: left top !important;
	   object-position: left top !important;
}

#custom .img-fit-left-bottom {
	-o-object-position: left bottom !important;
	   object-position: left bottom !important;
}

#custom .img-fit-right-top {
	-o-object-position: right top !important;
	   object-position: right top !important;
}

#custom .img-fit-right-bottom {
	-o-object-position: right bottom !important;
	   object-position: right bottom !important;
}

@media only screen and (max-width: 768px) {
	#custom .img-fit-sp {
		-o-object-fit: cover;
		   object-fit: cover;
	}
	#custom .img-fit-sp-center {
		-o-object-position: center center !important;
		   object-position: center center !important;
	}
	#custom .img-fit-sp-top {
		-o-object-position: center top !important;
		   object-position: center top !important;
	}
	#custom .img-fit-sp-bottom {
		-o-object-position: center bottom !important;
		   object-position: center bottom !important;
	}
	#custom .img-fit-sp-left {
		-o-object-position: left center !important;
		   object-position: left center !important;
	}
	#custom .img-fit-sp-right {
		-o-object-position: right center !important;
		   object-position: right center !important;
	}
	#custom .img-fit-sp-1-3 {
		-o-object-position: 33.3% center !important;
		   object-position: 33.3% center !important;
	}
	#custom .img-fit-sp-2-3 {
		-o-object-position: 66.7% center !important;
		   object-position: 66.7% center !important;
	}
	#custom .img-fit-sp-1-4 {
		-o-object-position: 25% center !important;
		   object-position: 25% center !important;
	}
	#custom .img-fit-sp-3-4 {
		-o-object-position: 75% center !important;
		   object-position: 75% center !important;
	}
	#custom .img-fit-sp-left-top {
		-o-object-position: left top !important;
		   object-position: left top !important;
	}
	#custom .img-fit-sp-left-bottom {
		-o-object-position: left bottom !important;
		   object-position: left bottom !important;
	}
	#custom .img-fit-sp-right-top {
		-o-object-position: right top !important;
		   object-position: right top !important;
	}
	#custom .img-fit-sp-right-bottom {
		-o-object-position: right bottom !important;
		   object-position: right bottom !important;
	}
}

#custom .image {
	position: relative;
}

#custom video {
	-webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
	        filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

#custom .to-video {
	position: relative;
}

#custom .to-video::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: url("../../../images/asset/common/ico/ico-play-white.svg") no-repeat center;
	background-size: contain;
	width: 64px;
	height: 64px;
	margin-top: -32px;
	margin-left: -32px;
	z-index: 2;
	left: 50%;
	border-radius: 50%;
	background-color: #f00;
	background-size: 26px;
}

#custom .to-video--small::after {
	width: 36px;
	height: 36px;
	margin-top: -18px;
	margin-left: -18px;
	background-size: 14px;
}

@media (min-width: 1025px) {
	#custom .to-video--large::after {
		width: 120px;
		height: 120px;
		margin-top: -60px;
		margin-left: -60px;
		background-size: 48px;
	}
}

@media (min-width: 544px) {
	#custom .to-video--large::after {
		width: 90px;
		height: 90px;
		margin-top: -45px;
		margin-left: -45px;
		background-size: 36px;
	}
}

#custom .to-video--controls {
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 1;
}

#custom .to-video--controls.is-playing {
	opacity: 0;
	z-index: -1;
}

#custom .image-inline {
	position: relative;
	display: inline-block;
	height: 1em;
	vertical-align: baseline;
	overflow: visible;
}

#custom .image-inline img {
	float: left;
	position: relative;
	-webkit-transform: translateY(calc(-50% + 0.5em));
	    -ms-transform: translateY(calc(-50% + 0.5em));
	        transform: translateY(calc(-50% + 0.5em));
}

/*------------------------------------------------
	BTOS > section
------------------------------------------------*/
/* [section] ナビゲーション / 背景付ナビゲーション */
#custom .m-section--nav {
	padding: 100px 0;
	text-align: center;
	background: #F5F5F5 no-repeat center top;
	background-size: cover;
	color: #333;
}

#custom .m-section--bgnav {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	min-height: 460px;
	padding: 50px 0 55px;
	background: #000 no-repeat center center;
	background-size: cover;
	color: #fff;
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .m-section--bgnav {
		min-height: 500px;
		height: 133.3334vh;
		height: auto;
	}
}

#custom .m-section--bgnav a {
	color: #fff;
}

#custom .m-section--bgnav .btn-outline-primary,
#custom .m-section--bgnav .btn-outline-secondary {
	border-color: transparent;
	color: #333;
}

#custom .m-section--nav h2,
#custom .m-section--nav .m-section__heading, #custom .m-section--bgnav h2,
#custom .m-section--bgnav .m-section__heading {
	font-size: 1.563rem;
	margin: 0 auto 0.9em;
}

@media only screen and (max-width: 768px) {
	#custom .m-section--nav h2,
	#custom .m-section--nav .m-section__heading, #custom .m-section--bgnav h2,
	#custom .m-section--bgnav .m-section__heading {
		margin-bottom: 0.5em;
	}
}

#custom .m-section--nav .m-btnArea,
#custom .m-section--nav .m-section__nav, #custom .m-section--bgnav .m-btnArea,
#custom .m-section--bgnav .m-section__nav {
	margin-top: 1.875rem;
}

#custom .m-section--left-nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: left;
	background: #fff no-repeat center center;
	background-size: cover;
	color: #333;
}

#custom .m-section--left-nav .container-wrapper {
	position: relative;
	padding-right: 50%;
}

@media only screen and (max-width: 768px) {
	#custom .m-section--left-nav .container-wrapper {
		padding-right: 0;
	}
}

#custom .m-section--left-nav h2 {
	margin-bottom: 30px;
	text-align: left;
	font-size: 1.875rem;
}

@media (max-width: 1024px) {
	#custom .m-section--left-nav h2 {
		font-size: 1.563rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-section--left-nav h2 {
		margin-bottom: 20px;
		text-align: center;
		font-size: 1.313rem;
	}
}

#custom .m-section--left-nav .m-list {
	font-size: 1.375rem;
}

@media (max-width: 1024px) {
	#custom .m-section--left-nav .m-list {
		font-size: 1.188rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-section--left-nav .m-list {
		display: table;
		margin: 0 auto 20px;
		font-size: 1.063rem;
	}
}

#custom .m-section--left-nav .m-list li + li {
	margin-top: 13px;
}

#custom .m-section--left-nav .m-btnArea {
	margin-left: 0;
}

@media only screen and (max-width: 768px) {
	#custom .m-section--left-nav .m-btnArea {
		margin-left: auto;
	}
}

#custom .m-section--left-nav .m-note {
	margin-top: 16px;
}

@media only screen and (max-width: 768px) {
	#custom .m-section--left-nav .m-note {
		margin-top: 20px;
		text-align: center;
	}
}

/* ボタンの種類 */
#maincontent .btn {
	padding: 8.5px 21px 7.5px;
}

#maincontent .btn-outline-primary {
	border-color: #333;
}

#maincontent .btn.icon-arrow-right {
	padding: 8.5px 39px 7.5px 21px;
}

#maincontent .btn.icon-arrow-right::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow.svg");
	width: 9px;
	height: 15px;
	right: 19px;
}

#maincontent .btn.btn-primary {
	border: 2px solid #f00;
	border: 2px solid transparent;
}

#maincontent .btn.btn-primary:where(:hover, :focus) {
	border-color: #fff;
	background-color: #fff;
	color: #333;
	color: #f00;
}

#maincontent .btn.btn-black {
	background-color: #000;
	color: #fff;
}

#maincontent .btn.btn-gray {
	background-color: #666;
	color: #fff;
}

#maincontent .btn.btn-black:where(:hover, :focus), #maincontent .btn.btn-gray:where(:hover, :focus) {
	background-color: #333;
	border-color: #999;
	opacity: 1;
}

/* ボタンのアイコン */
#maincontent .btn.icon-arrow-right.icon-arrow-white::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow-white.svg");
}

#maincontent .btn.icon-arrow-right.icon-arrow-gray::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow-gray.svg");
}

#maincontent .btn.icon-arrow-right:is(.btn-primary, .btn-outline-primary):where(:hover, :focus, .is-active)::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow.svg");
}

#maincontent .btn.icon-modal-open::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: url("../../../images/asset/common/ico/ico-modal-open.svg") no-repeat center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	right: 14px;
}

#maincontent .btn.icon-modal-open--white::after {
	background-image: url("../../../images/asset/common/ico/ico-modal-open-white.svg");
}

#maincontent .btn.icon-plus::after {
	background-image: url("../../../images/asset/common/ico/ico-plus.svg");
	width: 16px;
	height: 16px;
	right: 16px;
}

#maincontent .btn.icon-plus--white::after {
	background-image: url("../../../images/asset/common/ico/ico-plus-white.svg");
}

#maincontent .btn.icon-help::after {
	background-image: url("../../../images/asset/common/ico/ico-help.svg");
	width: 20px;
	height: 20px;
}

#maincontent .btn.icon-help--white::after {
	background-image: url("../../../images/asset/common/ico/ico-help-white.svg");
}

#maincontent .m-btnArea {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	max-width: 344px;
}

#maincontent .m-btnArea .btn {
	max-width: 344px;
	font-weight: bold;
	font-size: 0.875rem;
}

#maincontent .m-btnArea:has(.anime-border-run), #maincontent .m-btnArea:has(.anime-border-run-4) {
	overflow: hidden;
	border-radius: 3px;
}

/* 左右ループ */
@-webkit-keyframes btn-icon-right {
	0%, 100% {
		right: 20px;
	}
	50% {
		right: 16px;
	}
}
@keyframes btn-icon-right {
	0%, 100% {
		right: 20px;
	}
	50% {
		right: 16px;
	}
}

/* 右＋フェードアウトループ */
@-webkit-keyframes btn-icon-right-fadeout {
	0% {
		right: 20px;
		opacity: 1;
	}
	99.9% {
		right: 10px;
		opacity: 0;
	}
	100% {
		right: 20px;
		opacity: 0;
	}
}
@keyframes btn-icon-right-fadeout {
	0% {
		right: 20px;
		opacity: 1;
	}
	99.9% {
		right: 10px;
		opacity: 0;
	}
	100% {
		right: 20px;
		opacity: 0;
	}
}

/* テキストリンク */
#maincontent .m-textlink::after {
	position: relative;
	top: -1px;
	min-width: 9px;
	min-height: 15px;
	background-image: url("../../../images/asset/common/ico/ico-arrow.svg");
}

#maincontent .icon-arrow-white.m-textlink::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow-white.svg");
}

#maincontent .icon-arrow-gray.m-textlink::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow-gray.svg");
}

#maincontent .m-textlink-normal {
	font-weight: normal;
	text-decoration: underline;
}

#maincontent .m-textlink-normal:hover, #maincontent .m-textlink-normal:focus {
	text-decoration: none;
}

#maincontent .m-textlink.icon-help::after {
	background-image: url("../../../images/asset/common/ico/ico-help.svg");
	width: 20px;
	height: 20px;
}

#maincontent .m-textlink.icon-help--white::after {
	background-image: url("../../../images/asset/common/ico/ico-help-white.svg");
}

/*------------------------------------------------
	.container 上下にセクションの区切り線を表示
------------------------------------------------*/
#custom .container--border::before {
	content: "";
	display: block;
	padding-top: 40px;
	border-top: 1px solid #CCC;
}

@media only screen and (max-width: 768px) {
	#custom .container--border::before {
		padding-top: 30px;
	}
}

#custom .container--border-bottom::after {
	content: "";
	display: block;
	padding-bottom: 40px;
	border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 768px) {
	#custom .container--border-bottom::after {
		padding-bottom: 30px;
	}
}

/*------------------------------------------------
	BTOS > ページ内目次 (2025-09 更新)
------------------------------------------------*/
#custom #toc,
#custom .toc {
	position: -webkit-sticky;
	position: sticky;
	z-index: 800;
	height: 0;
	top: 4.5rem;
	margin-bottom: 92px;
	text-align: center;
	-webkit-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
}

@media (max-width: 1024px) {
	#custom #toc,
	#custom .toc {
		top: 61px;
		margin-bottom: 53px;
		margin-bottom: calc(1.5rem + 29px);
	}
}

@media only screen and (max-width: 768px) {
	#custom #toc,
	#custom .toc {
		margin-bottom: 49.4px;
		margin-bottom: calc(3.026rem + 1px);
	}
}

@media only screen and (max-width: 768px) {
	#custom #toc {
		position: static;
		z-index: auto;
		top: 0;
		margin-bottom: 0;
		height: auto;
		min-height: 148.2px;
		min-height: calc(9.078rem + 3px);
	}
}

#custom .toc > .wrapper {
	border: 1px solid #fff;
	border-width: 1px 0;
	background: #fff;
	-webkit-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
	-webkit-transition-property: top, height, color, background-color;
	transition-property: top, height, color, background-color;
}

@media only screen and (max-width: 768px) {
	#custom .toc > .wrapper {
		border-width: 0 0 1px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .toc .container {
		padding: 0;
	}
}

#custom .toc ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 12px;
	-webkit-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}

@media only screen and (max-width: 768px) {
	#custom .toc ul {
		gap: 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .toc ul > li {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
}

#custom .toc ul :is(a, button) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	gap: 0 4px;
	position: relative;
	height: 100%;
	min-height: 90px;
	padding: 14px 26px 13px;
	font-size: 0.938rem;
	font-weight: bold;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	transition-property: opacity, color, background-color, border-color, outline-color, transform, -webkit-transform, padding, height, min-height, font-size, line-height;
}

@media (max-width: 1109px) {
	#custom .toc ul :is(a, button) {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (max-width: 1024px) {
	#custom .toc ul :is(a, button) {
		min-height: 3.125rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .toc ul :is(a, button) {
		min-height: 0;
		padding: 0.813rem 13px;
		font-size: 0.875rem;
	}
}

:where(.scrolled-header, .scrolled-toc) #custom .toc ul :is(a, button) {
	font-weight: normal;
}

:where(.scrolled-header, .scrolled-toc) #custom .toc ul :is(a, button).is-active {
	font-weight: bold;
}

@media (min-width: 769px) {
	.scrolled-header #custom .toc ul :is(a, button) {
		min-height: 0;
		padding-top: 7px;
		padding-bottom: 7px;
		font-size: 0.875rem;
	}
}

#custom .toc ul :is(a, button)::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0;
	border-bottom: 3px solid transparent;
	-webkit-transition: border-color 0.2s ease-out;
	transition: border-color 0.2s ease-out;
}

@media only screen and (max-width: 768px) {
	#custom .toc ul :is(a, button)::before {
		border-bottom-width: 4px;
	}
}

#custom .toc ul :is(a, button).is-active::before {
	border-bottom-color: #f00;
}

/**
 ▼画像のあるページで、下方スクロールした後にページトップに戻ったとき、
   稀に固定ヘッダーの下に 1px 分の高さでノイズが走る場合があることへの対応
   （※ブラウザにもよる。Windows+Chromeで確認）
*/
#custom .js-site-header {
	-webkit-box-shadow: 0 0 1px transparent;
	        box-shadow: 0 0 1px transparent;
}

/*------------------------------------------------
	スクロール用
------------------------------------------------*/
html {
	scroll-padding-top: 204px;
}

/*------------------------------------------------
	BTOS > LP > ブランド一覧
------------------------------------------------*/
/* メインコンテンツ内のコンテンツ部分 */
#custom .p-brand {
	position: relative;
	padding: 0;
	margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand {
		margin-bottom: 30px;
	}
}

#custom .p-brand .m-breadcrumb {
	margin-bottom: 12px;
}

#custom .p-brand .m-note {
	margin-top: 40px;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand .m-note {
		margin-top: 32px;
		text-align: left;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > メインヘッダー (2025-09)
------------------------------------------------*/
#custom .main-header {
	position: -webkit-sticky;
	position: sticky;
	top: 61px;
	height: 0;
	margin-bottom: calc(36px + 1.5rem + 2px);
	z-index: 820;
	-webkit-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
	-webkit-transition-property: top;
	transition-property: top;
}

@media (min-width: 1025px) {
	#custom .main-header {
		top: 104px;
		top: calc(60px + 28px + 1rem);
	}
	.scrolled #custom .main-header {
		top: 4.5rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .main-header {
		margin-bottom: calc(3.25rem + 2px);
	}
}

#custom .main-header-nav {
	background: #fff;
}

#custom .main-header-nav .nav-tabs {
	border-bottom: 2px solid #f00;
}

@media only screen and (max-width: 768px) {
	#custom .main-header-nav .nav-tabs {
		min-height: calc(3.25rem + 2px);
	}
}

#custom .main-header-nav .nav-item {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

#custom .main-header-nav .nav-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	height: 100%;
	padding: 18px;
	border-radius: 0;
	font-size: 0.938rem;
	line-height: 1.6;
	font-weight: bold;
	background: #fff;
	color: #333;
}

.scrolled #custom .main-header-nav .nav-link {
	padding: 0.5rem 18px;
}

@media only screen and (max-width: 768px) {
	#custom .main-header-nav .nav-link {
		padding: 0.4em 7px !important;
		font-size: 0.875rem;
		line-height: 1.4285714286;
	}
}

#custom .main-header-nav .nav-link.is-active {
	background: #f00;
	color: #fff;
}

/*------------------------------------------------
	BTOS > ブランド一覧 > 目次 (2025-09)
------------------------------------------------*/
#custom .p-brand .toc {
	top: 7rem;
	background: #fff;
}

#custom .p-brand .toc > .wrapper {
	border-bottom: 1px solid #CCC;
}

@media (max-width: 1024px) {
	#custom .p-brand .toc {
		top: 123px;
		top: calc(63px + 2.5rem);
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-brand .toc {
		top: 115px;
		top: calc(63px + 3.25rem);
	}
	#custom .p-brand .toc > .wrapper {
		border-color: #e6e6e6;
		background: #fff;
		-webkit-transition: -webkit-transform 0.2s ease-out;
		transition: -webkit-transform 0.2s ease-out;
		transition: transform 0.2s ease-out;
		transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	}
}

@media (min-width: 1025px) {
	#custom .p-brand .toc ul :is(a, button) {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-brand .toc ul :is(a, button) {
		padding: 0.813rem 10px;
	}
}

@media (min-width: 769px) {
	.scrolled #custom .p-brand .toc ul :is(a, button) {
		min-height: 0;
		padding-top: 7px;
		padding-bottom: 7px;
		font-size: 0.875rem;
	}
}

@media only screen and (max-width: 543px) {
	.scrolled #custom .p-brand .toc ul :is(a, button) {
		padding: 8px 10px 7px;
	}
}

#custom .p-brand .toc ul :is(a, button).is-active path {
	fill: rgba(255, 0, 0, 0.4);
}

@media only screen and (max-width: 543px) {
	#custom .p-brand .p-cartype-toc {
		margin-bottom: 76px;
		margin-bottom: calc(1.401rem + 52px);
	}
	#custom .p-brand .p-cartype-toc ul :is(a, button) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 15px 10px 10px;
		border: 0;
	}
	.scrolled #custom .p-brand .p-cartype-toc ul :is(a, button) {
		padding: 8px 10px 7px;
	}
	#custom .p-brand .p-cartype-toc ul :is(a, button) svg {
		max-height: 20px;
		margin-bottom: 6px;
		-webkit-transition: opacity 0.2s ease-out;
		transition: opacity 0.2s ease-out;
		-webkit-transition-property: opacity, height, margin-bottom;
		transition-property: opacity, height, margin-bottom;
	}
	.scrolled #custom .p-brand .p-cartype-toc ul :is(a, button) svg {
		opacity: 0;
		height: 0;
		margin-bottom: 0;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > セクション (2025-09)
------------------------------------------------*/
#custom .p-brand-section {
	margin-top: 40px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-section {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

#custom .p-brand-section:last-child {
	margin-bottom: 0;
}

#custom .p-brand .toc + .p-brand-section {
	margin-top: 0;
	padding-top: 40px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand .toc + .p-brand-section {
		padding-top: 30px;
	}
}

#custom .p-brand-subsection {
	margin: 40px 0;
	padding: 0;
}

#custom .p-brand-subsection:last-child {
	margin-bottom: 0;
}

#custom .p-brand h2, #custom .p-brand .h2 {
	margin-bottom: 2.25rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand h2, #custom .p-brand .h2 {
		margin-bottom: 1.875rem;
	}
}

#custom .p-brand h3:not(.h2) {
	font-size: 1.313rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand h3:not(.h2) {
		font-size: 1rem;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > タブ出し分け (2025-09)
------------------------------------------------*/
#custom .p-brand-details-heading {
	padding-top: 40px;
}

#custom .p-brand-details-heading, #custom .p-brand-details-heading.h2 {
	margin-bottom: 1.5rem;
}

#custom .p-brand-details:not([open]) > summary {
	display: none;
}

/*------------------------------------------------
	BTOS > ブランド一覧 > アイテムグループ
------------------------------------------------*/
#custom .p-brand-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 40px 24px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		gap: 18px;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > 各ブランドのアイテム
------------------------------------------------*/
#custom .p-brand-item {
	position: relative;
	-ms-flex-preferred-size: calc(100% / 2 - 24px * 1/2);
	    flex-basis: calc(100% / 2 - 24px * 1/2);
	background: #000;
	color: #fff;
	-webkit-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}

#custom .p-brand-item--wheel {
	-ms-flex-preferred-size: calc(100% / 3 - 24px * 2/3);
	    flex-basis: calc(100% / 3 - 24px * 2/3);
}

@media (min-width: 769px) {
	#custom .p-brand-item--tire[data-order="1"] {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item {
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
}

#custom .p-brand-item[data-order="1"] {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}

#custom .p-brand-item[data-order="2"] {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}

#custom .p-brand-item[data-order="3"] {
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}

#custom .p-brand-item[data-order="4"] {
	-webkit-box-ordinal-group: 5;
	    -ms-flex-order: 4;
	        order: 4;
}

#custom .p-brand-item[data-order="5"] {
	-webkit-box-ordinal-group: 6;
	    -ms-flex-order: 5;
	        order: 5;
}

#custom .p-brand-item[data-order="6"] {
	-webkit-box-ordinal-group: 7;
	    -ms-flex-order: 6;
	        order: 6;
}

#custom .p-brand-item[data-order="7"] {
	-webkit-box-ordinal-group: 8;
	    -ms-flex-order: 7;
	        order: 7;
}

#custom .p-brand-item[data-order="8"] {
	-webkit-box-ordinal-group: 9;
	    -ms-flex-order: 8;
	        order: 8;
}

#custom .p-brand-item[data-order="9"] {
	-webkit-box-ordinal-group: 10;
	    -ms-flex-order: 9;
	        order: 9;
}

#custom .p-brand-item[data-order="10"] {
	-webkit-box-ordinal-group: 11;
	    -ms-flex-order: 10;
	        order: 10;
}

#custom .p-brand-item > dt {
	margin: 0;
	color: inherit;
}

#custom .p-brand-item .link {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	color: #fff !important;
	opacity: 1;
}

#custom .p-brand-item .link .titles {
	display: block;
	position: absolute;
	z-index: 4;
	bottom: 50%;
	bottom: calc(50% + 62px/2);
	left: 0;
	right: 0;
	-webkit-transform: translateY(50%);
	    -ms-transform: translateY(50%);
	        transform: translateY(50%);
	font-weight: bold;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item .link .titles {
		bottom: calc(50% + 62px/2 + -20px/2);
	}
}

#custom .p-brand-item .link small {
	display: block;
	margin-bottom: 12px;
	font-size: 0.938rem;
	color: inherit;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item .link small {
		margin-bottom: 8px;
		font-size: 0.875rem;
	}
}

#custom .p-brand-item .link .logo {
	width: 100%;
	max-width: 344px;
	max-height: 33px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item .link .logo {
		max-width: 345px;
	}
}

#custom .p-brand-item .link .logo--full {
	max-width: none;
	max-height: none;
	height: auto;
}

@media only screen and (max-width: 543px) {
	#custom .p-brand-item .link .logo--sp-full {
		max-width: none;
		max-height: none;
		height: auto;
	}
}

#custom .p-brand-item .link .title {
	font-size: 1.75rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item .link .title {
		font-size: 1.5rem;
	}
}

#custom .p-brand-item .link .title:has(br) {
	font-size: 1.688rem;
}

@media only screen and (max-width: 543px) {
	#custom .p-brand-item .link .title:has(br) {
		font-size: 1.375rem;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-item--tire[data-order="1"] .link small {
		margin-bottom: 12px;
	}
	#custom .p-brand-item--tire[data-order="1"] .link .logo {
		max-width: 528px;
		max-height: 50px;
	}
}

#custom .p-brand-item--wheel .link small {
	font-size: 1.063rem;
}

@media (max-width: 1024px) {
	#custom .p-brand-item--wheel .link small {
		font-size: 0.875rem;
	}
}

#custom .p-brand-item--wheel .link .logo {
	max-height: 30px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item--oetire .link .titles {
		bottom: calc(50% + 62px/2 - 4px/2);
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-brand-item--sped-regno-dueler .link .titles {
		bottom: calc(50% + 62px/2);
	}
}

#custom .p-brand-item > .summary {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 62px;
	margin: 0;
	padding: 5px 10px;
	font-size: 1rem;
	line-height: 1.5;
	text-align: center;
	background: rgba(96, 96, 96, 0.8);
	color: inherit;
}

@media (max-width: 1024px) {
	#custom .p-brand-item > .summary {
		padding: 6px 12px;
		font-size: 0.938rem;
	}
}

#custom .p-brand-item--black > .summary {
	background-color: rgba(0, 0, 0, 0.8);
}

#custom .p-brand-item--basic > .summary {
	background-color: rgba(153, 153, 153, 0.8);
}

#custom .p-brand-item--chronicle > .summary {
	background-color: rgba(20, 20, 20, 0.8);
}

#custom .p-brand-item--playz > .summary {
	background-color: rgba(0, 161, 222, 0.8);
}

#custom .p-brand-item--regno > .summary {
	background-color: rgba(9, 35, 78, 0.8);
}

#custom .p-brand-item--ecopia > .summary {
	background-color: rgba(107, 180, 42, 0.8);
}

#custom .p-brand-item--potenza > .summary {
	background-color: rgba(0, 0, 0, 0.8);
}

#custom .p-brand-item--alenza > .summary {
	background-color: rgba(70, 45, 37, 0.8);
}

#custom .p-brand-item--dueler > .summary {
	background-color: rgba(0, 143, 140, 0.8);
}

#custom .p-brand-item--blizzak > .summary {
	background-color: rgba(230, 0, 18, 0.8);
}

#custom .p-brand-item--sped-regno-dueler > .summary {
	background-color: rgba(0, 0, 0, 0.8);
}

#custom .p-brand-item--wheel > .summary {
	background-color: rgba(0, 0, 0, 0.7);
}

#custom .p-brand-item > .background {
	position: relative;
	overflow: hidden;
	padding-bottom: 47.3484848485%;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item > .background {
		padding-bottom: 52.1739130435%;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-item--wheel > .background {
		padding-bottom: 72.6744186047%;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-item--tire[data-order="1"] > .background {
		padding-bottom: 41.6666666667%;
	}
}

#custom .p-brand-item > .background img {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
}

#custom .p-brand-item:hover > .background img, #custom .p-brand-item:focus-within > .background img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

#custom .p-brand-item > .only {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	padding: 16px;
	text-align: center;
	font-size: 0.75rem;
}

@media (max-width: 1024px) {
	#custom .p-brand-item > .only {
		padding: 12px;
	}
}

#custom .p-brand-item > .only img {
	max-width: 84px;
	height: auto;
}

@media (max-width: 1024px) {
	#custom .p-brand-item > .only img {
		max-width: 58px;
	}
}

#custom .p-brand-item > .only small {
	display: block;
	margin-top: 4px;
	font-size: 0.5rem;
}

@media (max-width: 1024px) {
	#custom .p-brand-item > .only small {
		margin-top: 3px;
		font-size: 0.375rem;
	}
}

#custom .p-brand-item--tire.is-sorting::before {
	content: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	min-width: calc(8em + 32px);
	padding: 12px 16px;
	font-size: 1.063rem;
	line-height: 1.55;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	background: #000;
	color: #fff;
	-webkit-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item--tire.is-sorting::before {
		min-width: calc(8em + 24px);
		padding: 5px 12px;
		font-size: 0.75rem;
	}
}

#custom .p-brand-item--tire.is-sorting[data-order="1"]::before {
	content: attr(data-match-1);
	background: -webkit-linear-gradient(334deg, #FFE893 19.22%, #886B00 99.1%);
	background: linear-gradient(116deg, #FFE893 19.22%, #886B00 99.1%);
}

#custom .p-brand-item--tire.is-sorting[data-order="2"]::before {
	content: attr(data-match-2);
	background: -webkit-linear-gradient(347deg, #DCDCDC -3.14%, #ACACAC 38.69%, #9E9E9E 84.92%);
	background: linear-gradient(103deg, #DCDCDC -3.14%, #ACACAC 38.69%, #9E9E9E 84.92%);
}

#custom .p-brand-item--tire.is-sorting[data-order="3"]::before {
	content: attr(data-match-3);
	background: -webkit-linear-gradient(334deg, #E39C55 14.9%, #7D562F 104.67%);
	background: linear-gradient(116deg, #E39C55 14.9%, #7D562F 104.67%);
}

.debug #custom .p-brand-item[data-value]::after {
	content: attr(data-value);
	display: block;
	position: absolute;
	z-index: 10;
	top: -0.5em;
	right: -0.5em;
	min-width: 2em;
	height: 2em;
	line-height: 1;
	padding: 0.5em;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: bold;
	background: #333;
	color: #fff;
	text-align: center;
}

/*------------------------------------------------
	BTOS > ブランド一覧 > 並び替えフォーム
------------------------------------------------*/
#custom .p-brand-form {
	margin-bottom: 36px;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-form {
		margin-bottom: 36px;
	}
}

#custom .p-brand-form legend {
	margin-bottom: 1.25rem;
	font-size: 1.063rem;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-form legend {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
}

#custom .p-brand-form .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 8px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-form .grid {
		gap: 6px 5px;
		max-width: 410px;
		max-width: calc(4.5rem * 4 + 10px * 4 + 5px * 4);
		margin: 0 auto;
	}
}

#custom .p-brand-form .grid li {
	position: relative;
	-ms-flex-preferred-size: 82px;
	    flex-basis: 82px;
	max-width: calc(12.5% - 7px);
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-form .grid li {
		max-width: calc(25% - 4px);
	}
}

#custom .p-brand-form .grid input {
	display: none;
	position: absolute;
	z-index: 2;
	left: -6px;
	top: -6px;
}

.debug #custom .p-brand-form .grid input {
	display: inline-block;
}

#custom .p-brand-form .grid input:checked ~ label {
	border-color: #f00 !important;
}

#custom .p-brand-form-label {
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 66px;
	padding: 4px 4px 6px;
	border-radius: 3px;
	border: 1px solid #ccc;
	font-size: 0.75rem;
	text-align: center;
	-webkit-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	-webkit-transition-property: opacity, border-color;
	transition-property: opacity, border-color;
	opacity: 1;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

@media only screen and (max-width: 543px) {
	#custom .p-brand-form-label {
		min-height: 56px;
		height: 100%;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-brand-form-label {
		font-size: 0.688rem;
	}
}

#custom .p-brand-form-label:hover:not(:focus) {
	border-color: #f00;
	opacity: 0.7;
}

#custom .p-brand-form-label > span {
	display: block;
	margin-bottom: 3px;
	white-space: nowrap;
}

@media only screen and (max-width: 543px) {
	#custom .p-brand-form-label > span {
		white-space: normal;
	}
}

#custom .p-brand-form-label::after {
	display: block;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 32px;
	height: 32px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-form-label::after {
		width: 24px;
		height: 24px;
	}
}

#custom .p-brand-form-label--fuel::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-fuel.svg");
}

#custom .p-brand-form-label--stability::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-stability.svg");
}

#custom .p-brand-form-label--dry::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-dry.svg");
}

#custom .p-brand-form-label--wet::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-wet.svg");
}

#custom .p-brand-form-label--quiet::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-quiet.svg");
}

#custom .p-brand-form-label--comfort::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-comfort.svg");
}

#custom .p-brand-form-label--life::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-life.svg");
}

#custom .p-brand-form-label--cost::after {
	background-image: url("../../../images/asset/lp/brand/icon/icon-perf-cost.svg");
}

/*------------------------------------------------
	BTOS > ブランド一覧 > おすすめタイヤナビ (2025-09)
------------------------------------------------*/
#custom .p-brand-nav-cartype .container-wrapper {
	padding: 29px 42% 28px 8.5%;
	border: 1px solid transparent;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-nav-cartype .container-wrapper {
		margin: 0 -15px;
		padding: 32px 15px 30px;
		border: 0;
	}
}

#custom .p-brand-nav-cartype-wrapper {
	background: #EEF5FD no-repeat 84% center;
	background-image: url("../../../images/asset/lp/brand/brand/bg-brand-nav-cartype.jpg");
	background-size: cover;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-nav-cartype-wrapper {
		background-image: url("../../../images/asset/lp/brand/brand/bg-brand-nav-cartype-sp.jpg");
		background-position: center 93%;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-nav-cartype-wrapper::before {
		content: "";
		display: block;
		position: absolute;
		z-index: auto;
		max-height: 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		right: 57.5%;
		right: calc(50% + 80px);
		background: -webkit-gradient(linear, right top, left top, from(#686D7000), color-stop(51.5%, #686D701D));
		background: -webkit-linear-gradient(right, #686D7000 0%, #686D701D 51.5%);
		background: linear-gradient(270deg, #686D7000 0%, #686D701D 51.5%);
	}
}

#custom .p-brand-nav-cartype h2 {
	margin-bottom: 8px;
	line-height: 1.5;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-nav-cartype h2 {
		margin: 0 -4px 16px;
	}
}

#custom .p-brand-nav-cartype .m-list li + li {
	margin-top: 8px;
}

#custom .p-brand-nav-cartype .navi {
	margin-top: 16px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-nav-cartype .navi {
		margin-top: 155px;
	}
	.debug #custom .p-brand-nav-cartype .navi {
		margin-top: 41.3334vw;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > 車に合ったタイヤ > 各タブ (2025-09)
------------------------------------------------*/
#custom .p-cartype {
	padding-top: 1px;
}

#custom .p-cartype[open] + .p-cartype[open] {
	margin-top: 60px;
}

#custom .p-cartype-footer .m-note {
	margin-top: 12px;
}

#custom .p-cartype-footer .navi {
	margin-top: 30px;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-footer .navi {
		margin-top: 16px;
	}
}

#custom .p-cartype-brand {
	padding-top: 56px;
	padding-bottom: 1px;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand {
		padding-top: 20px;
	}
}

#custom .p-cartype-brand dt {
	color: inherit;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand .wrapper {
		margin: 20px 0;
	}
}

#custom .p-cartype-brand-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 24px;
	text-align: center;
	padding-top: 1.594rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-items {
		gap: 15px;
		padding-top: 2rem;
	}
}

#custom .p-cartype-brand-item {
	position: relative;
	width: 252px;
	line-height: 1.5;
	font-size: 1rem;
	font-weight: bold;
}

#custom .p-cartype-brand-term {
	position: absolute;
	bottom: 100%;
	left: -12px;
	right: -12px;
	display: block;
	margin-bottom: 3px;
	font-size: 1.063rem;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-term {
		margin-bottom: 8px;
		padding: 0;
		font-size: 0.938rem;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand-term {
		font-size: 0.813rem;
	}
}

#custom .p-cartype-brand-term .wrap {
	position: relative;
	display: inline-block;
	padding: 0 2em;
	background: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-term .wrap {
		padding: 0 1em;
	}
}

#custom .p-cartype-brand-term .wrap::before, #custom .p-cartype-brand-term .wrap::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 1.2em;
	border-right: 1px solid;
	border-right-color: inherit;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transform-origin: center bottom;
	    -ms-transform-origin: center bottom;
	        transform-origin: center bottom;
	position: absolute;
	bottom: 0.4em;
	left: 1.8em;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-term .wrap::before {
		left: 0.8em;
	}
}

#custom .p-cartype-brand-term .wrap::after {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	left: auto;
	right: 1.8em;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-term .wrap::after {
		right: 0.8em;
	}
}

#custom .p-cartype-brand-label {
	padding-top: 1px;
	border: 1px solid;
	border-color: inherit;
	border-radius: 8px 8px 0 0;
	background: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-label {
		padding: 3px 3px 2px;
		font-size: 0.75rem;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand-label {
		font-size: 0.688rem;
	}
}

#custom .p-cartype-brand-label--standard {
	border: none;
	background: -webkit-linear-gradient(347deg, #DCDCDC 4.8%, #ACACAC 41.82%, #9E9E9E 82.73%);
	background: linear-gradient(103deg, #DCDCDC 4.8%, #ACACAC 41.82%, #9E9E9E 82.73%);
	color: #fff !important;
}

#custom .p-cartype-brand-label--premium {
	border: none;
	background: -webkit-linear-gradient(334deg, #FFE893 19.22%, #886B00 99.1%);
	background: linear-gradient(116deg, #FFE893 19.22%, #886B00 99.1%);
	color: #fff !important;
}

#custom .p-cartype-brand-body {
	border: 1px solid;
	border-color: inherit;
	border-radius: 0 0 8px 8px;
	background: #757575;
	color: #fff;
}

#custom .p-cartype-brand-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
	padding: 9px 15px 0;
	background-color: rgba(255, 255, 255, 0);
	color: inherit !important;
}

#custom .p-cartype-brand-link:is(:hover, :focus) {
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 1;
}

#custom .p-cartype-brand-link:is(:hover, :focus) .img-tire {
	opacity: 0.7;
}

#custom .p-cartype-brand-link::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: url("../../../images/asset/common/ico/ico-arrow-white.svg") no-repeat center;
	background-size: contain;
	width: 9px;
	height: 15px;
	margin-top: -7.5px;
	right: 20px;
	bottom: 28px;
	top: auto;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-link::after {
		right: 16px;
		bottom: 27px;
	}
}

#custom .p-cartype-brand-name img {
	max-width: 100%;
	height: auto;
}

#custom .p-cartype-brand-name small {
	display: block;
	margin: 5px 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-name small {
		line-height: 1.35;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand-name small {
		font-size: 0.813rem;
	}
}

#custom .p-cartype-brand-tire {
	margin-top: auto;
}

#custom .p-cartype-brand-item--black {
	color: #000;
	border-color: #000;
}

#custom .p-cartype-brand-body--black {
	background-color: #000;
	border-color: #000;
}

#custom .p-cartype-brand-item--basic {
	color: #999999;
	border-color: #999999;
}

#custom .p-cartype-brand-body--basic {
	background-color: #999999;
	border-color: #999999;
}

#custom .p-cartype-brand-item--chronicle {
	color: #141414;
	border-color: #141414;
}

#custom .p-cartype-brand-body--chronicle {
	background-color: #141414;
	border-color: #141414;
}

#custom .p-cartype-brand-item--playz {
	color: #00A1DE;
	border-color: #00A1DE;
}

#custom .p-cartype-brand-body--playz {
	background-color: #00A1DE;
	border-color: #00A1DE;
}

#custom .p-cartype-brand-item--regno {
	color: #09234E;
	border-color: #09234E;
}

#custom .p-cartype-brand-body--regno {
	background-color: #09234E;
	border-color: #09234E;
}

#custom .p-cartype-brand-item--ecopia {
	color: #6BB42A;
	border-color: #6BB42A;
}

#custom .p-cartype-brand-body--ecopia {
	background-color: #6BB42A;
	border-color: #6BB42A;
}

#custom .p-cartype-brand-item--potenza {
	color: #000000;
	border-color: #000000;
}

#custom .p-cartype-brand-body--potenza {
	background-color: #000000;
	border-color: #000000;
}

#custom .p-cartype-brand-item--alenza {
	color: #462D25;
	border-color: #462D25;
}

#custom .p-cartype-brand-body--alenza {
	background-color: #462D25;
	border-color: #462D25;
}

#custom .p-cartype-brand-item--dueler {
	color: #008F8C;
	border-color: #008F8C;
}

#custom .p-cartype-brand-body--dueler {
	background-color: #008F8C;
	border-color: #008F8C;
}

#custom .p-cartype-brand-item--blizzak {
	color: #E60012;
	border-color: #E60012;
}

#custom .p-cartype-brand-body--blizzak {
	background-color: #E60012;
	border-color: #E60012;
}

#custom .p-cartype-brand--graphic .wrapper {
	position: relative;
	height: 280px;
	margin: 30px 50px 50px;
	padding: 12px 84px 18px;
	border: 1px solid #CCC;
	/* 方眼紙模様に必須のスタイル */
	background: #fff repeat left bottom;
	background-image: -webkit-linear-gradient(bottom, #CCC 1px, transparent 1px, transparent 100%), -webkit-linear-gradient(left, #CCC 1px, transparent 1px, transparent 100%);
	background-image: linear-gradient(0deg, #CCC 1px, transparent 1px, transparent 100%), linear-gradient(90deg, #CCC 1px, transparent 1px, transparent 100%);
	background-size: 89px 70px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-brand--graphic .wrapper {
		left: 3px;
		max-width: 944px;
		margin: 50px auto 50px;
		padding: 12px 5vw 18px;
		background-size: 10% 25%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand--graphic .wrapper {
		max-width: none;
		height: 290px;
		margin: 10px 0 20px;
		padding: 12px 12px 16px 26px;
		background-size: 16.6667% 25%;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-brand--graphic .wrapper {
		background-size: 25% 25%;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand--graphic .wrapper {
		padding: 12px 8px 16px 22px;
	}
}

#custom .p-cartype-brand--graphic .p-cartype-brand-items {
	gap: 16px;
	height: 100%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-items {
		gap: 8px;
	}
}

#custom .p-cartype-brand--graphic .p-cartype-brand-item:first-child {
	margin-top: auto;
	-ms-flex-item-align: start;
	    align-self: flex-start;
}

#custom .p-cartype-brand--graphic .p-cartype-brand-item:last-child {
	margin-bottom: auto;
	-ms-flex-item-align: end;
	    align-self: flex-end;
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-term {
		left: -8px;
		right: -8px;
	}
}

#custom .p-cartype-brand--graphic .p-cartype-brand-link {
	padding: 7px 10px 0;
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-link {
		padding: 5px 2px 0;
	}
}

@media (min-width: 769px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-link {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		padding: 0 22px 0 10px;
		text-align: left;
	}
}

#custom .p-cartype-brand--graphic .p-cartype-brand-link::after {
	right: 10px;
	bottom: 23px;
}

@media (min-width: 769px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-link::after {
		right: 10px;
		top: 50%;
		bottom: auto;
	}
}

@media only screen and (max-width: 374px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-link::after {
		right: 5px;
	}
}

#custom .p-cartype-brand--graphic .p-cartype-brand-name small {
	margin: 5px 0 3px;
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-name small {
		margin: 2px 0 0;
		min-height: 2.7em;
		line-height: 1.35;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-tire {
		margin-right: auto;
		margin-left: 5px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-tire img {
		width: auto;
		max-height: 80px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-brand--graphic .p-cartype-brand-tire img {
		max-height: 66px;
	}
}

#custom .p-cartype-brand-xy {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #333;
	text-align: center;
}

#custom .p-cartype-brand-xy--x {
	right: 16px;
	height: 6px;
}

#custom .p-cartype-brand-xy--y {
	top: 16px;
	width: 6px;
	background: #f00;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-xy--x {
		height: 4px;
	}
	#custom .p-cartype-brand-xy--y {
		width: 4px;
	}
}

#custom .p-cartype-brand-xy::after {
	content: "";
	display: block;
	position: absolute;
}

#custom .p-cartype-brand-xy--x::after {
	right: -16px;
	bottom: 0;
	border-top: 21px solid transparent;
	border-left: 30px solid #333;
}

#custom .p-cartype-brand-xy--y::after {
	top: -16px;
	left: 0;
	border-right: 21px solid transparent;
	border-bottom: 30px solid #f00;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-xy--x::after {
		border-left-width: 18px;
		border-top-width: 12px;
	}
	#custom .p-cartype-brand-xy--y::after {
		border-right-width: 12px;
		border-bottom-width: 18px;
	}
}

#custom .p-cartype-brand-xy-label {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	padding: 4px 6px 3px;
	border: 1px solid #333;
	background: #fff;
	color: #333;
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 1.3333333333;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-xy-label {
		font-size: 0.938rem;
		line-height: 1.2;
	}
}

#custom .p-cartype-brand-xy-label--x {
	left: calc(50% + 8px);
}

#custom .p-cartype-brand-xy-label--y {
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
	top: calc(50% - 2px);
	padding: 4px 5px;
	border-color: #f00;
	color: #f00;
	line-height: 1;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}

@media only screen and (max-width: 768px) {
	#custom .p-cartype-brand-xy-label--y {
		padding: 8px 5px;
		text-indent: 0.1em;
	}
}

/*------------------------------------------------
	BTOS > ブランド一覧 > 車に合ったタイヤ > 性能 (2025-09)
------------------------------------------------*/
#custom .p-cartype-swiper {
	margin: 0 -12px;
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-swiper {
		margin: 0 -8px;
	}
}

#custom .p-cartype-spec {
	margin-top: 20px;
	padding-top: 36px;
}

#custom .p-cartype-spec .m-note {
	margin-top: 0;
	padding: 0;
	text-indent: 0;
	font-size: 0.75rem;
	font-weight: normal;
	text-align: center;
}

#custom .p-cartype-spec-items {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0;
	padding-bottom: 1px;
}

#custom .p-cartype-spec-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: stretch;
	    -ms-flex-pack: stretch;
	        justify-content: stretch;
	max-width: calc((100vw - 78px) / 3);
	width: 344px;
	height: auto;
	margin: 0 12px;
	border-radius: 4px;
	text-align: center;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-item {
		max-width: none;
		width: 300px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-cartype-spec-item {
		margin: 0 8px;
	}
}

#custom .p-cartype-spec-item .btn {
	background-color: #f00;
	color: #fff !important;
}

#custom .p-cartype-spec-item--black .btn {
	background-color: #000;
}

#custom .p-cartype-spec-item--basic .btn {
	background-color: #999999;
}

#custom .p-cartype-spec-item--chronicle .btn {
	background-color: #141414;
}

#custom .p-cartype-spec-item--playz .btn {
	background-color: #00A1DE;
}

#custom .p-cartype-spec-item--regno .btn {
	background-color: #09234E;
}

#custom .p-cartype-spec-item--ecopia .btn {
	background-color: #6BB42A;
}

#custom .p-cartype-spec-item--potenza .btn {
	background-color: #000000;
}

#custom .p-cartype-spec-item--alenza .btn {
	background-color: #462D25;
}

#custom .p-cartype-spec-item--dueler .btn {
	background-color: #008F8C;
}

#custom .p-cartype-spec-item--blizzak .btn {
	background-color: #E60012;
}

#custom .p-cartype-spec-header {
	min-height: 140px;
	padding: 33px 0 5px;
	border-radius: 4px 4px 0 0;
	background: #333 no-repeat center 50%;
	background-size: cover;
	color: #fff;
	font-size: 1.063rem;
	font-weight: bold;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-header {
		padding: 36px 0 5px;
		font-size: 1.125rem;
	}
}

#custom .p-cartype-spec-header--regno {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-regno.jpg");
}

#custom .p-cartype-spec-header--alenza {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-alenza.jpg");
}

#custom .p-cartype-spec-header--potenza {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-potenza.jpg");
}

#custom .p-cartype-spec-header--playz {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-playz.jpg");
}

#custom .p-cartype-spec-header--ecopia {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-ecopia.jpg");
}

#custom .p-cartype-spec-header--chronicle {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-chronicle.jpg");
}

#custom .p-cartype-spec-header--dueler {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-dueler.jpg");
}

#custom .p-cartype-spec-header--blizzak {
	background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-blizzak.jpg");
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-header--regno {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-regno-sp.jpg");
	}
	#custom .p-cartype-spec-header--alenza {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-alenza-sp.jpg");
	}
	#custom .p-cartype-spec-header--potenza {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-potenza-sp.jpg");
	}
	#custom .p-cartype-spec-header--playz {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-playz-sp.jpg");
	}
	#custom .p-cartype-spec-header--ecopia {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-ecopia-sp.jpg");
	}
	#custom .p-cartype-spec-header--chronicle {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-chronicle-sp.jpg");
	}
	#custom .p-cartype-spec-header--dueler {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-dueler-sp.jpg");
	}
	#custom .p-cartype-spec-header--blizzak {
		background-image: url("../../../images/asset/lp/brand/cartype/bg-cartype-blizzak-sp.jpg");
	}
}

#custom .p-cartype-spec-header p {
	margin-top: 5px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-header p {
		margin-top: 8px;
	}
}

#custom .p-cartype-spec-header .m-note {
	margin-top: 6px;
	font-size: 0.813rem;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-header .m-note {
		font-size: 0.75rem;
	}
}

#custom .p-cartype-spec-body {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 24px 31px 30px;
	border: 1px solid #CCC;
	border-radius: 0 0 4px 4px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-body {
		padding: 24px 9px 30px;
	}
}

#custom .p-cartype-spec-body .h {
	margin-bottom: 0;
	font-size: 1.063rem;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-body .h {
		font-size: 1rem;
	}
}

#custom .p-cartype-spec-body .h + .m-note {
	position: relative;
	top: -0.2em;
}

#custom .p-cartype-spec-body .list {
	margin: 0 -24px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-body .list {
		margin: 0 -2px;
	}
}

#custom .p-cartype-spec-body .navi {
	margin-top: 24px;
}

#custom .p-cartype-spec-feature .h {
	min-height: 2.901rem;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-feature .h {
		min-height: 2.801rem;
	}
}

.debug #custom .p-cartype-spec-feature .h {
	min-height: 0;
}

.debug #custom .p-cartype-spec-feature .h small {
	position: absolute;
	bottom: 4px;
	right: 10px;
}

#custom .p-cartype-spec-chart {
	margin: 8px 0 24px;
}

#custom .p-cartype-spec-chart img {
	max-width: 100%;
	height: auto;
}

#custom .p-cartype-spec-chart .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px 20px;
	margin-top: 18px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-chart .grid {
		gap: 10px 16px;
	}
}

@media (min-width: 1025px) {
	#custom .p-cartype-spec-body:has(.h + .m-note) .p-cartype-spec-chart {
		margin-bottom: 14px;
	}
}

#custom .p-cartype-spec-legend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
	max-width: calc(50% - 10px);
}

#custom .p-cartype-spec-legend .img-logo {
	max-width: calc(100% - 0.5rem - 6px);
}

@media (min-width: 1025px) {
	#custom .p-cartype-spec-legend .img-logo {
		width: auto;
		height: 16px;
	}
}

#custom .p-cartype-spec-legend:only-child {
	max-width: 100%;
}

#custom .p-cartype-spec-legend:only-child .img-logo[src*="ecopia"] {
	height: 21px;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-legend:only-child .img-logo[src*="ecopia"] {
		height: 18px;
	}
}

#custom .p-cartype-spec-legend small {
	display: block;
	font-size: 0.75rem;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-legend small {
		font-size: 0.688rem;
	}
}

#custom .p-cartype-spec-legend .li::before {
	content: "";
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	font-size: 0.5rem;
	line-height: 1;
	border-radius: 50%;
	margin-right: 6px;
	color: #fff;
	background-color: #f00;
}

#custom .p-cartype-spec-legend--black .li::before {
	background-color: #000;
}

#custom .p-cartype-spec-legend--basic .li::before {
	background-color: #999999;
}

#custom .p-cartype-spec-legend--chronicle .li::before {
	background-color: #141414;
}

#custom .p-cartype-spec-legend--playz .li::before {
	background-color: #00A1DE;
}

#custom .p-cartype-spec-legend--regno .li::before {
	background-color: #09234E;
}

#custom .p-cartype-spec-legend--ecopia .li::before {
	background-color: #6BB42A;
}

#custom .p-cartype-spec-legend--potenza .li::before {
	background-color: #000000;
}

#custom .p-cartype-spec-legend--alenza .li::before {
	background-color: #462D25;
}

#custom .p-cartype-spec-legend--dueler .li::before {
	background-color: #008F8C;
}

#custom .p-cartype-spec-legend--blizzak .li::before {
	background-color: #E60012;
}

#custom .p-cartype-spec-recommend {
	margin-top: auto;
}

#custom .p-cartype-spec-recommend li {
	position: relative;
	display: table;
	margin: 0 auto;
	padding-left: 32px;
	font-size: 0.938rem;
	font-weight: bold;
}

@media (max-width: 1024px) {
	#custom .p-cartype-spec-recommend li {
		font-size: 0.875rem;
	}
}

#custom .p-cartype-spec-recommend li::before {
	content: "";
	position: absolute;
	top: calc(0.8em - 6px);
	left: 3px;
	display: inline-block;
	width: 16px;
	height: 8px;
	border: 2px solid #f00;
	border-width: 0 0 2px 2px;
	-webkit-transform: rotate(-50deg);
	    -ms-transform: rotate(-50deg);
	        transform: rotate(-50deg);
}

#custom .p-cartype-spec-recommend--black li::before {
	border-color: #000;
}

#custom .p-cartype-spec-recommend--basic li::before {
	border-color: #999999;
}

#custom .p-cartype-spec-recommend--chronicle li::before {
	border-color: #141414;
}

#custom .p-cartype-spec-recommend--playz li::before {
	border-color: #00A1DE;
}

#custom .p-cartype-spec-recommend--regno li::before {
	border-color: #09234E;
}

#custom .p-cartype-spec-recommend--ecopia li::before {
	border-color: #6BB42A;
}

#custom .p-cartype-spec-recommend--potenza li::before {
	border-color: #000000;
}

#custom .p-cartype-spec-recommend--alenza li::before {
	border-color: #462D25;
}

#custom .p-cartype-spec-recommend--dueler li::before {
	border-color: #008F8C;
}

#custom .p-cartype-spec-recommend--blizzak li::before {
	border-color: #E60012;
}

#custom .p-cartype-swiper.swiper-initialized .swiper-wrapper {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

#custom .p-cartype-swiper:has(.swiper-pagination-lock) > .swiper-wrapper {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

#custom .p-cartype-swiper .swiper-pagination {
	position: static;
}

#custom .p-cartype-swiper .swiper-pagination-lock {
	margin: 0 !important;
}

#custom .p-cartype-swiper .swiper-pagination-bullets {
	margin: 3px 0 10px;
}

#custom .p-cartype-swiper .swiper-pagination-bullet {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	margin: 0 10px;
	background-color: #999;
	opacity: 1;
}

#custom .p-cartype-swiper .swiper-pagination-bullet-active {
	background-color: #f00;
}
