.sentence {
    font-family: "Zen Antique Soft";
    font-size: 17px;
    text-align: center;
    line-height: 150%;
    margin-top: 20px; /* 上にスペースを追加 */
    color: #48442a;
}
.sentence_1 {
    font-family: "Zen Antique Soft";
    font-size: 17px;
    text-align: center;
    line-height: 200%;
    color: #48442a;
}
.bold-text {
    font-family: "Zen Maru Gothic";
    font-size: 19px;
    font-weight: 900;
}
h1 {
    font-family: "Noto Sans JP";
    font-size: 30px;
    text-align: center;
    line-height: 200%;
    margin-top: 20px; /* 上にスペースを追加 */
    color: #48442a;
}
h2{
    font-family: "Noto Sans JP";
    font-size: 22px;
    text-align: center;
    line-height: 100%;
    color: #48442a;
}
.button-container {
    display: flex; /* 横並びにするための設定 */
    justify-content: center; /* ボタンを水平方向に中央揃え */
    gap: 0.5em; /* ボタン間の間隔 */
    margin-top: 55px; /* 上にスペースを追加 */
}
.button-29 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    padding: .9em 1em;
    overflow: hidden;
    border: 1px solid #80794e;
    border-radius: 5px;
    background-color: #252525;
    color: #ffffff;
    /* color: #80794e; */
    font-size: 1em;
}

.button-29:hover {
    background-color: transparent;
    /* color: #534e4e; */
    color: #ffffff;
}

.button-29::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #80794e;
    content: '';
    transition: width .3s ease;
}

.button-29:hover::before {
    width: 100%;
}

.button-29::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: '';
}

.button-29:hover::after {
    border-color: #fff;
}