@media (min-width: 769px) {
  .section-our {
    position: relative;
    height: min(818 / 1200 * 100vw, 818px);
  }
  .section-our::after {
    content: '';
    right: 0;
    bottom: 0;
    position: absolute;
    background: url(/cms/img/usr/pages/manufacturing/img-our_01.jpg);
    background-size: contain;
    width: min(900 / 1200 * 100vw, 900px);
    aspect-ratio: 900 / 750;
    z-index: -1;
  }
  .section-our .section__intro-text {
    width: min(600 / 1200 * 100vw, 600px);
  }
}
@media (max-width: 768px) {
  .section-our {
    position: relative;
    padding-bottom:calc(200 / 375 * 100vw) ;
  }
  .section-our::after {
    content: '';
    right: 0;
    bottom: 0;
    position: absolute;
    background: url(/cms/img/usr/pages/manufacturing/sp/img-our_01.jpg);
    background-size: contain;
    width: calc(340 / 375 * 100vw);
    aspect-ratio: 680 / 566;
    z-index: -1;
  }
  .section-our .section__intro-text {
    margin-bottom: 0;
  }
}

.delivery__card {
  position: relative;
  background-color: #F9FBEA;
}
.section__flow .block__image {
  display: flex;
  justify-content: center;
}
.delivery-flow,
.video-block {
  position: relative;
}
.delivery-flow::before,
.video-block::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1.5px 100%;
  z-index: 1;
}
.delivery-flow.flow-01::before,
.video-block::before {
  background-image: repeating-linear-gradient(180deg, #abbc00, #abbc00 7px, transparent 7px, transparent 12px);
}
.delivery-flow.flow-02::before {
  background-image: repeating-linear-gradient(180deg, #C5B800, #C5B800 7px, transparent 7px, transparent 12px);
}
.delivery-flow.flow-03::before {
  background-image: repeating-linear-gradient(180deg, #D58E00, #D58E00 7px, transparent 7px, transparent 12px);
}
.delivery-flow .list__item {
  position: relative;
  background-color: var(--color-lgray);
}
.delivery-flow .list__item::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 20px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
.delivery-flow.flow-01 .list__item::after {
  background-color: var(--main-color);
}
.delivery-flow.flow-02 .list__item::after {
  background-color: #C5B800;
}
.delivery-flow.flow-03 .list__item::after {
  background-color: #D58E00;
}
.delivery-flow.flow-02 .list__item {
  background-color: transparent;
}
.delivery-flow.flow-02::after {
  content: '';
  position: absolute;
  top: 0;
  background-color: #FBF7EF;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}
.delivery-flow.flow-03 {
  padding-bottom: 0;
}
.delivery-flow .list__item:last-child {
  margin-bottom: 0;
}
.delivery-flow .list__item:last-child::after {
  display: none;
}
.delivery-flow .flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  border-radius: 50vh;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  line-height: 1;
  letter-spacing: 0.06em;
}
.delivery-flow.flow-01 .flow__num,
.delivery-flow .list__item.last .flow__num {
  background-color: var(--main-color);
}
.delivery-flow.flow-02 .flow__num {
  background-color: #C5B800;
}
.delivery-flow.flow-03 .flow__num {
  background-color: #D58E00;
}
.delivery-flow .list__item.last .flow__num {
  top: 50%;
  transform: translateY(-50%);
}
.delivery-flow .flow__title {
  font-weight: bold;
}
.delivery-flow .list__text {
  line-height: calc(30 / 16);
}
.video-block__iframe body {
  background-color: transparent;
}
.video-block {
  text-align: center;
}
.video-block__caption {
  font-weight: bold;
}
.video-block__title {
  font-weight: bold;
  color: var(--main-color);
}
.video-block iframe {
  aspect-ratio: 720 / 480;
  height: auto;
}
.delivery-flow .list__item.last .flow__num::before,
.delivery-flow .list__item.last .flow__num::after {
  content: "";
  position: absolute;
  top: -13px;
  left: calc(50% - 0.5px);
  width: 1.5px;
  height: 13.9px;
  border-radius: 9999px;
  background-color: #D58E00;
  transform-origin: 50% calc(100% - 0.5px);
}
.delivery-flow .list__item.last .flow__num::before {
  transform: rotate(45deg);
}
.delivery-flow .list__item.last .flow__num::after {
  transform: rotate(-45deg);
}
.block-series {
  display: flex;
  flex-wrap: wrap;
}
.block-series .block-series__item {
  background-color: #F9FBEA;
  box-sizing: border-box;
}
.block-series .block-series__title {
  font-weight: bold;
}
.block-series .block-series__link {
  margin: auto auto 0;
}
.section-delivery .slider__box {
  display: flex;
}
.section-delivery .slider__inner {
  display: flex;
}
.section-delivery .slider__inner:first-child {
  animation: loop 90s linear infinite;
}
.section-delivery .slider__inner:nth-child(2) {
  animation: loop2 90s -60s linear infinite;
}
.section-delivery .slider__inner:last-child {
  animation: loop3 90s -30s linear infinite;
}
.section-delivery .slider__inner .slide {
  width: calc(100vw / 5);
}
@keyframes loop {
  0% {
    transform: translateX(200%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-300%);
  }
}
@media (min-width: 769px) {
  .delivery__card {
    margin-top: 30px;
    padding: 23px 180px 26px 60px;
    border-radius: 10px;
  }
  .delivery__card img {
    position: absolute;
    right: -16px;
    bottom: -11px;
  }
  .section__flow {
    margin-top: 60px;
  }
  .block__title {
    margin-bottom: 45px;
    font-size: 24px;
    font-weight: bold;
  }
  .flow__wrap {
    position: relative;
    margin-top: 30px;
  }
  .delivery-flow {
    padding: 20px 0;
  }
  .delivery-flow::before,
  .video-block::before {
    left: 48px;
  }
  .delivery-flow .list__item {
    margin-bottom: 40px;
    padding: 35px 30px 30px 94px;
    border-radius: 10px;
  }
  .delivery-flow .flow__num {
    top: 16px;
    left: 20px;
    width: 57px;
    height: 57px;
    font-size: 10px;
  }
  .delivery-flow .flow__num .num {
    font-size: 26px;
  }
  .delivery-flow .flow__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .delivery-flow .list__content {
    display: flex;
  }
  .delivery-flow .list__content .list__text {
    flex: 1;
  }
  .delivery-flow .list__content .list__image {
    margin-left: 25px;
    width: calc(330 / 1200 * 100%);
    border-radius: 10px;
  }
  .video-block {
    padding: 20px 0 50px;
  }
  .video-block__iframe {
    width: 100%;
    max-width: 650px;
  }
  .video-block__caption {
    font-size: 18px;
  }
  .video-block__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .delivery-flow.flow-03 {
    padding-top: 50px;
  }
  .delivery-flow.flow-03::before {
    bottom: 30px;
  }
  .delivery-flow .list__item.last {
    padding: 30px 30px 30px 94px;
  }
  .delivery-flow .list__item.last .flow__title {
    margin-bottom: 0;
  }
  .delivery-flow .list__item::after {
    bottom: -30px;
  }
  .section-delivery .slider__box {
    margin-top: 115px;
  }
  .block-manufacturing__item {
    position: relative;
    background-color: #F9FBEA;
    margin-top: 65px;
    padding: 45px calc(43 / 1200 * 100%) 45px calc(450 / 1200 * 100%);
    border-radius: 10px;
  }
  .block-manufacturing__item .block-manufacturing__img {
    position: absolute;
    top: 50%;
    left: calc(25 / 1200 * 100%);
    transform: translateY(-50%);
  }
  .block-manufacturing__item .block-manufacturing__text {
    line-height: calc(38 / 16);
  }
  .block-series {
    gap: 20px;
  }
  .block-series .block-series__item {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 30px;
    width: calc((100% - 20px * 2) / 3);
    border-radius: 10px;
  }
  .block-series .block-series__img {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .block-series .block-series__text {
    margin-bottom: 20px;
  }
  .block-series .block-series__title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .delivery__card {
    padding: calc(15 / 375 * 100vw);
    border-radius: 5px;
  }
  .delivery__card img {
    position: absolute;
    right: 0;
    bottom: calc(-29 / 375 * 100vw);
    width: calc(62 / 375 * 100vw);
  }
  .section__flow {
    margin-top: calc(55 / 375 * 100vw);
  }
  .section__flow .block__image {
    width: calc(330 / 375 * 100vw);
  }
  .flow__wrap {
    position: relative;
    margin-top: calc(20 / 375 * 100vw);
  }
  .delivery-flow .list__item {
    margin-bottom: calc(27 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(11 / 375 * 100vw) calc(20 / 375 * 100vw) calc(70 / 375 * 100vw);
    border-radius: 5px;
  }
  .delivery-flow::before, .video-block::before {
    top: calc(13 / 375 * 100vw);
    bottom: calc(-13 / 375 * 100vw);
    left: calc(37 / 375 * 100vw);
  }
  .video-block::before {
    left: calc(-28 / 375 * 100vw);
  }
  .delivery-flow.flow-03::before {
    bottom: calc(40 / 375 * 100vw);
  }
  .delivery-flow .flow__num {
    top: calc(13 / 375 * 100vw);
    left: calc(15 / 375 * 100vw);
    width: calc(43 / 375 * 100vw);
    height: calc(43 / 375 * 100vw);
    font-size: calc(9 / 375 * 100vw);
  }
  .delivery-flow .flow__num .num {
    font-size: calc(20 / 375 * 100vw);
  }
  .delivery-flow .flow__title {
    margin-bottom: calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
  .delivery-flow .flow__text {
    line-height: calc(22 / 14);
  }
  .delivery-flow .list__item::after {
    width: calc(10 / 375 * 100vw);
    height: calc(7 / 375 * 100vw);
    bottom: calc(-17 / 375 * 100vw);
  }
  .delivery-flow .list__content .list__image {
    margin-top: calc(15 / 375 * 100vw);
    width: 100%;
    border-radius: 5px;
  }
  .video-block {
    margin-left: auto;
    padding: calc(25 / 375 * 100vw) 0 calc(66 / 375 * 100vw);
    width: calc(280 / 375 * 100vw);
  }
  .video-block__caption {
    margin-bottom: calc(5 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .video-block__title {
    margin-bottom: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
  .section-delivery .slider__box {
    margin-top: calc(40 / 375 * 100vw);
  }
  .block-manufacturing__item {
    position: relative;
    background-color: #F9FBEA;
    margin-top: calc(48 / 375 * 100vw);
    padding: calc(166 / 375 * 100vw) calc(17 / 375 * 100%) calc(26 / 375 * 100vw) calc(17 / 375 * 100%);
    border-radius: 5px;
  }
  .block-manufacturing__item .block-manufacturing__img {
    position: absolute;
    top: calc(-19 / 375 * 100vw);
    left: 50%;
    width: calc(250 / 375 * 100vw);
    transform: translateX(-50%);
  }
  .block-manufacturing__item .block-manufacturing__text {
    line-height: calc(30 / 16);
    font-size: calc(16 / 375 * 100vw);
  }
  .block-series {
    gap: calc(20 / 375 * 100vw);
  }
  .block-series .block-series__item {
    display: flex;
    flex-direction: column;
    padding: calc(16 / 375 * 100vw) calc(15 / 375 * 100vw) calc(30 / 375 * 100vw);
    width: 100%;
    border-radius: 5px;
  }
  .block-series .block-series__img {
    margin-bottom: calc(15 / 375 * 100vw);
    border-radius: 5px;
  }
  .block-series .block-series__text {
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .block-series .block-series__title {
    margin-bottom: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}