/*---------------------------------------
ボタン
---------------------------------------*/
.button-container {
    width: 100%;
    display: flex;
    gap: 20px;
}


/* ボタン共通 */
.base-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    width: 370px;
    height: 115px;
    font-size:18px;
    line-height: 1.4;
    margin: 20px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* シルエットアイコン画像 */
.icon {
    position:absolute;
    left: 20px;
    width: 30px;
    height: auto;
}

/* 矢印アイコン */
.arrow-icon {
    position: absolute;
    right: 30px;
    font-size: 15px;
}

.button-container .button-order {
    background-color: #B40B08;
    color: white;
}

.button-container .button-order-guide {
    background-color: #E09C09;
    color: white;
}

.button-order:hover,
.button-order-guide:hover {
    opacity: 0.5;
}
