/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/*共通設定*/
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  :root { 
    --black: #000;
    --white: #fff;
  }
  
  * {
    padding: 0px ; 
    margin: 0;
  }

  img{
    vertical-align: top;
  }
  
  .hide {
    display: none;
  }

  #modal, .modal {
    display: none;
  }

  span.attention {
    background: #b40000;
    color: #dcdddd;
  }

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/*リンク色*/
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  
 
  a:link {
    color: #9f9f9f; /* 未訪問のリンク色 */
  }
  a:visited {
    color: #9f9f9f; /* 訪問済みのリンク色 */
  }
  a:hover {
    color: #a91f25;  /* カーソルが乗った時の色 */
    text-decoration: underline; /* アンダーラインあり */
  }

  .menuMobile a:link {
    color: #FFF; /* 未訪問のリンク色 */
    text-decoration: none;  /* アンダーラインなし */
  }
  .menuMobile a:visited {
    color: #fff; /* 訪問済みのリンク色 */
    text-decoration: none;  /* アンダーラインなし */
  }
  .menuMobile a:hover {
    color: #a91f25;  /* カーソルが乗った時の色 */
  }
  

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/*全体レイアウト関連*/
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image:url("../img/back.jpg");
  }

  header {
    height: auto;
  }

  div.main-wrapper {
    display: grid;
    grid-template-columns: 300px minmax(660px, 800px) 240px;
    grid-template-rows: 1fr;
    flex: 1;
    max-width: 1340px;
    margin: 0 auto;
  }

  footer {
    background: #0e0e0e;
    min-width: 320px;
    overflow-wrap:  break-word;
  }

  input, textarea {
    padding: .6em .8em;
    border: 1px solid #efffa7;
    border-radius: 3px;
  }

  input.date {
    width: 95px;
  }

  input.id {
    width: 60px;
  }

  input.title {
    width: 600px;
  }

  input.yellow {
    background: #e2eca4;
  }

  .error {
    color: #dc2222;
  }

  .pink {
    background: #fff4f4;
  }

  p {
    transform: rotate(0.03deg);
  }

/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/*全体レイアウト レスポンシブ　※モバイル用 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 1200px) {

    div.main-wrapper {
      grid-template-columns: 300px minmax(auto, 800px);
    }

    aside {
      display: none;
    }

  }

  @media only screen and (max-width: 960px) {
    div.main-wrapper {
      grid-template-columns: minmax(320px, 960px);
    }

    nav {
      display: none;
    }

  }

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* ヘッダー */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  header {
    background-image:url("../img/top.png");
    background-size: 105%;
    background-position: bottom left;
    height: 230px;
    text-align: center;
    padding-top: 70px;
  }
  header p {
    color: #a91f25;
    font-size: 1.2em;
  }

  /* menuボタン */
  #menu {
    width: 120px;
    margin-top: 25px;
    display: none;
  }

  div.menuMobile {
    width: 100%;
    position: absolute;
    z-index: 20;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
  }

  div.menuMobile p {
    padding: 20px 0;
    border-bottom: 2px solid #424242;
    color: #fff;
  }

  /* ピックアップ記事 */
  div.menuBox {
    border-bottom: 2px solid #424242;
    color: #fff;
    display: grid;
    grid-template-columns: 33% auto;
  }

  div.menuBox img {
    width: 100%;
  }

  div.menuBox a.text {
    padding: 5px 5px 5px 10px;
    text-align: left;
  }

  div.menuMobile p.Ptitle {
    position:relative;
    height: 40px;
    text-align: left;
  }

  p.Ptitle .title {
    height: 40px;
    width: auto;
    position: absolute;
    left: 20px;
  }

  p.Ptitle .close {
    width: 40px;
    position: absolute;
    right: 20px;
  }

  p.pageTop {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 20;
  }

