@charset "UTF-8";
/*--------------------------------------------------------------------------------------

大改訂 2022.3.8_2026.6.10

--------------------------------------------------------------------------------------*/

#new * {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
    color: #e63c0e;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

#new {
	width: 100%;
	min-height: 100vh;
	background: url(../images/menu/new2026/loopbk.jpg) center top / 200px 65px repeat;
	overflow: hidden;
}

#new .en {
	font-family: 'Jost', sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
}

#new .newInner {
	width: 100%;
	background-color: #fff;
	opacity: 0;
	animation: fadeIn 450ms ease 500ms forwards;
}

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


#new .newBox {
    background: url(../images/menu/new2026/loopbk2.jpg) center top / 200px 65px repeat;
}

#new .newBoxIn {
    max-width: 1360px;
    width: 100%;
    background: #fff;
    margin: 0 auto;
}

/*----------------------------------------------------TELOP*/

#new .telop {
	display: flex;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	padding: 12px 0;
	background-color: #fff;
	position: relative;
	z-index: 10;
}

#new .telop div:nth-child(odd) {
	animation: loop 30s -15s linear infinite;
}

#new .telop div:nth-child(even) {
	animation: loop2 30s linear infinite;
}

@keyframes loop {
  to { transform: translateX(100%);}
  from { transform: translateX(-100%);}
}

@keyframes loop2 {
  to { transform: translateX(0);}
  from { transform: translateX(-200%);}
}

#new .telop div span {
	width: 320px;
    display: block;
    font-size: 25px;
    line-height: 1;
    color: #e63c0e;
}

/*----------------------RED*/

#new .telop.red {
	background-color: #e63c0e;
}

#new .telop.red div span {
	color: #fff;
}


/*----------------------------------------------------ICON*/

#new .icon {
    display: inline-block;
	line-height: 1;
    padding: 10px 16px;
    background-color: #e63c0e;
    border-radius: 100px;
	position: relative;
	margin: 0;
	opacity: 0;
	transform: translate(0,100%);
	transition: all 200ms ease;
}

#new .icon.in {
	opacity: 1;
	transform: translate(0,0);
	transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#new .icon:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-top: 15px solid #e63c0e;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -22px;
    left: 14px;
}

#new .icon span {
	display: inline-block;
    font-size: 13px;
    line-height: 1;
	color: #fff;
	position: relative;
	z-index: 5;
}

/*----------------------WHITE*/

#new .icon.wt {
	background-color: #fff;
}

#new .icon.wt:after {
    border-top: 15px solid #fff;
}

#new .icon.wt span {
	color: #e63c0e;
}


/*----------------------------------------------------MV*/

:root{
	--mvHeight: calc(100vh - 326px);
	--mvMinHeight: 540px;
}

#new #mv {
    width: 100%;
    height: var(--mvHeight);
	min-height: var(--mvMinHeight);
    position: relative;
}

#new #mv:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#new #mv .subTitle {
    position: absolute;
    top: 3%;
    max-width: 470px;
    width: 28%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

#new #mv .mvTitle {
    width: 60%;
    max-width: 1360px;
    padding: 0 30px;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%,0);
    margin: 0;
    z-index: 10;
}

#new #mv .mvTitle img {
	display: block;
	width: 100%;
}

#new #mv .mvTitle .top {
    width: 40%;
    margin: 0 auto;
}

#new #mv .mvTitle .bottom {
	margin-top: 10px;
}

#new #mv .mvInner {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

#new #mv .mvInner #slide {
    width: 1360px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
	opacity: 0;
	transition: opacity 800ms ease 150ms;
	overflow: hidden;
}

#new #mv .mvInner #slide.slick-initialized {
	opacity: 1;
}

#new #mv .mvInner #slide .slick-list {
	overflow: visible;
}

#new #mv .mvInner #slide .slick-slide {
	position: relative;
}

#new #mv .mvInner #slide .slick-slide img {
    object-fit: cover;
    object-position: center top;
    height: var(--mvHeight);
	min-height: var(--mvMinHeight);
    margin: 0 auto;
    width: auto;
}

#new #mv .mvInner #slide .slick-slide.slick-active img {
	animation: jumping 500ms cubic-bezier(0.68,-0.55, 0.51, 1) forwards;
}

@keyframes jumping {
	from { transform: translate(0,100%);}
	to { transform: translate(0,0);}
}

