@charset "utf-8";

* {
	box-sizing: border-box;
}

  .all_wrapper img {
    width: 100%;
  }

#goto_top {
	display: none;
}

/*========= レイアウトのためのCSS ===============*/

#header{
	padding: 40px;
	background:#666;
    color: #fff;
	text-align: center;
}

.box{
    color: #fff;
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#box1{
    display: none;
}


#box2{
	background-image: url(../img/bike_img_01.webp);
	background-repeat: no-repeat;
	background-size: 1200px;
	background-position: center;
	margin: 0 auto;
	background-color: #999;
}


/*768px以下は画像変更*/
@media screen and (max-width:768px) {
	#box1{
	display: block;
	background-image: url(../img/concept_sp3.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-color: #999;
	}

	#box2 {
		display: none;
	}

}

#box3{
    background: #777;
}
#box4{
    background: #555;
}
#box5{
    background: #333;
}
#box6{
    background: #000;
}


#footer{
	padding:40px;
	text-align:center;
}


/*========= ページネーションCSS ===============*/

.pagination {
	display: none;
	position:fixed;
	right:20px;
	top: 50%;
  	transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
}

.pagination a {
	display: none;
	/*display:block;*/
	height:20px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	padding:4px;
}

.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}

/*現在地表示のテキストの設定*/



	.pagination a .hover-text{
		display: none;
	}

/*.pagination a .hover-text {
position:absolute;
right:15px;
top:0;
opacity:0;
-webkit-transition: opacity 0.5s ease;
transition: opacity 0.5s ease;
padding-right: 15px;
}

.pagination a:hover .hover-text {
	opacity: 1;
}

.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:"";
	position: absolute;
	margin:auto;
	top:0;
	right:3px;
	bottom:0;
}
	*/

/*768px以下は現在地表示のテキストを非表示*/

/*@media screen and (max-width:768px) { 
	.pagination a .hover-text{
		display: none;
	}	
}*/



/*-----------------サムネイル-----------------------*/


/*==================================================
スライダーのためのcss
===================================*/

#content1 {
	width: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
#content1 img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
	margin:0 0 5px 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	display: none;
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
		display: none;
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
		display: none;
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	margin: 0 auto;
	cursor: pointer;
	outline: none;
	background:#333;
	width:25%!important;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}

/*========= レイアウトのためのCSS ===============*/

/*エリア全体を中央寄せ*/
#content1 {
	width:94%;
	max-width:900px;
	margin:0 auto;
}

#content1 ul{
	margin:0;
	padding: 0;
	list-style: none;
}




/*768px以下表示*/
@media screen and (max-width:768px) { 

	#content1 {
	max-width:700px;
	}

	#content1 ul{
	max-width: 700px;
}



}





  /*-----------------サムネイル-----------------------*/
