@charset "utf-8";
/*===========================
add
===========================*/
/*.problemSolution{
    padding:100px 20px;
    background:#f5f7fa;
}

.problemSolution .inner{
    max-width:1100px;
    margin:auto;
}

.sectionTitle{
    text-align:center;
    margin-bottom:60px;
}

.sectionTitle span{
    display:inline-block;
    color:#1f5fa8;
    font-weight:bold;
    letter-spacing:.2em;
    margin-bottom:10px;
}*/
.sectionTitle h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.sectionTitle p {
  color: #666;
}
.problemList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.problemList li {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 22px 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  font-weight: bold;
  line-height: 1.8;
  transition: .3s;
}
/*.problemList li:hover{
    transform:translateY(-6px);
}
*/
.problemList li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #597694;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.arrowWrap {
  text-align: center;
  margin: 55px 0;
}
.arrowWrap span {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f5fa8;
  color: #fff;
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 10px 20px rgba(31, 95, 168, .25);
}
.solutionBox {
  position: relative;
  background: linear-gradient(135deg, #1f5fa8, #3d84d6);
  color: #fff;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(31, 95, 168, .25);
}
.solutionLabel {
  display: inline-block;
  background: #fff;
  color: #1f5fa8;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .15em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 25px;
}
.solutionBox h3 {
  font-size: 38px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.solutionBox strong {
  color: #ffe066;
  font-size: 48px;
}
.solutionBox p {
  font-size: 18px;
  line-height: 2;
  opacity: .95;
}
.btnFeature {
  display: inline-block;
  margin-top: 35px;
  padding: 18px 45px;
  background: #fff;
  color: #1f5fa8;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}
.btnFeature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}
@media(max-width:768px) {
  .problemSolution {
    padding: 70px 15px;
  }
  .sectionTitle h2 {
    font-size: 28px;
  }
  .problemList {
    grid-template-columns: 1fr;
  }
  .solutionBox {
    padding: 40px 25px;
  }
  .solutionBox h3 {
    font-size: 28px;
  }
  .solutionBox strong {
    font-size: 34px;
  }
}
/*.featureArea{
    padding:100px 20px;
    background:#fff;
}

.featureInner{
    max-width:1100px;
    margin:auto;
}

.featureHead{
    text-align:center;
    margin-bottom:70px;
}

.featureHead span{
    display:inline-block;
    color:#1f5fa8;
    font-weight:bold;
    letter-spacing:.15em;
    margin-bottom:10px;
}

.featureHead h2{
    font-size:42px;
    line-height:1.5;
    margin-bottom:25px;
}

.featureHead strong{
    color:#1f5fa8;
}*/
.featureHead p {
  max-width: 850px;
  margin: auto;
  line-height: 2;
  color: #555;
}
.featureGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.featureCard {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #e8eef5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: .3s;
}
/*.featureCard:hover{
    transform:translateY(-8px);
}*/
.featureCard .icon {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eef6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.featureCard h3 {
  color: #1f5fa8;
  /*margin-bottom:15px;*/
  font-size: 22px;
}
.featureCard h3:after {
  height: 0;
}
.featureCard p {
  color: #666;
  line-height: 1.8;
}
.otherUse {
  margin-top: 70px;
  background: linear-gradient(135deg, #1f5fa8, #397fd0);
  color: #fff;
  border-radius: 20px;
  padding: 45px;
  text-align: center;
}
.otherUse h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.otherUse p {
  line-height: 2;
  font-size: 18px;
}
.otherUse strong {
  color: #ffe066;
}
@media(max-width:768px) {
  .featureHead h2 {
    font-size: 30px;
  }
  .otherUse {
    padding: 30px 20px;
  }
  .otherUse h3 {
    font-size: 24px;
  }
}


/*.sceneSection{
    padding:100px 20px;
    background:#f6f9fc;
}

.sceneInner{
    max-width:1200px;
    margin:auto;
}

.sceneTitle{
    text-align:center;
    margin-bottom:70px;
}

.sceneTitle span{
    display:inline-block;
    color:#1f5fa8;
    font-weight:bold;
    letter-spacing:.15em;
    margin-bottom:10px;
}

.sceneTitle h2{
    font-size:42px;
    margin-bottom:15px;
}

.sceneTitle p{
    color:#666;
}*/

.sceneWrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.sceneBox{
    flex:1;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.sceneHead{
    padding:25px;
    text-align:center;
}

.sceneHead span{
    display:inline-block;
    padding:6px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    letter-spacing:.15em;
}

.before .sceneHead{
    background:#fff2f2;
}

.before .sceneHead span{
    background:#d32f2f;
    color:#fff;
}

.after .sceneHead{
    background:#eef8f1;
}

.after .sceneHead span{
    background:#2e7d32;
    color:#fff;
}

.sceneHead h3{
    margin-top:15px;
    font-size:30px;
}

.sceneBox ul{
    list-style:none;
    padding:35px;
    margin:0;
}

.sceneBox li{
    position:relative;
    padding-left:42px;
    margin-bottom:25px;
    line-height:1.8;
    font-weight:bold;
}

.before li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#d32f2f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.after li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#43a047;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.sceneArrow{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
}

.circle{
    width:140px;
    height:140px;
    border-radius:50%;
    background:linear-gradient(135deg,#1f5fa8,#3b83d7);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
    box-shadow:0 15px 35px rgba(31,95,168,.3);
}

.sceneArrow span{
    font-size:50px;
    color:#1f5fa8;
}

@media(max-width:900px){

.sceneWrap{
    flex-direction:column;
}

.sceneArrow{
    transform:rotate(90deg);
    margin:20px 0;
}

.circle{
    transform:rotate(-90deg);
}

.sceneTitle h2{
    font-size:32px;
}

}