.centering,.kv .txt-wrap,.centering_fix{position:absolute;z-index:1;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-align:center}.centeringY{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.centeringX{position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.centering_fix{position:fixed}.centering_fix{position:fixed;z-index:9999;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.reverse{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.kv{position:relative;border-bottom:3px solid #474235}.kv .txt-wrap .txt .title{background-color:#fff;padding:.5rem;line-height:1}.t-news{position:absolute;bottom:0;left:0;width:100%;margin-bottom:3rem}.t-news-wrap .title{border-bottom:1px solid #32d228}.t-news-wrap .title h2{text-transform:capitalize;display:inline-block;font-size:.9rem;background-color:#32d228;margin-bottom:-1px;margin-left:1rem;padding:.25rem .5rem;color:#005037}.t-news-list{background-color:rgba(0,0,0,.5);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.25rem 1rem;font-size:.9rem}.t-news-list .item{-ms-flex-preferred-size:70%;flex-basis:70%}.t-news-list .news{margin-bottom:0}.t-news-list .news .txt{color:#fff;margin-bottom:0;font-weight:normal}.t-news-list .news .txt a{color:#fff;font-size:.9rem}.t-news-list .news .txt a .date{margin-right:1rem}.t-news-list .to-archive{margin:0;color:#fff}.t-news-list .to-archive a{color:#fff}.top-recruit{text-align:center;margin:2rem auto}.top-recruit a{display:inline-block;background-color:#fbb03b;padding:1rem 5rem;border-radius:8px;color:#fff;font-size:1.25rem;font-weight:bold;border-bottom:4px solid #bb7900}.t-service .movie{margin:0 0 72px;position:relative;z-index:1}.t-service .movie::before{content:"";padding-top:56.25%}.t-service .movie video{display:block;width:100%;height:100%;position:absolute;top:0;z-index:1;margin:auto}@media screen and (max-width: 959px){.t-news{margin-bottom:0rem}.t-news-wrap{padding:0}.kv .txt-wrap{top:3rem;width:100%}.kv .txt-wrap .txt{width:15rem;max-width:90%;margin:0 auto}.kv .txt-wrap .txt .title{margin-bottom:0}.t-news-list .item{-ms-flex-preferred-size:78%;flex-basis:78%;overflow:hidden}.t-news-list .news .txt a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}

.button_area{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
}
.button_area > button{
    background: none; /* 背景なし */
    border: none; /* ボーダーなし */
    color: inherit; /* 親要素の色を継承 */
    font: inherit; /* 親要素のフォントを継承 */
    outline: none; /* フォーカス時のアウトラインを消す */
    appearance: none;
    color: #32d228;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.button_area > button:focus {
    outline: none; /* フォーカス時のアウトラインを消す */
}
.button_area > button:hover{
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.thumbnail{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}