/* Contact CTA Shortcode Styles */
.contact-cta-box {
    background: #9E8D69;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-cta-box .pc_none {
    display: none;
}

/* Phone CTA Styles */
.phone-cta .cta-title {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}

.phone-cta .cta-subtitle,
.phone-cta .cta-description {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-size: 14px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.phone-cta .cta-description {
    margin-bottom: 25px;
}

.phone-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.phone-button {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 12px 70px;
    border: 2px solid white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-button:hover {
    background: white;
    color: #8B7355 !important;
    text-decoration: none;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    font-size: 24px;
}

.phone-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.phone-number {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif;
    font-size: 32px;
    margin-bottom: 4px;
    line-height: 1;
}

.phone-number i {
    margin-right: 8px;
    font-size: 0.8em;
}

.phone-hours {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif;
    font-size: 14px;
    opacity: 0.9;
}

/* Form CTA Styles */
.form-cta {
    padding: 20px 30px;
}

.form-button {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-button:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Below-the-box inquiry link */
.contact-cta-below {
    text-align: center;
    margin: 14px 0 0;
}

.contact-cta-below .form-below-link,
.contact-cta-below .form-below-url {
    color: #2B69C7; /* clinic link blue */
    text-decoration: underline;
}

.contact-cta-below .form-below-link {
    display: inline-block;
    margin-bottom: 6px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG Mincho E", "MS PMincho", serif; /* 明朝 for link text */
}

.contact-cta-below a:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-cta-box {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .phone-cta .cta-title {
        font-size: 18px;
    }
    
    .phone-cta .cta-subtitle,
    .phone-cta .cta-description {
        font-size: 15px;
        text-align: left;
    }
    
    .phone-button {
        padding: 10px 25px;
        font-size: 15px;
        width: 100%;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .phone-hours {
        font-size: 11px;
    }
    
    .phone-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .phone-details {
        align-items: center;
        text-align: center;
    }

    .contact-cta-below {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .contact-cta-box {
        padding: 20px 15px;
    }

    .contact-cta-box .pc_none {
        display: block;
    }
    
    .phone-cta .cta-title {
        font-size: 20px;
    }

    .phone-section {
        flex-direction: column;
    }
    
    .phone-number {
        font-size: 27px;
    }
}

.post-cta { margin: 30px 0; }