/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/*ヘッダー レスポンシブ　※モバイル用 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 1200px) {
    header {
      
    }

  }

  @media only screen and (max-width: 960px) {
    header {
      background-image:url("../img/top.png");
      background-size: 150%;
      background-position: bottom left;
      padding-bottom: 8%;
      height: 180px;
      min-width: 320px;
    }
    header img {
      width: 50%;
    }

    /* menuボタン */
    #menu {
      display:inline;
    }

    p.pageTop {
      position: fixed;
      bottom: 10px;
      right: 5px;
    }

  }

  @media only screen and (max-width: 680px) {
    header {
      background-size: 200%;
    }
    header img {
      width: 70%;
    }
  }

  @media only screen and (max-width: 500px) {
    header {
      background-size: 290%;
    }
    header img {
      width: 80%;
    }
  }
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* 左エリア */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  nav {
    background: #111111;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  nav p, nav a {
    color: #9f9f9f;
    font-size: 1em;
    line-height: 25px;
    word-break: break-all;
    margin-bottom: 6px;
  } 

  nav hr {
    border: 0;
    border-top: 1px dashed #424242;
    margin: 10px 0 15px;
  }

  nav .new {
    height: 100px;
    width: calc(100% - 40px);
    margin: 0 auto;
  } 

  nav .new img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #424242;
    margin-bottom: 10px;
  }

  nav .new img:hover {
    border: 1px solid #9f9f9f;
  }

  nav p.title {
    background: #0e0e0e;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
    margin-bottom: 15px;
    padding: 10px 15px 10px 40px;
    color: #838383;
    font-size: 1.1em;
    background-repeat: no-repeat;
    background-position: 5px 0;
    color: #9f9f9f;
  }

  nav p.date {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 5px 3px;
  }
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* メインエリア */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  main {
    background-image:url("../img/back_main.jpg");
  }

  .kounin {
    width: 100%;
  }

  article {
    padding: 30px;
  }

  .adBox {
    padding: 0 30px;
  }

  article section {
    margin-top: 50px;
  }

  article section.player {
    margin-top: -10px;
  }

  article p {
    font-size: 1.1em;
    line-height: 35px;
    color: #838383;
    margin-bottom: 35px;
  }

  article ul p {
    margin: -15px 0 20px 0;
  }

  h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #a91f25;
    line-height: 53px;
  }
  h2:not(.player h2) {
    position: relative;
    display: inline-block;
    padding: 16px;
    text-align: center;
    width: calc(100% - 32px);
    margin-bottom: 25px;
    color: #fff;
    background: #b40000;
    font-size: 1.4em;
  }
  h2:not(.player h2)::before {
    content: "";
    position: absolute;
    border: solid 12px transparent;
    border-top: solid 12px #b40000;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .player h2 {
    margin-bottom: 0;
    background: transparent;
    font-size: 0;
    padding: 0;
    height: 0;
    background: #b40000;
  }
  .player a {
    text-decoration:none;
  }
  h3 {
    background: #f9f9f9;
    padding: 15px 18px;
    border-bottom: solid 2px #b40000;
    color: #4b4b4b;
    margin-bottom: 20px;
  }
  div.date {
    background: #111111;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
    margin-bottom: 20px;
    padding: 10px 15px;
    color: #838383;
    font-size: 1em;
  }
  div.youtube {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 20px;
  }

  div.youtubeStart {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin-top: 10px;
    color: #9f9f9f;
  }

  div.youtubeStart.hyde {
    display: none;
  }


  .YoutubeAdd div.youtube {
    margin-bottom: 0;
  }
  div.youtube iframe, div.youtubeStart iframe {
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .smallMidashi {
    font-size: 1em;
    margin: 0;
    color: #9f9f9f;
    font-weight: bold;
    padding: 8px 8px 2px 8px;
  }

  div.ad {
    display: flex;
    width: 468px;
    text-align: center;
    margin: 0 auto;
    padding-top: 30px;
  }

  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*メインエリア 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/



  @media only screen and (max-width: 720px) {

    .kounin {
      margin-bottom: 10px;
    }

    article {
      padding: 5px;
    }

    .adBox {
      padding: 0 5px;
    }

    article section {
      margin-top: 20px;
    }

    div.ad {
      padding-top: 0;
      padding-bottom: 20px;
    }

  }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* アイキャッチ下 */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
    span.post {
      background-image: url(../img/icon/deco/post.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding-left: 28px;
    }
    span.update {
      background-image: url(../img/icon/deco/update.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding-left: 28px;
      margin-left: 10px;
    }
    span.count {
      background-image: url(../img/icon/deco/count.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding-left: 44px;
      margin-left: 10px;
    }
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* フォトフレーム */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
    ul {
      background: #111111;
      color: #9f9f9f;
      padding: 30px 20px 30px 45px;
      border: 1px solid #424242;
    }

    li {
      margin-bottom: 20px;
      padding-left: 10px;
    }


  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* 選手 */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
    .PhotoFrame-w, .PhotoFrame-h {
      display: grid;
      padding: 20px;
      border-color: #424242;
      border-style: dashed;
      border-width: 1px 0;
      margin-bottom: 1px;
      background: #111111;
    }
    .PhotoFrame-w {
      grid-template-columns: 45% auto;
    }
    .PhotoFrame-h {
      grid-template-columns: 35% auto;
    }
    .PhotoFrame-w div:not(.player, .youtube), .PhotoFrame-h div {
      margin: 0 0 0 20px;
      color: #9f9f9f;
      line-height: 30px;
    }        
    .PhotoFrame-w img, .PhotoFrame-h img {
      width: 100%;
    }
    span.title{
      font-size: 1.2em;
      line-height: 10px;
    }

  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*フォトフレーム 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 720px) {

  .PhotoFrame-h, .PhotoFrame-w {
    grid-template-columns: 100%;
  }
  span.title {
    font-weight: bold;
  }
  .PhotoFrame-w div:not(.player), .PhotoFrame-h div {
    margin: 20px 0 0 0;
  }  

  }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* タグフレーム */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  .tagFrame {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0 10px 20px;
    border-color: #424242;
    border-style: dashed;
    border-width: 1px 0;
    margin-bottom: 1px;
    background: #111111;
    color: #9f9f9f;
    margin-top: 30px;
  }

  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*タグフレーム 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 720px) {

    .tagFrame {
      display: grid;
      padding: 10px 0 10px 10px;
      margin-top: 0;
    }

    .tagFrame div.tagBox {
      line-height: 38px;
    }
  
  }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* フォトチャンジャー */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  .photoCanger {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin: 10px 0 20px;
  }

  .photoCanger img:hover {
    transform: scale(1.1) rotate(3deg);
    transition-duration: 0.3s;
    cursor: pointer;
  }

  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*フォトチャンジャー 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 720px) {

    .photoCanger {
      grid-template-columns: 1fr 1fr 1fr;
      margin: 10px 0;
    }
  
  }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* Wフォト */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  .Wphoto {
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 10px 0 20px;
  }
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*Wフォト 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 720px) {

    .Wphoto {
      grid-template-columns: 100%;
      margin: 0;
    }
  
  }
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* プレイヤーボックス */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  div.player {
    display: grid;
    grid-template-rows: 240px auto;
  }

  div.player p {
    background: #b40000;
    padding-top: 11px;
    margin-bottom: 0;
    line-height: 20px;
  }

  .player p span {
    font-size: 80%;
    margin-left: 13px;
    vertical-align: middle;
    color: #000;
  }

  .player p span.name {
    font-size: 115%;
    font-family: 'Bebas Neue', cursive;
  }

  div.tagBox {
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .playerBox hr {
    margin: 13px 0 13px; 
    border: 0;
    border-top: 1px dashed #424242;
  }

  .playerBox .tag, .tagFrame .label {
    background: #262521;
    padding: 0 15px;
    margin: 2px 0;
    font-size: 0.8em;
    border-radius:9999px;
    width: auto;
    word-break: keep-all;
    display: inline-block;
  }
  .tagFrame .label {
    cursor: pointer;
  }

  .tagFrame input[type=radio]:checked + label {
    background: #b40000;
  }

  .tagFrame input[type=radio] {
    display: none; /* ラジオボタンを非表示にする */
  }


  .playerBox p {
    margin: 15px 0 0;
  }

  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
  /*プレイヤーボックス 　※モバイル用 */
  /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 1370px) {

    div.player {
      grid-template-rows: auto auto;
    }
  
    }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* リンクフレーム */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
    .LinkFrame {
      display: grid;
      grid-template-columns: 230px auto;
      border: 1px solid #424242;
      margin-bottom: 1px;
      background: #111111;
    }
    .LinkFrame div {
      position:relative;
      color: #9f9f9f;
      padding: 13px 15px 10px;
    }
    .LinkFrame div.LinkBox {
      padding: 0;
      margin:0 auto;
      overflow: hidden;
    }
    .LinkFrame img {
      width: 100%;
    }
    .LinkFrame img:hover {
      transform:scale(1.2,1.2);
    }
    .LinkFrame p.text {
      line-height: 30px;
      height: 65px;
      margin-bottom: 0;
    }
    .LinkFrame p.link_text {
      margin: 0;
      font-size: 1em;
      line-height: 30px;
    }
    .LinkFrame p.date {
      position: absolute;
      background: #111111;
      border-top: 1px solid #424242;
      border-bottom: 1px solid #424242;
      margin-bottom: 0;
      padding: 5px;
      color: #838383;
      font-size: 0.9em;
      width: calc(100% - 45px);
      bottom: 10px;
      height: 35px;
      overflow: hidden;
    }

    .LinkFrame p.top {
      display: none;
    }

    /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
    /* リンクフレーム */
    /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
    @media only screen and (max-width: 720px) {  

      .LinkFrame {
        grid-template-columns: 100%;
      }
      .LinkFrame div {
        position:static;
        padding: 0;
      }
      .LinkFrame p.date {
        position: static;
        width: auto;
      }
    
      .LinkFrame p.link_text {
        margin: 8px;
      }
    
      .LinkFrame p.top {
        display: block;
      }
    
      .LinkFrame p.bottom {
        display: none;
      }
  
    }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* 引用 */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
    .quoteBOX {
      position:relative;
    }
    .quoteBOX span {
      position: absolute;/* 子要素にこれ */
      bottom: -6px;
      left: 8px;
      font-size: 140%;
      font-family: 'Noto Sans JP', sans-serif;
      color: #b40000;
    }
    .quoteBOX img.shadow {
      position: absolute;/* 子要素にこれ */
      top: 0;
      left: 0;
    }
    .quoteBOX .text {
      position: absolute;/* 子要素にこれ */
      top: 2px;
      left: 5px;
      font-size: 0.8em;
    }
    img.quote {
      position: absolute;/* 子要素にこれ */
      margin-top: -15px;
      margin-left: 10px;
      width: 40px;
    }
    p.quote {
      margin: 10px 0 10px;
      font-size: 0.8em;
      line-height: 23px;
    }
    
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* 一言コメント */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  .one-word {
    display: grid;
    grid-template-columns: 15% auto;
    margin: 35px 0 20px;
  }
  .one-word img {
    width: 100%;
  }
  .one-word span {
    margin-left: 15px;
  }
  .one-word span p {
    margin-bottom: 0;
    text-align: center;
    font-size: 0.9em;
    line-height: 30px;
    color: #838383;
  }
  .balloon {
    position: relative;
    display: inline-block;
    margin: 0 0 10px 25px;
    padding: 10px 15px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #f5f5f5;
    border: solid 1px #424242;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .balloon .parent{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .balloon p {
    line-height: 28px;
    margin-bottom: 5px;
  }
  
  .balloon:before {
    content: "";
    position: absolute;
    top: 0;
    left: -22px;
    margin-top: 35px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2;
  }
  
  .balloon:after {
    content: "";
    position: absolute;
    top: 0;
    left: -22px;
    margin-top: 36px;
    border: 11px solid transparent;
    border-right: 11px solid #838383;
    z-index: 1;
  }

    /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
    /* 一言コメント */
    /*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/



      @media only screen and (max-width: 720px) {
      
        .one-word span p {
          font-size: 11px;
        }
      
      }

  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
  /* 最終hr これを超えると右ナビが外れる */
  /*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  hr.fin {
    display: none;
  }
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* オッズ票 */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

