@charset "UTF-8";

.kaitori-section {
    padding-top: 80px;
    text-align: center;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    color: #268d86;
    padding: 40px 0;
}

.point-box {
    max-width: 880px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 10px;
  }
  
  .point-list {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .pcard {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }

  .card-content {
    flex-grow: 1;
  }
  
  .pcard img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .point-title {
    font-size: 18px;
    font-weight: 400;
    background-color: rgba(108, 187, 248, 0.274);
    padding: 5px 0;
  }

  .point-title img {
    width: 40px;
  }
  
  .point-text {
    font-size: 14px;
    color: #666666;
    padding: 0 20px;
    text-align: left;
    max-width: 250px;
  }

.kaitori-flow {
    max-width: 920px;
    margin: 0 auto;
}  

.flow-title {
    background-color: #5cbaac;
    color: #fff;
    font-size: 2rem;
    padding: 10px 30px;
}

.step-box {
    padding-top: 40px;
    padding-bottom: 40px;
}

.step-title {
    font-size: 1.25rem;
    text-align: left;
    color: #268d86;
    font-weight: bold;
    border-bottom: 2px solid #268d86;
}

.step-flexbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    
}

.flex-box1 {
    width: 60%;
}

.flex-box2 img {
    padding-top: 20px;
}

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

.ktell-btn {
    max-width: 320px;
    margin: 20px auto 10px;
    background-color: #38a078;
   
}
.step-btn {
    max-width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.other-info {
    margin-top: 20px;
    border: 1px solid #268d86;
    background-color:#eefaf8;
    padding: 20px 10px;
    border-radius: 16px;
}

.other-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #268d86;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 10px;
}

.other-title::before {
    display: inline-block;
    font-family: "Font Awesome 5 free";
    content: "\f0f3";
    font-size: 1.2rem;
    margin-right: 5px;
}

.other-text {
    font-size: 1.0rem;
    text-align: left;
}

.att-box {
    margin-top: 40px;
    border: 2px solid #f51100;
    background-color:#FDFDA9;
    padding: 20px 40px;
}

.att-title {
    font-size: 1.25rem;
    font-weight: bold;
    color:#f51100 ;
    padding-bottom: 10px;
}

.att-title::before {
    display: inline-block;
    font-family: "Font Awesome 5 free";
    content:"\f071";
    color: #f51100;
    margin-right: 5px;
}

.att-lists {
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto;
}

.att-list {
    font-weight: bold;
}

.att-list::before {
    display: inline-block;
    font-family: "Font Awesome 5 free";
    content: "\f057";
    color: #f51100;
    margin-right: 5px;
}

@media (max-width: 767px) {

    .section-subtitle {
        padding-bottom: 0;
    }
    .point-box  {
      display: block;
    }
    .pcard {
        margin: 0 auto;
        max-width: 250px;
    }
    .point-title {
       position: static;
       width: 100%;
    }
    .point-text {
        text-align: left;
        margin: 0 auto;
    }
    .step-flexbox {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 100%;
    }
    .step-title {
        margin-bottom: 20px;
    }
    .flex-box1,
    .flex-box2 {
       width: 100%;
    }
  }


