@charset "UTF-8";
/*------------------------------------------------
	BTOS > LP > B-selectとは
------------------------------------------------*/
/*
	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;
	}
}

/*------------------------------------------------
	Header
------------------------------------------------*/
/* TODO: サイト全体のHeader追従化対応時に削除する */
#custom .js-site-header {
	position: -webkit-sticky;
	position: sticky;
	z-index: 1000;
	top: 0;
	background: #fff;
  -webkit-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
	-webkit-transition-property: top, height, min-height, padding, color, background-color;
	transition-property: top, height, min-height, padding, color, background-color;
}

#custom #toc {
	top: 4.5rem;
}
@media (max-width: 1024px) {
	#custom #toc {
		top: 60px;
	}
}
@media only screen and (max-width: 768px) {
	.scrolled-toc #custom #toc > .wrapper {
		top: 60px;
	}
}


/*------------------------------------------------
	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 .m-note {
	display: block;
	margin: 0.75rem 0;
	padding-left: 1.3em;
	text-indent: -1.3em;
	text-align: left;
	font-size: 0.875em;
}

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

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

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

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

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

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

/* 画像リスト */
#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;
	}
}

/*------------------------------------------------
	背景画像・背景動画用
------------------------------------------------*/
#custom .m-background {
	overflow: hidden;
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#custom .m-background::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}

.debug-0 #custom .m-background::after {
	content: none;
}

#custom .m-background img, #custom .m-background video,
#custom .m-background .m-background-image,
#custom .m-background .m-background-video {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 50% 50%;
	   object-position: 50% 50%;
}

#custom .m-background img.fadein, #custom .m-background video.fadein,
#custom .m-background .m-background-image.fadein,
#custom .m-background .m-background-video.fadein {
	-webkit-animation: fade-in 0.75s ease-in-out forwards;
	        animation: fade-in 0.75s ease-in-out forwards;
}

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

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

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

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

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

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

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

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

/* ボタンの種類 */
#custom 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 > 共通部分 > ブラックベース
------------------------------------------------*/
body {
	background: #000;
	color: #fff;
}

a {
	color: #fff;
}

#footercontent, #footercontent a,
.modal-content,
.modal-content a {
	color: #333;
}

#custom .page, #custom .js-site-header, #custom .main-menu {
	background: none;
}

@media (max-width: 1024px) {
	#custom .main-menu {
		background-color: #fff;
	}
}

#custom main .container a:not(:is(.btn-primary, .btn-outline-primary)) {
	color: #fff;
}

#custom .m-header_menu > li a {
	color: #fff;
}

#custom .navbar .navbar-nav > .nav-item > .nav-link {
	color: #fff;
}

@media (max-width: 1024px) {
	#custom .main-menu .navbar-nav > .nav-item > .nav-link {
		color: #333;
	}
}

@media (max-width: 1024px) {
	#custom .m-header {
		border-bottom-color: rgba(255, 255, 255, 0.3);
	}
}

.scrolled #custom .js-site-header {
	background: rgba(0, 0, 0, 0.85);
}

#custom .site-wrapper {
	padding-bottom: 0;
}

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

#custom .m-header_menu__link--mypage::before {
	background-image: url(../../../images/asset/lp/b-select/common/ico-menu-mypage-white.svg);
}

#custom .m-header_menu__link--minicart::before {
	background-image: url(../../../images/asset/lp/b-select/common/ico-menu-minicart-white.svg);
}

#custom .m-header_menu__link--tire::before {
	background-image: url(../../../images/asset/lp/b-select/common/ico-menu-tire-white.svg);
}

#custom .m-header_logo .logo-home {
	display: inline-block;
	background: url(../../../images/asset/lp/b-select/common/logo-white.svg) no-repeat left center;
	background-size: contain;
}

#custom .m-header_logo .logo-home img {
	visibility: hidden;
}

@media (max-width: 1024px) {
	#custom .m-header_logo .logo-home {
		background-image: url(../../../images/asset/lp/b-select/common/logo_sp-white.svg);
	}
}

