@charset "UTF-8";
/*------------------------------------------------
 ブリヂストン タイヤオンラインストア トップ
------------------------------------------------*/

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

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

#custom main .container {
	overflow: visible;
}

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

#custom main a, #custom main 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;
}

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

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

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

#custom main small {
	font-weight: inherit;
}

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

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

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

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

/*------------------------------------------------
	BTOS > 見出し
------------------------------------------------*/
#custom main h1, #custom main h2, #custom main h3, #custom main h4, #custom main h5, #custom main h6 {
	line-height: 1.6;
}

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

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

#custom main h2 em, #custom main h2 strong {
	color: #f00;
}

#custom main h2 i {
	display: inline-block;
	margin: 0 0.3em;
	font-family: Arial, 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) {
	#custom main h2 i {
		font-size: 2.375rem;
	}
}

#custom main h3 {
	font-size: 1.125rem;
	margin-bottom: 1em;
	font-weight: bold;
}

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

#custom main h4, #custom main h5, #custom main 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:not(:disabled) > 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:not(:disabled) > 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:not(:disabled) > 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:not(:disabled) > 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 {
	word-break: keep-all !important;
}

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

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

.wrap wbr, .wrap .wbr,
.wrap2 wbr,
.wrap2 .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 (max-width: 1199px) {
	.unwrap_tab {
		word-break: normal !important;
		white-space: normal !important;
	}
	.unwrap_tab .nowrap {
		display: inline !important;
		white-space: normal !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 {
		height: 100%;
	}
}

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

#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-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-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-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;
	}
}

/*------------------------------------------------
	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;
}

/*------------------------------------------------
	BTOS > FAQボックス部分
------------------------------------------------*/
#custom .m-faqbox {
	position: relative;
	margin-bottom: 16px;
	border-radius: 3px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	#custom .m-faqbox {
		margin-bottom: 12px;
	}
}

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

#custom .m-faqbox__question {
	position: relative;
	margin: 0;
	margin-bottom: 0 !important;
	padding: 26px 26px;
	padding-right: 72px;
	font-weight: bold;
}

@media (max-width: 1024px) {
	#custom .m-faqbox__question {
		padding: 20px;
		padding-right: 60px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-faqbox__question {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-sizing: content-box;
		        box-sizing: content-box;
		min-height: 3.2em;
		padding: 16px;
		padding-right: 44px;
	}
}

#custom .m-faqbox.js-faqbox .m-faqbox__question {
	cursor: pointer;
	-webkit-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}

#custom .m-faqbox.js-faqbox .m-faqbox__question:hover {
	opacity: 0.7;
}

#custom .m-faqbox__details[open] .on-close {
	display: none;
}

#custom .m-faqbox__details:not([open]) .on-open {
	display: none;
}

#custom .m-faqbox__answer {
	padding: 0 26px 24px;
}

@media (max-width: 1024px) {
	#custom .m-faqbox__answer {
		padding: 0 20px 20px;
	}
}

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

#custom .m-faqbox__answer > :first-child,
#custom .m-faqbox__answer > .text > :first-child {
	margin-top: 0;
}

#custom .m-faqbox summary {
	position: absolute;
	top: 22px;
	right: 16px;
	padding: 8px;
	line-height: 1;
	background: none;
	z-index: 2;
	list-style: none;
}

@media (max-width: 1024px) {
	#custom .m-faqbox summary {
		top: 15px;
		right: 12px;
		margin-top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-faqbox summary {
		top: 12px;
		top: 22px;
		right: 4px;
		margin-top: 0;
	}
}

.js #custom .m-faqbox summary {
	z-index: 0;
}

#custom .m-faqbox summary::-webkit-details-marker {
	display: none;
}

#custom .m-faqbox summary img {
	max-width: none;
	width: 20px;
	height: 20px;
	vertical-align: bottom;
}

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

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

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

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


#custom main .btn.btn-primary.anime-border-run {
	border: 2px solid #f00;
	border: 2px solid transparent;
}

#custom main .btn.btn-primary.anime-border-run:hover, #custom main .btn.btn-primary.anime-border-run:focus {
	border-color: #fff;
	background-color: #fff;
	color: #333;
	color: #f00;
}

#custom main .btn.btn-primary.anime-border-run:disabled:hover {
  border: none;
	background-color: #d9d9d9;
  color: #fff !important;
  opacity: 0.7;
}

#custom main .btn.btn-primary.anime-border-run:hover.icon-arrow-right::after, #custom main .btn.btn-primary.anime-border-run:focus.icon-arrow-right::after {
	background-image: url("../../images/asset/common/ico/ico-arrow.svg");
}

#custom main .btn.btn-primary.anime-border-run:disabled:hover.icon-arrow-right::after {
	background-image: url("../../images/asset/common/ico/ico-arrow-white.svg");
}

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

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

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

#custom main .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;
}

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

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

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

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

#custom main .m-btnArea:has(.anime-border-run), #custom main .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;
	}
}

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

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

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

/*------------------------------------------------
	BTOS > トップページ
------------------------------------------------*/
/* メインコンテンツ内のコンテンツ部分 */
#custom .m-top-wrapper {
	margin: 0;
	padding: 0;
}

/* トップページのときの共通部分の表示 */
#custom .page[data-action="Home-Show"] .m-box-offcial {
	display: none;
}

/*------------------------------------------------
	BTOS > トップページ > KV
------------------------------------------------*/
#custom .heroarea {
	position: relative;
	overflow: hidden;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	padding: 104px 15px;
	padding: 80px 15px;   /* バナー追加用 余白調整 */
	background: #000;
	color: #fff;
	font-weight: normal;
}

#custom .heroarea--p60 {
  padding: 60px 15px;
}

#custom .heroarea--p80 {
  padding: 80px 15px;
}

#custom .heroarea--p100 {
  padding: 100px 15px;
}

@media (max-width: 1024px) {
	#custom .heroarea {
		padding: 48px 15px;
	}
}

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

#custom .heroarea a {
	color: #fff;
	-webkit-transition: 0.2s opacity ease;
	transition: 0.2s opacity ease;
}

#custom .heroarea > .container {
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}

@media only screen and (max-width: 768px) {
	#custom .heroarea > .container {
		display: block;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 0;
		padding: 0;
	}
}

#custom .heroarea .col {
	position: static;
	padding: 0;
}

