@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  header {
    display: block;
  }
}
header .unit_logo {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  width: 70vw;
  margin-right: -80px;
  position: relative;
  background: #D70C18;
  padding: 40px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  header .unit_logo {
    width: 100%;
    margin-right: 0;
    padding: 20px 0;
    height: auto;
  }
}
header .unit_logo img {
  max-width: 92%;
}
header .unit_photo {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  margin-top: 40px;
  width: 70vw;
  background: url(../../img/photo_header.png) center center no-repeat;
  background-size: cover;
  height: 250px;
}
header .unit_photo.basketball {
  background: url(../../img/photo_header_basketball.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  header .unit_photo {
    margin: 0;
    width: 100%;
    height: 150px;
  }
}

.team_copy {
  border-top: none;
  padding: 0;
  margin: 60px auto;
}

.unit_btn {
  text-align: center;
  margin: 30px 0;
}
.unit_btn .btn_top {
  display: inline-block;
  border-radius: 5px;
  border: solid 1px #D70C18;
  color: #D70C18;
  padding: 10px 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.unit_btn .btn_top:hover {
  color: #fff;
  background: #D70C18;
}

#container {
  padding-top: 90px;
  opacity: 1 !important;
}
@media screen and (max-width: 640px) {
  #container {
    padding-top: 70px;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  main {
    padding: 0;
  }
}
main .txt_report {
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  main .txt_report {
    margin-left: 20px;
    font-size: 40px;
  }
}
main .report_title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  main .report_title {
    padding: 0 20px;
  }
}
main .report_title .icon {
  background: #fff;
  padding: 10px;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border: solid 1px #ccc;
}
main .report_title h1 {
  color: #D70C18;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  main .report_title h1 {
    font-size: 16px;
    line-height: 1.5;
  }
}
main .img_ctr {
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 640px) {
  main .inner {
    margin: 0 1em;
  }
}
main .inner dl.list {
  margin-top: 60px;
  line-height: 1.5;
}
main .inner dl.list dt {
  width: 20%;
  float: left;
  clear: both;
  color: #d70c18;
}
@media screen and (max-width: 640px) {
  main .inner dl.list dt {
    width: 100%;
    float: none;
  }
}
main .inner dl.list dd {
  padding: 0 0 1.75em 20%;
  margin-bottom: 1.75em;
  border-bottom: 1px solid #d70c18;
}
@media screen and (max-width: 640px) {
  main .inner dl.list dd {
    padding: 0.5em 0 1.5em 0;
  }
}
main .aRt {
  text-align: right;
}