@media (max-width: 1024px) {
	#custom .m-header .navbar-toggler {
		background: url(../../../images/asset/lp/b-select/common/icon_menu-white.svg) no-repeat center center;
		background-size: 20px auto;
	}
	#custom .m-header .navbar-toggler img {
		visibility: hidden;
	}
	#custom .m-header .navbar-toggler[aria-expanded="true"] {
		background-image: url(../../../images/asset/lp/b-select/common/icon_menu_close-white.svg);
		background-size: 15px 15px;
	}
}

#custom .m-filterSearch-bar {
    color: #333;
}

/*------------------------------------------------
	BTOS > LP > B-selectとは
------------------------------------------------*/
#custom .p-bselect {
	padding-top: 20px;
}

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

#custom .m-section {
	padding: 120px 0;
}

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

/*------------------------------------------------
	BTOS > LP > B-selectとは > 背景動画
------------------------------------------------*/
#custom #background {
	position: fixed;
	z-index: -1;
}

#custom #background::after {
	background: rgba(0, 0, 0, 0.66);
}

#custom #background-video {
	display: block;
	-o-object-position: 50% 25%;
	   object-position: 50% 25%;
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > ヘッダー
------------------------------------------------*/
#custom .p-bselect-header {
	margin-bottom: 80px;
	padding: 120px 0 40px;
	text-align: center;
	font-size: 1.563rem;
	line-height: 1.6;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-header {
		margin-bottom: 0;
		padding: 57px 0 90px;
		font-size: 1.375rem;
	}
}

#custom .p-bselect-header h1 {
	margin: 40px 0;
	font-size: 2.813rem;
	line-height: 1;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-header h1 {
		margin: 30px 0;
	}
	#custom .p-bselect-header h1 img {
		max-width: 100%;
		height: auto;
	}
}

#custom #toc.p-bselect-toc > .wrapper {
	border-color: rgba(255, 255, 255, 0.3);
	background: none;
}

.scrolled-header #custom #toc.p-bselect-toc > .wrapper,
.scrolled-toc #custom #toc.p-bselect-toc > .wrapper {
	background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 1024px) {
	#custom #toc.p-bselect-toc > .wrapper {
		border-width: 1px 0;
	}
	.scrolled-toc #custom #toc.p-bselect-toc > .wrapper {
		border-width: 0 0 1px;
	}
}

@media only screen and (max-width: 768px) {
	#custom #toc.p-bselect-toc ul > li, #custom #toc.p-bselect-toc ul::after {
		background: rgba(255, 255, 255, 0.05);
	}
}

@media only screen and (max-width: 768px) {
	#custom #toc.p-bselect-toc ul a::before {
		border-bottom-width: 3px;
	}
}

#custom #toc.p-bselect-toc ul a.is-active::before {
	border-bottom-color: #fff;
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > タイヤ専門店
------------------------------------------------*/
#custom .p-bselect-about {
	text-align: center;
}

#custom .p-bselect-about h2 {
	margin-bottom: 3.75rem;
}

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

#custom .p-bselect-about .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 48px;
	margin: 55.2px 0 60px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-about .grid {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 12px 15px;
		margin: 32px 0;
	}
	#custom .p-bselect-about .grid img {
		width: 140px;
		height: auto;
	}
}

#custom .p-bselect-about .m-note {
	display: table;
	margin: 60px auto 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-about .m-note {
		max-width: 36em;
		margin-top: 30px;
	}
	#custom .p-bselect-about .m-note li + li {
		margin-top: 0.4em;
	}
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > プロのこだわり
------------------------------------------------*/
#custom .p-bselect-committed {
	padding-top: 150px;
	padding-bottom: 108px;
	background: #000;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed {
		padding-top: 100px;
		padding-bottom: 18px;
	}
}

#custom .p-bselect-committed h2 {
	margin-bottom: 5.875rem;
}

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

