@charset "UTF-8";

/* ==================== basic setting ==================== */

html {
  margin: 0;
  padding:0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Open Sans','Julius Sans One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #233F29;
  line-height: 1.4;
  box-sizing: border-box;
}

h1,h2,h3 { text-align: left; }

h1 {
  letter-spacing: 0.09em;
  font-weight: 400;
   }

h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1.8;
}

h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.06em;

 }

 h4 {
   font-size: 18px;
   font-weight: 400;
 }

 h5 {
   font-size: 14px;
   font-weight: 500;
 }

figure { margin: 0;}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0 auto;
}

ul,li,dl,dt,dd {
  margin:0;
  padding:0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #233F29;
}

.text-bold { font-weight: 800;}
.text-big { font-size: 28px; }

/* btnstyle */

.btn:hover {
  transition: .3s;
  opacity: 0.8;
  transform: translateY(3px);
}

.btn-box a {
}

.btn-box {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.sm-btn-box {
  border-radius: 20px;
  padding: 20px;
  margin: 1%;
  width: 18%;
  height: 140px;
  font-weight: 500;
}

.btn {
  width: 400px;
  margin-right: 20px;
  padding: 18px;
  border-radius: 14px;
  font-size: 16px;
  letter-spacing: inherit;
}

.btn-01 {
  background-color: #0E1931;
  border: solid 1px #0E1931;
  color: #fff;
}

.btn-02 {
  background-color: #fff;
  border: solid 1px #0E1931;
  color: #0E1931;
}

.btn:hover {
  font-weight: 500;
  transform: scale(1.02);
  transform: translateY(3px);
  opacity: 0.85;
 }

 .btn-02:hover {
   border: solid 2px #0E1931;
 }

.btn a {
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  padding: 22px 0;
}

/* Box style */
.box-flex {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  width: 100%;
}

/* title style */
.section-title {
  font-family: julius sans one;
  padding: 140px 40px 0px 40px;
  font-size: 54px;
  letter-spacing: 0.06em;
  margin-top: 20px;
}


/*==================== navigation ====================*/

#header {
 background:#fdfdfd;
 position: relative;
 z-index: 40;
}

.fixed{
 position: fixed !important;
 top:0;
 width: 100%;
}

.header-nav {
 display: flex;
 max-width: 100%;
 height: 80px;
 margin: 0 auto;
 background: #fdfdfd;
 justify-content: space-between;
}


.header-nav .logo {
padding: 25px 30px;
width: 190px;
}

#global-nav ul{
 margin: 30px 30px;
 display: flex;
}

/* new global-nav starts here */
.borderLR {
 padding-bottom: 5px;
 margin: 5px 20px;
 font-family: 'open sans', sans-serif;
 font-size: 16px;
 font-weight: 400;
 letter-spacing: 0.1em;
 position: relative;
}

.borderLR::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -2px;
  left: 0;
  background-color: #A9AAD8;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.borderLR:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.borderLR:hover {
  color:#1D1A1A;
  font-weight: 600;
}
/* ends here */

#nav-toggle,
#nav-toggle span {
   display: none;
}
#nav-toggle {
   width: 36px;
   height: 28px;
   position: relative;
   cursor: pointer;
   position: absolute;
   right:20px;
   top:16px;
}
#nav-toggle span {
   background: #A9AAD8;
   position: absolute;
   left: 0;
   width: 100%;
   height: 4px;
}
#nav-toggle span:nth-of-type(1) { top: 0; }
#nav-toggle span:nth-of-type(2) { top: 12px; }
#nav-toggle span:nth-of-type(3) { top: 24px; }


