@charset "UTF-8";
@media screen and (min-width: 414px) {
  .headlogheight {
    height: 6vmax;
  }
  .score_ {
    font-size: 3em;
    margin-top: 20px;
  }
}
@media screen and (min-width: 576px) {
  .headlogheight {
    height: 6vmax;
  }
  .score_ {
    font-size: 4em;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .headlogheight {
    height: 9vmax;
  }
  .score_ {
    font-size: 5em;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .headlogheight {
    height: 9vmax;
  }
  .score_ {
    font-size: 5em;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .headlogheight {
    height: 9vmax;
  }
  .score_ {
    font-size: 5em;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .headlogheight {
    height: 9vmax;
  }
  .team_name {
    margin-left: -100px;
  }
  .score_ {
    font-size: 5em;
    margin-top: 40px;
  }
  .result-grid {
    display: grid;
    /* グリッドレイアウト */
    /*grid-template-columns: 20% 60% 20%*/
    width: 65%;
  }
}
.result-grid {
  display: grid;
  /* グリッドレイアウト */
  /*grid-template-columns: 20% 60% 20%*/
  width: 55%;
}

.left-img {
  margin-right: 0;
  margin-left: auto;
}

#lefth {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  text-align: right !important;
  padding-top: 0.8em;
}

#leftm {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  text-align: center !important;
  margin-top: 1em;
}

#leftl {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  text-align: center !important;
  margin-top: 1em;
  padding-bottom: 0.8em;
}

#centerar {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  width: 15em;
  text-align: center;
}

#righth {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  grid-column: 3/3;
  padding-top: 0.8em;
}

#rightm {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  grid-column: 3/3;
  text-align: left;
  margin-top: 1em;
  text-align: center;
}

#rightl {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  grid-column: 3/3;
  text-align: center;
  margin-top: 1em;
  padding-bottom: 0.8em;
}

a.btn_08 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 46%;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #27acd9;
  border: 6px outset #1699c5;
  color: #fff;
  transition: 0.5s;
}

a.btn_08:hover {
  background: #44c6f2;
  border: 6px outset #27acd9;
  color: #fff;
}

.li-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.readmore{
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 10px;
  border: 1px solid #CCC;
}

.readmore-content{
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  margin:0 3px 0 3px;
  /*高さの初期値*/
  height: 280px;
}

/*
.readmore-content span{
  font-size: 25px;
}*/


.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 130px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 10px;
  background-color: #1699c5;
  border-radius: 10px;
  color: #FFF;
}
.readmore-label:before{
  content: '続きを読む';
}

.readmore-check{
  display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
  content: '閉じる';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
  height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}

.underline {
  font-size:1.2em;
  background: linear-gradient(transparent 60%, rgb(255, 255, 3) 10%);
}




/*# sourceMappingURL=fs.css.map */