@charset "utf-8";

/*********************************

  01. Commons
  02. Other

********************************/

/*====================================================================

　01. Global Navigation

====================================================================*/

html,
body,
#contain {
  width: 100%;
/*  height: 100%;*/
}

#contain {
  position: relative;
}

.header,
.footer,
#drawer,
.ranking {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 75%;
  line-height: 1.7;
  background: #f8f5eb;
}


/* ヘッダー
----------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2002;
  width: 100%;
  height: 57px;
  /* background: #fff; */
  box-shadow: 0px 0px 3px 1px #ccc;
  border-bottom: 1px solid #808080;
}

/* ロゴ */
.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.header_logo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  max-width: 160px;
}

/* ランキングボタン */
.header_rankBtn {
  position: absolute;
  top: 0;
  right: 85px;
  width: 41px;
  height: 52px;
  /* background: #5ecfe8; */
  background: #2db9d8;
  border-radius: 0 0 2px 2px;
  /* box-shadow: 1px 1px 1px 0px #999; */
}
.header_rankBtn img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  max-width: 24px;
  margin: auto;
}
.header_rankBtn.active {
  position: absolute;
  top: 0;
  right: 85px;
  width: 41px;
  height: 52px;
  background: #2db9d8 url(../images/sp/mc/btn_header_rank-close.png) 50% 50% no-repeat;
  background-size: 20px;
  border-radius: 0 0 2px 2px;
}
.header_rankBtn.active img {
  display: none;
}

/* メニューボタン */
.header_menuBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 81px;
  height: 52px;
  /* background: #808080; */
  background: #707070;
  border-radius: 0 0 2px 2px;
  /* box-shadow: 1px 1px 1px 0px #999; */
}
.header_menuBtn img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  max-width: 64px;
  margin: auto;
}


/* メイン
----------------------------------------------------------------------------- */

#contain {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 57px;
  overflow: scroll;
  /* 慣性スクロール（iOS用） */
  -webkit-overflow-scrolling: touch;
}

#contain.open {
  /* transition: all .4s linear; */
  filter: blur(5px);
}

/* オーバーレイ要素 */
#overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2003;
  background: rgba(255, 255, 255, .75);
}

/* AD広告 */
.ad_bannerWrap {
  padding: 20px 0;
  text-align: center;
}
.ad_bannerWrap_white {
  padding: 20px 0 80px 0;
  text-align: center;
  background: #fff;
}

/* メインコンテンツ上部余白*/
.article_index {
  margin-top: 20px;
}
/*
.main_content {
  margin-top: 20px;
}
*/


/* ドロワーメニュー
----------------------------------------------------------------------------- */

#drawer {
  position: fixed;
  top: 0;
  right: -290px;
  z-index: 2004;
  width: 280px;
  color: #fff;
  background: #707070;
  box-shadow: 0 0 5px 0 #999;
  /* アニメーション指定 */
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out; */
}
#drawer a {
  font-size: 105%;
  text-decoration: none;
}
#drawerInner {
  overflow-x: hidden;
  overflow-y: scroll;
  /* 慣性スクロール（iOS用） */
  -webkit-overflow-scrolling: touch;
}

/* メニュー展開アニメーション */
#drawer.open {
  -webkit-transform: translate3d(-290px, 0, 0);
     -moz-transform: translate3d(-290px, 0, 0);
        o-transform: translate3d(-290px, 0, 0);
          transform: translate3d(-290px, 0, 0);
}

/* CLOSEボタン */
.closeBtn {
  position: relative;
  width: 100%;
  height: 45px;
  background: #2db9d8;
}
.closeBtn img {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  max-width: 70px;
  margin: auto;
}

/* ログインボタンなど */
.loginWrap {
  display: table;
  width: 270px;
  margin: 5px auto 0;
  border-collapse: separate;
  border-spacing: 10px;
}
.loginWrap_memberBtn {
  display: table-cell;
}
.loginWrap_memberBtn a {
  display: block;
  width: 120px;
  padding: 5px;
  font-size: 110%;
  text-align: center;
  color: #fff;
  background: #2ab0ce;
  border-radius: 3px;
  box-shadow: 1px 1px 1px 0px #000;
}

/* サイト内検索 */
.searchWrap {
  width: 255px;
  margin: 0 auto;
  text-align:center;
}
.searchWrap label {
  display: none;
}
.searchWrap_inputBox {
  width: 175px;
  height: 29px;
  color: #000;
  border-radius: 0;
}
.searchWrap_submitBtn {
  padding: 5px 20px;
  font-size: 110%;
  /* color: #fff; */
  background: #f1eede;
  border-radius: 3px;
  box-shadow: 1px 1px 1px 0px #000;
}

