@charset "UTF-8";
@import url('//fonts.googleapis.com/css?family=Roboto:300,700');

/***********************************************************************
* baseball high school - general
********************************************************************** */
/* title */
.title-label.liteturquoise{
  background-color: #cee;
}
.title-label.turquoise{
  color: #fff;
  min-height: 14px;
  background-color: #0bc;
  background-image: linear-gradient(-45deg,
    rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 25%,
    transparent 25%, transparent 50%,
    rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%,
    transparent 75%, transparent 100%
  );
  background-size: 4px 4px;
  font-weight: normal;
}

.list-title.turquoise{
  border-bottom-color: #0bc;
}

/* column-3-list */
.column-3-list li .column-1-btn {
    width: 80%;
    padding: 10px 15px 10px 5px;
}

/* header navigation */
.baseball-highschool-nav{
  margin-bottom: 10px;
}

.baseball-highschool-nav header{
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 50px;

  color: #fff;
  background-color: #0093ab;
  background-image: linear-gradient(-45deg,
    rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 25%,
    transparent 25%, transparent 50%,
    rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%,
    transparent 75%, transparent 100%
  );
  background-size: 4px 4px;
}

.baseball-highschool-nav header h2{
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-weight: bold;
}

.baseball-highschool-nav header h2::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 9px;
  bottom: 0;
  display: block;
  margin: auto 0;
  border-top: solid 12px transparent;
  border-left: solid 9px #2258a2;
  border-bottom: solid 12px transparent;

  -webkit-box-shadow: -9px 0 0 0 #2258a2;
  -moz-box-shadow: -9px 0 0 0 #2258a2;
  box-shadow: -9px 0 0 0 #2258a2;
}

.baseball-highschool-nav header ul{
  display: flex;
  height: 50px;
}

.baseball-highschool-nav header ul li{
  position: relative;
  width: 50px;
  margin-right: 5px;
}
.baseball-highschool-nav header ul li.toggle,
.baseball-highschool-nav header ul li a{
  box-sizing: border-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-grow: column;
    width: 50px;
    height: 50px;
  padding-top: 32px;
  font-size: 9px;
}

.baseball-highschool-nav header ul li::before{
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 27px;
  height: 27px;
  margin: 0 auto;
}

.baseball-highschool-nav header ul li.toggle::after{
  content: '';
  width: 5px;
  height: 5px;
  border: 0px;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);

  -webkit-box-shadow: inset -1px 1px 0 0 #fff;
  -moz-box-shadow: inset -1px 1px 0 0 #fff;
  box-shadow: inset -1px 1px 0 0 #fff;
  margin-left: 2px;
  transition: all 0.3s;
}