/* different viewpoint */
  @media (max-width:960px){

     .header-nav { height:60px; }

     .header-nav .logo {
      padding:15px 15px;
      height: 20px;
     }

     .header-nav .logo img {
       width: auto;
       height: 30px;
       vertical-align: middle;
     }

     .borderLR {
      font-size: 16px;
      font-weight: 400;
     }

     #global-nav {
       display: flex;
       align-items:center;
       position: fixed;
       background: #fdfdfd;
       width: 100%;
       height: 100%;
       transition: 0.5s;
       transform: translateX(100%);
     }
     #global-nav ul{
       width: 100%;
       flex-direction: column;
       text-align: center;
     }
     #global-nav ul li a {
       padding: 15px 0px;
       border-right:none;
       display: block;
       width: 100%;
       color: #5c5c5a;
       font-weight: 400;
     }
     .open #global-nav {
       transform: translateX(0);
     }
     .open #nav-toggle span:nth-of-type(1) {
         transform: translateY(12px) rotate(-45deg);
     }
     .open #nav-toggle span:nth-of-type(2) {
       display: none;
     }
     .open #nav-toggle span:nth-of-type(3) {
       transform: translateY(-12px) rotate(45deg);
     }

     #nav-toggle,
     #nav-toggle span {
       display: inline;
       transition: .4s;
     }

    }

/* ---------------------- intro ------------------------*/
#Intro {
  width: 100%;
  margin: 0 auto;
}

.pc-container {
  max-width: 1240px;
  margin: 0 auto;
}

.top-img img{
  width: 100vw;
  height: auto;
}

.textbox-top {
  width: 100%;
  padding: 70px 40px 20px 40px;
}

.subtext-top {
  width: 100%;
  padding: 74px 40px 20px 40px;
}

.textbox-sm {
  width: 100%;
  padding: 20px 40px 20px 40px;
}

.textbox-sm span { font-weight: 700;}

.textbox-lg {
  width: 80%;
  padding: 20px 40px 40px 40px;
  display: block;
  margin: auto;
  text-align: center;
}

.textbox-p {
  padding-top: 20px;
  text-align: left;
}

.topheader-sm {
  font-family: Julius Sans One;
  text-align: left;
  padding-bottom: 20px;
  font-size: 40px;
}

.topheader-center {
  /* font-family: Julius Sans One; */
  font-size: 48px;
  text-align: center;
  padding: 100px 0 20px 0;
}

.subtext-top p span {
  font-weight: 700;
}

/* different viewpoint */
  @media only screen and (min-width: 768px) and (max-width: 960px) {
    .pc-container {
      display: block;
      margin: 0 auto;
      max-width: 800px;
    }

    .box-flex {
      flex-direction: column;
      margin: 0 auto;
      max-width: 700px;
      width: 100%;
    }

    .textbox-top {
      width: 95%;
      padding: 60px 40px 20px 40px;
    }

    .subtext-top {
      width: 95%;
      padding: 40px 40px 0px 40px;
    }

    .textbox-sm {
      width: 95%;
      padding: 40px 40px;
    }


  }
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .pc-container {
      max-width: 740px;
    }

    .box-flex {
      flex-direction: column;
      width: 90%;
      margin: 0 auto;
      justify-content: center;
    }

    .textbox-top {
      /* background-color: #fff; */
      padding: 40px 20px 0px 20px;
      width: 90%;
    }

    .subtext-top {
      width: 90%;
      padding: 40px 20px 0px 20px;
    }

    .textbox-sm {
      width: 90%;
      padding: 20px 20px;
    }

    .textbox-lg {
      width: 85%;
      padding: 40px 40px;
      text-align: center;
    }

    .textbox-top h3 {
      font-size: 48px;
      line-height: 42px;
    }

    .textbox-lg h3 {
      font-size: 36px;
      line-height: 42px;
    }

    .textbox-sm h3 { font-size: 32px; }


    .btn-box { text-align: center; }

    .btn-box a {
      width: 272px;
      height: auto;
    }
  }
  @media only screen and (min-width: 414px) and (max-width: 599px) {
    .pc-container {
      width: 95%;
    }

    .box-flex {
      width: 95%;
      flex-direction: column;
      margin: 0 auto;
      justify-content: center;

    }

    .textbox-top {
      padding: 20px 20px;
      width: 90%;
    }

    .subtext-top {
      width: 90%;
      padding: 20px 20px 0px 20px;
      font-size: 14px;
      line-height: 1.4;
    }

    .textbox-sm {
      width: 90%;
      padding: 20px 20px;
      font-size: 14px;
      line-height: 1.4;
    }

    .textbox-lg {
      width: 88%;
      padding: 20px 20px;
      text-align: left;
    }

    .textbox-lg p {
      font-size: 14px;
      text-align: center;
    }

    .textbox-lg h3 {
      font-size: 28px;
      line-height: 36px;
    }

    .textbox-top h3 {
      font-size: 28px;
      line-height: 36px;
    }

    .textbox-sm h3 { font-size: 32px; }

  }
  @media (max-width: 413px) {
    .pc-container {
      max-width: 414px;
      width: 95%;
    }

    .box-flex {
      width: 95%;
      flex-direction: column;
      margin: 0 auto;
      justify-content: center;

    }

    .textbox-top {
      padding: 40px 20px 20px 20px;
      width: 90%;
    }

    .subtext-top {
      width: 90%;
      padding: 20px 20px 0px 20px;
      font-size: 14px;
      line-height: 1.4;

    }

    .textbox-sm {
      width: 90%;
      padding: 20px 20px;
      font-size: 14px;
      line-height: 1.4;

    }

    .textbox-lg {
      width: 90%;
      padding: 20px 20px;
      text-align: left;
    }

    .textbox-lg h3 {
      font-size: 28px;
      line-height: 36px;
    }

    .textbox-top h3 {
      font-size: 36px;
      line-height: 42px;
    }

    .textbox-sm h3 { font-size: 32px; }

  }


