/* スペック下ボタン */
.nerigoma-btn-container {
    text-align: center;
    margin: 0 auto 60px !important;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #333;
    width: 340px;
    padding: 0.5em;
    background-color: #dcd5c4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 初期状態の軽い影 */
    cursor: pointer;
}

/* マウスホバー時の動き (主にPC向け) */
.nerigoma-btn-container:hover {
    transform: translateY(-2px); /* 少し上に浮く */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* 影を濃く・大きくする */
    background-color: #e3ddcf; /* 背景色を少し明るく */
}

/* クリック/タップ時の動き (押し込む表現) */
.nerigoma-btn-container:active {
    transform: translateY(1px); /* 元の位置より少し下がる */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 影を小さくする */
    background-color: #d1c8b4; /* 背景色を少し暗く */
}

/* 矢印アイコンのアニメーション (ホバー時に少し右へ動く) */
.nerigoma-btn-container:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon {
    transition: transform 0.2s ease;
}
.nerigoma-btn-container a{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: inherit;
    width: 100%; /* aタグのクリック範囲を広げる */
    height: 100%;
}