/* 固定ボタンレイアウトOUTINのスタイル */
.fixed-buttons {
    position: fixed;
    bottom: 150px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.8s;
}

.fixed-buttons a {

	
	
    opacity: 0.85; /* 55％不透明度(＝45％透過) */
    display: flex;  /* Flexboxを有効に */
    align-items: center;  /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    width: 110px;
    height: 110px;
    background-color: #005d39;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
	
}



.show {
    opacity: 1;
}

