@charset "UTF-8";
/*------------------------------------------------
 ブリヂストン タイヤオンラインストアとは
------------------------------------------------*/
/*
	Windows用にカスタムした游ゴシック
		※通常 font-weight:normal (400) だと Regular になり細くなってしまう
		※font-family:Yu Gothic Medium; にすると太字にしたときにぼやけてしまう
*/
@font-face {
	font-family: "YuGothicWin";
	src: local("Yu Gothic Medium");
	font-weight: normal;
}

@font-face {
	font-family: "YuGothicWin";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

body, input, textarea, select, option, button {
	font-family: YuGothicWin, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
}

#custom h1, #custom h2, #custom h3, #custom h4, #custom h5, #custom h6, #custom .btn {
	font-family: YuGothicWin, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
}

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

@media only screen and (max-width: 768px) {
	html {
		scroll-padding-top: 120px;
	}
}

/*------------------------------------------------
	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 > u::before, .anime-border-run .btn > u::before {
	top: -2px;
	left: -2px;
	height: 2px;
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* テキストの折り返し設定 */
.wrap,
.wrap2 {
	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 {
		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-arrow.svg");
	width: 9px;
	height: 15px;
	right: 19px;
}

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

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

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

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

#custom main .btn.icon-arrow-right.icon-arrow-gray::after {
	background-image: url("../../../images/asset/common/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-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-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-modal-open-white.svg");
}

#custom main .btn.icon-plus::after {
	background-image: url("../../../images/asset/common/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-arrow.svg");
}

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

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

/*------------------------------------------------
	BTOS > LP > BTOSとは
------------------------------------------------*/
/* メインコンテンツ内のコンテンツ部分 */
#custom .p-feature {
	margin: 0;
	padding: 0;
}

/* LPのときの共通部分の表示 */
#custom .page[data-querystring="cid=feature"] .m-box-offcial {
	display: none;
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > ヘッダー
------------------------------------------------*/
#custom .p-feature-header {
	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: 315px;
	background: #000 url("../../../images/asset/lp/feature/bg-feature-header.jpg") no-repeat center;
	background-size: cover;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-header {
		min-height: 200px;
		background-image: url("../../../images/asset/lp/feature/bg-feature-header-sp.jpg");
	}
}

#custom .p-feature-header h1 {
	font-size: 1.563rem;
	line-height: 1.6;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-header h1 {
		font-size: 1.375rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-toc ul::after {
		content: "";
		display: block;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > お困りごと
------------------------------------------------*/
#custom .p-feature-troubled {
	overflow: hidden;
	padding: 80px 0 58px;
	background: #F5F5F5;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled {
		padding: 40px 0 24px;
	}
}

#custom .p-feature-troubled h2 {
	margin-bottom: 4rem;
}

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

#custom .p-feature-troubled-list {
	position: relative;
	margin: 0 auto 50px;
	max-width: 100%;
	width: 712px;
	background: #fff;
}

@media (max-width: 1024px) {
	#custom .p-feature-troubled-list {
		width: 80%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list {
		margin-bottom: 120px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-feature-troubled-list {
		width: auto;
	}
}

#custom .p-feature-troubled-list ul {
	position: relative;
	padding: 46px 112px;
	border: 1px solid #fff;
	background: #fff;
	font-size: 1.25rem;
	font-weight: bold;
}

@media (max-width: 1024px) {
	#custom .p-feature-troubled-list ul {
		display: table;
		margin: 0 auto;
		padding: 32px 84px;
		font-size: 1.063rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list ul {
		padding: 24px 10px 30px 25px;
		font-size: 0.875rem;
	}
}

#custom .p-feature-troubled-list li {
	position: relative;
	padding-left: 2.65em;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list li {
		padding-left: 2.25rem;
	}
}

#custom .p-feature-troubled-list li + li {
	margin-top: 1.5em;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list li + li {
		margin-top: 1.25rem;
	}
}

#custom .p-feature-troubled-list li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: url("../../../images/asset/common/ico-check-circle.svg") no-repeat center;
	background-size: contain;
	width: 1.45em;
	height: 1.45em;
	margin-top: -0.725em;
	top: 1px;
	left: 0;
	margin-top: 0 !important;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list li::before {
		width: 1.5rem;
		height: 1.5rem;
		margin-top: -0.75rem;
	}
}

