@charset "UTF-8";
/*------------------------------------------------
	BTOS トップ (2025-08 更新)
------------------------------------------------*/
/*------------------------------------------------
	スクロール用
------------------------------------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

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

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

#maincontent .container {
	overflow: visible;
}

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

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

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

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

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

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

#maincontent small {
	font-weight: inherit;
}

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

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

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

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

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

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

#maincontent caption {
	color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a.wrap {
	display: inline-block;
}

.nowrap {
	white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#custom .image {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------------------
	BTOS > トップページ (2025-09)
------------------------------------------------*/
/* ページヘッダーのスクロール固定時の領域確保 */
@media (min-width: 1025px) {
	#custom .js-site-header:has(#top-news) {
		height: 6.75rem;
		margin-bottom: calc( (60px - 2.25rem) + (28px - 1.25rem) + (1.5rem + 20px - 2.25rem));
	}
}

/* メインコンテンツ内のコンテンツ部分 */
#custom .m-top-wrapper {
	margin: 0;
	padding: 0;
}

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

/*------------------------------------------------
	BTOS > トップページ > section nav (2025-09)
------------------------------------------------*/
#custom .home-section {
	padding: 80px 0;
}

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

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

@media (min-width: 769px) {
	#custom .home-section .navi {
		margin-top: 40px;
	}
}

#custom .home-section--nav {
	min-height: 440px;
}

@media only screen and (max-width: 768px) {
	#custom .home-section--nav {
		min-height: 400px;
	}
}

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

@media only screen and (max-width: 768px) {
	#custom .top-news {
		padding: 12px 0;
		font-size: 0.875rem;
		background-image: -webkit-gradient(linear, left top, right top, color-stop(30.55%, #000), color-stop(88.75%, #515151));
		background-image: -webkit-linear-gradient(left, #000 30.55%, #515151 88.75%);
		background-image: linear-gradient(90deg, #000 30.55%, #515151 88.75%);
	}
}

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

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

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

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

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

/*------------------------------------------------
	BTOS トップ > ピックアップ KV  (2025-08)
------------------------------------------------*/
#custom #pickup-kv {
	position: relative;
	padding: 32px 0 88px;
	background-image: url("../../images/asset/top/kv/bg-kv.jpg");
	background-position: 80% 39%;
}

@media only screen and (max-width: 768px) {
	#custom #pickup-kv {
		padding: 20px 0 80px;
		background-image: url("../../images/asset/top/kv/bg-kv-sp.jpg");
		background-position: 80% center;
	}
}

#custom #pickup-kv::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	max-height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: -webkit-gradient(linear, left top, right top, color-stop(-0.01%, #D9D9D9), color-stop(69.85%, #737373));
	background: -webkit-linear-gradient(left, #D9D9D9 -0.01%, #737373 69.85%);
	background: linear-gradient(90deg, #D9D9D9 -0.01%, #737373 69.85%);
	mix-blend-mode: multiply;
	opacity: 0;
	-webkit-animation: fade-in 1.0s forwards ease;
	        animation: fade-in 1.0s forwards ease;
	-webkit-animation-delay: 1.0s;
	        animation-delay: 1.0s;
}

#custom #pickup-kv .pickup-swiper {
	opacity: 0;
	-webkit-animation: fade-in 1.0s forwards ease;
	        animation: fade-in 1.0s forwards ease;
	-webkit-animation-delay: 1.0s;
	        animation-delay: 1.0s;
}

@media only screen and (max-width: 768px) {
	#custom #pickup-kv .pickup-swiper {
		max-width: none;
		width: auto;
		height: auto;
	}
}

#custom #pickup-kv .pickup-swiper .swiper-slide {
	width: 344px;
	height: 344px;
	margin: 0 12px;
	padding: 0;
}

@media only screen and (max-width: 768px) {
	#custom #pickup-kv .pickup-swiper .swiper-slide {
		width: 280px;
		height: 280px;
		margin: 0 8px;
	}
}

#custom #pickup-kv .pickup-swiper .swiper-slide > a {
	height: auto;
	border-radius: 3px;
}

#custom #pickup-kv .pickup-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	border-radius: 3px;
}

#custom #pickup-kv .swiper-controls {
	margin-top: 22px;
}

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

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

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

/*------------------------------------------------
	BTOS トップ > ヒーローエリア (2025-08)
------------------------------------------------*/
#custom .heroarea {
	overflow: visible;
	padding: 0;
	background: #fff;
	color: #333;
}

#custom .heroarea > .container {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

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

#custom .heroarea .col-summary {
	display: none;
}

