@charset "UTF-8";

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


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

.sp-none {
    display: block;
}


.sp400-br {
    display: none;
}

#mango {
	width: 100%;
    overflow: hidden;
    position: relative;
    color: #37332F;
	font-family: 'Zen Old Mincho', serif;
    letter-spacing: 0.2em;
    font-size: 15px;
    font-weight: 500;
	line-height: 1.5;
    -webkit-font-smoothing: antialiased;
	background: url("/images/menu/mango2026/bg.jpg") top center / 100% repeat-y;

}

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

/*--- mv ---*/

#mango .mv {
    position: relative;
	max-width: 1500px;
	margin: 0 auto;
	background: url("/images/menu/mango2026/bg.jpg") top center / 100% repeat-y;
}

#mango .mv .mvTitle {
    position: absolute;
    top: 25%;
    left: 13%;
    width: 50%;
	max-width: 736px;
    z-index: 5;
}

#mango .mv .mvCopy {
    position: absolute;
    bottom: 22%;
    left: 21.5%;
    width: 29%;
    max-width: 430px;
    z-index: 5;
}

#mango .mv .mvStart {
    position: absolute;
    top: 72%;
    left: 39.5%;
    width: 29%;
    max-width: 430px;
    z-index: 5;
}

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

#mango .mv .image {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: calc(708 / 1500 * 100%);
}

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

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

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

/*--- mvの花 ---*/

/* 基準 */
#mango .mvInner {
    position: relative;
}

/* 共通 */
#mango .mvDeco {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

#mango .mvDeco img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center bottom;
}

/* 右上 */
#mango .mvDeco.deco1 {
    top: 5px;
    right: -10px;
    width: 13%;
    max-width: 190px;
}

/* 左下 */
#mango .mvDeco.deco2 {
    bottom: -97px;
    left: -33px;
    max-width: 296px;
    width: 20%;
}


/* --- アニメーション（順番制御） --- */

/* --- deco1（先） --- */
#mango .mvDeco.deco1 {
    animation: decoFade 0.6s ease 1.6s forwards;
}

/*#mango .mvDeco.deco1 img {
    animation: decoSwing 1.2s ease 2.2s 1 forwards;
}*/

/* --- deco2（後） --- */
#mango .mvDeco.deco2 {
    animation: decoFade 0.6s ease 2.3s forwards;
}

/*#mango .mvDeco.deco2 img {
    animation: decoSwing 1.4s ease 2.9s 1 forwards;
}
*/

/* --- キーフレーム --- */

/* フェード */
@keyframes decoFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* 揺れ */
/*@keyframes decoSwing {
    0%   { transform: rotate(0deg); }
    30%  { transform: rotate(3deg); }
    60%  { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}*/

/* --- イントロ --- */
#mango .intro {
    margin: 120px 0;
    text-align: center;
    position: relative;
}

/* 背景 */
#mango .intro .introInner {
    background-image: url('/images/menu/mango2026/introBg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 100px 0 80px; /* ←調整 */
}

/* 画像（完全固定） */
#mango .intro .introImg {
    position: absolute;
    top: -60px; /* ←固定 */
    left: 50%;
    transform: translateX(-50%);
    width: 240px; /* ←%やめて固定 */
    max-width: none;
    height: auto;
    z-index: 1;
}

/* タイトル */
#mango .intro h2 {
    font-size: 32px; /* ←vwやめて固定 */
    font-weight: 600;
    color: #fff;
	padding-top: 35px;
    margin: -40px 0 5px; /* ←画像との距離固定 */
    position: relative;
    display: inline-block;
}

/* ライン */
#mango .intro .introLine {
    display: block;
    margin: 16px auto 24px;
    max-width: 104px;
    height: auto;
}

/* テキスト */
#mango .intro p {
    font-size: 18px;
    color: #fff;
    line-height: 1.9;
    max-width: 787px;
    margin: 0 auto;
}

/* --- アニメーション --- */
#mango .intro.out {
    opacity: 0;
    transform: translateY(40px);
}

