.container .section {
  display: inline-block;
  margin-top: 80px;
  margin-bottom: 32px;
}

.container .section .section-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #383C90;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.container .section .section-title:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  z-index: -1;
  font-size: 120px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .03em;
  color: rgba(59, 133, 232, 0.1);
  white-space: nowrap;
}

@media (max-width: 800px) {
  .container .section .section-title:before {
    font-size: 100px;
  }
}

@media (max-width: 599px) {
  .container .section {
    margin-top: 24px;
  }

  .container .section .section-title {
    font-size: 28px;
  }

  .container .section .section-title:before {
    font-size: 90px;
  }
}

@media (max-width: 460px) {
  .container .section .section-title {
    font-size: 24px;
  }

  .container .section .section-title:before {
    font-size: 72px;
  }
}

@media (max-width: 375px) {
  .container .section .section-title {
    font-size: 23px;
  }

  .container .section .section-title:before {
    font-size: 64px;
  }
}

.container .cta {
  text-align: center;
  margin-top: 64px;
}

.container .cta .cta-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container .cta .cta-group .cta-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 24px #373E8B19;
  box-shadow: 0 3px 24px #373E8B19;
  -webkit-transition: .3s;
  transition: .3s;
}

.container .cta .cta-group .cta-btn.contact {
  color: #fff;
  background-color: #BF3232;
  margin-right: 12px;
}

.container .cta .cta-group .cta-btn.document {
  color: #BF3232;
  background-color: #fff;
}

.container .cta .cta-group .cta-btn:hover {
  opacity: .8;
}

@media (max-width: 440px) {
  .container .cta {
    margin-top: 48px;
  }

  .container .cta .cta-group .cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 375px) {
  .container .cta .cta-group .cta-btn {
    font-size: 14px;
  }

  .container .cta .cta-group .cta-btn.contact {
    margin-right: 8px;
  }
}

