@charset "utf-8";
/*===========================
add
===========================*/
.reasonWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.reasonCard {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .3s;
}
/*.reasonCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}*/
.reasonIcon {
  flex-shrink: 0;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f5fa8, #2ea7e0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasonIcon i {
  font-size: 42px;
}
.reasonContent {
  flex: 1;
}
.reasonContent h3 {
    color: #173d73;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.reasonContent h3:after {
	height: 0;
}
.reasonContent p {
  line-height: 2;
  color: #555;
}
/* 最後だけ中央 */
.reasonCard:last-child {
  grid-column: 1 / 3;
  max-width: 800px;
  margin: 0 auto;
}
/* SP */
@media(max-width:768px) {
  .reasonSec {
    padding: 60px 0;
  }
  .secTitle {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  .reasonWrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reasonCard {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .reasonCard:last-child {
    grid-column: auto;
    max-width: none;
  }
  .reasonIcon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }
  .reasonIcon i {
    font-size: 40px;
  }
  .reasonContent h3 {
    font-size: 1.1rem;
  }
}

.fa-lg {
    font-size: 1.15em;
    line-height: .05em;
    vertical-align: -.075em;
}


.paymentSection{
    padding:80px 20px;
    background:#f7f9fc;
}

.paymentInner{
    max-width:900px;
    margin:auto;
}

.secTitle{
    text-align:center;
    font-size:34px;
    margin-bottom:50px;
    color:#333;
    line-height:1.5;
}

.secTitle span{
    display:block;
    color:#4b9ed6;
    font-size:14px;
    letter-spacing:.2em;
    font-weight:bold;
    margin-bottom:10px;
}

.paymentMethod{
    display:flex;
    gap:25px;
    margin-bottom:45px;
}

.methodCard{
    flex:1;
    background:#fff;
    border-radius:15px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.methodCard:hover{
    transform:translateY(-8px);
}

.methodIcon{
    font-size:48px;
    margin-bottom:15px;
}

.methodCard h3{
    font-size:22px;
    color:#333;
}

.paymentInfo{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.infoBox{
    background:#fff;
    border-left:6px solid #4b9ed6;
    border-radius:12px;
    padding:28px 30px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.infoBox h3{
    font-size:22px;
    margin-bottom:15px;
    color:#333;
}

.infoBox p{
    margin:0;
    line-height:2;
    color:#555;
}

.infoBox strong{
    color:#e53935;
}

.notice{
    border-left-color:#f6a623;
}

.notice ul{
    margin:0;
    padding-left:20px;
}

.notice li{
    line-height:2;
    color:#555;
    margin-bottom:8px;
}

.notice li:last-child{
    margin-bottom:0;
}

@media (max-width:768px){

    .paymentMethod{
        flex-direction:column;
    }

    .secTitle{
        font-size:28px;
    }

    .methodCard{
        padding:30px 20px;
    }

    .infoBox{
        padding:25px 20px;
    }

}