#new #mv .mvInner #slide .slick-slide .name {
    position: absolute;
    left: 50%;
    bottom: 20px;
	transform: translate(-50%,0);
    margin: 0;
}

#new #mv .mvInner #slide .slick-slide .name span {
	display: inline-block;
	font-size: 13px;
    line-height: 1.2;
    padding: 10px 15px;
    background-color: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
}


/*----------------------------------------------------menu*/

.menu {
    width: 100%;
    position: relative;
    z-index: 20;
}

.menu .menuTxt {
    width: 80%;
    position: absolute;
    /*top:3%;*/
    top: 6.91vw;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.menu .menuTxt .menuName {
    position: relative;
    font-size: 6.2vw;
    margin-bottom: 4%;
    line-height: 1.1;
}

.menu .menuTxt .menuName:before {
    content: "";
    background: #e63c0e;
    width: 55px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -26%;
}

.menu.pasta .menuTxt .fukidashi {
    width: 32%;
}

.menu .menuTxt .copy {
    font-size: 2.8vw;
    margin-bottom: 1.5%;
}

/* salad */
.menu.salad .menuTxt .fukidashi {
    width: 35%;
    float: right;
}

.menu.salad .menuTxt .menuName,
.menu.salad .menuTxt .copy {
    text-align: right;
}

.menu.salad .menuTxt .copy {
    clear: both;
}

.menu.salad .menuTxt .menuName:before {
    left: initial;
    right: 0;
}

/* stake */
.menu.stake .menuTxt .menuName {
    margin-bottom: 3.0%;
}

.menu.stake .menuTxt .txt {
    font-size: 1.13vw;
    line-height: 2;
    color: #333 !important;
    font-weight: 500 !important;
    margin-bottom: 0;
}

.menu.stake .menuTxt .txt span {
    background: linear-gradient(transparent 50%, #fcff21 50%);
    font-weight: 500 !important;
}

.menu.stake .menuTxt .btn {
    width: 14.8%;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.35));
    transform: translateZ(0);
    margin-top: 5%;
}

.menu.stake .menuTxt .btn a {
    width: 100%;
    display: block;
    transition: .3s;
}

/* topping */
.menu.topping {
    background: url(/images/menu/new2026/bg-4-pc.jpg) top / cover no-repeat;
}

.menu.topping .menuName2 {
    position: relative;
    font-size: 6.2vw;
    text-align: center;
    padding-top: 3%;
    margin-bottom: 2.6%;
}

.menu.topping .menuName2:before {
    content: "";
    background: #e63c0e;
    width: 55px;
    height: 2px;
    position: absolute;
    left: 0;
    right:0;
    bottom: -4.5%;
    margin: 0 auto;
}

.menu.topping .copy2 {
    font-size: 2.8vw;
    text-align: center;
    margin-bottom: 4%;
}

/* list */
.menu .list {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
    margin: -30px auto 0;
    margin-bottom: 50px;/* 予告 */
}

.menu.topping .list {
    padding-bottom: 60px;
}

.menu .list li {
    width: 30%;
    position: relative;
    margin-right: 5%;
    margin-bottom: 40px;
}

