/*---------------------------------------------------------------------
　共通
---------------------------------------------------------------------*/

.puzzle .ichiranBack {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

.puzzle .ichiranBack a {
  color: #000;
}

.puzzle .ichiranBack a:hover {
  opacity: 0.8;
}

.puzzle .btnWrap {
  display: flex;
  justify-content: center;
  list-style: none;
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
}

.puzzle .btnWrap li {
  margin: 0 10px 20px;
}

.puzzle .btnWrap li a {
  display: inline-block;
  padding: 14px 50px;
  background: url(../images/btn_arrow.svg) no-repeat right 5px center;
  background-size: 20px;
  background-color: #F08300;
  border: 3px solid #000;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.puzzle .btnWrap li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg_stripe.png) repeat center;
  z-index: -1;
  left: 5px;
  top: 7px;
  border: 1px solid #231815;
}


/*-------　トップページ　puzzleIndex　-------------------------------------*/

.puzzle .puzzleIndex .columnWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.puzzle .puzzleIndex .column {
  margin-right: 20px;
  width: 32%;
}

.puzzle .puzzleIndex .column:nth-child(3n) {
  margin-right: 0;
}

.puzzle .puzzleIndex .column img {
  border: 2px solid #000;
}

.puzzle .puzzleIndex h4 {
  font-weight: bold;
  text-align: center;
  background: #EF858C;
  margin-bottom: 5px;
  padding: 5px;
}

.puzzle .puzzleIndex a {
  text-decoration: none;
  color: #000;
}

.puzzle .puzzleIndex a img:hover {
  opacity: 0.8;
  border: 2px solid #EF858C;
}

.puzzle .puzzleIndex p {
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.puzzle .puzzleIndex .charaRight {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  transform: translate(0%, 70%);
}


@media screen and (max-width:896px) {
  .puzzle .puzzleIndex .columnWrap {
    display: block;
  }

  .puzzle .puzzleIndex .column {
    margin-right: auto;
    width: 100%;
  }


  /*-------　パズルプレイページ　puzzlePlay　-------------------------------------*/
