/* Surgery Count Section */
.surgery-count {
    padding: 100px 0;
    background: #f8f9fa;
}

.surgery-count .inner {
    max-width: 1288px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.surgery-count .bigtit {
    font-size: 5.25rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.surgery-count .desc {
    font-size: 1.65rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

.surgery-count .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.surgery-count .list li {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.surgery-count .list li:hover {
    transform: translateY(-10px);
}

.surgery-count .list li .sub {
    display: block;
    font-size: 1.35rem;
    color: #999;
    margin-bottom: 15px;
}

.surgery-count .list li .tit {
    display: block;
    font-size: 1.95rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.surgery-count .list li .number {
    display: block;
    font-size: 3.75rem;
    font-weight: 700;
    color: #467cfa;
}

/* Surgery Action Section */
.surgery-action {
    padding: 100px 0;
    background: #fff;
}

.surgery-action .inner {
    max-width: 1288px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.surgery-action .smalltit {
    font-size: 1.5rem;
    color: #467cfa;
    font-weight: 600;
    margin-bottom: 20px;
}

.surgery-action .bigtit {
    font-size: 4.5rem;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.4;
    margin-bottom: 60px;
}

.surgery-action .color-gold {
    color: #467cfa;
}

.surgery-action .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.surgery-action .list li .core {
    background: #f8f9fa;
    padding: 60px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.surgery-action .list li .core:hover {
    background: #467cfa;
    transform: translateY(-10px);
}

.surgery-action .list li .core h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.surgery-action .list li .core:hover h3 {
    color: #fff;
}

.surgery-action .list li .core em {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #467cfa;
    font-style: normal;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.surgery-action .list li .core:hover em {
    color: #fff;
}

.surgery-action .list li .core .core-hover {
    font-size: 1.425rem;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s;
}

.surgery-action .list li .core:hover .core-hover {
    color: #fff;
}

/* Surgery Col Section */
.surgery-col {
    padding: 100px 0;
    background: #fff;
}

.surgery-col .colbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1288px;
    margin: 0 auto 80px;
    padding: 0 20px;
    align-items: center;
}

.surgery-col .colbox:last-child {
    margin-bottom: 0;
}

.surgery-col .colbox.reverse {
    direction: rtl;
}

.surgery-col .colbox.reverse > * {
    direction: ltr;
}

.surgery-col .textbox .txt .tit {
    font-size: 3.75rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.surgery-col .textbox .txt .desc {
    font-size: 1.65rem;
    line-height: 1.8;
    color: #666;
}

.surgery-col .textbox .txt .desc strong.color-gold {
    color: #467cfa;
    font-weight: 600;
}

.surgery-col .imgbox img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .surgery-count .bigtit {
        font-size: 3.75rem;
    }

    .surgery-count .desc {
        font-size: 1.5rem;
    }

    .surgery-count .list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .surgery-action .bigtit {
        font-size: 3rem;
    }

    .surgery-action .list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .surgery-col .colbox {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .surgery-col .textbox .txt .tit {
        font-size: 3rem;
    }
}

@media screen and (max-width: 428px) {
    .surgery-count {
        padding: 60px 0;
    }

    .surgery-count .bigtit {
        font-size: 3rem;
    }

    .surgery-action {
        padding: 60px 0;
    }

    .surgery-action .list {
        grid-template-columns: 1fr;
    }

    .surgery-col {
        padding: 60px 0;
    }

    .surgery-col .colbox {
        margin-bottom: 60px;
    }

    .surgery-col .textbox .txt .tit {
        font-size: 2.25rem;
    }
}

.m-block {
    display: none;
}

@media screen and (max-width: 768px) {
    .m-block {
        display: inline;
    }

    .m-none {
        display: none !important;
    }
}