#custom .heroarea .col-search {
	-webkit-box-flex: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
	-ms-flex-preferred-size: auto;
	    flex-basis: auto;
}

#custom .heroarea .col-search .m-top-search-container {
	width: auto;
}

/*------------------------------------------------
	BTOS > トップページ > ラインアップ (2025-09)
------------------------------------------------*/
#custom .brand-lineup {
	padding: 40px 0 80px;
}

@media only screen and (max-width: 768px) {
	#custom .brand-lineup {
		padding: 20px 0 50px;
	}
}

@media only screen and (max-width: 543px) {
	#custom .brand-lineup {
		padding: 0px 0 50px;
	}
}

#custom .brand-lineup .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}

@media (max-width: 1024px) {
	#custom .brand-lineup .grid {
		gap: 15px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .brand-lineup .grid {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		max-width: 510px;
		margin: 0 auto;
	}
}

#custom .brand-lineup .grid > :is(li, .col) {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media only screen and (max-width: 768px) {
	#custom .brand-lineup .grid > :is(li, .col) {
		-ms-flex-preferred-size: calc(50% - 15px);
		    flex-basis: calc(50% - 15px);
	}
}

@media only screen and (max-width: 768px) {
	#custom .brand-lineup .images img {
		width: 100%;
		height: auto;
	}
}

#custom .brand-lineup .navi {
	margin-top: 40px;
}

@media (min-width: 1025px) {
	#custom .brand-lineup .navi {
		margin-top: 67px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .brand-lineup .navi {
		margin-top: 20px;
	}
}

/*------------------------------------------------
	BTOS > トップページ > おすすめタイヤ (2025-09)
------------------------------------------------*/
#custom .brand-nav-cartype {
	padding: 80px 0;
	background-color: #EEF5FD;
	background-image: url("../../images/asset/top/cartype/bg-brand-cartype.jpg");
	background-position: 57.5% center;
}

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

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

#custom .brand-nav-cartype h2 {
	margin-bottom: 25px;
}

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

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

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

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

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

#custom .btos-step h2 {
	margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step h2 {
		margin-bottom: 32px;
	}
	#custom .btos-step h2 i {
		font-size: 1.875rem;
		vertical-align: text-bottom;
	}
}

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

@media only screen and (max-width: 768px) {
	#custom .btos-step .grid {
		gap: 15px;
	}
}

#custom .btos-step .grid > .item {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	gap: 16px;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .grid > .item {
		gap: 12px;
	}
}

#custom .btos-step .label {
	font-size: 0.875rem;
	line-height: 1.5;
	display: inline-block;
	padding: 1px 10px 0;
	border-radius: 1em;
	border: 2px solid #f00;
	color: #f00;
}

#custom .btos-step .summary {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	font-size: 1.25rem;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step .summary {
		font-size: 0.938rem;
	}
}

#custom .btos-step:not(.with-svg) .item::after {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background: none no-repeat center;
	background-size: contain;
	width: 68px;
	height: 68px;
	display: block;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	#custom .btos-step:not(.with-svg) .item::after {
		width: 56px;
		height: 56px;
	}
}

#custom .btos-step:not(.with-svg) .item--net::after {
	background-image: url("../../images/asset/common/icon/icon-net.svg");
}

#custom .btos-step:not(.with-svg) .item--store::after {
	background-image: url("../../images/asset/common/icon/icon-store.svg");
}

#custom .btos-step:not(.with-svg) .item--care::after {
	background-image: url("../../images/asset/common/icon/icon-care.svg");
}

#custom .btos-step:not(.with-svg) .item--reserve::after {
	background-image: url("../../images/asset/common/icon/icon-reserve.svg");
}

#custom .btos-step.with-svg .item::after {
	content: none;
	background-image: none;
}

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

@media only screen and (max-width: 768px) {
	#custom .btos-step.with-svg .item .svg {
		width: 56px;
		height: 56px;
	}
}

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

#custom .btos-step.with-svg .item:hover .svg-stroke {
	-webkit-animation: svg-stroke-300 1.5s linear infinite;
	        animation: svg-stroke-300 1.5s linear infinite;
}

#custom .btos-step .navi .m-textlink {
	text-decoration: underline;
}

@media only screen and (max-width: 543px) {
	#custom .btos-step .navi .m-textlink {
		font-size: 0.813rem;
	}
}

#custom .btos-step .navi .m-textlink:where(:hover, :focus) {
	text-decoration: none;
}

