@charset "UTF-8";
.title_img {
  margin: 200px auto 2rem auto;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.title_img img {
  width: 100%;
  opacity: 0.3;
  margin: 0 auto;
}

.title {
  font-size: 10rem;
  color: crimson;
  height: 50px;
  width: 50rem;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.result {
  width: 80%;
  max-width: 800px;
  height: 70vw;
  max-height: 600px;
  margin: 5rem auto 3rem auto;
  position: relative;
}

.img01 {
  position: absolute;
  top: 5rem;
  left: 5rem;
}

.img02 {
  position: absolute;
  top: 40rem;
  left: 20rem;
}

.img03 {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
}

.img04 {
  position: absolute;
  bottom: 40rem;
  right: 20rem;
}

.result img {
  width: 25%;
  opacity: 0.5;
}

/*アコーディオンメニューここから*/
.accordion-container .accordion-title {
  border: ridge 4px #fff;
  border-radius: 10px;
  margin: 0;
  position: relative;
  padding: 0.625em 0.625em 0.625em 2em;
  background-color: #000;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background-color: #00aaa7;
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  display: none;
  padding-left: 2.3125em;
  margin-bottom: 1rem;
}

/* CSS for CodePen */
.accordion-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

.result_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.date, .tournament_name, .place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-color: black;
  border: double;
  border-color: white;
  text-align: center;
  height: 50px;
}

.date {
  width: 30%;
}

.tournament_name {
  width: 50%;
}

.place {
  width: 20%;
}

/*アコーディオンメニューここまで*/
/*# sourceMappingURL=stylesheet.css.map */