/* CSS Document */
.archive_page {
  padding-top: 40px;
}
@media (max-width: 840px) {
  .archive_page {
    padding-top: 30px;
  }
}
@media (max-width: 540px) {
  .archive_page {
    padding-top: 15px !important;
  }
}

/*==============================
 NEWS INDEX
================================*/
.index-newList li {
  text-align: left;
  position: relative;
}
.index-newList li a:hover {
  opacity: 1;
}
.index-newList li a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.index-newList .news-img {
  overflow: hidden;
  margin-bottom: 15px;
}
.index-newList .news-img img {
  width: 100%;
  aspect-ratio: 350/240;
}
.index-newList .news-title {
  margin-bottom: 8px;
  line-height: 1.4;
}
.index-newList .news-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  min-width: 80px;
  padding: 5px 5px;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: #838f8f;
}
@media (max-width: 540px) {
  .index-newList .news-cat {
    font-size: 14px;
    min-width: 70px;
  }
}
.index-newList .news-date {
  color: #838f8f;
  font-size: 13px;
  font-weight: 400;
}
@media (max-width: 540px) {
  .index-newList .news-date {
    font-size: 12px;
  }
}

/*==============================
 HOWTO INDEX
================================*/
/*--- Howto intro ---*/
.howto_intro .danraku {
  margin-bottom: 50px;
}
.howto_intro .grey_box {
  margin-left: auto;
  margin-right: auto;
}
.howto_intro .grey_box span {
  display: inline-block;
  background-color: #ecece7;
  padding: 8px 10px;
}
@media (max-width: 540px) {
  .howto_intro .grey_box span {
    width: 100%;
  }
}

/*--- Howto NEW -----*/
.howto_new_box_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.howto_new_box_wrap .border_top {
  vertical-align: bottom;
}
.howto_new_box_wrap .how_box_inner {
  background-image: url(../img/howto/border_side.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: top center;
  padding: 5% 6%;
}
@media (max-width: 840px) {
  .howto_new_box_wrap .how_box_inner {
    padding: 5% 4%;
  }
}
@media (max-width: 540px) {
  .howto_new_box_wrap .how_box_inner {
    padding: 5% 6%;
  }
}
.howto_new_box_wrap .how_box_inner a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.howto_new_box_wrap .how_box_inner a:hover {
  opacity: 1;
}

.how_new_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.how_new_flex .how_new_img {
  width: 52%;
  overflow: hidden;
}
@media (max-width: 840px) {
  .how_new_flex .how_new_img {
    width: 50%;
  }
}
@media (max-width: 540px) {
  .how_new_flex .how_new_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.how_new_flex .how_new_img img {
  width: 100%;
  aspect-ratio: 350/240;
}
.how_new_flex .how_new_txt {
  width: 39%;
}
@media (max-width: 840px) {
  .how_new_flex .how_new_txt {
    width: 43%;
  }
}
@media (max-width: 540px) {
  .how_new_flex .how_new_txt {
    width: 100%;
  }
}
.how_new_flex .new_icon {
  background-color: #bf1818;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
@media (max-width: 540px) {
  .how_new_flex .new_icon {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.how_new_flex .new_title {
  margin-bottom: 15px;
}
@media (max-width: 540px) {
  .how_new_flex .new_title {
    margin-bottom: 0;
  }
}
.how_new_flex .new_txtlink {
  color: #838f8f;
}
.how_new_flex .new_txtlink i {
  margin-left: 6px;
}

a:hover .how_new_flex img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

/*---- Howto ----*/
.howto-list {
  counter-reset: item;
}
.howto-list li {
  text-align: left;
  position: relative;
}
.howto-list li:last-child {
  display: none;
}
.howto-list li .how-number {
  position: absolute;
  top: -8px;
  left: -4px;
  width: 50px;
  height: 40px;
  background-image: url(../img/howto/book_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.howto-list li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 1px;
  left: 6px;
  z-index: 1;
  width: 30px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #838f8f;
  line-height: 1;
  font-size: 18px;
}
.howto-list li a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.howto-list .howto-img {
  overflow: hidden;
  margin-bottom: 15px;
}
.howto-list .howto-img img {
  width: 100%;
  aspect-ratio: 350/240;
}
.howto-list .howto-title {
  margin-bottom: 8px;
}
.howto-list .txtlink {
  color: #838f8f;
}
.howto-list .txtlink i {
  margin-left: 6px;
}

@media (max-width: 840px) {
  .howto-list li .how-number {
    width: 45px;
    height: 36px;
  }
  .howto-list li:before {
    font-size: 17px;
    top: -1px;
    left: 4px;
  }
}
@media (max-width: 540px) {
  .howto-list li .how-number {
    width: 40px;
    height: 32px;
  }
  .howto-list li:before {
    font-size: 16px;
    top: -3px;
    left: 1px;
  }
}
/*--- workshop ----*/
.workshop_box {
  padding: 6%;
  text-align: center;
}
@media (max-width: 540px) {
  .workshop_box {
    padding: 30px 15px;
  }
}
.workshop_box .jp-mid {
  margin-bottom: 15px;
}

/*==============================
 INTERVIEW
================================*/
.interview-list li {
  text-align: left;
  position: relative;
}
.interview-list li a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.interview-list .list-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.interview-list .list-img img {
  width: 100%;
  aspect-ratio: 1280/720;
}
.interview-list .list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
}
.interview-list .list-title span {
  min-width: 70px;
  text-align: center;
  background-color: #838f8f;
  padding: 5px 5px 6px;
  color: #fff;
  margin-right: 10px;
}
.interview-list .interview-txt {
  color: #666;
}