#custom .p-bselect-committed .toc {
	position: -webkit-sticky;
	position: sticky;
	z-index: 998;
	top: 120px;
	margin-bottom: 1.5em;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed .toc {
		top: 0;
		z-index: 999;
		min-height: 7rem;
		margin-bottom: 2.8em;
		background: rgba(0, 0, 0, 0.85);
	}
	#custom .p-bselect-committed .toc .container {
		padding: 15px;
	}
}

#custom .p-bselect-committed .toc .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 12px;
	padding: 4px 8px;
	border: 1px solid #fff;
	border-radius: 60px;
	background: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed .toc .grid {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 15px 12px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: none;
	}
}

#custom .p-bselect-committed .toc li {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed .toc li {
		-ms-flex-preferred-size: calc(50% - 15px/2);
		    flex-basis: calc(50% - 15px/2);
		max-width: 300px;
	}
}

#custom .p-bselect-committed .toc li a {
	display: block;
	padding: 0.4rem 10px 0.375rem;
	border-radius: 60px;
	border: 1px solid #fff;
	background: #fff;
	color: #333;
	font-weight: bold;
	text-align: center;
}

#custom .p-bselect-committed .toc li a.is-active {
	border-color: #333;
	background-color: #333;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed .toc li a.is-active {
		border-color: rgba(255, 255, 255, 0.3);
	}
}

#custom .p-bselect-committed__article {
	position: relative;
	padding: 2px 0 152px;
	border-bottom: 1px solid transparent;
}

@media (max-width: 1024px) {
	#custom .p-bselect-committed__article {
		padding-bottom: 14.8293vw;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__article {
		padding-bottom: 122px;
	}
}

#custom .p-bselect-committed__article h3 {
	font-size: 1.75rem;
	letter-spacing: 0.02em;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__article h3 {
		font-size: 1.438rem;
		letter-spacing: 0;
	}
}

#custom .p-bselect-committed__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 12px 25px;
	padding-top: 3em;
	padding-bottom: 4em;
}

@media (max-width: 1024px) {
	#custom .p-bselect-committed__header {
		display: block;
		padding-top: 1.2em;
		padding-bottom: 2em;
	}
}

#custom .p-bselect-committed__header > h3, #custom .p-bselect-committed__header > p {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
}

@media (min-width: 1025px) {
	#custom .p-bselect-committed__header > h3, #custom .p-bselect-committed__header > p {
		width: calc(50% - 15px);
		margin-bottom: 0;
	}
}

#custom .p-bselect-committed__header .copy {
	width: 100%;
	display: none;
}

.debug #custom .p-bselect-committed__header .copy {
	display: block;
}

#custom .p-bselect-committed__figure {
	margin: 28px 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__figure {
		margin: 12px 0;
	}
}

#custom .p-bselect-committed__figure video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}

#custom .p-bselect-committed__panels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panels {
		display: block;
	}
}

#custom .p-bselect-committed__panel {
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: calc(50% - 12px);
	min-height: 298px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel {
		width: auto;
		min-height: 150px;
		padding-top: 35.1851851852%;
		margin-top: 12px;
	}
}

#custom .p-bselect-committed__panel .h {
	font-size: 1.313rem;
	margin-bottom: 1rem;
}

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

#custom .p-bselect-committed__panel .m-textlink {
	font-size: 0.938rem;
	text-decoration: underline;
}

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

#custom .p-bselect-committed__panel .m-textlink::after {
	margin-left: 12px;
}

#custom .p-bselect-committed__panel > .panel-header {
	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;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 3px;
	list-style: none;
}

#custom .p-bselect-committed__panel > .panel-header::-webkit-details-marker {
	display: none;
}

#custom .p-bselect-committed__panel > .panel-header::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000 no-repeat center;
	background-size: cover;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
}

#custom .p-bselect-committed__panel--quality-work > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-quality-work.jpg");
}

#custom .p-bselect-committed__panel--quality-variety > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-quality-variety.jpg");
}