/* --------------------  Process --------------------*/

#process {
  width: 100%;
  margin: 0 auto;
}

/* box hover style */
 .sm-box-process:hover {
   font-weight: 700;
   transition: .5s;
   opacity: 0.8;
   transform: translateY(3px);
 }

/* btn box colors */
 .sm-box-process:nth-of-type(1) {
   background-color: rgba(148, 179, 191, 0.3);
 }
 .sm-box-process:nth-of-type(2) {
   background-color: rgba(230, 217, 210, 1);
 }
 .sm-box-process:nth-of-type(3) {
   background-color: rgba(148, 179, 191, 0.6);
 }
 .sm-box-process:nth-of-type(4) {
   background-color: rgba(203, 166, 146, 1);
 }
 .sm-box-process:nth-of-type(5) {
   background-color: rgba(148, 179, 191, 1);
 }
 .sm-box-process:nth-of-type(6) {
   background-color: rgba(203, 166, 146, 0.6);
 }
 .sm-box-process:nth-of-type(7) {
   background-color: rgba(230, 217, 210, 1);
 }
 .sm-box-process:nth-of-type(8) {
   background-color: rgba(148, 179, 191, 0.6);
 }
 .sm-box-process:nth-of-type(9) {
   background-color: rgba(203, 166, 146, 1);
 }
 .sm-box-process:nth-of-type(10) {
   background-color: rgba(148, 179, 191, 1);
 }
 .sm-box-process:nth-of-type(11) {
   background-color: rgba(203, 166, 146, 0.6);
 }

 .line1-process {
   font-size: 30px;
   font-family: Julius sans one;
 }
 .line1-process span {
   font-size: 18px;
 }
 .line2-process {
   font-size: 24px;
   font-family: julius sans one;
 }
 .line3-process {
   font-size: 16px;
   line-height: 18px;
 }


  @media only screen and (min-width: 768px) and (max-width: 960px){
    .box-process {
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
    }

    .sm-box-process {
      margin: 1.5%;
      width: 24%;
      height: 140px;
    }

  }
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .sm-box-process {
      margin: 1%;
      width: 24%;
    }
    .topheader-center { padding: 30px 0 20px 0; }

    .line2-process { font-size: 20px; }
    .line3-process { font-size: 14px; }
    .line3-process { font-weight: 500; }

  }
  @media only screen and (min-width: 414px) and (max-width: 599px) {
     .sm-box-process {
       width: 36%;
       margin: 1%;
     }

     .topheader-center { padding: 20px 0 20px 0; }
     .line2-process { font-size: 20px; }
     .line3-process { font-size: 14px; }
   }
  @media (max-width: 413px) {
     .box-process {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
      }
     .sm-box-process {
       text: wrap;
       width: 90%;
       margin: 3%
       padding: 30px 20px;
       height: 120px;
    }

    .sm-box-process:nth-of-type(12) { display: none;}
   }

/* ---------------------- #1 Understand --------------------------- */
#Understand {
  width: 100%;
  margin: 0 auto;
}

.section-title span { font-size: 24px; }

.box-users {
  width: 100%;
  display: block;
  margin: auto;
  text-align: center;
  padding-bottom: 40px;
}