.baseball-highschool-nav.is-open header ul li.toggle.current::after{
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.baseball-highschool-nav header ul li.news::before{
  background: url(../../images/svg/icn-news.svg) no-repeat;
}

.baseball-highschool-nav header ul li.school::before{
  background: url(../../images/svg/icn-school.svg) no-repeat;
}

.baseball-highschool-nav header ul li.tournament::before{
  background: url(../../images/svg/icn-tournament.svg) no-repeat;
}

.baseball-highschool-nav .nav-contents-wrapper{
  box-sizing: border-box;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;

  background-color: #fff;

  overflow: hidden;

  opacity: 0;

  transition: height .3s;
}

.baseball-highschool-nav.is-open .nav-contents-wrapper{
  opacity: 1;
}

.baseball-highschool-nav .nav-contents-wrapper::after{
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;

  border: 10px solid #0093ab;

  pointer-events: none;
}

.baseball-highschool-nav.is-open .nav-contents-wrapper{
  border-bottom: 2px solid #ccc;
}

.baseball-highschool-nav.is-open .nav-contents-wrapper .index-contents{
  position: absolute;
}

.baseball-highschool-nav .nav-contents-wrapper .index-contents{
  z-index: 1;
  left: 0;
  right: 0;
  background-color: #fff;
  padding-bottom: 30px;
  margin: 10px;
  opacity: 0;

  transition: .3s;
  transition-property: height, opacity;
}

.baseball-highschool-nav .nav-contents-wrapper .index-contents.current{
  z-index: 2;
  opacity: 1;
}

.baseball-highschool-nav .nav-contents-wrapper .index-contents .title-label{
  padding: 8px 10px;
  font-size: 15px;
}


/* tab */
.common-tab-list.lite {
  position: relative;
  z-index: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 0 0 #ccc;
  -moz-box-shadow: 0 1px 0 0 #ccc;
  box-shadow: 0 1px 0 0 #ccc;
}
.common-tab-list.lite.more {
  box-sizing: border-box;
  padding-right: 75px;
}

/* tab inner toggle */
.content-area-wrapper.inner-toggle{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 0;
}
.inner-toggle .content-toggle{
  box-sizing: border-box;
  top: -40px;
  right: 0;
  position: absolute;
  height: 40px;
  width: 70px;
  color: #2258a2;
  font-size: 14px;
  font-weight: bold;
  border-left: 1px solid #ccc;

  transition: all 0.3s;
}

.inner-toggle .content-toggle::after{
  content: '';
  position: relative;
  top: -2px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: 0px;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  display: inline-block;

  -webkit-box-shadow: inset -1px 1px 0 0 #2258a2;
  -moz-box-shadow: inset -1px 1px 0 0 #2258a2;
  box-shadow: inset -1px 1px 0 0 #2258a2;
  margin-left: 2px;
  transition: all 0.3s;
}
.inner-toggle .content-toggle.is-open{
  color: #fff;
  background-color: #2258a2;
}
.inner-toggle .content-toggle.is-open::after{
  top: 0;
  -webkit-box-shadow: inset -1px 1px 0 0 #fff;
  -moz-box-shadow: inset -1px 1px 0 0 #fff;
  box-shadow: inset -1px 1px 0 0 #fff;

  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.inner-toggle .column-2-list{
  padding: 0;
  background-color: #fff;
  border-top: 2px solid #2258a2;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0 1px 0 0 #ccc;
  -moz-box-shadow: 0 1px 0 0 #ccc;
  box-shadow: 0 1px 0 0 #ccc;
}
.inner-toggle .content-toggle.is-close + .column-2-list{
  opacity: 0;
}

.inner-toggle .column-2-list li{
  box-sizing: border-box;
  border-color: #ccc;
}

.inner-toggle .column-2-list li:nth-child(odd){
  border-right: 1px solid #ccc;
}

.inner-toggle .column-2-list li a{
  width: 100%;
  color: #2258a2;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 20px 8px 10px;
}

/* inner list */
.content-area.list-wrapper{
  padding: 0;
}
.content-area.list-wrapper .column-1-list li:last-child{
  border-bottom: none;
}

/* inner contents */
.content-area .content-area-wrapper{
  margin: 0;
}

.content-area .content-area-wrapper + .content-area-wrapper{
  margin: 10px 0 0;
}

.content-area .content-area-wrapper[style*="display: none"] + .content-area-wrapper{
  margin: 0;
}

.content-area .content-area-wrapper .title-label{
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  padding: 8px 10px;
}

.content-area .content-area-wrapper .content-area{
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-top: none;
  padding: 0;
}

.content-area.member .content-area-wrapper.js-member-contents
,.content-area.member .content-area-wrapper .content-area .js-currentplayer{
  display: none;
}

.content-area.member .content-area-wrapper.js-member-contents.active
,.content-area.member .content-area-wrapper .content-area .js-currentplayer.active{
  display: block;
}


/***********************************************************************
* baseball high school - news list
********************************************************************** */

.baseball-highschool-article{
  margin-top: 10px;
}

.title-label.center{
  padding: 13px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.title-label.twitter{
  color: #fff;
  background-color: #1da1f2;
}


.column-1-list .news-attrs{
  display: block;
}

.column-1-list .add-paid-before .news-attrs{
  margin-left: 25px;
}

.article-title-wrapper .news-attrs{
  display: flex;
  -webkit-justify-content:flex-end;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-bottom: 5px;
}

.column-1-list .news-attrs::after
,.article-title-wrapper .news-attrs::after{
  content: "";
  display: block;
  clear: both;
}

.column-1-list .news-attrs li
,.article-title-wrapper .news-attrs li{
  float: left;
  display: block;
  margin: 0 5px 5px 0;
  padding: 0 5px;
  font-size: 10px;
  font-weight: bold;
  line-height: 15px;
  background: #eee;
}

.column-1-list .news-attrs li{
  color: #fff;
  background-color: #999;
}

.column-1-list .news-attrs li.tournament-name
,.article-title-wrapper .news-attrs li.tournament-name{
  color: #fff;
  background-color: #999;
}

.column-1-list.feed-list .infeed{
  display: block;
}

.title-area {
  margin: 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}

.index-contents > article ~ article {
  margin-top: 12px;
}

.index-contents > .sub-list-wrapper{
  margin: 20px 0 10px;
}

.index-contents.column-1-list-wrapper{
  margin-bottom: 0;
}

.article-banner ~ .article-banner {
  margin-top: 10px;
}

.article-banner a {
  display: block;
}

.article-banner img {
  display: block;
  margin: auto;
  max-width: 100%;
}

.breadcrumb-link{
  background-color: #cceeee;
  padding: 0 10px;
  height: 30px;
}

.breadcrumb-link a{
  display: block;
  color: #2258a2;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  padding-left: 20px;
  position: relative;
}

.breadcrumb-link a::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #2258a2;
  border-right: 1px solid #2258a2;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* separate */
.separate {
  border: none;
  border-top: 1px solid #fff;
  margin: 10px -10px 0;
}

/***********************************************************************
* baseball high school - detail
********************************************************************** */
/* attention */
.attention{
  position: relative;
  border: 1px solid #ff9800;
  color: #ff9800;
  font-size: 14px;
  font-weight: bold;
  margin: 10px;
  padding: 12px 10px 12px 40px;
}
.attention p{
  font-weight: bold;
}
.attention::before{
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  margin: auto 0;
  background-color: #ff9800;
}
.attention::after{
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  width: 2px;
  height: 12px;
  display: block;
  margin: auto 9px;
  -webkit-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);;
  -moz-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);;
  box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);
}

/* tab */
.common-tab-list.turquoise li.toggle{
  position: relative;
  border-left: 1px solid #fff;
}
.common-tab-list.turquoise li.toggle::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #2258a2;
  border-right: solid 2px #2258a2;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: -2px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.flat-tab-list{
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: stretch;
  height: 40px;

  border-bottom: 2px solid #0bc;

  background-color: #fff;
}

.flat-tab-list li{
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 40px;
  text-align: center;

  color: #bcc7dd;

  -webkit-box-shadow: inset 0 1px 0 0 #ccc;
  -moz-box-shadow: inset 0 1px 0 0 #ccc;
  box-shadow: inset 0 1px 0 0 #ccc;
}

.flat-tab-list li a{
  flex-grow: 1;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  height: 40px;
  color: #2258a2;
  background-color: #fff;

  -webkit-box-shadow: inset 0 1px 0 0 #ccc;
  -moz-box-shadow: inset 0 1px 0 0 #ccc;
}

.flat-tab-list li.current,
.flat-tab-list li.current a{
  color: #fff;
  background-color: #0bc;
  background-image: linear-gradient(-45deg,
    rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 25%,
    transparent 25%, transparent 50%,
    rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%,
    transparent 75%, transparent 100%
  );
  background-size: 4px 4px;
  pointer-events: none;

  -webkit-box-shadow: inset 2px 2px 0 0 #0bc, inset -2px 0 0 0 #0bc;
  -moz-box-shadow: inset 2px 2px 0 0 #0bc, inset -2px 0 0 0 #0bc;
  box-shadow: inset 2px 2px 0 0 #0bc, inset -2px 0 0 0 #0bc;
}

.content-area-wrapper .flat-tab-list{
  -webkit-box-shadow: inset 1px 0 0 0 #ccc, inset -1px 0 0 0 #ccc;
  -moz-box-shadow: inset 1px 0 0 0 #ccc, inset -1px 0 0 0 #ccc;
  box-shadow: inset 1px 0 0 0 #ccc, inset -1px 0 0 0 #ccc;
}

.flat-tab-contents{
  display: none;
}

.flat-tab-contents.current{
  display: block;
}


.content-area-wrapper.tab{
  background-color: #fff;
}

.game-contents-wrapper{
  background-color: #cee;

  padding: 10px;
}

.game-contents-wrapper header{
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  height: 20px;
  margin-bottom: 1px;
}