#custom .heroarea .col-summary {
	min-width: 620px;
	margin-right: 26px;
}

@media (max-width: 1199px) {
	#custom .heroarea .col-summary {
		min-width: 0;
		margin-right: 2.5%;
		-ms-flex-preferred-size: 55%;
		    flex-basis: 55%;
	}
}

@media (max-width: 1024px) {
	#custom .heroarea .col-summary {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .heroarea .col-summary {
		position: relative;
		min-width: 0;
		width: auto;
		margin-right: 0;
	}
}

@media (max-width: 1199px) {
	#custom .heroarea .col-search {
		-webkit-box-flex: 0;
		    -ms-flex-positive: 0;
		        flex-grow: 0;
		-ms-flex-preferred-size: 42.5%;
		    flex-basis: 42.5%;
	}
	#custom .heroarea .col-search .m-top-search-container {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	#custom .heroarea .col-search {
		-ms-flex-preferred-size: 47.5%;
		    flex-basis: 47.5%;
	}
}

#custom .heroarea article {
	position: relative;
	text-align: center;
	letter-spacing: 0.1em;
}

#custom .heroarea article > .container {
	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: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 326px;
	padding: 0 50px;
	padding: 50px 50px 0;   /* バナー追加用 余白調整 */
}

@media (max-width: 1199px) {
	#custom .heroarea article > .container {
		padding: 0 5%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article > .container {
		min-height: 0;
		padding: 40px 15px 107px;
	}
}

#custom .heroarea article h1 {
	font-size: 1.25rem;
	line-height: 1.5;
	margin-bottom: 30px;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article h1 {
		margin-bottom: 24px;
		font-size: 0.875rem;
		line-height: 1.286;
	}
}

#custom .heroarea article h1 img, #custom .heroarea article h1 b {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article h1 img {
		position: relative;
		width: 156px;
		height: auto;
		top: -2px;
		margin: 0 4px;
	}
}

#custom .heroarea article p.text-large {
	font-size: 2.625rem;
	line-height: 1.5;
	font-weight: bold;
}

@media (max-width: 1199px) {
	#custom .heroarea article p.text-large {
		font-size: 2.25rem;
	}
}

@media (max-width: 1024px) {
	#custom .heroarea article p.text-large {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article p.text-large {
		font-size: 1.75rem;
	}
}

#custom .heroarea article .navi {
	max-width: 252px;
	margin-top: 30px;
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article .navi {
		margin-top: 24px;
	}
}

#custom .heroarea article .navi .btn {
	border: 2px solid #fff;
	border-radius: 3px;
	font-size: 0.875rem;
	font-weight: bold;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .heroarea article .navi .btn {
		font-size: 0.813rem;
	}
}

#custom .heroarea article .navi .btn:hover::after, #custom .heroarea article .navi .btn:focus::after {
	background-image: url("../../images/asset/common/ico/ico-arrow.svg");
}

#custom .heroarea .heroarea-swiper {
	overflow: hidden;
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	pointer-events: none;
}

#custom .heroarea .heroarea-swiper .swiper-wrapper,
#custom .heroarea .heroarea-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

#custom .heroarea .heroarea-swiper .swiper-slide {
	position: relative;
	background: no-repeat 35% top;
	background-size: cover;
}

#custom .heroarea .heroarea-swiper .swiper-slide img {
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 35% top;
	   object-position: 35% top;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

#custom .heroarea .heroarea-swiper .swiper-slide-active img,
#custom .heroarea .heroarea-swiper .swiper-slide-duplicate-active img,
#custom .heroarea .heroarea-swiper .swiper-slide-prev img {
	-webkit-animation: zoom-out 5.0s linear forwards;
	        animation: zoom-out 5.0s linear forwards;
}

#custom .heroarea .heroarea-swiper--overlay::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.42);
	mix-blend-mode: multiply;
}

#custom .heroarea .heroarea-swiper.swiper-initialized {
	-webkit-animation: move-right 1.0s ease-in-out 0s forwards;
	        animation: move-right 1.0s ease-in-out 0s forwards;
	-webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
	        animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
}

@-webkit-keyframes move-right {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}

@keyframes move-right {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}

/*------------------------------------------------
	BTOS > トップページ > トップお知らせ
------------------------------------------------*/
#custom .top-news {
	padding: 10px 0;
	background: #000;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(30.55%, #000), color-stop(64.65%, #515151));
	background-image: -webkit-linear-gradient(left, #000 30.55%, #515151 64.65%);
	background-image: linear-gradient(90deg, #000 30.55%, #515151 64.65%);
	color: #fff;
	text-align: center;
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transition-property: padding, font-size;
	transition-property: padding, font-size;
}

@media only screen and (max-width: 768px) {
	#custom .top-news {
		padding: 12px 0;
		font-size: 0.875rem;
	}
}

.scrolled #custom .top-news {
	font-size: 0.875rem;
	line-height: 1.429;
	padding: 0.5rem 0;
}

@media only screen and (max-width: 768px) {
	.scrolled #custom .top-news {
		font-size: 0.813rem;
	}
}

#custom .top-news li {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#custom .top-news a {
	color: #fff !important;
	-webkit-transition: 0.2s opacity ease;
	transition: 0.2s opacity ease;
}

#custom .top-news .m-text + a,
#custom .top-news .m-text > u {
	margin-left: 1em;
}

/*------------------------------------------------
	BTOS > トップページ > BTOSの特長
------------------------------------------------*/
#custom .btos-feature {
	padding: 26px 0;
	border: 1px solid #F5F5F5;
	border-width: 1px 0;
	background: #F5F5F5;
}

@media (max-width: 1024px) {
	#custom .btos-feature {
		padding: 19px 0;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature {
		padding: 0;
		border: 0;
		background: none;
	}
}

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

#custom .btos-feature dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 24px;
	font-size: 1rem;
}

@media (max-width: 1199px) {
	#custom .btos-feature dl {
		gap: 20px;
	}
}

@media (max-width: 1024px) {
	#custom .btos-feature dl {
		font-size: 0.875rem;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature dl {
		gap: 1px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

#custom .btos-feature dl > div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media (min-width: 544px) and (max-width: 1024px) {
	#custom .btos-feature dl > div {
		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;
		text-align: center;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature dl > div {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 19px 14px;
		border: 1px solid #F5F5F5;
		background: #F5F5F5;
	}
}

#custom .btos-feature dt {
	padding-top: 1.5px;
}

