@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Shippori+Mincho+B1:wght@400;500;600&display=swap');
@import url("https://use.typekit.net/kuk0tji.css");


/*----------------------------------------------------
	☆PC
----------------------------------------------------*/
.pc-none {
    display: none;
}

.sp-none {
    display: block;
}

/* --- 左右に開くアニメーション --- */

/* body スクロール禁止 */
body {
  margin: 0;
  overflow: hidden;
}

/* 幕全体 */
.curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  pointer-events: none; /* クリックなどを無効化 */
  display: flex;
}

/* 左右の幕 */
.curtain__left,
.curtain__right {
  width: 50%;
  height: 100%;
  transform-origin: center;
  animation: openCurtain 1s ease-in-out forwards;
}

/* 左右位置 */
.curtain__left {
  transform-origin: left;
  background: linear-gradient(135deg, #a8325b 0%, #851c49 100%);
}
.curtain__right {
  transform-origin: right;
  background: linear-gradient(135deg, #851c49 0%, #5c0f36 100%);
}

/* アニメーション */
@keyframes openCurtain {
  0% {
    transform: scaleX(1);  /* 幕閉じた状態 */
  }
  100% {
    transform: scaleX(0);  /* 幕開いた状態 */
  }
}
/* --- 終わり --- */

#oimo2025 {
	width: 100%;
    overflow: hidden;
    position: relative;
    color: #851c49;
    font-family: 'Shippori Mincho B1', serif;
    letter-spacing: 0.2em;
    font-size: 15px;
    font-weight: 500;
	line-height: 1.5;
    -webkit-font-smoothing: antialiased;
	background: url("/images/menu/oimo2025/bg.jpg") center center / cover repeat;

}

#oimo2025 img {
    display: block;
	width: 100%;
	height: auto;
}

/*--- mv ---*/

#oimo2025 .mv {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
}

/* --- 画像ラッパー --- */
#oimo2025 .image {
  position: relative;
  width: 100%;
}

/* --- レイヤー画像 --- */
#oimo2025 .image .layer {
  position: absolute; /* フェード用に重ねる */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 親に合わせてトリミング */
}

/* --- img --- */
#oimo2025 .image img {
  width: 100%;
  height: auto; /* 高さは自動で比率維持 */
  display: block;
}

/* フェード対象のクロスフェード */
.fade.layer1 {
	z-index: 1;
	animation: crossfade 7s infinite;
}

.fade.layer2 {
	z-index: 1;
	animation: crossfade 7s infinite;
	animation-delay: 3.5s; /* 半周期ずらす */
}

/* 常に最前面 layer3 */
.layer3 {
	z-index: 2;
}

/* クロスフェード */
@keyframes crossfade {
	0%   { opacity: 1; }
	50%  { opacity: 0; }
	100% { opacity: 1; }
}

#oimo2025 .mv .mvTitle {
	position: absolute;
	top: 18%;
	left: 11%;
	width: 34%;
	z-index: 5;
}

#oimo2025 .mv .mvCopy {
	position: absolute;
	top: 10.5%;
	right: 8.5%;
	width: min(14.5%, 186px);
	z-index: 5;
}

#oimo2025 .mv .mvStart {
	position: absolute;
	top: 53%;
	left: 9%;
	width: 15%;
	z-index: 5;
}

/*--- 画像 ---*/

#oimo2025 .mv .image {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: calc(770 / 1360 * 100%);
}

#oimo2025 .mv .image picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* レイヤー画像共通 */
#oimo2025 .mv .image img.layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 背景は最初から表示 */
#oimo2025 .mv .image img.bg {
	opacity: 1;
	animation: none;
	z-index: 0;
}

/*--- イントロ ---*/
#oimo2025 .introInner {
    width: 90%;
    max-width: 945px;
    margin: 0 auto;
    padding: 100px 0;
}

#oimo2025 .intro .about {
    margin-bottom: 50px;
}

#oimo2025 .intro .about .aboutInner {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    align-items: center;
}

#oimo2025 .intro .about .txtBox {
	width: 100%;
}

#oimo2025 .intro .about .imgBox {
	width: 60%;
}

#oimo2025 .intro .about .txtBox .title {
    font-size: clamp(24px, 2vw, 36px);
    text-align: left;
    line-height: 1;
}

#oimo2025 .intro .about .txt {
    text-align: left;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: clamp(1.8, 2vw, 2.2);
}

#oimo2025 .intro .about .note {
    text-align: left;
    font-size: clamp(10px, 0.9vw, 11px);
	letter-spacing: 0.03em;
}

/*--- メニュー ---*/
#oimo2025 .pc-only { display: block; }
#oimo2025 .sp-only { display: none; }