/* Gナビ：通常項目 */
.acMenu dt a,
.acOpen {
  display: block;
  width: 100%;
  height: 50px;
  padding-left: 30px;
  font-size: 105%;
  line-height: 50px;
  border-top: #f8f8f8 1px solid;
}
.acMenu dt:not(.acOpen):not(.external-link) {
  background: url(../images/sp/mc/ico_angle-right_white.png) 260px 50% no-repeat;
  background-size: 10px;
}
.acMenu dt a,
.acMenu div a,
.viewer a {
  color: #fff;
}

/* はじめての方へ */
/*
.beginners {
  background: url(../images/sp/mc/ico_wakaba-mark.png), url(../images/sp/mc/ico_angle-right_white.png);
  background-position: 5px 50%, 260px 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 22px, 10px;
  background-color: #5e889d;
}
*/

/* 外部リンク */
.external-link {
  background: url(../images/sp/mc/ico_external-link.png) 256px 50% no-repeat;
  background-size: 15px;
}

/* Gナビ：アコーディオン項目（親） */
.acOpen {
  background: url(../images/sp/mc/ico_ac_close.png), url(../images/sp/mc/ico_right-dir.png);
  background-position: 255px 50%, 12px 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 16px, 7px;
}
.acOpen.active {
  background: url(../images/sp/mc/ico_ac_open.png), url(../images/sp/mc/ico_down-dir.png);
  background-position: 255px 50%, 9px 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 16px, 13px;
  /* background-color: #666; */
}

/* Gナビ：アコーディオン項目（子） */
.acMenu dd {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: none;
  background: #3d3d3d;
}
.acMenu div a {
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 30px;
  font-size: 90%;
  line-height: 40px;
  background: url(../images/sp/mc/ico_angle-right_white.png) 260px 50% no-repeat;
  background-size: 8px;
  border-top: #f8f8f8 1px solid;
}

/* スポーツモアロゴ */
.acMenu_sports-more {
  max-height: 24px;
  margin-bottom: 6px;
}

/* スポーツアイコン */
.acMenu_sports_ico {
  max-width: 20px;
}

/* はじめての方へアイコン */
.acMenu_beginners_ico {
  max-width: 20px;
  margin: 0 5px 0 -23px;
}

/* ニュース系アイコン */
.acMenu_news_ico {
  max-width: 18px;
  margin: 0 7px 0 -22px;
}

/* アルビアイコン */
.acMenu_albirex_ico {
  max-width: 22px;
}

/* アクセスランキング */
.ranking {
  overflow: hidden;
  position: absolute;
  top: -420px;
  right: 0;
  left: 0;
  z-index: -1;
  width: 310px;
  /* height: 0; */
  margin: auto;
  background: #456f84; /* #5e889d */
  box-shadow: 0px 1px 1px 0px #999;
  border-radius: 0 0 2px 2px;
  /* アニメーション指定 */
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* -webkit-transition: all .6s ease-in-out;
     -moz-transition: all .6s ease-in-out;
       -o-transition: all .6s ease-in-out;
          transition: all .6s ease-in-out; */
}
.ranking span {
  display: none;;
}
.ranking a {
  text-decoration: none;
  color: #fff;
}
.fade {
  top: 56px;
}
.rank_tabMenu {
  display: table;
  width: 280px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 8px;
}
.rank_tabMenu li {
  display: table-cell;
  width: 120px;
  padding: 2px;
  font-size: 0.9rem;
  text-align: center;
  background: #456f84; /* #5e889d */
  border: solid 2px #fff;
}
.rank_tabMenu li.selected {
  background: #289fb9; /* #5ecfe8 */
}
.sp-update > p {
  margin: 0 10px;
  text-align: right;
  color: #fff;
  /* sp_bace.cssの打ち消し用 */
  position: static;
  top: 0;
  right: 0;
  font-size: 0.75rem;
}
.ranking ul:not(.rank_tabMenu) li {
  display: block;
  width: 100%;
  padding: 0 10px 0 50px;
  background-position: 15px 50%;
  background-repeat: no-repeat;
  border-top: #bbb 1px solid;
  font-size: 0.75rem;
}
.ranking ul li h3 {
  display: table-cell;
  vertical-align: middle;
  height: 42px;
  line-height: 1.3em;
}
.lank1 { background-image: url(../images/ranking/bg_lank1.png) }
.lank2 { background-image: url(../images/ranking/bg_lank2.png) }
.lank3 { background-image: url(../images/ranking/bg_lank3.png) }
.lank4 { background-image: url(../images/ranking/bg_lank4.png) }
.lank5 { background-image: url(../images/ranking/bg_lank5.png) }
.lank6 { background-image: url(../images/ranking/bg_lank6.png) }
.lank7 { background-image: url(../images/ranking/bg_lank7.png) }
.lank8 { background-image: url(../images/ranking/bg_lank8.png) }
.lank9 { background-image: url(../images/ranking/bg_lank9.png) }
.lank10 { background-image: url(../images/ranking/bg_lank10.png) }