@media (max-width: 1024px) {
	#custom .btos-feature dt {
		padding-top: 0;
	}
}

#custom .btos-feature dd {
	margin-top: 4px;
	font-size: 0.938rem;
}

@media (max-width: 1024px) {
	#custom .btos-feature dd {
		margin-top: 2px;
	}
}

@media only screen and (min-width: 544px) and (max-width: 768px) {
	#custom .btos-feature dd {
		font-size: 0.813rem;
		line-height: 1.616;
	}
}

#custom .btos-feature dl > div > dt, #custom .btos-feature dl > div > dd {
	margin-left: 91px;
}

@media only screen and (min-width: 544px) and (max-width: 768px) {
	#custom .btos-feature dl > div > dt, #custom .btos-feature dl > div > dd {
		margin-left: 0;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature dl > div > dt, #custom .btos-feature dl > div > dd {
		margin-left: 90px;
	}
}

#custom .btos-feature dl > div::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 67px;
	height: 56px;
	float: left;
	margin-right: 12px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature dl > div::before {
		width: 55px;
		height: 49px;
	}
}

@media only screen and (min-width: 544px) and (max-width: 768px) {
	#custom .btos-feature dl > div::before {
		float: none;
		margin-right: 0;
		margin-bottom: 4px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature dl > div::before {
		-webkit-box-sizing: content-box;
		        box-sizing: content-box;
		margin-left: 10px;
		margin-right: 25px;
	}
}

#custom .btos-feature dl > div.btos-feature-tire::before {
	background-image: url("../../images/asset/top/icon/icon-tire.svg");
}


#custom .btos-feature dl > div.btos-feature-net::before {
	background-image: url("../../images/asset/top/icon/icon-net.svg");
}

#custom .btos-feature dl > div.btos-feature-care::before {
	background-image: url("../../images/asset/top/icon/icon-care.svg");
}

#custom .btos-feature dl > div .text-long {
	margin-right: -13px;
}

#custom .btos-feature.with-svg dl > div::before {
	content: none;
  background-image: none;
}

#custom .btos-feature.with-svg dl > div {
	position: relative;
	min-height: 56px;
	padding-left: 91px;
}

@media (min-width: 544px) and (max-width: 1024px) {
	#custom .btos-feature.with-svg dl > div {
		padding-left: 0;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature.with-svg dl > div {
		min-height: 49px;
		padding-left: 105px;
	}
}

#custom .btos-feature.with-svg dl > div > dt, #custom .btos-feature.with-svg dl > div > dd {
	margin-left: 0;
}

#custom .btos-feature.with-svg dl .svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 67px;
	height: 56px;
	margin-top: 0;
	padding: 0;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature.with-svg dl .svg {
		width: 75px;
		height: 49px;
	}
}

@media (min-width: 544px) and (max-width: 1024px) {
	#custom .btos-feature.with-svg dl .svg {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		position: static;
		left: auto;
		margin-top: 0;
		margin-bottom: 4px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-feature.with-svg dl .svg {
		top: 50%;
		left: 15px;
		padding: 0 10px;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}

#custom .btos-feature.with-svg dl .svg img, #custom .btos-feature.with-svg dl .svg svg {
	width: auto;
	max-width: 100%;
	height: 100%;
}

#custom .btos-feature.with-svg dl .svg img[src*="/icon-store"],
#custom .btos-feature.with-svg dl .svg svg[data-src*="/icon-store"] {
	width: 100%;
	height: auto;
}

@media (min-width: 544px) and (max-width: 1024px) {
	#custom .btos-feature.with-svg dl .svg img[src*="/icon-store"],
	#custom .btos-feature.with-svg dl .svg svg[data-src*="/icon-store"] {
		width: auto;
		max-width: 100%;
		height: 100%;
	}
}

#custom .btos-feature.with-svg dl > div:hover svg .svg-stroke {
	-webkit-animation: svg-stroke-300 1.5s linear infinite;
	        animation: svg-stroke-300 1.5s linear infinite;
}

/*------------------------------------------------
	BTOS > トップページ > 3ステップ
------------------------------------------------*/
#custom .btos-step {
	overflow: hidden;
	padding: 50px 0 90px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step {
		padding: 44px 0 70px;
	}
}

#custom .btos-step dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 25px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dl {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 32px;
		padding: 0 16px;
    margin-bottom: 40px;
		padding-bottom: 40px;
		border-bottom: 1px solid #ccc;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-step dl {
		display: block;
		padding: 0 0 8px;
	}
}

#custom .btos-step dl > div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dl > div {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 calc(50% - 16px);
		        flex: 0 0 calc(50% - 16px);
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-step dl > div {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin-bottom: 32px;
	}
}

#custom .btos-step dt {
	padding-left: 3.25rem;
	font-size: 1.125rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dt {
		padding-left: 3rem;
		font-size: 1rem;
	}
}

#custom .btos-step dt i {
	float: left;
	margin-left: -3.25rem;
	margin-right: 12px;
	position: relative;
	top: -2px;
	display: inline-block;
	min-width: 40px;
	font-size: 3rem;
	line-height: 1;
	font-style: normal;
	font-weight: bold;
	color: #f00;
	text-align: center;
	vertical-align: top;
	font-family: Arial, Helvetica, Verdana, Roboto, sans-serif;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dt i {
		padding-left: -3rem;
		margin-right: 9px;
	}
}

#custom .btos-step dd {
	margin-top: 0.375rem;
	padding-left: 3.25rem;
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dd {
		margin-top: 0.5rem;
		padding-left: 3rem;
	}
}

#custom .btos-step dd small {
	font-size: 0.934em;
}

#custom .btos-step dl > div::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 100%;
	height: auto;
	display: block;
	padding-top: 76.0932944606%;
	margin-bottom: 45px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step dl > div::before {
		margin-bottom: 16px;
	}
}

#custom .btos-step dl > div.btos-step-select::before {
	background-image: url("../../images/asset/top/step/btos-step-select.png");
}

#custom .btos-step dl > div.btos-step-reserve::before {
	background-image: url("../../images/asset/top/step/btos-step-reserve.png");
}

#custom .btos-step dl > div.btos-step-visit::before {
	background-image: url("../../images/asset/top/step/btos-step-visit.png");
}

#custom .btos-step.with-svg dl > div::before {
	content: none;
  background-image: none;
}