#oimo2025 .menuBoxInner {
	display: flex;
	flex-direction: row;        /* 横並び */
	align-items: center;    /* 上揃え */
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 60px;
	margin-bottom: 140px;
}

#oimo2025 .menuBoxInner.reverse {
  flex-direction: row-reverse; /* 反転！ */
}

/* --- imgBox --- */
#oimo2025 .menuImgBox {
  position: relative;
  width: 50vw;               /* 画面幅に応じて縮む */
  max-width: 610px;          /* 元画像の最大幅 */
  aspect-ratio: 610 / 560;   /* 元画像比率を維持 */
  overflow: visible;  
  flex-shrink: 0;
}

/* 背景画像 */
#oimo2025 .bgSquare {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* はみ出す商品画像 */
#oimo2025 .productImg {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60vw;              /* 画面幅に応じて縮む */
	max-width: 740px;
	height: auto;
	z-index: 2;
}

#oimo2025 .mini {
    position: absolute;
    top: 56%;
    left: 8%;
    width: 20%;
    height: auto;
    z-index: 2;
}

    /* テキストエリア */
#oimo2025 .menuBox .txtBox {
	width: 100%;
	max-width: 440px;
}

    /* アイコンのサイズと間隔 */
#oimo2025 .menuBox .txtBox .icon {
	width: clamp(48px, 8vw, 96px);   /* 最小48px～最大96px */
	height: auto;
	margin-bottom: 2.5vw;
}

    /* テキスト間隔調整 */
#oimo2025 .menuBox .txtBox .copy {
	font-size: clamp(12px, 1.5vw, 16px);
	margin-bottom: 2vw;
	letter-spacing: 0.03em;
}

#oimo2025 .menuBox .txtBox .name {
	font-size: clamp(20px, 3vw, 30px);
	font-weight: 600;
	margin-bottom: 2vw;
	letter-spacing: -0.02em;
}

#oimo2025 .menuBox .txtBox .price {
	font-size: clamp(16px, 2vw, 21px);
	margin-bottom: 2vw;
}

#oimo2025 .menuBox .txtBox .price span {
	font-size: 80%;
}


/*--- ボタン ---*/

#oimo2025 .more {
    max-width: 170px;
    margin-top: 30px;
    text-align: left;
}

#oimo2025 .more a {
    display: inline-block;
    font-family: "canto-pen", serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    letter-spacing: .08em;
    background: #851c49;
    border-radius: 100px;
    padding: 11px 45px 9px;
    text-align: center;
    border: none;
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#oimo2025 .more a:hover {
    background-color: #a9467d; /* 明るい紫 */
    transform: translateY(2px); /* 押し込まれるような効果 */
}

/*--- SNS ---*/

#oimo2025 .sns {
    background: url("/images/menu/oimo2025/sns_bg.jpg") center center / cover no-repeat;
    position: relative;
	padding: 90px 0;
}

#oimo2025 .sns .snsList {
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 90%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

#oimo2025 .sns .snsList li a {
    display: block;
    width: 30px;
    height: 30px;
    transition: .3s ease;
}

#oimo2025 .sns .snsList li a:hover {
	transform: scale(1.15);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, .4));
}

/*--- banner ---*/

#oimo2025 .bnrArea {
	width: 100%;
	display: flex;
	flex-direction: column; 
	align-items: center;
	gap: 15px;
	max-width: 1360px;
	margin-left: auto;
	margin-right: auto;
    justify-content: space-between;
    position: relative;
    padding: 0 clamp(5%, 10vw, 120px) clamp(40px, 10vw, 120px); 
}

#oimo2025 .bnrArea .inr {
    overflow: hidden;
}

#oimo2025 .bnrArea .title {
	position: relative;
	display: inline-block;
	max-width: 600px;
}

#oimo2025 .bnrArea .inr a {
    transition: 0.4s;
}

#oimo2025 .bnrArea .inr a:hover img{
	transform: scale(1.08);
}

#oimo2025 .bnrArea a img{
	transition: .4s;
}
#oimo2025 .bnrArea a:hover img{
	transform: scale(1.08);
}

/*-------------------------------------------
Animation
-------------------------------------------*/

.out {
    opacity: 0;
    transform: translateY(50px);
}

.in {
    opacity: 1;
    transform: translateY(0);
    transition: all 1.7s ease;
}

#oimo2025 .clip01 {
    clip-path: inset(0 0 100% 0);
}

#oimo2025 .mv .clip01, #oimo2025 .in .clip01 {
    animation: clip01 .8s ease-in-out forwards;
}


#oimo2025 .mvCopy.clip01 {
    animation-delay: 1.2s;
	animation-duration: 1.4s;
}

#oimo2025 .copy.clip01 {
    animation-delay: 0.6s;
}