.box-users img:hover {
  transition: .5s;
  transform: translateY(3px);
}

.box-users img { margin: 3%; }

  @media only screen and (min-width: 768px) and (max-width: 960px){}
  @media only screen and (min-width: 600px) and (max-width: 767px){
    .box-flex img {
      width: 40%;
    }
    .section-title-understand {padding: 100px 40px 0 40px; }
  }
  @media only screen and (min-width: 414px) and (max-width: 599px) {
    .section-title {
      padding: 100px 30px 0px 30px;
      font-size: 42px;
    }

    .textbox-top {
      padding: 30px 20px;
    }

    .subtext-top {
      padding: 0px 20px 20px 20px;
    }

    .box-flex img {
      width: 40%;
    }

  }
  @media (max-width: 413px) {
    .box-flex img {
      width: 30%;
    }

    .textbox-top {
      padding: 10px 20px;
    }

    .textbox-top h3 {
      font-size: 28px;
      line-height: 36px;
    }

    .section-title {
      font-size: 36px;
      padding: 60px 30px 0px 30px;
    }


  }



/*----------------------- #2 Research ------------------------*/
#Research {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}

.box-flex-research2 img {
  width: 94%;
  padding-top: 60px;
}

.subtext-top-research p { font-size: 18px; }

  @media only screen and (min-width: 768px) and (max-width: 960px) {}
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .section-title-research {
      padding: 60px 40px 0 40px;
     }

    .box-flex-research2 img{
      padding: 20px 0;
      width: 90%;
    }

  }
  @media only screen and (min-width: 414px) and (max-width: 599px) {
    .box-flex-research2 img{
      padding: 0px 0;
      width: 90%;
    }

    .subtext-top p {
      font-size: 14px;
      line-height: 1.4;
    }

  }
  @media (max-width: 413px) {
    .box-flex-research2 img{
      padding: 0px 0;
      width: 90%;
    }

    .subtext-top p {
      font-size: 14px;
      line-height: 1.4;
    }
  }


  /*----------------------- #3 Evaluate UI audit ------------------------*/

  #Evaluate1 {
    width: 100%;
    margin: 0 auto;
  }
  #Evaluate2 {
    width: 100%;
    margin: 0 auto;
    background-color: rgba(253, 246, 238, 1);
  }

  .pc-container-evaluate { padding-bottom: 60px; }

  .box-flex-evaluate2 img {
    padding: 40px 0 80px 0;
    width: 80%;
  }

  .line1-evaluate {
    font-size: 24px;
    font-family: Julius sans one;
  }
  .line1-evaluate span { font-size: 18px; }

  .line2-evaluate {
    font-size: 28px;
    /* font-family: julius sans one; */
    font-weight: 800;
    line-height: 30px;
    padding-bottom: 20px;
  }

  .line3-evaluate {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
  }


/* overlay */
.flex-box {
  display: flex;
  flex-direction:row;
  flex-wrap: wrap;
  justify-content: center;
}

.container {
  width: 30%;
  height: auto;
  margin: 0.5%;
  border-radius: 20px;
}

.container:hover {
  transition: .5s;
  opacity: 0.9;
  transform: translateY(3px);
}

.box-evaluate {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.sm-box-evaluate {
  display: block;
  width: 100%;
  height: 340px;
  padding: 40px;
  margin: 1%;
}

.container:nth-of-type(even) { background-color: rgba(255, 255, 255, 1); }
.container:nth-of-type(odd) { background-color: rgba(206, 206, 206, 0.2); }
.container .overlay { background-color: rgba(230, 217, 210, 1);}
.container:hover .overlay { opacity: 1; }

/* overlay starts here */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  border-radius: 20px;
}
.overlay-text {
  color: rgba(14, 25, 49, 1);
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  -ms-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
  text-align: left;
}
.overlay-texttitle {
  /* font-family: JUlius Sans One; */
  font-weight: 800;
  font-size: 32px;
  color: #D1A489;
  padding-bottom: 20px;
}
.overlay-icon {
  width: 16%;
  margin: 0 auto;
}
.overlay-img {
  width: 74%;
}
.overlay-gif{
  width: 80%;
  padding: 0px 0 20px 0;
}
.overlay-gif-md {
  width: 60%;
  padding: 10px 0 0 0;
}
.overlay-gif-sm {
  width: 30%;
  padding: 10px 0 20px 0;
}
/* end overlay */

