@charset "UTF-8";
/* CSS Document */
/* ---------- main ---------- */
.main{
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}
.main-top-ps {
  width: 100%;
  margin-top: 60px;
}
.main-top-ps img {
  width: 100%;
  object-fit: cover;
}
.main-top-pc {
  display: none;
}
@media(min-width:960px){
  .main {
    margin-top: 100px;
    margin-bottom: 160px;
  }
  .main-top-ps {
    display: none;
  }
  .main-top-pc {
    display: block;
  }
  .main-top-pc img {
    width: 100%;
    object-fit: cover;
  }
}

/* ---------- Products Handled ---------- */
.productshandled {
  width: 100%;
  position: relative;
}
.productshandled-title {
  margin-bottom: 20px;
}
.productshandled-title h2 {
  position: relative;
  font-size: 2rem;
}
.productshandled-title h2::before {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #527eac;
  font-size: 3rem;
  line-height: 1;
  content: attr(data-word);
  pointer-events: none;
  opacity: 0.2;
  white-space: nowrap;
}

.productshandled-merchandise {
  width: 78%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
.productshandled-merchandise img {
  width: 33.33333333333333vw;
  max-width: 250px;
  object-fit: cover;
  margin: 10px;
}

@media(min-width:960px){
  .productshandled-title {
    margin-bottom: 60px;
  }
  .productshandled-title h2 {
    font-size: 3rem;
  }
  .productshandled-title h2::before {
    bottom: -1rem;
    font-size: 8rem;
  }
  
  .productshandled-merchandise {
    width: 68%;
    margin-bottom: 60px;
    justify-content: center;
  }
  .productshandled-merchandise img {
    width: 13.020833333333334vw;
    margin: 20px;
  }
}

/* ---------- contact ---------- */
.contact {
  background-image: url(../images/solution/contact.jpg);
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 60px 0;
}
.contact-title {
  margin-bottom: 40px;
}
.contact-title h2 {
  position: relative;
  font-size: 2rem;
  z-index: 1;
}
.contact-title h2::before {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #527eac;
  font-size: 3rem;
  line-height: 1;
  content: attr(data-word);
  pointer-events: none;
  opacity: 0.2;
  white-space: nowrap;
}
/* btn */
.contact-btn-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 20px auto;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background-image: linear-gradient(90deg, #293F56 10%, #527eac80 100%);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8rem;
  text-align: left;
}
.contact-btn-button a {
  color: #fff;
}
.contact-btn-button::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
@media(min-width:960px){
  .contact {
    padding: 100px 0;
  }
  .contact-title {
    margin-bottom: 60px;
  }
  .contact-title h2 {
    font-size: 3rem;
  }
  .contact-title h2::before {
    bottom: -1rem;
    font-size: 8rem;
  }
  /* btn */
  .contact-btn {
    width: 68%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
/* ---------- FLOW ---------- */
.flow {
  width: 100%;
  position: relative;
  margin: 60px auto;
}
.flow-title {
  margin-bottom: 40px;
}
.flow-title h2 {
  position: relative;
  font-size: 2rem;
  z-index: 1;
}
.flow-title h2::before {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #527eac;
  font-size: 3rem;
  line-height: 1;
  content: attr(data-word);
  pointer-events: none;
  opacity: 0.2;
  white-space: nowrap;
}
@media(min-width:960px){
  .flow {
    padding: 100px 0;
  }
  .flow-title {
    margin-bottom: 60px;
  }
  .flow-title h2 {
    font-size: 3rem;
  }
  .flow-title h2::before {
    bottom: -1rem;
    font-size: 8rem;
  }
}

/* flow */
.flow-step {
  width: 68%;
  margin: 0 auto 40px;
  text-align: left;
}

/* step1 */
.step1 {
  margin: 0;
  padding: 20px;
  background: #FFF;
  border-radius: 8px;
  position: relative;
}
.step1::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid #FFF;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}
.step1 h2 {
	font-size: 4rem;
  color: #668BB9;
}
.step1 h2::before {
	content: attr(data-en);
	display: block;
	color: #668BB9;
	font-size: 1.8rem;
}
.step1 h3 {
  font-size: 1.6rem;
  margin-top: 20px;
}
.step1 p {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6rem;
}

/* step2 */
.step2 {
  margin: 0;
  padding: 30px 20px;
  background: #DBE5F0;
  border-radius: 8px;
  position: relative;
  z-index: -1;
}
.step2::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid #DBE5F0;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}
.step2 h2 {
	font-size: 4rem;
  color: #8AA8CB;
}
.step2 h2::before {
	content: attr(data-en);
	display: block;
	color: #8AA8CB;
	font-size: 1.8rem;
}
.step2 h3 {
  font-size: 1.6rem;
  margin-top: 20px;
}
.step2 p {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6rem;
}

/* step3 */
.step3 {
  margin: 0;
  padding: 30px 20px;
  background: #B2C6DD;
  border-radius: 8px;
  position: relative;
  z-index: -2;
}
.step3::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid #B2C6DD;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}
.step3 h2 {
	font-size: 4rem;
  color: #527eac;
}
.step3 h2::before {
	content: attr(data-en);
	display: block;
	color: #527eac;
	font-size: 1.8rem;
}
.step3 h3 {
  font-size: 1.6rem;
  margin-top: 20px;
}
.step3 p {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6rem;
}

/* step4 */
.step4 {
  margin: 0;
  padding: 30px 20px;
  background: #8AA8CB;
  border-radius: 8px;
  position: relative;
  z-index: -3;
}
.step4::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid #8AA8CB;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}
.step4 h2 {
	font-size: 4rem;
  color: #DBE5F0;
}
.step4 h2::before {
	content: attr(data-en);
	display: block;
	color: #DBE5F0;
	font-size: 1.8rem;
}
.step4 h3 {
  font-size: 1.6rem;
  margin-top: 20px;
}
.step4 p {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6rem;
}

/* step5 */
.step5 {
  margin: 0;
  padding: 30px 20px;
  background: #668BB9;
  border-radius: 8px;
  position: relative;
  z-index: -4;
}
.step5 h2 {
	font-size: 4rem;
  color: #FFF;
}
.step5 h2::before {
	content: attr(data-en);
	display: block;
	color: #FFF;
	font-size: 1.8rem;
}
.step5 h3 {
  font-size: 1.6rem;
  margin-top: 20px;
}
.step5 p {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6rem;
}

@media(min-width:960px){
  .flow-step {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    max-width: 1440px;
  }
  .flow-step > div {
    flex: 1;
    margin: 10px;
  }
  .step1::after {
    display: none;
  }
  .step2::after {
    display: none;
  }
  .step3::after {
    display: none;
  }
  .step4::after {
    display: none;
  }
}

/* btn */
.flow-btn-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 20px auto;
  padding: 15px;
  border: none;
  border-radius: 20px;
  background-image: linear-gradient(90deg, #293F56 10%, #527eac80 100%);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-align: left;
}
.flow-btn-button a {
  color: #fff;
}
.flow-btn-button::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
@media(min-width:960px){
  /* btn */
  .flow-btn-button {
    max-width: 500px;
    padding: 20px;
  }
}