#custom .btos-step.with-svg dl .svg {
	display: block;
	width: 100%;
	margin-bottom: 45px;
	padding: 0;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step.with-svg dl .svg {
		margin-bottom: 16px;
	}
}

#custom .btos-step.with-svg dl .svg svg {
	width: 100%;
	height: auto;
}

#custom .btos-step.with-svg dl > div:hover svg path[fill="black"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#0"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#1"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#2"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#3"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#4"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#5"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#6"],
#custom .btos-step.with-svg dl > div:hover svg path[fill^="#7"] {
	stroke: #333;
	stroke-width: 1;
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	fill-opacity: 0;
	-webkit-animation: svg-stroke-1000 4.0s linear infinite;
	        animation: svg-stroke-1000 4.0s linear infinite;
}

#custom .btos-step.with-svg dl > div:hover svg .svg-point,
#custom .btos-step.with-svg dl > div:hover svg path[fill="#FF0000"],
#custom .btos-step.with-svg dl > div:hover svg rect[fill="#FF0000"] {
	-webkit-animation: svg-fade-out-in 1.0s ease-in-out infinite;
	        animation: svg-fade-out-in 1.0s ease-in-out infinite;
}

#custom .btos-step .btos-step-bselect {
	position: relative;
	min-height: 200px;
	margin: 50px auto;
	padding: 33px 45px 35px;
	padding-right: 50%;
	border: 1px solid #ccc;
	border-radius: 3px;
}

@media (max-width: 1199px) {
	#custom .btos-step .btos-step-bselect {
		min-height: 0;
		max-width: 1080px;
	}
}

@media (max-width: 1024px) {
	#custom .btos-step .btos-step-bselect {
		padding: 32px;
		padding-right: 45%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .btos-step-bselect {
		max-width: 29em;
		margin: 40px auto 0;
		padding: 0;
		border: 0;
	}
}

#custom .btos-step .btos-step-bselect h3 {
	margin-bottom: 0.75rem;
}

#custom .btos-step .btos-step-bselect p.text {
	width: 31em;
	max-width: 100%;
	padding-right: 2em;
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .btos-step-bselect p.text {
		width: 29em;
		padding-right: 0;
	}
}

#custom .btos-step .btos-step-bselect .m-btnArea {
	margin-left: 0;
	margin-top: 1.25rem;
}

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

#custom .btos-step .btos-step-bselect .background {
	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;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	padding: 20px;
	background: url("../../images/asset/top/step/bg-step-bselect.jpg") no-repeat center 20%;
	background-size: cover;
}

@media (max-width: 1024px) {
	#custom .btos-step .btos-step-bselect .background {
		width: 45%;
		background-image: url("../../images/asset/top/step/bg-step-bselect-md.jpg");
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .btos-step-bselect .background {
		position: static;
		width: auto;
		height: 50.1334vw;
		max-height: 220px;
		margin: 32px -15px;
		padding: 15px;
		background-image: url("../../images/asset/top/step/bg-step-bselect-sp.jpg");
	}
}

#custom .btos-step .btos-step-bselect .background img {
	max-width: 100%;
	height: auto;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .btos-step-bselect .background img {
		width: 71.5362318841%;
	}
}

#custom .btos-step .navi {
	margin-top: 50px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .navi {
		margin-top: 32px;
	}
}

/*------------------------------------------------
	BTOS > トップページ > タイヤラインアップ
------------------------------------------------*/
#custom .lineup {
	min-height: 340px;
	padding: 23px 0 40px;
	background-image: url("../../images/asset/top/lineup/bg-lineup.jpg");
}

@media only screen and (max-width: 768px) {
	#custom .lineup {
		min-height: 500px;
		padding: 50px 0 84px;
		background-image: url("../../images/asset/top/lineup/bg-lineup-sp.jpg");
	}
}

@media (max-width: 1024px) {
	#custom .lineup h2 {
		max-width: 20em;
		margin-bottom: 0.5em;
	}
}

#custom .lineup .navi {
	margin-top: 1.5rem;
}

/*------------------------------------------------
	BTOS > トップページ > 選ばれる理由
------------------------------------------------*/
#custom .btos-reason {
	padding: 54px 0 84px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason {
		padding: 43px 0 76px;
	}
}

#custom .btos-reason h2 {
	margin-bottom: 2em;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason h2 {
		margin-bottom: 1.5em;
	}
}

#custom .btos-reason dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 25px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason dl {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 32px;
		padding: 0 16px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-reason dl {
		display: block;
		padding: 0;
	}
}

#custom .btos-reason dl > div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason dl > div {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 calc(50% - 16px);
		        flex: 0 0 calc(50% - 16px);
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-reason dl > div {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin-bottom: 40px;
	}
}

#custom .btos-reason dl .m-textlink {
	font-weight: normal;
	text-decoration: underline;
}

#custom .btos-reason dl .m-textlink:hover, #custom .btos-reason dl .m-textlink:focus {
	text-decoration: none;
}

#custom .btos-reason dt {
	font-size: 1.25rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason dt {
		font-size: 1rem;
	}
}

#custom .btos-reason dd {
	margin-top: 1rem;
	font-size: 0.875rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason dd {
		margin-top: 1em;
		font-size: 0.813rem;
	}
}

#custom .btos-reason dd + dd {
	margin-top: 0.5rem;
}

#custom .btos-reason dl > div::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 68px;
	height: 68px;
	display: block;
	margin: 0 auto 16px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason dl > div::before {
		width: 76px;
		height: 76px;
	}
}

#custom .btos-reason dl > div.btos-reason-net::before {
	background-image: url("../../images/asset/top/icon/icon-net.svg");
}

#custom .btos-reason dl > div.btos-reason-store::before {
	background-image: url("../../images/asset/top/icon/icon-store.svg");
}

#custom .btos-reason dl > div.btos-reason-care::before {
	background-image: url("../../images/asset/top/icon/icon-care.svg");
}

#custom .btos-reason.with-svg dl > div::before {
	content: none;
  background-image: none;
}

#custom .btos-reason.with-svg dl > div {
	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;
}

#custom .btos-reason.with-svg dl .svg {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	width: 68px;
	height: 68px;
	margin: 0 auto 16px;
	padding: 0;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason.with-svg dl .svg {
		width: 76px;
		height: 76px;
	}
}