.menu .list li .listIn {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.menu .list li:nth-child(3n) {
    margin-right: 0;
}

.menu .list li .txt {
    font-size: 1.5vw;
    padding: 6%;
    margin-bottom: 0;
}

.menu .list li .txt span {
    font-size: 70%;
    margin-bottom: 0;
}

.menu .list li .newicon {
    width: 39%;
    position: absolute;
    top:-2.3%;
    right: -2.3%;
}

.menu .list li .blueicon {
    width: 22%;
    position: absolute;
    top: 2.5%;
    left: 2.5%;
}

.menu .list li .blueicon a {
    width: 100%;
    display: block;
    transition: .3s;
}

.menu.topping .list {
    margin: 0 auto 0;
}

.menu .list li .noodleicon {
    width: 31%;
    position: absolute;
    top: 2.5%;
    left: 2.5%;
}

/* tomosankaku */
.tomosankaku .title {
    position: relative;
    font-size: 34px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.tomosankaku .title:before {
    content: "";
    background: #333;
    width: 55px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: 0 auto;
}

.tomosankaku .img {
    margin-bottom: 30px;
}

.tomosankaku .midashi {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 20px;
}

.tomosankaku .txt {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500 !important;
    line-height: 1.8;
    margin-bottom: 40px;
}

.menu .txtlink {
    text-align: center;
    margin-bottom: 60px;
}

.menu .txtlink a {
    font-size: 25px;
    color: #e63c0e;
    text-decoration: underline;
    transition: .3s;
    margin-top: 20px;
}


.eguchiBnr {
    width: 100%;
    margin: -0.1% auto 0;
    overflow: hidden;
}

.eguchiBnr a {
    width: 100%;
    display: block;
    transition: .3s;
}


/*----------------------------------------------------menulink*/

.menulink {
    width: 100%;
    position: relative;
    background: #e63c0e;
    z-index: 20;
}

.menulink .menulinkIn {
    max-width: 1360px;
    width: 85%;
    padding: 5% 0;
    margin: 0 auto;
}

.menulink .menulinkIn .link {
    max-width: 482px;
    width: 100%;
    margin: 0 auto;
}

.menulink .menulinkIn .link a {
    width: 100%;
    display: block;
    background: #fff;
    border-radius: 40px;
    font-size: 28px;
    text-align: center;
    color: #e63c0e;
    transition: .3s;
    padding: 14px 0;
}

.menulink .menulinkIn .link a:hover {
    text-decoration: none;
}

/*----------------------------------------------------caution*/

.caution {
    width: 80%;
    padding: 60px;
    margin: 0 auto;
}

.caution li {
    font-size: 13px;
    font-weight: 500 !important;
    line-height: 1.8;
    text-align: center;
    color: #333 !important;
    text-indent: -13px;
    margin-left: 13px;
}

.caution li:before {
    content: "※";
}



/*--------------------------------------------------------------------------------------

font-size over

--------------------------------------------------------------------------------------*/
@media screen and (min-width:1361px) {
.menu .menuTxt .menuName,
.menu.topping .menuName2 {
    font-size: 86px;
}

.menu .menuTxt .copy,
.menu.topping .copy2 {
    font-size: 38px;
}

.menu .list li .txt {
    font-size: 20px;
}

.menu.stake .menuTxt .txt {
    font-size: 15px;
}

}



/*--------------------------------------------------------------------------------------

hover

--------------------------------------------------------------------------------------*/
@media screen and (min-width:961px) {
.menu.stake .menuTxt .btn a:hover,
.menu .list li .blueicon a:hover,
.menulink .menulinkIn .link a:hover,
.eguchiBnr a:hover,
.bnr a:hover {
    transform: scale(1.1);
}

.menu .txtlink a:hover {
    text-decoration: none;
}

}


/*--------------------------------------------------------------------------------------

Tab

--------------------------------------------------------------------------------------*/

@media screen and (max-width:960px) {
	
:root{
	--mvHeight: auto;
	--mvMinHeight: 1px;
}	
	
/*----------------------------------------------------MV*/

#new #mv .subTitle {
    top: 2%;
    width: 30%;
}

#new #mv .mvTitle {
    padding: 0 18vw;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-top: 8.5%;
    margin-bottom: -20%;
}

#new #mv .mvTitle {
    width: 100%;
}

#new #mv .mvTitle .top {
    width: 100%;
}

#new #mv .mvTitle .bottom {
    margin-top: 4%;
}

#new #mv .mvInner #slide {
    width: 112%;
    height: auto;
    position: relative;
    top: 0;
    left: -6%;
    transform: none;
}


/*----------------------------------------------------menu*/
.menu .menuTxt {
    width: 85%;
    /*top: 2%;*/
    top: 7vw;
}

.menu.stake .menuTxt .txt {
    font-size: 1.6vw;
    line-height: 1.8;
}

.menu.stake .menuTxt .btn {
    width: 17%;
    margin-top: 5%;
}

/* list */
.menu .list {
    width: 70%;
}

.menu .list li {
    width: 47%;
    margin-right: 5%;
    margin-bottom: 40px;
}

.menu .list li:nth-child(3n) {
    margin-right: 5%;
}

.menu .list li:nth-child(2n) {
    margin-right: 0;
}

.menu .list li .txt {
    font-size: 1.9vw;
}

.menu .list li .blueicon {
    width: 30%;
}

.caution {
    width: 85%;
    padding: 60px 0;
}

.caution li {
    text-align: left;
}

}



/*--------------------------------------------------------------------------------------

SP

--------------------------------------------------------------------------------------*/

@media screen and (max-width:520px) {
	
/*----------------------------------------------------TELOP*/

#new .telop {
    padding: 7px 0;
}