#custom .p-feature-troubled-list em {
	color: #f00;
}

#custom .p-feature-troubled-list ul::after {
	content: "";
	display: block;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -27px;
	border: 27px solid transparent;
	border-bottom-width: 0 !important;
	border-top-color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list ul::after {
		margin-left: -20px;
		border-width: 20px;
	}
}

#custom .p-feature-troubled-list::before, #custom .p-feature-troubled-list::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 159px;
	height: 214px;
	margin-top: -107px;
	z-index: 2;
	top: auto;
	bottom: -25px;
}

@media (max-width: 1024px) {
	#custom .p-feature-troubled-list::before, #custom .p-feature-troubled-list::after {
		width: 132px;
		height: 167px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list::before, #custom .p-feature-troubled-list::after {
		width: 105px;
		height: 120px;
		bottom: -95px;
	}
}

#custom .p-feature-troubled-list::before {
	background-image: url("../../../images/asset/lp/feature/troubled/pic-troubled-man.png");
	left: -66px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list::before {
		left: -8px;
	}
}

#custom .p-feature-troubled-list::after {
	background-image: url("../../../images/asset/lp/feature/troubled/pic-troubled-woman.png");
	width: 138px;
	height: 190px;
	right: -67px;
}

@media (max-width: 1024px) {
	#custom .p-feature-troubled-list::after {
		width: 121.5px;
		height: 155px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-list::after {
		width: 105px;
		height: 120px;
		right: -15px;
	}
}

#custom .p-feature-troubled-answer {
	max-width: 100%;
	width: 36em;
	margin: 100px auto 0;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-answer {
		width: auto;
	}
}

#custom .p-feature-troubled-answer strong {
	font-size: 1.563rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-troubled-answer strong {
		font-size: 1.313rem;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > 選ばれる理由
------------------------------------------------*/
#custom .p-feature-reason > header {
	position: relative;
	padding: 153px 0 103px;
	background: #f00 url("../../../images/asset/lp/feature/reason/bg-reason.png") no-repeat left top;
	background-size: contain;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason > header {
		padding: 106px 0 90px;
		background-image: url("../../../images/asset/lp/feature/reason/bg-reason-sp.png");
		background-size: cover;
	}
}

#custom .p-feature-reason > header::before {
	content: "";
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
	position: absolute;
	top: -0.5px;
	left: 0;
	right: 0;
	width: 100%;
	height: 74px;
	background: #F5F5F5;
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	        clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 1024px) {
	#custom .p-feature-reason > header::before {
		height: 56px;
	}
}

#custom .p-feature-reason h2 {
	margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason h2 {
		margin-bottom: 2.5rem;
		font-size: 1.563rem;
	}
}

#custom .p-feature-reason h2 small {
	display: block;
	font-size: 1.063rem;
	margin-bottom: 1em;
}

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

#custom .p-feature-reason-toc {
	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 .p-feature-reason-toc {
		-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 .p-feature-reason-toc {
		display: block;
		padding: 0;
	}
}

#custom .p-feature-reason-toc > .m-linkbox {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: block;
	padding: 0;
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason-toc > .m-linkbox {
		-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 .p-feature-reason-toc > .m-linkbox {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin-top: 32px;
	}
}

#custom .p-feature-reason-toc dl {
	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;
	height: 100%;
	position: relative;
	padding: 40px 15px 84px;
	border-radius: 3px;
	border: 1px solid #fff;
	background: #fff;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason-toc dl {
		padding: 36px 15px 62px;
	}
}

#custom .p-feature-reason-toc a:hover dl {
	background-color: #F5F5F5;
}

#custom .p-feature-reason-toc dt {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: bold;
}

@media (max-width: 1024px) and (min-width: 544px) {
	#custom .p-feature-reason-toc dt {
		font-size: 1.125rem;
	}
}

#custom .p-feature-reason-toc dt small {
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.8em;
	font-weight: bold;
}

#custom .p-feature-reason-toc dd {
	font-size: 0.875rem;
}

