@charset "UTF-8";
/* slider */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider__viewport {
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.4s ease;
  touch-action: pan-y;
}
@media (width >= 1000px) {
  .slider__track {
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.slide {
  width: 100%;
  flex-shrink: 0;
  padding: 3rem 10rem;
  text-align: center;
  font-size: 40px;
}
@media (width >= 1000px) {
  .slide {
    padding: 0;
  }
}
.slide img {
  display: inline-block;
  width: 100%;
}

/* 矢印 */
.slider__prev,
.slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.slider__prev {
  left: 10px;
  width: 3rem;
}

.slider__next {
  right: 10px;
  width: 3rem;
}

@media (width >= 1000px) {
  .slider__prev {
    display: none;
  }
  .slider__next {
    display: none;
  }
}
/* ドット */
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
@media (width >= 1000px) {
  .slider__dots {
    display: none;
  }
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.slider__dot.is-active {
  background: #333;
}

.strength__inner h3 {
  font-size: 5rem;
  font-weight: bold;
  color: #001b56;
  text-align: center;
  margin-block: 3rem;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  z-index: 0;
}
@media (width >= 1000px) {
  .strength__inner h3 {
    font-size: 3rem;
  }
}
.strength__inner h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: #d9e021;
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: -1;
}
.strength__inner .strength__txt {
  width: 94%;
  max-width: 1080px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.strength__inner hgroup {
  font-size: 1.3em;
  color: #fff;
  font-weight: bold;
  width: 60%;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
  background: #001b56;
  padding-block: 0.5em;
  box-shadow: 3px 3px #0391ac;
}
.strength__inner .flow__list-inner {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 6rem;
}
.strength__inner .flow__list-inner .flow__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 180%;
  background: url(../images/sell/flow-bg.svg) no-repeat center 21%/90%;
}
@media (width >= 1000px) {
  .strength__inner .flow__list-inner .flow__list {
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
  }
}
.strength__inner .flow__list-inner .flow__list li {
  padding: 3rem;
  position: relative;
}
.strength__inner .flow__list-inner .flow__list li::after {
  content: "";
  width: 2px;
  height: 70%;
  display: block;
  border-left: #0391ac 2px dotted;
  position: absolute;
  bottom: 0;
  left: 0;
}
.strength__inner .flow__list-inner .flow__list li hgroup {
  color: #0391ac;
  background: none;
  width: 100%;
  box-shadow: none;
}
.strength__inner .strength__icon {
  width: 20%;
  max-width: 140px;
  margin: 4rem auto;
}
.strength__inner .strength__img {
  width: 70%;
  max-width: 500px;
  margin: 4rem auto;
}

.contract__inner {
  width: 94%;
  max-width: 1080px;
  margin-inline: auto;
}
@media (width >= 1000px) {
  .contract__inner {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 3rem;
  }
}

.contract {
  position: relative;
  z-index: 0;
}
.contract .cont__txt01 {
  font-size: 1.3em;
  color: #fff;
  font-weight: bold;
  width: fit-content;
  min-width: 60%;
  margin-inline: auto;
  padding-inline: 1em;
  text-align: center;
  background: #001b56;
  padding-block: 0.5em;
  box-shadow: 3px 3px #0391ac;
}
@media (width >= 1000px) {
  .contract .cont__txt01 {
    font-size: 1em;
  }
}
.contract .cont__img {
  width: 94%;
  max-width: 1080px;
  margin: -6rem auto 0;
  border: #0391ac 3px solid;
  background-color: #fff;
  padding: 10rem 3rem;
  position: relative;
  z-index: -1;
}
@media (width >= 1000px) {
  .contract .cont__img {
    margin-top: -3rem;
    padding-top: 8rem;
  }
}
.contract .cont__txt02 {
  background-color: #0391ac;
  font-weight: bold;
  text-align: center;
  width: fit-content;
  min-width: 80%;
  padding: 0.8em 1em;
  margin: -5rem auto 6rem;
  color: #fff;
}
@media (width >= 1000px) {
  .contract .cont__txt02 {
    font-size: 0.9em;
  }
}

/*# sourceMappingURL=sell.css.map */
