@charset 'utf-8';

/*web.css*/

.about-img {
  padding-top: 160px;
}

/* 768px～（タブレット）
  -------------------------------------------- */
@media (min-width: 768px) {
  .about-img {
    padding-top: 100px;
  }
}

.about-img img {
  display: block;
  width: 100%;

  margin-inline: auto;
}

/* 768px～（タブレット）
-------------------------------------------- */
@media (min-width: 768px) {
  .about-img img {
    width: min(100vw, 700px);
  }
}

/* 960px～（パソコン）
  -------------------------------------------- */
@media (min-width: 960px) {
  .about-img img {
    display: block;
    width: min(100%, 1100px);

    margin-inline: auto;
  }
}

.text-loop {
  gap: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  background-color: var(--base-color);
}

.text-loop div:nth-child(odd),
.text-loop div:nth-child(even) {
  opacity: .4;
  color: #a6e3ff !important;
}

/* 768px～（タブレット）
-------------------------------------------- */
@media (min-width: 768px) {

  .anime-text__item {
    padding-block: 30px;
  }
}


/* 960px～（パソコン）
  -------------------------------------------- */
@media (min-width: 960px) {

  .anime-text__item {
    margin: 0;
  }

}

/*webページ用設定*/
.section-title h1 {
  margin-top: 70px;
  color: var(--base-color2);
}

@media (min-width: 960px) {
  .section-title h1 {
    margin-top: 100px;
  }
}


/*制作流れ*/

#flow {
  position: relative;
  padding: 20px 40px 50px;
  background-image: url(../img/web/web-bg-img.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: repeat;
}


/* 960px～（タブレット）
  -------------------------------------------- */
@media (min-width: 960px) {
  #flow {
    padding: 20px 130px 100px;
  }
}

#flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--base-color), transparent);
}

.flow-design {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  padding-left: 0;
  width: 80%;
}

@media (min-width: 960px) {
  .flow {
    width: 70%;
  }
}

.flow > li {
  padding: 20px;
  background-color: #fff;
  border: 2px solid var(--base-color2);
  border-radius: 20px;
}

@media (min-width: 768px) {
  .flow > li {
    padding: 30px;
    font-size: 1.6rem;
  }
}

.flow > li:not(:last-child) {
  position: relative;
  margin-bottom: 40px;
}

.flow > li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -39px;
  left: 50%;
  width: 0;
  height: 0;
  border: solid 10px transparent;
  border-top-color: var(--base-color2);

  translate: -50%;
}

.flow > li dl dt {
  margin-bottom: .5em;
  padding-bottom: .5em;
  color: var(--base-color2);
  font-weight: 500;
  font-size: 1.4rem;
  border-bottom: 2pt dashed #ccc;
}

@media (min-width: 768px) {
  .flow > li dl dt {
    font-size: 1.6rem;
  }
}

.flow > li .icon {
  margin-right: .5em;
  color: var(--base-color2);
  font-size: 2.3rem;
  font-family: 'Nothing You Could Do', system-ui;
}

.flow > li dl dd {
  margin: 0;
  line-height: 1.5;
}
