.important-hero{
    height:400px;
    background:url('../img/information.png') no-repeat;
    position:relative;
    margin-top: 50px;
    background-position: center -15%;
    background-size:cover;
}

.important-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:40px;
    top: 266px;
}

.important-title{
    background:#fff;
    display:inline-block;
    padding:20px 40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.important-title .jp{
    font-size:36px;
    color:#e60023;
    font-weight:700;
    margin-right:15px;
}

.important-title .en{
    font-size:28px;
    color:#555;
}


/* ================= PAYMENT ================= */

.payment{
    padding:80px 60px;
}

/* title */
.payment-title{
    text-align:center;
    font-size:34px;
    color:#e60023;
    margin-bottom:20px;
}

/* list */
.payment-list{
    max-width:900px;
    margin:0 auto 30px;
    line-height:2;
    font-size:16px;
}

/* sub */
.payment-sub{
    color:#e60023;
    font-size:22px;
    margin:20px 0;
}

/* table */
.payment-table{
    max-width:1000px;
    margin:0 auto;
}

.payment-table table{
    width:100%;
    border-collapse:collapse;
}

.payment-table td{
    padding:15px;
    border:1px solid #ccc;
    background:#fff;
    vertical-align:top;
}

/* kiri label */
.payment-table td:first-child{
    width:35%;
    font-weight:bold;
    background:#f2f2f2;
}

/* english kecil */
.payment-table span{
    display:block;
    font-size:12px;
    color:#777;
}

/* ================= PAYMENT DETAIL ================= */

.payment-detail{
    padding:80px 60px;
}

.paydetail-title{
    color:#e60023;
    font-size:32px;
    margin-bottom:30px;
}

/* wrapper */
.paydetail-table{
    max-width:1100px;
    margin:0 auto;
}

/* table */
.paydetail-table table{
    width:100%;
    border-collapse:collapse;
}

.paydetail-table th{
    background:#5fa89e;
    color:#fff;
    padding:12px;
    text-align:center;
}

.paydetail-table td{
    padding:12px;
    border:1px solid #ccc;
    background:#fff;
    vertical-align:top;
    font-size:14px;
}

/* subtotal */
.sum td{
    background:#eaf5f2;
    font-weight:bold;
}

/* total */
.grand td{
    background:#5fa89e;
    color:#fff;
    font-weight:bold;
}

/* tax */
.tax{
    text-align:right;
    margin-top:10px;
}

/* ================= CANCEL ================= */

.cancel{
    padding:80px 60px;
}

.cancel-title{
    text-align:center;
    font-size:34px;
    color:#e60023;
    margin-bottom:20px;
}

.cancel-desc{
    max-width:900px;
    margin:0 auto 20px;
    line-height:1.8;
}

.cancel-sub{
    color:#e60023;
    margin:30px 0 15px;
}

/* box tiap case */
.cancel-box{
    max-width:900px;
    margin:20px auto;
}

/* table */
.cancel-box table{
    width:100%;
    border-collapse:collapse;
    margin:10px 0;
}

.cancel-box th{
    background:#bfe0dc;
    padding:10px;
}

.cancel-box td{
    padding:10px;
    border:1px solid #ccc;
    text-align:center;
    background:#fff;
}

/* ================= ARUBAITO ================= */

.arubaito{
    padding:80px 60px;
}

.arubaito-title{
    text-align:center;
    font-size:34px;
    color:#e60023;
    margin-bottom:20px;
}

.arubaito-sub{
    color:#e60023;
    margin:30px 0 15px;
}

/* text */
.arubaito-text{
    max-width:900px;
    margin:0 auto;
    line-height:1.9;
    font-size:15px;
}

/* flow steps */
.flow-steps{
    max-width:700px;
    margin:40px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

/* step bubble */
.step{
    background:#a8d36b;
    padding:12px 25px;
    border-radius:30px;
    text-align:center;
    font-size:14px;
    max-width:100%;
    position:relative;
}

/* garis antar step */
.step::after{
    content:"";
    position:absolute;
    width:2px;
    height:20px;
    background:#555;
    left:50%;
    transform:translateX(-50%);
    bottom:-20px;
}

/* last step ga ada garis */
.step:last-child::after{
    display:none;
}