#new .telop div {
    padding-right: 50px;
}

#new .telop div span {
	width: 130px;
    font-size: 15px;
}

/*----------------------------------------------------ICON*/

#new .icon {
    padding: 9px 14px;
}

#new .icon span {
    font-size: 12px;
}

/*----------------------------------------------------MV*/

#new #mv .subTitle {
    top: 2%;
    width: 48%;
}

#new #mv .mvTitle {
    padding: 0 11vw;
    padding-top: 11%;
    margin-bottom: -18%;
}

#new #mv .mvInner #slide {
    width: 130%;
    left: -15%;
}

#new #mv .mvInner #slide .slick-slide .name span {
    font-size: 10px;
    padding: 8px 12px;
}


/*----------------------------------------------------menu*/

.menu .menuTxt .menuName {
    position: relative;
    font-size: 12vw;
    margin-bottom: 9%;
}

.menu .menuTxt .menuName:before {
    bottom: -33%;
}


.menu .menuTxt .fukidashi {
    margin-bottom: 2%;
}

.menu.pasta .menuTxt .fukidashi {
    width: 52%;
}

.menu.salad .menuTxt .fukidashi {
    width: 55%;
}

.menu .menuTxt .copy {
    font-size: 5.3vw;
    margin-bottom: 1.5%;
}

.menu.stake .menuTxt .menuName {
    margin-bottom: 8%;
}

.menu.stake .menuTxt .txt {
    font-size: 3.5vw;
    line-height: 1.7;
}

.menu.stake .menuTxt .btn {
    width: 29%;
}

.menu.topping {
    background: url(/images/menu/new2026/bg-4-sp.jpg) top / cover no-repeat;
}

.tomosankaku .title {
    font-size: 20px;
    margin-bottom: 35px;
    }

.tomosankaku .title:before {
    width: 40px;
    bottom: -18px;
}

.tomosankaku .midashi {
    font-size: 17px;
}

.tomosankaku .txt {
    font-size: 14px;
}

.menu.topping .menuName2 {
    font-size: 12vw;
    padding-top: 6%;
    margin-bottom: 6%;
}

.menu.topping .copy2 {
   font-size: 5.3vw;
    margin-bottom: 8%;
}

.menu .list {
    width: 85%;
}

.menu .list li .listIn {
    border-radius: 15px;
}

.menu .list li {
    margin-bottom: 5%;
}

.menu .list li .txt {
    font-size: 3.4vw;
    padding: 9%;
}

.caution {
    padding: 30px 0;
}

.caution li {
    font-size: 11px;
    text-indent: -11px;
    margin-left: 11px;
}

.menulink .menulinkIn {
    padding: 8% 0;
}

.menulink .menulinkIn .link a {
    font-size: 18px;
}

.menu .txtlink a {
    font-size: 18px;
    }

}

/*--------------------------------------------------------------------------------------

2025改訂 2025.6.6

--------------------------------------------------------------------------------------*/

/*.renewal-message {
    color: white;           
    text-align: center;     
    font-size: 6.2rem;      
    line-height: 1.6;      
    margin: 1.3em auto; 
    width: 90%;
}*/

.renewal-message {
    color: #fff !important;
    text-align: center;
    font-size: 2.9rem;
    line-height: 1.6;
    margin: 0 auto;
    padding: 1.3em;
    width: 100%;
    background-color: #e63c0e;
}


/*--------------------------------------------------------------------------------------

SP

--------------------------------------------------------------------------------------*/

@media screen and (max-width:520px) {
	
.renewal-message { 
    /*margin: 2em auto;*/
    font-size: 1.6rem; 
}
}


/*--------------------------------------------------------------------------------------

2026改訂 2026.6.10

--------------------------------------------------------------------------------------*/

.bnr {
    width: 37%;
    margin: -30px auto 80px;
    filter: drop-shadow(0 5px 3px rgba(0, 0, 0, .35));
}

.bnr img {
    border-radius: 20px;
}

.bnr a {
    width: 100%;
    height: 100%;
    display: block;
    transition: ease .3s;
}

.menu .menuTxt .menuName.twoLine:before {
    bottom: -14%;
}

/*--------------------------------------------------------------------------------------

SP

--------------------------------------------------------------------------------------*/

@media screen and (max-width:520px) {
 
.bnr {
    width: 80%;
    margin: -30px auto 50px;
}

.bnr img {
    border-radius: 15px;
}


}
