@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;
	}
}

/* [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 h1, #maincontent h2, #maincontent h3, #maincontent h4, #maincontent h5, #maincontent h6 {
	line-height: 1.6;
}

#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 {
		font-size: 1.313rem;
	}
}

#maincontent h2 em, #maincontent h2 strong {
	color: #f00;
}

#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 {
		font-size: 2.375rem;
	}
}

#maincontent h3 {
	font-size: 1.125rem;
	margin-bottom: 1em;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#maincontent h3 {
		font-size: 1rem;
	}
}

#maincontent h4, #maincontent h5, #maincontent 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, .btn > u > u::before, .btn > u > u::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	background-color: #f00;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* hover時、既定の枠線を透過する */
.hover-border-clear.btn:hover, .hover-border-clear .btn:hover {
	border-color: transparent !important;
}

/* 既定の hover時の透過を上書き */
#custom .anime-border-run.btn:hover, #custom .anime-border-run .btn:hover,
#custom .anime-border-run-4.btn:hover,
#custom .anime-border-run-4 .btn:hover,
#custom .anime-border-2-lane.btn:hover,
#custom .anime-border-2-lane .btn:hover,
#custom .anime-border-in.btn:hover,
#custom .anime-border-in .btn:hover,
#custom .anime-border-flashing.btn:hover,
#custom .anime-border-flashing .btn:hover {
	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:hover > u::before, .anime-border-run-4 .btn:hover > u::before {
	width: calc(100% + 4px);
}

.anime-border-run-4.btn:hover > u::after, .anime-border-run-4 .btn:hover > u::after {
	width: calc(100% + 4px);
}

.anime-border-run-4.btn:hover > u > u::before, .anime-border-run-4 .btn:hover > u > u::before {
	height: calc(100% + 4px);
}

.anime-border-run-4.btn:hover > u > u::after, .anime-border-run-4 .btn:hover > 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:hover > u::before, .anime-border-run .btn:hover > u::before {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-run.btn:hover > u::after, .anime-border-run .btn:hover > u::after {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}

.anime-border-run.btn:hover > u > u::before, .anime-border-run .btn:hover > u > u::before {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}

.anime-border-run.btn:hover > u > u::after, .anime-border-run .btn:hover > u > u::after {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

/* 上下と左右でそれぞれ同時に枠線が走る (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:hover > u::before, .anime-border-2-lane .btn:hover > u::before {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-2-lane.btn:hover > u::after, .anime-border-2-lane .btn:hover > u::after {
	width: calc(100% + 4px);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.anime-border-2-lane.btn:hover > u > u::before, .anime-border-2-lane .btn:hover > u > u::before {
	height: calc(100% + 4px);
	-webkit-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}

.anime-border-2-lane.btn:hover > u > u::after, .anime-border-2-lane .btn:hover > 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:hover > u::before, .anime-border-in .btn:hover > 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:hover > u::before, .anime-border-flashing .btn:hover > 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 .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;
	z-index: 2;
	margin-left: -32px;
	left: 50%;
	border-radius: 50%;
	background-color: #f00;
	background-size: 26px;
}

#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;
}

/* ボタンの種類 */
#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:hover, #maincontent .btn.btn-primary:focus {
	border-color: #fff;
	background-color: #fff;
	color: #333;
	color: #f00;
}

#maincontent .btn.btn-primary:hover.icon-arrow-right::after, #maincontent .btn.btn-primary:focus.icon-arrow-right::after {
	background-image: url("../../../images/asset/common/ico/ico-arrow.svg");
}

/* ボタンのアイコン */
#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-active.icon-arrow-gray::after, #maincontent .btn.icon-arrow-right:hover.icon-arrow-gray::after, #maincontent .btn.icon-arrow-right:focus.icon-arrow-gray::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-help::after {
	background-image: url("../../../images/asset/common/ico/ico-help.svg");
	width: 20px;
	height: 20px;
}

#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;
}

/**
 ▼画像のあるページで、下方スクロールした後にページトップに戻ったとき、
   稀に固定ヘッダーの下に 1px 分の高さでノイズが走る場合があることへの対応
   （※ブラウザにもよる。Windows+Chromeで確認）
*/
#custom .js-site-header {
	-webkit-box-shadow: 0 0 1px transparent;
	        box-shadow: 0 0 1px transparent;
}

/*------------------------------------------------
	BTOS > LP > ブランド一覧
------------------------------------------------*/
/* メインコンテンツ内のコンテンツ部分 */
#custom .p-brand {
	padding-top: 30px;
	padding-bottom: 60px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand {
		padding-top: 0;
	}
}

#custom .p-brand .m-breadcrumb {
	margin-bottom: 12px;
}

#custom .p-brand #toc {
	border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand #toc {
		position: -webkit-sticky;
		position: sticky;
		z-index: 999;
		top: 60px;
		min-height: 0;
		border-bottom: 0;
	}
	#custom .p-brand #toc > .wrapper {
		border-color: #e6e6e6;
		background-color: #e6e6e6;
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	#custom .p-brand #toc ul {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 12px;
	}
}

@media (min-width: 1200px) {
	#custom .p-brand #toc ul a {
		padding-left: 30px;
		padding-right: 30px;
	}
}

#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 > ブランド一覧 > セクション
------------------------------------------------*/
#custom .p-brand h3 {
	font-size: 1.313rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand h3 {
		font-size: 1rem;
	}
}

#custom .p-brand-section {
	padding: 60px 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-section {
		padding: 40px 0;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-section--studless h2 {
		margin-bottom: 2.4em;
	}
}

#custom .p-brand #toc + .p-brand-section {
	padding-top: 90px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand #toc + .p-brand-section {
		padding-top: 48px;
	}
}

#custom .p-brand-subsection {
	margin: 48px 0;
	padding: 0;
}

#custom .p-brand-subsection:last-child {
	margin-bottom: 0;
}

/*------------------------------------------------
	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 > dt a {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	color: #fff !important;
	opacity: 1;
}

#custom .p-brand-item > dt .wrap {
	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 > dt .wrap {
		bottom: calc(50% + 42px/2);
	}
}

#custom .p-brand-item > dt small {
	display: block;
	margin-bottom: 12px;
	font-size: 0.938rem;
	color: inherit;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item > dt small {
		margin-bottom: 8px;
		font-size: 0.813rem;
	}
}

#custom .p-brand-item > dt .logo {
	width: 100%;
	max-width: 344px;
	max-height: 33px;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item > dt .logo {
		max-width: 345px;
	}
}

#custom .p-brand-item > dt .title {
	font-size: 1.75rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-brand-item > dt .title {
		font-size: 1.5rem;
	}
}

@media (min-width: 769px) {
	#custom .p-brand-item--tire[data-order="1"] > dt small {
		margin-bottom: 12px;
	}
	#custom .p-brand-item--tire[data-order="1"] > dt .logo {
		max-width: 528px;
		max-height: 50px;
	}
}

#custom .p-brand-item--wheel > dt small {
	font-size: 1.063rem;
}

@media (max-width: 1024px) {
	#custom .p-brand-item--wheel > dt small {
		font-size: 0.875rem;
	}
}

#custom .p-brand-item--wheel > dt .logo {
	max-height: 30px;
}

#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(102, 102, 102, 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--wheel > .summary {
	background: 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: 56px;
	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");
}