#mango .intro.in {
    animation: introFadeUp 1s ease forwards;
}

/* 中身初期 */
#mango .intro.out .introImg {
    opacity: 0;
    transform: translate(-50%, 20px);
}

#mango .intro.out h2,
#mango .intro.out .introLine,
#mango .intro.out p {
    opacity: 0;
    transform: translateY(20px);
}

/* 順番アニメ */
#mango .intro.in .introImg { animation: introImgFade 0.8s ease 0.3s forwards; }
#mango .intro.in h2 { animation: introFadeUp 0.8s ease 0.6s forwards; }
#mango .intro.in .introLine { animation: introFadeUp 0.8s ease 0.9s forwards; }
#mango .intro.in p { animation: introFadeUp 0.8s ease 1.2s forwards; }

/* --- キーフレーム --- */
@keyframes introFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introImgFade {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* --- SP調整（必要最低限） */
@media (max-width: 600px) {
    #mango .intro .introInner {
        padding: 80px 10px 60px;
    }

    #mango .intro .introImg {
        width: 180px;
        top: -40px;
    }

    #mango .intro h2 {
        font-size: 24px;
        margin-top: -30px;
    }

    #mango .intro p {
        font-size: 16px;
        line-height: 1.7;
    }
}

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

#mango .menuArea {
    position: relative;
	z-index: 0;
}

#mango .menuArea .menuBox {
    position: relative;
	margin-top: 50px;
}

#mango .menuArea .menuBox.no3 {
    position: relative;
	margin-top: 30px;
}

#mango .menuArea .menuBox.no4 {
    position: relative;
	margin-top: 40px;
}

#mango .menuArea .menuBox.no5 {
    position: relative;
	margin-top: 70px;
}

#mango .menuArea .menuBox.no6 {
    position: relative;
	margin-top: 70px;
}

#mango .menuInner {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 0;
}

#mango .menuArea .menuBox .imgBox {
	position: relative;
}

#mango .menuArea .menuBox .imgBox .en {
    position: absolute;
    top: -3%;
    left: 2%;
    width: 43%;
    max-width: 507px;
    display: block;
    z-index: -10;
}

#mango .menuArea .menuBox .imgBox .copy {
    position: absolute;
    top: 13%; /* 元の位置維持 */
    left: 73%; /* 画面中央基準 */
    transform: translateX(30%); /* 元の見た目に近く */
    writing-mode: vertical-rl;
    z-index: 3;
}

#mango .menuArea .menuBox .imgBox .copy span {
    display: inline-block;
    font-size: clamp(14px, 1.2vw, 18px); /* 最小12px、最大18px、画面幅に応じて変化 */
    font-weight: 400;
    background-color: #fff;
    padding: 10px 3px;
    margin-left: 5px;
}

#mango .menuArea .menuBox .txtBox {
    text-align: center;
    width: 61%;
    margin: -75px auto 150px;
    position: relative;
    top: -10%; /* 画像の高さに応じて自動調整 */
    z-index: 4;
}

#mango .menuArea .menuBox .txtBox .txtboxInner {
	width: 100%;
    position: relative;
	background: #fff;
	margin: 3px auto;
    padding: 25px 30px 35px;
   font-size: clamp(22px, 1.7rem, 24px);
}

#mango .menuArea .menuBox .txtBox h2 {
    margin-bottom: 5px;
	font-weight: 500;
	letter-spacing: normal;
}

#mango .menuArea .menuBox .txtBox .price {
	color: #009CCE;
    font-size: 18px;
	margin-bottom: 0;
}

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

/* imgBox は相対配置 */
.imgBox {
    position: relative;
    /* min-heightは削除 or コメントアウト推奨 */
    /* min-height: 500px; */
}

/* メイン画像 */
.imgBox .imgMain {
    position: relative;
    z-index: 2;
}
.imgBox .imgMain img {
    width: 100%;
    display: block;
}

