<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@media screen and (max-width: 896px) {
  /**スマホ非表示**/
  .sp_none {
    display: none;
  }
	
	/**ポイントバナー**/
  .sp_point_banner{
		padding: 20px 0 10px;
    margin-left: -7px;
	}
		
	.sp_point_banner table{
		margin: auto;
	}
	
	.sp_point_banner tr{
		background-color: #ebe9e3;
	}
		
	.sp_point_banner img{
		display: block;
	}

  .sp_point_banner a{
    display: block;
  }

  /**スマホヘッダー**/
  /* .sp_header {
    background-color: #fff;
  }

  .sp_header_inner {
    padding-left: 15px;
    padding-right: 8px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
  } */

  /**サイトロゴ**/
  /* .sp_site_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sp_site_logo .home_link {
    display: block;
    width: 46%;
    padding-top: 10px;
    margin-right: 3%;
  }

  .sp_header_catch {
    width: 37%;
  }

  .sp_header_catch p {
    font-size: 12px;
    font-weight: 600;
  }

  .sp_header_catch p .sp_span_free {
    color: #d61518;
  } */

  /**店舗検索**/
  /* .sp_shop_search {
    width: 14%;
  }

  .sp_shop_search a {
    display: block;
  }

  .sp_shop_search .sp_shop_search_icon {
    display: block;
    margin: auto;
    width: 18px;
    margin-bottom: 5px;
    color: #555555;
  }

  .sp_shop_search span {
    display: block;
    text-align: center;
    font-size: 10px;
  } */

  /**スマホトップメニュー**/
  .sp_menu {
    background-color: #ebe9e3;
    width: 100%;
  }

  .sp_menu_inner {
    padding-left: 11px;
    padding-right: 13px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 20px;
    height: 62px;
    box-sizing: border-box;
  }

  /**検索窓**/
  .sp_nav_search {
    width: calc(100% - 140px);
  }

  .search_form input[type="text"] {
    width: 100%;
  }

  /**メニューアイコン**/
  .sp_menu_icon {
    display: flex;
    justify-content: space-between;
    width: 84px;
  }

  .sp_menu_icon a {
    display: block;
    position: relative;
    width: 40px;
  }

  .sp_menu_icon img {
    display: block;
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .sp_menu_icon .sp_mypage_icon {
    width: 28px;
  }

  .sp_menu_icon .sp_mycart_icon {
    width: 30px;
  }

  /**スマホドロワーメニュー**/
  .hamburger_icon {
    width: 26px;
    position: absolute;
    top: 61%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .sp_nav_drawer {
    position: relative;
  }

  /*チェックボックス等は非表示に*/
  .nav_unshown {
    display: none;
  }

  /*アイコンのスペース*/
  .nav_open {
    display: inline-block;
    width: 28px;
    height: 22px;
    vertical-align: middle;
  }

  /*閉じる用の薄黒カバー*/
  .nav_close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 1100;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }

  /*チェックが入ったらもろもろ表示*/
  .sp_nav_drawer input:checked ~ .nav_close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
  }

  .sp_nav_drawer input:checked ~ .nav_close_icon {
    display: block;
    /*クローズアイコン表示*/
    z-index: 10000;
    font-size: 30px;
    position: fixed;
    right: 10px;
    top: 20px;
    width: 30px;
  }

  .sp_nav_drawer input:checked ~ .nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }

  /*中身*/
  .nav_content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る*/
    max-width: 330px;
    /*最大幅*/
    height: 100vh;
    background: #fff;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    /*左に隠しておく*/
  }

  .nav_content .sp_drawer_info li a {
    padding-left: 8px;
  }

  .nav_content ul {
    padding: 20px;
    list-style: none;
  }

  .nav_content ul:not(:last-child) {
    border-bottom: solid 4px #ddd;
  }

  .nav_content ul li {
    margin: 10px 0;
  }

  .nav_content ul li a {
    display: flex;
    height: 40px;
  }

  .nav_content ul li .drawer_icon {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 10px;
  }

  .nav_content ul li .drawer_icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nav_content ul li span {
    display: block;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
  }

  .nav_content ul li .drawer_search_icon {
    width: 24px;
  }

  .nav_content ul li .drawer_mypage_icon {
    width: 28px;
  }

  .nav_content ul li .drawer_fav_icon {
    width: 26px;
  }

  .nav_content ul li .drawer_info_icon {
    width: 26px;
  }

  .nav_content ul li .drawer_contact_icon {
    width: 26px;
  }

  /**タブボタン**/
  /* .sp_tab_btn {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    display: flex;
  }

  .tab_btn {
    width: 20%;
    text-align: center;
    font-size: 12px;
    padding: 14px 0 8px;
  }
  .tab_btn a {
    display: block;
  }

  img.btn_img {
    height: 20px;
    width: auto;
    display: block;
    margin: auto;
    margin-bottom: 5px;
  }

  img.more_icon {
    height: 3px;
    margin: 0 0 3px 5px;
  }

  .is_active {
    border-bottom: solid 3px;
  } */

  /***タブパネル*/
  /* .sp_panel {
    width: 100%;
    border-top: solid 1px;
    position: relative;
    box-sizing: border-box;
    height: 165px;
  }

  .panel {
    display: none;
  }

  .panel.is_show {
    display: block;
    position: relative;
    z-index: 1000;
    background-color: #fff;
  }

  .panel.is_show ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 5px 10px 0 10px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  } */

  /**タブパネル 自転車**/
  /* .bike_panel li {
    width: 25%;
  }
  .bike_panel li a {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
  }

  .bike_panel_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .bike_panel_icon img {
    height: 30px;
  } */

  /**タブパネル パーツ**/
  /* .parts_panel li {
    width: 25%;
  }
  .parts_panel li a {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
  }
	
	.bland_panel li a img{
		width: 100%;
	}	

  .parts_panel_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .parts_panel_icon img {
    height: 30px;
  } */

  /**タブパネル ブランド**/
  /* .panel.tab_C {
    padding-bottom: 20px;
  }

  .bland_panel li {
    width: 23%;
    margin: 10px 0;
  }
  .bland_panel li:not(:nth-child(4n)) {
    margin-right: 2.6%;
  }
  .bland_panel li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

   */

   .sp_bland_link {
    display: inline-block;
    /* position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); */
    text-align: center;
    padding: 7px 14px;
    margin: 10px auto 20px;
    background-color: #0d3219;
    color: #fff;
    border-radius: 14px;
    font-size: 14px;
  } 
  /**トップスライダー**/
  .swiper-top .button_next_top, .swiper-top .button_prev_top {
    display: none;
  }

  .top_slider {
    padding: 0 0 25px 0;
	height: auto;
  }

  .contents_inner {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }

  /**コンセプト**/
  .concept {
    display: flex;
    flex-wrap: wrap;
  }

  .concept_title {
    /*width: 65%;
    margin-right: 5%;*/
  }

  .concept_title .concept_catch {
    font-size: 16px;
    margin-top: 10px;
  }

  .concept_title h3 {
    font-size: 20px;
  }

  .stuff_img {
    width: 100%;
    margin-top: 15px;
  }

  .stuff_img img {
    width: 60%;
    margin: 0 auto;
  }

  .shop_survice {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
    padding: 0 5px;
  }

  .shop_survice &gt; p font {
    display: inline;
  }

  .shop_survice ul {
    display: flex;
    flex-wrap: wrap;
  }

  .shop_survice ul li {
    padding: 13px;
  }

  .shop_survice ul .concept_uketori {
    width: 48%;
  }

  .shop_survice ul .concept_seibi {
    width: 48%;
  }

  .shop_survice ul .concept_mate {
    width: 100%;
    margin-top: 15px;
  }

  .shop_survice ul .concept_mate p {
    font-size: 18px;
  }

  .shop_survice ul .concept_mate p span {
    display: inline-block;
    color: #555;
    font-size: 16px;
    font-weight: 600;
  }

  /**セール、ランキングスライダー**/
  .bike_section_inner .swiper-container {
    width: 80%;
  }

  .bike_section_inner .swiper-button-prev {
    left: 0;
  }

  .bike_section_inner .swiper-button-next {
    right: 0;
  }

  /**ブランドの並び**/
  .section_bland_inner ul {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .section_bland_inner ul li {
    width: 42%;
    margin-bottom: 40px;
  }
  .section_bland_inner ul li:nth-child(odd) {
    margin-right: 16%;
  }
  .section_bland_inner ul li img {
    max-width: 180px;
  }

  /**リンクボタン**/
  .bike_section_link a span {
    width: 280px;
  }

  .bike_section_link a:after {
    width: 280px;
  }

  .footer_info_inner {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }

  .footer_menu_inner {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    text-align: center;
  }

  .footer_menu_list {
    margin-bottom: 30px;
  }

  .footer_menu_list ul {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
  }

  /**キャッシュレス還元バナー**/
  .cashless_bn_inner p {
    font-size: 16px;
  }

  .cashless_bn_inner p span {
    font-size: 20px;
  }

  .cashless_bn_inner {
    height: 19px;
  }

  .cashless_bn {
    padding-top: 7px;
  }

  /*セール、ランキング*/
  .bike_section_inner .swiper-slide a img {
    width: 90%;
    display: block;
    margin: auto;
  }

  .bike_section_inner .swiper-button-next, .bike_section_inner .swiper-button-prev {
    background-color: transparent;
    width: 20px;
    height: 20px;
  }

  .bike_section_inner .swiper-button-next {
    background-image: url(https://ic4-a.wowma.net/mi/w/1280/h/1280/q/90/bcimg1-a.wowma.net/plus/u45880753/pc/cyclespot/css/../img/common/allow_right.png);
  }

  .bike_section_inner .swiper-button-prev {
    background-image: url(https://ic4-a.wowma.net/mi/w/1280/h/1280/q/90/bcimg1-a.wowma.net/plus/u45880753/pc/cyclespot/css/../img/common/allow_left.png);
  }
	
	/**トップへ戻るボタン**/
	.gotop_btn{
		width: 48px;
		height: 48px;
		bottom: 10px;
		right: 10px;
	}

	/**臨時お知らせ**/
	.caution{
		width: calc(100% - 30px);
		margin-bottom: 15px;
	}
	
	.caution span{
		display: block;
	}
	
	.contact_form_container{
		height: 1540px;
	}
}

/**ヘッダー改修**/
@media screen and (max-width: 896px) {
  .header_inner{
    padding-left: 15px;
    padding-right: 8px;
    width: 100%;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
  }

  /**ロゴ**/
  .site_logo{
    width: 86%;
    height: auto;
  }

  .site_logo a{
    width: 53%;
    max-width: 250px;
  }

  .header_logo{
    width: 100%;
    margin: 8px 0 0;
    display: block;
  }

  /**キャッチコピー**/
  .header_catch{
    font-size: 12px;
    font-weight: 600;
    width: 43%;
    margin: 0 0 0 4%;
  }

  .sp_block{
    display: block;
  }

  .header_catch .span_free{
    border-bottom: none;
  }

  /**上部店舗検索ボタン**/
  .shopping_menu{
    width: 14%;
    padding: 0;
  }

  .shopping_guide{
    margin: 0;
  }

  .shopping_guide li a{
    font-size: 10px;
  }

  .shopping_guide .icon .search_icon{
    width: 18px;
  }

  /**共通ナビゲーション**/
  .nav{
    margin: 0 0 185px;
    background-color: #fff;
  }

  .nav_inner{
    width: 100%;
    max-width: 740px;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  /**ナビゲーションボタン部分**/
  .nav_menu &gt; li {
    height: 70px;
    line-height: 1;

    width: 20%;
    text-align: center;
    font-size: 12px;
    padding: 14px 0 8px;
  }

  .nav_menu &gt; li .nav_icon{
    display: block;
    margin: 0 auto 5px;
  }

  .nav_menu &gt; li .more_icon {
    height: 3px;
    margin: 0 0 0 5px;
  }

  /**パネル部分**/
	.sub_menu{
		border-top: solid 1px #555;
		top: 70px;
    padding: 0;

    box-shadow: 0px 4px 8px -3px #ccc;
    -webkit-box-shadow: 0px 4px 8px -3px #ccc;
    -moz-box-shadow: 0px 4px 8px -3px #ccc;
	}

  /**パネル部分中身**/
  .sub_menu ul{
    width: 100%;
    max-width: 740px;
    padding: 5px 5px ;
    box-sizing: border-box;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .sub_menu ul li{
    width: 25%;
  }

  .sub_menu ul li a{
    padding: 10px 0;
  }

  .sub_menu ul li a span .sp_none{
    display: none;
  }

  /**クリック時**/
  .nav_menu &gt; li.active:hover .sub_menu {
    display: block;
  }

  .active{
    border-bottom: solid 3px ;
  }

	.active .sub_menu{
		display: block;
	}

  /**自転車本体パネル**/
  .bike_icon{
    height: 30px;
    margin: 0 0 10px;
  }

  .bike_icon .norway_icon{
    width: 24px;
    height: auto;
  }

  .bike_icon .vitaminbike_icon{
    width: 64px;
    height: auto;
  }

  .bike_icon .vitaminbike_icon{
    width: 64px;
    height: auto;
  }

  /**パーツパネル**/
  .sub_menu_parts{
    padding: 5px  10px;
  }
  .parts_icon{
    height: 30px;
    margin: 0 0 10px;
  }

  /**パーツアイコンのサイズ**/
  .sub_menu_parts .parts_icon img{
    height: 30px;
    width: auto;
  }

  .sub_menu_parts .parts_icon .childseat_icon{
    height: 40px;
  }

  .sub_menu_parts .parts_icon .battery_icon{
    height: 40px;
  }

  .sub_menu_parts .parts_icon .apparel_icon{
    height: 38px;
  }	

  .sub_menu_parts li{
    margin-bottom: 0px;
  }

  .sub_menu_parts li:nth-child(n+1):nth-child(-n+8) {
    margin-bottom: 0px;
  }
  
  /**ブランドパネル**/
  .sub_menu .sub_menu_bland li {
    width: 23%;
    margin: 0 2.6% 0 0;
  }

  .sub_menu .sub_menu_bland li:not(:nth-child(7n)) {
    margin: 0 2.6% 0 0;
  }

  .sub_menu .sub_menu_bland li:nth-child(4n) {
    margin: 0 0 0 0;
  }

  .sub_menu .sub_menu_bland li:not(:nth-child(-n+7)){
    margin-top: 0;
  }

  .sub_menu .sub_menu_bland li a{
    box-sizing: border-box;
  }

}</pre></body></html>