.elementor-4463 .elementor-element.elementor-element-14dcb7f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-4463 .elementor-element.elementor-element-6b3924c > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;border-style:solid;border-width:1px 1px 1px 1px;border-color:var( --e-global-color-3c8a1a1 );}.elementor-4463 .elementor-element.elementor-element-4ec0f77 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for container, class: .elementor-element-14dcb7f *//* リセットとベーススタイル */



.button-container {
    /*margin: 0px 0;*/
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.description {
    color: #666;
    font-size: 14px;
    margin-top: 30px;
}

/* お問い合わせボタンのベーススタイル */
.contact-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 白バージョン（元のスタイル） */
.contact-button.white-version {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

/* 黒バージョン（反転スタイル） */
.contact-button.black-version {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}

.contact-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* transform: translateY(-2px); */
}

.button-text {
    flex: 1;
    text-align: left;
}

/* 右側の◯のベーススタイル */
.button-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* 白バージョンの◯ */
.white-version .button-circle {
    border: 2px solid #000;
}

/* 黒バージョンの◯ */
.black-version .button-circle {
    border: 2px solid #fff;
}

/* ホバー時の◯の効果 */
.contact-button:hover .button-circle {
    transform: scale(1.3);
}

/* 白バージョンのホバー時の◯のシャドウ */
.white-version:hover .button-circle {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* 黒バージョンのホバー時の◯のシャドウ */
.black-version:hover .button-circle {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}/* End custom CSS */