#custom .btos-reason.with-svg dl .svg svg {
	width: 100%;
	height: 100%;
}

#custom .btos-reason.with-svg dl > div:hover svg .svg-stroke {
	-webkit-animation: svg-stroke-300 1.5s linear infinite;
	        animation: svg-stroke-300 1.5s linear infinite;
}

#custom .btos-reason .navi {
	margin-top: 3.875rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason .navi {
		margin-top: 3rem;
	}
}

#custom .btos-reason .navi + .note {
	margin-top: 1.5em;
}

@media only screen and (max-width: 768px) {
	#custom .btos-reason .navi + .note {
		margin-top: 2em;
	}
}

/*------------------------------------------------
	BTOS > トップページ > トータルサポート
------------------------------------------------*/
#custom .btos-support-area {
	text-align: center;
}

#custom .btos-support-area .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 340px;
	border-radius: 3px;
	background: #F5F5F5;
}

@media (min-width: 1200px) {
	#custom .btos-support-area .container {
		max-width: 1080px;
		padding: 0;
	}
}

@media (max-width: 1199px) {
	#custom .btos-support-area .container {
		width: auto;
		max-width: 1080px;
		padding: 0;
	}
}

@media (max-width: 1024px) {
	#custom .btos-support-area .container {
		max-width: none;
		margin: 0 15px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-support-area .container {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		background: #fff;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-support-area .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
	}
}

#custom .btos-support-area .container::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: url("../../images/asset/top/support/pic-support.jpg") no-repeat center;
	background-size: contain;
	width: 459px;
	height: auto;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 0;
	background-size: cover;
	background-position: center top;
}

@media (max-width: 1199px) {
	#custom .btos-support-area .container::before {
		max-width: 50%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-support-area .container::before {
		max-width: none;
		width: 100%;
		padding-top: 73.9130434783%;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-support-area .container::before {
		background-image: url("../../images/asset/top/support/pic-support-sp.jpg");
		padding-top: 87.7192982456%;
	}
}

#custom .btos-support-area.want-margin-top {
	margin-top: 100px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-support-area.want-margin-top {
		margin-top: 60px;
	}
}

#custom .btos-support-area.want-margin-bottom {
	margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-support-area.want-margin-bottom {
		margin-bottom: 60px;
	}
}

#custom .btos-support {
	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;
	max-width: 436px;
	margin: 0 auto;
	padding-top: 7px;
	padding-right: 20px;
	text-align: left;
}

@media (max-width: 1199px) {
	#custom .btos-support {
		padding: 20px 30px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-support {
		display: block;
		max-width: none;
		padding: 42px 25px;
		border: 1px solid #F5F5F5;
		background: #F5F5F5;
		text-align: center;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-support {
		text-align: left;
	}
}

#custom .btos-support h2 {
	margin-bottom: 1.5rem;
	text-align: left;
}

@media (min-width: 1200px) {
	#custom .btos-support h2 {
		font-size: 1.5rem;
		line-height: 1.584;
		letter-spacing: 0.06em;
	}
}

@media only screen and (max-width: 768px) {
	#custom .btos-support h2 {
		margin: 0 0 0.875rem;
		text-align: center;
	}
}

@media only screen and (max-width: 543px) {
	#custom .btos-support h2 {
		text-align: left;
	}
}

#custom .btos-support p {
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .btos-support p {
		max-width: 31.5em;
	}
}

#custom .btos-support .navi {
	margin-top: 1.5rem;
	margin-left: 0;
}

@media only screen and (max-width: 768px) {
	#custom .btos-support .navi {
		margin-top: 0.875rem;
		margin-left: auto;
	}
}

/*------------------------------------------------
	BTOS > トップページ > お客様の声
------------------------------------------------*/
#custom .review {
	padding: 70px 0 90px;
	border: 1px solid #F5F5F5;
	border-width: 1px 0;
	background: #F5F5F5 url("../../images/asset/top/review/bg-review.jpg") no-repeat center;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
	#custom .review {
		padding-top: 60px;
		background-position: right center;
	}
}

#custom .review .m-review-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 10.5%;
	gap: 8.5%;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-container {
		display: block;
	}
}

#custom .review .m-review-container > .m-review-head {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 342px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-container > .m-review-head {
		width: auto;
	}
}

#custom .review .m-review-container > .m-review-tab-wrapper {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0;
	        flex: 1 0;
}

#custom .review .navi {
	margin-top: 3.5rem;
}

@media only screen and (max-width: 768px) {
	#custom .review .navi {
		margin-top: 0.75rem;
	}
}

#custom .review h2 {
	margin-bottom: 1rem;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	#custom .review h2 {
		text-align: center;
	}
}

#custom .review .m-review-head {
	text-align: left;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-head {
		text-align: center;
	}
}

#custom .review .m-review-h-score {
	margin: 16px 0 26px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-h-score {
		margin-bottom: 20px;
	}
}

#custom .review .m-review-h-score img {
	margin-right: 10px;
	vertical-align: middle;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-h-score img {
		width: auto;
		height: 32px;
	}
}

#custom .review .m-review-h-score__num {
	font-size: 2.625rem;
	line-height: 1;
	font-weight: bold;
	font-style: normal;
	font-family: Arial, Helvetica, Verdana, Roboto, sans-serif;
	color: #f00;
	vertical-align: middle;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-h-score__num {
		font-size: 2.25rem;
	}
}

#custom .review .m-review-h-score__text {
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-h-score__text {
		font-size: 0.875rem;
	}
}

#custom .review .m-review-h-score__text small {
	font-size: 100%;
}

#custom .review .m-review-tab-head {
	margin-top: 22px;
}

@media (min-width: 769px) {
	#custom .review .m-review-tab-head > li + li {
		margin-top: 5px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab-head {
		margin: 32px -15px 48px;
		border-bottom: 2px solid #f00;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 7px;
	}
	#custom .review .m-review-tab-head > li {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin: 0;
	}
}

#custom .review .m-review-tab__btn {
	border-radius: 4px;
	font-weight: bold;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn {
		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;
		text-align: center;
		border-radius: 4px 4px 0 0;
		background: #fff;
	}
}

#custom .review .m-review-tab__btn.btn {
	padding: 21px 16px 20px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn.btn {
		padding: 18px 10px 17px;
	}
}

#custom .review .m-review-tab__btn.is-active {
	border-color: #f00;
	background: #f00;
	color: #fff;
}