#custom .p-bselect-committed__panel--explain-suggest > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-explain-suggest.jpg");
}

#custom .p-bselect-committed__panel--explain-check > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-explain-check.jpg");
}

#custom .p-bselect-committed__panel--service-feeling > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-service-feeling.jpg");
}

#custom .p-bselect-committed__panel--service-equip > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-service-equip.jpg");
}

#custom .p-bselect-committed__panel--aftercare-tirecheck > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-aftercare-tirecheck.jpg");
}

#custom .p-bselect-committed__panel--aftercare-items > .panel-header::before {
	background-image: url("../../../images/asset/lp/b-select/committed/bg-committed-aftercare-items.jpg");
}

#custom .p-bselect-committed__panel .panel-body {
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	padding: 40px;
	border-radius: 3px;
	background: #fff;
	color: #333;
	text-align: left;
	z-index: -3;
	max-height: 100%;
	opacity: 0;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
	-webkit-transition: 0.45s ease-out;
	transition: 0.45s ease-out;
	-webkit-transition-property: opacity, z-index, max-height, -webkit-transform;
	transition-property: opacity, z-index, max-height, -webkit-transform;
	transition-property: transform, opacity, z-index, max-height;
	transition-property: transform, opacity, z-index, max-height, -webkit-transform;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel .panel-body {
		padding: 15px;
	}
}

#custom .p-bselect-committed__panel .panel-body .h {
	margin-bottom: 1.5rem;
	padding-right: 38px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel .panel-body .h {
		margin-bottom: 0.5em;
	}
}

#custom .p-bselect-committed__panel .panel-body p {
	margin-bottom: 0.75rem;
}

#custom .p-bselect-committed__panel .panel-body .image {
	margin-top: 24px;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel .panel-body .image {
		margin-top: 20px;
	}
}

#custom .p-bselect-committed__panel .panel-body .image img {
	max-width: 100%;
	height: auto;
}

#custom .p-bselect-committed__panel .close {
	position: absolute;
	top: 40px;
	right: 40px;
	opacity: 1;
}

#custom .p-bselect-committed__panel .close:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel .close {
		top: 15px;
		right: 15px;
	}
}

@media (min-width: 769px) {
	#custom .p-bselect-committed__panel.on-hover .close {
		display: none;
	}
}

#custom .p-bselect-committed__panel[open] .panel-body, #custom .p-bselect-committed__panel:not(details):hover .panel-body {
	z-index: 100;
	max-height: 37.5rem;
	opacity: 1;
	-webkit-animation: fade-in 0.45s ease-out forwards;
	        animation: fade-in 0.45s ease-out forwards;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed__panel[open] .panel-body, #custom .p-bselect-committed__panel:not(details):hover .panel-body {
		max-height: 37.5rem;
	}
}

#custom .p-bselect-committed__panel[open].is-closing .panel-body {
	-webkit-animation: fade-out 0.3s ease-out forwards;
	        animation: fade-out 0.3s ease-out forwards;
}

@media (min-width: 769px) {
	.js > #custom .p-bselect-committed .toc {
		top: 48px;
		top: calc(1.401rem + 15px + 8px);
	}
}

.scrolled-commeted-toc:not(.scrolling-commeted-toc) > #custom .js-site-header {
	top: -6.75rem;
}

@media (max-width: 1024px) {
	.scrolled-commeted-toc:not(.scrolling-commeted-toc) > #custom .js-site-header {
		top: -60px;
	}
}

.scrolled-commeted-toc:not(.scrolling-commeted-toc) > #custom #toc {
	top: 0;
}

