.top-image {
  background-position: 60% 90%;
}

.service-inner {
  padding: 0 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-title {
  margin: 0 auto 50px;
  width: 91%;
}
.service-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.service-item {
  width: 33.3333%;
}
.service-item:nth-child(1) .service-img:before {
  display: none;
}
.service-item:last-child .service-img:after {
  display: none;
}
.service-img {
  opacity: 0.7;
  position: relative;
}
.service-img.show:before, .service-img.show:after {
  opacity: 1;
}
.service-img:before {
  content: "";
  width: 50%;
  height: 1px;
  border-top: 1px dashed #9EA86C;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  opacity: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: opacity 0.6s 0.4s;
  -o-transition: opacity 0.6s 0.4s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 0.4s;
  transition: opacity 0.6s 0.4s;
}
.service-img:after {
  content: "";
  width: 50%;
  height: 1px;
  border-top: 1px dashed #9EA86C;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  opacity: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: opacity 0.6s 0.4s;
  -o-transition: opacity 0.6s 0.4s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 0.4s;
  transition: opacity 0.6s 0.4s;
}
.service-img-inner {
  width: 15vw;
  height: 15vw;
  margin: 0 auto 25px;
  background: #eeeae2;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.service-img-inner.show {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.service-img img {
  width: 50%;
  margin: auto;
  opacity: 0.8;
}
.service-content {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.service-subtitle {
  color: #9EA86C;
  padding-bottom: 5px;
  font-weight: bold;
}
.service-text {
  font-size: 0.95em;
}

.bg-inner {
  padding: 0 80px;
}
.bg-title {
  font-size: 32px;
  font-family: "Inconsolata", "Arimo", serif;
  color: #E4DED2;
  text-align: center;
  font-style: italic;
  margin-bottom: 50px;
}
.bg-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.bg-list li {
  width: calc((100% - 1vw * 4) / 5);
  max-width: 170px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;
}
.bg-list li:nth-child(3) .bg-color, .bg-list li:nth-child(7) .bg-color {
  background: #e8eadc;
}
.bg-step {
  font-family: "Inconsolata", "Arimo", serif;
  color: #9EA86C;
  font-size: 1.3rem;
  z-index: 1;
  opacity: 0;
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.show .bg-step {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.bg-step span {
  display: block;
  text-align: center;
}
.bg-en {
  letter-spacing: 0.12rem;
  font-weight: bold;
  line-height: 20px;
}
.bg-num {
  font-size: 46px;
  line-height: 46px;
}
.bg-content {
  position: relative;
  width: 170px;
  height: 170px;
  margin-top: -20px;
}
.bg-color {
  width: 100%;
  height: 100%;
  background: #eeeae2;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  -moz-transform: translateX(-50%) scale(0.7);
  -ms-transform: translateX(-50%) scale(0.7);
  -webkit-transform: translateX(-50%) scale(0.7);
  transform: translateX(-50%) scale(0.7);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.show .bg-color {
  opacity: 1;
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.bg-text {
  font-size: 0.95em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bg-text span {
  display: block;
  white-space: nowrap;
}
.bg-arrow {
  width: 1vw;
  height: 1vw;
  border-bottom: 10px double #E4DED2;
  border-right: 10px double #E4DED2;
  margin-top: 2.5vw;
  margin-left: -0.5vw;
  opacity: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.bg-arrow.show {
  opacity: 1;
}

.process-title {
  padding: 0 80px;
}
.process-item {
  padding: 70px 80px;
}
.process-item:nth-child(even) {
  background: rgba(228, 222, 210, 0.3);
}
.process-content {
  padding: 0 10px;
}
.process-step {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 5px;
}
.process-num {
  width: 25px;
  text-align: center;
  border: 1px solid #9EA86C;
  margin-right: 10px;
  padding: 1px 0;
  background: #E4DED2;
  font-size: 0.95em;
}
.process-subtitle {
  color: #9EA86C;
}
.process-text {
  font-size: 0.95em;
}
.process-text li {
  margin-left: 40px;
  padding-left: 20px;
  padding-top: 5px;
  position: relative;
}
.process-text li:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #9EA86C;
  position: absolute;
  top: 15px;
  left: 0;
}
.process-img {
  overflow: hidden;
}
.process-img-inner {
  float: left;
  padding: 20px 10px 0;
  box-sizing: border-box;
}
.process-img .col26 {
  width: 26.6%;
}
.process-img .col30 {
  width: 30.8%;
}
.process-img .col34 {
  width: 34.5%;
}
.process-img .col44 {
  width: 44.5%;
}
.process-img .col46 {
  width: 46.4%;
}
.process-img .col50 {
  width: 50%;
}
.process-img .col55 {
  width: 55.5%;
}
.process-img img {
  width: 100%;
  margin: auto;
}
.process-memo {
  font-size: 0.875em;
  text-align: center;
  color: #888;
  padding-top: 5px;
}

@media screen and (max-width: 1250px) {
  .bg-list li {
    max-width: 150px;
  }
  .bg-content {
    width: 150px;
    height: 150px;
  }
  .bg-text {
    width: 80%;
  }
}
@media screen and (max-width: 1100px) {
  .service-title {
    width: 94%;
  }
  .service-img-inner {
    width: 18vw;
    height: 18vw;
  }
  .service-content {
    width: 80%;
  }

  .bg-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .bg-list li {
    width: calc((100% - 1vw * 4) / 3);
    max-width: 200px;
    margin: 30px 3% 0;
  }
  .bg-content {
    width: 200px;
    height: 200px;
  }
  .bg-arrow {
    margin-top: 7vw;
  }

  .process-item:nth-child(4) .process-img .col34 {
    width: 50%;
  }
  .process-item:nth-child(5) .process-img .col26 {
    width: 50%;
  }
  .process-img .col26 {
    width: 100%;
  }
  .process-img .col30 {
    width: 100%;
  }
  .process-img .col34 {
    width: 100%;
  }
  .process-img .col44 {
    width: 100%;
  }
  .process-img .col46 {
    width: 100%;
  }
  .process-img .col50 {
    width: 100%;
  }
  .process-img .col55 {
    width: 100%;
  }
}
@media screen and (max-width: 950px) {
  .bg-list {
    display: block;
  }
  .bg-list li {
    margin: 40px auto 30px;
    width: 100%;
    max-width: 250px;
  }
  .bg-content {
    width: 250px;
    height: 250px;
  }
  .bg-text {
    width: 75%;
  }
  .bg-arrow {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 auto;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 900px) {
  .service-title {
    width: 100%;
  }
  .service-list {
    display: block;
  }
  .service-item {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  .service-item.show:before {
    opacity: 1;
  }
  .service-item:before {
    content: "";
    width: 1px;
    height: 100%;
    border-left: 1px dashed #9EA86C;
    position: absolute;
    top: 0;
    left: 10vw;
    opacity: 0;
    -moz-transition: opacity 0.6s 0.4s;
    -o-transition: opacity 0.6s 0.4s;
    -webkit-transition: opacity 0.6s;
    -webkit-transition-delay: 0.4s;
    transition: opacity 0.6s 0.4s;
  }
  .service-item:nth-child(2) {
    padding: 35px 0;
  }
  .service-img {
    opacity: 1;
  }
  .service-img:after, .service-img:before {
    display: none;
  }
  .service-img-inner {
    width: 20vw;
    height: 20vw;
    margin: 0 auto;
    background: #f1eee8;
  }
  .service-img img {
    opacity: 0.6;
  }
  .service-content {
    margin: 0 auto 0 8%;
    text-align: left;
    width: calc(100% - 8%);
  }
}
@media screen and (max-width: 640px) {
  .service-inner {
    padding: 0 40px;
  }
  .service-item {
    display: block;
  }
  .service-item:before {
    display: none;
  }
  .service-item:nth-child(2) {
    border-top: 1px dashed #E4DED2;
    border-bottom: 1px dashed #E4DED2;
    margin: 35px 0;
  }
  .service-img-inner {
    width: 30vw;
    height: 30vw;
  }
  .service-content {
    width: 100%;
    text-align: center;
    margin: 15px auto 0;
  }

  .bg-inner {
    padding: 0 40px;
  }
  .bg-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .bg-list li {
    max-width: 170px;
    margin: 30px auto 25px;
  }
  .bg-content {
    width: 170px;
    height: 170px;
  }
  .bg-arrow {
    width: 13px;
    height: 13px;
  }

  .process-title {
    padding: 0 40px;
  }
  .process-item {
    padding: 50px 40px;
  }
  .process-item:nth-child(4) .process-img .col34 {
    width: 100%;
  }
  .process-item:nth-child(5) .process-img .col26 {
    width: 100%;
  }
  .process-content {
    padding: unset;
  }
  .process-step {
    margin-bottom: 10px;
  }
  .process-text li {
    margin-left: 8px;
  }
  .process-img-inner {
    padding: 20px 0 0;
    float: unset;
  }
}
@media screen and (max-width: 460px) {
  .bg-img {
    margin: 0;
  }
}
