@charset "UTF-8";
.read {
  margin-bottom: 30px;
  text-align: center;
}
.read span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .read span {
    font-size: 12px;
  }
}

/* 並び替えボタン */
.sort_btn_first, .sort_btn_type {
  position: relative;
  cursor: pointer;
}
.sort_btn_first::after, .sort_btn_type::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: calc(50% - 7px);
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .sort_btn_first::after, .sort_btn_type::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 4px);
  }
}
.sort_btn_first.opened::after, .sort_btn_type.opened::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .sort_btn_first.opened::after, .sort_btn_type.opened::after {
    top: calc(50% - 3px);
  }
}
.sort_btn_first {
  max-width: 260px;
  height: 60px;
  margin: 0 auto;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sort_btn_first {
    width: 200px;
    height: 50px;
  }
}
.sort_btn_type {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .sort_btn_type {
    padding: 15px 20px;
  }
}
.sort_block {
  display: none;
  margin-top: 25px;
  background: #fff;
}
.sort_inner:not(:last-child) {
  border-bottom: 1px solid #C9C9C9;
}
.sort_box {
  display: none;
  padding: 0 30px 15px;
}
@media screen and (max-width: 768px) {
  .sort_box {
    padding: 0 20px 5px;
  }
}
.sort_name {
  margin-bottom: 5px;
}
.sort_list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sort_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.sort_list.sort_list_price {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .sort_list.sort_list_price {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sort_list li {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .sort_list li {
    height: 35px;
  }
}
.sort_list li.disabled {
  display: none;
}
.sort_list li a {
  height: 100%;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 5px;
}
.sort_list li a.disabled {
  background: #eee;
  color: #C9C9C9;
  pointer-events: none;
}
.sort_category {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.sort_category_title {
  border-left: 3px solid #D31E3A;
  padding-left: 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .sort_category_title {
    padding-left: 9px;
    font-size: 13px;
  }
}
.sort_category_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}
.sort_category_list li a {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 70px;
  background: #fff;
  border-top: 1px solid #C9C9C9;
  border-left: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
}
@media screen and (max-width: 768px) {
  .sort_category_list li a {
    height: 50px;
  }
}
.sort_category_list li:last-child a {
  border-right: 1px solid #C9C9C9;
}

#list_area {
  padding: 50px 0 60px;
}

.list_block:not(:first-child) {
  margin-top: 60px;
}
.list_title {
  border-left: 3px solid #D31E3A;
  padding-left: 17px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .list_title {
    padding-left: 12px;
    font-size: 17px;
  }
}
.list_base {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 35px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .list_base {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 25px;
    margin-top: 15px;
  }
}
.list_base li a {
  display: block;
  position: relative;
}
.list_base li a .img_wrap {
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #CCC;
  position: relative;
}
.list_base li a .txt_wrap {
  margin-top: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .list_base li a .txt_wrap {
    font-size: 12px;
  }
}
.list_base li a .txt_wrap .list_shop_name {
  font-weight: 600;
  text-decoration: underline;
}
.list_base li a .txt_wrap .list_shop_coming {
  color: #A2A2A2;
}
.list_base li a .txt_wrap .list_shop_coming::before {
  content: "coming soon";
}
.list_base li a:hover {
  opacity: 1;
}
.list_base li a:not(.end):not(.coming):hover {
  opacity: 0.6;
}
.list_base li a:not(.end):not(.coming):hover .txt_wrap .list_shop_name {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .list_base li a:not(.end):not(.coming):hover .txt_wrap .list_shop_name {
    text-decoration: underline;
  }
}
.list_base li a.movie:not(.end)::after {
  content: "MOVIE";
  width: 55px;
  height: 55px;
  padding-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #FFF;
  border-radius: 50%;
  background: url(../img/icon_movie.png) no-repeat center bottom 10px/14px, #D31E3A;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .list_base li a.movie:not(.end)::after {
    width: 50px;
    height: 50px;
    padding-top: 11px;
    background: url(../img/icon_movie.png) no-repeat center bottom 9px/12px, #D31E3A;
    font-size: 10px;
    top: -7px;
    left: -7px;
  }
}
.list_base li a.end {
  pointer-events: none;
}
.list_base li a.end .img_wrap::after {
  content: "終了しました";
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(191, 191, 191, 0.87);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .list_base li a.end .img_wrap::after {
    font-size: 12px;
  }
}

.back_btn {
  width: 260px;
  height: 60px;
  margin: 80px auto 0;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .back_btn {
    width: 200px;
    height: 50px;
    margin: 50px auto 0;
  }
}
.back_btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: calc(50% - 5px);
  left: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .back_btn::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
  }
}