table.odds {
  color: #9f9f9f;
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table.odds th {
  text-align: left;
  padding: 8px 8px;
  background: none;
}

table.odds td {
  text-align: right;
  padding: 8px 8px;
  background: #111111;
  border-right: 1px solid #424242;
}

table.odds tr.blue td {
  padding: 8px;
}

table.odds tr.red td {
  padding: 8px;
  border-color: #424242;
  border-style: solid;
  border-width: 0 1px 1px;
  background: #1a1a1a;
}

table.odds td.name {
  text-align: left;
}

table.odds td.game {
  text-align: center;
}

table.odds tr.tittle td {
  text-align: center;
  background: #424242;
  border-right: 1px solid #111111;
}

table.odds tr.tittle {
  border-left: 1px solid #424242;
}

table.odds td.beebet {
  position:relative;
}

table.odds td.beebet a {
  position: absolute;
  top: -32px;
  left: 0px;
}

table.odds td.beebet a.betc {
  left: 10%;
}

td.beebet a.betc img {
  width: 130px;
}

table.odds td.beebet a:hover {
  opacity: 0.6; filter: brightness(110%);
}

/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/* オッズ票 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
@media only screen and (max-width: 720px) {
  
  table.odds td.beebet a {
    top: -50px;
    left: 0px;
  }

}

@media only screen and (max-width: 650px) {
  
  table.odds td.beebet a img {
    position: absolute;
    top: 10px;
    width: 80px;
    left: 15px;
  }
  table.odds td.beebet a.betc img {
    width: 80px;
    left: 25px;
  }

}

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* 試合勝敗票 */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

div.match {
  background: #111111;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1fr auto auto;
    border-bottom: 1px dashed #424242;
}

div.match div {
  color: #9f9f9f;
  font-size: 0.9em;
}

.match01, .match02, .match03{
  padding: 20px;
}

.match01, .match02, .match03 {
  display: flex;
  align-items: center;
}

.match01 img {
  margin-left: 20px;
}

.match01 button, li button, .PhotoFrame-w button {
  background:none;
  background-image: url(../img/movie_start.svg);
  background-repeat: no-repeat;
  border: none;
  min-width: 25px;
  height: 17px;
  right: 0;
}

li button {
  vertical-align: middle;
  margin-left: 20px;
}

.match01 button:hover, li button:hover, .PhotoFrame-w button:hover {
  cursor: pointer;
}

.match01 button:disabled {
  background-image: url(../img/movie_start_disabled.svg);
  cursor: auto;
}

.match01, .match02 {
  background-image: url(../img/table_separater.svg);
  background-repeat: no-repeat;
  background-position: right;
}

.match03 {
  min-width: 58px;
  justify-content: center;
}


div.match p {
  color: #9f9f9f;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.95em;
  line-height: 25px;
}

div.match01 p {
  margin-right: 15px;
}

div.match div.match02 p {
  font-size: 1.15em;
}



.match.win-off .match02 {
  background-image: none;
}

.match.win-off .match03, .match.win-off .win-off {
  display: none;
}

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* 選手一覧 */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

div.ALLplayer p {
  background: #111111;
  width: calc(100% - 10px);
  border-bottom: 1px dashed #424242;
  margin-bottom: 0;
  padding-left: 10px;

}



/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/*試合勝敗票 　※モバイル用 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/



@media only screen and (max-width: 720px) {

  div.match {
    grid-template-columns: 1fr auto;
  }

  .match01 {
    grid-column: 1/ 3;
    background: #d4d4d4;
    padding: 10px 20px;
    position: relative;

    color: #b40000;

  }

  div.match p {
    color: #111111;
  }

  .match03 {
    background-image: none;
  }

  .match04 {
    display: none;
  }

  div.ALLplayer p {
    padding: 10px;
    width: calc(100% - 20px);
  }

}

table.artical {
  background: #111111;
  color: #9f9f9f;
  margin-bottom: 30px;
  border-collapse:collapse;
  width: 100%;
}

table.newsEdi {
  background: #111111;
  color: #9f9f9f;
  border-spacing: 5px;
  width: auto;
}

.artical td {
  padding: 20px;
  font-size: 0.9em;
}

.artical td .small {
  font-size: 0.8em;
}

.artical td div {
  display: flex;
  align-items: center;
}

.artical td div img { 

}

.artical td div span { 

}


.artical td:not(.end) {
  background-image: url(../img/table_separater.svg);
  background-repeat: no-repeat;
  background-position: right;
}

.artical tr {
  border-top: 1px dashed #424242;
  border-bottom: 1px dashed #424242;
}

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* 右エリア */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  aside {
    background: #111111;
  }

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* 目次 table of contents  */
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  .mokuji {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #111111;
    color: #9f9f9f;
    padding: 20px;
    margin-bottom: 20px;
  }
  .mokuji.left {
    display: none;
  }
  .mokuji .icon {
    width: 12px;
    vertical-align: top;
    background-image:url(../img/toc/mokuji_bar_001.svg),url(../img/toc/mokuji_bar_002.svg);
    background-repeat: no-repeat, repeat;
    background-position:bottom, top;
  }
  .mokuji .icon-fin {
    vertical-align: top;
  }
  .mokuji .contents {
    word-wrap: break-word;
    font-size: 1em;
    padding: 0 0 20px 7px;
    line-height: 28px;
  }
  
  .mokuji .contents-fin {
    word-wrap: break-word;
    font-size: 1em;
    padding: 0 0 0 7px;
    vertical-align: top;
  }

/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/* レスポンシブ　※モバイル用 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

  @media only screen and (max-width: 1200px) {

    .mokuji.left {
      position: static;
      display: block;
    }


  }

  @media only screen and (max-width: 960px) {


  }

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* フッター
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

  footer {
    text-align: center;
  }

  footer p {
    color: #9f9f9f;
    font-size: 1em;
    line-height: 25px;
    margin-bottom: 30px;
  }

/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* コメント関連 + 問い合わせ
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

.comment, #contact {
  background: #f5f5f5;
  margin: 30px;
  padding: 30px;
  border-radius: 8px;
}

.comment .comment_title1, .comment .comment_title2 {
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 35px;
  font-size: 1em;
}

.comment .comment_title1 {
  background-image: url(../img/comment/icon1.svg);
}

.comment .comment_title2 {
  background-image: url(../img/comment/icon2.svg);
  margin-top: 20px;
}

.comment hr, #contact hr {
  margin: 10px 0 13px; 
  border: 0;
  border-top: 1px dashed #dddddd;
}

.comment input, .comment textarea,#contact input, #contact textarea  {
  width: 100%;
  box-sizing: border-box;
}

.comment input, .comment textarea  {
  margin: 7px 0 10px;
}

#contact input, #contact textarea  {
  margin: 10px 0 5px;
}


.comment textarea, #contact textarea {
  height: 200px;
}

.comment p, #contact p {
  font-size: 1em;
}

#contact p {
  display: flex;
  align-items: center;
}



.comment p.error, #contact p.error, #contact div.error {
  font-size: 0.8em;
  margin-top: 5px;
}

.comment p.error, #contact p.error {
  display: none;
}

.comment p.title {
  color: var( --fontColor-001 );
}

.comment p.text {
  margin-top: 8px;
}

.comment p.text {
  margin-bottom: 25px;
}

#contact .req {
  font-size: 0.8em;
  background: #b40000;
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-right: 7px;
}

#contact .any {
  font-size: 0.8em;
  background: #dcdddd;
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-right: 7px;
}



/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/
/*コメント関連 + 問い合わせ　※モバイル用 */
/*〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●〇●*/

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 720px) {
  .comment, #contact {
    margin: 50px 5px 30px 5px;
  }
}

@media only screen and (max-width: 500px) {

}


/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/
/* キャプション・出典
/*■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□*/

figure {
  display: flex;
  flex-flow: column;
  margin: auto;
}


figcaption {
  background-color: rgba(0, 0, 0, 0.2);
  color: #838383;
  padding: 5px 20px;
  text-align: right;
}