#custom .p-feature-reason-toc dl::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 78px;
	height: 68px;
	top: 0;
	margin-bottom: 1rem;
}

#custom .p-feature-reason-toc-net dl::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-net.svg");
}

#custom .p-feature-reason-toc-store dl::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-store.svg");
}

#custom .p-feature-reason-toc-care dl::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-care.svg");
}

#custom .p-feature-reason-toc.with-svg > .m-linkbox dl::before {
	content: none;
	background-image: none;
}

#custom .p-feature-reason-toc.with-svg > .m-linkbox .svg {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	width: 108px;
	height: 68px;
	margin: 0 auto 1rem;
	padding: 0;
}

#custom .p-feature-reason-toc.with-svg > .m-linkbox .svg svg {
	width: auto;
	height: 100%;
}

#custom .p-feature-reason-toc.with-svg > .m-linkbox:hover svg .svg-stroke {
	-webkit-animation: svg-stroke-300 1.5s linear infinite;
	        animation: svg-stroke-300 1.5s linear infinite;
}

#custom .p-feature-reason-toc dl::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	vertical-align: middle;
	background: url(../../../images/asset/common/ico-arrow-bottom.svg) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 15px;
	margin-top: -7.5px;
	top: auto;
	bottom: 46px;
	left: 50%;
	margin-left: -12px;
	-webkit-transition: bottom 0.2s ease-out;
	transition: bottom 0.2s ease-out;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason-toc dl::after {
		bottom: 36px;
	}
}

#custom .p-feature-reason-toc dl:hover::after {
	bottom: 42px;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason-toc dl:hover::after {
		bottom: 30px;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > 選ばれる理由 > article
------------------------------------------------*/
#custom .p-feature-reason__article {
	padding: 0 0 100px;
	border-bottom: 1px solid #fff;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__article {
		padding-bottom: 80px;
	}
}

#custom .p-feature-reason__article::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 100%;
	height: 460px;
	top: 0;
	margin-bottom: 72px;
	background-position: center top;
	background-size: cover;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__article::before {
		height: 320px;
		margin-bottom: 40px;
	}
}

#custom .p-feature-reason-net::before {
	background-image: url("../../../images/asset/lp/feature/reason/bg-reason-net.jpg");
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason-net::before {
		background-image: url("../../../images/asset/lp/feature/reason/bg-reason-net-sp.jpg");
	}
}

#custom .p-feature-reason-store::before {
	background-image: url("../../../images/asset/lp/feature/reason/bg-reason-store.jpg");
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason-store::before {
		background-image: url("../../../images/asset/lp/feature/reason/bg-reason-store-sp.jpg");
	}
}

#custom .p-feature-reason-care::before {
	background-image: url("../../../images/asset/lp/feature/reason/bg-reason-care.jpg");
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason-care::before {
		background-image: url("../../../images/asset/lp/feature/reason/bg-reason-care-sp.jpg");
	}
}

#custom .p-feature-reason__article header {
	position: relative;
	margin-bottom: 1rem;
}

#custom .p-feature-reason__article header h3 {
	position: absolute;
	left: 0;
	width: 25%;
	padding-right: 24px;
	font-size: 1.125rem;
	color: #f00;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__article header h3 {
		position: static;
		width: auto;
		padding-right: 0;
		margin-bottom: 1.25rem;
	}
}

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

#custom .p-feature-reason__article header strong {
	font-size: 1.75rem;
	letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__article header strong {
		font-size: 1.563rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__article header strong {
		font-size: 1.313rem;
		letter-spacing: 0;
	}
}

#custom .p-feature-reason__article .wrapper {
	padding-left: 25%;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__article .wrapper {
		padding-left: 0;
	}
}

#custom .p-feature-reason__points {
	margin-top: 35px;
	text-align: center;
}

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

#custom .p-feature-reason__points h4 {
	position: relative;
	margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__points h4 {
		margin-bottom: 25px;
	}
}

#custom .p-feature-reason__points h4::before, #custom .p-feature-reason__points h4::after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: calc(50% - 9% - 9.4em);
	height: 0;
	border-top: 1px solid #CCC;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason__points h4::before, #custom .p-feature-reason__points h4::after {
		width: calc(50% - 12px - 9.4em);
	}
}

