@charset "UTF-8";
/* CSS Document */
/*現在位置*/
.pc-nav li:nth-child(2) {
  color: #333333;
  font-weight: 700;
}

.concept-title-br {
  display: none;
}

.concept-lists {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.concept-lists .title {
  line-height: 1.5;
}

.concept-lists h3 {
  margin-bottom: 32px;
}

.concept-lists li {
  margin-bottom: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.concept-lists img {
  max-width: 400px;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 8px 8px #ffe0a5;
          box-shadow: 8px 8px #ffe0a5;
}

.concept-lists li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.concept-lists li:nth-child(even) div {
  padding-left: 32px;
}

.concept-lists li:nth-child(odd) div {
  padding-right: 32px;
}

.title-1 {
  background: url(../img/icon/1.svg) no-repeat left top;
  padding-top: 48px;
}

.title-2 {
  background: url(../img/icon/2.svg) no-repeat left top;
  padding-top: 48px;
}

.title-3 {
  background: url(../img/icon/3.svg) no-repeat left top;
  padding-top: 48px;
}

.title-4 {
  background: url(../img/icon/4.svg) no-repeat left top;
  padding-top: 48px;
}

.title-5 {
  background: url(../img/icon/5.svg) no-repeat left top;
  padding-top: 48px;
}

.gif {
  width: 400px;
  height: 300px;
}

@media (max-width: 950px) {
  .concept-lists .title {
    font-size: 2.4rem;
  }
  .concept-lists img {
    width: 40vw;
  }
  .concept-lists h3 {
    margin-bottom: 16px;
  }
  .title-1,
  .title-2,
  .title-3,
  .title-4,
  .title-5 {
    background-size: auto 32px;
    padding-top: 40px;
  }
}

@media (max-width: 700px) {
  .concept-title-br {
    display: block;
  }
}

@media (max-width: 500px) {
  .concept-lists li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .concept-lists li p {
    margin-bottom: 32px;
  }
  .concept-lists li img {
    width: 100%;
  }
  .concept-lists li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .concept-lists li:nth-child(even) div {
    padding-left: 0px;
  }
  .concept-lists li:nth-child(odd) div {
    padding-right: 0px;
  }
  .page-title {
    margin-bottom: 64px;
    padding-top: 24px;
  }
}

/* 左からふわっと出現 */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeLeftTrigger {
  opacity: 0;
}

/* 右からふわっと出現 */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*# sourceMappingURL=concept.css.map */