@charset "UTF-8";
/* =====================================
   トップレイアウト
===================================== */
.top_container {
  max-width: 1400px;
  margin: auto;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .top_container {
    padding: 0;
    flex-direction: column;
  }
}
.top_container .left-column {
  width: 30%;
  transform-origin: top center;
  animation: loading 1.6s;
}
.top_container .left-column img {
  width: 90%;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .top_container .left-column {
    display: none;
  }
}
.top_container .right-column {
  transform-origin: top center;
  animation: loading 1.6s;
}
.top_container .right-column img {
  max-width: 800px;
}
@media screen and (max-width: 900px) {
  .top_container .right-column {
    display: none;
  }
}

.sp-column {
  display: none;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .sp-column {
    display: block;
  }
}

/* =====================================
   汎用コンテナ
===================================== */
.iwpro_container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 80px 0 50px 0;
}

/* =====================================
   概要画像構成
===================================== */
.image-row {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 60px 0;
}
.image-row .mv_c {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.image-row .mv_r {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image-row .mv_r img {
  max-height: 100%;
  max-width: 100%;
}
.image-row .mv_i {
  position: absolute;
  bottom: -90px;
  right: 5%;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.image-row .mv_i img {
  max-height: 100%;
  max-width: 100%;
}

/* =====================================
   概要セクション
===================================== */
.overview {
  background-color: #edf7ff;
  padding: 60px 20px;
  background-image: url(../img/solution/iwpro/background.png);
  background-repeat: no-repeat;
}
.overview p {
  font-size: 1.05em;
  line-height: 1.9;
  margin: 3.8em 0 2.5em;
}
.overview .overview-chart {
  margin-top: 90px;
  text-align: center;
}
.overview .overview-chart img {
  border-radius: 6px;
}

/* =====================================
   特徴セクション
===================================== */
.features {
  background: #ffffff;
  padding: 50px 0;
}
.features h2 {
  margin-bottom: 120px;
  text-align: center;
  font-size: 2em;
}
@media (max-width: 576px) {
  .features h2 {
    font-size: 1.5em;
    margin-bottom: 60px;
  }
}
.features h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: #0a529b;
  margin-bottom: 30px;
}
.features .feature {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.features .feature .feature-box {
  position: relative;
  background: #F0F8FF;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  overflow: visible;
}
@media (max-width: 992px) {
  .features .feature .feature-box {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 40px 30px;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .features .feature .feature-box {
    padding: 30px 20px;
  }
}
.features .feature .feature-box .feature-text {
  width: 70%;
  padding: 20px 0;
  font-size: 1em;
  line-height: 2;
}
@media (max-width: 992px) {
  .features .feature .feature-box .feature-text {
    width: 100%;
  }
}
.features .feature .feature-box .feature-number {
  font-family: serif;
  position: absolute;
  top: -70px;
  font-size: 5.5em;
  font-weight: bold;
  color: #d2e8ff;
  padding: 0 0.4em;
  z-index: 2;
}
@media (max-width: 992px) {
  .features .feature .feature-box .feature-number {
    top: -0.8em;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    font-size: 2.8em;
  }
}
@media (max-width: 576px) {
  .features .feature .feature-box .feature-number {
    font-size: 2.2em;
    top: -1em;
  }
}
.features .feature .feature-box .feature-icon {
  position: absolute;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .features .feature .feature-box .feature-icon {
    position: static;
    margin: 30px auto 0;
    border-radius: 20px;
    display: block;
    width: 90%;
    text-align: center;
  }
  .features .feature .feature-box .feature-icon img {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .features .feature .feature-box .feature-icon {
    padding: 10px 50px;
  }
  .features .feature .feature-box .feature-icon img {
    width: 120px;
  }
}
.features .feature:nth-child(even) .feature-box {
  flex-direction: row-reverse;
}
.features .feature:nth-child(odd) .feature-number {
  left: -10px;
}
.features .feature:nth-child(even) .feature-number {
  right: -10px;
}
.features .feature:nth-child(odd) .feature-icon {
  right: -100px;
}
.features .feature:nth-child(even) .feature-icon {
  left: -100px;
}

/* =====================================
   導入企業セクション
===================================== */
.clients {
  background-color: #F0F8FF;
  padding: 90px 0;
}
.clients .logo-grid p {
  padding: 50px 20px;
  text-align: center;
}
.clients .introduction_company_image02 {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.clients .introduction_company_image02 li {
  width: 150px;
  padding: 5px 10px;
  margin: 10px 5px;
  background-color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clients .introduction_company_image02 li {
    width: 100px;
  }
}/*# sourceMappingURL=option.css.map */