@media only screen and (max-width: 768px) {
	.scrolled-commeted-toc:not(.scrolling-commeted-toc) > #custom #toc > .wrapper {
		top: 0;
	}
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > プロのこだわり
------------------------------------------------*/
#custom .p-bselect-committed__panel-body.rotate {
	-webkit-transition: z-index 0.75s ease-out, opacity 0.6s ease-out, max-height 0.75s ease-out, -webkit-transform 0.75s ease-out;
	transition: z-index 0.75s ease-out, opacity 0.6s ease-out, max-height 0.75s ease-out, -webkit-transform 0.75s ease-out;
	transition: transform 0.75s ease-out, z-index 0.75s ease-out, opacity 0.6s ease-out, max-height 0.75s ease-out;
	transition: transform 0.75s ease-out, z-index 0.75s ease-out, opacity 0.6s ease-out, max-height 0.75s ease-out, -webkit-transform 0.75s ease-out;
}

#custom .p-bselect-committed__panel:hover .p-bselect-committed__panel-body.rotate {
	-webkit-transform: rotateX(360deg);
	        transform: rotateX(360deg);
}

#custom .p-bselect-committed__panel:hover .p-bselect-committed__panel-body.rotate-y {
	-webkit-transform: rotateY(360deg);
	        transform: rotateY(360deg);
}

#custom .p-bselect-committed__panel-body.pos-top {
	top: 0;
	bottom: auto;
}

#custom .p-bselect-committed__panel-body.pos-bottom {
	top: auto;
	bottom: 0;
	-webkit-box-shadow: 0 0 10px #333;
	        box-shadow: 0 0 10px #333;
}

#custom .p-bselect-committed__panel-body.pos-middle {
	top: 50%;
	bottom: auto;
	-webkit-box-shadow: 0 0 10px #333;
	        box-shadow: 0 0 10px #333;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

#custom .p-bselect-committed__panel:hover .p-bselect-committed__panel-body.pos-middle.rotate {
	-webkit-transform: translateY(-50%) rotateX(360deg);
	        transform: translateY(-50%) rotateX(360deg);
}

#custom .p-bselect-committed__panel:hover .p-bselect-committed__panel-body.pos-middle.rotate-y {
	-webkit-transform: translateY(-50%) rotateY(360deg);
	        transform: translateY(-50%) rotateY(360deg);
}

#custom .p-bselect-committed__panel-body.pos-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	z-index: 100;
	max-height: none !important;
	opacity: 1;
}

#custom .p-bselect-committed__panel-body.pos-slide .image {
	margin-top: auto;
}

#custom .p-bselect-committed__article.with-slide .panel-header {
	cursor: pointer;
}

#custom .p-bselect-committed__article.with-slide .panel-header:hover::before, #custom .p-bselect-committed__article.with-slide .panel-header:hover::after {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

#custom .p-bselect-committed__article.with-slide .panel-body .close {
	display: inline-block;
}

#custom .p-bselect-committed .js-scroll-snap {
	padding: 2px 0 272px;
}

@media (max-width: 1024px) {
	#custom .p-bselect-committed .js-scroll-snap {
		padding-bottom: 26.5366vw;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-committed .js-scroll-snap {
		padding-bottom: 222px;
	}
}

#custom .p-bselect-committed .js-scroll-snap2 > header {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 4.5em;
	margin-bottom: 4em;
}

@media (max-width: 1024px) {
	#custom .p-bselect-committed .js-scroll-snap2 > header {
		display: block;
		margin-top: 4em;
		margin-bottom: 2em;
	}
}

#custom .p-bselect-committed__article.tab {
	display: none;
	padding-bottom: 100px;
}

#custom .p-bselect-committed__article.tab.is-active {
	display: block;
}

#custom .p-bselect-committed__article.tab .copy {
	display: none;
}

#custom .p-bselect-committed .toc.with-tab {
	position: static;
}

#custom .page-bgcolor .p-bselect-committed.m-bgcolor .m-subsection:nth-child(even) {
	background-color: #222;
}

#custom .page-bgcolor .p-bselect-committed.m-bgcolor .toc .grid {
	margin-bottom: 8px;
}

#custom .page-bgcolor .p-bselect-committed__article .copy {
	display: block;
}

@media (max-width: 1024px) {
	#custom .page-bgcolor .p-bselect-committed__panel {
		max-width: 528px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 543px) {
	#custom .page-bgcolor .p-bselect-committed__panel {
		max-width: none;
	}
}