/* Different viewpoints */
    @media only screen and (min-width: 768px) and (max-width: 960px) {
      .container { width: 40%; }
    }
    @media only screen and (min-width: 600px) and (max-width: 767px) {
      .section-title-evaluate {
        padding: 60px 40px 0 40px;
       }

      .box-flex-evaluate2 img{
        padding: 20px 0;
        width: 90%;
      }

      /* overlay */
      .container {
        width: 80%;
        height: auto;
        margin: 1%;
        border-radius: 20px;
      }

      .sm-box-evaluate {
        display: block;
        width: 100%;
        height: 200px;
        padding: 40px;
        margin: 1%;
        font-weight: 400;
      }

      .overlay-icon { width: 10%; }

    }
    @media only screen and (min-width: 414px) and (max-width: 599px) {
      .box-flex-evaluate2 img{
        padding: 0px 0;
        width: 90%;
      }

      .flex-box {
        display: flex;
        flex-direction: column;
      }

      .container {
        width: 100%;
        height: auto;
        margin: 0.5%;
      }

      .box-evaluate {
        display: flex;
        flex-direction: column;
        position: relative;
      }

      .sm-box-evaluate {
        display: block;
        width: 80%;
        height: 320px;
      }

      .overlay-icon {
        width: 20%;
        margin: 0 auto;
      }

      .textbox-lg h4 {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
      }

      .line1-evaluate {
        font-size: 40px;
      }
      .line2-evaluate {
        font-size: 24px;
      }
      .line3-evaluate {
        font-size: 14px;
        line-height: 1.4;
      }

      /* overlay */


    }
    @media (max-width: 413px) {
      .box-flex-evaluate2 img{
        padding: 0px 0;
        width: 90%;
      }
      /* overlay */
      .flex-box {
        display: flex;
        flex-direction: column;
      }

      .container {
        width: 100%;
        height: auto;
        margin: 1%;
      }

      .box-evaluate {
        display: flex;
        flex-direction: column;
        position: relative;
      }

      .sm-box-evaluate {
        display: block;
        width: 80%;
        height: 320px;
      }

      .textbox-lg h4 {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
      }

      .line1-evaluate {
        font-size: 40px;
      }

      .line2-evaluate {
        font-size: 24px;
      }
      .line3-evaluate {
        font-size: 14px;
        line-height: 1.4;
      }


      .overlay-text { width: 74%; }
      .overlay-icon { width: 15%; }

    }


/* #4 Summarize */
#summarize {
  width: 100%;
  margin: 0 auto;
}

.box-flex-summarize2 {
  padding-bottom: 0;
}
.box-flex-summarize2 img {
  padding: 40px 0 0 0;
  width: 80%;
}

.textbox-sm-summarize:hover {
  transition: .5s;
  transform: translateY(3px);
  transform: scale(1.05);
}

.textbox-sm-summarize { border-radius: 20px; }
.textbox-sm-summarize:nth-of-type(odd) {
  background-color: rgba(217, 183, 165, 0.1);
 }

 .textbox-sm-summarize:nth-of-type(even) {
   background-color: rgba(217, 183, 165, 0.4);
  }


/* title fontstyle */
.box-flex-summarize3 P:nth-of-type(1){
  font-family: Julius Sans One;
  font-size: 24px;
}

