/* .kv
================================================ */
.kv {
    background-image: url(../img/mealkit/kv_pc_2503.png);
  }
  
  @media all and (max-width: 767px) {
    .kv {
      background-image: url(../img/mealkit/kv_sp_2503.png);
    }
  }

/* .mealkit-sec01_inner
================================================ */
.mealkit_inner {
    width: calc(100vw / 1400 * 1100);
    margin: 0 auto;
}
.mealkit__notice {
    margin-top: 60px;
}
@media all and (max-width: 767px) {
    .mealkit_inner {
        width: calc(100vw / 375 * 335);
    }
}

  /* .mealkit-sec01
================================================ */
.mealkit-sec01 {
    margin-top: 100px;
}
.mealkit-sec01_tit:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FFF000;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
}
.mealkit-sec01_tit {
    text-align: center;
    position: relative;
    letter-spacing: 0.1em;
}

.mealkit-sec01__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.mealkit-sec01__list__item {
    width: calc(100vw / 1400 * 340);
    border-radius: 20px;
    overflow: hidden;
    background-color: #FFF;
    margin-top: 40px;
    margin-right: calc(100vw / 1400 * 40);
}
.mealkit-sec01__list__item a {
  display: block;
  height: 100%;
  padding-bottom: 70px;
}
.mealkit-sec01__list__item:nth-of-type(3n) {
   margin-right: 0;
}
.mealkit-sec01__list__item__img img {
    width: 100%;
}
.mealkit-sec01__list__item__title {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.mealkit-sec01__list__item__txt{
    padding: 0 20px 50px 20px;
}

.mealkit__list__item--link {
  position: relative;
}

.mealkit__list__item--link a:before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #009844;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  bottom: 32px;
  right: 32px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mealkit__list__item--link a:after {
  content: '';
  background-image: url(../img/common/ico_arrow02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 14px;
  height: 12px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  bottom: 32px;
  right: 32px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
  
@media all and (min-width: 768px) {
  .mealkit__list__item--link a:hover:before {
    -webkit-transform: translate(0, -50%) scale(3);
            transform: translate(0, -50%) scale(3);
  }
  .mealkit__list__item--link a:hover:after {
    opacity: 1;
  }
}
  

@media all and (max-width: 767px) {
    .mealkit-sec01__list {
        margin-top: 20px;
        justify-content: space-between;
    }
    .mealkit-sec01__list__item {
        width: calc(100vw / 375 * 160);
        margin-right: 0;
        margin-top: 20px;
    }
    .mealkit-sec01__list__item a {
      padding-bottom: 55px;
    }
    .mealkit-sec01__list__item__title {
        padding-bottom: 13px;
        font-size: 16px;
        letter-spacing: 0;
    }
    .mealkit__list__item--link a:before {
        transform: translate(0, -50%) scale(3);
        right: 25px;
        bottom: 20px;
    }
    .mealkit__list__item--link a:after {
        opacity: 1;
        right: 25px;
        bottom: 20px;
    }
}