@media only screen and (max-width: 768px) {
	#custom .page-bgcolor .p-bselect-service .grid {
		max-width: 528px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 543px) {
	#custom .page-bgcolor .p-bselect-service .grid {
		max-width: none;
	}
}

#custom .p-bselect-committed .swiper-slide.container {
	padding: 0;
}

#custom:has(.page.scroll-snap) {
	overflow: hidden;
}

#custom .page.scroll-snap {
	max-height: 100vh;
	overflow-y: scroll;
	-webkit-scroll-snap-type: mandatory;
	    -ms-scroll-snap-type: mandatory;
	        scroll-snap-type: mandatory;
	-webkit-scroll-snap-points-y: repeat(3rem);
	    -ms-scroll-snap-points-y: repeat(3rem);
	        scroll-snap-points-y: repeat(3rem);
	-webkit-scroll-snap-type: y mandatory;
	    -ms-scroll-snap-type: y mandatory;
	        scroll-snap-type: y mandatory;
}

#custom .page.scroll-snap .js-site-header, #custom .page.scroll-snap #footercontent,
#custom .page.scroll-snap main [data-section],
#custom .page.scroll-snap #committed .m-subsection {
	scroll-snap-align: start;
	scroll-margin-top: 130px;
}

#custom .page.scroll-snap .copy {
	display: none;
}

#custom .page.scroll-snap .toc {
	position: static;
}

#custom main .memo {
	margin: 60px auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.2);
}

#custom main .memo ul {
	list-style: disc;
	padding-left: 2.5em;
}

#custom main .memo ul li {
	display: list-item;
}

#custom main .memo a {
	text-decoration: underline;
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > 細やかな気配り
------------------------------------------------*/
#custom .p-bselect-attention {
	padding-bottom: 180px;
	background: #000 url("../../../images/asset/lp/b-select/attention/bg-attention.jpg") no-repeat center top;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention {
		padding: 70px 0 90px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .p-bselect-attention {
		background-image: url("../../../images/asset/lp/b-select/attention/bg-attention.jpg");
	}
}

#custom .p-bselect-attention h2 {
	margin-bottom: 5rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention h2 {
		font-size: 1.438rem;
		margin-bottom: 2.688rem;
	}
}

#custom .p-bselect-attention .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 40px 24px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention .grid {
		display: block;
		padding: 50px 0;
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-width: 1px 0;
	}
}

#custom .p-bselect-attention .grid > div {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 45%;
	        flex: 1 0 45%;
	-ms-flex-preferred-size: calc(50% - 12px);
	    flex-basis: calc(50% - 12px);
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention .grid > div {
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
	#custom .p-bselect-attention .grid > div + div {
		margin-top: 56px;
	}
}

@media (min-width: 769px) {
	#custom .p-bselect-attention .grid > div:nth-child(-n+2) {
		padding-top: 40px;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
	}
	#custom .p-bselect-attention .grid > div:last-child, #custom .p-bselect-attention .grid > div:nth-last-child(-n+2):nth-child(odd) {
		padding-bottom: 50px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
}

#custom .p-bselect-attention__item {
	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;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention__item {
		display: block;
		padding-left: 90px;
	}
}

#custom .p-bselect-attention__item dt {
	margin: 8px 0 0.625rem;
	font-size: 1.063rem;
	font-weight: bold;
	color: #fff;
}

#custom .p-bselect-attention__item dd.svg {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
}

#custom .p-bselect-attention__item dd.svg img, #custom .p-bselect-attention__item dd.svg svg {
	width: 68px;
	height: auto;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention__item dd.svg {
		position: absolute;
		top: -8px;
		left: 0;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-attention__item--tire dd.svg {
		top: -25px;
	}
}

#custom .p-bselect-attention__item p {
	margin-top: 0.625rem;
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > B-selectの取り組み
------------------------------------------------*/
#custom .p-bselect-improvement {
	position: relative;
	z-index: 0;
	padding: 50px 0 73px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-improvement {
		padding: 50px 0 60px;
	}
}