.game-contents-wrapper small{
  font-size: 10px;
  font-weight: normal;
}

.game-contents-wrapper .column-1-btn.white{
  background-color: #fff;
  margin-bottom: 3px;
}

.content-area-wrapper{
  margin: 30px 0;
}

.content-area-wrapper:last-child{
  margin: 30px 0 0;
}

.content-area{
  padding: 10px;
  background-color: #fff;
}

.content-area::before,
.content-area::after{
  content: '';
  display: table;
}

/* logout */
.btn-orange:first-child .column-1-btn{
  margin-top: 0;
}

.paid-area + .column-1-btn.sample{
  width: 90px;
  height: 14px;
  margin: 10px auto 0;
  padding: 7px 24px 7px 12px;
  border: none;
  box-shadow: none;
}

/* game outline */
.game-outline{
  position: relative;
  overflow: hidden;

  background-color: #fff;
}

.game-outline .status{
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 4px;
  height: 12px;

  color: #fff;

  transition: .3s;
  transition-property: color, background;
}

.game-outline > small{
  display: block;
  font-size: 12px;
  padding: 10px 10px 0;
}

.game-outline .team-wrapper{
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  /*height: 40px;*/
  /*== 2024.06.26追加記述分 ==*/
  min-height: 40px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
  padding: 1px;
}

/*== 2024.06.26追加記述分 ==*/
.game-outline.is-pre .team-wrapper {
	gap: 80px;
}

.game-outline .team-wrapper::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 8px;
  display: block;
  width: 8px;
  height: 2px;
  background-color: #000;
  margin: auto;
}

.game-outline .team-wrapper .win::before,
.game-outline .team-wrapper .lose::before{
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 50%;
}

.game-outline .team-wrapper .win::before{
  background-color: #fff;
}

.game-outline .team-wrapper .lose::before{
  background-color: #000;
}

@media only screen and (max-width: 374px){
  .game-outline .team-wrapper{
    margin: 10px 0;
  }
}

.game-outline dl.team-first{
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  padding-right: 8px;
  width: 50%;
}

.game-outline dl.team-second{
  flex-grow: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-left: 8px;
  width: 50%;
}