#custom .review .m-review-tab__btn::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 23px;
	height: 23px;
	margin-right: 16px;
	top: -1px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn::before {
		width: 24px;
		height: 24px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn::before {
		margin-bottom: 6px;
		margin-right: 0;
		top: 0;
	}
}

#custom .review .m-review-tab__btn[aria-controls="review-service"]::before {
	background-image: url("../../images/asset/top/icon/icon-review-service.svg");
}

#custom .review .m-review-tab__btn[aria-controls="review-service"].is-active::before {
	background-image: url("../../images/asset/top/icon/icon-review-service-white.svg");
}

#custom .review .m-review-tab__btn[aria-controls="review-products"]::before {
	background-image: url("../../images/asset/top/icon/icon-review-products.svg");
}

#custom .review .m-review-tab__btn[aria-controls="review-products"].is-active::before {
	background-image: url("../../images/asset/top/icon/icon-review-products-white.svg");
}

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

#custom .review .m-review-tab__btn.icon-arrow-right.is-active::after {
	background-image: url("../../images/asset/common/ico/ico-arrow-white.svg");
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn.icon-arrow-right::after {
		content: none;
		position: static;
		top: 0;
		margin-top: 6px;
		width: 13px;
		height: 9px;
		background-image: url("../../images/asset/common/ico/ico-arrow-bottom-gray.svg");
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}
	#custom .review .m-review-tab__btn.icon-arrow-right.is-active::after {
		background-image: url("../../images/asset/common/ico/ico-arrow-bottom-white.svg");
	}
}

#custom .review .m-review-tab__content h3, #custom .review .m-review-tab__content summary {
	display: none;
}

#custom .review .m-review-details__content {
	overflow-y: scroll;
	max-height: 29.5rem;
	padding-top: 2px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-details__content {
		overflow-y: visible;
		max-height: none;
		padding-top: 0;
	}
}

#custom .review .m-review-slide__item {
	position: relative;
	padding: 40px 100px 40px 0;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-slide__item {
		padding: 42px 0 62px;
		display: none;
	}
	#custom .review .m-review-slide__item:nth-child(-n+3) {
		display: block;
	}
}

#custom .review .m-review__user-title {
	font-size: 100%;
	margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review__user-title {
		padding-right: 90px;
	}
}

#custom .review .m-review__user-title .u-inline-b {
	display: none;
}

#custom .review .m-review-item__title {
	font-weight: bold;
}

#custom .review .m-review-item__type {
	display: inline;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review-item__type {
		display: block;
	}
}

#custom .review .m-review-item__type::before {
	content: "（";
}

#custom .review .m-review-item__type::after {
	content: "）";
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review__user-text {
		font-size: 0.938rem;
		padding-right: 0;
	}
}

#custom .review .m-review__user-icon {
	position: absolute;
	top: 10px;
	right: 0;
	right: 10px;
}

@media only screen and (max-width: 768px) {
	#custom .review .m-review__user-icon {
		top: 0;
		right: 0;
	}
}

#custom .review .m-review__user-icon img {
	width: 68px;
	height: 68px;
}

#custom .review .m-review__user-star-container {
	position: absolute;
	top: 0;
	left: 0;
	margin-bottom: 20px;
}

#custom .review .m-review-star > li {
	width: 22px;
	height: 22px;
	margin-right: 4px;
}

#custom .review .m-review-star > li.is-empty {
	background-image: url("../../images/asset/top/icon/icon-star-gray.svg");
}

#custom .review .m-review-star > li.is-half {
	background-image: url("../../images/asset/top/icon/icon-star-gray.svg");
}

#custom .review .m-review-star > li.is-full {
	background-image: url("../../images/asset/top/icon/icon-star.svg");
}

#custom .review .m-review__user-score {
	display: none;
}

#custom .review .m-review__user-info {
	display: none;
}

/*------------------------------------------------
	BTOS > トップページ > Swiper
------------------------------------------------*/
#custom .home-swiper {
	padding: 0;
	text-align: center;
}

@media only screen and (min-width: 769px) {
  #custom .home-swiper[data-swiper-pc-rows="2"] {
    height: 425px;
    .swiper-slide {
      height: auto;
    }
  }
}
@media only screen and (max-width: 768px) {
	#custom .home-swiper {
		max-width: 100%;
		width: 66.3603vw;
		height: auto;
	}
	#custom .home-swiper[data-swiper-sp-rows="1"] {
		height: 27.5736vw;
	}
	#custom .home-swiper[data-swiper-sp-rows="2"] {
		height: 54.4118vw;
	}
	#custom .home-swiper[data-swiper-sp-rows="3"] {
		height: calc(27.5736vw * 3);
	}
	#custom .home-swiper[data-swiper-sp-rows="4"] {
		height: calc(54.4118vw * 2);
	}
	#custom .home-swiper[data-swiper-sp-rows="5"] {
		height: calc(27.5736vw * 5);
	}
	#custom .home-swiper[data-swiper-sp-rows="6"] {
		height: auto;
	}
}

@media only screen and (max-width: 543px) {
	#custom .home-swiper {
		max-width: 100%;
		width: 361px;
		height: auto;
	}
	#custom .home-swiper[data-swiper-sp-rows="1"] {
		height: 150px;
	}
	#custom .home-swiper[data-swiper-sp-rows="2"] {
		height: 296px;
	}
	#custom .home-swiper[data-swiper-sp-rows="3"] {
		height: calc(150px * 3);
	}
	#custom .home-swiper[data-swiper-sp-rows="4"] {
		height: calc(296px * 2);
	}
	#custom .home-swiper[data-swiper-sp-rows="5"] {
		height: calc(150px * 5);
	}
	#custom .home-swiper[data-swiper-sp-rows="6"] {
		height: auto;
	}
}

#custom .home-swiper .swiper-slide {
	width: calc(50% - 24px/2);
	margin-right: 24px;
	background: none;
}

@media only screen and (max-width: 768px) {
	#custom .home-swiper .swiper-slide {
		width: auto;
		height: 23.8971vw;
		margin-bottom: 2.9412vw;
		margin-right: 0;
    padding: 0 1.4706vw;
	}
}

@media only screen and (max-width: 543px) {
	#custom .home-swiper .swiper-slide {
		height: 130px;
		margin-bottom: 16px;
	}
}

#custom .home-swiper .swiper-slide > a {
	display: block;
	background: none;
}