#custom .p-bselect-improvement video.m-background-video {
	display: block;
	-o-object-position: 50% 25%;
	   object-position: 50% 25%;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-improvement video.m-background-video {
		-o-object-position: 50% 0%;
		   object-position: 50% 0%;
		-o-object-position: 50% 50%;
		   object-position: 50% 50%;
	}
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > タイヤを探す
------------------------------------------------*/
#custom .p-bselect-tiresearch {
	position: relative;
	z-index: 0;
	padding: 40px 0 82px;
	background-image: url("../../../images/asset/lp/b-select/tiresearch/bg-tiresearch.jpg");
	background-position: center 15%;
}

@media (max-width: 1024px) {
	#custom .p-bselect-tiresearch {
		background-image: url("../../../images/asset/lp/b-select/tiresearch/bg-tiresearch-md.jpg");
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-tiresearch {
		padding: 30px 0 80px;
		background-image: url("../../../images/asset/lp/b-select/tiresearch/bg-tiresearch-sp.jpg");
		background-position: center 0%;
		background-position: center 15%;
		background-position: center 50%;
	}
}

@media only screen and (max-width: 768px) {
	.debug #custom .p-bselect-tiresearch {
		background-image: none;
	}
	.debug #custom .p-bselect-tiresearch::before, .debug #custom .p-bselect-tiresearch::after {
		content: "";
		position: absolute;
		z-index: -1;
		left: 0;
		right: 0;
		width: 100%;
		height: 50%;
		background: none no-repeat 50% 25%;
		background-size: cover;
	}
	.debug #custom .p-bselect-tiresearch::before {
		top: 0;
		background-image: url("../../../images/asset/lp/b-select/tiresearch/bg-tiresearch-1-sp.jpg");
	}
	.debug #custom .p-bselect-tiresearch::after {
		bottom: 0;
		background-image: url("../../../images/asset/lp/b-select/tiresearch/bg-tiresearch-2-sp.jpg");
		background-position: 50% 30%;
	}
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > 店舗を探す
------------------------------------------------*/
#custom .p-bselect-find-stores {
	padding: 100px 0 175px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-find-stores {
		padding: 70px 0 120px;
	}
}

#custom .p-bselect-find-stores h2::before {
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: url("../../../images/asset/lp/b-select/icon/icon-talk.svg") no-repeat center;
	background-size: contain;
	width: 46px;
	height: 38px;
	margin-right: 20px;
	top: -4px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-find-stores h2::before {
		display: block;
		top: 0;
		margin: 0 auto 32px;
	}
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > サービス
------------------------------------------------*/
#custom .p-bselect-service {
	padding: 100px 0 150px;
	background: #F5F5F5;
	color: #333;
}

#custom .p-bselect-service a {
	color: #333;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service {
		padding: 70px 0 80px;
	}
}

#custom .p-bselect-service .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 10px 24px;
	margin-top: 100px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service .grid {
		display: block;
		margin-top: 60px;
	}
}

#custom .p-bselect-service .grid > .m-section {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	width: 45%;
	width: calc(50% - 12px);
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service .grid > .m-section {
		width: auto;
	}
}

#custom .p-bselect-service__article {
	margin: 0 0 50px;
	padding: 0;
	font-size: 0.938rem;
}

#custom .p-bselect-service__article .image {
	margin-bottom: 28px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service__article .image {
		margin-bottom: 16px;
		position: relative;
		min-height: 195px;
		height: 33.8102vw;
	}
	#custom .p-bselect-service__article .image img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: center 25%;
		   object-position: center 25%;
	}
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service__article .copy {
		font-size: 0.875rem;
	}
}

#custom .p-bselect-service__article h3, #custom .p-bselect-service__article .h {
	margin: 0.75rem 0;
	font-size: 1.188rem;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service__article h3, #custom .p-bselect-service__article .h {
		font-size: 1.063rem;
	}
}

