@charset "utf-8";

/* BCP Page Specific Styles
--------------------------------------------------------------------------------*/
.summary h1 {
    text-align: center;
    font-size: 24px;
    border-bottom: 2px solid #005A9C;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.summary h2 {
    font-size: 20px;
    color: #005A9C;
    border-left: 5px solid #005A9C;
    padding-left: 10px;
    margin: 30px 0 15px;
}

.summary h3 {
    font-size: 18px;
    color: #333;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
    margin: 25px 0 15px;
}


.s_frame {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border: 1px solid #eee;
    padding: 5px;
    box-sizing: border-box;
}

.s_frame img {
    width: 100%;
    height: auto;
    background-color: #f0f0f0; /* Placeholder color */
    min-height: 250px; /* Placeholder height */
}


/* Plan Table Styles */
.planTable {
    margin: 0 0 20px 0;
    overflow-x: auto;
}

.planTable table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.planTable th,
.planTable td {
    border: 1px solid #ccc;
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
}

.planTable th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}

.planTable td:first-child {
    width: 25%;
}
/* .planTable td:last-child {
    text-align: center; 
     width: 20%; 
}*/

.planTable strong {
    color: #005A9C;
}

/* Notes List */
.bcp-notes {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.bcp-notes li {
    margin-bottom: 8px;
}

/* Flow List */
.flow-list {
    list-style-type: none;
    padding-left: 0;
    counter-reset: flow-counter;
}

.flow-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.flow-list li::before {
    counter-increment: flow-counter;
    content: counter(flow-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: #005A9C;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}

/* FAQ List */
.faq-list dt {
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.faq-list dt::before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: #005A9C;
}

.faq-list dd {
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.faq-list dd::before {
    content: "A.";
    position: absolute;
    left: 0;
    color: #E53935;
}

/* Button */
.btn_wrap {
    text-align: center;
    margin: 20px 0;
}

.btn-square {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-square:hover {
    background-color: #e68a00;
}
.phone-mb{
	display:none;
}
@media screen and (max-width: 900px) {
    .summary  {
        width: 98%;
        margin: 0 auto;
    }
    .planTable td, .planTable th {
        font-size: 13px;
        padding: 8px 5px;
    }
    .phone-pc{
        display:none;
    }
    .phone-mb{
        display:block;
    }
    
}
