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

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

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

.delica-sec01__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.delica-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);
}
.delica-sec01__list__item a {
    display: block;
    height: 100%;
    padding-bottom: 70px;
}
.delica-sec01__list__item:nth-of-type(3n) {
   margin-right: 0;
}
.delica-sec01__list__item__img img {
    width: 100%;
}
.delica-sec01__list__item__title {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.delica-sec01__list__item__txt{
    padding: 0 20px 50px 20px;
}
@media all and (max-width: 767px) {
    .delica-sec01__list {
        margin-top: 20px;
        justify-content: space-between;
    }
    .delica-sec01__list__item {
        width: calc(100vw / 375 * 160);
        margin-right: 0;
        margin-top: 20px;
    }
    .delica-sec01__list__item a {
        padding-bottom: 55px;
    }
    .delica-sec01__list__item__title {
        padding-bottom: 13px;
        font-size: 16px;
        letter-spacing: 0;
    }
}

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

.delica-sec02__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.delica-sec02__list__item {
    width: calc(100vw / 1400 * 340);
    border-radius: 20px;
    overflow: hidden;
    background-color: #FFF;
    margin-top: 40px;
    margin-right: calc(100vw / 1400 * 40);
}
.delica-sec02__list__item a {
    display: block;
    height: 100%;
    padding-bottom: 70px;
}
.delica-sec02__list__item:nth-of-type(3n) {
   margin-right: 0;
}
.delica-sec02__list__item__img img {
    width: 100%;
}
.delica-sec02__list__item__title {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.delica-sec02__list__item__txt{
    padding: 0 20px 50px 20px;
}
@media all and (max-width: 767px) {
    .delica-sec02__list {
        margin-top: 20px;
        justify-content: space-between;
    }
    .delica-sec02__list__item {
        width: calc(100vw / 375 * 160);
        margin-right: 0;
        margin-top: 20px;
    }
    .delica-sec02__list__item a {
        padding-bottom: 55px;
    }
    .delica-sec02__list__item__title {
        padding-bottom: 13px;
        font-size: 16px;
        letter-spacing: 0;
    }
}


  /* .delica__list__item--link
================================================ */
.delica__list__item--link {
    position: relative;
}
.delica__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;
}
  
.delica__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) {
    .delica__list__item--link a:hover:before {
      -webkit-transform: translate(0, -50%) scale(3);
              transform: translate(0, -50%) scale(3);
    }
    .delica__list__item--link a:hover:after {
      opacity: 1;
    }
}

@media all and (max-width: 767px) {
    .delica__list__item--link a:before {
        transform: translate(0, -50%) scale(3);
        right: 25px;
        bottom: 20px;
    }
    .delica__list__item--link a:after {
        opacity: 1;
        right: 25px;
        bottom: 20px;
    }
}
/* .notice_txt
================================================ */
.notice_txt {
    text-align: center;
   font-weight: bold; 
   font-size: 28px;
}
@media all and (max-width: 767px) {
    .notice_txt {
        font-size: 20px;
    }
}