.box-flex-summarize3 P:nth-of-type(2){
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.box-flex-summarize3 P:nth-of-type(3){
  font-family: Julius Sans One;
  font-size: 28px;
  letter-spacing: 0.06em;
}

/* title letter # */
.box-flex-summarize3 span:nth-of-type(1){
  font-size: 20px;
}
/* title number  */
.box-flex-summarize3 span:nth-of-type(2){ font-size: 54px;}


.textbox-sm-summarize {
  margin: 1%;
}

.box-section-icon {
  text-align: center;
  margin: 0 auto;
}


@media only screen and (min-width: 768px) and (max-width: 960px) {
  .box-flex-summarize2 img {
    padding: 40px 0;
    width: 95%;
  }
  .box-flex-summarize3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 90%;
  }
  .box-flex-summarize3 img {
    width: 33%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .box-flex-summarize2 img {
    padding: 40px 0;
    width: 95%;
  }
  .box-flex-summarize3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .box-flex-summarize3 img {
    width: 30%;
  }


}
@media only screen and (min-width: 414px) and (max-width: 599px) {
  .box-flex-summarize2 img {
    width: 95%;
  }
  .box-flex-summarize3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .box-flex-summarize3 img {
    width: 100%;
    margin-bottom: 10px;
  }


  .textbox-sm-summarize {
    margin: 0%;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 413px) {
  .box-flex-summarize2 img {
    width: 95%;
  }

  .box-flex-summarize3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  .box-flex-summarize3 img {
    width: 100%;
  }

  .textbox-sm-summarize {
    margin: 0%;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}

/* #5 construct */
#construct {
  width: 100%;
  margin: 0 auto;
}

.img-box-flex-construct { margin-bottom: 80px;}
.box-flex-construct2 {
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.box-flex-construct2:nth-of-type(2):hover {
  transition: .5s;
  transform: translateY(3px);
  transform: scale(1.2);
}

.box-flex-construct2 p {
  font-weight: 600;
  font-size: 22px;
  padding-top: 60px;
  padding-bottom: 30px;
}

.box-flex-construct2 img {
  text-align: center;
  width: 80%;
}

/* #6 Visualize */
#visualize {
  width: 100%;
  margin: 0 auto;
}

.img-visualize { margin-bottom: 60px; }

@media (max-width: 767px) {
  .img-visualize {
    width: 200%;
  }
}


/* #7 create */
#create {
  width: 100%;
  margin: 0 auto;
}

.box-flex-create1 {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.box-inner-flex {
  width: 36%;
  margin: 1.5%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
  justify-content: center;
}

.box-inner-flex:hover {
  transition: .5s;
  transform: translateY(3px);
  transform: scale(1.02);
}

.textbox-top-create1 {
    width: 100%;
    padding: 0px 10px 20px 10px;
}

.box-inner-flex:nth-of-type(1){ background-color: rgba(230, 217, 210, 0.6); }
.box-inner-flex:nth-of-type(4){ background-color: rgba(230, 217, 210, 0.6); }
.box-inner-flex:nth-of-type(5){ background-color: rgba(230, 217, 210, 0.6); }
.box-inner-flex:nth-of-type(2){ background-color: rgba(230, 217, 210, 0.18); }
.box-inner-flex:nth-of-type(3){ background-color: rgba(230, 217, 210, 0.18); }
.box-inner-flex:nth-of-type(6){ background-color: rgba(230, 217, 210, 0.18); }


.textbox-top-create1 p:nth-of-type(1){
  font-family: Julius Sans One;
  font-size: 24px;
}

.textbox-top-create1 span:nth-of-type(1) { font-size: 20px; }
.textbox-top-create1 span:nth-of-type(2) { font-size: 54px; }

.textbox-top-create1 p:nth-of-type(2) {
  font-size: 32px;
  padding-bottom: 10px;
  font-weight: 800;
}

.textbox-top-create1 p:nth-of-type(3) { padding-bottom: 10px; }
.textbox-top-create1 p:nth-of-type(4) {
  font-family: julius sans one;
  font-size: 32px;
  padding: 10px 0;
 }

.box-inner-flex img {
  width: 90%;
  padding-bottom: 20px;
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}

.textbox-lg img:hover {
  transition: .5s;
  transform: translateY(3px);
  transform: scale(1.06);
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .box-inner-flex {
    width: 33%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .box-inner-flex {
    width: 36%;
    margin: 1%;
    padding: 30px 20px 30px 20px;
  }

  .textbox-top-create1 {
    width: 90%;
  }

  .box-inner-flex img {
    width: 100%;
  }
}
@media only screen and (min-width: 414px) and (max-width: 599px) {
  .box-flex-create1 {
    padding: 0 10px 40px 10px;
  }

  .box-inner-flex {
    width: 73%;
    margin: 1.5%;
    padding: 30px 40px 30px 40px;
  }

  .box-inner-flex:nth-of-type(odd){ background-color: rgba(230, 217, 210, 0.55); }
  .box-inner-flex:nth-of-type(even){ background-color: rgba(230, 217, 210, 0.2); }

  .textbox-top-create1 p:nth-of-type(3) {
    font-size: 14px;
    line-height: 1.4;
   }

   .textbox-top-create1 p:nth-of-type(5) {
     font-size: 14px;
     line-height: 1.4;
    }


}
@media (max-width: 413px) {
  .box-flex-create1 {
    padding: 0 0 40px 0;
  }

  .box-inner-flex {
    width: 73%;
    margin: 1.5%;
    padding: 30px 40px 30px 40px;
  }

  .textbox-top-create1 p:nth-of-type(3) {
    font-size: 14px;
    line-height: 1.4;
   }

   .textbox-top-create1 p:nth-of-type(5) {
     font-size: 14px;
     line-height: 1.4;
    }


}




/* #8 Establish  */
#Establish {
  width: 100%;
  margin: 0 auto;
}

.box-flex-establish2 video {
  border-radius: 60px;
  padding: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .box-flex-establish2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .box-flex-establish2 {
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 414px) and (max-width: 599px) {
}
@media (max-width: 413px) {
  .box-flex-establish2 video {
    border-radius: 40px;
    padding: 0px;
    margin-bottom: 20px;
  }

}





/* #9 test */
#Test {
  width: 100%;
  margin: 0 auto;
}

.img-users {
  width: 45%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 100px;
}

.img-users:hover{
  transition: .5s;
  transform: translateY(3px);
}
.box-flex-test1 { margin-bottom: 40px;}

.box-flex-test2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.sm-box-flex-test {
  width: 100%;
  margin: 1%;
  display: flex;
  flex-direction: column;
}

.sm-box-flex-test li:nth-of-type(1) {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 20px;
  line-height: 40px;
}

/* number */
.list-title span:nth-of-type(2) {
  font-size: 48px;
  font-weight: bold;
}

/* # */
.list-title span:nth-of-type(1) {
  font-size: 22px;
  font-weight: bold;
}

.list-title2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 800;
  padding-bottom: 20px;
}

.list-description span {
  font-weight: bold;
}

.list-test-prob {
  width: 80%;
  padding: 20px 40px;
}

.img-icon-test {
  width: 65%;
  padding: 20px 0px;
}

.gif-test { width: 100%; }
.gif-test:hover {
  transition: .5s;
  transform: translateY(3px);
}
.gif-sm-test {
  width: 75%;
}

.img-test:hover {
  transition: .5s;
  transform: translateY(3px);
}

.gif-sm-test:hover {
  transition: .5s;
  transform: translateY(3px);
}

@media only screen and (min-width: 768px) and (max-width: 960px) {}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .box-flex-test2 img {
    width: 80%;
  }

  .box-flex-test2 {
    flex-direction: column;
  }
}
@media only screen and (min-width: 414px) and (max-width: 599px) {
  .img-users {
    width: 80%;
    margin-bottom: 80px;
  }
  .box-flex-test2 img {
    width: 90%;
  }

  .box-flex-test2 {
    flex-direction: column;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .box-flex-test2:nth-of-type(odd) {
    background-color: rgba(230, 217, 210, 0.6);
  }

  .box-flex-test2:nth-of-type(even) {
    background-color: rgba(230, 217, 210, 0.2);
  }


  .list-title2 {
    line-height: 1.2;
    font-size: 24px;
  }

  .list-description {
    font-size: 14px;
    line-height: 1.4;
  }


}
@media (max-width: 413px) {
  .img-users {
    width: 80%;
    margin-bottom: 80px;
  }
  .box-flex-test2 img {
    width: 90%;
  }

  .box-flex-test2 {
    flex-direction: column;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .box-flex-test2:nth-of-type(odd) {
    background-color: rgba(230, 217, 210, 0.6);
  }

  .box-flex-test2:nth-of-type(even) {
    background-color: rgba(230, 217, 210, 0.2);
  }

  .list-description {
    font-size: 14px;
    line-height: 1.4;
  }


}

/* #10 iterate */

#Iterate {
  width: 100%;
  margin: 0 auto;
}

.box-flex-iterate2 { margin-bottom: 40px; }
.box-flex-iterate2 img {
  width: 22%;
  margin: 1%;
}

.img-iterate {
  text-align: center;
}

.hover-iterate:hover {
  transition: .5s;
  transform: translateY(3px);
  transform:scale(1.1);
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .box-flex-iterate2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }
  .box-flex-iterate2 img {
    width: 23%;
    margin: 1%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .box-flex-iterate2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }
  .box-flex-iterate2 img {
    width: 48%;
    margin: 1%;
  }
}
@media only screen and (min-width: 414px) and (max-width: 599px) {
  .box-flex-iterate2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
  }
  .box-flex-iterate2 img {
    width: 48%;
    margin: 1%;
  }
}

