@charset "utf-8";



/*slide-biz62-sppcsameimageスライドショー（cssでのbackground使用）tp_biz62/spでもPCでも全く同じ画像の見えかた。最終的にすべてこれに。
Ｐｃでは下まで。ＳＰでおおきい。2000X1600の画像

ここでは、10:8の画像比率（8÷10=0.8）を読み込む指定を行なっています。
異なる画像比率にしたい場合、.mainimgのpadding-topの数字を変更します。2:1にするなら50%です。
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
#mainimg-108 {
	width: 100%;
	height: 0;
	padding-top: 80%;/*８０*/z-index: -10;
    position: fixed;	/*z-index: -10;relativeスクロールしても固定表示させる指定*/
	color: #000;text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    background: url('https://creme-cremes.com/components/slide-images/sweets-top1.png') no-repeat center center / cover;	/*１枚目の背景画像の読み込み*/
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*スライドショー
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg-108 {margin-top: 90px;	
}}







/*３セットのスライドショーを囲むそれぞれのブロック*/
#mainimg-108 div div {
	width: 45vw;	/*幅。画面の45%。*/	
}
/*３枚の画像の共通設定*/
.slide-108 {
	width: 100%;height: 100%;
	position: absolute;right: 0px;top: 0px;
	display: flex;
	align-items: center;
	padding: 0 5vw;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。*/
}

/*１枚目画像*/
.slide1-108 {
	background: url('https://creme-cremes.com/components/slide-images/sweets-top1.png') no-repeat center center / cover;	/*１枚目の背景画像の読み込み*/
}

/*２枚目画像*/
.slide2-108 {
	background: url('https://creme-cremes.com/components/images/logo-sweets.png') no-repeat center center / cover;	/*２枚目の背景画像の読み込み*/
	justify-content: flex-end;	/*テキストブロックを右寄せ*/
}

/*３枚目画像*/
.slide3-108 {
	background: url('../images/3.png') no-repeat center center / cover;	/*３枚目の背景画像の読み込み*/
	justify-content: center;	/*テキストブロックを中央に*/
	text-align: center;			/*テキストをセンタリング*/
}

/*大きなテキスト*/
#mainimg-108 h1 {
	margin: 0;padding: 0;
	font-size: 6vw;		/*文字サイズ。100vwは画面幅100%のことです。*/
	line-height: 1.5;	/*行間を少し狭く*/
	font-weight: 500;	/*文字の太さを少し太く*/
}

/*小さなテキスト*/
#mainimg-108 p {
	font-size: 1.4vw;		/*文字サイズ。100vwは画面幅100%のことです*/
	padding-left: 0.5rem;	/*左に空ける余白。0.5文字分。*/
}


/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.slide-108 {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.slide-108.active {
	pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}