.game-outline dl dt{
  display: flex;
  flex-grow: 1;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;

  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.game-outline .team-first dt{
  margin: 0 5px 0 15px;
}
.game-outline .team-second dt{
  margin: 0 15px 0 5px;
}

.game-outline dl dd{
  display: flex;
  flex-grow: 1;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  width: 1.5em;
  padding-bottom: 10px;

  font-family: 'Roboto', sans-serif;
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
}

.game-outline .time{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: block;
  font-size: 11px;
  text-align: center;
  width: 80px;
  height: 1em;
  margin: auto;

  color: #666;
}

.game-outline[class*="is-live"]{
  background-color: #fffde5;
}

.game-outline.is-livedetail .status{
  background-color: #c00;
}

.game-outline.is-livedetail .time{
  color: #c00;
}

.game-outline.is-live .status{
  background-color: #ff9800;
}

.game-outline.is-live .time{
  color: #ff9800;
}

.game-outline.is-result .status{
  background-color: #8c4;
}

.game-outline.is-pre .status{
  color: #000;
  background-color: #eee;
}

.game-outline.is-suspension .status{
  background-color: #666;
}

.game-outline.is-pre .time,
.game-outline.is-suspension .time{
  top: 0;
}

.game-outline.is-pre .team-wrapper::after,
.game-outline.is-suspension .team-wrapper::after{
  content: none;
}


/* LIVE */
.flat-tab-contents.current .game-contents-wrapper.is-live .common-tab-contents > .content-area {
  position: relative;
  overflow: hidden;
  background-color: #fffde5;
}

.flat-tab-contents.current .game-contents-wrapper.is-live .flat-tab-list li::before{
  content: 'LIVE';
  display: inline-block;
  width: 36px;
  margin-right: 5px;
  padding: 4px 0;
  background: #c00;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* game list */
.game-list li.game-outline{
  position: relative;
  margin-top: 10px;
  -webkit-box-shadow: 0 2px 0 0 #ccc;
  -moz-box-shadow: 0 2px 0 0 #ccc;
  box-shadow: 0 2px 0 0 #ccc;
}

.game-list li.game-outline a.link-area{
  display: block;
  position: relative;
}
.game-list li.game-outline a.link-area::after{
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  border-radius: 1px;
  -webkit-box-shadow: 2px -2px 0 0 #2258a2;
  -moz-box-shadow: 2px -2px 0 0 #2258a2;
  box-shadow: 2px -2px 0 0 #2258a2;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

}

.game-list.agenda .game-outline{
  margin-top: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* score table */
.score-table-wrapper{
  margin-top: 1px;
  padding: 10px;
  background-color: #fff;
}

.score-table-wrapper .name{
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  height: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #2258a2;
  position: relative;
}

.score-table-wrapper .name span{
  position: relative;
}

.score-table-wrapper .name span::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  border-radius: 1px;
  -webkit-box-shadow: 2px -2px 0 0 #2258a2;
  -moz-box-shadow: 2px -2px 0 0 #2258a2;
  box-shadow: 2px -2px 0 0 #2258a2;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.score-table-wrapper .score-table{
  margin: 10px 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 1px;
  background-color: #333;
  color: #fff;
}

.score-table-wrapper .score-table th,
.score-table-wrapper .score-table td{
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 300;
  height: 24px;
  vertical-align: middle;
}

.score-table-wrapper .score-table th{
  background-color: #444;
}

.score-table-wrapper .score-table td{
  background-color: #666;
}

.score-table-wrapper .score-table th.total{
  background-color: #000;
  font-weight: 700;
}

.score-table-wrapper .score-table td.total{
  background-color: #ccc;
  color: #000;
  font-weight: 700;
}

/* toggle */
.content-toggle{
  position: relative;
  padding: 12px 0;
  text-align: center;
}

.title-label.content-toggle:not(.is-open){
  -webkit-box-shadow: 0 2px 0 0 #ccc;
  -moz-box-shadow: 0 2px 0 0 #ccc;
  box-shadow: 0 2px 0 0 #ccc;
}

.content-toggle .toggle-icn{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: block;
  width: 25px;
  height: 25px;
  margin: auto;

  border: solid 1px rgba(255, 255, 255, .6);
  border-radius: 50%;
}

.content-toggle .toggle-icn::before,
.content-toggle .toggle-icn::after{
  content: '';
  background-color: #fff;

  display: block;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;

  transition: all 0.3s;
}
.content-toggle .toggle-icn::before{
  width: 8px;
  height: 2px;
}
.content-toggle .toggle-icn::after{
  height: 8px;
  width: 2px;
}

.content-toggle.is-open .toggle-icn::after{
  height: 0;
}

.flat-tab-list li.add-paid-after::after{
  margin-left: 5px;
}

.content-toggle.add-paid-after::after,
.flat-tab-list li.current.add-paid-after::after{
  margin-left: 5px;
  background: url(../../images/svg/icn-paid-w.svg) no-repeat center;
}

/* inner toggle */
.content-area .content-area-wrapper .content-toggle{
  padding: 12px 10px;
}

.content-area .content-area-wrapper .content-toggle .toggle-icn{
  right: 10px;
}

/* inner description list */
.content-area .content-area-wrapper .contents dd{
  padding: 10px;
}

/* inner paragraph */
.content-area .content-area-wrapper p{
  margin: 10px;
}

/* inner list */
.content-area .content-area-wrapper ul.timeline{
  margin: 10px;
}
.content-area .content-area-wrapper ul.timeline li + li{
  margin-top: 5px;
  padding-top: 5px;
  border-top: dashed 1px #ccc;
}

/* inning info contents */
.content-area .inning-info-list .content-area-wrapper:first-child,
.content-area .inning-info-list .content-area-wrapper:last-child{
  margin-top: 10px;
}
.content-area .content-area-wrapper[style*="display: none"] + .inning-info-list .content-area-wrapper:first-child {
  margin-top: 0;
}
.content-area .inning-info-list + .content-area-wrapper{
  display: none;
}

/* diamond */
.diamond{
  position: relative;
  margin: 10px;
}
.diamond::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 195px;
  background-color: #d9eed9;
}
.diamond small{
  display: block;
  text-align: right;
  padding: 5px 0;
}
.diamond ul{
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  height: 195px;
  max-width: 450px;
  margin: 0 auto;
  background: #d9eed9 url("../../images/svg/bg-diamond.svg") no-repeat center center;
  background-size: 450px 195px;
}
.diamond ul li{
  position: absolute;
  display: inline;
  max-width: 96px;
  height: 20px;
  padding: 0 6px;

  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  font-size: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, .8);

  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* .diamond ul li::before{
  content: attr(data-order);
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px 0 0;
  font-family: 'Roboto';
  font-weight: 700;
  line-height: 13px;
  text-align: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  vertical-align: 0;
} */
.diamond ul li:nth-child(1),
.diamond ul li:nth-child(2),
.diamond ul li:nth-child(8){
  left: 50%;
 }
.diamond ul li:nth-child(3),
.diamond ul li:nth-child(4){
  left: 76%;
 }
.diamond ul li:nth-child(5),
.diamond ul li:nth-child(6){
  left: 24%;
 }
.diamond ul li:nth-child(7){
  left: 20%;
 }
.diamond ul li:nth-child(9){
  left: 80%;
 }

.diamond ul li:nth-child(1){
  top: 60%;
 }
.diamond ul li:nth-child(2){
  top: 87.5%;
 }
.diamond ul li:nth-child(3),
.diamond ul li:nth-child(5){
   top: 74%;
 }
.diamond ul li:nth-child(4),
.diamond ul li:nth-child(6){
   top: 46%;
 }
.diamond ul li:nth-child(8){
  top: 8%;
 }
.diamond ul li:nth-child(7),
.diamond ul li:nth-child(9){
 top: 22%;
}

/* live */
.live{
  position: relative;
  padding: 10px;
  overflow: hidden;
}
.live dl{
  display: block;
  margin: 5px;
  padding-right: 90px;
}
.live dl dt,
.live dl dd{
  font-size: 14px;
  display: inline-block;
}
.live dl dt{
  color: #0bc;
  width: 80px;
}
.live dl dd span{
  display: inline-block;
}

.live .runner{
  position: relative;
  float: right;
  display: block;
  width: 75px;
  height: 75px;
  margin: 0 12px 10px 8px !important;
  background: url("../../images/svg/bg-diamond-s.svg") no-repeat;
}

@media screen and (min-width:376px){
  .live dl{
    padding-right: 130px;
  }
}

.live .runner li{
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 !important;
}

.live .runner li.is-active{
  background: url("../../images/svg/icn-runner.svg") no-repeat;
}

.live .runner li:nth-child(1){
  top: 25px;
  right: -5px;
}

.live .runner li:nth-child(2){
  top: -5px;
  left: 25px;
}

.live .runner li:nth-child(3){
  top: 25px;
  left: -5px;
}

.live .out-count{
  position: absolute;
  top: 55px;
  right: 10px;
  display: block;
  width: 32px;
  height: 28px;
  padding: 1em 0 0;

  font-family: 'Roboto';
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;

  color: #888;
}

.live .out-count::before,
.live .out-count::after{
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #eee;
  border-radius: 50%;
}

.live .out-count::before{
  left: 0;
}

.live .out-count::after{
  right: 0;
}

.live .out-count[data-count="1"]::before,
.live .out-count[data-count="2"]::before,
.live .out-count[data-count="2"]::after{
  background-color: #c00;
}

/* data table */
.data-table{
  table-layout: fixed;
}

.data-table .name{
  width: 7em;
}

.data-table .number{
  width: 3em;
}

@media only screen and (max-width: 374px){
  .data-table{
    table-layout: auto;
  }

  .data-table .name{
    width: 7em;
  }

  .data-table .number{
    width: auto;
  }
}

.data-table th,
.data-table td{
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ddd;
  height: 27px;
  vertical-align: middle;
}

.data-table th{
  padding: 4px 0;
  font-size: 11px;
  color: #666;
  background-color: #eee;
}

.data-table td{
  padding: 4px;
    font-size: 12px;
  background-color: #fff;
}

.data-table th:first-child,
.data-table td:first-child{
  border-left: none;
}

.data-table th:last-child,
.data-table td:last-child{
  border-right: none;
}

dl:last-child .data-table th,
dl:last-child .data-table td{
  border-bottom: none;
}

/* month */
.month-archive{
  display: flex;
}

.month-archive h6{
  flex-grow: 1;
  width: 40px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.month-archive .archive-list{
  flex-grow: 1;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;

  width: 100%;
  padding: 8px 8px 7px 7px;
  background-color: #eee;
}

.month-archive .archive-list li{
  box-sizing: border-box;
  width: 20%;
  padding: 2px 2px 3px 3px;
}

.month-archive .archive-list li a{
  box-sizing: border-box;
  position: relative;
  display: flex;
  -webkit-align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  padding: 0 6px 0 0;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;

  font-size: 14px;
  font-weight: bold;
  color: #2258a2;
}

.month-archive .archive-list li a::after{
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 1px;
  -webkit-box-shadow: 2px -2px 0 0 #2258a2;
  -moz-box-shadow: 2px -2px 0 0 #2258a2;
  box-shadow: 2px -2px 0 0 #2258a2;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 374px){
  .month-archive .archive-list li a::after{
    right: 8px;
  }
}

/* weather */
.content-area.tenkiData .column-2-list{
  border: none;
}

.content-area.tenkiData .column-2-list li{
  box-sizing: border-box;
}

.content-area.tenkiData .column-2-list li::after{
  content: none;
}

.content-area.tenkiData .column-2-list li:nth-child(even){
  padding-left: 10px;
}

.content-area.tenkiData dl{
  overflow: hidden;
  width: 100%;
}

.content-area.tenkiData dl dt{
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #2258a2;
}

.content-area.tenkiData dl dd{
  font-size: 11px;
  line-height: 1.5;
}

.content-area.tenkiData dl dd div[class^="tenki"]{
  float: right;
  width: 60px;
  height: 60px;
}

.tenkiData .saikou{
  color: #f44336;
}

.tenkiData .saitei{
  color: #2258a2;
}

.content-area.tenkiData .column-1-btn{
  margin-top: 0;
}

/* live-reload */
.live-reload{
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 60px;
  padding: 0 10px;

  font-size: 12px;

  color: #fff;
  background-color: rgba(0, 0, 0, .6);
}

.live-reload .sns-list li{
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0 10px;
}

@media only screen and (max-width: 374px){
  .live-reload .sns-list li{
    margin: 0 5px;
  }
}

.live-reload .sns-list li a{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.live-reload .sns-list li:last-child{
  margin-right: 0;
}

.live-reload .sns-list li .icn-twi{
  background-color: #55acee;
}

.live-reload .sns-list li .icn-fb{
  background-color: #3b5998;
}

.live-reload .sns-list li .icn-line{
  background-color: #00c21b;
}

.live-reload .sns-list li img{
  display: block;
  padding-top: 5px;
  max-height: 18px;
  height: auto;
  max-width: 18px;
  width: auto;
  margin: auto;
}

.live-reload .sns-list li .icn-twi img{
  padding-top: 7px;
}

.live-reload .reload{
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.live-reload .reload input{
  display: none;
}

.live-reload .reload .lever{
  text-align: center;
}

.live-reload .reload label{
  position: relative;
  display: block;
  overflow: hidden;
  width: 120px;
  height: 30px;

  border-radius: 200em;
  background-color: #aaa;

  transition: background-color .3s;
}

.live-reload .reload label::after{
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20em;
  border: 2px solid #aaa;

  transition: border-color .3s;
}

.live-reload .reload label span{
  position: relative;
  left: 0;
  width: 26px;
  height: 26px;
  display: block;
  margin: 2px;

  background-color: #fff;
  border-radius: 50%;

  transition: left .3s;
}

.live-reload .reload label span::before,
.live-reload .reload label span::after{
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 88px;

  font-size: 12px;
  line-height: 28px;
}

.live-reload .reload label span::before{
  content: '自動更新 ON';
  right: 100%;
}

.live-reload .reload label span::after{
  content: '自動更新 OFF';
  left: 100%;
}

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

.live-reload .reload .btn-reload{
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 10px;

  border-radius: 50%;
  background-color: #0bc;
  background-image: linear-gradient(-45deg,
    rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 25%,
    transparent 25%, transparent 50%,
    rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%,
    transparent 75%, transparent 100%
  );
  background-size: 4px 4px;
  border: 2px solid #0bc;

  outline: none;

  transition: .3s;
}

.live-reload .reload .btn-reload::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../../images/svg/icn-reload.svg") no-repeat center center;
  background-size: 30px 30px;
  border-radius: 50%;
}

.live-reload .reload .btn-reload:active::after{
  animation: rotate .6s;
}

.live-reload .reload input:checked ~ .lever label{
  background-color: #0bc;
}

.live-reload .reload input:checked ~ .lever label::after{
  border-color: #0bc;
}

.live-reload .reload input:checked ~ .lever label span{
  left: 90px;
}

.live-reload .reload input:checked ~ .btn-reload,
.live-reload .reload .btn-reload:disabled{
  pointer-events: none;
  background-color: #999;
  opacity: .3;
  border-color: #999;
}

/***********************************************************************
* baseball high school - school
********************************************************************** */
/* school name headline */
.school-wrapper .title-label.turquoise.center{
  -webkit-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.school-wrapper .title-label.turquoise.center small{
  font-size: 14px;
  font-weight: normal;
}
.school-wrapper .title-label.turquoise.center small::after{
  content: '';
  margin: 0 .5em;
  display: inline-block;
  width: 0;
  height: 16px;
  border-left: 1px solid #fff;
  vertical-align: text-bottom;
}

/* headline */
.school-wrapper header + header{
  height: auto;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
}

/* rect */
.school-wrapper .index-wrapper {
  margin-bottom: 30px;
}

/* players list */
.players-list{
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  -webkit-box-shadow: inset 0 28px 0 0 #cee, inset 0 29px 0 0 #ddd, inset 0 57px 0 0 #eee, inset 0 56px 0 0 #ddd;
  box-shadow: inset 0 28px 0 0 #cee, inset 0 29px 0 0 #ddd, inset 0 57px 0 0 #eee, inset 0 56px 0 0 #ddd;
}

@media screen and (min-width:376px){
  .scroll-info{
    display: none;
  }
}
@media screen and (max-width:375px){
  .scroll-info{
    position: relative;
    color: #ff9800;
    font-size: 12px;
    line-height: 1.5rem;
    margin: 10px;
    padding: 12px 10px 12px 40px;
  }
  .scroll-info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin: auto 0;
    background-color: #ff9800;
  }
  .scroll-info::after{
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 2px;
    height: 12px;
    display: block;
    margin: auto 9px;
    -webkit-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);;
    -moz-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);;
    box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);
  }
}

