@charset "UTF-8";/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */

.l-page__title {
    z-index: 1;
}

.l-page__header-bg.s-recycle{
    //position: relative;
}

.l-page__header-bg.s-recycle::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(247,147,30, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}

.l-page__container .recycle {
    padding: 95px 0 0 0;
}

.p-recycle-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    color: #fff;
    position: relative;
}
.p-recycle-title .sp {
    display: none;
}
.p-recycle-title .bkline {
    background: #002870;
    display: inline-block;
    padding: 3px 16px 6px;
}
.p-recycle-title .bkline + .bkline {
    margin-top: 9px;
}
@media screen and (max-width:1024px) {
    .l-page__container .recycle {
        padding: 45px 0 0 0;
    }
    .p-recycle-title .pc {
        display: none;
    }
    .p-recycle-title .sp {
        display: block;
    }
    .p-recycle-title {
        font-size: 23px;
        line-height: 23px;
    }
    .p-recycle-title .bkline {
        padding: 2px 10px 5px;
        display: block;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }
}
@media screen and (max-width:420px) {
    .p-recycle-title {
        font-size: 21px;
        line-height: 21px;
        margin: 0 -20px;
    }
    .p-recycle-title .bkline {
        padding: 3px 7px 7px;
    }
    .p-recycle-title .bkline + .bkline {
        margin-top: 5px;
    }
}


.p-recycle-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 65px;
}
.p-recycle-flex__text {
    width: 31.5%;
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: justify;
}
.p-recycle-flex__text p + p {
    margin-top: 32px;
}
.p-recycle-flex__img {
    width: 63%;
    margin-top: -80px;
}
.p-recycle-flex__btn {
    margin-top: 30px;
}
@media screen and (max-width:1024px) {
    .p-recycle-flex {
        display: block;
        margin-top: 10px;
    }
    .p-recycle-flex__text {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
        margin-top: 20px;
    }
    .p-recycle-flex__text p + p {
        margin-top: 28px;
    }
    .p-recycle-flex__img {
        margin: 0 auto;
        text-align: center;
    }
    .p-recycle-flex__btn {
        margin-top: 60px;
    }
}
@media screen and (max-width:767px) {
    .p-recycle-flex__img {
        width: 165%;
        position: relative;
        left: -32.5%;
    }
}

.c-recycle-btn {
    width: 100%;
    height: 70px;
    background-color: #F08300;
    border-radius: 5px;

    color: #002870;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: calc(1000% / 284);
    padding-bottom: 2px;
}
.c-recycle-btn span {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: calc(3000% / 284);
}
.c-recycle-btn span::before {
    content: '';
    width: 22px;
    height: 22px;
    background: url("../../assets/img/recycle/icon_mail.svg") no-repeat;
    position: absolute;
    left: 0;
    top: 6px;
}
.c-recycle-btn::after {
    content: '';
    width: 22px;
    height: 22px;
    background: url("../../assets/img/recycle/arrow_btn.svg") no-repeat;
    position: absolute;
    right: calc(1500% / 284);
}
@media screen and (max-width:1024px) {
    .c-recycle-btn {
        padding-right: 0;
    }
    .c-recycle-btn span {
        padding-left: 30px;
    }
    .c-recycle-btn span::before {
        top: 4px;
    }
    .c-recycle-btn::after {
        right: 20;
    }
}


.p-recycle-slide {
    margin-top: 90px;
    margin-bottom: 30px;
}
.p-recycle-slide__ttl {
    font-size: 24px;
    font-weight: 600;
    color: #002870;
    text-align: center;
}
.p-recycle-slide__ttl br {
    display: none;
}
@media screen and (max-width:1024px) {
    .p-recycle-slide {
        margin-top: 80px;
        margin-bottom: 20px;
    }
    .p-recycle-slide__ttl {
        font-size: 22px;
        line-height: 36px;
    }
}

.slide-container {
    height: 200px;
    margin-top: 30px;
}
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  top: -128px;
}
.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.slider-track img {
  width: 276px;      /* 固定 */
  height: 200px;     /* 固定 */
  object-fit: cover;
  margin-right: 20px;
  flex-shrink: 0;    /* 縮まない */
}
@media screen and (max-width:1024px) {
    .slider {
        top: -80px;
    }
    .slide-container {
        height: 170px;
        margin-top: 30px;
    }
    .slider-track img {
      width: 235px;
      height: 170px;
      margin-right: 17px;
    }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