#custom .p-feature-reason__points h4::after {
	left: auto;
	right: 0;
}

#custom .p-feature-reason__points .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

@media only screen and (max-width: 543px) {
	#custom .p-feature-reason__points .grid {
		gap: 15px;
	}
}

#custom .p-feature-reason__points .grid > li {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

#custom .p-feature-reason__points .note {
	max-width: 14.5em;
	margin: 0.75rem auto 0;
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__points .note {
		max-width: none;
	}
}

#custom .p-feature-reason__point {
	position: relative;
	min-height: 50px;
	text-align: left;
	font-weight: bold;
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__point {
		text-align: center;
		font-size: 0.813rem;
	}
}

#custom .p-feature-reason__point .text {
	display: block;
	max-width: 10rem;
	margin-left: 83px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__point .text {
		max-width: 10em;
		margin: 0 auto;
	}
}

#custom .p-feature-reason__point .text small {
	font-size: 0.934em;
}

#custom .p-feature-reason__point .svg, #custom .p-feature-reason__point::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 75px;
	height: 55px;
	float: left;
	top: -5px;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason__point .svg, #custom .p-feature-reason__point::before {
		float: none;
		top: 0;
		margin-right: 0;
		margin-bottom: 8px;
	}
}

#custom .p-feature-reason__point.icon-point-tel::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-tel.svg");
}

#custom .p-feature-reason__point.icon-point-pay::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-pay.svg");
}

#custom .p-feature-reason__point.icon-point-time::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-time.svg");
}

#custom .p-feature-reason__point.icon-point-quality::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-quality.svg");
}

#custom .p-feature-reason__point.icon-point-shop::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-shop.svg");
}

#custom .p-feature-reason__point.icon-point-pro::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-pro.svg");
}

#custom .p-feature-reason__point.icon-point-confirm::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-confirm.svg");
}

#custom .p-feature-reason__point.icon-point-exchange::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-exchange.svg");
}

#custom .p-feature-reason__point.icon-point-punk::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-punk.svg");
}

#custom .p-feature-reason__point.icon-point-support::before {
	background-image: url("../../../images/asset/lp/feature/icon/icon-point-support.svg");
}

#custom .p-feature-reason__points.with-svg .p-feature-reason__point::before {
	content: none;
	background-image: none;
}

#custom .p-feature-reason__points.with-svg .p-feature-reason__point:hover svg .svg-stroke {
	-webkit-animation: svg-stroke-300 1.2s linear infinite;
	        animation: svg-stroke-300 1.2s linear infinite;
}

#custom .p-feature-reason .navi {
	margin-top: 60px;
}

@media (max-width: 1024px) {
	#custom .p-feature-reason .navi {
		margin-top: 40px;
	}
}

#custom .p-feature-reason .navi--after-note {
	margin-top: 1.5em;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-reason .navi--after-note {
		margin-top: 1.875em;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > タイヤラインアップ
------------------------------------------------*/
#custom .lineup {
	padding: 59px 0 63px;
	background-image: url("../../../images/asset/lp/feature/lineup/bg-feature-lineup.jpg");
}

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

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

/*------------------------------------------------
	BTOS > LP > BTOSとは > 追加のイメージ
------------------------------------------------*/
#custom .p-feature-omake-images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 24px;
	margin-top: 100px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-omake-images {
		display: none;
	}
}

#custom .p-feature-omake-images::before, #custom .p-feature-omake-images::after {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 50%;
	height: 38.75vw;
	max-height: 496px;
	background-size: cover;
}

#custom .p-feature-omake-images::before {
	background-image: url("../../../images/asset/lp/feature/omake/bg-omake-1.jpg");
}

#custom .p-feature-omake-images::after {
	background-image: url("../../../images/asset/lp/feature/omake/bg-omake-2.jpg");
}

/*------------------------------------------------
	BTOS > トップページ > こんな方におすすめ
------------------------------------------------*/
#custom .p-feature-recommend {
	padding: 90px 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend {
		padding-top: 70px;
	}
}

#custom .p-feature-recommend h2 {
	margin-bottom: 32px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend h2 {
		margin-bottom: 40px;
	}
}