.players-list *{
  box-sizing: border-box;
}

.players-list > div:first-child{
  padding: 8px 10px;
  font-size: 12px;
  font-weight: bold;

  color: #666;
  background-color: #cee;
}

.players-list > div:nth-child(2){
  position: relative;
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 375px;

  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.players-list > div:nth-child(2)::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: #ddd;
  width: 100%;
  height: 1px;
  -webkit-box-shadow: 100vw 0 0 0 #ddd;
  box-shadow: 100vw 0 0 0 #ddd;
}

.players-list > div:nth-child(2) > dl{
  display: table-row;
}

.players-list > div:nth-child(2) > dl ~ dl{
  -webkit-box-shadow: 100vw 1px 0 0 #fff,  100vw 0 0 0 #ddd;
  box-shadow: 100vw 1px 0 0 #fff,  100vw 0 0 0 #ddd;
}

.players-list > div:nth-child(2) > dl > dt,
.players-list > div:nth-child(2) > dl > dd{
  display: table-cell;
  vertical-align: middle;
  width: 40px;
  height: 27px;
  padding: 4px;

  white-space: nowrap;
  font-size: 12px;
  text-align: center;

  border-top: 1px solid #ddd;
}

.players-list > div:nth-child(2) > dl > dt{
  white-space: nowrap;
}

