/* ↓↓ページヘッダー 設定 開始↓↓ */
/* ページヘッダーロゴ配置 開始 */
.fs-l-header__contents {
    grid-template-rows: auto auto;
    grid-template-columns: 30% 40% 30%;
  }
/* ページヘッダーロゴ配置 終了 */

/* ページヘッダー背景色（通常ページ） 開始 */
.fs-l-header__contents {
	background-color: #FFFF00;
        padding-top: 10px;
	margin-top: 0px;
}
/* ページヘッダー背景色（通常ページ） 終了 */

/* ページヘッダー背景色（ログイン・カート画面） 開始 */
.fs-l-header--min {
	background-color: #FFFF00;
}
/* ページヘッダー背景色（ログイン・カート画面） 終了 */
/* ↑↑ページヘッダー 設定 終了↑↑ */

/* ↓↓トップページ設定 開始↓↓ */
/* トップページ横幅1000pxイメージ配置設定 開始 */
.toppage_image1000 {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-right: 0px;
	margin-left: 0px;
}
/* トップページ横幅1000pxイメージ配置設定 終了 */

/* トップページ会員情報ボーダー設定 開始 */
.fs-p-accountInfo {
	border: 1px solid #999;
}
/* トップページ会員情報ボーダー設定 終了 */

/* トップページ会員案内背景設定 開始 */
.fs-p-announcement {
	background-color: #f7f7f7;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}
/* トップページ会員案内背景設定 終了 */

/* トップページランキングレコメンドタイトル文字設定（SP） 開始 */
.head_category_title_text {
	font-size: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,;
	font-weight: bold;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #FC9A04;
	width: 97%;
	margin-top: 15px;
	margin-bottom: 15px;
	vertical-align: middle;
	padding-left: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #333;
}
/* トップページランキングレコメンドタイトル文字設定（SP） 終了 */

/* トップページコラム欄配置 開始 */
.fs-pt-column--3 {
	text-align: center;
        margin-top: 20px;
}

.fs-pt-column--2 {
	text-align: center;
        margin-top: 20px;
}

.fs-pt-column--4 {
	text-align: center;
        margin-top: 20px;
}
/* トップページコラム欄配置 終了 */

/* トップページアコーディオンメニュー 開始 */
/* アコーディオンメニュー 親 大分類カテゴリー 開始 */
label {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	display: block;
	margin: 0;
	color :#333;
	background :#fff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	cursor :pointer;
	width: auto;
	background-image: url(https://www.websports.co.jp/images/mark02.gif);
	background-repeat: no-repeat;
	background-position: 95% center;
	font-size: 110%;
	font-weight: normal;
}
/* アコーディオンメニュー 親 大分類カテゴリー 終了 */

/* アコーディオンメニュー 子 詳細カテゴリー 開始*/
#navi_menu{
	list-style: none;
	width: auto;
	padding: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#navi_menu li{
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
#navi_menu li:last-child{
	border-bottom: 1px;
}
#navi_menu li a{
	position: relative;
	display: block;
	margin: 0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	background-color: #ffd291;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	font-size: 100%;
}
#navi_menu li a:before{
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 35px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #999;
}
#navi_menu li a:after{
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 40px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #ffd291;
}
/* アコーディオンメニュー 子 詳細カテゴリー 開始*/

/* メニュー開閉時アニメーション 開始 */
.ac_menu ul {
    background :#f4f4f4;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac_menu li {
    padding: 5px;
}
/* メニュー開閉時アニメーション 終了 */

/* ▽▽アコーディオン開閉指定▽▽ 開始 */
input[type="checkbox"].bellows + ul{
    height: 0;/* チェックが入っていない時の高さ */
    overflow: hidden;
}
/* ▽▽アコーディオン開閉指定▽▽ 終了 */

/* △△アコーディオン開閉指定△△ 開始 */
input[type="checkbox"].bellows:checked + ul{
    height: 100%;/* チェックが入っているときの高さ */
}
/* △△アコーディオン開閉指定△△ 終了 */

/* チェックボックスの非表示 開始 */
input[type="checkbox"].bellows{
    display: none;
}
/* チェックボックスの非表示 終了 */
/* トップページアコーディオンメニュー 終了 */
/* ↑↑トップページ設定 終了↑↑ */