#custom .p-feature-recommend-item {
	position: relative;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	width: 304px;
	min-height: 580px;
	height: auto;
	padding-top: 1px;
	padding-left: 174px;
	padding-right: 50px;
	font-size: 0.938rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend-item {
		width: 288px;
		min-height: 473px;
		padding-left: 15px;
		padding-right: 25px;
	}
}

#custom .p-feature-recommend-item .container {
	width: 304px;
	min-height: 290px;
	margin: 268px 0 0;
	padding: 40px 32px 48px;
	border-radius: 4px;
	background: #f00;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend-item .container {
		width: 288px;
		min-height: 273px;
		margin-top: 200px;
		padding: 20px 24px;
	}
}

#custom .p-feature-recommend-item h3 {
	font-size: 1.313rem;
	margin-bottom: 20px;
}

#custom .p-feature-recommend-item .name {
	font-size: 1rem;
	margin-bottom: 20px;
}

#custom .p-feature-recommend-item .image {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 387px;
	height: 417px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend-item .image {
		width: 270px;
		height: 310px;
	}
}

#custom .p-feature-recommend-item .image img {
	-o-object-fit: cover;
	   object-fit: cover;
	width: 100%;
	height: auto;
}

#custom .p-feature-recommend-item:nth-child(odd) {
	padding-top: 136px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend-item:nth-child(odd) {
		padding-top: 80px;
	}
}

#custom .p-feature-recommend-item:nth-child(odd) .image {
	top: 136px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend-item:nth-child(odd) .image {
		top: 80px;
	}
}

#custom .p-feature-recommend-item:nth-child(odd) .container {
	background: #000;
}

#custom .p-feature-recommend-swiper .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	        transition-timing-function: linear;
}

#custom .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}

.debug #custom .p-feature-recommend-swiper .swiper-slide::after {
	content: attr(data-swiper-slide-index);
	display: inline-block;
	position: absolute;
	top: 0;
	left: -2.5em;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	background: #333;
	color: #fff;
	text-align: center;
	font-size: 0.75rem;
}

#custom .p-feature-recommend .note {
	margin-top: 1.5em;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-recommend .note {
		margin-top: 1em;
	}
}

#custom .p-feature-recommend-swiper:active {
	cursor: pointer;
}

#custom .p-feature-recommend .swiper-pointer {
	display: block;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 84px;
	height: 84px;
	margin-left: -42px;
	margin-top: -42px;
	border-radius: 50%;
	background: #333 url(../../../images/asset/common/icon-swiper-pointer.svg) no-repeat center center;
	background-size: contain;
	color: #fff;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

#custom .p-feature-recommend .swiper-pointer.is-active {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.1s linear;
	transition: opacity 0.3s ease-in-out, -webkit-transform 0.1s linear;
	transition: opacity 0.3s ease-in-out, transform 0.1s linear;
	transition: opacity 0.3s ease-in-out, transform 0.1s linear, -webkit-transform 0.1s linear;
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > ご利用の流れ
------------------------------------------------*/
#custom .p-feature-using {
	overflow: hidden;
	padding: 100px 0 80px;
	background: #F5F5F5;
}

@media (max-width: 1024px) {
	#custom .p-feature-using {
		padding: 80px 0 40px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using {
		padding: 60px 0 24px;
	}
}

#custom .p-feature-using h2 {
	margin-bottom: 96px;
	font-size: 1.75rem;
}

@media (max-width: 1024px) {
	#custom .p-feature-using h2 {
		font-size: 1.563rem;
		margin-bottom: 2em;
	}
}

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

#custom .p-feature-using__article {
	position: relative;
	padding-top: 10px;
	padding-left: 95px;
	padding-bottom: 70px;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__article {
		padding-left: 75px;
		padding-bottom: 50px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__article {
		padding-left: 61px;
		padding-bottom: 36px;
	}
}

#custom .p-feature-using__article h3 {
	font-size: 1.563rem;
	margin-bottom: 1.125rem;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__article h3 {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
}

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

#custom .p-feature-using__article h3 .text {
	display: block;
}

