/* テーマの右側固定ボタンと途中の小型SNS欄を非表示 */
.jcbo-fixed-contact,
.jcbo-social-grid {
    display: none !important;
}

.jcbo-footer-contact {
    background: #080b10;
    color: #fff;
    width: 100%;
    padding: 58px 20px 64px;
    box-sizing: border-box;
    border-top: 5px solid #c69a45;
}
.jcbo-footer-contact__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.jcbo-footer-contact__head {
    text-align: center;
    margin-bottom: 38px;
}
.jcbo-footer-contact__company {
    margin: 0 0 8px;
    font-size: 17px;
    letter-spacing: .12em;
    color: #d8b66b;
    font-weight: 700;
}
.jcbo-footer-contact h2 {
    color: #fff;
    font-size: clamp(26px, 3.3vw, 42px);
    line-height: 1.3;
    margin: 0 0 22px;
}
.jcbo-footer-contact__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    font-size: 18px;
}
.jcbo-footer-contact__details a,
.jcbo-footer-contact__details span {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.jcbo-footer-contact__details a:hover { color: #f0cf82; }
.jcbo-footer-contact__qr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}
.jcbo-footer-contact__qr {
    background: #fff;
    color: #111827;
    border-radius: 16px;
    padding: 24px 18px 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
a.jcbo-footer-contact__qr:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,.38);
}
.jcbo-footer-contact__qr strong {
    font-size: 25px;
    margin-bottom: 16px;
}
.jcbo-footer-contact__qr img,
.jcbo-footer-contact__placeholder {
    width: min(240px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    background: #fff;
    border: 1px solid #d7dce3;
    padding: 8px;
    box-sizing: border-box;
}
.jcbo-footer-contact__placeholder {
    display: grid;
    place-items: center;
    color: #657080;
    background: #f3f5f7;
    line-height: 1.7;
}
.jcbo-footer-contact__qr span {
    margin-top: 14px;
    font-weight: 700;
    font-size: 15px;
}
@media (max-width: 760px) {
    .jcbo-footer-contact { padding: 42px 15px 46px; }
    .jcbo-footer-contact__details { flex-direction: column; gap: 8px; }
    .jcbo-footer-contact__qr-grid { grid-template-columns: 1fr; gap: 20px; }
    .jcbo-footer-contact__qr img,
    .jcbo-footer-contact__placeholder { width: min(280px, 90vw); }
}