/* 下画像は中央基準に変更（ズレ防止） */
.imgBox .imgSub {
    position: absolute;
    bottom: 50%;
    left: 66%;
    transform: translateX(-30%); /* ←元の見た目に近い位置 */
    width: 67%;
    max-width: 800px;
    z-index: -10;
}

.imgBox .imgSub img {
    width: 100%;
    display: block;
}

/* 名前・コピーは前面 */
.imgBox .en,
.imgBox .copy {
    position: absolute;
    z-index: 3;
}

/* --- menu画像のdeco --- */

/* 基準 */
#mango .menuArea .menuBox .imgBox .imgMain {
    position: relative;
    box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.2);
}

/* 共通 */
#mango .menuArea .menuBox .imgDeco {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 3;

    width: 20%;
    max-width: 225px;
}

#mango .menuArea .menuBox .imgDeco img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center bottom;
}

/* =======================
   ▼ 位置（個別）
======================= */

/* ① 左下 */
#mango .menuArea .menuBox .imgDeco.deco1 {
    bottom: -8%;
    left: -5%;
}

/* ② 右下 */
#mango .menuArea .menuBox .imgDeco.deco2 {
    bottom: -6%;
    right: -4%;
}

/* ③ 左下（ちょい違い） */
#mango .menuArea .menuBox .imgDeco.deco3 {
    bottom: -10%;
    left: -3%;
}

/* ④ 右下（ちょい違い） */
#mango .menuArea .menuBox .imgDeco.deco4 {
    bottom: -7%;
    right: -6%;
}

/* --- 左寄せにするグループ --- */
/* 左寄せ（no2,4,6） */
#mango .menuArea .menuBox.no2 .imgSub,
#mango .menuArea .menuBox.no4 .imgSub,
#mango .menuArea .menuBox.no6 .imgSub {
    left: 34%;
    transform: translateX(-70%); /* ←元の right:46% に近い見え方 */
}

#mango .menuArea .menuBox.no2 .imgBox .en,
#mango .menuArea .menuBox.no4 .imgBox .en,
#mango .menuArea .menuBox.no6 .imgBox .en {
    left: auto;
    right: 2%;
}

#mango .menuArea .menuBox.no2 .imgBox .copy,
#mango .menuArea .menuBox.no4 .imgBox .copy,
#mango .menuArea .menuBox.no6 .imgBox .copy {
    left: 15%;
    transform: translateX(-30%); /* 左寄せに調整 */
}

#mango .menuArea .menuBox.no2 .imgDeco.deco1,
#mango .menuArea .menuBox.no4 .imgDeco.deco1,
#mango .menuArea .menuBox.no6 .imgDeco.deco1 {
    left: auto;
    right: -6%;
}

#mango .menuBox .note {
	text-align: center;
	font-size: 12px;
	color: #37332F;
	margin-top: 18px;
	line-height: 1.5;
}



/* =======================
   ▼ アニメーション（共通）
======================= */

/* フェード */
#mango .menuArea .menuBox .menuboxInner.in .imgDeco {
    animation: decoFade 0.6s ease 0.6s forwards;
}

/* 揺れ */
/*#mango .menuArea .menuBox .menuboxInner.in .imgDeco img {
    animation: decoSwing 1.2s ease 1.2s 1 forwards;
}*/


/* =======================
   ▼ keyframes
======================= */

@keyframes decoFade {
    to {
        opacity: 1;
    }
}

/*@keyframes decoSwing {
    0% { transform: rotate(0deg); }
    30% { transform: rotate(-6deg); }
    60% { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}*/


/* --- moreボタン --- */
#mango .more {
    max-width: 164px;
    margin: -23px auto 0;
    position: relative;
    text-align: center;
}

#mango .more a {
    display: block;
    position: relative;
    overflow: hidden;

    background: #009CCE;

    font-family: "canto-pen", serif;
    font-weight: 600;
    color: #fff;

    letter-spacing: .1em;
    border: none;
    padding: 13px 0 9px;
    border-radius: 100px;
    font-size: 17px;

    transition: transform .4s cubic-bezier(.22,1,.36,1),
                box-shadow .4s cubic-bezier(.22,1,.36,1);

    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* ← グラデレイヤー */