.rank_close {
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #2db9d8;
  color: #fff;
  text-align: center;
}
.rank_close img {
  max-width: 70px;
}

/* サイトトップボタン */
#site_top {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

/* ページトップボタン */
#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}


/* フッター
----------------------------------------------------------------------------- */

.footer {
  padding: 15px 10px;
  background: #fff;
}

/* フッターメニュー */
.footer_menuWrap {
  width: 100%;
  margin: 0 auto;
}
.footer_menuWrap li {
  padding: 0;
}

/* 1カラム版 */
.footer_menu_1col a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0 0 0 0.5em;
  line-height: 40px;
  background: #f8f5eb;
  border: #fff 2px solid;
}
.footer_menu_1col a:before {
  content: "▶";
  padding-right: 0.5em;
  color: #5099a9;
}
.footer_menu_1col a {
  color: #000;
  text-decoration: none;
}

/* 2カラム版 */
.footer_menu_2col a {
  box-sizing: border-box;
  display: block;
  float: left;
  width: 50%;
  padding: 0 0 0 0.5em;
  line-height: 40px;
  background: #f8f5eb;
  border: #fff 2px solid;
}
.footer_menu_2col a:before {
  content: "▶";
  padding-right: 0.5em;
  color: #5099a9;
}
.footer_menu_2col a {
  color: #000;
  text-decoration: none;
}

/* パソコン版誘導ボタン */
.pcSite {
  margin: 20px 0;
  text-align: center;
}
.pcSite p {
  position: relative;
  display: inline-block;
  height: 25px;
  padding: 0 0 0 40px;
}
.pcSite p:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/sp/mc/ico_pc-site.png) 0 50% no-repeat;
  background-size: 30px;
}
.pcSite a {
  color: #000;
}

/* copyright */
.copyright {
  text-align: center;
}


/* 天気予報（reset.css の打ち消し用）
----------------------------------------------------------------------------- */

.select_menu .small {
  display: none;
}
.weather.bg_white {
  margin: 10px 0 0;
}


/* 天気予報、占い（sp_top.css を移設＆微調整） */
----------------------------------------------------------------------------- */

.weather_and_horoscope { clear: both; }

.weather {
  position: relative;
  width: 100%;
}
.horoscope {
  position: relative;
}