@media only screen and (max-width: 768px) {
	#custom .home-swiper .swiper-slide > a {
		height: 100%;
	}
}

#custom .home-swiper .swiper-slide img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

@media only screen and (max-width: 768px) {
	#custom .home-swiper .swiper-slide img {
		width: 100%;
		height: 100%;
    -o-object-fit: contain;
		   object-fit: contain;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}

@media only screen and (max-width: 543px) {
	#custom .home-swiper .swiper-slide img {
		width: 345px;
		height: 130px;
		-o-object-fit: contain;
		   object-fit: contain;
	}
}

#custom .home-swiper-controls {
	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;
	text-align: center;
	margin-top: 47px;
}

@media only screen and (max-width: 768px) {
	#custom .home-swiper-controls {
		margin-top: 12px;
	}
}

#custom .home-swiper-controls:has(.swiper-pagination-lock) {
	display: none;
}

#custom .home-swiper-pagination {
	position: static;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
	text-align: center;
}

#custom .home-swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	border: 1px solid #ccc;
	background: #ccc;
	opacity: 1;
}

#custom .home-swiper-pagination .swiper-pagination-bullet-active {
	border-color: #f00;
	background-color: #f00;
}

/*------------------------------------------------
	BTOS > トップページ > ピックアップ系
------------------------------------------------*/
#custom .pickup-section {
	padding: 80px 0 90px;
	background: #fff;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .pickup-section {
		padding-top: 60px;
		padding-bottom: 70px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .pickup-section .container {
		padding: 0 7px;
	}
}

#custom .pickup-section h2 {
	margin-bottom: 2rem;
}

@media (min-width: 1200px) {
	#custom .pickup-section h2 {
		font-size: 1.875rem;
	}
}

/*------------------------------------------------
	BTOS > トップページ > キャンペーン情報
------------------------------------------------*/
#custom .pickup {
	color: #fff;
	background: #000 url("../../images/asset/top/pickup/bg-pickup.jpg") no-repeat center center;
	background-size: cover;
}

@media only screen and (max-width: 543px) {
	#custom .pickup {
		background-image: url("../../images/asset/top/pickup/bg-pickup-sp.jpg");
	}
}

#custom .pickup a {
	color: #fff;
}

#custom .pickup .swiper-pagination-bullet {
	border: 1px solid #fff;
	background: none;
}

#custom .pickup .swiper-pagination-bullet-active {
	background-color: #fff;
}

/*------------------------------------------------
	BTOS > トップページ > おすすめタイヤ特集
------------------------------------------------*/
/*------------------------------------------------
	BTOS > トップページ > サービス
------------------------------------------------*/
#custom .service {
	padding-top: 66px;
	background: #F5F5F5;
}

#custom .service h2 {
	margin-bottom: 2.25rem;
}

#custom .service .service-swiper {
	margin: 0 -1px;
	padding: 1px;
}

@media only screen and (max-width: 768px) {
	#custom .service .service-swiper {
		margin: 0 auto;
	}
}

#custom .service .swiper-slide .image {
	display: block;
	outline: 1px solid #ccc;
	-webkit-transition-property: opacity, outline-color, -webkit-transform;
	transition-property: opacity, outline-color, -webkit-transform;
	transition-property: opacity, transform, outline-color;
	transition-property: opacity, transform, outline-color, -webkit-transform;
}

#custom .service .swiper-slide a.image:hover {
	outline-color: #f00;
}

/*------------------------------------------------
	BTOS > トップページ > おすすめコンテンツ
------------------------------------------------*/
#custom .recommend-content {
	padding-top: 52px;
	padding-bottom: 86px;
}

#custom .recommend-content a {
  height: 100%;
}

@media only screen and (max-width: 768px) {
	#custom .recommend-content {
		padding-top: 38px;
		padding-bottom: 80px;
	}
}

#custom .recommend-content h2 {
	margin-bottom: 1.75rem;
}

@media (min-width: 1200px) {
	#custom .recommend-content h2 {
		font-size: 1.875rem;
		margin-bottom: 1.734em;
	}
}

#custom .recommend-content .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 24px;
}

@media only screen and (max-width: 768px) {
	#custom .recommend-content .grid {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

@media only screen and (max-width: 543px) {
	#custom .recommend-content .grid {
		display: block;
	}
}

#custom .recommend-content .grid > li {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media only screen and (max-width: 768px) {
	#custom .recommend-content .grid > li {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 calc(50% - 12px);
		        flex: 0 1 calc(50% - 12px);
	}
}

@media only screen and (max-width: 543px) {
	#custom .recommend-content .grid > li {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
}

@media only screen and (max-width: 543px) {
	#custom .recommend-content .grid > li + li {
		margin-top: 12px;
	}
}

#custom .recommend-content .image {
  aspect-ratio: 1 / 1;
	position: relative;
	background: #000;
	color: #fff;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  #custom .recommend-content .image {
    aspect-ratio: 23 / 12;
  }
}

#custom .recommend-content .image img {
	width: 100%;
  object-fit: cover;
}

#custom .recommend-content .image figcaption {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 28px 21px;
	font-size: 1.25rem;
}

@media (max-width: 1024px) {
	#custom .recommend-content .image figcaption {
		padding: 0 20px 16px;
		font-size: 1rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .recommend-content .image figcaption {
		font-size: 0.875rem;
	}
}

#custom .recommend-content .image::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(26.5%, #0000), color-stop(96%, #000f));
	background: -webkit-linear-gradient(top, #0000 26.5%, #000f 96%);
	background: linear-gradient(to bottom, #0000 26.5%, #000f 96%);
	opacity: 0.8;
}

#custom .recommend-content .navi {
	margin-top: 2.5rem;
}

@media only screen and (max-width: 768px) {
	#custom .recommend-content .navi {
		margin-top: 1.875rem;
	}
}

/*------------------------------------------------
	BTOS > トップページ > お知らせ
------------------------------------------------*/
#custom .m-news-block.m-section-block {
	padding-bottom: 90px;
}

@media only screen and (max-width: 768px) {
	#custom .m-news-block.m-section-block {
		padding-top: 50px;
		padding-bottom: 75px;
	}
}

#custom .m-news-block h2 {
	margin-bottom: 3.75rem;
}

@media only screen and (max-width: 768px) {
	#custom .m-news-block h2 {
		margin-bottom: 2.5rem;
	}
}

