@charset "utf-8";

.slick-list{
	overflow: none!important;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#fff;
	/*text-align:center;*/
	color:#fff;
	font-size: 38px;
	line-height: 50px;
	text-align: left;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width:767px){
	#splash{
		font-size: 18px;
	}
}

/* fadeUpをするアイコンの動き */
._fadeIn{
	opacity: 0;
}
.fadeIn{
	animation-name: fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

.fadeIn-delay-fast{
	animation-duration:1s!important;
}
.fadeIn-delay{
	animation-duration:4.2s!important;
}
.fadeIn-delay-slow{
	animation-duration:5s!important;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}





/*==================================================
　5-2-2 2本線が×に (thx for ugokuweb)
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.sp-navi .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: absolute;
	top:0;
	right:0;
	width: 50px;
    height:50px;
	cursor: pointer;
	background:#f8f8f8;
	 z-index: 1000; 
}
	
/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
	background-color: #666;
  }


.openbtn span:nth-of-type(1) {
	top:22px;	
  	width: 50%;
}

.openbtn span:nth-of-type(2) {
	top:29px;
  	width:50%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 990;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:350px;
    height: 100vh;/*ナビの高さ*/
	background:#f8f8f8;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 320px;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	padding:25px 0 25px 25px;
}

#g-nav .logo{
	margin-top:50px;
	width: 176px;
	height:52px;
	
}


/*ナビゲーション*/

#g-nav-list{
	position: relative;
}

#g-nav-list>ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 999;
    padding-left:0;
    
}

/*リストのレイアウト設定*/

#g-nav-list>ul>li{
	position: relative;
	border-top:1px solid #d7d7d7;
	list-style: none;
    text-align: left;
	padding-left:0;
}
#g-nav-list>ul>li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

#g-nav-list>ul>li.spm01 .openSubMenu,
#g-nav-list>ul>li.spm02 .openSubMenu,
#g-nav-list>ul>li.spm03 .openSubMenu,
#g-nav-list>ul>li.spm05 .openSubMenu{
	background:url("../images/common/bottom_arrow.svg") no-repeat;
	background-position: center right 10px;
}

#g-nav-list>ul>li ul{
	display: none;
	padding:0;
}
#g-nav-list>ul>li ul>li{
	list-style: none;
}
#g-nav-list>ul>li ul>li a{
	font-weight: normal;
}

.sMenuPickupTitle{
	margin-top:50px;
	font-weight: bold;
	padding-bottom: 10px;
}
.sMenuPickupImage{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 10px;
	margin-bottom: 25px;
}
.sMenuPickupImage .image{
	width: 120px;
	height: 120px;
	
}
.sMenuPickupImage .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
}



.sMenuCatchcopy p{
	font-size: 26px;
	line-height: 36px;
	font-weight: bold;
}

.sMenuSetToBottom{
	position: relative;
	bottom: 10px;
	left:   10px;
}




.image-fade {
	overflow: hidden; /* 画像がはみ出さないようにする */
	width: 300px; /* 画像の幅に合わせて設定 */
}

.fdimage {
	display: block;
	width: 100%;
	clip-path: inset(0 100% 0 0); /* 初期状態では右側が隠れている */
	transition: clip-path 5s ease; /* 5秒間で徐々に表示 */
}
.fdimage_delay {
	display: block;
	width: 100%;
	clip-path: inset(0 100% 0 0); /* 初期状態では右側が隠れている */
	transition: clip-path 5s ease; /* 5秒間で徐々に表示 */
}

.fdimage-1s {
	transition: clip-path 1s linear; /* 2秒間で徐々に表示 */
}
.fdimage-2s {
	transition: clip-path 2s linear; /* 2秒間で徐々に表示 */
}
.fdimage-3s {
	transition: clip-path 3s linear; /* 2秒間で徐々に表示 */
}
.fdimage-6s {
	transition: clip-path 6s linear; /* 10秒間で徐々に表示 */
}

.fdshow {
	clip-path: inset(0 0 0 0); /* クリップを解除して全体を表示 */
}
