@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}

.pc {
  display: block;
}

.sp {
  display: none;
}
.cp_list_wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cp_list_wrapper img {
  max-width: 100%;
  height: auto;
}

.cp_list_wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/*コンテンツ部分*/
.block_01,
.block_02 {
  width: 100%;
  max-width: 900px;
  margin: 10px auto 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.block_content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 10px;
  box-sizing: border-box;
}

.contet_01,
.contet_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #dcdcdc;
  border-radius: 10px;
  line-height: 1.5;
}

/*タブの切り替え*/
.tabs_01 {
  width: 100%;
  margin: 20px auto 10px;
  position: relative;
}

.tab-buttons span {
  font-size: 20px;
  font-family: "M PLUS 1p", sans-serif;
  color: #2d2d2d;
  background: #eeeeee;
  cursor: pointer;
  display: block;
  width: 50%;
  float: left;
  text-align: center;
  height: 70px;
  line-height: 80px;
  font-weight: 800;
  transform: rotate(0.05deg);
}

.w_tab.is-active {
  border-bottom: #f75204 solid 6px;
  color: #f75204;
  font-size: 20px;
}

.s_tab.is-active {
  border-bottom: #008fd4 solid 6px;
  color: #008fd4;
  font-size: 20px;
}

.tab-content {
  padding: 30px;
  display: inline-block;
  font-size: 13px;
  color: #333;
  background: #eeeeee;
  width: 100%;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

#content1 {
  border-top-left-radius: 10px;
}

#content2 {
  border-top-right-radius: 10px;
}
.content.content1 {
  left: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  display: none;
}

.content.content2 {
  left: 25%;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  display: none;
}

.content.content1.is-active {
  display: block;
}

.content.content2.is-active {
display: block;
}

.cate_name1::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 5px;
  margin-top: -7px;
  background-image: url("/PC/ja/asset/img/nw/feature/cp_list/web_icon.png");
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

#content1.select > .cate_name1::before {
  width: 50px;
  height: 50px;
  background-image: url("/PC/ja/asset/img/nw/feature/cp_list/web_icon_select.png");
  background-repeat: no-repeat;
}

.cate_name2::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 5px;
  margin-top: -7px;
  background-image: url("/PC/ja/asset/img/nw/feature/cp_list/shop_icon.png");
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

#content2.select > .cate_name2::before {
  width: 50px;
  height: 50px;
  background-image: url("/PC/ja/asset/img/nw/feature/cp_list/shop_icon_select.png");
  background-repeat: no-repeat;
}

/*タブの切り替えここまで*/

.block_content ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.block_content ul li {
  width: calc(100% / 3 - 15px);
  box-sizing: border-box;
  margin: 8px 0;
  display: block;
}

.block_content ul li img {
  width: 100%;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  image-rendering: -webkit-optimize-contrast;
}

.block_content ul li img:hover {
  transform: translateY(-5px);
  transition: all 0.2s;
}

.block_content h2 {
  font-size: 24px;
  font-family: "M PLUS 1p", sans-serif;
  display: block;
  text-align: center;
  font-weight: 800;
  transform: rotate(0.05deg);
  margin: 20px auto;
}

.block_content.contet_01 h2 {
  color: #008fd4;
}
.block_content.contet_02 h2 {
  color: #f75204;
}
.block_content.past h2 {
  font-size: 24px;
  font-family: "M PLUS 1p", sans-serif;
  color: #494949;
  display: block;
  text-align: center;
  font-weight: 800;
  transform: rotate(0.05deg);
  margin: 20px auto;
}
.past img {
  -webkit-filter: grayscale(0.6);
  -moz-filter: grayscale(0.6);
  -ms-filter: grayscale(0.6);
  -o-filter: grayscale(0.6);
  filter: grayscale(0.6);
}

@media screen and (max-width: 768px) {
  .block_content ul li {
    width: calc(100% / 3 - 10px);
    box-sizing: border-box;
    margin: 8px 0;
    display: block;
  }
  .tab-buttons span {
    font-size: 16px;
  }
  .s_tab.is-active,
  .w_tab.is-active {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .cate_name1,
  .cate_name2 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
  .c .block_content ul li {
    width: calc(100% / 2 - 10px);
    box-sizing: border-box;
    margin: 8px 0;
    display: block;
  }
  .tab-buttons span {
    font-size: 16px;
  }
  .s_tab.is-active,
  .w_tab.is-active {
    font-size: 16px;
  }

  .tab-buttons span {
    line-height: 1.2;
    padding: 1em 0;
  }
  .tab-content {
    margin-top: -6px;
  }
  .block_content ul li {
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
    display: block;
  }
  .block_content ul li img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .block_content h2 {
    font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    display: block;
    text-align: center;
    font-weight: 800;
    transform: rotate(0.05deg);
    margin: 20px auto;
  }
  .block_content.past h2 {
    font-size: 18px;
  }
  .tab-content {
    padding: 10px;
  }
}

.cp_date{
display: block;
font-size: 13px;
font-weight: bold;
text-align: center;
  }
