@charset "utf-8";
.topic-path{
  background: #fff;
  width: 100%;
}
.topic-path-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
}
@media screen and (max-width: 1000px){
  .topic-path-inner{
  width: 100%;
  font-size: 2vw;
  }
}

.topic-path-inner a{
  display: inline;
  color: #3d2b19;
  text-decoration: none;
}

.topic-path-inner a:hover{
  text-decoration: underline;
}

/*------- パンくずリスト --------*/

.past-wrap{
  border-top: 2px solid #d3341f;
  border-bottom: 2px solid #d3341f;
  width: 1000px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 1000px){
  .past-wrap{
  width: 95%;
  }
}

.past-btn-inner{
  display: flex;
}

.past-btn{
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #d3341f;
  padding: 20px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1000px){
  .past-btn{
  width: 100%;
  padding: 10px;
  }
}
.past-btn-txt{
  font-size:24px;
  font-weight: bold;
  box-sizing: border-box;
  vertical-align: middle;
  flex-basis: 95%;
}
@media screen and (max-width: 767px) {
  .past-btn-txt{
    font-size:4vw;
  }
}

.open.past-btn{
  background-color: transparent;
}

/*------- アコーディオンボタン --------*/

.past-btn-icon {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  border-radius: 50%;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  flex-basis: 5%;
}
@media screen and (max-width: 767px) {
  .past-btn-icon {
    width: calc(30/750 * 100vw);
    height: calc(30/750 * 100vw);
    padding: 8px;
    margin: auto 0 auto auto;
  }
}

.past-btn-icon span::before,
.past-btn-icon span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64%;
  height: 9%;
  margin: -4% 0 0 -28%;
  vertical-align: middle;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #d3341f;
}
@media screen and (max-width: 767px) {
.past-btn-icon span::before,
.past-btn-icon span::after {
    margin: -4% 0 0 -32%;
  }
}
.past-btn-icon span::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.open .past-btn-icon span::before {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.open .past-btn-icon span::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

.past-award{
  display: none;
}

/*------- アコーディオン　＋－アイコン --------*/

.box-2{
  width: 670px;
  font-size: 0;
}
.box-1{
  width: 320px;
  font-size: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .box-2{
    width: 100%;
    margin-bottom: 10px;
  }
  .box-1{
    width: 100%;
    flex-direction: row;
  }
  .box-1 a{
    width: 49%;
  }
}