/*------------------------------------------------
	BTOS > トップページ > BTOS とは (2025-09)
------------------------------------------------*/
#custom .btos-feature {
	padding: 32px 0 22px;
	background-color: #00030A;
	background-image: url("../../images/asset/top/feature/bg-btos-feature.jpg");
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature {
		padding: 108px 0 27px;
		background-image: url("../../images/asset/top/feature/bg-btos-feature-sp.jpg");
		background-position: 75% 10%;
	}
}

#custom .btos-feature::before {
	content: "";
	display: block;
	position: absolute;
	z-index: auto;
	max-height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	right: 47.5%;
	background: -webkit-gradient(linear, right top, left top, from(#00114300), color-stop(24%, #000A2780), color-stop(56.25%, #00020B));
	background: -webkit-linear-gradient(right, #00114300 0%, #000A2780 24%, #00020B 56.25%);
	background: linear-gradient(270deg, #00114300 0%, #000A2780 24%, #00020B 56.25%);
	background-blend-mode: multiply;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature::before {
		top: 10%;
		right: 0;
		background: -webkit-gradient(linear, left top, left bottom, from(#00114300), color-stop(35%, #000A2780), to(#00020B));
		background: -webkit-linear-gradient(top, #00114300 0%, #000A2780 35%, #00020B 100%);
		background: linear-gradient(180deg, #00114300 0%, #000A2780 35%, #00020B 100%);
		background-blend-mode: multiply;
	}
}

#custom .btos-feature h2 i {
	font-size: 4.25rem;
	color: inherit;
	-webkit-transform: translateY(0.08em);
	    -ms-transform: translateY(0.08em);
	        transform: translateY(0.08em);
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature h2 i {
		font-size: 1.875rem;
		vertical-align: baseline;
	}
}

#custom .btos-feature h2 i .unit {
	display: inline-block;
	margin-left: 0.15em;
	font-size: 1.75rem;
	vertical-align: middle;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature h2 i .unit {
		margin-left: 0.1em;
		font-size: 1.313rem;
	}
}

#custom .btos-feature .logo {
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature .logo {
		margin-bottom: 8px;
		text-align: center;
	}
}

#custom .btos-feature .logo img {
	height: auto;
}

@media only screen and (max-width: 768px) {
	#custom .btos-feature .logo img {
		width: 310px;
	}
}

@media (min-width: 1025px) {
	#custom .btos-feature .m-note {
		margin-right: -2em;
	}
}

#custom .btos-feature .m-note abbr {
	text-decoration: none;
}

/*------------------------------------------------
	BTOS > トップページ > B-select
------------------------------------------------*/
#custom .bselect {
	padding: 100px 0;
}

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

#custom .bselect-container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 292px;
	padding-bottom: 20px;
}

@media (max-width: 1199px) {
	#custom .bselect-container {
		max-width: 1080px;
	}
}

@media only screen and (max-width: 768px) {
	#custom .bselect-container {
		max-width: 510px;
		min-height: 0;
		margin: 0 auto;
		padding: 0;
	}
}

#custom .bselect h2 {
	margin-bottom: 0.8em;
	text-align: left;
}

@media (max-width: 1024px) and (min-width: 769px) {
	#custom .bselect h2 {
		font-size: 1.5rem;
	}
}

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

@media only screen and (max-width: 374px) {
	#custom .bselect h2 br {
		display: none;
	}
}

#custom .bselect p.text {
	padding-right: 60px;
}

@media (max-width: 1024px) {
	#custom .bselect p.text {
		padding-right: 30px;
	}
}

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

@media (min-width: 769px) {
	#custom .bselect .navi {
		margin-top: 30px;
		margin-left: 0;
	}
}

#custom .bselect .background {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	padding: 20px;
	background: url("../../images/asset/top/step/bg-step-bselect.jpg") no-repeat center 20%;
	background-size: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
	#custom .review .m-review-tab__btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
		border-radius: 4px 4px 0 0;
		background: #fff;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 769px) {
	#custom .home-swiper[data-swiper-pc-rows="2"] {
		height: 425px;
	}
	#custom .home-swiper[data-swiper-pc-rows] .swiper-slide {
		height: auto;
	}
}

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

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

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

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

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

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

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

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

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

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

#custom .home-swiper-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	margin-top: 47px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------------------
	BTOS > トップページ > おすすめコンテンツ
------------------------------------------------*/
#custom .m-top-wrapper .recommend-content h2 {
	margin-bottom: 1.75rem;
}

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

#custom .recommend-content {
	padding-top: 52px;
	padding-bottom: 86px;
}

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

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

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

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

#custom .recommend-content .grid > li {
	-ms-flex-preferred-size: calc(100% / 3 - 16px);
	    flex-basis: calc(100% / 3 - 16px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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