.players-list > div:nth-child(2) > dl > dd{
  border-left: 1px solid #ddd;
}

.players-list > div:nth-child(2) > dl:first-child > dt,
.players-list > div:nth-child(2) > dl:first-child > dd{
  padding: 4px 0;

  font-size: 11px;

  color: #666;
  background-color: #eee;
}

.players-list > div:nth-child(2) > dl > dt,
.players-list > div:nth-child(2) > dl > dd:nth-child(2){
  width: 34px;
}

.players-list > div:nth-child(2) > dl > dd:nth-child(3),
.players-list > div:nth-child(3) > dl > dd{
  width: 90px;
	white-space: normal;
}

.players-list > div:nth-child(2) > dl > dd:nth-child(n+4):nth-child(-n+8){
  width: 32px;
}

.players-list > div:nth-child(2) > dl > dd:last-child{
  width: auto;
  padding-right: 0;
}

.players-list > div:nth-child(2) > dl > dd:last-child::after{
  content: "";
  display: inline-block;
  margin-left: 4px;
}

.players-list > div:nth-child(3){
  float: left;
  display: table;
  border-right: 1px solid #ddd;
}

.players-list > div:nth-child(3) > dl{
  display: table-row;
}

.players-list > div:nth-child(3) > dl > dt,
.players-list > div:nth-child(3) > dl > dd{
  display: table-cell;
  height: 27px;
  padding: 4px;

  font-size: 12px;
  text-align: center;
  vertical-align: middle;

  border-bottom: 1px solid #ddd;
}

.players-list > div:nth-child(3) > dl > dt{
  width: 68px;
  padding-left: 42px;
}

.players-list > div:nth-child(3) > dl > dd{
  border-left: 1px solid #ddd;
}

.players-list > div:nth-child(4){
  float: right;
  width: 12em;
  margin: 10px;

  font-size: 12px;
  line-height: 1.4;
  text-align: right;

  color: #666;
}

@media only screen and (max-width: 374px){
  .players-list > div:nth-child(4){
    margin: 5px 5px 0 0;
  }
}

@media only screen and (min-width: 376px){
  .players-list > div:nth-child(2){
    width: 414px;
  }
  .players-list > div:nth-child(2) > dl > dd:nth-child(3),
  .players-list > div:nth-child(3) > dl > dd{
    width: 96px;
  }
  .players-list > div:nth-child(2) > dl > dt,
  .players-list > div:nth-child(2) > dl > dd:nth-child(2){
    width: 36px;
  }
  .players-list > div:nth-child(2) > dl > dd:nth-child(n+4):nth-child(-n+8){
    width: 35px;
  }
  .players-list > div:nth-child(3) > dl > dt{
    width: 72px;
  }
}

@media only screen and (min-width: 600px){
  .players-list > div:nth-child(2){
    width: 100%;
  }
  .players-list > div:nth-child(2) > dl > dd:nth-child(3),
  .players-list > div:nth-child(3) > dl > dd{
    width: 120px;
  }
  .players-list > div:nth-child(2) > dl > dt,
  .players-list > div:nth-child(2) > dl > dd:nth-child(2){
    width: 42px;
  }
  .players-list > div:nth-child(2) > dl > dd:nth-child(n+4):nth-child(-n+8){
    width: auto;
  }
  .players-list > div:nth-child(3) > dl > dt{
    width: 84px;
    padding-left: 48px;
  }
  .players-list > div:nth-child(2) > dl > dd:last-child{
    width: 180px;
  }
  .players-list > div:nth-child(4){
    width: auto;
  }
}


/***********************************************************************
* baseball high school - school score
********************************************************************** */

/* result table */
.result-table-wrapper{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}