@media (max-width: 413px) {
  .box-flex-iterate2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
  }
  .box-flex-iterate2 img {
    width: 48%;
    margin: 1%;
  }
}

/* #11 handoff */
#Handoff {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 140px;
}

.img-finaldesign-sp {
  display: none;
}

.img-handoff {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.btn-03 {
  font-family: inherit;
  font-size: 16px;
  color: #D1A489;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  letter-spacing: inherit;
}

.btn-03:hover {
  font-weight: 500;
}

.btn-description {
  font-size: 14px;
  opacity: 0.6;
  padding-top: 10px;
}
.btn-figma-prototype {
  width: 100%;
  margin-bottom: 10px;
}

@media only screen and (min-width: 414px) and (max-width: 767px) {
  .img-finaldesign-pc img {
    width: 100%;
  }
}
@media (max-width: 413px) {
  .img-finaldesign-pc {
    display: none;
  }

  .img-finaldesign-sp {
    display: block;  }

  .btn-figma-prototype {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* #12 Summary */
#Summary {
  width: 100%;
  margin: 0 auto;
  background-color: #FDF6EE;
  padding: 0 0 60px 0;
}

/* #13 Lessons Learned */
#Lessons {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.box-flex-lessons {
  width: 44%;
  margin: 0 auto;
}

.topheader-sm-lessons {
  padding-top: 20px;
}

.textbox-sm-lessons {
  width: 100%;
  padding: 20px 40px 20px 40px;
}

.textbox-sm-lessons img {
  width: 13%;
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  justify-content: center;
}

.topheader-sm {
  font-family: Open Sans;
  font-size: 40px;
  line-height: 1.2;
}

.topheader-sm span {
  font-size: 24px;
}


@media only screen and (min-width: 768px) and (max-width: 960px) {}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .textbox-sm-lessons {
    width: 95%;
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (min-width: 414px) and (max-width: 599px) {
  .textbox-sm-lessons {
    width: 90%;
    padding: 20px 20px 20px 20px;
  }

  .textbox-sm-lessons img {
    width: 23%;
  }
}
@media (max-width: 413px) {
  .textbox-sm-lessons {
    width: 90%;
    padding: 20px 20px 20px 20px;
  }

  .textbox-sm-lessons img {
    width: 23%;
  }
}

  /*----------------------- Footer ------------------------*/
    footer { background: #EEEEF7; }

    footer a:visited { color:#A9AAD8; }

    footer {
    	padding: 36px 0;
    	text-align: center;
        }

    .footer-inner{
    	width: 1000px;
      text-align: center;
      font-size: 12px;
      line-height: 1.8;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    .footer-01 small:nth-of-type(1){
      font-size: 16px;
      font-weight: 600;
      color: #9293BE;
    }


    @media only screen and (min-width: 768px) and (max-width: 960px)  {
      .footer-inner { width: 100%; }
    }

    @media(max-width: 767px) {

      footer { padding: 30px 20px; }

      .footer-inner {
        width: 100%;
      }
      .footer-01 { font-size: 13px; }
      .footer-02 { font-size: 10px;}
    }

/* ===================== 上へ戻るボタン ===================== */

#scroll-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #A9AAD8;
	color: #fff;
	width: 60px;
	height: 60px;
  border-radius: 50%;
  opacity: 0.9;
	text-align: center;
	text-decoration: none;
  z-index: 100;
}

#scroll-btn:hover {
	background-color: #A9AAD8;
  opacity: 0.7;
}

#scroll-btn img {
  width: 30px;
  height: auto;
  padding-top: 20px;
}
    @media(max-width: 767px) {

#scroll-btn {
	width: 50px;
	height: 50px;
}

#scroll-btn img {
  width: 30px;
  height: auto;
  padding-top: 17px;
}
}