#custom .m-news-block .m-btnArea {
	margin-top: 40px;
}

#custom .m-news li {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ccc;
}

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

#custom .m-news .m-news-date {
	width: auto;
	font-size: 0.938rem;
	font-weight: normal;
	color: #333;
	margin-right: 1rem;
}

#custom .m-news .m-news-tag {
	font-size: 0.875rem;
	line-height: 1.429;
	width: 9em;
	padding: 2px 0.4em 1px;
	margin-left: 0;
	margin-right: 1rem;
	border-color: rgba(0, 0, 0, 0.4);
	font-weight: normal;
	background: #fff;
}

#custom .m-news .m-news-detail {
	margin-left: 0;
}

@media only screen and (max-width: 768px) {
	#custom .m-news .m-news-detail {
		font-size: 0.875rem;
	}
}

/*------------------------------------------------
	BTOS > トップページ > タイヤを探す
------------------------------------------------*/
#custom .m-top-search-container {
	position: relative;
	z-index: 1;
	padding-top: 72px;
	background: none;
	color: #333;
}

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

@media only screen and (max-width: 543px) {
	#custom .m-top-search-container[data-aos-delay] {
		-webkit-transition-delay: 0s;
		        transition-delay: 0s;
	}
}

#custom .m-top-search-container a {
	color: #333;
}

#custom .m-top-search-container h2 {
	display: none;
}

#custom .m-top-search-container > .m-section-container {
	position: relative;
	padding: 24px 18px;
	border-radius: 0 0 4px 4px;
	background: #fff;
	-webkit-box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.25);
	        box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199px) {
	#custom .m-top-search-container > .m-section-container {
		width: 434px;
	}
}

@media (max-width: 1024px) {
	#custom .m-top-search-container > .m-section-container {
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container > .m-section-container {
		padding: 20px 15px 28px;
		border-radius: 0;
	}
}

#custom .m-top-search-container .m-tab-switch {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin: 0;
	gap: 10px;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-tab-switch {
		gap: 7px;
	}
}

#custom .m-top-search-container .m-tab-switch::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	right: 0;
	border-bottom: 3px solid #f00;
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: auto;
	margin: 0;
	border: 0 !important;
	background: none;
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger button {
	position: relative;
	z-index: auto;
	height: 72px;
	padding: 6px 12px 4px 64px;
	border-radius: 4px 4px 0 0;
	border: 1px solid transparent;
	background: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-tab-switch > .tab-trigger button {
		height: 58px;
		padding: 6px 2px 4px 50px;
	}
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger.is-active button {
	background-color: #f00 !important;
	color: #fff;
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger button::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 48px;
	height: 72px;
	position: absolute;
	z-index: 2;
	left: 15px;
	bottom: 0;
	vertical-align: bottom;
	background-position: left bottom;
}

@media (max-width: 1024px) {
	#custom .m-top-search-container .m-tab-switch > .tab-trigger button::before {
		left: 9px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-tab-switch > .tab-trigger button::before {
		display: block;
		width: 39px;
		height: 58.5px;
		left: 12px;
	}
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger button.tab-trigger-tire::before {
	background-image: url("../../images/asset/top/icon/icon-search-tab-tire.png");
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger button.tab-trigger-wheel::before {
	background-image: url("../../images/asset/top/icon/icon-search-tab-wheel.png");
}

#custom .m-top-search-container .m-tab-switch > .tab-trigger.is-active button::before {
	z-index: 4;
}

#custom .m-top-search-container .m-tab-content:not(.is-active) {
	display: none;
}

#custom .m-top-search-container .btn-outline-search {
	padding: 14px 11px 11px;
	border-radius: 3px;
	font-weight: bold;
}

#custom .m-top-search-container .m-btn-text {
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-btn-text {
		font-size: 0.875rem;
	}
}

#custom .m-top-search-container .m-btn-search-list {
	margin-left: -6px;
	margin-right: -6px;
}

#custom .m-top-search-container .m-btn-search-list > li {
	margin-top: 0 !important;
}

#custom .m-top-search-container .m-btn-search-list > .grid-col {
	overflow: hidden;
	width: calc(100%/3 - 12px);
	margin: 0 6px;
	padding: 0;
	border-radius: 3px;
}

#custom .m-top-search-container .m-btn-search-list .btn-outline-search {
	-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: 124px;
	padding: 13px 10px 11px;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-btn-search-list .btn-outline-search {
		min-height: 100px;
		padding-top: 10px;
	}
}

#custom .m-top-search-container .m-btn-search-list .m-btn-icon {
	margin: auto;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-btn-search-list .m-btn-icon {
		max-height: 26px;
	}
}

#custom .m-top-search-container .m-btn-search-list .m-btn-text {
	line-height: 1.6;
	margin-top: auto;
	margin-bottom: 0;
	padding: 10px 6px 0;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-btn-search-list .m-btn-text {
		line-height: 1.5;
		padding-top: 5px;
	}
}

#custom .m-top-search-container hr {
	margin: 24px 0;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container hr {
		margin: 20px 0;
	}
}

#custom .m-top-search-container .beginner-banner {
	margin-top: 16px;
	text-align: center;
}

#custom .m-top-search-container .beginner-banner .m-textlink {
	padding: 6px 0;
}

#custom .m-top-search-container .beginner-banner .m-textlink::after {
	top: 0;
	margin-left: 15px;
}

#custom .m-top-search-container .beginner-banner .btn-outline-search {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 21.5px 24px;
	padding-right: 48px;
}

@media (max-width: 1024px) {
	#custom .m-top-search-container .beginner-banner .btn-outline-search {
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .beginner-banner .btn-outline-search {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 16px 15px;
		padding-right: 40px;
	}
}

@media (max-width: 1024px) {
	#custom .m-top-search-container .beginner-banner .m-btn-text {
		display: block;
		margin-bottom: 12px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .beginner-banner .m-btn-text {
		display: inline;
		margin-bottom: 0;
	}
}

#custom .m-top-search-container .beginner-banner .m-btn-icon {
	margin-left: 8px;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .beginner-banner .m-btn-icon {
		height: 20px;
	}
}

#custom .m-top-search-container .m-top-search-link {
	margin-top: 19px;
}

@media only screen and (max-width: 768px) {
	#custom .m-top-search-container .m-top-search-link {
		display: none;
	}
}