@keyframes clip01 {
	0% { clip-path: inset(0 0 100% 0); }
	100% { clip-path: inset(0 0 0 0); }
}

/* 順番にふわっと表示 */
#oimo2025 .mv .image img.layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	animation: fadeOnly 1s ease forwards;
}

#oimo2025 .mv .image img.layer1 { animation-delay: 0.3s; z-index: 5; }
#oimo2025 .mv .image img.layer2 { animation-delay: 0.5s; z-index: 4; }
#oimo2025 .mv .image img.layer3 { animation-delay: 0.7s; z-index: 3; }
#oimo2025 .mv .image img.layer4 { animation-delay: 0.9s; z-index: 2; }

@keyframes fadeOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/*じわっ*/
#oimo2025 .mv .mvTitle,
#oimo2025 .mv .mvStart{
    opacity: 0;
}

#oimo2025 .mv .blur,
#oimo2025 .menuBox .blur,
#oimo2025 .snsList.blur{
    animation: blurAnime 1.2s ease forwards;
}

#oimo2025 .mv .mvTitle {
	animation-delay: 1s;
}

#oimo2025 .mv .mvStart.blur{
    animation-delay: 1.6s;
}

#oimo2025 .bnrArea .out .in .blur {
    animation: blur .8s ease-in-out forwards;
}

.bnrArea.in .blur {
    animation: blurAnime 0.8s ease-in-out forwards;
}

@keyframes blurAnime{
    from {
    filter: blur(15px);
    transform: scale(1.3);
    opacity: 0;
    }

    to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    }
}

#oimo2025 .clip03 {
    clip-path: inset(150% 100% 0 0);
}

#oimo2025 .in .en.clip03 {
	animation: clip03 .8s ease forwards;
}

@keyframes clip03 {
	0% { clip-path: inset(150% 100% 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

/* 初期状態（非表示＆blur状態） */
#oimo2025 .menuBox .menuImgBox.blur {
  opacity: 0;
  transform: scale(1.3);
  filter: blur(15px);
}

/* menuBox が in になったらアニメーション */
#oimo2025 .menuBox.in .menuImgBox.blur {
  animation: iconBlurAnime 1.2s ease forwards;
  animation-delay: 0.5s; /* menuBoxのふわっとアニメーションより遅らせる */
}

/* blurアニメーション */
@keyframes iconBlurAnime {
  from {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}



/*--- delay ---*/
#oimo2025 .delay02{ animation-delay: 0.2s !important;}
#oimo2025 .delay04{ animation-delay: 0.4s !important;}
#oimo2025 .delay06{ animation-delay: 0.6s !important;}
#oimo2025 .delay08{ animation-delay: 0.8s !important;}
#oimo2025 .delay10{ animation-delay: 1.0s !important;}
#oimo2025 .delay11{ animation-delay: 1.1s !important;}
#oimo2025 .delay12{ animation-delay: 1.2s !important;}
#oimo2025 .delay14{ animation-delay: 1.4s !important;}
#oimo2025 .delay16{ animation-delay: 1.6s !important;}
#oimo2025 .delay18{ animation-delay: 1.8s !important;}


/*----------------------------------------------------
	☆TABLET UNDER 1080
----------------------------------------------------*/

@media screen and (max-width:1080px) {

    /*--- mv ---*/

    /*--- メニュー ---*/

    /*--- sample02 ---*/
    
}




/*----------------------------------------------------
	☆TABLET UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {

    /*--- mv ---*/

    /*--- イントロ ---*/
	
	/*--- メニュー ---*/
	
#oimo2025 .menuBoxInner {
	flex-direction: column;
	gap: 40px;
	padding: 0 60px;
	margin-bottom: 90px;
	text-align: center;
	}
	
#oimo2025 .menuBoxInner.reverse {
    flex-direction: column;
	}
	
#oimo2025 .menuBox .txtBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    max-width: none; 
}
	
#oimo2025 .menuImgBox {
    width: 65vw;
    max-width: 640px;
    aspect-ratio: 640 / 560;
}
	
#oimo2025 .productImg {
    width: 80vw;
}
	
#oimo2025 .mini {
    top: 54%;
    left: 7%;
    width: 20%;
}
	
#oimo2025 .txtBox .dessertContents {
    width: 580px;         /* PC版の幅 */
    max-width: 64vw;      /* 画面幅に応じて縮小 */
    margin: 0 auto;       /* 中央揃え */
}

/* 内部の画像は親幅に合わせる */
#oimo2025 .txtBox .dessertContents img {
    width: 100%;
    height: auto;
    display: block;
}
	
#oimo2025 .menuBox .txtBox .price {
    margin-bottom: 3vw;
}
	
    /*--- sample02 ---*/
    
}


/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
	
.pc-none {
	display: block;
}