/* ↓↓商品グループ 商品詳細ページ設定 開始↓↓ */
/* 詳細ページ 予約商品の入荷時期のお知らせバナー 開始 */
.Reservation_item_delivery_date {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
	font-weight: normal;
	background: #6492a8;
	color: #fff;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 15px;
	line-height: 20px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* 詳細ページ 予約商品の入荷時期のお知らせバナー 終了 */

/* 詳細ページ ユーザーボタン（問合せ） 開始 */
.user_button_toiawase {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
	font-weight: normal;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 14px;
	line-height: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border: 1px solid #888888;
	background-color: #FFF;
	border-radius: 3px;
}
/* 詳細ページ ユーザーボタン（問合せ） 終了 */

/* グループページ・詳細ページへのリンク用（もっと見る）ボタン 開始 */
.link_button_1 {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	display: block;
	margin: 0;
	color :#333;
	background :#fff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	cursor :pointer;
	width: auto;
	background-image: url(https://www.websports.co.jp/images/mark02.gif);
	background-repeat: no-repeat;
	background-position: 95% center;
	font-size: 110%;
	font-weight: normal;
}
/* グループページ・詳細ページへのリンク用（もっと見る）ボタン 終了 */
/* ↑↑商品グループ 商品詳細ページ設定 終了↑↑ */


/*　↓↓LINEお友達登録ページ クーポンページ 開始 ↓↓*/
/*　LINEお友達登録ページボタン枠 開始 */
#line_botton {
	text-align: center;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 25px;
	border: 1px solid #333;
	font-size: 15px;
	text-decoration: none;
	border-radius: 10px;
}
/*　LINEお友達登録ページボタン枠 終了　*/

/* LINEお友達募集案内ページ 開始 */
.line_friends_text {
	width: 95%;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
	color: #000;
	margin-bottom: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
	border: 2px solid #00BD00;
	border-radius: 10px;
	margin-right: auto;
	margin-left: auto;
}

.line_friends_text a img {
	margin-top: 5px;
}
/* LINEお友達募集案内ページ 終了 */

/* LINEお友達募集案内ページテキスト 開始 */
.line_friends_info_text {
	font-size: 14px;
	width: 100%;
	margin-bottom: 15px;
	line-height: 20px;
	padding: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* LINEお友達募集案内ページテキスト 終了 */
/* ↑↑LINEお友達登録ページ クーポンページ 終了↑↑ */


/* ↓↓特集ページ（SP） 設定 開始↓↓ */
/* 特集ページ タイトルテキスト 開始 */
.feature_page_titletext_sp {
	font-size: 23px;
	color: #333;
	font-weight: bold;
	text-decoration: underline;
	line-height: 30px;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	margin-bottom: 20px;
}
/* 特集ページ タイトルテキスト 終了 */

/* 特集ページ タイトルテキスト 開始 */
.feature_page_midasitext_sp {
font-size: 17px;
	color: #333;
	font-weight: bold;
	line-height: 21px;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 5px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* 特集ページ タイトルテキスト 終了 */

/* 特集ページ タイトルテキスト 黒背景 白文字 開始 */
.feature_page_midasitext_blkback_center_fontwht_fontbold {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	line-height: 21px;
	font-weight: bold;
	background-color: #000;
	color: #FFF;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 5px;
	text-align: center;
}
/* 特集ページ タイトルテキスト 黒背景 白文字 終了 */

/* 特集ページ 本文商品タイトル 開始 */
.feature_page_itemnametext_sp {
	font-size: 14px;
	line-height: 20px;
	background-color: #333;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 1%;
	width: 98%;
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 1%;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}
/* 特集ページ 本文商品タイトル 終了 */

/* 特集ページ 本文テキスト 開始 */
.feature_page_maintext_sp {
	width: 98%;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-right: 1%;
	padding-bottom: 15px;
	padding-left: 1%;
	font-size: 14px;
	line-height: 18px;
}
/* 特集ページ 本文テキスト 終了 */

/* 特集ページ 本文テキスト 黒背景 白文字 開始 */
.feature_page_maintext_blkback_fontwht {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #FFF;
	background-color: #000;
	width: 98%;
	padding-right: 1%;
	padding-left: 1%;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 15px;
}
/* 特集ページ 本文テキスト 黒背景 白文字 終了 */

/* 特集ページ 本文画像 開始 */
.feature_page_image_sp {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}
/* 特集ページ 本文画像 終了 */

/* 特集ページ 商品リンク画像 開始 */
.feature_page_item_link_image_sp {
	text-align: center;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
/* 特集ページ 商品リンク画像 終了 */

/* 特集ページ 分類リンク画像 開始 */
.feature_page_link_sp {
	float: left;
	width: 50%;
	padding-right: 2%;
	padding-left: 2%;
	margin-bottom: 30px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* 特集ページ 分類リンク画像 終了 */

/* 特集ページ 商品リンク画像_2 開始 */
.feature_page_item_link_image_2_sp {
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	margin-top: 30px;
}
/* 特集ページ 商品リンク画像_2 終了 */

/* 特集ページ 目次テキスト 開始 */
.feature_page_contentstext_sp {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border: 1px solid #CCC;
	border-radius: 10px;
	font-size: 13px;
	line-height: 25px;
	padding-left: 15px;
        padding-right: 15px;
	text-decoration: underline;
}
/* 特集ページ 目次テキスト 終了 */

/* 特集ページ 画像・テキスト横並び 開始 */
.feature_page_flexbox {
	display: flex;
}

.feature_page_text_image_box_a {
	width: 50%;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 10px;
	padding-left: 10px;
}
.feature_page_text_image_box_b {
	width: 50%;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	clear: right;
	padding-right: 10px;
	padding-left: 10px;
}

 @media screen and (max-width: 1000px) {
     .feature_page_flexbox {
         display: block;
     }
     .feature_page_flexbox .feature_page_text_image_box_a {
         width: 100%;
         margin: 0 auto;
     }
     .feature_page_flexbox .feature_page_text_image_box_b {
         width: 100%;
         margin: 0 auto;
     }
 }
/* 特集ページ 画像・テキスト横並び 終了 */
/* ↑↑特集ページ（SP） 設定 終了↑↑ */


/* ↓↓回遊性リンク設定（商品グループ　商品詳細ページ）開始↓↓ */
/* 回遊性リンク（商品詳細ページ）商品別バリエーション_レコメンド商品_タイトル 開始 */
.recommend_name_text {
	font-size: 15px;
	text-align: center;
	width: 96%;
	margin-left: 2%;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #222;
	border-bottom-color: #222;
	display: block;
	line-height: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-right: 2%;
}
/* 回遊性リンク（商品詳細ページ）商品別バリエーション_レコメンド商品_タイトル 終了 */

/* 回遊性リンク（商品グループ 商品詳細）商品グループカテゴリー一覧へのリンク 開始 */
#page_relation_link {
	height: 50px;
	width: 100%;
	font-size: 15px;
	line-height: 50px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #6492a8;
	display: block;
	color: #FFF;
	background-color: #6492a8;
	margin-bottom: 20px;
}
/* 回遊性リンク（商品グループ 商品詳細）商品グループカテゴリー一覧へのリンク 終了 */

/* 回遊性リンク（商品詳細ページ）他の商品バリエーションへのリンク 開始 */
#item_relation_link {
	height: 50px;
	width: 100%;
	font-size: 15px;
	line-height: 50px;
	font-weight: normal;
	text-align: left;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #333;
	border-bottom-color: #333;
	display: block;
	color: #333;
	background-color: #FFF;
	margin-bottom: 15px;
}
/* 回遊性リンク（商品詳細ページ）他の商品バリエーションへのリンク 終了 */
/* ↑↑回遊性リンク設定（商品グループ　商品詳細ページ）終了↑↑ */

/* 【消去予定】回遊性リンク（商品グループ 商品詳細）商品グループカテゴリー一覧へのリンク 開始（名称間違い 消去予定） */
#page_relaxation_link {
	height: 50px;
	width: 100%;
	font-size: 15px;
	line-height: 50px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #6492a8;
	display: block;
	color: #FFF;
	background-color: #6492a8;
	margin-bottom: 20px;
}
/* 【消去予定】回遊性リンク（商品グループ 商品詳細）商品グループカテゴリー一覧へのリンク 終了（名称間違い 消去予定） */
.feature_page_text_image_box_a {
	float: left;
	width: 49%;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.feature_page_text_image_box_b {
	float: left;
	width: 49%;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
}