.result-table-wrapper .result-table{
  width: 100%;
  table-layout: fixed;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.result-table-wrapper .result-table .cell-year{
  width: 54px;
}

.result-table-wrapper .result-table thead th{
  font-size: 11px;
  color: #666;
  background-color: #cee;
  padding: 4px 0;
}

.result-table-wrapper .result-table thead th ~ th{
border-left: 1px solid #ddd;
}

.result-table-wrapper .result-table thead th *{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.result-table-wrapper .result-table th,
.result-table-wrapper .result-table td{
  text-align: center;
  font-size: 12px;
  height: 24px;
  vertical-align: middle;
  border-top: 1px solid #ddd;
}

.result-table-wrapper .result-table tbody th{
  padding: 2px 10px;
  font-family: "Roboto";
  font-weight: 400;
}

.result-table-wrapper .result-table td{
  padding: 2px;
  border-left: 1px solid #ddd;
}

.result-table-wrapper .result-table .seed{
  background-image: linear-gradient(to top right, transparent 49%, #ddd 49%, #ddd 51%, transparent 51%, transparent); /* 右下がりの斜線 */
}


/***********************************************************************
* baseball high school - twitter
********************************************************************** */

/* iPhoneでレスポンシブ時に幅100%にならない問題対応 */
@media only screen and (min-width: 374px) and (max-width: 375px){
  #twitter-widget-0{
    width: 375px !important;
  }
}
@media only screen and (max-width: 321px){
  #twitter-widget-0{
    width: 320px !important;
  }
}


.title-label.color-sokuhou{
  color: #fff;
  min-height: 14px;
  background-color: #ee9900;
  background-image: linear-gradient(-45deg,
    rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 25%,
    transparent 25%, transparent 50%,
    rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%,
    transparent 75%, transparent 100%
  );
  background-size: 4px 4px;
  font-weight: normal;
}
.flat-tab-list.color-sokuhou{
  border-color: #ee9900;
}
.flat-tab-list.color-sokuhou li.current{
  background-color: #ee9900;
  -webkit-box-shadow: inset 2px 2px 0 0 #ee9900, inset -2px 0 0 0 #ee9900;
  -moz-box-shadow: inset 2px 2px 0 0 #ee9900, inset -2px 0 0 0 #ee9900;
  box-shadow: inset 2px 2px 0 0 #ee9900, inset -2px 0 0 0 #ee9900;
}


/***********************************************************************
*
*
*
* 高野CSS-SP修正案
*
*
*
********************************************************************** */
.game-contents-wrapper {
    padding: 12px 10px;
}

.game-outline .status {
    font-size: 13px;
    padding: 5px;
    height: 13px;
}

.game-list li.game-outline {
    margin-top: 12px;
}

.content-area .content-area-wrapper .title-label {
    font-size: 14px;
}

.content-area .content-area-wrapper .content-area {
    font-size: 13px;
}

.content-area .content-area-wrapper ul.timeline li + li {
    margin-top: 8px;
    padding-top: 8px;
}

.diamond ul li {
    font-size: 13px;
}

.data-table th {
    font-size: 12px;
}

.data-table td {
    padding: 4px 2px;
    font-size: 14px;
}




/***********************************************************************
*
*
*
* 追加のクラス
*
*
*
********************************************************************** */


.cooperation-bulletin{
    font-size:11px;
    text-align:center;
    margin:0px auto 10px;
    display:block;
    padding:8px;
    background-color:#eee;
	line-height:1.4;
	}






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



３月31日　SP表示確認→修正
**********************************************************************/

/* 全般ボタン部分 */

.column-3-list .column-1-btn{
border:none;
box-shadow:none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
} 


/* ニュースリスト表示：画像部分 */

.column-1-list.image-list.image-large .tg-figure{
    width: 75px;
    height: 75px;
    overflow: hidden;
    position: relative;
}

.column-1-list.image-list.image-large .tg-figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}


/* 各リスト下：もっと見るボタンの下に余白 */

ul ~ .column-1-btn{
margin-bottom:30px;
}

.tg-article.content-area-wrapper{
margin-top:0;
}



/* 成績ページ・成績リスト・日付ごとの余白 */

.content-area-wrapper:first-child {
    margin:0 0 30px 0;
}

.game-contents-wrapper .game-contents-wrapper{
 margin-bottom:0;
 padding-bottom: 0;
}

.tg-article .tg-article{
margin-bottom:60px;
}

.tg-article .tg-article:last-child{
margin-bottom:0;
}

.game-contents-wrapper > .tg-article{
margin-bottom:30px;
}

.game-contents-wrapper > .tg-article:last-child {
    margin-bottom: 0px;
}


/* 一打席速報まわり */

.flat-tab-list{
font-size:17px;
}

/* トーナメント */

.tg-article.content-area-wrapper {
    margin: 10px 0 30px 0;
}

/* トーナメント表の横幅を100％にする */

.content-area center img{
width:100%;
}

/* トーナメント表　ピンチイン・ピンチアウトの表示 */

.content-area center{
position:relative;
padding-bottom:60px;
}

.content-area center:after{
    content: "";
    display: block;
    background: url(/common/sp/2017/images/common/icn-pinch.png) no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

/* 記事詳細・写真拡大　記事に戻るボタンの位置調整 */

.sub-list-wrapper ~ .column-1-btn{
margin-bottom:30px;
}



/* .title-label.blue見出し色の変更 */

.baseball-highschool-nav ~article .title-label.blue{
background-color:#00C3D3;
color:#fff;
}

/* 大会メニューのグレーアウト */
.common-tab-list li.nav-grayout,
.nav-grayout a {
    color: #bcc7dd;
  pointer-events: none;
  cursor: default!important;
}
/*
.nav-grayout a{
    color: #bcc7dd;
	pointer-events: none;
	cursor: default!important;
}
*/

.nav-grayout {
	cursor: default!important;
}

.inner-toggle .column-2-list li.nav-grayout a {
    color: #bcc7dd;
	pointer-events: none;
	cursor: default!important;
}

.inner-toggle .column-2-list li.nav-grayout {
	cursor: default!important;
}



/* 試合詳細　サンプル画像のモーダル処理 */
.modal > article .modal-content .modal-content-inner .list-title {
    margin-bottom: 6px;
    padding: 12px 0 0px 0;
    font-size: 14px;
}





/*                                */
/* ４月５日分更新                   */
/*                                */
/* -- ラベルなどデザイン変更       -- */

.title-label.inning-comment{
background-color:rgba(242, 228, 37, 0.65);
margin:0 0 0 auto;
font-size:13px!important;
border-top:1px solid #bbb;
border-bottom:1px solid #bbb;
}

.bb-photo-appendix{
padding:10px 20px;
background-color:#cee;
font-size:14px;
line-height:1.4;
border-top:1px solid #ffffff;
border-bottom:1px solid #bbb;
color:#666;
}

.bb-appendix-info{
padding:10px 10px 10px 40px;
color:#2258a2;
font-size:14px;
line-height:1.4;
position:relative;
}

.bb-appendix-info:before{
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin: auto 0;
    background-color: #2258a2;
}

.bb-appendix-info:after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 2px;
    height: 12px;
    display: block;
    margin: auto 9px;
    -webkit-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);
    -moz-box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);
    box-shadow: inset 0 -2px 0 0 #fff, inset 0 7px 0 0 #fff, inset 0 8px 0 0 rgba(255,255,255,.5);
}