.fv {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-image: url(../img_renewal/innovation-fv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.fv .fv-inner {
  -webkit-transform: translateY(38px);
  transform: translateY(38px);
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.fv .fv-inner .fv-left {
  position: relative;
  z-index: 2;
}

.fv .fv-inner .fv-left .fv-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 48px;
  color: #fff;
}

.fv .fv-inner .fv-left .fv-sub {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 80px;
  color: #fff;
}

.fv .fv-inner .fv-left .fv-cta {
  text-align: center;
  display: inline-block;
}

.fv .fv-inner .fv-left .fv-cta .cta-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 24px #373E8B;
  box-shadow: 0 3px 24px #373E8B;
  -webkit-transition: .3s;
  transition: .3s;
}

.fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn.contact {
  color: #fff;
  background-color: #BF3232;
  margin-right: 12px;
}

.fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn.document {
  color: #BF3232;
  background-color: #fff;
}

.fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn:hover {
  opacity: .8;
}

.fv .fv-inner .fv-right {
  position: absolute;
  right: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 0;
}

.fv .fv-inner .fv-right .fv-img {
  width: 600px;
  height: 600px;
}

.fv .fv-bg {
  width: 100%;
  position: absolute;
  z-index: -1;
  bottom: -72px;
}

@media (max-width: 1400px) {
  .fv .fv-inner {
    max-width: 1100px;
  }

  .fv .fv-inner .fv-right {
    right: 0;
  }

  .fv .fv-inner .fv-right .fv-img {
    width: 540px;
    height: 540px;
  }
}

@media (max-width: 1140px) {
  .fv .fv-inner {
    max-width: 940px;
  }

  .fv .fv-inner .fv-right .fv-img {
    width: 480px;
    height: 480px;
  }

  .fv .fv-inner .fv-left .fv-title {
    font-size: 40px;
    margin-bottom: 36px;
  }
}

@media (max-width: 980px) {
  .fv .fv-inner {
    max-width: 840px;
  }

  .fv .fv-inner .fv-right .fv-img {
    width: 400px;
    height: 400px;
  }

  .fv .fv-inner .fv-left .fv-title {
    font-size: 36px;
  }

  .fv .fv-inner .fv-left .fv-sub {
    font-size: 22px;
  }
}

@media (max-width: 880px) {
  .fv {
    height: auto;
    padding: 120px 0 40px;
  }

  .fv .fv-inner {
    width: 94%;
    max-width: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(0);
  }

  .fv .fv-inner .fv-right {
    position: static;
    transform: translateY(0);
    margin: 32px auto 0;
  }

  .fv .fv-inner .fv-left .fv-title {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .fv .fv-inner .fv-left .fv-sub {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .fv .fv-inner {
    max-width: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fv .fv-inner .fv-right {}

  .fv .fv-inner .fv-left .fv-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .fv .fv-inner .fv-left .fv-sub {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .fv {
    padding-top: 100px;
  }

  .fv .fv-inner {
    width: 90%;
    max-width: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }


  .fv .fv-inner .fv-left .fv-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .fv .fv-inner .fv-left .fv-title .br {
    display: none;
  }

  .fv .fv-inner .fv-left .fv-sub {
    font-size: 20px;
    margin-bottom: 56px;
  }

  .fv .fv-inner .fv-left .fv-sub .br {
    display: none;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn {
    padding: 14px 26px;
    font-size: 16px;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn.document {
    padding: 12px 26px;
  }
}

@media (max-width: 460px) {
  .fv .fv-inner .fv-right .fv-img {
    width: 320px;
    height: 320px;
  }

  .fv .fv-inner .fv-left .fv-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .fv .fv-inner .fv-left .fv-title .br {
    display: none;
  }

  .fv .fv-inner .fv-left .fv-sub {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .fv .fv-inner .fv-left .fv-sub .br {
    display: none;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn {
    padding: 14px 26px;
    font-size: 16px;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn.document {
    padding: 12px 26px;
  }
}

@media (max-width: 375px) {
  .fv .fv-inner .fv-right .fv-img {
    width: 280px;
    height: 280px;
  }

  .fv .fv-inner .fv-left .fv-title {
    font-size: 22px;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .fv .fv-inner .fv-left .fv-cta .cta-group .cta-btn.document {
    padding: 10px 18px;
  }
}

.case {
  width: 100%;
  padding: 56px 0;
  background-color: #E4E4E4;
}

.case .case-inner {
  width: 900px;
  margin: auto;
  background-color: #fff;
}

.case .case-inner .case-content {
  padding: 40px 0;
}

.case .case-inner .case-content .top-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-right: 5px;
  text-align: center;
}

.case .case-inner .case-content .top-title .colored {
  font-size: 40px;
  color: #BF3232;
  font-family: 'Oswald', sans-serif;
}

.case .case-inner .case-content .top-title .empha {
  font-size: 56px;
}

.case .case-inner .case-content .top-sub {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 36px;
}

.case .case-inner .case-content .case-box {
  width: 610px;
  margin: auto;
}

.case .case-inner .case-content .case-box .case-item {
  margin-bottom: 24px;
}

.case .case-inner .case-content .case-box .case-item .case-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.case .case-inner .case-content .case-box .case-item .case-title img {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}

.case .case-inner .case-content .case-box .case-item .case-title .title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .06em;
}

.case .case-inner .case-content .case-box .case-item .case-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.case .case-inner .case-content .case-box .case-item .case-main .main {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-right: 12px;
  line-height: 2;
}

.case .case-inner .case-content .case-box .case-item .case-main .main.mrnone {
  margin-right: 0;
}

.case .case-inner .case-content .case-box .case-item .case-sub {
  text-align: right;
}

.case .case-inner .case-content .case-box .case-item .case-sub .sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #AAAAAA;
  margin-right: 20px;
}

.case .case-inner .case-content .case-box .case-item:nth-last-child(1) {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .case .case-inner {
    width: 700px;
  }
}

@media (max-width: 800px) {
  .case .case-inner {
    width: 560px;
  }

  .case .case-inner .case-content {
    padding: 20px 0 32px;
  }

  .case .case-inner .case-content .case-box {
    width: auto;
  }

  .case .case-inner .case-content .case-box .case-item {
    width: 460px;
    margin: 0 auto 24px;
  }

  .case .case-inner .case-content .case-box .case-item .case-sub {
    text-align: left;
  }
}

@media (max-width: 599px) {
  .case {
    padding: 40px 0;
  }

  .case .case-inner {
    width: 90%;
  }

  .case .case-inner .case-content .top-title {
    font-size: 20px;
  }

  .case .case-inner .case-content .top-title .colored {
    font-size: 32px;
  }

  .case .case-inner .case-content .top-title .colored .empha {
    font-size: 40px;
  }

  .case .case-inner .case-content .case-box .case-item {
    width: 80%;
  }

  .case .case-inner .case-content .case-box .case-item .case-title {
    margin-bottom: 12px;
  }

  .case .case-inner .case-content .case-box .case-item .case-title img {
    margin-right: 4px;
  }

  .case .case-inner .case-content .case-box .case-item .case-title .title {
    font-size: 20px;
  }
}

@media (max-width: 440px) {
  .case .case-inner .case-content .top-title {
    margin-right: 0;
    font-size: 18px;
  }

  .case .case-inner .case-content .top-title .colored {
    font-size: 24px;
  }

  .case .case-inner .case-content .case-box .case-item .case-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .case .case-inner .case-content .case-box .case-item .case-title .title {
    font-size: 18px;
  }

  .case .case-inner .case-content .case-box .case-item .case-title .title .sp {
    display: block;
  }

  .case .case-inner .case-content .case-box .case-item .case-main .main {
    font-size: 12px;
  }
}

.about {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.about .about-inner {
  width: 1200px;
  margin: auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.about .about-inner .section .section-title:before {
  content: 'Open innovation';
}

.about .about-inner .about-content {
  width: 520px;
}

.about .about-inner .about-content .about-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.about .about-inner .about-content .about-text:nth-last-child(1) {
  margin-bottom: 0;
}

.about .about-inner .about-img {
  position: absolute;
  width: 740px;
  bottom: -80px;
  right: 0;
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  z-index: 0;
}

@media (max-width: 1240px) {
  .about .about-inner {
    width: 940px;
  }

  .about .about-inner .about-img {
    width: 500px;
    right: -32px;
  }
}

@media (max-width: 1024px) {
  .about .about-inner {
    width: 640px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 90px;
    bottom: -6px;
  }

  .about .about-inner .about-content {
    position: relative;
    z-index: 2;
  }

  .about .about-inner .about-img {
    -webkit-transform: translateX(190px);
    transform: translateX(190px);
    right: 0;
    width: 400px;
    z-index: 1;
  }
}

@media (max-width: 860px) {
  .about .about-inner {
    width: 640px;
  }

  .about .about-inner .about-content {
    width: 400px;
  }

  .about .about-inner .about-img {
    width: 360px;
    -webkit-transform: translateX(110px);
    transform: translateX(110px);
  }
}

@media (max-width: 700px) {
  .about .about-inner {
    width: 540px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 72px;
    bottom: 0;
  }

  .about .about-inner .about-content {
    width: 400px;
  }

  .about .about-inner .about-img {
    width: 280px;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
}

@media (max-width: 599px) {
  .about {
    padding: 56px 0 40px;
  }

  .about .about-inner {
    width: 90%;
  }

  .about .about-inner .section .section-title {
    font-size: 28px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 64px;
    bottom: 0;
  }

  .about .about-inner .about-content {
    width: 100%;
  }

  .about .about-inner .about-img {
    display: none;
  }
}

@media (max-width: 480px) {
  .about .about-inner .section .section-title {
    font-size: 24px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 56px;
    bottom: 0;
  }

  .about .about-inner .about-content {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .about .about-inner .section .section-title {
    font-size: 20px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 48px;
    bottom: 0;
  }

  .about .about-inner .about-content {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .about .about-inner .section .section-title {
    font-size: 18px;
  }

  .about .about-inner .section .section-title:before {
    font-size: 40px;
    bottom: 0;
  }

  .about .about-inner .about-content {
    width: 100%;
  }

  .about .about-inner .about-content .about-text {
    font-size: 14px;
  }
}

.question {
  width: 100%;
  padding: 80px 0;
  background-color: #DDDDDD;
}

.question .question-inner {
  text-align: center;
  position: relative;
}

.question .question-inner .section .section-title:before {
  content: 'Question';
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
}

.question .question-inner .question-content {
  width: 1200px;
  margin: auto;
  position: relative;
}

.question .question-inner .question-content .question-item {
  width: 560px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.question .question-inner .question-content .question-item img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.question .question-inner .question-content .question-item .question-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.question .question-inner .question-content .question-item:nth-last-child(1) {
  margin-bottom: 0;
}

.question .question-inner .question-content .img1 {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  bottom: 0;
}

.question .question-inner .question-content .img2 {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 0;
  bottom: 0;
}

@media (max-width: 1240px) {
  .question .question-inner .question-content {
    width: 940px;
  }

  .question .question-inner .question-content .img1 {
    width: 160px;
    height: 160px;
  }

  .question .question-inner .question-content .img2 {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 960px) {
  .question .question-inner .question-content {
    width: auto;
  }

  .question .question-inner .question-content .img1 {
    position: static;
    display: inline-block;
    width: 160px;
    height: 160px;
    margin-top: 24px;
    margin-right: 12px;
  }

  .question .question-inner .question-content .img2 {
    position: static;
    display: inline-block;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 599px) {
  .question {
    padding: 56px 0 56px;
  }

  .question .question-inner .question-content {
    width: 500px;
  }

  .question .question-inner .question-content .question-item .question-text {
    font-size: 16px;
  }

  .question .question-inner .question-content .img1 {
    position: static;
    display: inline-block;
    width: 160px;
    height: 160px;
    margin-top: 24px;
    margin-right: 12px;
  }

  .question .question-inner .question-content .img2 {
    position: static;
    display: inline-block;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 520px) {
  .question .question-inner .question-content {
    width: 90%;
  }

  .question .question-inner .question-content .question-item {
    width: 100%;
  }

  .question .question-inner .question-content .question-item .question-text {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }

  .question .question-inner .question-content .img1 {
    width: 120px;
    height: 120px;
  }

  .question .question-inner .question-content .img2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 375px) {
  .question .question-inner .section .section-title .sp {
    display: block;
  }

  .question .question-inner .section .section-title:before {
    bottom: 32px;
  }

  .question .question-inner .question-content {
    width: 90%;
  }

  .question .question-inner .question-content .question-item {
    width: 100%;
  }

  .question .question-inner .question-content .question-item .question-text {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }

  .question .question-inner .question-content .img1 {
    width: 120px;
    height: 120px;
  }

  .question .question-inner .question-content .img2 {
    width: 120px;
    height: 120px;
  }
}

.triangle {
  width: 100%;
  background-color: #fff;
  margin-bottom: -60px;
}

@media (max-width: 1140px) {
  .triangle {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }
}

@media (max-width: 800px) {
  .triangle {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
  }
}

@media (max-width: 640px) {
  .triangle {
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
    height: 50px;
    margin-bottom: -80px;
  }
}

@media (max-width: 500px) {
  .triangle {
    height: 40px;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

.promote {
  width: 100%;
  background-color: #fff;
  padding-bottom: 64px;
}

.promote .promote-inner {
  width: 820px;
  margin: auto;
}

.promote .promote-inner .promote-content {
  text-align: center;
}

.promote .promote-inner .promote-content .promote-catch {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #383C90;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 5px 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 12px 32px #27293333;
  box-shadow: 0 12px 32px #27293333;
  border-radius: 32px;
  margin-bottom: 24px;
}

.promote .promote-inner .promote-content .promote-catch:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 10px solid #FFFFFF;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.promote .promote-inner .promote-content .promote-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
  margin-bottom: 32px;
}

.promote .promote-inner .promote-content .promote-img {
  width: 570px;
  height: auto;
  margin: auto;
}

@media (max-width: 860px) {
  .promote .promote-inner {
    width: 640px;
  }

  .promote .promote-inner .promote-content .promote-catch {
    font-size: 28px;
    border-radius: 64px;
  }

  .promote .promote-inner .promote-content .promote-catch .sp {
    display: block;
  }

  .promote .promote-inner .promote-content .promote-img {
    width: 440px;
  }
}

@media (max-width: 680px) {
  .promote .promote-inner {
    width: 560px;
  }

  .promote .promote-inner .promote-content .promote-catch {
    font-size: 28px;
    padding: 5px 32px;
  }

  .promote .promote-inner .promote-content .promote-img {
    width: 360px;
  }
}

@media (max-width: 599px) {
  .promote {
    padding-bottom: 40px;
  }

  .promote .promote-inner {
    width: 90%;
  }

  .promote .promote-inner .promote-content .promote-catch {
    font-size: 24px;
    padding: 5px 32px;
  }

  .promote .promote-inner .promote-content .promote-text {
    font-size: 16px;
  }

  .promote .promote-inner .promote-content .promote-img {
    width: 320px;
  }
}

@media (max-width: 520px) {
  .promote .promote-inner .promote-content .promote-catch {
    font-size: 17px;
    border-radius: 40px;
  }

  .promote .promote-inner .promote-content .promote-catch .sp {
    display: block;
  }
}

@media (max-width: 440px) {
  .promote .promote-inner .promote-content .promote-img {
    width: 280px;
  }
}

@media (max-width: 375px) {
  .promote .promote-inner .promote-content .promote-text {
    font-size: 14px;
  }

  .promote .promote-inner .promote-content .promote-img {
    width: 240px;
  }
}

.service {
  width: 100%;
  padding: 80px 0;
  background-color: #F8F8F8;
}

.service .service-inner {
  width: 1000px;
  margin: auto;
}

.service .service-inner .section {
  margin-bottom: 64px;
}

.service .service-inner .section .section-title {
  color: #2E313C;
}

.service .service-inner .section .section-title:before {
  content: 'Service';
  left: 0;
  color: rgba(59, 133, 232, 0.1);
}

.service .service-inner .service-content .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service .service-inner .service-content .service-item .service-img {
  width: 440px;
  height: 240px;
  -webkit-box-shadow: 0 3px 24px #373E8B19;
  box-shadow: 0 3px 24px #373E8B19;
}

.service .service-inner .service-content .service-item .service-main {
  width: 520px;
}

.service .service-inner .service-content .service-item .service-main .service-catch {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1;
  padding: 8px 12px;
  color: #fff;
  background: linear-gradient(45deg, #383C90, #4A9FBF);
  margin-bottom: 16px;
}

.service .service-inner .service-content .service-item .service-main .service-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.service .service-inner .service-content .service-item .service-main .service-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.service .service-inner .service-content .service-item:nth-last-child(1) {
  margin-bottom: 0;
}

.service .service-inner .service-content .service-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 1040px) {
  .service .service-inner {
    width: 870px;
  }

  .service .service-inner .service-content .service-item .service-img {
    width: 370px;
    height: auto;
  }

  .service .service-inner .service-content .service-item .service-main {
    width: 480px;
  }

  .service .service-inner .service-content .service-item .service-main .service-text .br {
    display: none;
  }
}

@media (max-width: 900px) {
  .service .service-inner {
    width: 780px;
  }

  .service .service-inner .service-content .service-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .service .service-inner .service-content .service-item .service-img {
    width: 320px;
    height: auto;
  }

  .service .service-inner .service-content .service-item .service-main {
    width: 440px;
  }

  .service .service-inner .service-content .service-item .service-main .service-title {
    font-size: 22px;
  }
}

@media (max-width: 800px) {
  .service .service-inner {
    width: 440px;
  }

  .service .service-inner .service-content .service-item {
    width: 440px;
    margin: 0 auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .service .service-inner .service-content .service-item .service-img {
    width: 440px;
    height: auto;
    margin-bottom: 12px;
  }

  .service .service-inner .service-content .service-item .service-main {
    width: 100%;
  }

  .service .service-inner .service-content .service-item .service-main .service-title {
    font-size: 22px;
  }

  .service .service-inner .service-content .service-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 599px) {
  .service {
    padding: 56px 0 40px;
  }
}

@media (max-width: 480px) {
  .service .service-inner {
    width: 90%;
  }

  .service .service-inner .service-content .service-item {
    width: 100%;
    margin: 0 auto 40px;
  }

  .service .service-inner .service-content .service-item .service-img {
    width: 100%;
  }

  .service .service-inner .service-content .service-item .service-main .service-title .br {
    display: none;
  }
}

@media (max-width: 460px) {
  .service .service-inner {
    text-align: center;
  }
  .service .service-inner .section .section-title .sp {
    display: block;
  }
  .service .service-inner .section .section-title:before {
    bottom: 32px;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .service .service-inner .service-content {
    text-align: left;
  }
}

@media (max-width: 375px) {
  .service .service-inner .service-content .service-item .service-main .service-catch {
    font-size: 16px;
  }

  .service .service-inner .service-content .service-item .service-main .service-title {
    font-size: 20px;
  }
}

.achieve {
  width: 100%;
  padding: 0 0 80px;
  background-color: #F8F8F8;
}

.achieve .achieve-inner {
  width: 1000px;
  margin: auto;
  text-align: center;
}

.achieve .achieve-inner .section {
  margin-bottom: 64px;
}

.achieve .achieve-inner .section .section-title {
  color: #2E313C;
}

.achieve .achieve-inner .section .section-title:before {
  content: 'Case study';
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(59, 133, 232, 0.1);
}

.achieve .achieve-inner .achieve-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.achieve .achieve-inner .achieve-content .achieve-item {
  width: calc((100% - 16px) / 3);
}

.achieve .achieve-inner .achieve-content .achieve-item .achieve-img {
  -webkit-box-shadow: 0 12px 24px #2729331F;
  box-shadow: 0 12px 24px #2729331F;
  margin-bottom: 20px;
}

.achieve .achieve-inner .achieve-content .achieve-item .achieve-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #3B85E8;
  margin-bottom: 8px;
}

.achieve .achieve-inner .achieve-content .achieve-item .achieve-text {
  width: calc(100% - 24px);
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 1140px) {
  .achieve .achieve-inner {
    width: 836px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item {
    width: 268px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item .achieve-img {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .achieve .achieve-inner {
    width: 680px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item {
    width: 216px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item .achieve-img {
    height: 150px;
    margin-bottom: 12px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item .achieve-main {
    margin: 0 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 756px) {
  .achieve .achieve-inner {
    width: auto;
  }

  .achieve .achieve-inner .achieve-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .achieve .achieve-inner .achieve-content .achieve-item {
    width: 392px;
    margin: 0 auto 56px;
  }

  .achieve .achieve-inner .achieve-content .achieve-item .achieve-img {
    height: auto;
  }

  .achieve .achieve-inner .achieve-content .achieve-item:nth-last-child(1) {
    margin-bottom: 0;
  }
}

@media (max-width: 599px) {
  .achieve {
    padding: 56px 0 40px;
  }
}

@media (max-width: 500px) {
  .achieve .achieve-inner .section .section-title .sp {
    display: block;
  }

  .achieve .achieve-inner .section .section-title:before {
    bottom: 32px;
  }
}

@media (max-width: 440px) {
  .achieve .achieve-inner {
    width: 90%;
  }

  .achieve .achieve-inner .achieve-content .achieve-item {
    width: 100%;
  }

  .achieve .achieve-inner .achieve-content .achieve-item .achieve-main .text {
    font-size: 16px;
  }
}

.key {
  width: 100%;
  padding: 24px 0;
}

.key .key-inner {
  width: 100%;
  padding: 56px 0;
  background-image: url(../img_renewal/key-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.key .key-inner .key-content {
  width: 900px;
  margin: auto;
  padding: 40px 50px;
  background-color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 4px 4px 24px #00000065;
  box-shadow: 4px 4px 24px #00000065;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.key .key-inner .key-content .key-main .section {
  margin-bottom: 40px;
}

.key .key-inner .key-content .key-main .section .section-title {
  color: #2E313C;
}

.key .key-inner .key-content .key-main .section .section-title:before {
  content: 'Key point';
  left: 0%;
  color: rgba(59, 133, 232, 0.1);
  color: rgba(241, 241, 241, 0.4);
}

.key .key-inner .key-content .key-main .key-text {
  width: 578px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.key .key-inner .key-content .key-main .key-text .empha {
  color: #BF3232;
  font-weight: 600;
}

.key .key-inner .key-content .key-main .key-text:nth-last-child(1) {
  margin-bottom: 0;
}

.key .key-inner .key-content .key-img {
  width: 282px;
  height: 282px;
}

@media (max-width: 1040px) {
  .key .key-inner .key-content {
    width: 730px;
  }

  .key .key-inner .key-content .key-main .key-text {
    width: 468px;
  }

  .key .key-inner .key-content .key-img {
    width: 240px;
    height: auto;
  }
}

@media (max-width: 860px) {
  .key .key-inner .key-content {
    width: 560px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .key .key-inner .key-content .key-main .key-text {
    width: 100%;
  }

  .key .key-inner .key-content .key-img {
    width: 300px;
    height: auto;
    margin: 24px auto 0;
  }
}

@media (max-width: 700px) {
  .key .key-inner .key-content {
    width: 440px;
  }

  .key .key-inner .key-content .key-main .key-text {
    width: 100%;
  }

  .key .key-inner .key-content .key-main .key-text .br {
    display: none;
  }

  .key .key-inner .key-content .key-img {
    width: 240px;
    height: auto;
    margin: 24px auto 0;
  }
}

@media (max-width: 599px) {
  .key .key-inner {
    padding: 40px 0;
  }

  .key .key-inner .section {
    margin-top: 64px;
  }

  .key .key-inner .section .section-title:before {
    font-size: 80px;
  }

  .key .key-inner .key-content {
    width: calc(85% - 100px);
  }

  .key .key-inner .key-content .key-main .key-text {
    width: 100%;
  }

  .key .key-inner .key-content .key-main .key-text .br {
    display: none;
  }

  .key .key-inner .key-content .key-img {
    width: 240px;
    height: auto;
    margin: 24px auto 0;
  }
}

@media (max-width: 500px) {
  .key .key-inner .section {
    margin-top: 64px;
  }

  .key .key-inner .section .section-title {
    font-size: 26px;
  }

  .key .key-inner .section .section-title:before {
    font-size: 68px;
    bottom: -6px;
  }

  .key .key-inner .key-content .key-img {
    width: 200px;
    height: auto;
    margin: 24px auto 0;
  }
}

@media (max-width: 440px) {
  .key .key-inner .key-content {
    text-align: center;
    padding: 24px;
    width: calc(90% - 48px);
  }

  .key .key-inner .key-content .key-main .section {
    margin-top: 40px;
    text-align: center;
  }

  .key .key-inner .key-content .key-main .section .section-title {
    font-size: 26px;
  }

  .key .key-inner .key-content .key-main .section .section-title .sp {
    display: block;
  }

  .key .key-inner .key-content .key-main .section .section-title:before {
    font-size: 56px;
    bottom: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .key .key-inner .key-content .key-main .key-text {
    text-align: left;
  }

  .key .key-inner .key-content .key-img {
    width: 200px;
    height: auto;
    margin: 24px auto 0;
  }
}

.member {
  width: 100%;
  padding: 80px 0;
  background-color: #F8F8F8;
}

.member .member-inner {
  width: 900px;
  margin: auto;
  text-align: center;
}

.member .member-inner .section {
  margin-bottom: 64px;
}

.member .member-inner .section .section-title {
  color: #2E313C;
}

.member .member-inner .section .section-title:before {
  content: 'Member';
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(59, 133, 232, 0.1);
}

.member .member-inner .member-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.member .member-inner .member-content .member-img {
  width: 240px;
  height: auto;
  -webkit-box-shadow: 0 12px 24px #2729331F;
  box-shadow: 0 12px 24px #2729331F;
}

.member .member-inner .member-content .member-main .member-text {
  width: 620px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.member .member-inner .member-content .member-name {
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}

.member .member-inner .member-content .member-name .small {
  /* font-size: 14px; */
  /* color: #AAAAAA; */
  margin: 0 8px 0 4px;
}

@media (max-width: 960px) {
  .member .member-inner {
    width: auto;
  }

  .member .member-inner .member-content {
    width: 710px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: auto;
  }

  .member .member-inner .member-content .member-main {
    width: 480px;
  }

  .member .member-inner .member-content .member-main .member-text {
    width: 100%;
  }

  .member .member-inner .member-content .member-main .member-text .br {
    display: none;
  }

  .member .member-inner .member-content .member-img {
    width: 200px;
  }
}

@media (max-width: 800px) {
  .member .member-inner .member-content {
    width: 640px;
  }

  .member .member-inner .member-content .member-img {
    width: 180px;
    height: auto;
  }

  .member .member-inner .member-content .member-main {
    width: 440px;
  }
}

@media (max-width: 720px) {
  .member .member-inner .member-content {
    width: calc(90% - 48px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .member .member-inner .member-content .member-img {
    width: 240px;
    height: auto;
    margin: 0 auto 32px;
  }

  .member .member-inner .member-content .member-main {
    width: 100%;
  }

  .member .member-inner .member-content .member-main .member-name {
    display: inline-block;
    text-align: left;
  }

  .member .member-inner .member-content .member-main .member-name .sp {
    display: block;
    margin-top: 6px;
  }
}

@media (max-width: 599px) {
  .member {
    padding: 56px 0 40px;
  }
  .member .member-inner .section .section-title .sp {
    display: block;
  }
  .member .member-inner .section .section-title:before {
    bottom: 32px;
  }
}

@media (max-width: 440px) {
  .member .member-inner .member-content .member-img {
    width: 220px;
  }
}

@media (max-width: 375px) {
  .member .member-inner .member-content .member-main .member-name .small {
    display: block;
    margin-left: 0;
  }

  .member .member-inner .member-content .member-main .member-name .sp {
    margin-top: 8px;
  }

  .member .member-inner .member-content .member-main .member-text {
    font-size: 14px;
  }
}

.voice {
  width: 100%;
  padding: 80px 0;
  background-color: #FFFFFF;
}

.voice .voice-inner {
  width: 1000px;
  margin: auto;
}

.voice .voice-inner .section {
  margin-bottom: 64px;
}

.voice .voice-inner .section .section-title {
  color: #2E313C;
}

.voice .voice-inner .section .section-title:before {
  content: 'Voice';
  left: 0;
  color: rgba(59, 133, 232, 0.1);
}

.voice .voice-inner .voice-content .voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.voice .voice-inner .voice-content .voice-item .voice-img {
  width: 320px;
  height: 240px;
  -webkit-box-shadow: 0 12px 24px #2729331F;
  box-shadow: 0 12px 24px #2729331F;
}

.voice .voice-inner .voice-content .voice-item .voice-main {
  width: 640px;
}

.voice .voice-inner .voice-content .voice-item .voice-main .voice-catch {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1;
  padding: 8px 12px;
  color: #fff;
  background: linear-gradient(45deg, #383C90, #4A9FBF);
  margin-bottom: 12px;
}

.voice .voice-inner .voice-content .voice-item .voice-main .voice-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #383C90;
  margin-bottom: 4px;
}

.voice .voice-inner .voice-content .voice-item .voice-main .voice-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #AAAAAA;
  margin-bottom: 24px;
}

.voice .voice-inner .voice-content .voice-item .voice-main .voice-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.voice .voice-inner .voice-content .voice-item:nth-last-child(1) {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .voice .voice-inner {
    width: 860px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-img {
    width: 270px;
    height: 220px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main {
    width: 560px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-catch {
    margin-bottom: 8px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-sub {
    margin-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .voice .voice-inner {
    width: 480px;
  }

  .voice .voice-inner .voice-content .voice-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .voice .voice-inner .voice-content .voice-item .voice-img {
    width: 480px;
    height: 300px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main {
    width: 480px;
    margin-bottom: 12px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-catch {
    margin-bottom: 8px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-sub {
    margin-bottom: 12px;
  }
}

@media (max-width: 599px) {
  .voice {
    padding: 56px 0 40px;
  }
}

@media (max-width: 540px) {
  .voice .voice-inner {
    width: 90%;
  }

  .voice .voice-inner .voice-content .voice-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .voice .voice-inner .voice-content .voice-item .voice-img {
    width: 100%;
    height: 320px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main {
    width: 100%;
    margin-bottom: 12px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-catch {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-sub {
    margin-bottom: 12px;
  }
}

@media (max-width: 440px) {
  .voice .voice-inner .voice-content .voice-item .voice-img {
    height: 280px;
  }
}

@media (max-width: 375px) {
  .voice .voice-inner .voice-content .voice-item .voice-img {
    height: 250px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-title {
    font-size: 20px;
  }

  .voice .voice-inner .voice-content .voice-item .voice-main .voice-catch {
    font-size: 14px;
  }
}

@media (max-width: 340px) {
  .voice .voice-inner .voice-content .voice-item .voice-img {
    height: 230px;
  }
}

.flow {
  width: 100%;
  padding: 80px 0;
  background-color: #F8F8F8;
}

.flow .flow-inner {
  width: 1000px;
  margin: auto;
  text-align: center;
}

.flow .flow-inner .section {
  margin-bottom: 16px;
}

.flow .flow-inner .section .section-title {
  color: #2E313C;
}

.flow .flow-inner .section .section-title:before {
  content: 'Flow';
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(59, 133, 232, 0.1);
}

.flow .flow-inner .flow-top {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 56px;
}

.flow .flow-inner .flow-content .flow-item {
  margin-bottom: 40px;
}

.flow .flow-inner .flow-content .flow-item .item-top {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.flow .flow-inner .flow-content .flow-item .flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flow .flow-inner .flow-content .flow-item .flow-box .flow-child {
  padding: 16px 0;
  width: calc((100% - 36px) / 4);
  background-color: #fff;
  -webkit-box-shadow: 0 3px 24px #373E8B27;
  box-shadow: 0 3px 24px #373E8B27;
  position: relative;
}

.flow .flow-inner .flow-content .flow-item .flow-box .flow-child .num {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  color: #383C90;
  border-bottom: 2px solid #383C90;
  margin-bottom: 12px;
}

.flow .flow-inner .flow-content .flow-item .flow-box .flow-child .flow-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.flow .flow-inner .flow-content .flow-item .flow-box .flow-child:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url(../img_renewal/innovation-flow-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.flow .flow-inner .flow-content .flow-item .flow-box .flow-child:nth-last-child(1):after {
  display: none;
}

.flow .flow-inner .flow-content .flow-item:nth-last-child(1) {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .flow .flow-inner {
    width: 780px;
  }
}

@media (max-width: 800px) {
  .flow .flow-inner {
    width: 440px;
  }

  .flow .flow-inner .flow-top .br {
    display: none;
  }

  .flow .flow-inner .flow-content .flow-item .item-top {
    text-align: center;
  }

  .flow .flow-inner .flow-content .flow-item .flow-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .flow .flow-inner .flow-content .flow-item .flow-box .flow-child {
    width: 200px;
    margin-bottom: 16px;
  }

  .flow .flow-inner .flow-content .flow-item .flow-box .flow-child:after {
    top: auto;
    bottom: -24px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }

  .flow .flow-inner .flow-content .flow-item .flow-box .flow-child:nth-last-child(1) {
    margin-bottom: 0;
  }
}

@media (max-width: 599px) {
  .flow {
    padding: 56px 0 40px;
  }
}

@media (max-width: 480px) {
  .flow .flow-inner {
    width: 90%;
  }

  .flow .flow-inner .flow-content .flow-item .item-top {
    font-size: 20px;
  }
}

.price {
  width: 100%;
  padding: 80px 0;
  background-color: #EEEEEE;
}

.price .price-inner {
  width: 1000px;
  margin: auto;
  text-align: center;
}

.price .price-inner .section {
  margin-bottom: 16px;
}

.price .price-inner .section .section-title {
  color: #2E313C;
}

.price .price-inner .section .section-title:before {
  content: 'Plan';
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(59, 133, 232, 0.1);
}

.price .price-inner .price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.price .price-inner .price-content .price-item {
  width: calc((100% - 160px) / 3);
  padding: 24px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.price .price-inner .price-content .price-item .price-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #383C90;
  margin-bottom: 8px;
}

.price .price-inner .price-content .price-item .price-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 20px;
}

.price .price-inner .price-content .price-item .price-detail {
  font-size: 40px;
  font-weight: 600;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #BF3232;
  margin-top: auto;
}

.price .price-inner .price-content .price-item .price-detail .small {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #2E313C;
}

@media (max-width: 1040px) {
  .price .price-inner {
    width: 840px;
  }

  .price .price-inner .price-content .price-item .price-title {
    font-size: 21px;
  }
}

@media (max-width: 860px) {
  .price .price-inner {
    width: auto;
  }

  .price .price-inner .section {
    margin-bottom: 32px;
  }

  .price .price-inner .price-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .price .price-inner .price-content .price-item {
    width: 300px;
    margin: 0 auto 40px;
  }

  .price .price-inner .price-content .price-item .price-title {
    font-size: 21px;
  }
}

@media (max-width: 599px) {
  .price {
    padding: 56px 0 40px;
  }
}

@media (max-width: 375px) {
  .price .price-inner {
    width: 90%;
  }

  .price .price-inner .section {
    margin-bottom: 32px;
  }

  .price .price-inner .price-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .price .price-inner .price-content .price-item {
    width: calc(100% - 48px);
    margin: 0 auto 40px;
  }

  .price .price-inner .price-content .price-item .price-title {
    font-size: 21px;
  }
}

.qa {
  width: 100%;
  padding: 80px 0;
  background-color: #F8F8F8;
}

.qa .qa-inner {
  width: 900px;
  margin: auto;
}

.qa .qa-inner .section {
  margin-bottom: 64px;
}

.qa .qa-inner .section .section-title {
  color: #2E313C;
}

.qa .qa-inner .section .section-title:before {
  content: 'QandA';
  left: 0;
  color: rgba(59, 133, 232, 0.1);
}

.qa .qa-inner .qa-content .qa-item {
  padding: 16px 24px;
  border-radius: 12px;
  background-color: #fff;
  margin-bottom: 32px;
}

.qa .qa-inner .qa-content .qa-item .qa-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.qa .qa-inner .qa-content .qa-item .qa-title p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
}

.qa .qa-inner .qa-content .qa-item .qa-title .index {
  width: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #3B85E8;
  margin-right: 8px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.qa .qa-inner .qa-content .qa-item .qa-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

.qa .qa-inner .qa-content .qa-item .qa-text p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.qa .qa-inner .qa-content .qa-item .qa-text .index {
  width: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #BF3232;
  margin-right: 8px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.qa .qa-inner .qa-content .qa-item:nth-last-child(1) {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .qa .qa-inner {
    width: 760px;
  }
}

@media (max-width: 800px) {
  .qa .qa-inner {
    width: 640px;
  }
}

@media (max-width: 660px) {
  .qa .qa-inner {
    width: 540px;
  }
}

@media (max-width: 599px) {
  .qa {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .qa .qa-inner {
    width: 90%;
  }
}

@media (max-width: 440px) {
  .qa .qa-inner .qa-content .qa-item .qa-title p {
    font-size: 18px;
  }
}

.sales {
  background-color: F8F8F8;
}

.fix .fix-inner .fix-left .fix-text {
  font-weight: 600;
  font-size: 14px;
}

.fix .fix-inner .fix-left .fix-text .empha {
  color: #BF3232;
}

.fix .fix-inner .fix-left .cta-btn {
  display: inline-block;
  font-size: 10px;
  background-color: #BF3232;
  color: #fff;
  padding: 3px 12px 4px;
  border-radius: 16px;
  margin-top: 8px;
}

@media (max-width: 680px) {
  .fix .fix-inner .fix-left .fix-text {
    font-size: 16px;
  }

  .fix .fix-inner .fix-left .fix-text .br {
    display: none;
  }

  .fix .fix-inner .fix-left .fix-text .br.tab {
    display: block;
  }

  .fix .fix-inner .fix-left .cta-btn {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .fix .fix-inner .fix-left .fix-text {
    font-size: 14px;
  }

  .fix .fix-inner .fix-right .fix-img {
    width: 90px;
  }
}

@media (max-width: 520px) {
  .fix .fix-inner .fix-left .fix-text .br.tab {
    display: none;
  }

  .fix .fix-inner .fix-left .fix-text .tab {
    display: block;
  }

  .fix .fix-inner .fix-left .cta-btn {
    font-size: 14px;
  }
}

@media (max-width: 460px) {
  .fix .fix-inner {
    padding: 8px 5%;
  }

  .fix .fix-inner .fix-left .fix-text .br {
    display: none;
  }

  .fix .fix-inner .fix-left .cta-btn {
    font-size: 14px;
  }

  .fix .fix-inner .fix-right .fix-img {
    width: 80px;
  }
}

@media (max-width: 400px) {
  .fix .fix-inner .fix-right .fix-img {
    width: 60px;
  }
}

@media (max-width: 375px) {
  .fix .fix-inner .fix-left .fix-text {
    font-size: 12px;
  }

  .fix .fix-inner .fix-left .fix-text .br {
    display: none;
  }

  .fix .fix-inner .fix-left .cta-btn {
    font-size: 14px;
  }

  .fix .fix-inner .fix-right .fix-img {
    width: 45px;
  }
}

@media (max-width: 680px) {
  .copyright {
    margin-bottom: 119px;
  }
}

@media (max-width: 600px) {
  .copyright {
    margin-bottom: 113px;
  }
}

@media (max-width: 520px) {
  .copyright {
    margin-bottom: 110px;
  }
}

@media (max-width: 460px) {
  .copyright {
    margin-bottom: 94px;
  }
}

@media (max-width: 375px) {
  .copyright {
    margin-bottom: 88px;
  }
}


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