#custom .p-feature-using__article h3 .num {
	display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 3px;
	width: 3.625rem;
	line-height: 3.625rem;
	border-radius: 50%;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	font-style: normal;
	font-family: Arial, Helvetica, Verdana, Roboto, sans-serif;
	background: #f00;
	color: #fff;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__article h3 .num {
		left: 0;
		width: 3.125rem;
		line-height: 3.125rem;
		font-size: 1.375rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__article h3 .num {
		width: 2.75rem;
		line-height: 2.75rem;
		font-size: 1.25rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__article p {
		font-size: 0.938rem;
	}
}

#custom .p-feature-using__article::before {
	content: "";
	display: block;
	position: absolute;
	left: 1.813rem;
	top: 3.625rem;
	bottom: 0;
	margin-left: 3px;
	border-left: 1px dashed #f00;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__article::before {
		left: 1.563rem;
		top: 3.125rem;
		margin-left: 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__article::before {
		left: 1.375rem;
		top: 2.75rem;
	}
}

#custom .p-feature-using__article:last-child::before {
	display: none;
}

#custom .p-feature-using .using-swiper {
	margin-top: 20px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using .using-swiper {
		margin-top: 15px;
	}
}

#custom .p-feature-using .using-swiper .swiper-pagination {
	display: none;
	position: absolute;
	top: 230px;
	bottom: auto;
	right: 16px;
	left: auto;
	width: auto;
	text-align: right;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using .using-swiper .swiper-pagination {
		display: block;
		top: -25px;
		margin-top: 40.5616224649%;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-feature-using .using-swiper .swiper-pagination {
		margin-top: 83.0670926518%;
	}
}

#custom .p-feature-using__list {
	font-size: 0.875rem;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__list {
		font-size: 0.813rem;
	}
}

#custom .p-feature-using__list small {
	font-size: 0.813rem;
}

#custom .p-feature-using__list.grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 23px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__list.grid.swiper-wrapper {
		gap: 0;
	}
}

#custom .p-feature-using__list.grid > li {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__list.grid > li {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 auto;
		        flex: 1 0 auto;
	}
}

#custom .p-feature-using__list p.wrap {
	padding: 0 20px;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__list p.wrap {
		padding: 0;
	}
}

#custom .p-feature-using__list p.wrap.text-long {
	padding: 0;
}

#custom .p-feature-using__list p.note {
	padding: 0 5px;
}

@media (max-width: 1024px) {
	#custom .p-feature-using__list p.note {
		padding: 0;
	}
}

#custom .p-feature-using__list p + p {
	margin-top: 0.5rem;
}

#custom .p-feature-using__list .image {
	min-height: 260px;
	margin-bottom: 20px;
	background: #fff;
}

@media (max-width: 1199px) {
	#custom .p-feature-using__list .image {
		min-height: 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__list .image {
		width: 284px;
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 1199px) {
	#custom .p-feature-using__list .image img {
		max-width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using__list .image img {
		width: 100%;
		height: auto;
	}
}

#custom .p-feature-using-nav {
	margin-top: 40px;
	padding: 36px 38px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fff;
	font-size: 0.938rem;
}

@media (max-width: 1024px) {
	#custom .p-feature-using-nav {
		padding: 30px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using-nav {
		padding: 28px 20px;
	}
}

#custom .p-feature-using-nav h3 {
	font-size: 1.125rem;
	margin-bottom: 10px;
}

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

#custom .p-feature-using-nav .logo {
	float: right;
	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;
	min-height: 128px;
	max-width: 50%;
	width: 440px;
	margin-left: 30px;
	text-align: center;
}

@media (max-width: 1024px) {
	#custom .p-feature-using-nav .logo {
		width: 40%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using-nav .logo {
		float: none;
		display: block;
		max-width: none;
		min-height: 0;
		width: auto;
		margin-left: 0;
		margin-bottom: 20px;
		padding: 0 13px;
		text-align: left;
	}
}

#custom .p-feature-using-nav .logo img {
	max-width: 100%;
	height: auto;
}

