/* スクロールさせるための長いコンテンツのスタイル */
.content {
    padding: 10px;
    background-color: #eccccc; /* ←これ */
}

/* ---------------------------------- */
/* 固定ボタンのCSS (重要) */
/* ---------------------------------- */
.fixed-button-container {
    /* 固定表示の設定 */
    position: fixed;
    bottom: 0;
    z-index: 100;
    
    /* PCでの幅制限と中央寄せ */
    width: 100%; 
    max-width: 1000px;
    left: 50%;
    transform: translateX(-50%);

    /* 横並びのためのFlexbox設定 */
    display: flex;
    padding: 10px;

    /* ボタンエリアの背景色（薄いエンジ色） */
    background-color: #f7e6e6; /* 変更なし。コンテンツと統一 */
    
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.fixed-button-container a {
    /* ボタン自体のFlex設定: 縦方向の中央揃えを実現 */
    flex: 1;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    padding: 10px 10px; 
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    border-radius: 5px;
    min-height: 60px;
}

/* 「通話料無料」のスタイル */
.call-free {
    font-size: 10px;
    font-weight: normal;
    background-color: #ffffff; 
    color: #007bff; 
    border: 1px solid #007bff; 
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 3px;
    display: inline-block;
}

/* 各行の文言のスタイル */
.fixed-button-container a span:not(.call-free) {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.fixed-button-container a small {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.2;
    font-weight: normal;
}

/* 個別ボタンの背景色 */
.fixed-button-left {
    background-color: #007bff; /* 青系 */
}
.fixed-button-right {
    background-color: #28a745; /* 緑系 */
}