/* ここからパンくず */
.breadcrumb {
    font-size: 12px;
    color: #555;
    margin: 20px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    content: "";
    /* 最後は「>」なし */
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ここまでパンくず */

/* ここからお問い合わせ */

.contact {
    position: relative;
    background-image: url(/img/flame-deco/cork.jpg);
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    padding: 100px 0;

}

.contact_info {
    text-align: center;
    background-color: #fff;
    max-width: 460px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact_name {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: #9FD2D6;
    border-radius: 100px 100px 0 0;
    width: 200px;
    height: 100px;
    line-height: 1.4;
    padding: 15px;
}

.contact_qr {
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
}

.qr_body {
    display: flex;
    /* flex指定が必要 */
    justify-content: center;
    /* 横方向中央 */
    align-items: center;
    /* 縦方向中央（必要に応じて） */
    margin: 0 auto;
}


/* ここまでお問い合わせ */