.bb-appendix-nodata{
padding:20px 20px 20px 20px;
color:#666;
font-size:18px;
line-height:1.4;
text-align:center;
font-weight:bold;
}


/*                                */
/* ４月12日分更新                   */
/*                                */


/* -- ナビゲーション下・ニュース・写真集など一覧表示部分 -- */

.content-toggle.is-open .content-area:before,
.content-toggle.is-open .content-area:after{
    content: none;
    display:none;
}

.js-sokuhou-content-wrapper.inning-info-list .content-area-wrapper:first-child{
margin-bottom:0;
}


/* -- aタグ囲み位置の変更にともなう対応 -- */

.game-outline small {
    display: block;
    font-size: 12px;
    padding: 10px 10px 0;
}


/* -- 日程部分・細かいマージン調整 -- */

.game-list.agenda+.title-label.turquoise{
margin-top:15px;
}

/* -- 各大会ナビゲーション　一覧メニュー内　iPhoneで崩れるための修正 -- */

.content-toggle + .content-area::before,
.content-toggle + .content-area::after{
  width: 0!important; 
  display: none;
}

/* -- 大会成績　広告がつかないようにする -- */

.game-contents-wrapper .tg-article + center{
margin-bottom:30px;
}




/********************************************
YDN native広告:
高校野球ページ用　既存YDNに追記 20180412修正分
********************************************/

.column-1-list li:hover{
background-color: #f6f6f6!important;
overflow:hidden;
display:block;
}



.column-1-list .native .yads_ad_res_s{
padding:10px;
position:relative;
}


.column-1-list .native .yads_ad_logo_res_s{
display:none;
}


.column-1-list .native .yads_ad_button_res_s{
display:none;
}


.column-1-list .native .yads_ad_res_s  > a:before{
position:absolute;
top: 0;
bottom: 0;
left: 95px;
margin: auto;

content: 'PR';
display: inline-block;
width: 14px;
height: 14px;
line-height: 14px;
padding: 3px;
background-color: #bbb;
border-radius: 5%;
color: #fff;
font-size: 10px;
font-weight: normal;
text-align: center;
}

.column-1-list .native .yads_ad_img_res_s{
width:75px;
height:75px;
float:left;
padding-right:35px;
}


.column-1-list .native .yads_ad_img_res_s img{
width:75px;
height:75px;
}


.column-1-list .native .yads_ad_title_res_s{
color:#333;
font-size:15px;
line-height:1.3;
}


.column-1-list .native .yads_ad_adv_res_s{
color:#666!important;
font-size:10px;
line-height:15px;
padding-bottom:3px;
}

.column-1-list .native .yads_ad_info_res_s{
color:#666!important;
font-size:10px;
line-height:15px;
}

.column-1-list .native .yads_ad_info_res_s img{
width:10px;
height:10px;
vertical-align:middle;
}


.column-1-list li:hover .yads_ad_info_res_s img{
opacity:1;
}


/* -- これまでの属性クリア -- */
.column-1-list.image-list .yads_ad_res_s a {
  display: block;
  padding: 0;
  width: 100%;
}



.column-1-list.image-list .yads_ad_res_s a:hover {
  text-decoration:none;
}


/* -- 日程部分 通常image-list のcaptionの長さ修正 20180507 --  */
.column-1-list.image-list .caption {
    margin-left: 0px;
    width: 100%;
}

.column-1-list.image-list .tg-figure + .caption {
    margin-left: 10px;
    width: calc(100% - 60px);
}


/* -- 一覧への課金アイコン表示 -- */
.column-1-list.text-list .add-paid-before:before{
    left: 8px;
}

/*
学校名リンク
*/
.article-contents p a{
	font-weight:bold;
	color:#0093ab;
}	

.article-contents .school-link-area{
	overflow:hidden;
	border-top:1px solid #bbbbbb;
	padding-top:12px;
}

.article-contents .school-link-area:before{
	content: "学校ページへ：";
	font-weight:bold;
	line-height:30px;	
}

.article-contents .school-link{
	position: relative;
	display:inline-block;
	margin-left: 20px;
	padding: 0 10px 0 5px;
	background: #0093ab;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	font-size: 16px;
	color: #fff;
	line-height: 30px;
}

.article-contents .school-link:after{
	content: "";
	position: absolute;
	top: 0;
	left: -16px;
	border-right: 16px solid #0093ab;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	transform-origin: right top;
	transform: scaleX(.75);
}

.article-contents .school-link a{
	color:#ffffff;
	font-weight:bold;
}



/* -------------------- */
/* トップ上部のリンク用 */
/* -------------------- */
.koya-zenkoku-linktitle {
    background: url(https://www.kobe-np.co.jp/info/nextguide/koya2018summer/robot/img/title-bg.png) repeat left top!important;
    background-size:4px 4px!important;
    padding: 10px 10px!important;
    /* z-index: 5; */
    position: relative;
}

.koya-zenkoku-linktitle a {
    color: #006CB8;
}

.koya-zenkoku-linktitle a:hover span{
    -webkit-animation:blink2 1.5s ease-in-out infinite alternate;
    -moz-animation:blinkblink2 1.5s ease-in-out infinite alternate;
    animation:blinkblink2 1.5s ease-in-out infinite alternate;
}

.koya-zenkoku-linktitle span {
    background: #fff;
    color: #006CB8;
    display: block;
    font-size: 20px;
    line-height:20px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
}

/* 点滅 */
.koya-zenkoku-linktitle .blinking{
    -webkit-animation:blinkblink 1.5s ease-in-out infinite alternate;
    -moz-animation:blinkblink 1.5s ease-in-out infinite alternate;
    animation:blinkblink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blinkblink{
    0% {opacity:0;}
    50% {opacity:1;}
}
@-moz-keyframes blinkblink{
    0% {opacity:0;}
    50% {opacity:1;}
}
@keyframes blinkblink{
    0% {opacity:0;}
    50% {opacity:1;}
}
@-webkit-keyframes blinkblink2{
    0% {opacity:1;}
    50% {opacity:1;}
}
@-moz-keyframes blinkblink2{
    0% {opacity:1;}
    50% {opacity:1;}
}
@keyframes blinkblink2{
    0% {opacity:1;}
    50% {opacity:1;}
}