#mango .more a::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg, #009CCE, #007FA8);

    opacity: 0;
    transition: opacity .4s ease;

    border-radius: 100px;
    z-index: 1;
}

/* ← 文字を前面に */
#mango .more a span {
    position: relative;
    z-index: 2;
}

/* ホバー */
#mango .more a:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.10);
}

/* グラデ表示 */
#mango .more a:hover::before {
    opacity: 1;
}


/*--- SNS ---*/

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

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

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

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

/*--- banner ---*/

#mango .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); 
}

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

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

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

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

#mango .bnrArea a img{
	transition: .4s;
}
#mango .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;
}

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

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


#mango .mvCopy.clip01 {
    animation-delay: 1.8s;
	animation-duration: 1.4s;
}

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

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

#mango .mv .image img.layer {
	opacity: 0;
	transform: scale(0.9) translateY(30px);
	filter: blur(8px);
	animation: floatIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes floatIn {
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
		filter: blur(0);
	}
}

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

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


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

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

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

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

#mango .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;
    }
}

#mango .clip03 {
	opacity: 0;
	transform: translateX(-40px);
}

#mango .in .en.clip03 {
	animation: slideClean 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideClean {
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}



/*--- delay ---*/
#mango .delay02{ animation-delay: 0.2s !important;}
#mango .delay04{ animation-delay: 0.4s !important;}
#mango .delay06{ animation-delay: 0.6s !important;}
#mango .delay08{ animation-delay: 0.8s !important;}
#mango .delay10{ animation-delay: 1.0s !important;}
#mango .delay11{ animation-delay: 1.1s !important;}
#mango .delay12{ animation-delay: 1.2s !important;}
#mango .delay14{ animation-delay: 1.4s !important;}
#mango .delay16{ animation-delay: 1.6s !important;}
#mango .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 ---*/

    /*--- イントロ ---*/

	
    /*--- sample02 ---*/
	
	#mango .intro {
    margin: 120px 0 80px;
}
	
	#mango .menuArea .menuBox .txtBox {
    margin: -75px auto 110px;
}
    
}

/*----------------------------------------------------
	☆TABLET UNDER 760
----------------------------------------------------*/

@media screen and (max-width:760px) {
/*	#mango .menuArea .menuBox .imgBox .en {
        display: none;
    }*/
}

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

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

	.sp-none {
		display: none;
	}
	
    /*--- mv ---*/
	
    #mango .mv .mvTitle {
        position: absolute;
        top: 5%;
        left: 6.2%;
        max-width: 530px;
        width: 89%;
    }

    #mango .mv .mvCopy {
        position: absolute;
        top: 27.5%;
        left: 82%;
        width: 10%;
        max-width: 59px;
    }

    #mango .mv .mvStart {
        position: absolute;
        top: 24.5%;
        left: 17%;
        width: 64%;
        max-width: 379px;
    }
	
	#mango .mv .image {
        padding-top: calc(620 / 400 * 100%);
	}
	
    #mango .mvDeco.deco1 {
        top: 1px;
        right: -26px;
        width: 23%;
        max-width: 129px;
        z-index: 4;
    }
	
    #mango .mvDeco.deco2 {
        bottom: -74px;
        left: -46px;
        max-width: 218px;
        width: 37%;
    }
	
	/*--- イントロ ---*/
	
#mango .intro .introInner {
    padding: 50px 36px 50px;
}
	
	#mango .intro h2 {
	font-size: clamp(20px, 1.8rem, 29px);
	margin: -10px;
	}
	
	#mango .intro p {
	font-size: clamp(14px, 1rem, 18px);
	text-align: justify;
	}

    /*--- メニュー ---*/
	
	.imgBox .imgSub {
	bottom: 55%;
	width: 79%;
	}
	
	#mango .menuInner {
		width: 100%;
		padding: 0 0 70px;
	}
	
	#mango .menuArea .menuBox {
		margin-top: 70px;
	}
	
	#mango .menuArea .menuBox.no2 {
		margin-top: 20px;
	}
	
	#mango .menuArea .menuBox.no3 {
		margin-top: 20px;
	}
	
	#mango .menuArea .menuBox.no4 {
		margin-top: 20px;
	}

	#mango .menuArea .menuBox.no5 {
		margin-top: 20px;
	}
	
	#mango .menuArea .menuBox.no6 {
		margin-top: 20px;
	}