.weather_and_horoscope .hl_section {
  display: block;
  float: left;
  margin: 0;
  width: 35%;
  height: 65px;
  background: #fbfbfb url(../images/bg_wiggly_line_tate.gif) repeat-y 100% 0;
  text-align: center;
  line-height: 1.2;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.weather_and_horoscope .hl_section a {
  display: inline-block;
  margin-top: 10px !important;
}
.weather_and_horoscope .hl_section span {
  display: inline-block;
  margin-top: 10px !important;
  font-size: 105%;
  color: #414141;
}

.weather_and_horoscope .select_menu {
  position: absolute;
  top: 30px;
  width: 35%;
  text-align: center;
}

.weather_and_horoscope .select_menu a {
  position: relative;
  top: 0;
  margin-left: 0;
  padding: 3px 5px;
  width: 90px;
  height: 27px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 90%;
  color: #ffffff;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
}
.weather_and_horoscope .select_menu a:hover { text-decoration: none; }
.weather_and_horoscope .select_menu a span { padding-left: 0.5em; }

.weather_content {
  float: right;
  width: 65%;
  height: 65px;
  background: #f6f6f6;
}

.horoscope_mc .horoscope_content {
  float: right;
  width: 65%;
  height: 65px;
  font-size: 80%;
}

.weather_content { font-size: 85%; }

/* 天気予報の地域 */
.weather .weather_content dl {
  position: relative;
  float: left;
  padding-left: 7px;
}
.weather .weather_content dt {
  margin-top: 40px;
  width: 36px;
  text-align: center;
}
.weather .weather_content dd {
  position: absolute;
  top: 15px;
  width: 36px;
  height: 24px;
}

/* 星座アイコン */
.horoscope dt {
  float: left;
  margin-right: 5px;
  width: 65px;
  height: 70px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-align: center;
}
.horoscope dt img { margin-top: 14px; }

/* 占い項目 */
.horoscope dd {
  position: relative;
  float: left;
  margin: 5px 5px 0 0;
  padding: 0 20px 0 5px;
  width: 28%;
  height: 21px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #454545;
  color: #fff;
  vertical-align: middle;
  line-height: 21px;
  cursor: default;
}
.lt-ie10 .horoscope dd { behavior: url(/PIE.htc); }

.horoscope dd.top_cell { margin-top: 10px; }

/* 占い結果 */
.horoscope dd span {
  position: absolute;
  top: 0;
  right: 2px;
  width: 21px;
  height: 21px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.horoscope dd span.level1 { background-image: url(../images/horoscope/bg_1.gif); }
.horoscope dd span.level2 { background-image: url(../images/horoscope/bg_2.gif); }
.horoscope dd span.level3 { background-image: url(../images/horoscope/bg_3.gif); }
.horoscope dd span.level4 { background-image: url(../images/horoscope/bg_4.gif); }
.horoscope dd span.level5 { background-image: url(../images/horoscope/bg_5.gif); }

/* 各地の天気, 星座を見る */
.select_menu_content_box {
  position: absolute;
  top: 53px;
  left: 0;
  z-index: 100;
  display: none;
  padding-top: 5px;
  width: 100%;
  font-size: 80%;
}

.select_menu_content {
  z-index: 100;
  overflow: hidden;
  padding: 10px 0 0;
  height: auto;
  border-top: 1px solid #80828d;
  border-bottom: 1px solid #303340;
  background-color: #3d404f;
  font-size: 120%;
}

.select_menu_content a { color: #84c8ea; }
.select_menu_content a:hover, .select_menu_content a:active { color: #e56a1f; text-decoration: none; }

.select_menu_content_close {
  margin-top: 15px;
  border-top: 1px solid #373A49;
  box-shadow: 0 1px 0 #494D5B inset;
}
.select_menu_content_close a {
  margin: 0 10px 0 10px;
  padding: 15px 25px 15px 0;
  color: #fff;
  font-weight: 700;
  text-indent: 0;
  text-align: right;
  background: url(../images/sp/bg_icon_close_sp.png) no-repeat right center;
}

/* 各地の天気 */
#weather_area_list dl {
  float: none;
  margin-bottom: 10px;
  padding: 0 5px 0 0;
  font-size: 110%;
  background: url(../images/bg_wiggly_line_tate.gif) repeat-y 55px 0;
}

/* 広域 */
#weather_area_list dl dt {
  float: left;
  margin: 5px 0 3px 0;
  width: 40px;
  color: #ffffff;
  text-align: right;
  font-weight: 700;
}

/* 市町村 */
#weather_area_list dl dd {
  position: static;
  margin-left: 55px;
  width: 90%;
  height: auto;
}

#weather_area_list dl dd a {
  margin: 5px 0 3px 0;
  padding: 0 15px;
  display: inline-block;
  /*width: 31%;*/
  float: left;
  border-right: 1px solid #80828d;
  text-align: center;
}
#weather_area_list dl dd a.bg_navyblue_gradation {
  clear: none;
}

/* 星座を設定 */
#horoscope_list ul { padding: 0 15px 5px 0; }

#horoscope_list li {
  float: left;
  margin: 10px 10px 0 0;
  padding-left: 15px;
  background: none;
  text-align: center;
}


/*====================================================================

  02. Other

====================================================================*/

/* タップハイライトカラー */
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, .2);
}

/*
box-sizing:border-box によるレイアウト崩れを調整
---------------------------------------------------------*/
/*
.story_section　…ぶらっとグルメ、他
.photo_gallery　…トキフォトギャラリーなど
.hl_section2　…天気警報小見出しなど
.horoscope_index .horoscope_content　…占いなど
*/
#fancybox-wrap,
.story_section,
.photo_gallery,
.hl_section2,
.horoscope_index .horoscope_content {
  box-sizing: content-box;
}

/*
メールフォーム関連
*/
.contact_form::after,
.contact_form::before {
  box-sizing: content-box;
}

/*
高校野球のウェブページ
*/
.baseball_pagebody font {
  font-size: 13px;
}


.md_bigBunner {
  position:  relative;
  margin: 10px 0;
  text-align: center;
}
.md_bigBunner img {
  vertical-align: bottom;
  max-width: 100%;
}