@charset "UTF-8";
body { overflow-x: hidden; background-color: #fafafa; }
.header {
  width: 100%;
  background-color: #fff;
}

.heading {
  font-size: 2rem;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width:767px) {
  .heading {
    font-size: 1.5rem;
  }
}

.container {
  padding: 20px;
}

.title {
  font-size: 25px;
  margin: 50px auto 20px;
}

.title:first-letter {
  font-size: 40px;
  color: #f00;
}

.text {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  margin: 20px 0;
}

.imageDemo {
  width: 100%;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.4);
}

.dummy {
  width: 50%;
  margin: 50px auto;
  text-align: center;
}

.dummy--wide {
  width: 100%;
}

@media screen and (max-width:767px) {
  .dummy {
    width: 100%;
  }
}

/* 2番目横からフェードイン start */
.content {
  display: flex;
  margin: 0 20px;
  list-style: none;
}

.content__text {
  width: 50%;
  margin: 10px;
  text-align: left;
}

.content__image {
  width: 50%;
  margin: 10px;
  transform: translateX(50%);
  opacity: 0;
  transition: all 0.75s ease-in-out 0.5s;
}

.content__image.is-show {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width:767px) {
  .content {
    flex-direction: column;
  }
  .content__text {
    width: 100%;
  }
  .content__image {
    width: 100%;
  }
}
/* 2番目横からフェードイン end */

/* 3番目横から連続フェードイン start */
.list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.item {
  margin: 10px;
  transform: translateX(50%);
  opacity: 0;
}

.item:nth-child(1) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.75s ease-in-out 0.5s;
}
.item:nth-child(2) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.75s ease-in-out 0.75s;
}
.item:nth-child(3) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.75s ease-in-out 1s;
}

.list.is-show .item {
  transform: translateX(0);
  opacity: 1;
}
/* 3番目フェードイン end */


/* 4番目下からフェードイン start */
.fadelist {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.fadeitem {
  margin: 10px;
  transform: translateY(25%);
  opacity: 0;
}

.fadeitem:nth-child(1) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.5s ease-in-out 0.5s;
}
.fadeitem:nth-child(2) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.5s ease-in-out 0.75s;
}
.fadeitem:nth-child(3) {
  /* プロパティ名 | 時間 | 時間関数 | 遅延 */
  transition: all 0.5s ease-in-out 1s;
}

.fadelist.is-show .fadeitem {
  transform: translateY(0);
  opacity: 1;
}
/* 4番目下からフェードイン end */