/*	#mango .menuArea .menuBox .imgBox .en {
        position: absolute;
        top: 24%;
        left: 1.5%;
        width: min(154px, 26%);
        z-index: 2;
	}*/
	
	#mango .menuArea .menuBox .imgBox .en {
	position: absolute;
	top: 4%;
	left: 1.5%;
	width: min(194px, 45%);
	z-index: 1;
	}
	
	#mango .menuArea .menuBox .txtBox .txtboxInner {
		z-index: 2;
	}
	
	#mango .menuArea .menuBox .txtBox .txtboxInner .txtInner {
		width: 98.5%;
		padding: clamp(10px, 2vw, 30px) clamp(5px, 1vw, 15px);
	}
	
	#mango .menuArea .menuBox .txtBox {
	width: 90%;
	margin-top: clamp(-70px, -16.7vw, -100px);
	margin: -45px auto 110px;
	}
	
	#mango .menuArea .menuBox .txtBox h2 {
		font-size: 22px;
	}
	
	#mango .more {
		z-index: 2;
	}
	
	#mango .bnrArea {
		padding: 0 clamp(2%, 6vw, 60px) clamp(40px, 8vw, 120px);
	}
	
/* デフォルト（右側） */
    #mango .menuArea .menuBox .imgBox .copy {
        top: -10%;
        right: 2%;
        left: auto;
        transform: none; /* ← ここ超重要 */
    }

    /* 左側 */
    #mango .menuArea .menuBox.no2 .imgBox .copy,
    #mango .menuArea .menuBox.no4 .imgBox .copy,
    #mango .menuArea .menuBox.no6 .imgBox .copy {
        left: 5%;
        right: auto;
    }
	
	/*--- メニューデコ ---*/
	#mango .menuArea .menuBox .imgDeco.deco1 {
	bottom: 10%;
	left: 1%;
	width: 28%;
	}
	
	#mango .menuArea .menuBox .imgDeco.deco2 {
	bottom: 13%;	
	right: 0%;
	width: 26%;
	}
	
	#mango .menuArea .menuBox .imgDeco.deco3 {
	bottom: 7%;
	left: 1%;
	width: 24%;
	}

	#mango .menuArea .menuBox .imgDeco.deco4 {
	bottom: 8%;
	right: 0%;
	width: 25%;
	}
	
	
	/*--- SNS ---*/
	
	#mango .sns .snsList {
		width: 75%;
	}
	
	#mango .sns {
    	padding: 60px 0;
	}
	
/*-------------------------------------------
Animation
-------------------------------------------*/

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

}


.bnrLink {
	max-width: 384px;
	width: 90%;
	margin: 60px auto;
}

.bnrLink a {
	display: block;
    overflow: hidden;
    border-radius: 12px;
}

.bnrLink a img {
	transition: .3s;
}

.bnrLink a:hover img {
    transform: scale(1.05);
}

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


@media (max-width: 400px) {
    .sp400-br {
        display: inline;
    }
	
	#mango .menuArea .menuBox .txtBox .txtboxInner {
	padding: 15px 20px 30px;
	}

	#mango .menuArea .menuBox .txtBox {
	margin: -45px auto 80px;
	}
	
	    #mango .menuInner {
         padding: 0 0 0; 
    }
	
	#mango .intro {
        margin: 80px 0 80px;
    }
	
	#mango .menuBox .note {
	text-align: center;
	font-size: 11px;
	margin-top: 20px;
	line-height: 1.5;
}
}