#custom .p-bselect-service__article .text:not(.no-line-clamp) {
	overflow: hidden;
	position: relative;
	max-height: 0.3em;
}

@supports (-webkit-line-clamp: 3) {
	#custom .p-bselect-service__article .text:not(.no-line-clamp) {
		max-height: none !important;
		display: -webkit-box !important;
		-webkit-box-orient: vertical;
	}
}

@supports (-webkit-line-clamp: 3) {
	#custom .p-bselect-service__article .text:not(.no-line-clamp) {
		-webkit-line-clamp: 3;
	}
}

#custom .p-bselect-service__article .text {
	position: relative;
	overflow: hidden;
}

#custom .p-bselect-service__article .text label.text-more {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
	background: #F5F5F5;
	padding: 2px 0 0;
	text-decoration: underline;
	-webkit-transition: color 0.2s ease-out;
	transition: color 0.2s ease-out;
	cursor: pointer;
}

#custom .p-bselect-service__article .text label.text-more:hover {
	color: rgba(51, 51, 51, 0.7);
}

#custom .p-bselect-service__article .text label.text-more::before {
	content: "\2026";
	display: inline-block;
	margin: 0 0.6em;
}

#custom .p-bselect-service__article .text.line-clamped label.text-more {
	display: inline-block;
}

#custom .p-bselect-service__article .text-checkbox:checked ~ .text {
	overflow: visible;
	max-height: none;
}

@supports (-webkit-line-clamp: 2) {
	#custom .p-bselect-service__article .text-checkbox:checked ~ .text {
		display: block !important;
		-webkit-line-clamp: revert;
		-webkit-box-orient: inline-axis;
	}
}

#custom .p-bselect-service__article .text-checkbox:checked ~ .text label.text-more {
	display: none;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service__article--hidable {
		display: none;
	}
}

#custom .p-bselect-service__controls {
	display: none;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-service__controls {
		display: block;
	}
}

#custom .p-bselect-service__controls .on-open {
	display: none !important;
}

#custom .p-bselect-service__controls .on-close {
	display: inline !important;
}

#custom .p-bselect-service__controls .btn.is-open .on-open {
	display: inline !important;
}

#custom .p-bselect-service__controls .btn.is-open .on-close {
	display: none !important;
}

#custom .p-bselect-service__controls .btn.is-open::after {
	background-image: url("../../../images/asset/common/ico-minus.svg");
}

/*------------------------------------------------
	BTOS > LP > B-selectとは > スタッフの声
------------------------------------------------*/
#custom .p-bselect-staffs {
	padding: 120px 0 180px;
	background: #fff;
	color: #333;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-staffs {
		padding: 70px 0 100px;
	}
}

#custom .p-bselect-staffs h2 {
	margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-staffs h2 {
		margin-bottom: 60px;
	}
}

#custom .p-bselect-staffs-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	height: auto;
	padding-left: 24px;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-staffs-item {
		padding-left: 16px;
	}
}

#custom .p-bselect-staffs-item .image {
	width: 436px;
	min-height: 476px;
	margin: 0;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-staffs-item .image {
		width: 270px;
		min-height: 350px;
	}
}

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

#custom .p-bselect-staffs-item .text {
	width: 436px;
	min-height: 476px;
	margin: 0;
	padding: 40px;
	border-radius: 3px;
	font-weight: bold;
	font-size: 1.625rem;
	background: #F5F5F5;
	color: #333;
}

@media only screen and (max-width: 768px) {
	#custom .p-bselect-staffs-item .text {
		width: 270px;
		min-height: 350px;
		padding: 20px;
		padding-right: 18px;
		font-size: 1.313rem;
	}
}

#custom .p-bselect-staffs-item .text--black {
	background: #000;
	color: #fff;
}

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

.debug #custom .p-bselect-staffs-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-bselect-staffs-swiper:active {
	cursor: pointer;
}

#custom .p-bselect-staffs .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-bselect-staffs .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;
}