.sp-none {
	display: none;
}
	
    /*--- mv ---*/
	
#oimo2025 .mv .mvTitle {
	position: absolute;
	top: 7%;
	left: 18%;
	width: min(360px, 65%);
}

#oimo2025 .mv .mvCopy {
	position: absolute;
	top: 37%;
	left: 16%;
	width: 21%;
}

#oimo2025 .mv .mvStart {
	position: absolute;
	top: 23%;
	left: 4%;
	width: min(151px, 26%);
}

#oimo2025 .mv .image {
	padding-top: calc(620 / 400 * 100%);
}

    /*--- イントロ ---*/
	
#oimo2025 .intro .about .aboutInner {
    flex-direction: column;
	padding: 50px;
}

#oimo2025 .intro .about .txtBox .title {
    text-align: center;
	font-size: clamp(24px, 5vw, 32px);
	line-height: 1.5em;
	text-indent: 0.5em;
	letter-spacing: 0.08em;
}
	
#oimo2025 .introInner {
    padding: 20px 0;
	margin-bottom: 0;
}
	
#oimo2025 .intro .about .txt {
text-align: justify;
}
	
    /*--- メニュー ---*/
	
#oimo2025 .menuBoxInner {
	flex-direction: column;
	gap: 40px;
	padding: 0 60px;
	margin-bottom: 70px;
	}
	
#oimo2025 .menuBoxInner.reverse {
    flex-direction: column;
	}
	
#oimo2025 .menuBox .txtBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    max-width: none; 
}
	
	
/* 親ラッパー */
#oimo2025 .menuImgBox {
	position: relative;
	width: 100%;
	max-width: 490px;
	aspect-ratio: 610 / 560;
	margin: 0 auto;
	overflow: visible;
}

/* 背景画像 */
#oimo2025 .bgSquare {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

/* はみ出す商品画像 */
#oimo2025 .productImg {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;             /* 親の幅に対する比率 */
	max-width: none;        /* PC版の制限を解除 */
	height: auto;           /* 縦横比維持 */
	z-index: 2;
}
	
#oimo2025 .menuBox .txtBox .icon {
	width: clamp(64px, 12vw, 128px);
	margin-bottom: 4vw;
}
	
#oimo2025 .menuBox .txtBox .name {
	text-align: center;
	font-size: clamp(24px, 5vw, 32px); /* PC版より少し大きめ */
    font-weight: 600;
    margin-bottom: 3vw;               /* SP用に余白を少し広め */
    letter-spacing: -0.01em;           /* SPでは少し詰める */
}
	
#oimo2025 .menuBox .txtBox .copy {
	font-size: clamp(14px, 3vw, 18px); /* PC版より少し大きめ */
	margin-bottom: 3vw;               /* SP用に余白調整 */
}

#oimo2025 .menuBox .txtBox .price {
	font-size: clamp(18px, 3vw, 24px); /* PC版より少し大きめ */
	margin-bottom: 5vw;               /* SP用に余白調整 */
}
	
#oimo2025 .more a {
	font-size: 18px;
	padding: 12px 65px 10px;
}
	
#oimo2025 .more {
    margin-top: 40px;
}
	
/*	#oimo2025 .more {
		z-index: 2;
	}
	
	#oimo2025 .bnrArea {
		padding: 0 clamp(2%, 6vw, 60px) clamp(40px, 8vw, 120px);*/
	
	
	/*--- SNS ---*/
	
	#oimo2025 .sns .snsList {
		width: 75%;
	}
	
	#oimo2025 .sns {
    	padding: 60px 0;
	}
	
/*-------------------------------------------
Animation
-------------------------------------------*/
	
/*	#oimo2025 .mv .mvTitle {
		animation-delay: 0.3s;
	}

	#oimo2025 .mvCopy.clip01 {
		animation-delay: 0.5s;
	}

	#oimo2025 .mv .mvStart.blur {
		animation-delay: 0.5s;
	}

	#oimo2025 .mv .image img.layer1 { animation-delay: 0s; z-index: 5; }
	#oimo2025 .mv .image img.layer2 { animation-delay: 0s; z-index: 4; }
	#oimo2025 .mv .image img.layer3 { animation-delay: 0s; z-index: 3; }
	#oimo2025 .mv .image img.layer4 { animation-delay: 0s; z-index: 2; }*/

}


/*----------------------------------------------------
	☆UNDER 400
----------------------------------------------------*/

@media screen and (max-width:400px) {
#oimo2025 .intro .about .aboutInner {
	padding: 0 20px;
}

#oimo2025 .intro .about .txtBox .title {
letter-spacing: -0.02em;
}
	
#oimo2025 .menuBoxInner {
	gap: 20px;
	padding: 0 20px;
	margin-bottom: 50px;
}

}