#custom .p-feature-using-nav .navi {
	margin-top: 18px;
	margin-left: 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-using-nav .navi {
		margin-top: 10px;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > よくあるご質問
------------------------------------------------*/
#custom .p-feature-faq {
	position: relative;
	padding: 120px 0 140px;
	background: #fff url("../../../images/asset/lp/feature/faq/bg-faq-tire.jpg") no-repeat left bottom;
	background-size: 218px 410px;
	background-position: left calc(314px);
	background-position: left calc(262px + 3.2rem);
}

@media (max-width: 1024px) {
	#custom .p-feature-faq {
		padding: 90px 0 120px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-faq {
		padding: 60px 0 180px;
		background-image: url("../../../images/asset/lp/feature/faq/bg-faq-tire-sp.jpg");
		background-size: 235px 332px;
		background-position: left calc(427px);
		background-position: left calc(252px + 11.1008rem);
	}
}

#custom .p-feature-faq h2 {
	float: left;
	max-width: 32%;
	font-size: 1.75rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-faq h2 {
		float: none;
		max-width: none;
		margin-bottom: 40px;
		font-size: 1.313rem;
	}
}

#custom .p-feature-faq__article {
	margin-left: 34%;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-faq__article {
		margin-left: 0;
	}
}

#custom .p-feature-faq .m-faqbox__question {
	font-size: 1rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-faq .m-faqbox__question {
		font-size: 0.938rem;
	}
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > ブリヂストンの想い
------------------------------------------------*/
#custom .p-feature-support {
	padding: 140px 0 170px;
	background: #F5F5F5 url("../../../images/asset/lp/feature/support/bg-support.png") no-repeat center top;
	background-size: cover;
}

@media (max-width: 1024px) {
	#custom .p-feature-support {
		padding: 90px 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-support {
		padding: 60px 0 70px;
	}
}

#custom .p-feature-support h2 {
	margin-bottom: 1.429em;
	font-size: 1.75rem;
}

@media (max-width: 1199px) {
	#custom .p-feature-support h2 {
		font-size: 1.563rem;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-support h2 {
		margin-bottom: 1.875rem;
		font-size: 1.313rem;
	}
}

#custom .p-feature-support header p {
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-support header p {
		font-size: 0.938rem;
		text-align: left;
	}
}

#custom .p-feature-support .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 24px;
	margin-top: 70px;
	min-height: 440px;
}

@media (max-width: 1024px) {
	#custom .p-feature-support .grid {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-support .grid {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
		gap: 20px;
		margin-top: 40px;
	}
}

#custom .p-feature-support .grid > .wrapper {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

#custom .p-feature-support .grid > .image {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 528px;
	background: #fff no-repeat center top;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-support .grid > .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		max-width: none;
	}
}

#custom .p-feature-support .grid > .image img {
	width: 100%;
	height: auto;
}

#custom .p-feature-support .m-faqbox {
	border-color: #fff;
	background: #fff;
}

#custom .p-feature-support .m-faqbox__question {
	font-size: 1.063rem;
}

@media (max-width: 1024px) {
	#custom .p-feature-support .m-faqbox__question {
		font-size: 1rem;
	}
}

#custom .p-feature-support .m-faqbox .note {
	margin-top: 1em;
}

#custom .p-feature-support .m-list--check > li::before {
	width: 22px;
	height: 22px;
	margin-top: 1px;
}

/*------------------------------------------------
	BTOS > LP > BTOSとは > タイヤを探す
------------------------------------------------*/
#custom .p-feature-search-tire {
	padding: 80px 0 80px;
	border: 1px solid #fff;
	border-width: 1px 0;
	background: #fff;
}

@media (max-width: 1024px) {
	#custom .p-feature-search-tire {
		padding: 60px 0 40px;
	}
}

@media (max-width: 1024px) {
	#custom .p-feature-search-tire {
		padding: 40px 0 20px;
	}
}

#custom .p-feature-search-tire h2 {
	margin-bottom: 24px;
}

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

#custom .p-feature-search-tire h2::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: url(../../../images/asset/common/icon-search-tire.svg) no-repeat center;
	background-size: contain;
	width: 80px;
	height: 80px;
	display: block;
	margin: 0 auto -10px;
}

@media only screen and (max-width: 768px) {
	#custom .p-feature-search-tire h2::before {
		margin-bottom: 0;
	}
}