@charset "utf-8";

/* 右上固定画像のスタイル */
#fixed-image-right-top {
    position: fixed; /* 画面に固定 */
    top: 350px;       /* 画面上端からの位置（お好みで調整） */
    right: 80px;     /* 画面右端からの位置（お好みで調整） */
    z-index: 100000; /* 最前面に表示 */
}

#fixed-image-right-top img {
    width: 130px;    /* 画像の横幅（お好みで調整） */
    height: auto;   /* 縦横比を維持 */
    display: block; /* 不要な余白をなくすため */
}
/* 会社概要ver */
#fixed-image-right-top2 {
    position: fixed !important;
	bottom: 150px !important;
    right: 80px !important;
    z-index: 100000 !important;
}

#fixed-image-right-top2 img {
    width: 130px;    /* 画像の横幅（お好みで調整） */
    height: auto;   /* 縦横比を維持 */
    display: block; /* 不要な余白をなくすため */
}
/* --- レスポンシブ対応 --- */
/* スマートフォンなどの小さい画面では非表示にする */
@media screen and (max-width: 767px) {
    #fixed-image-right-top {
        display: none; /* 画面幅が767px以下のときに非表示 */
    }
	#fixed-image-right-top2 {
        display: none; /* 画面幅が767px以下のときに非表示 */
    }
}



